/* ===== СТИЛИ ДЛЯ СТРАНИЦЫ ПОДАРОЧНОГО СЕРТИФИКАТА ===== */

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

/* ===== HERO ===== */
.mv-gift-hero {
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 48px 0 56px;
    border-bottom: 1px solid #eaeef2;
}

.mv-gift-hero-content {
    flex: 1;
}

.mv-gift-hero-badge {
    display: inline-block;
    background: #fff300;
    color: #1f2a3a;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 20px;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: 0.03em;
}

.mv-gift-hero-subtitle {
    font-size: 18px;
    color: #54656f;
    line-height: 1.6;
    margin: 0 0 32px 0;
    max-width: 520px;
}

.mv-gift-hero-info {
    display: flex;
    gap: 40px;
    margin-bottom: 32px;
    padding: 20px 0;
    border-top: 1px solid #eaeef2;
    border-bottom: 1px solid #eaeef2;
}

.mv-gift-hero-info-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mv-gift-hero-info-label {
    font-size: 13px;
    font-weight: 500;
    color: #7e8c9e;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.mv-gift-hero-info-value {
    font-size: 16px;
    font-weight: 600;
    color: #1f2a3a;
}

.mv-gift-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.mv-gift-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mv-gift-hero-btn-primary {
    background: #fff300;
    color: #1f2a3a;
}

.mv-gift-hero-btn-primary:hover {
    background: #e6db00;
    box-shadow: 0 4px 12px rgba(255, 243, 0, 0.4);
}

.mv-gift-hero-btn-outline {
    background: transparent;
    color: #1f2a3a;
    border: 2px solid #eaeef2;
}

.mv-gift-hero-btn-outline:hover {
    border-color: #1f2a3a;
    background: #f9fafc;
}

.mv-gift-hero-image {
    flex: 0 0 380px;
}

.mv-gift-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

/* ===== FEATURES ===== */
.mv-gift-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 48px 0;
}

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

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

.mv-gift-feature-value {
    font-size: 20px;
    font-weight: 700;
    color: #1f2a3a;
    margin-bottom: 6px;
}

.mv-gift-feature-label {
    font-size: 14px;
    color: #54656f;
    line-height: 1.4;
}

/* ===== SECTION TITLES ===== */
.mv-gift-section-title {
    font-size: 28px;
    font-weight: 600;
    color: #1f2a3a;
    margin: 56px 0 32px 0;
    letter-spacing: -0.01em;
    text-align: center;
}

/* ===== CARD PREVIEW ===== */
.mv-gift-card-preview {
    display: flex;
    align-items: center;
    gap: 48px;
    background: #f9fafc;
    border: 1px solid #eaeef2;
    border-radius: 24px;
    padding: 48px;
    margin-bottom: 48px;
}

.mv-gift-card-preview-image {
    flex: 0 0 340px;
}

.mv-gift-card-preview-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.mv-gift-card-preview-info {
    flex: 1;
}

.mv-gift-card-preview-info h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1f2a3a;
    margin: 0 0 16px 0;
}

.mv-gift-card-preview-info ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.mv-gift-card-preview-info ul li {
    font-size: 16px;
    color: #54656f;
    padding: 8px 0;
    border-bottom: 1px solid #eaeef2;
    line-height: 1.5;
}

.mv-gift-card-preview-info ul li:last-child {
    border-bottom: none;
}

.mv-gift-card-preview-info ul li::before {
    content: '— ';
    color: #fff300;
    font-weight: 700;
}

.mv-gift-card-preview-info p {
    font-size: 16px;
    color: #54656f;
    line-height: 1.6;
    margin: 0 0 12px 0;
}

.mv-gift-delivery-link {
    font-size: 15px;
    font-weight: 500;
    color: #1f2a3a;
    text-decoration: none;
    border-bottom: 2px solid #fff300;
    transition: border-color 0.2s;
}

.mv-gift-delivery-link:hover {
    border-bottom-color: #1f2a3a;
}

/* ===== RULES ===== */
.mv-gift-rules {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 0 0 48px;
}

.mv-gift-rules-item {
    background: #f9fafc;
    border: 1px solid #eaeef2;
    border-radius: 16px;
    padding: 28px;
    transition: box-shadow 0.2s ease;
}

