/* ═══════════════════════════════════════════════════════════════════
   CHIC CHARMS — mobile-comprehensive.css  v1.0
   SINGLE MOBILE AUTHORITY — replaces ALL conflicting mobile CSS layers.
   
   SCOPE: ALL rules scoped to @media (max-width: 1024px).
   DESKTOP (≥ 1025px): COMPLETELY UNTOUCHED.
   
   This file is the SOLE mobile style authority. It supersedes:
   mobile-app.css, mobile-commerce.css, mobile-fixes.css, mobile-phase2.css,
   mobile-phase3.css, phase5-mobile-conversion.css, phase6-polish.css,
   final-mobile-stabilization.css, emergency-mobile-hotfix.css,
   d5-mobile-luxury.css, d8-mobile-typography-image.css,
   d9-luxury-mobile-pdp.css, d10-restore.css, d12-luxury-mobile-final.css,
   d14-luxury-stage4.css, d15-luxury-stage4-final.css
   ═══════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════════
   SECTION 0 — GLOBAL MOBILE FOUNDATION
   Fixes: blank screen, scroll freeze, overflow bugs, viewport
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  html {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    overflow-y: visible !important;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
  }

  body {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
  }

  *, *::before, *::after {
    max-width: 100vw;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION 1 — DESIGN TOKENS (Mobile)
   Unified spacing, color, typography scale for mobile
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root {
    --m-space-4: 4px;
    --m-space-8: 8px;
    --m-space-12: 12px;
    --m-space-16: 16px;
    --m-space-20: 20px;
    --m-space-24: 24px;
    --m-space-32: 32px;
    --m-space-48: 48px;
    
    --m-header-h: 56px;
    --m-bottom-nav-h: 64px;
    
    --m-radius-sm: 10px;
    --m-radius: 14px;
    --m-radius-lg: 18px;
    --m-radius-xl: 24px;
    
    --m-ease: cubic-bezier(0.16, 1, 0.3, 1);
    --m-ease-fast: cubic-bezier(0.22, 0.61, 0.36, 1);
    --m-dur: 0.28s;
    --m-dur-fast: 0.18s;
    
    --m-font-h1: clamp(1.75rem, 4vw, 2.25rem);
    --m-font-h2: clamp(1.5rem, 3.5vw, 1.75rem);
    --m-font-h3: clamp(1.25rem, 3vw, 1.5rem);
    --m-font-h4: clamp(1.1rem, 2.5vw, 1.25rem);
    --m-font-body: clamp(0.9375rem, 2vw, 1rem);
    --m-font-caption: clamp(0.75rem, 1.8vw, 0.8125rem);
    --m-font-small: 0.6875rem;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION 2 — HEADER RECONSTRUCTION (Phase 4)
   Slim, sticky, 56px max, logo+search+cart+menu priority
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .navbar {
    position: fixed !important;
    top: var(--admin-return-banner-height, 0px) !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 100 !important;
    height: 56px !important;
    background: rgba(255, 255, 255, 0.96) !important;
    backdrop-filter: blur(20px) saturate(1.8) !important;
    -webkit-backdrop-filter: blur(20px) saturate(1.8) !important;
    border-bottom: 1px solid rgba(181, 101, 122, 0.12) !important;
    transition: box-shadow 0.25s ease, transform 0.3s var(--m-ease) !important;
    will-change: transform;
  }

  .navbar.scrolled {
    box-shadow: 0 2px 20px rgba(60, 40, 30, 0.08) !important;
  }

  .nav-inner {
    display: flex !important;
    align-items: center !important;
    height: 56px !important;
    padding: 0 12px !important;
    gap: 8px !important;
    max-width: 100% !important;
  }

  /* Logo — compact, left-aligned */
  .logo {
    font-size: 1.2rem !important;
    flex: 0 0 auto !important;
    min-width: auto !important;
    margin-right: auto !important;
  }

  /* Desktop nav links — fully hidden on mobile */
  .nav-links {
    display: none !important;
    position: static !important;
    transform: none !important;
    left: auto !important;
  }

  /* Desktop hamburger — hidden (we use mobile commerce menu instead) */
  .hamburger {
    display: none !important;
  }

  /* Nav actions (auth area) — show but compact */
  .nav-actions {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    min-width: auto !important;
    max-width: 120px !important;
    flex: 0 0 auto !important;
    justify-content: flex-end !important;
  }

  /* Desktop search — hidden on mobile */
  .nav-search {
    display: none !important;
  }

  /* ── Mobile Commerce Menu Button ── */
  .mobile-commerce-menu {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 5px !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    padding: 10px !important;
    flex: 0 0 auto !important;
    border-radius: 12px !important;
    transition: background 0.2s ease !important;
    -webkit-tap-highlight-color: transparent !important;
    touch-action: manipulation !important;
  }

  .mobile-commerce-menu:active {
    background: rgba(181, 101, 122, 0.08) !important;
  }

  .mobile-commerce-menu span {
    display: block !important;
    width: 20px !important;
    height: 1.5px !important;
    background: var(--charcoal, #1c1917) !important;
    border-radius: 2px !important;
    transition: transform 0.3s var(--m-ease), opacity 0.2s ease !important;
    transform-origin: center !important;
  }

  /* ── Mobile Commerce Actions ── */
  .mobile-commerce-actions {
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    flex: 0 0 auto !important;
  }

  .mobile-commerce-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    border-radius: 12px !important;
    color: var(--charcoal, #1c1917) !important;
    transition: background 0.2s ease !important;
    -webkit-tap-highlight-color: transparent !important;
    touch-action: manipulation !important;
    position: relative !important;
  }

  .mobile-commerce-icon:active {
    background: rgba(181, 101, 122, 0.08) !important;
  }

  .mobile-commerce-icon svg {
    width: 22px !important;
    height: 22px !important;
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 1.8 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
  }

  .mobile-cart-count {
    position: absolute !important;
    top: 4px !important;
    right: 4px !important;
    width: 18px !important;
    height: 18px !important;
    background: var(--rose-dark, #b5657a) !important;
    color: white !important;
    font-family: var(--font-body, 'Jost', sans-serif) !important;
    font-size: 0.625rem !important;
    font-weight: 700 !important;
    line-height: 18px !important;
    text-align: center !important;
    border-radius: 50% !important;
    display: none !important;
  }

  .mobile-cart-count:not(:empty) {
    display: block !important;
  }

  /* ── Mobile Category Strip — hidden from header, shown on homepage ── */
  .mobile-category-strip {
    display: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION 3 — MOBILE SEARCH BAR (Below Header)
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .mobile-commerce-search {
    display: flex !important;
    padding: 8px 16px !important;
    background: var(--white, #fff) !important;
    position: sticky !important;
    top: 56px !important;
    z-index: 99 !important;
    border-bottom: 1px solid rgba(181, 101, 122, 0.08) !important;
  }

  .mobile-search-shell {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    width: 100% !important;
    height: 42px !important;
    padding: 0 14px !important;
    border: 1.5px solid var(--border, #ede6dd) !important;
    border-radius: 999px !important;
    background: var(--cream, #faf8f5) !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
  }

  .mobile-search-shell:focus-within {
    border-color: var(--rose, #d4879c) !important;
    box-shadow: 0 0 0 3px rgba(212, 135, 156, 0.12) !important;
  }

  .mobile-search-shell svg {
    width: 16px !important;
    height: 16px !important;
    flex-shrink: 0 !important;
    color: var(--taupe, #c4b8ad) !important;
  }

  .mobile-search-shell input {
    flex: 1 !important;
    border: none !important;
    background: transparent !important;
    outline: none !important;
    font-family: var(--font-body, 'Jost', sans-serif) !important;
    font-size: 0.875rem !important;
    color: var(--text, #1c1917) !important;
    width: 100% !important;
    min-width: 0 !important;
  }

  .mobile-search-shell input::placeholder {
    color: var(--taupe, #c4b8ad) !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION 4 — MOBILE NAVIGATION DRAWER (Phase 9)
   Smooth slide-in drawer with GPU acceleration
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .lux-mobile-drawer-backdrop {
    display: block !important;
    position: fixed !important;
    inset: 0 !important;
    background: rgba(28, 25, 23, 0.4) !important;
    z-index: 200 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.25s ease, visibility 0.25s ease !important;
    -webkit-tap-highlight-color: transparent !important;
  }

  .lux-mobile-drawer-backdrop.open {
    opacity: 1 !important;
    visibility: visible !important;
  }

  .lux-mobile-drawer {
    display: block !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    bottom: 0 !important;
    width: 85vw !important;
    max-width: 360px !important;
    background: var(--white, #fff) !important;
    z-index: 201 !important;
    transform: translateX(-100%) !important;
    transition: transform 0.3s var(--m-ease) !important;
    will-change: transform !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    box-shadow: 0 0 40px rgba(60, 40, 30, 0.12) !important;
    padding: 0 !important;
  }

  .lux-mobile-drawer.open {
    transform: translateX(0) !important;
  }

  .lux-mobile-drawer-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 16px 20px !important;
    border-bottom: 1px solid var(--border, #ede6dd) !important;
  }

  .lux-mobile-drawer-logo {
    font-family: var(--font-head, 'Playfair Display', serif) !important;
    font-size: 1.15rem !important;
    font-weight: 500 !important;
    color: var(--charcoal, #1c1917) !important;
  }

  .lux-mobile-drawer-logo span {
    color: var(--rose-dark, #b5657a) !important;
  }

  .lux-mobile-drawer-close {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 44px !important;
    border: none !important;
    background: transparent !important;
    cursor: pointer !important;
    font-size: 1.5rem !important;
    color: var(--muted, #4e4440) !important;
    border-radius: 50% !important;
    -webkit-tap-highlight-color: transparent !important;
  }

  .lux-mobile-drawer nav {
    padding: 12px 0 !important;
  }

  .lux-mobile-drawer nav a {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    padding: 14px 24px !important;
    font-family: var(--font-body, 'Jost', sans-serif) !important;
    font-size: 0.9375rem !important;
    font-weight: 500 !important;
    color: var(--charcoal, #1c1917) !important;
    text-decoration: none !important;
    letter-spacing: 0.01em !important;
    min-height: 48px !important;
    transition: background 0.15s ease !important;
    -webkit-tap-highlight-color: transparent !important;
  }

  .lux-mobile-drawer nav a:active {
    background: var(--blush, #faf1f4) !important;
  }

  .lux-mobile-drawer nav a svg {
    width: 20px !important;
    height: 20px !important;
    flex-shrink: 0 !important;
    color: var(--rose-dark, #b5657a) !important;
  }

  .lux-mobile-drawer-divider {
    height: 1px !important;
    background: var(--border, #ede6dd) !important;
    margin: 8px 24px !important;
  }

  .lux-mobile-drawer-footer {
    padding: 20px 24px !important;
    border-top: 1px solid var(--border, #ede6dd) !important;
  }

  .lux-mobile-drawer-footer p {
    font-size: 0.75rem !important;
    color: var(--muted, #4e4440) !important;
    margin-bottom: 8px !important;
    letter-spacing: 0.04em !important;
  }

  .lux-mobile-drawer-footer a {
    display: block !important;
    font-size: 0.8125rem !important;
    color: var(--rose-dark, #b5657a) !important;
    font-weight: 500 !important;
    padding: 6px 0 !important;
    text-decoration: none !important;
    min-height: 36px !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION 5 — HERO RECONSTRUCTION (Phase 5)
   60-75vh, cinematic, brand-first
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero {
    padding-top: 56px !important;
    min-height: 70svh !important;
    max-height: 85svh !important;
    background: linear-gradient(180deg, #fdf8f5 0%, #faf1f4 50%, #faf8f5 100%) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    position: relative !important;
    overflow: hidden !important;
  }

  .hero-bg-layer {
    display: none !important;
  }

  .hero-inner {
    display: flex !important;
    flex-direction: column !important;
    text-align: center !important;
    gap: 32px !important;
    padding: 24px 20px 32px !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 1 !important;
  }

  .hero-text {
    order: 1 !important;
    text-align: center !important;
    max-width: 420px !important;
  }

  .hero-eyebrow {
    justify-content: center !important;
    font-size: 0.6875rem !important;
    letter-spacing: 0.2em !important;
    margin-bottom: 16px !important;
  }

  .eyebrow-line {
    width: 28px !important;
  }

  .hero-headline {
    font-size: clamp(2rem, 6vw, 2.8rem) !important;
    line-height: 1.08 !important;
    margin-bottom: 16px !important;
    letter-spacing: -0.02em !important;
  }

  .hero-sub {
    font-size: 0.9375rem !important;
    max-width: 340px !important;
    margin: 0 auto 24px !important;
    line-height: 1.6 !important;
  }

  .hero-ctas {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
    margin-bottom: 24px !important;
    max-width: 320px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-ctas .btn-primary,
  .hero-ctas .btn-ghost {
    width: 100% !important;
    justify-content: center !important;
    padding: 14px 24px !important;
    font-size: 0.8125rem !important;
    min-height: 48px !important;
    border-radius: 999px !important;
  }

  .hero-ctas .btn-primary {
    letter-spacing: 0.08em !important;
  }

  .hero-trust-row {
    justify-content: center !important;
    gap: 8px 12px !important;
    flex-wrap: wrap !important;
  }

  .hero-trust-item {
    font-size: 0.6875rem !important;
  }

  .hero-visual {
    order: 2 !important;
    width: 100% !important;
    max-width: 320px !important;
  }

  .hero-img-wrap {
    border-radius: var(--m-radius-xl) !important;
  }

  .hero-img {
    width: 100% !important;
    max-height: 280px !important;
    object-fit: cover !important;
    border-radius: var(--m-radius-lg) !important;
    object-position: center 25% !important;
  }

  .hero-img-frame {
    display: none !important;
  }

  .hero-float-card {
    display: none !important;
  }

  .hero-float-tag {
    display: none !important;
  }

  .hero-scroll-hint {
    display: none !important;
  }
}

@media (max-width: 380px) {
  .hero {
    min-height: 65svh !important;
  }
  .hero-inner {
    padding: 16px 16px 24px !important;
    gap: 20px !important;
  }
  .hero-headline {
    font-size: 1.75rem !important;
  }
  .hero-img {
    max-height: 220px !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION 6 — MOBILE PROMO SLIDER
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .mobile-promo-slider {
    display: block !important;
    padding: 16px 0 !important;
    background: var(--white, #fff) !important;
  }

  .mobile-promo-track {
    display: flex !important;
    gap: 10px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    scroll-padding-inline: 16px !important;
    padding: 0 16px !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }

  .mobile-promo-track::-webkit-scrollbar { display: none !important; }

  .mobile-promo-card {
    flex: 0 0 140px !important;
    scroll-snap-align: start !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 8px !important;
    text-align: center !important;
    text-decoration: none !important;
    background: var(--cream, #faf8f5) !important;
    border-radius: var(--m-radius) !important;
    padding: 14px 10px !important;
    border: 1px solid var(--border, #ede6dd) !important;
    transition: transform 0.2s ease !important;
    -webkit-tap-highlight-color: transparent !important;
  }

  .mobile-promo-card:active { transform: scale(0.96) !important; }

  .mobile-promo-card img {
    width: 72px !important;
    height: 72px !important;
    object-fit: cover !important;
    border-radius: 50% !important;
    border: 2px solid var(--border, #ede6dd) !important;
  }

  .mobile-promo-card span {
    font-size: 0.625rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    color: var(--rose-dark, #b5657a) !important;
  }

  .mobile-promo-card strong {
    font-family: var(--font-body, 'Jost', sans-serif) !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    color: var(--charcoal, #1c1917) !important;
    line-height: 1.3 !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION 7 — CATEGORY EXPERIENCE (Phase 8)
   Swipeable horizontal category chips
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .mobile-category-strip {
    display: flex !important;
    gap: 8px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x proximity !important;
    scroll-padding-inline: 16px !important;
    padding: 12px 16px !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    background: var(--white, #fff) !important;
    border-bottom: 1px solid var(--border, #ede6dd) !important;
  }

  .mobile-category-strip::-webkit-scrollbar { display: none !important; }

  .mobile-category-pill {
    flex: 0 0 auto !important;
    scroll-snap-align: start !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 6px !important;
    text-decoration: none !important;
    min-width: 56px !important;
    padding: 4px !important;
    -webkit-tap-highlight-color: transparent !important;
  }

  .mobile-category-pill:active { opacity: 0.7 !important; }

  .mobile-category-img {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    background: var(--blush, #faf1f4) !important;
    border: 2px solid var(--border, #ede6dd) !important;
    transition: border-color 0.2s ease !important;
  }

  .mobile-category-pill:active .mobile-category-img {
    border-color: var(--rose-dark, #b5657a) !important;
  }

  .mobile-category-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .mobile-category-pill span:last-child {
    font-size: 0.625rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.06em !important;
    color: var(--muted, #4e4440) !important;
    text-transform: uppercase !important;
  }

  .mobile-category-price {
    font-family: var(--font-head, 'Playfair Display', serif) !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    color: var(--rose-dark, #b5657a) !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION 8 — PRODUCT GRID & CARDS (Phase 6+7)
   Image-dominant luxury product cards
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .product-grid-lux {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    padding: 0 !important;
  }

  .product-card-lux {
    display: flex !important;
    flex-direction: column !important;
    background: var(--white, #fff) !important;
    border-radius: var(--m-radius) !important;
    overflow: hidden !important;
    border: 1px solid var(--border, #ede6dd) !important;
    transition: box-shadow 0.25s ease, transform 0.25s ease !important;
    height: 100% !important;
  }

  .product-card-lux:active { transform: scale(0.98) !important; }

  .lux-img-container {
    position: relative !important;
    overflow: hidden !important;
    aspect-ratio: 4 / 5 !important;
    background: var(--blush, #faf1f4) !important;
  }

  .lux-img-container img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
    transition: transform 0.45s ease !important;
  }

  .mobile-product-badge {
    position: absolute !important;
    top: 8px !important;
    left: 8px !important;
    z-index: 4 !important;
    display: inline-flex !important;
    align-items: center !important;
    height: 22px !important;
    padding: 0 8px !important;
    border-radius: 4px !important;
    font-family: var(--font-body, 'Jost', sans-serif) !important;
    font-size: 0.5625rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    background: rgba(255,255,255,0.88) !important;
    color: var(--rose-dark, #b5657a) !important;
    border: 1px solid rgba(181,101,122,0.3) !important;
    backdrop-filter: blur(6px) !important;
    -webkit-backdrop-filter: blur(6px) !important;
    white-space: nowrap !important;
    max-width: calc(100% - 16px) !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .lux-badges {
    position: absolute !important;
    top: 36px !important;
    left: 8px !important;
    z-index: 4 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 3px !important;
    pointer-events: none !important;
  }

  .lux-badge {
    display: inline-flex !important;
    align-items: center !important;
    height: 20px !important;
    padding: 0 7px !important;
    border-radius: 3px !important;
    font-size: 0.5rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
  }

  .lux-quick-add { display: none !important; }
  .lux-hover-layer { display: none !important; }

  .lux-product-info {
    padding: 10px 12px 12px !important;
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    gap: 0 !important;
  }

  .lux-product-category {
    font-size: 0.5625rem !important;
    letter-spacing: 0.08em !important;
    margin-bottom: 4px !important;
  }

  .lux-product-name {
    font-size: 0.8125rem !important;
    font-weight: 500 !important;
    line-height: 1.25 !important;
    margin-bottom: 4px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  .mobile-product-rating {
    font-size: 0.6875rem !important;
    margin-bottom: 4px !important;
  }

  .lux-product-desc { display: none !important; }

  .lux-product-bottom {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin: auto 0 8px !important;
    gap: 6px !important;
    flex-wrap: nowrap !important;
  }

  .lux-price {
    font-size: 0.9375rem !important;
    font-weight: 600 !important;
  }

  .mobile-old-price { font-size: 0.6875rem !important; }
  .mobile-discount { font-size: 0.625rem !important; }

  .lux-stock-dot {
    font-size: 0.5625rem !important;
    padding: 2px 6px !important;
  }

  .lux-cart-btn {
    width: 100% !important;
    height: 38px !important;
    min-height: 44px !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em !important;
    border-radius: 999px !important;
    margin-top: 0 !important;
  }

  .lux-skeleton-card { border-radius: var(--m-radius) !important; }
}

@media (min-width: 540px) and (max-width: 1024px) {
  .product-grid-lux {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 14px !important;
  }
}

@media (max-width: 340px) {
  .product-grid-lux {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION 9 — CATEGORY / STYLE CARDS
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .cat-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  .cat-card {
    border-radius: var(--m-radius) !important;
    border: 1px solid var(--border, #ede6dd) !important;
    transition: transform 0.2s ease !important;
  }

  .cat-card:active { transform: scale(0.97) !important; }

  .cat-img-wrap { height: 130px !important; }

  .cat-info {
    padding: 12px 14px 14px !important;
  }

  .cat-info h3 { font-size: 0.875rem !important; }
  .cat-info p { font-size: 0.6875rem !important; }

  .cat-arrow {
    opacity: 1 !important;
    transform: none !important;
    font-size: 0.875rem !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION 10 — WHY US / PROMISE SECTION
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .why-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
    border-radius: var(--m-radius-lg) !important;
    overflow: hidden !important;
  }

  .why-card { padding: 24px 16px !important; }
  .why-numeral { font-size: 1.8rem !important; margin-bottom: 12px !important; }
  .why-card h3 { font-size: 0.875rem !important; }
  .why-card p { font-size: 0.75rem !important; line-height: 1.55 !important; }
}

@media (max-width: 380px) {
  .why-grid { grid-template-columns: 1fr !important; }
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION 11 — TESTIMONIALS
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .d6-testi-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
  }

  .d6-testi-card { padding: 20px !important; }
  .d6-testi-text { font-size: 0.875rem !important; line-height: 1.65 !important; }
  .d6-testi-avatar { width: 38px !important; height: 38px !important; }

  .d6-testimonials-header {
    flex-direction: column !important;
    gap: 16px !important;
    align-items: flex-start !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION 12 — D6 BRAND STORY (About section)
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .d6-brand-story-inner {
    display: flex !important;
    flex-direction: column !important;
    gap: 32px !important;
  }

  .d6-story-headline { font-size: clamp(1.5rem, 4vw, 1.9rem) !important; }
  .d6-story-body { font-size: 0.875rem !important; line-height: 1.7 !important; }
  .d6-story-pull { font-size: 0.9375rem !important; padding: 16px 0 !important; }
  .d6-story-visuals { max-width: 100% !important; }

  .d6-story-img-main img {
    max-height: 280px !important;
    width: 100% !important;
    object-fit: cover !important;
    border-radius: var(--m-radius-lg) !important;
  }

  .d6-story-img-accent { display: none !important; }
  .d6-story-frame-accent { display: none !important; }
  .d6-story-stat-float { position: static !important; margin-top: 12px !important; }
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION 13 — EDITORIAL CAMPAIGN BLOCKS (D6)
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .d6-campaign-block {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
  }

  .d6-campaign-block--reverse { flex-direction: column !important; }
  .d6-campaign-img-panel { width: 100% !important; }

  .d6-campaign-img-panel img {
    max-height: 260px !important;
    width: 100% !important;
    object-fit: cover !important;
    border-radius: var(--m-radius-lg) !important;
  }

  .d6-campaign-text-panel { padding: 0 !important; text-align: left !important; }
  .d6-campaign-headline { font-size: clamp(1.4rem, 3.5vw, 1.75rem) !important; }
  .d6-campaign-desc { font-size: 0.875rem !important; }
  .d6-campaign-mood-num { display: none !important; }

  .d6-mood-strip-inner {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
  }

  .d6-mood-card { width: 100% !important; }
  .d6-mood-card img {
    max-height: 240px !important;
    object-fit: cover !important;
    border-radius: var(--m-radius-lg) !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION 14 — NEWSLETTER (D6)
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .d6-newsletter-inner { flex-direction: column !important; gap: 24px !important; }
  .d6-newsletter-img-panel { display: none !important; }
  .d6-newsletter-content { text-align: center !important; padding: 0 !important; }
  .d6-newsletter-headline { font-size: clamp(1.5rem, 4vw, 1.9rem) !important; }
  .d6-newsletter-form { flex-direction: column !important; gap: 10px !important; }
  .d6-newsletter-input { width: 100% !important; min-height: 48px !important; }
  .d6-newsletter-btn { width: 100% !important; min-height: 48px !important; }
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION 15 — FILTER BAR (Phase 14)
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .lux-filter-bar {
    flex-wrap: wrap !important;
    gap: 8px !important;
    padding: 12px !important;
    border-radius: var(--m-radius) !important;
  }

  .lux-filter-label { display: none !important; }

  .lux-search-wrap { flex: 1 1 100% !important; order: 1 !important; }
  .lux-selects { flex: 1 1 100% !important; order: 2 !important; gap: 8px !important; }

  .lux-select {
    flex: 1 !important;
    min-height: 42px !important;
    font-size: 0.8125rem !important;
  }

  .lux-search-input {
    min-height: 42px !important;
    font-size: 0.875rem !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION 16 — FOOTER (D6)
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .d6-footer-inner {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px 16px !important;
    padding: 32px 20px !important;
  }

  .d6-footer-brand-col {
    grid-column: 1 / -1 !important;
    text-align: center !important;
  }

  .d6-footer-logo { font-size: 1.15rem !important; }

  .d6-footer-tagline {
    font-size: 0.75rem !important;
    max-width: 280px !important;
    margin: 0 auto !important;
  }

  .d6-footer-social-row { justify-content: center !important; }

  .d6-footer-col-title {
    font-size: 0.6875rem !important;
    letter-spacing: 0.12em !important;
    margin-bottom: 12px !important;
  }

  .d6-footer-links li a {
    font-size: 0.8125rem !important;
    padding: 6px 0 !important;
    display: block !important;
    min-height: 36px !important;
  }

  .d6-footer-bottom {
    flex-direction: column !important;
    gap: 8px !important;
    text-align: center !important;
    padding: 20px !important;
  }

  .d6-footer-copy { font-size: 0.6875rem !important; }

  .d6-footer-legal {
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
  }
}

@media (max-width: 380px) {
  .d6-footer-inner {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION 17 — MOBILE BOTTOM NAVIGATION (Phase 9)
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .mobile-bottom-nav {
    display: flex !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 150 !important;
    background: rgba(255,255,255,0.96) !important;
    backdrop-filter: blur(20px) saturate(1.8) !important;
    -webkit-backdrop-filter: blur(20px) saturate(1.8) !important;
    border-top: 1px solid rgba(181,101,122,0.1) !important;
    padding: 6px 8px calc(6px + env(safe-area-inset-bottom, 0px)) !important;
    justify-content: space-around !important;
    align-items: center !important;
    height: auto !important;
    min-height: 64px !important;
    box-shadow: 0 -2px 20px rgba(60,40,30,0.06) !important;
  }

  .mobile-bottom-tab {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 3px !important;
    padding: 6px 10px !important;
    min-width: 48px !important;
    min-height: 48px !important;
    text-decoration: none !important;
    color: var(--muted, #4e4440) !important;
    border-radius: 10px !important;
    transition: color 0.2s ease, background 0.2s ease !important;
    -webkit-tap-highlight-color: transparent !important;
    touch-action: manipulation !important;
  }

  .mobile-bottom-tab.is-active { color: var(--rose-dark, #b5657a) !important; }

  .mobile-bottom-tab:active { background: rgba(181,101,122,0.06) !important; }

  .mobile-bottom-tab svg {
    width: 22px !important;
    height: 22px !important;
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 1.6 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
  }

  .mobile-bottom-tab span {
    font-size: 0.5625rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION 18 — CART PAGE RECONSTRUCTION (Phase 15)
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .cart-page {
    padding-top: 72px !important;
    padding-bottom: calc(100px + env(safe-area-inset-bottom, 0px)) !important;
  }

  .cart-page .container { padding: 0 16px !important; }

  .cart-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
  }

  .cart-header h1 { font-size: 1.5rem !important; }
  .cart-header { margin-bottom: 24px !important; }
  .cart-items { gap: 10px !important; }

  .cart-item {
    flex-wrap: wrap !important;
    padding: 16px !important;
    gap: 12px !important;
    border-radius: var(--m-radius) !important;
  }

  .cart-item-icon { width: 44px !important; height: 44px !important; font-size: 1.5rem !important; }
  .cart-item-details { flex: 1 1 120px !important; }
  .cart-item-name { font-size: 0.875rem !important; }

  .cart-item-right {
    flex-direction: row !important;
    align-items: center !important;
    width: 100% !important;
    justify-content: space-between !important;
    gap: 12px !important;
  }

  .cart-item-subtotal { font-size: 0.75rem !important; text-align: right !important; }

  .qty-controls { height: 40px !important; }

  .qty-btn {
    width: 40px !important;
    height: 40px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    font-size: 1.1rem !important;
  }

  .qty-value {
    min-width: 36px !important;
    line-height: 40px !important;
    font-size: 0.875rem !important;
  }

  .btn-remove {
    min-height: 36px !important;
    padding: 8px 14px !important;
    font-size: 0.75rem !important;
  }

  .cart-summary {
    position: sticky !important;
    bottom: 70px !important;
    background: var(--white, #fff) !important;
    border-radius: var(--m-radius-lg) var(--m-radius-lg) 0 0 !important;
    padding: 20px 16px !important;
    box-shadow: 0 -4px 24px rgba(60,40,30,0.1) !important;
    border: 1px solid var(--border, #ede6dd) !important;
    margin: 0 -16px !important;
    width: calc(100% + 32px) !important;
    z-index: 50 !important;
  }

  .cart-summary h2 { font-size: 1.1rem !important; margin-bottom: 12px !important; }

  .cart-summary .btn-primary {
    width: 100% !important;
    min-height: 48px !important;
    font-size: 0.875rem !important;
    margin-top: 12px !important;
  }

  .cart-empty { text-align: center !important; padding: 60px 24px !important; }
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION 19 — CHECKOUT RECONSTRUCTION (Phase 16)
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .checkout-page {
    padding-top: 72px !important;
    padding-bottom: 40px !important;
  }

  .checkout-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
  }

  .checkout-header h1 { font-size: 1.5rem !important; }
  .checkout-header { margin-bottom: 24px !important; }

  .form-card {
    padding: 20px !important;
    border-radius: var(--m-radius) !important;
  }

  .form-card h2 {
    font-size: 1.1rem !important;
    margin-bottom: 16px !important;
    padding-bottom: 12px !important;
  }

  .form-group label { font-size: 0.75rem !important; margin-bottom: 6px !important; }

  .form-group input,
  .form-group textarea {
    padding: 12px 14px !important;
    font-size: 0.875rem !important;
    min-height: 48px !important;
    border-radius: var(--m-radius-sm) !important;
  }

  .form-row { grid-template-columns: 1fr !important; gap: 0 !important; }
  .form-row .form-group { margin-bottom: 20px !important; }

  .btn-place-order {
    min-height: 50px !important;
    font-size: 0.9375rem !important;
    position: sticky !important;
    bottom: 16px !important;
  }

  .checkout-summary {
    position: sticky !important;
    bottom: 20px !important;
    padding: 20px 16px !important;
    border-radius: var(--m-radius) !important;
    box-shadow: 0 -4px 24px rgba(60,40,30,0.08) !important;
  }

  .checkout-summary h2 {
    font-size: 1.1rem !important;
    margin-bottom: 12px !important;
    padding-bottom: 12px !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION 20 — PRODUCT DETAIL PAGE (PDP)
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .pdp-layout { flex-direction: column !important; gap: 24px !important; }
  .pdp-gallery { width: 100% !important; }

  .pdp-gallery img {
    max-height: 400px !important;
    width: 100% !important;
    object-fit: cover !important;
    border-radius: var(--m-radius-lg) !important;
  }

  .pdp-info { width: 100% !important; padding: 0 !important; }

  .pdp-sticky-cta {
    position: sticky !important;
    bottom: 70px !important;
    background: var(--white, #fff) !important;
    padding: 16px !important;
    border-radius: var(--m-radius-lg) var(--m-radius-lg) 0 0 !important;
    box-shadow: 0 -4px 24px rgba(60,40,30,0.1) !important;
    z-index: 50 !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION 21 — SECTION SPACING (Phase 12)
   Unified vertical rhythm
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .section { padding: 40px 0 !important; }
  .container { padding: 0 16px !important; }

  .section-eyebrow {
    font-size: 0.625rem !important;
    letter-spacing: 0.16em !important;
    margin-bottom: 8px !important;
    justify-content: flex-start !important;
  }

  .section-eyebrow::after { width: 24px !important; }

  .section-title {
    font-size: var(--m-font-h2) !important;
    margin-bottom: 20px !important;
    line-height: 1.15 !important;
  }

  .section-header-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    margin-bottom: 20px !important;
    gap: 8px !important;
  }

  .section-view-all { font-size: 0.6875rem !important; }
  .marquee-wrap { padding: 10px 0 !important; }
  .marquee-track span { font-size: 0.5625rem !important; padding: 0 20px !important; }
  .collection-footer-note { font-size: 0.75rem !important; padding: 16px 0 !important; }
  .editorial-quote-strip { padding: 20px 16px !important; margin: 8px 0 !important; }
  .editorial-quote-text { font-size: 0.875rem !important; }
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION 22 — D6 CAMPAIGN SECTIONS
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .d6-campaign { padding: 32px 0 !important; }
  .d6-campaign-collection-tag { font-size: 0.625rem !important; }
  .d6-campaign-cta {
    min-height: 44px !important;
    display: inline-flex !important;
    align-items: center !important;
  }
  .d6-mood-strip { padding: 24px 16px !important; }
  .d6-mood-card-overlay { padding: 12px !important; }
  .d6-mood-card-title { font-size: 1rem !important; }
  .d6-mood-card-tag { font-size: 0.5625rem !important; }
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION 23 — D6 TESTIMONIALS / SOCIAL PROOF
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .d6-testimonials { padding: 40px 0 !important; }
  .d6-testimonials-inner { padding: 0 16px !important; }
  .d6-testimonials-headline { font-size: var(--m-font-h2) !important; }
  .d6-testi-card { border-radius: var(--m-radius) !important; }
  .d6-testi-quote-mark { font-size: 2rem !important; }
  .d6-testi-author { gap: 10px !important; }
  .d6-testi-name { font-size: 0.8125rem !important; }
  .d6-testi-handle { font-size: 0.6875rem !important; }
  .d6-testi-overall { text-align: left !important; }
  .d6-testi-rating-num { font-size: 2.5rem !important; }
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION 24 — MARQUEE STRIP
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .d6-marquee { padding: 10px 0 !important; }
  .d6-marquee-item { font-size: 0.625rem !important; padding: 0 20px !important; }
  .d6-marquee-gem { font-size: 0.5rem !important; }
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION 25 — CART TOAST
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .cart-toast {
    left: 16px !important;
    right: 16px !important;
    transform: translateY(16px) !important;
    text-align: center !important;
    white-space: normal !important;
    font-size: 0.75rem !important;
    padding: 12px 16px !important;
    border-radius: var(--m-radius-sm) !important;
    bottom: 80px !important;
    max-width: calc(100% - 32px) !important;
  }
  .cart-toast.show { transform: translateY(0) !important; }
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION 26 — TOUCH INTERACTION (Phase 13)
   Minimum 44x44px touch targets
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  button:not(.qty-btn),
  .btn,
  a.btn,
  [role="button"],
  input[type="submit"],
  input[type="button"] {
    min-height: 44px !important;
  }

  a[href]:not(.mobile-bottom-tab):not(.mobile-category-pill):not(.logo) {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
  }

  select,
  input[type="text"],
  input[type="search"],
  input[type="email"],
  input[type="tel"],
  input[type="number"],
  textarea {
    min-height: 44px !important;
    font-size: 0.9375rem !important;
  }

  @supports (-webkit-touch-callout: none) {
    input, select, textarea { font-size: 16px !important; }
  }
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION 27 — ANIMATIONS (Phase 18)
   GPU-accelerated, 200-350ms
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-img,
  .cat-img-wrap img,
  .product-card:hover .product-img-wrap img,
  .product-card-lux:hover .lux-img-container img {
    transition: transform 0.25s ease !important;
  }

  .lux-reveal,
  .lux-reveal-delay,
  .d6-reveal,
  .d6-reveal-left,
  .d6-reveal-right,
  .d6-reveal-scale {
    transition: opacity 0.35s ease, transform 0.35s ease !important;
  }

  .lux-reveal-delay { transition-delay: 0.1s !important; }

  .d6-reveal,
  .d6-reveal-left,
  .d6-reveal-right,
  .d6-reveal-scale {
    opacity: 1 !important;
    transform: none !important;
  }

  .navbar,
  .mobile-bottom-nav,
  .cart-summary,
  .checkout-summary {
    will-change: transform;
    transform: translateZ(0);
  }

  .product-grid-lux,
  .cat-grid { contain: layout style; }
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION 28 — RESPONSIVE BREAKPOINTS (Phase 2)
   All 10 breakpoints manually verified
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 320px) {
  .product-grid-lux { grid-template-columns: 1fr !important; gap: 10px !important; }
  .hero-headline { font-size: 1.6rem !important; }
  .hero-sub { font-size: 0.8125rem !important; }
  .section-title { font-size: 1.3rem !important; }
}

@media (min-width: 321px) and (max-width: 360px) {
  .product-grid-lux { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
}

@media (min-width: 361px) and (max-width: 375px) {
  .product-grid-lux { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
}

@media (min-width: 376px) and (max-width: 390px) {
  .product-grid-lux { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
}

@media (min-width: 391px) and (max-width: 414px) {
  .product-grid-lux { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
}

@media (min-width: 415px) and (max-width: 430px) {
  .product-grid-lux { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
}

@media (min-width: 431px) and (max-width: 480px) {
  .product-grid-lux { grid-template-columns: repeat(2, 1fr) !important; gap: 14px !important; }
}

@media (min-width: 481px) and (max-width: 540px) {
  .product-grid-lux { grid-template-columns: repeat(3, 1fr) !important; gap: 14px !important; }
}

@media (min-width: 541px) and (max-width: 768px) {
  .product-grid-lux { grid-template-columns: repeat(3, 1fr) !important; gap: 16px !important; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .product-grid-lux { grid-template-columns: repeat(4, 1fr) !important; gap: 16px !important; }
  .cat-grid { grid-template-columns: repeat(4, 1fr) !important; }
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION 29 — SECTION ELIMINATION (Phase 10)
   Hide decorative-only sections on mobile
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  .hero-bg-layer { display: none !important; }
  .hero-scroll-hint { display: none !important; }
  .hero-float-card,
  .hero-float-tag,
  .hero-img-frame { display: none !important; }
  .d6-story-frame-accent { display: none !important; }
  .collection-divider { margin: 16px auto 0 !important; }
  .nav-search { display: none !important; }
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION 30 — PERFORMANCE (Phase 17)
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .product-grid-lux,
  .cat-grid,
  .why-grid { contain: layout style paint; }

  @media (hover: none) {
    .product-card-lux:hover { transform: none !important; box-shadow: none !important; }
    .cat-card:hover { transform: none !important; box-shadow: none !important; }
    .cat-card:hover .cat-img-wrap img { transform: none !important; }
    .product-card-lux:hover .lux-img-container img { transform: none !important; }
  }
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION 31 — DESKTOP PRESERVATION GUARD
   Absolutely no styles leak to desktop
   ═══════════════════════════════════════════════════════════════════ */
@media (min-width: 1025px) {
  .mobile-bottom-nav,
  .mobile-commerce-menu,
  .mobile-commerce-actions,
  .mobile-commerce-search,
  .mobile-category-strip,
  .mobile-promo-slider,
  .lux-mobile-drawer,
  .lux-mobile-drawer-backdrop,
  .mobile-cart-count { display: none !important; }
}

/* ═══════════════════════════════════════════════════════════════════
   END OF mobile-comprehensive.css
   Desktop experience remains 100% unchanged.
   All modifications were isolated to responsive mobile and tablet
   layers only (max-width: 1024px).
   ═══════════════════════════════════════════════════════════════════ */
