/* ==========================================================================
   MyChoice.uz — Minimal Layer (loaded LAST)
   True apple.com minimalism: less decoration, more whitespace, calm color.
   Strips visual noise (glows, watermarks, auras), flattens gradients,
   tightens typography & elevation. Fully reversible — just remove the <link>.
   ========================================================================== */

:root {
    --mc-accent: #0071e3;
    --mc-accent-hover: #0077ed;
    --mc-ink: #1d1d1f;
    --mc-ink-soft: #6e6e73;
    --mc-ink-mute: #86868b;
    --mc-bg: #ffffff;
    --mc-bg-soft: #f5f5f7;
    --mc-hairline: rgba(0, 0, 0, 0.08);

    /* Whisper-soft elevation — Apple barely shows shadows */
    --mc-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --mc-shadow-md: 0 4px 20px rgba(0, 0, 0, 0.06);
    --mc-shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.10);

    --mc-radius-sm: 12px;
    --mc-radius-md: 18px;
    --mc-radius-lg: 22px;
}

/* ── 1. Remove all decorative noise ─────────────────────────────────────── */
.glow-sphere,
.mc-watermark,
.hero-pro__aura,
.hero-pro__halo,
.hero-pro__watermark,
.hero-pro__shadow,
.hero-v2__watermark {
    display: none !important;
}

/* Calm the page background — single clean surface */
body.mc-redesign {
    background: var(--mc-bg);
    color: var(--mc-ink);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ── 2. Flatten gradient headings to solid ink (Apple uses solid) ───────── */
.mc-redesign .mc-display,
.mc-redesign .mc-headline,
.mc-redesign .section-title,
.hero-pro__title,
.hero-v2 .mc-display {
    background: none !important;
    -webkit-text-fill-color: var(--mc-ink) !important;
    color: var(--mc-ink) !important;
}

/* ── 3. HERO — Concept C: premium technology retailer ───────────────────── */
.hero-c {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, var(--mc-bg-soft) 100%);
    padding: calc(var(--mc-header-h, 72px) + 64px) 0 72px;
    overflow: hidden;
}
.hero-c__inner {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: clamp(32px, 5vw, 80px);
}

/* Left column */
.hero-c__eyebrow {
    margin: 0 0 18px;
    font-size: 15px;
    font-weight: 500;
    color: var(--mc-ink-soft);
}
.hero-c__title {
    margin: 0;
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: -0.035em;
    color: var(--mc-ink);
}

/* Installment hook card — the second-loudest element on the page */
.hero-c__offer {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 30px;
    padding: 18px 24px;
    background: #fff;
    border: 1px solid var(--mc-hairline);
    border-radius: var(--mc-radius-md);
    box-shadow: var(--mc-shadow-sm);
}
.hero-c__offer-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--mc-ink-soft);
}
.hero-c__offer-price {
    font-size: clamp(1.9rem, 3.2vw, 2.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--mc-ink);
}
.hero-c__offer-price span {
    font-size: 0.5em;
    font-weight: 600;
    color: var(--mc-ink-soft);
    margin-left: 2px;
}
.hero-c__offer-meta {
    margin-top: 2px;
    font-size: 14px;
    color: var(--mc-ink-soft);
}

/* CTAs */
.hero-c__cta {
    display: flex;
    gap: 14px;
    margin-top: 28px;
    flex-wrap: wrap;
}
.hero-c__cta .mc-btn {
    padding: 14px 28px;
    font-size: 16px;
}
.hero-c__cta .mc-btn.mc-btn--secondary {
    background: rgba(0, 0, 0, 0.05);
    color: var(--mc-ink);
    border: none;
}
.hero-c__cta .mc-btn.mc-btn--secondary:hover {
    background: rgba(0, 0, 0, 0.08);
    color: var(--mc-ink);
}
.hero-c__link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 18px;
    color: var(--mc-accent);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: gap 0.2s var(--mc-ease, ease);
}
.hero-c__link:hover { gap: 9px; }