.mv-gift-rules-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.mv-gift-rules-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2a3a;
    margin: 0 0 8px 0;
}

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

/* ===== CATALOG LINKS ===== */
.mv-gift-catalog-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0 0 48px;
    justify-content: center;
}

.mv-gift-catalog-link {
    display: inline-block;
    padding: 10px 24px;
    background: #f9fafc;
    border: 1px solid #eaeef2;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    color: #1f2a3a;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mv-gift-catalog-link:hover {
    background: #fff300;
    border-color: #fff300;
    box-shadow: 0 4px 12px rgba(255, 243, 0, 0.3);
}

/* ===== SHOPS ===== */
.mv-gift-shops {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 0 0 48px;
}

.mv-gift-shop-card {
    display: flex;
    gap: 20px;
    background: #f9fafc;
    border: 1px solid #eaeef2;
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

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

.mv-gift-shop-photo {
    flex: 0 0 160px;
    height: 160px;
    overflow: hidden;
}

.mv-gift-shop-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mv-gift-shop-info {
    padding: 20px 24px 20px 0;
    flex: 1;
}

.mv-gift-shop-info h4 {
    font-size: 17px;
    font-weight: 600;
    color: #1f2a3a;
    margin: 0 0 8px 0;
}

.mv-gift-shop-info p {
    font-size: 14px;
    color: #54656f;
    margin: 4px 0;
    line-height: 1.5;
}

.mv-gift-shop-info p strong {
    color: #1f2a3a;
}

.mv-gift-shop-info a {
    color: #1f2a3a;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.mv-gift-shop-info a:hover {
    border-bottom-color: #fff300;
}

.mv-gift-shops-empty {
    text-align: center;
    color: #54656f;
    font-size: 16px;
    margin: 0 0 48px;
}

/* ===== INSTALLMENT ===== */
.mv-gift-installment {
    margin: 0 0 48px;
}

.mv-gift-installment-intro {
    text-align: center;
    font-size: 16px;
    color: #54656f;
    max-width: 700px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.mv-gift-installment-slider {
    overflow: hidden;
    padding-bottom: 32px;
}

.mv-gift-installment-slider .swiper-slide {
    height: auto;
    width: auto;
}

.mv-gift-installment-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 20px;
    background: white;
    border: 1px solid #eaeef2;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    height: 100%;
    box-sizing: border-box;
}

.mv-gift-installment-card:hover {
    border-color: #fff300;
    box-shadow: 0 8px 24px rgba(255, 243, 0, 0.2);
    transform: translateY(-2px);
}

.mv-gift-installment-image {
    width: 100%;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mv-gift-installment-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.mv-gift-installment-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
}

.mv-gift-installment-name {
    font-size: 14px;
    font-weight: 600;
    color: #1f2a3a;
    margin: 0;
    line-height: 1.3;
}

.mv-gift-installment-term {
    font-size: 12px;
    font-weight: 500;
    color: #54656f;
    background: #f0f3f7;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.02em;
}

.mv-gift-installment-scrollbar {
    background: #f0f3f7;
    border-radius: 4px;
    height: 6px;
}

.mv-gift-installment-scrollbar .swiper-scrollbar-drag {
    background: #d0d7de;
    border-radius: 4px;
}

.mv-gift-installment-note {
    background: #fff8e6;
    padding: 16px 24px;
    border-radius: 12px;
    border-left: 3px solid #fff300;
    margin-top: 8px;
}

.mv-gift-installment-note p {
    font-size: 14px;
    color: #54656f;
    margin: 0;
    line-height: 1.5;
}

.mv-gift-installment-note a {
    color: #1f2a3a;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.mv-gift-installment-note a:hover {
    text-decoration-color: #fff300;
}

/* ===== STEPS ===== */
.mv-gift-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 700px;
    margin: 0 auto 48px;
}

.mv-gift-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: #f9fafc;
    border: 1px solid #eaeef2;
    border-radius: 16px;
    transition: box-shadow 0.2s ease;
}

