/* ===== СТИЛИ ДЛЯ СТРАНИЦЫ ДОСТАВКА ПО БЕЛАРУСИ ===== */

.mv-delivery-belarus {
    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: 1200px;
    padding: 24px 32px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Заголовки секций */
.mv-delivery-section-title {
    font-size: 28px;
    font-weight: 600;
    color: #1f2a3a;
    margin: 48px 0 32px 0;
    letter-spacing: -0.01em;
    text-align: center;
}

.mv-delivery-section-title:first-of-type {
    margin-top: 0;
}

/* Описание */
.mv-delivery-description {
    max-width: 800px;
    margin: 0 auto 32px;
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
    color: #54656f;
}

.mv-delivery-description p {
    margin: 0;
}

/* Основные условия (карточки) */
.mv-delivery-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 0 0 48px 0;
}

.mv-delivery-feature {
    background: #f9fafc;
    border: 1px solid #eaeef2;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: box-shadow 0.2s ease;
}

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

.mv-delivery-feature-value {
    font-size: 28px;
    font-weight: 700;
    color: #1f2a3a;
    margin-bottom: 8px;
}

.mv-delivery-feature-label {
    font-size: 14px;
    color: #54656f;
}

/* Информационный блок с фото */
.mv-delivery-info-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin: 0 0 48px 0;
    background: #f9fafc;
    border: 1px solid #eaeef2;
    border-radius: 24px;
    padding: 32px;
}

.mv-delivery-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #1f2a3a;
    margin: 0 0 16px 0;
}

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

.mv-delivery-info-list {
    margin: 0 0 20px 0;
    padding: 0 0 0 20px;
}

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

.mv-delivery-info-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Видео-ссылки и кнопки */
.mv-delivery-video-links {
    display: flex;
    gap: 16px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.mv-delivery-video-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #1f2a3a;
    color: white;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease;
    font-family: inherit;
}

.mv-delivery-video-btn:hover {
    background: #2c3a4f;
}