/* Right column — device + floating Trade-In badge */
.hero-c__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(320px, 38vw, 520px);
}
.hero-c__device {
    width: auto;
    max-width: 100%;
    max-height: clamp(340px, 40vw, 560px);
    object-fit: contain;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.18));
}
.hero-c__badge {
    position: absolute;
    left: 4%;
    bottom: 12%;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 12px 16px;
    background: #fff;
    border: 1px solid var(--mc-hairline);
    border-radius: 16px;
    box-shadow: var(--mc-shadow-md);
}
.hero-c__badge-top {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--mc-accent);
}
.hero-c__badge-value {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--mc-ink);
}

/* Bottom trust strip */
.hero-c__trust {
    list-style: none;
    margin: clamp(36px, 5vw, 56px) 0 0;
    padding: clamp(24px, 3vw, 30px) 0 0;
    border-top: 1px solid var(--mc-hairline);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.hero-c__trust li {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: var(--mc-ink);
}
.hero-c__trust svg { color: var(--mc-accent); flex-shrink: 0; }

/* Dark mode */
[data-theme="dark"] .hero-c {
    background: linear-gradient(180deg, #000 0%, #0a0a0c 100%);
}
[data-theme="dark"] .hero-c__offer,
[data-theme="dark"] .hero-c__badge {
    background: #1c1c1e;
    border-color: rgba(255, 255, 255, 0.1);
}
[data-theme="dark"] .hero-c__cta .mc-btn.mc-btn--secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--mc-ink);
}
[data-theme="dark"] .hero-c__cta .mc-btn.mc-btn--secondary:hover {
    background: rgba(255, 255, 255, 0.14);
}

/* Mobile */
@media (max-width: 1024px) {
    .hero-c { padding: calc(var(--mc-app-header, 52px) + 20px) 0 44px; }
    .hero-c__inner {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }
    .hero-c__offer { align-self: center; }
    .hero-c__cta { justify-content: center; }
    .hero-c__visual { min-height: auto; }
    .hero-c__device { max-height: 300px; }
    .hero-c__badge { left: 6%; bottom: 4%; }
    .hero-c__trust {
        grid-template-columns: 1fr 1fr;
        gap: 14px 12px;
    }
    .hero-c__trust li { justify-content: flex-start; }
}
@media (max-width: 480px) {
    .hero-c__cta { flex-direction: column; }
    .hero-c__cta .mc-btn { width: 100%; }
    .hero-c__title { font-size: clamp(2.1rem, 9vw, 2.8rem); }
}

/* ── 4. Section rhythm: generous Apple breathing room ────────────────────── */
.mc-redesign .mc-section {
    padding: clamp(80px, 10vw, 140px) 0;
}
.mc-redesign .mc-section--soft {
    background: var(--mc-bg-soft);
}
.mc-redesign .mc-section-header {
    margin-bottom: clamp(48px, 6vw, 72px);
}
.mc-redesign .mc-container {
    max-width: 1080px;
}

/* ── 5. Section labels: understated, not loud ───────────────────────────── */
.mc-redesign .mc-section-label {
    display: inline-block;
    background: transparent !important;
    color: var(--mc-ink-mute) !important;
    padding: 0 !important;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: none;
}
.mc-redesign .mc-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.08;
}
.mc-redesign .mc-subhead {
    font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
    font-weight: 400;
    color: var(--mc-ink-soft);
    line-height: 1.5;
}

/* ── 6. Buttons: clean Apple pills ──────────────────────────────────────── */
.mc-redesign .mc-btn {
    font-weight: 500;
    letter-spacing: -0.01em;
    border-radius: 980px;
    transition: background 0.25s ease, opacity 0.2s ease, transform 0.2s ease;
}
.mc-redesign .mc-btn:hover { transform: none; }
.mc-redesign .mc-btn:active { transform: scale(0.97); }