.mv-gift-step:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.mv-gift-step-number {
    width: 36px;
    height: 36px;
    background: #1f2a3a;
    color: white;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mv-gift-step-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mv-gift-step-text strong {
    font-size: 16px;
    color: #1f2a3a;
}

.mv-gift-step-text span {
    font-size: 14px;
    color: #54656f;
    line-height: 1.5;
}

/* ===== SERVICES ===== */
.mv-gift-services {
    margin: 0 0 48px;
    padding: 40px;
    background: #f9fafc;
    border: 1px solid #eaeef2;
    border-radius: 24px;
    text-align: center;
}

.mv-gift-services-title {
    font-size: 24px;
    font-weight: 600;
    color: #1f2a3a;
    margin: 0 0 24px 0;
}

.mv-gift-services-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.mv-gift-services-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: white;
    border: 1px solid #eaeef2;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 16px;
    font-weight: 600;
    color: #1f2a3a;
}

.mv-gift-services-item:hover {
    border-color: #fff300;
    box-shadow: 0 4px 16px rgba(255, 243, 0, 0.2);
    transform: translateY(-2px);
}

/* ===== CONTACTS ===== */
.mv-gift-contacts {
    margin: 48px 0 32px;
    padding: 40px;
    background: linear-gradient(135deg, #f9fafc 0%, #ffffff 100%);
    border: 1px solid #eaeef2;
    border-radius: 24px;
    text-align: center;
}

.mv-gift-contacts-title {
    font-size: 24px;
    font-weight: 600;
    color: #1f2a3a;
    margin: 0 0 12px 0;
}

.mv-gift-contacts-text {
    font-size: 16px;
    color: #54656f;
    margin: 0 0 24px 0;
}

.mv-gift-contacts-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.mv-gift-contacts-telegram,
.mv-gift-contacts-phone {
    font-size: 22px;
    font-weight: 600;
    color: #1f2a3a;
    text-decoration: none;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s;
}

.mv-gift-contacts-telegram:hover,
.mv-gift-contacts-phone:hover {
    border-bottom-color: #fff300;
}

.mv-gift-contacts-separator {
    width: 2px;
    height: 30px;
    background: #eaeef2;
    display: inline-block;
}

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

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

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

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

.mv-gift-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;
    user-select: none;
}

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

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

.mv-gift-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;
    transition: transform 0.2s ease;
}

.mv-gift-faq-question.active .mv-gift-faq-icon {
    transform: rotate(45deg);
}

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

.mv-gift-faq-answer-inner {
    padding: 0 24px 24px 24px;
    font-size: 15px;
    color: #54656f;
    line-height: 1.6;
}

.mv-gift-faq-answer-inner p {
    margin: 0 0 8px 0;
}

.mv-gift-faq-answer-inner p:last-child {
    margin-bottom: 0;
}

.mv-gift-faq-answer-inner ul,
.mv-gift-faq-answer-inner ol {
    margin: 8px 0 0;
    padding-left: 24px;
}

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

.mv-gift-faq-answer-inner a {
    color: #1f2a3a;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.mv-gift-faq-answer-inner a:hover {
    text-decoration-color: #fff300;
}

