/* ===== ОСНОВНЫЕ СТИЛИ ===== */
.mv-shops {
    margin: 0;
    padding: 0;
    width: 100%;
    background: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.mv-container-full {
    width: 100%;
    max-width: 1400px;
    padding: 24px 32px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* ===== СЕТКА ===== */
.mv-shops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
    margin: 0 0 48px 0;
}

/* ===== КАРТОЧКА ===== */
.mv-shop-card {
    background: white;
    border: 1px solid #eaeef2;
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.mv-shop-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border-color: #d0d7de;
}

.mv-shop-content {
    padding: 24px;
}

.mv-shop-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 10px;
}

.mv-shop-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2a3a;
    margin: 0;
    letter-spacing: -0.01em;
}

.mv-badge-popular {
    background: #fff300;
    color: #1f2a3a;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.mv-shop-desc {
    font-size: 14px;
    color: #54656f;
    line-height: 1.5;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eaeef2;
}

/* Информация */
.mv-shop-info {
    margin-bottom: 20px;
}

.mv-info-row {
    margin-bottom: 12px;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 4px 8px;
}

.mv-info-label {
    font-size: 13px;
    color: #7e8c9e;
    font-weight: 400;
    min-width: 70px;
}

.mv-info-value {
    font-size: 14px;
    color: #1f2a3a;
    font-weight: 500;
}

/* Цена */
.mv-delivery-price.is-free {
    color: #2e7d32;
    font-weight: 600;
}

.mv-delivery-price.is-empty {
    color: #7e8c9e;
    font-weight: 400;
}

/* Кнопки */
.mv-shop-actions {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.mv-action-btn {
    flex: 1;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s ease;
    background: #fff300;
    border: 1px solid #fff300;
    color: #1f2a3a;
    display: inline-block;
}

.mv-action-btn:hover {
    background: #e6d900;
    border-color: #e6d900;
}

/* ===== FAQ ===== */
.mv-faq-section {
    max-width: 900px;
    margin: 48px auto 0;
    padding: 32px 0 0;
    border-top: 1px solid #eaeef2;
}

.mv-faq-main-title {
    font-size: 24px;
    font-weight: 600;
    color: #1f2a3a;
    margin: 0 0 24px 0;
    letter-spacing: -0.01em;
    text-align: center;
}

.mv-faq-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mv-faq-item {
    border: 1px solid #eaeef2;
    border-radius: 12px;
    overflow: hidden;
    background: white;
}

.mv-faq-question {
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 500;
    color: #1f2a3a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: background 0.2s;
}

.mv-faq-question:hover {
    background: #f6f8fa;
}

.mv-faq-question.active {
    background: #f6f8fa;
}

.mv-faq-icon {
    font-size: 22px;
    color: #7e8c9e;
    font-weight: 400;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mv-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: white;
}

.mv-faq-answer p,
.mv-faq-answer ul {
    margin: 0;
    padding: 0 20px 20px 20px;
    font-size: 15px;
    color: #54656f;
    line-height: 1.6;
}

.mv-faq-answer ul {
    padding-left: 40px;
}

.mv-faq-link {
    color: #1f2a3a;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.mv-faq-link:hover {
    color: #fff300;
}

/* ===== SEO ТЕКСТ ===== */
.mv-delivery-seo {
    margin: 48px 0 32px;
    padding: 32px;
    background: #f9fafc;
    border-radius: 16px;
    border: 1px solid #eaeef2;
}

.mv-delivery-seo h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1f2a3a;
    margin: 0 0 16px 0;
}

.mv-delivery-seo h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2a3a;
    margin: 24px 0 12px 0;
}

.mv-delivery-seo p {
    font-size: 15px;
    line-height: 1.6;
    color: #54656f;
    margin: 0 0 16px 0;
}

.mv-delivery-seo ul {
    margin: 0 0 16px 0;
    padding: 0 0 0 20px;
}

.mv-delivery-seo li {
    font-size: 15px;
    line-height: 1.6;
    color: #54656f;
    margin-bottom: 8px;
}

/* ===== АЛЕРТ ===== */
.mv-alert {
    padding: 60px 20px;
    text-align: center;
    background: #f6f8fa;
    border-radius: 16px;
    color: #54656f;
    font-size: 16px;
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 768px) {
    .mv-container-full {
        padding: 16px 20px;
    }
    
    .mv-shops-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .mv-faq-main-title {
        font-size: 20px;
    }
    
    .mv-delivery-seo {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .mv-shop-content {
        padding: 20px;
    }
    
    .mv-info-row {
        flex-direction: column;
        gap: 2px;
    }
    
    .mv-info-label {
        min-width: auto;
    }
    
    .mv-faq-question {
        padding: 14px 16px;
        font-size: 15px;
    }
}