.mc-redesign .mc-btn--accent {
    background: var(--mc-accent);
    color: #fff;
    box-shadow: none;
}
.mc-redesign .mc-btn--accent:hover {
    background: var(--mc-accent-hover);
    box-shadow: none;
}
.mc-redesign .mc-btn--primary {
    background: var(--mc-ink);
    color: #fff;
    box-shadow: none;
}
.mc-redesign .mc-btn--primary:hover {
    background: #000;
    box-shadow: none;
}
.mc-redesign .mc-btn--secondary {
    background: transparent;
    color: var(--mc-accent);
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
.mc-redesign .mc-btn--secondary:hover {
    background: transparent;
    color: var(--mc-accent-hover);
    text-decoration: none;
}

/* ── 7. Cards: hairline borders, whisper shadow, gentle hover ───────────── */
.mc-redesign .bs-card,
.mc-redesign .why-card,
.mc-redesign .product-card,
.mc-redesign .service-card,
.mc-redesign .story-card,
.mc-redesign .review-card {
    border: 1px solid var(--mc-hairline);
    border-radius: var(--mc-radius-md);
    background: var(--mc-bg);
    box-shadow: none;
    transition: transform 0.4s var(--mc-ease, ease), box-shadow 0.4s var(--mc-ease, ease);
}
.mc-redesign .bs-card:hover,
.mc-redesign .product-card:hover,
.mc-redesign .service-card:hover,
.mc-redesign .review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--mc-shadow-md);
}

/* Product image stage — clean, flat, no double gradient */
.mc-redesign .bs-card__img-wrap,
.mc-redesign .product-image-wrap {
    background: var(--mc-bg-soft) !important;
}
.mc-redesign .bs-card__img-wrap::after,
.mc-redesign .product-image-wrap::after {
    display: none !important;
}
.mc-redesign .bs-card__img,
.mc-redesign .product-img {
    filter: none;
}
.mc-redesign .bs-card:hover .bs-card__img,
.mc-redesign .product-card:hover .product-img {
    transform: scale(1.04);
    filter: none;
}

/* Monthly / nasiya price keeps the single accent */
.mc-redesign .bs-card__monthly,
.mc-redesign .price-nasiya-num {
    color: var(--mc-accent);
}

/* ── 7b. Concept B Hybrid — catalog product cards only ──────────────────────
   Samsung structure (monthly = hero), Apple spacing, Nothing flat surfaces.
   Scoped to .product-card--b so bestseller cards stay untouched. */
.mc-redesign .product-card--b {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--mc-hairline);
    border-radius: var(--mc-radius-md); /* 18px */
    background: var(--mc-bg);
    box-shadow: none;
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
/* Flat: kill gradient border, glow, and card scaling */
.mc-redesign .product-card--b::after { display: none !important; }
.mc-redesign .product-card--b:hover {
    transform: none;
    border-color: rgba(0, 0, 0, 0.16);
    box-shadow: var(--mc-shadow-md);
}

/* Image stage — large, soft neutral, flat (no divider line) */
.mc-redesign .product-card--b .product-image-wrap {
    height: auto;
    aspect-ratio: 1 / 1;
    padding: clamp(20px, 4vw, 34px);
    border-bottom: none;
    background: var(--mc-bg-soft) !important;
}
.mc-redesign .product-card--b .product-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}
.mc-redesign .product-card--b:hover .product-img { transform: scale(1.03); }

/* Info column — Apple-style breathing room */
.mc-redesign .product-card--b .product-info {
    padding: 20px;
    gap: 0;
}
.mc-redesign .product-card--b .product-title {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.3;
    margin: 0 0 4px;
    color: var(--mc-ink);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.mc-redesign .product-card--b .product-storage-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    color: var(--mc-ink-mute);
    margin-bottom: 14px;
}

/* Pricing — monthly installment is the single loudest element */
.mc-redesign .product-card--b .product-pricing {
    margin: 0 0 16px;
}
.mc-redesign .product-card--b .price-nasiya {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--mc-ink-mute);
    margin-bottom: 2px;
}
.mc-redesign .product-card--b .price-nasiya-num {
    display: block;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--mc-accent);
}
.mc-redesign .product-card--b .price-nasiya-suffix {
    font-size: 13px;
    font-weight: 500;
    color: var(--mc-ink-mute);
}
.mc-redesign .product-card--b .price-cash {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--mc-ink-soft);
    margin-top: 3px;
}
.mc-redesign .product-card--b .price-cash-original {
    text-decoration: line-through;
    color: var(--mc-ink-mute);
    font-size: 12px;
    margin-left: 6px;
}