/* ===== CTA ===== */
.mv-gift-cta {
    margin: 48px 0 32px;
    padding: 48px;
    background: linear-gradient(135deg, #fff8e6 0%, #ffffff 100%);
    border: 2px solid #fff300;
    border-radius: 24px;
    text-align: center;
}

.mv-gift-cta-title {
    font-size: 28px;
    font-weight: 700;
    color: #1f2a3a;
    margin: 0 0 12px 0;
}

.mv-gift-cta-text {
    font-size: 16px;
    color: #54656f;
    margin: 0 0 28px 0;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.mv-gift-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.mv-gift-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mv-gift-cta-btn-primary {
    background: #fff300;
    color: #1f2a3a;
}

.mv-gift-cta-btn-primary:hover {
    background: #e6db00;
    box-shadow: 0 4px 12px rgba(255, 243, 0, 0.4);
}

.mv-gift-cta-btn-outline {
    background: transparent;
    color: #1f2a3a;
    border: 2px solid #eaeef2;
}

.mv-gift-cta-btn-outline:hover {
    border-color: #1f2a3a;
    background: #f9fafc;
}

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

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

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

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

.mv-gift-seo-text ul {
    margin: 0 0 16px 0;
    padding-left: 24px;
}

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

.mv-gift-seo-text li strong {
    color: #1f2a3a;
}

.mv-gift-seo-text a {
    color: #1f2a3a;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.mv-gift-seo-text a:hover {
    text-decoration-color: #fff300;
}

/* ===== АДАПТИВ ===== */
@media (max-width: 1024px) {
    .mv-gift-hero {
        gap: 32px;
    }
    .mv-gift-hero-image {
        flex: 0 0 300px;
    }
    .mv-gift-hero-subtitle {
        font-size: 17px;
    }
    .mv-gift-card-preview {
        gap: 32px;
        padding: 32px;
    }
    .mv-gift-card-preview-image {
        flex: 0 0 280px;
    }
    .mv-gift-features {
        grid-template-columns: repeat(2, 1fr);
    }
    .mv-gift-rules {
        gap: 16px;
    }
    .mv-gift-shops {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mv-container-full {
        padding: 20px;
    }

    .mv-gift-hero {
        flex-direction: column-reverse;
        padding: 32px 0 40px;
        text-align: center;
    }

    .mv-gift-hero-image {
        flex: none;
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
    }

    .mv-gift-hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .mv-gift-hero-actions {
        justify-content: center;
    }

    .mv-gift-hero-info {
        justify-content: center;
        gap: 24px;
        flex-wrap: wrap;
    }

    .mv-gift-hero-info-item {
        align-items: center;
    }

    .mv-gift-section-title {
        font-size: 24px;
        margin: 40px 0 24px;
    }

    .mv-gift-features {
        gap: 12px;
    }

    .mv-gift-card-preview {
        flex-direction: column;
        padding: 24px;
        text-align: center;
    }

    .mv-gift-card-preview-image {
        flex: none;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .mv-gift-card-preview-info ul li {
        text-align: left;
    }

    .mv-gift-rules {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .mv-gift-rules-item {
        padding: 24px;
    }

    .mv-gift-catalog-links {
        gap: 8px;
    }

    .mv-gift-catalog-link {
        padding: 8px 16px;
        font-size: 13px;
    }

    .mv-gift-shop-card {
        flex-direction: column;
    }

    .mv-gift-shop-photo {
        flex: 0 0 180px;
        height: 180px;
    }

    .mv-gift-shop-info {
        padding: 16px 20px 20px;
    }

    .mv-gift-services {
        padding: 32px 24px;
    }

    .mv-gift-services-grid {
        flex-direction: column;
        align-items: center;
    }

    .mv-gift-services-item {
        width: 100%;
        max-width: 300px;
    }

    .mv-gift-contacts {
        padding: 32px 24px;
    }

    .mv-gift-contacts-links {
        flex-direction: column;
        gap: 12px;
    }

    .mv-gift-contacts-separator {
        display: none;
    }

    .mv-gift-cta {
        padding: 32px 24px;
    }
    .mv-gift-cta-title {
        font-size: 24px;
    }

    .mv-gift-cta-btn {
        width: 100%;
        justify-content: center;
    }

    .mv-gift-faq-question {
        padding: 14px 16px;
        font-size: 15px;
    }
    .mv-gift-faq-answer-inner {
        padding: 0 16px 16px 16px;
    }
}

@media (max-width: 480px) {
    .mv-container-full {
        padding: 16px;
    }

    .mv-gift-hero {
        padding: 24px 0 32px;
    }

    .mv-gift-hero-subtitle {
        font-size: 16px;
    }

    .mv-gift-hero-btn {
        width: 100%;
        justify-content: center;
    }

    .mv-gift-features {
        grid-template-columns: 1fr;
    }

    .mv-gift-feature {
        padding: 20px;
    }

    .mv-gift-step {
        padding: 16px;
    }
    .mv-gift-step-number {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    .mv-gift-section-title {
        font-size: 22px;
    }

    .mv-gift-cta {
        padding: 24px 16px;
    }
    .mv-gift-cta-title {
        font-size: 22px;
    }

    .mv-gift-services-title {
        font-size: 20px;
    }

    .mv-gift-services-item {
        padding: 14px 24px;
        font-size: 15px;
    }

    .mv-gift-contacts-title {
        font-size: 20px;
    }
    .mv-gift-contacts-telegram,
    .mv-gift-contacts-phone {
        font-size: 18px;
    }
}