/* Специальный блок (заводская упаковка) */
.mv-delivery-special {
    margin: 48px 0;
    padding: 40px;
    background: linear-gradient(135deg, #f9fafc 0%, #ffffff 100%);
    border: 1px solid #eaeef2;
    border-radius: 24px;
}

.mv-delivery-special-title {
    font-size: 24px;
    font-weight: 600;
    color: #1f2a3a;
    margin: 0 0 24px 0;
    text-align: center;
}

.mv-delivery-special-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

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

.mv-delivery-special-price {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.mv-delivery-special-old-price {
    font-size: 20px;
    color: #7e8c9e;
    text-decoration: line-through;
}

.mv-delivery-special-new-price {
    font-size: 32px;
    font-weight: 700;
    color: #2e7d32;
}

.mv-delivery-special-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Шаги доставки */
.mv-delivery-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 48px 0;
}

.mv-delivery-step {
    background: white;
    border: 1px solid #eaeef2;
    border-radius: 16px;
    padding: 24px 20px;
    transition: box-shadow 0.2s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.mv-delivery-step-number {
    width: 36px;
    height: 36px;
    background: #fff300;
    color: #1f2a3a;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

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

.mv-delivery-step-text {
    font-size: 14px;
    line-height: 1.5;
    color: #54656f;
    margin: 0;
    flex: 1;
}

/* Важная информация */
.mv-delivery-notice {
    margin: 48px 0;
    padding: 32px;
    background: #fff8e6;
    border: 1px solid #eaeef2;
    border-radius: 16px;
    border-left: 4px solid #fff300;
}

.mv-delivery-notice-title {
    font-size: 20px;
    font-weight: 600;
    color: #1f2a3a;
    margin: 0 0 20px 0;
}

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

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

.mv-delivery-notice li:last-child {
    margin-bottom: 0;
}

.mv-delivery-notice strong {
    color: #1f2a3a;
}

/* FAQ (стили из rassrochka, адаптированные) */
.mv-delivery-faq {
    max-width: 900px;
    margin: 48px auto 0;
    padding: 32px 0 0;
    border-top: 1px solid #eaeef2;
}

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

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

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

.mv-delivery-faq-question {
    padding: 18px 24px;
    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-delivery-faq-question:hover {
    background: #f6f8fa;
}

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

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

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

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

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

.mv-delivery-faq-answer li {
    margin-bottom: 6px;
}

.mv-delivery-faq-answer .mv-delivery-video-btn {
    margin-right: 12px;
    margin-bottom: 8px;
}

/* Кнопка CTA */
.mv-delivery-cta {
    margin: 48px 0 32px;
    text-align: center;
}

.mv-delivery-cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: #1f2a3a;
    color: white;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 60px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.mv-delivery-cta-button:hover {
    background: #2c3a4f;
    transform: translateY(-2px);
}

/* ===== МОДАЛЬНОЕ ОКНО ДЛЯ ВИДЕО ===== */
.mv-video-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.mv-video-modal-content {
    background: white;
    width: 90%;
    max-width: 800px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.mv-video-modal-header {
    padding: 16px 24px;
    background: #f9fafc;
    border-bottom: 1px solid #eaeef2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mv-video-modal-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2a3a;
    margin: 0;
}

.mv-video-modal-close {
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    color: #7e8c9e;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.mv-video-modal-close:hover {
    color: #1f2a3a;
}

.mv-video-modal-body {
    padding: 0;
    background: #000;
}

.mv-video-modal-body iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 1024px) {
    .mv-delivery-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mv-delivery-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mv-container-full {
        padding: 20px;
    }
    
    .mv-delivery-section-title {
        font-size: 24px;
        margin: 32px 0 24px;
    }
    
    .mv-delivery-info-block {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px;
    }
    
    .mv-delivery-info-title {
        font-size: 20px;
    }
    
    .mv-delivery-special-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .mv-delivery-special-title {
        font-size: 22px;
    }
    
    .mv-delivery-special-new-price {
        font-size: 28px;
    }
    
    .mv-delivery-steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .mv-delivery-video-links {
        flex-direction: column;
    }
    
    .mv-delivery-video-btn {
        width: 100%;
        text-align: center;
    }
    
    .mv-delivery-faq-title {
        font-size: 22px;
    }
    
    .mv-delivery-cta-button {
        padding: 14px 32px;
    }
    
    .mv-video-modal-content {
        width: 95%;
    }
    
    .mv-video-modal-header {
        padding: 12px 20px;
    }
    
    .mv-video-modal-title {
        font-size: 16px;
    }
}

@media (max-width: 600px) {
    .mv-delivery-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .mv-container-full {
        padding: 16px;
    }
    
    .mv-delivery-section-title {
        font-size: 22px;
    }
    
    .mv-delivery-feature {
        padding: 20px;
    }
    
    .mv-delivery-feature-value {
        font-size: 24px;
    }
    
    .mv-delivery-info-block {
        padding: 20px;
    }
    
    .mv-delivery-special {
        padding: 24px;
    }
    
    .mv-delivery-special-title {
        font-size: 20px;
    }
    
    .mv-delivery-special-price {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .mv-delivery-step {
        padding: 20px;
    }
    
    .mv-delivery-faq-question {
        padding: 16px 20px;
        font-size: 15px;
    }
    
    .mv-delivery-faq-answer p,
    .mv-delivery-faq-answer ul {
        padding: 0 20px 20px 20px;
    }
    
    .mv-delivery-faq-answer ul {
        padding-left: 36px;
    }
    
    .mv-delivery-cta-button {
        padding: 14px 24px;
        width: 100%;
        text-align: center;
    }
    
    .mv-video-modal-header {
        padding: 10px 16px;
    }
    
    .mv-video-modal-close {
        font-size: 24px;
    }
}