/* Color selector — larger, tappable swatches + overflow chip */
.mc-redesign .product-card--b .product-colors--b {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    min-height: 20px;
}
.mc-redesign .product-card--b .color-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 0 0 2px var(--mc-bg);
    cursor: pointer;
    transition: transform 0.2s ease;
}
.mc-redesign .product-card--b .color-dot:hover { transform: scale(1.15); }
.mc-redesign .product-card--b .color-more {
    font-size: 12px;
    font-weight: 600;
    color: var(--mc-ink-mute);
    margin-left: 2px;
}

/* Single CTA — full-width filled, one accent color */
.mc-redesign .product-card--b .btn-card-cta {
    width: 100%;
    margin-top: auto;
    height: 44px;
    border: none;
    border-radius: var(--mc-radius-sm); /* 12px */
    background: var(--mc-accent);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}
.mc-redesign .product-card--b .btn-card-cta:hover { background: var(--mc-accent-hover); }

/* Compare toggle — quiet; reveal on hover (desktop), always visible on touch */
.mc-redesign .product-card--b .btn-compare-toggle {
    z-index: 3;
    transition: opacity 0.2s ease, color 0.2s ease;
}
@media (hover: hover) {
    .mc-redesign .product-card--b .btn-compare-toggle { opacity: 0; }
    .mc-redesign .product-card--b:hover .btn-compare-toggle,
    .mc-redesign .product-card--b .btn-compare-toggle:focus-visible,
    .mc-redesign .product-card--b .btn-compare-toggle.active { opacity: 1; }
}

[data-theme="dark"] .mc-redesign .product-card--b:hover {
    border-color: rgba(255, 255, 255, 0.18);
}
[data-theme="dark"] .mc-redesign .product-card--b .color-dot {
    box-shadow: 0 0 0 2px #1c1c1e;
    border-color: rgba(255, 255, 255, 0.18);
}

/* ── 7c. Concept B on tablet/phone ──────────────────────────────────────────
   The mobile layer (mobile-app.css) reshapes #catalog cards into a horizontal
   strip via #catalog rules. Re-assert Concept B as a clean 2-up vertical grid.
   #catalog .product-card--b (1,2,0) beats #catalog .product-card (1,1,0). */
@media (max-width: 1024px) {
    #catalog .catalog-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    #catalog .product-card--b {
        display: flex;
        flex-direction: column;
        grid-template-columns: none;
        grid-template-rows: none;
        min-height: 0;
        padding: 0;
        border-radius: var(--mc-radius-md);
    }
    #catalog .product-card--b .product-image-wrap {
        grid-row: auto;
        height: auto;
        min-height: 0;
        aspect-ratio: 1 / 1;
        padding: clamp(14px, 4vw, 24px);
        background: var(--mc-bg-soft);
    }
    #catalog .product-card--b .product-img {
        max-height: 100%;
        max-width: 100%;
        width: auto;
    }
    #catalog .product-card--b .product-info {
        padding: 14px;
        justify-content: flex-start;
        gap: 0;
    }
    #catalog .product-card--b .product-title {
        font-size: 15px;
        font-weight: 600;
        line-height: 1.3;
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin-bottom: 4px;
    }
    #catalog .product-card--b .product-storage-tag { margin-bottom: 10px; }
    #catalog .product-card--b .price-nasiya { display: block; }
    #catalog .product-card--b .price-nasiya-num {
        font-size: 18px;
        font-weight: 700;
        letter-spacing: 0;
    }
    #catalog .product-card--b .price-nasiya-num::before { content: none; }
    #catalog .product-card--b .product-colors--b { display: flex; }
    #catalog .product-card--b .btn-card-cta {
        display: block;
        width: 100%;
        font-size: 14px;
    }
}

/* Single-column catalog only on very small screens */
@media (max-width: 380px) {
    #catalog .catalog-grid { grid-template-columns: 1fr; }
}

/* Why-card icon: flat tinted tile, no gradient */
.mc-redesign .why-card {
    box-shadow: none;
}
.mc-redesign .why-card__icon {
    background: var(--mc-bg-soft) !important;
    color: var(--mc-ink) !important;
    border-radius: 14px;
}

/* ── 8. Header: minimal frosted nav, pinned on scroll ───────────────────── */
/* Restore sticky positioning (apple-polish had forced it relative for the
   now-removed watermark). Keeps logo, nav (Katalog/Nasiya), search & order
   icons visible while scrolling. */
.mc-redesign .mc-header,
.mc-redesign .mc-header.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 300;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--mc-hairline);
    box-shadow: none;
}
/* Elegant elevation only once the page is scrolled */
.mc-redesign .mc-header.is-scrolled {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04), 0 8px 30px rgba(0, 0, 0, 0.06);
}
.mc-redesign .mc-nav__link {
    font-weight: 400;
    color: rgba(29, 29, 31, 0.85);
}
.mc-redesign .mc-nav__link:hover { color: var(--mc-ink); }

/* Mobile bottom nav: restore pinned position (also broken by the
   watermark rule) so primary nav/order stays reachable on phones. */
.mc-redesign .mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1200;
}

[data-theme="dark"] .mc-redesign .mc-header,
[data-theme="dark"] .mc-redesign .mc-header.site-header {
    background: rgba(22, 22, 23, 0.8);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}
[data-theme="dark"] .mc-redesign .mc-header.is-scrolled {
    background: rgba(22, 22, 23, 0.92);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04), 0 8px 30px rgba(0, 0, 0, 0.4);
}

/* ── 9. Finder / configurator: soft, rounded, light ─────────────────────── */
.mc-redesign .finder-card {
    border-radius: 24px;
    border: 1px solid var(--mc-hairline);
    box-shadow: var(--mc-shadow-sm);
    background: var(--mc-bg);
}

/* ── 10. Inputs: quiet fields ───────────────────────────────────────────── */
.mc-redesign input[type="text"],
.mc-redesign input[type="tel"],
.mc-redesign input[type="number"],
.mc-redesign input[type="email"],
.mc-redesign select,
.mc-redesign textarea {
    border-radius: var(--mc-radius-sm);
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: var(--mc-bg);
}
.mc-redesign input:focus,
.mc-redesign select:focus,
.mc-redesign textarea:focus {
    outline: none;
    border-color: var(--mc-accent);
    box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.14);
}

/* ── 11. Trust stats: clean inline row, no boxes ────────────────────────── */
.hero-pro .trust-stats {
    margin-top: clamp(40px, 6vw, 64px);
}
.mc-redesign .trust-stat {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* ── 12. Footer: calm light surface ─────────────────────────────────────── */
.mc-redesign .enriched-footer {
    background: var(--mc-bg-soft);
    border-top: 1px solid var(--mc-hairline);
}

/* ── 13. Selection ──────────────────────────────────────────────────────── */
.mc-redesign ::selection {
    background: rgba(0, 113, 227, 0.16);
    color: var(--mc-ink);
}

/* ── 14. Dark mode harmony ──────────────────────────────────────────────── */
[data-theme="dark"] {
    --mc-bg: #000000;
    --mc-bg-soft: #0a0a0c;
    --mc-ink: #f5f5f7;
    --mc-ink-soft: #a1a1a6;
    --mc-ink-mute: #8e8e93;
    --mc-hairline: rgba(255, 255, 255, 0.1);
}
[data-theme="dark"] .mc-redesign .mc-display,
[data-theme="dark"] .mc-redesign .mc-headline,
[data-theme="dark"] .hero-pro__title {
    -webkit-text-fill-color: var(--mc-ink) !important;
    color: var(--mc-ink) !important;
}
[data-theme="dark"] .hero-pro {
    background: linear-gradient(180deg, #000 0%, #0a0a0c 100%) !important;
}
[data-theme="dark"] .mc-redesign .bs-card,
[data-theme="dark"] .mc-redesign .product-card,
[data-theme="dark"] .mc-redesign .why-card,
[data-theme="dark"] .mc-redesign .service-card,
[data-theme="dark"] .mc-redesign .review-card,
[data-theme="dark"] .mc-redesign .finder-card {
    background: #1c1c1e;
    border-color: rgba(255, 255, 255, 0.08);
}
[data-theme="dark"] .mc-redesign .bs-card__img-wrap,
[data-theme="dark"] .mc-redesign .product-image-wrap,
[data-theme="dark"] .mc-redesign .why-card__icon {
    background: #19191b !important;
}
[data-theme="dark"] .mc-redesign .mc-btn--primary {
    background: #f5f5f7;
    color: #0a0a0c;
}
[data-theme="dark"] .mc-redesign .mc-header.site-header {
    background: rgba(22, 22, 23, 0.8);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}
[data-theme="dark"] .mc-redesign .enriched-footer {
    background: #0a0a0c;
    border-top-color: rgba(255, 255, 255, 0.08);
}

/* ── 15. Respect reduced motion ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .mc-redesign .mc-reveal { transition: none; opacity: 1; transform: none; }
}

/* ── 16. Mobile finesse ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .mc-redesign .mc-section { padding: clamp(56px, 9vw, 72px) 0; }
    .hero-pro { padding: calc(var(--mc-app-header, 52px) + 32px) 0 48px !important; }
}

/* ==========================================================================
   New Home Direction — Premium Apple Nasiya Store
   Samsung commerce structure + Apple spacing + Nothing-flat surfaces.
   ========================================================================== */

body.mc-redesign {
    background:
        radial-gradient(circle at 80% 0%, rgba(0, 113, 227, 0.08), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f5f5f7 46%, #ffffff 100%);
}

.mc-redesign main {
    display: flex;
    flex-direction: column;
}

/* Reduce the old long homepage into a calmer premium route. Sections are not
   deleted; they are visually removed from the homepage flow. */
.mc-redesign #iphone-finder,
.mc-redesign #showroom-services,
.mc-redesign #delivery,
.mc-redesign #compare-models,
.mc-redesign #video-reviews,
.mc-redesign #success-stories,
.mc-redesign #faq,
.mc-redesign #about {
    display: none !important;
}

.mc-redesign #hero { order: 1; }
.mc-redesign #shop-paths { order: 2; }
.mc-redesign #catalog { order: 3; }
.mc-redesign #calculator { order: 4; }
.mc-redesign #tradein { order: 5; }
.mc-redesign #advantages { order: 6; }
.mc-redesign #reviews { order: 7; }
.mc-redesign #branches { order: 8; }

/* Hero */
.hero-store {
    position: relative;
    overflow: hidden;
    padding: calc(var(--mc-header-h, 72px) + 44px) 0 50px;
}

.hero-store__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
    gap: clamp(26px, 4vw, 58px);
    align-items: center;
}

.hero-store__eyebrow {
    margin: 0 0 18px;
    color: var(--mc-accent);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-store__title {
    max-width: 760px;
    margin: 0;
    color: var(--mc-ink);
    font-size: clamp(3rem, 5.55vw, 5.65rem);
    font-weight: 750;
    letter-spacing: -0.06em;
    line-height: 0.95;
}

.hero-store__title span {
    color: var(--mc-accent);
}

.hero-store__text {
    max-width: 560px;
    margin: 26px 0 0;
    color: var(--mc-ink-soft);
    font-size: clamp(1.05rem, 1.6vw, 1.35rem);
    line-height: 1.55;
}

.hero-store__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.hero-store__actions .mc-btn {
    min-height: 48px;
    padding: 14px 26px;
    border-radius: 999px;
}

.hero-store__actions .mc-btn--secondary {
    background: rgba(29, 29, 31, 0.06);
    border: 0;
    color: var(--mc-ink);
}

.hero-store__proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.hero-store__proof span {
    display: inline-flex;
    gap: 5px;
    align-items: baseline;
    padding: 9px 12px;
    border: 1px solid var(--mc-hairline);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--mc-ink-soft);
    font-size: 13px;
}

.hero-store__proof strong {
    color: var(--mc-ink);
}

.hero-store__showcase {
    position: relative;
    min-height: clamp(400px, 39vw, 540px);
    display: grid;
    place-items: center;
    border: 1px solid var(--mc-hairline);
    border-radius: 36px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.88), rgba(245,245,247,0.98)),
        var(--mc-bg-soft);
    box-shadow: none;
}

.hero-store__product,
.hero-store__product-slide {
    display: grid;
    place-items: center;
    width: min(74%, 390px);
    aspect-ratio: 1 / 1.1;
    border-radius: 32px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.hero-store__product-slide {
    position: absolute;
    inset: 54px 48px 54px;
    width: auto;
    opacity: 0;
    transform: translateY(18px) scale(0.98);
    pointer-events: none;
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.hero-store__product-slide.is-active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.hero-store__orbit {
    position: absolute;
    inset: 0;
    opacity: 0.18;
    pointer-events: none;
}

.hero-store__orbit img {
    position: absolute;
    width: clamp(96px, 10vw, 150px);
    height: auto;
    object-fit: contain;
    filter: blur(0.2px) saturate(0.8);
    animation: hero-orbit 18s linear infinite;
}

.hero-store__orbit img:nth-child(1) {
    left: 7%;
    top: 18%;
}

.hero-store__orbit img:nth-child(2) {
    right: 8%;
    top: 14%;
    animation-duration: 23s;
    animation-direction: reverse;
}

.hero-store__orbit img:nth-child(3) {
    right: 16%;
    bottom: 12%;
    animation-duration: 21s;
}

@keyframes hero-orbit {
    0% { transform: translate3d(0, 0, 0) rotate(0deg); }
    50% { transform: translate3d(18px, -14px, 0) rotate(7deg); }
    100% { transform: translate3d(0, 0, 0) rotate(0deg); }
}

.hero-store__tag {
    justify-self: start;
    margin: 22px 0 0 24px;
    color: var(--mc-ink-soft);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-store__device {
    width: auto;
    max-width: 88%;
    max-height: 390px;
    object-fit: contain;
    filter: drop-shadow(0 28px 44px rgba(0, 0, 0, 0.16));
}

.hero-store__deal,
.hero-store__trade {
    position: absolute;
    border: 1px solid var(--mc-hairline);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
}

.hero-store__deal {
    left: 28px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 16px 18px;
    border-radius: 20px;
    z-index: 3;
}

.hero-store__deal-label,
.hero-store__deal small {
    color: var(--mc-ink-mute);
    font-size: 12px;
    font-weight: 600;
}

.hero-store__deal strong {
    color: var(--mc-accent);
    font-size: clamp(1.2rem, 2vw, 1.65rem);
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.hero-store__trade {
    right: 28px;
    top: 30px;
    padding: 12px 15px;
    border-radius: 999px;
    color: var(--mc-ink);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    z-index: 5;
}

/* Shop paths */
.shop-paths {
    padding: 0 0 46px;
}

.shop-paths__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.shop-path {
    display: flex;
    min-height: 132px;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    border: 1px solid var(--mc-hairline);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.76);
    color: var(--mc-ink);
    text-decoration: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.shop-path:hover {
    border-color: rgba(0, 113, 227, 0.28);
    background: #fff;
}

.shop-path span {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.shop-path small {
    color: var(--mc-ink-soft);
    font-size: 14px;
}

/* Catalog as the main shopping surface */
.mc-redesign #catalog.catalog-section {
    padding: clamp(58px, 8vw, 92px) 0;
    background: #fff;
}

.mc-redesign #catalog .container {
    max-width: 1180px;
}

.mc-redesign #catalog .section-header {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.55fr);
    gap: 24px;
    align-items: end;
    text-align: left;
    margin-bottom: 30px;
}

.mc-redesign #catalog .section-title {
    margin: 0;
    font-size: clamp(2.4rem, 4.8vw, 4.6rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.mc-redesign #catalog .section-subtitle {
    margin: 0;
    max-width: 420px;
    justify-self: end;
    color: var(--mc-ink-soft);
    font-size: 17px;
    line-height: 1.55;
}

.mc-redesign #catalog .category-cards-grid {
    display: flex;
    gap: 10px;
    padding: 6px;
    margin-bottom: 18px;
    overflow-x: auto;
    border: 1px solid var(--mc-hairline);
    border-radius: 999px;
    background: var(--mc-bg-soft);
}

.mc-redesign #catalog .category-card {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 16px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    box-shadow: none;
    color: var(--mc-ink-soft);
}

.mc-redesign #catalog .category-card-icon {
    width: 18px;
    height: 18px;
    color: currentColor;
}

.mc-redesign #catalog .category-card-title {
    font-size: 14px;
    font-weight: 700;
}

.mc-redesign #catalog .category-card.active {
    background: #fff;
    color: var(--mc-ink);
    box-shadow: var(--mc-shadow-sm);
}

.mc-redesign #catalog .catalog-toolbar {
    position: sticky;
    top: calc(var(--mc-header-h, 72px) + 8px);
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin: 18px 0 28px;
    padding: 12px 14px;
    border: 1px solid var(--mc-hairline);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(18px);
}

.mc-redesign #catalog .catalog-count {
    color: var(--mc-ink);
    font-size: 14px;
    font-weight: 700;
}

.mc-redesign #catalog .catalog-stock-toggle,
.mc-redesign #catalog .catalog-sort-label {
    color: var(--mc-ink-soft);
    font-size: 13px;
    font-weight: 600;
}

.mc-redesign #catalog .catalog-sort-select {
    height: 38px;
    border-radius: 999px;
    border-color: var(--mc-hairline);
    background: var(--mc-bg-soft);
}

.mc-redesign #catalog .catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

/* Trust section becomes compact showroom proof */
.mc-redesign #advantages {
    padding: clamp(64px, 8vw, 96px) 0;
    background: var(--mc-bg-soft);
}

.mc-redesign #advantages .why-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.mc-redesign #advantages .why-card {
    padding: 22px;
    border-radius: 22px;
    background: #fff;
}

.mc-redesign #advantages .why-card__title {
    font-size: 17px;
}

.mc-redesign #advantages .why-card__desc {
    font-size: 14px;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .hero-store {
        padding: calc(var(--mc-app-header, 56px) + 34px) 0 42px;
    }

    .hero-store__inner {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .hero-store__title {
        font-size: clamp(2rem, 8.5vw, 3.1rem);
        letter-spacing: -0.03em;
    }

    .hero-store__showcase {
        min-height: 420px;
        border-radius: 28px;
    }

    .hero-store__product-slide {
        inset: 46px 28px 42px;
        border-radius: 28px;
    }

    .hero-store__orbit img {
        width: 104px;
    }

    .shop-paths__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mc-redesign #catalog .section-header {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .mc-redesign #catalog .section-subtitle {
        justify-self: start;
    }

    .mc-redesign #catalog .catalog-toolbar {
        position: static;
        flex-direction: column;
        align-items: stretch;
    }

    .mc-redesign #catalog .catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .mc-redesign #advantages .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .hero-store__actions .mc-btn {
        width: 100%;
        justify-content: center;
    }

    .hero-store__showcase {
        min-height: 360px;
    }

    .hero-store__product-slide {
        inset: 54px 14px 52px;
        border-radius: 24px;
    }

    .hero-store__tag {
        margin: 16px 0 0 16px;
        font-size: 11px;
    }

    .hero-store__device {
        max-height: 245px;
    }

    .hero-store__deal {
        left: 14px;
        bottom: 14px;
        max-width: calc(100% - 28px);
        padding: 12px 14px;
    }

    .hero-store__deal strong {
        font-size: 18px;
    }

    .hero-store__trade {
        top: 14px;
        right: 14px;
        left: 14px;
        text-align: center;
    }

    .shop-path {
        min-height: 110px;
        padding: 16px;
    }

    .shop-path span {
        font-size: 20px;
    }

    .mc-redesign #catalog .catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
    .mc-redesign #advantages .why-grid {
        grid-template-columns: 1fr;
    }
}
