:root {
      --bg: #FCFBF9;
      --card-bg: #FFFFFF;
      --dark: #1F1917;
      --burgundy: #7B1123;
      --burgundy-hover: #630D1B;
      --burgundy-light: #FDF2F4;
      --burgundy-border: #F5D3D9;
      --rose-italic: #A3485E;
      --gold: #C5A059;
      --gold-light: #FAF4E8;
      --text-main: #2E2724;
      --text-muted: #7A726C;
      --border: #EBE5DF;
      --border-light: #F3EFEA;
      --green: #00A859;
      --green-light: #E8F7EE;
      --radius-sm: 8px;
      --radius-md: 14px;
      --radius-lg: 20px;
      --shadow-subtle: 0 4px 16px rgba(31, 25, 23, 0.05);
      --shadow-hover: 0 12px 32px rgba(31, 25, 23, 0.10);
      --shadow-modal: 0 24px 64px rgba(0, 0, 0, 0.35);
      --font-serif: 'Cormorant Garamond', Georgia, serif;
      --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      background-color: var(--bg);
      color: var(--text-main);
      font-family: var(--font-sans);
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
    }

    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; height: auto; display: block; }
    button { font-family: inherit; cursor: pointer; border: none; background: none; }

    .container {
      max-width: 1340px;
      margin: 0 auto;
      padding: 0 24px;
    }

        /* ── HEADER NAVIGATION (APPLE PILL STYLE) ── */
    .header-wrapper {
      position: sticky;
      top: 15px;
      z-index: 100;
      display: flex;
      justify-content: center;
      pointer-events: none;
      padding: 0 15px;
    }
    header {
      pointer-events: auto;
      background: rgba(255, 255, 255, 0.75);
      backdrop-filter: blur(20px) saturate(180%);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      border: 1px solid rgba(255, 255, 255, 0.6);
      border-radius: 50px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 10px rgba(0, 0, 0, 0.04);
      width: 100%;
      max-width: 1200px;
      transition: all 0.3s ease;
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 70px;
      padding: 0 24px;
    }
    .brand-logo {
      display: flex;
      align-items: center;
      text-decoration: none;
    }
    .brand-logo-img {
      height: 50px;
      width: auto;
      object-fit: contain;
      border-radius: 25px;
      background: transparent;
      transition: transform 0.25s ease;
    }
    .brand-logo:hover .brand-logo-img {
      transform: scale(1.05);
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 36px;
      background: rgba(240, 240, 240, 0.5);
      padding: 8px 24px;
      border-radius: 30px;
      border: 1px solid rgba(255,255,255,0.3);
    }
    .nav-link {
      font-size: 0.9rem;
      font-weight: 600;
      color: #333;
      letter-spacing: 0.02em;
      transition: color 0.2s;
    }
    .nav-link:hover {
      color: var(--burgundy);
    }
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .btn-nav-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--burgundy);
      color: #FFF;
      padding: 10px 24px;
      border-radius: 30px;
      font-size: 0.88rem;
      font-weight: 600;
      transition: all 0.3s ease;
    }
    .btn-nav-primary:hover {
      background: var(--burgundy-hover);
      transform: translateY(-2px);
      box-shadow: 0 4px 14px rgba(123, 17, 35, 0.25);
    }

    /* ── HERO BANNER (SCREENSHOT 1) ── */
    .hero-banner {
      padding: 56px 0 48px;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 48px;
      align-items: center;
    }
    .hero-badge {
      display: inline-block;
      background: var(--burgundy-light);
      color: var(--burgundy);
      border: 1px solid var(--burgundy-border);
      border-radius: 20px;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      padding: 6px 14px;
      margin-bottom: 20px;
    }
    .hero-title {
      font-family: var(--font-serif);
      font-size: 3.4rem;
      font-weight: 700;
      color: var(--dark);
      line-height: 1.12;
      margin-bottom: 20px;
    }
    .hero-title .italic-part {
      font-style: italic;
      color: var(--rose-italic);
      font-weight: 400;
    }
    .hero-desc {
      font-size: 1.05rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 32px;
      max-width: 540px;
    }
    .hero-buttons {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 36px;
      flex-wrap: wrap;
    }
    .btn-hero-solid {
      background: var(--burgundy);
      color: #FFF;
      padding: 14px 30px;
      border-radius: 30px;
      font-size: 0.95rem;
      font-weight: 600;
      transition: all 0.3s ease;
      display: inline-block;
    }
    .btn-hero-solid:hover {
      background: var(--burgundy-hover);
      transform: translateY(-2px);
      box-shadow: 0 6px 18px rgba(123, 17, 35, 0.28);
    }
    .btn-hero-outline {
      background: #FFF;
      color: var(--dark);
      border: 1px solid var(--border);
      padding: 14px 28px;
      border-radius: 30px;
      font-size: 0.95rem;
      font-weight: 600;
      transition: all 0.3s ease;
      display: inline-block;
    }
    .btn-hero-outline:hover {
      border-color: var(--burgundy);
      color: var(--burgundy);
      transform: translateY(-2px);
    }
    .hero-quote-box {
      border-left: 2px solid var(--burgundy);
      padding-left: 16px;
      margin-top: 10px;
    }
    .hero-quote-text {
      font-size: 0.92rem;
      color: var(--text-muted);
      line-height: 1.5;
      margin-bottom: 6px;
    }
    .hero-quote-author {
      font-size: 0.88rem;
      font-weight: 700;
      color: var(--burgundy);
    }

    /* Hero Story Card Slider */
    .hero-story-card {
      position: relative;
      height: 480px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-hover);
      background: #EAE5DF;
    }
    .hero-story-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }
    .hero-story-card:hover .hero-story-img {
      transform: scale(1.03);
    }
    .story-progress-bars {
      position: absolute;
      top: 16px;
      right: 16px;
      display: flex;
      gap: 6px;
      z-index: 5;
    }
    .story-bar {
      width: 28px;
      height: 3px;
      background: rgba(255, 255, 255, 0.4);
      border-radius: 2px;
      overflow: hidden;
    }
    .story-bar.active {
      background: #FFF;
      box-shadow: 0 0 4px rgba(0,0,0,0.3);
    }

    /* ── EXPLOREZ PAR CATÉGORIE (SCREENSHOT 2) ── */
    .section-categories {
      padding: 60px 0 54px;
      text-align: center;
    }
    .sec-subheading {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--rose-italic);
      margin-bottom: 10px;
      display: block;
    }
    .sec-heading {
      font-family: var(--font-serif);
      font-size: 3.2rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 12px;
      line-height: 1.15;
    }
    .sec-desc {
      font-size: 1.02rem;
      color: var(--text-muted);
      max-width: 680px;
      margin: 0 auto 40px;
    }
    .categories-5-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 18px;
    }
    .cat-item-card {
      position: relative;
      height: 360px;
      border-radius: 16px;
      overflow: hidden;
      cursor: pointer;
      box-shadow: var(--shadow-subtle);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      text-align: left;
    }
    .cat-item-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-hover);
    }
    .cat-item-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }
    .cat-item-card:hover .cat-item-img {
      transform: scale(1.08);
    }
    .cat-item-gradient {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(75, 10, 20, 0.95) 0%, rgba(75, 10, 20, 0.45) 38%, transparent 75%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 22px 18px;
    }
    .cat-item-title {
      font-family: var(--font-serif);
      font-size: 1.35rem;
      font-weight: 700;
      color: #FFF;
      margin-bottom: 4px;
      line-height: 1.2;
    }
    .cat-item-link {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: #E2C08D;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    /* ── STOREFRONT & FILTERS ── */
    .storefront-section {
      padding: 40px 0 80px;
    }
    .storefront-grid {
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 36px;
      align-items: start;
    }
    .storefront-grid > main {
      min-width: 0;
      width: 100%;
    }

    /* Sidebar */
    .filters-sidebar {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 28px 24px;
      box-shadow: var(--shadow-subtle);
      position: sticky;
      top: 100px;
      z-index: 10;
      width: 100%;
      max-width: 280px;
      box-sizing: border-box;
    }
    .filter-group {
      margin-bottom: 26px;
      padding-bottom: 22px;
      border-bottom: 1px solid var(--border-light);
    }
    .filter-group:last-child {
      margin-bottom: 0;
      padding-bottom: 0;
      border-bottom: none;
    }
    .filter-title {
      font-size: 0.85rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      color: var(--dark);
      margin-bottom: 14px;
    }
    .filter-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .filter-pill {
      font-size: 0.82rem;
      font-weight: 500;
      padding: 6px 14px;
      border-radius: 20px;
      background: var(--bg);
      border: 1px solid var(--border);
      color: var(--text-main);
      cursor: pointer;
      transition: all 0.2s ease;
    }
    .filter-pill:hover {
      border-color: var(--burgundy);
      color: var(--burgundy);
    }
    .filter-pill.active {
      background: var(--burgundy);
      border-color: var(--burgundy);
      color: #FFF;
      font-weight: 600;
    }

    /* Morpho Card */
    .morpho-card {
      background: var(--burgundy-light);
      border: 1px solid var(--burgundy-border);
      border-radius: var(--radius-md);
      padding: 16px;
      margin-top: 20px;
      text-align: center;
    }
    .morpho-title {
      font-family: var(--font-serif);
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--burgundy);
      margin-bottom: 6px;
    }
    .morpho-desc {
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-bottom: 12px;
    }
    .btn-morpho {
      background: var(--burgundy);
      color: #FFF;
      font-size: 0.8rem;
      font-weight: 600;
      padding: 8px 16px;
      border-radius: 20px;
      display: inline-block;
      transition: background 0.2s;
    }
    .btn-morpho:hover {
      background: var(--burgundy-hover);
    }

    /* Main Products Area */
    .storefront-top-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 24px;
      flex-wrap: wrap;
    }
    .search-box {
      flex: 1;
      min-width: 260px;
      position: relative;
    }
    .search-box input {
      width: 100%;
      height: 48px;
      padding: 0 18px 0 46px;
      border: 1px solid var(--border);
      border-radius: 30px;
      background: var(--card-bg);
      font-size: 0.92rem;
      font-family: inherit;
      color: var(--dark);
      outline: none;
      transition: border-color 0.2s;
    }
    .search-box input:focus {
      border-color: var(--burgundy);
    }
    .search-box-icon {
      position: absolute;
      left: 18px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--text-muted);
      font-size: 1rem;
    }
    .sort-box select {
      height: 48px;
      padding: 0 36px 0 18px;
      border: 1px solid var(--border);
      border-radius: 30px;
      background: var(--card-bg);
      font-size: 0.88rem;
      font-family: inherit;
      color: var(--dark);
      cursor: pointer;
      outline: none;
    }
    .count-indicator {
      font-size: 0.9rem;
      color: var(--text-muted);
      margin-bottom: 16px;
    }
    .count-number {
      font-weight: 700;
      color: var(--burgundy);
    }

    /* Dresses Grid */
    .dresses-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      width: 100%;
    }
    .dress-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      overflow: hidden;
      cursor: pointer;
      box-shadow: var(--shadow-subtle);
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
      display: flex;
      flex-direction: column;
      position: relative;
      z-index: 1;
    }
    .dress-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-hover);
      border-color: rgba(123, 17, 35, 0.3);
      z-index: 2;
    }
    .dress-img-wrap {
      position: relative;
      width: 100%;
      aspect-ratio: 3 / 4;
      height: auto;
      max-height: 420px;
      overflow: hidden;
      background: #FAF7F2;
      user-select: none;
      -webkit-user-select: none;
      -webkit-touch-callout: none;
    }
    .dress-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
      transition: transform 0.6s ease;
      user-select: none;
      -webkit-user-select: none;
      -webkit-user-drag: none;
      pointer-events: none;
    }
    .media-shield-wrap {
      position: relative;
      overflow: hidden;
      user-select: none;
      -webkit-user-select: none;
      -webkit-touch-callout: none;
    }
    .media-shield-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      z-index: 5;
      cursor: pointer;
      pointer-events: auto;
      -webkit-user-drag: auto;
    }
    @media print {
      img, .dress-img, .media-shield-wrap, .hero-carousel-img, .about-img {
        display: none !important;
      }
      body::after {
        content: "Dress4You Haute Couture — Propriété Privée Exclusive — Reproduction Interdite";
        font-size: 20pt;
        color: #7B1123;
        display: block;
        text-align: center;
        margin-top: 50px;
      }
    }
    .dress-card:hover .dress-img {
      transform: scale(1.05);
    }
    .badge-exclusive {
      position: absolute;
      top: 12px;
      left: 12px;
      background: rgba(123, 17, 35, 0.92);
      color: #FFF;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 1px;
      padding: 4px 10px;
      border-radius: 12px;
      text-transform: uppercase;
      backdrop-filter: blur(4px);
      z-index: 10;
      pointer-events: none;
    }
    .badge-new {
      position: absolute;
      top: 12px;
      left: 12px;
      background: rgba(197, 160, 89, 0.95);
      color: #FFF;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 1px;
      padding: 4px 10px;
      border-radius: 12px;
      text-transform: uppercase;
      backdrop-filter: blur(4px);
      z-index: 10;
      pointer-events: none;
    }
    .btn-wishlist {
      position: absolute;
      top: 12px;
      right: 12px;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.95);
      border: 1px solid rgba(0, 0, 0, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.15rem;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
      transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s ease;
      cursor: pointer;
      z-index: 25;
      pointer-events: auto;
    }
    .btn-wishlist:hover {
      transform: scale(1.18);
      background: #FFF;
    }
    .btn-wishlist:active {
      transform: scale(0.95);
    }
    .dress-card-info {
      padding: 16px 18px 18px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .dress-top-row {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
    }
    .dress-nom {
      font-family: var(--font-serif);
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--dark);
      line-height: 1.2;
    }
    .dress-prix {
      font-family: var(--font-serif);
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--burgundy);
    }
    .dress-prix-unit {
      font-family: var(--font-sans);
      font-size: 0.72rem;
      font-weight: 500;
      color: var(--text-muted);
    }
    .dress-bottom-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 0.82rem;
      color: var(--text-muted);
    }
    .dress-dispo {
      display: flex;
      align-items: center;
      gap: 6px;
      font-weight: 600;
      color: var(--green);
      font-size: 0.78rem;
    }
    .dress-dispo-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--green);
    }

    /* ── QUI SOMMES-NOUS SECTION ── */
    .section-about {
      padding: 80px 0 60px;
      background: #FFF;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 56px;
      align-items: center;
    }
    .about-img-wrap {
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-hover);
      height: 440px;
    }
    .about-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .about-title {
      font-family: var(--font-serif);
      font-size: 2.8rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 18px;
      line-height: 1.2;
    }
    .about-text {
      color: var(--text-muted);
      font-size: 1rem;
      line-height: 1.7;
      margin-bottom: 18px;
    }
    .about-highlights {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-top: 24px;
    }
    .about-highlight-box {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 18px;
    }
    .about-highlight-title {
      font-family: var(--font-serif);
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--burgundy);
      margin-bottom: 6px;
    }
    .about-highlight-desc {
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    /* ── FAQ SECTION ── */
    .section-faq {
      padding: 70px 0 60px;
    }
    .faq-title {
      font-family: var(--font-serif);
      font-size: 2.8rem;
      font-weight: 700;
      text-align: center;
      color: var(--dark);
      margin-bottom: 40px;
    }
    .faq-container {
      max-width: 860px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .faq-item {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      overflow: hidden;
      transition: border-color 0.2s;
    }
    .faq-item:hover {
      border-color: var(--burgundy);
    }
    .faq-question {
      padding: 20px 24px;
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--dark);
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
    }
    .faq-answer {
      display: none;
      padding: 0 24px 22px;
      font-size: 0.92rem;
      color: var(--text-muted);
      line-height: 1.6;
    }
    .faq-item.active .faq-answer {
      display: block;
    }
    .faq-item.active .faq-icon {
      transform: rotate(45deg);
    }
    .faq-icon {
      font-size: 1.4rem;
      color: var(--burgundy);
      transition: transform 0.2s;
    }

    /* ── DRESS DETAIL MODAL (SCREENSHOT 3) ── */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(18, 14, 12, 0.72);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      z-index: 2000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    .modal-overlay.active {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }
    .modal-dialog {
      background: var(--card-bg);
      border-radius: var(--radius-lg);
      width: 100%;
      max-width: 880px;
      max-height: 90vh;
      display: flex;
      flex-direction: row;
      overflow: hidden;
      box-shadow: var(--shadow-modal);
      transform: scale(0.95);
      transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
    }
    .modal-overlay.active .modal-dialog {
      transform: scale(1);
    }
    .modal-img-col {
      background: #FAF7F2;
      width: 46%;
      min-width: 46%;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .modal-main-img {
      width: 100%;
      height: 100%;
      max-height: 82vh;
      object-fit: contain;
      background: #FAF7F2;
      transition: transform 0.25s ease-out;
    }
    .modal-info-col {
      width: 54%;
      padding: 36px 32px 32px;
      display: flex;
      flex-direction: column;
      gap: 18px;
      position: relative;
      overflow-y: auto;
      max-height: 90vh;
    }
    .modal-close-btn {
      position: absolute;
      top: 16px;
      right: 16px;
      z-index: 30;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.95);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      color: var(--dark);
      cursor: pointer;
      box-shadow: 0 2px 8px rgba(0,0,0,0.15);
      transition: all 0.2s;
    }
    .modal-close-btn:hover {
      background: var(--burgundy-light);
      color: var(--burgundy);
    }
    .modal-cat-tag {
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      color: var(--rose-italic);
    }
    .modal-dress-name {
      font-family: var(--font-serif);
      font-size: 2.2rem;
      font-weight: 700;
      color: var(--dark);
      line-height: 1.15;
      margin: 4px 0 8px;
    }
    .modal-price-row {
      display: flex;
      align-items: baseline;
      gap: 6px;
    }
    .modal-price-val {
      font-family: var(--font-serif);
      font-size: 2.6rem;
      font-weight: 700;
      color: var(--burgundy);
      line-height: 1;
    }
    .modal-price-sub {
      font-size: 0.9rem;
      color: var(--text-muted);
    }
    .modal-section-title {
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 6px;
    }
    .modal-desc-text {
      font-size: 0.92rem;
      color: var(--text-muted);
      line-height: 1.5;
    }
    .modal-sizes-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 8px;
    }
    .size-guide-link {
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--rose-italic);
      cursor: pointer;
      text-decoration: underline;
    }
    .modal-size-pills {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }
    .modal-size-pill {
      padding: 6px 14px;
      border-radius: 12px;
      background: var(--burgundy-light);
      border: 1px solid var(--burgundy-border);
      color: var(--burgundy);
      font-weight: 700;
      font-size: 0.85rem;
    }
    .modal-duration-pills {
      display: flex;
      gap: 10px;
    }
    .modal-dur-pill {
      flex: 1;
      padding: 10px 14px;
      border-radius: 12px;
      font-size: 0.88rem;
      font-weight: 600;
      text-align: center;
      border: 1px solid var(--border);
      background: var(--bg);
      color: var(--text-main);
      cursor: pointer;
      transition: all 0.2s;
    }
    .modal-dur-pill.active {
      background: var(--burgundy);
      border-color: var(--burgundy);
      color: #FFF;
    }
    .btn-modal-reserve {
      background: var(--burgundy);
      color: #FFF;
      padding: 14px;
      border-radius: 12px;
      font-size: 0.95rem;
      font-weight: 700;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: all 0.2s;
      box-shadow: 0 4px 14px rgba(123, 17, 35, 0.2);
    }
    .btn-modal-reserve:hover {
      background: var(--burgundy-hover);
      transform: translateY(-2px);
    }
    .btn-modal-share {
      background: #FFF;
      color: var(--dark);
      border: 1px solid var(--border);
      padding: 12px;
      border-radius: 12px;
      font-size: 0.92rem;
      font-weight: 600;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: all 0.2s;
    }
    .btn-modal-share:hover {
      border-color: var(--burgundy);
      color: var(--burgundy);
    }
    .modal-footnote {
      font-size: 0.78rem;
      color: var(--text-muted);
      line-height: 1.4;
      text-align: center;
      margin-top: 4px;
    }

    /* Share Options Popup */
    .share-popup {
      display: none;
      gap: 8px;
      margin-top: -6px;
    }
    .share-popup.show {
      display: flex;
    }
    .btn-sp {
      flex: 1;
      padding: 8px;
      border-radius: 8px;
      font-size: 0.8rem;
      font-weight: 600;
      color: #FFF;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
    }
    .btn-sp-wa { background: #25D366; }
    .btn-sp-fb { background: #1877F2; }
    .btn-sp-in { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }

    /* ── FLOATING WHATSAPP BUTTON ── */
    .floating-whatsapp {
      position: fixed;
      bottom: 24px;
      right: 24px;
      z-index: 1500;
      background: #25D366;
      color: #FFF;
      width: 58px;
      height: 58px;
      border-radius: 50%;
      box-shadow: 0 6px 22px rgba(37, 211, 102, 0.45);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
      text-decoration: none;
    }
    .floating-whatsapp:hover {
      transform: translateY(-4px) scale(1.08);
      box-shadow: 0 10px 28px rgba(37, 211, 102, 0.6);
    }
    .floating-whatsapp svg {
      width: 30px;
      height: 30px;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--dark);
      color: #FFF;
      padding: 60px 0 40px;
      margin-top: 60px;
    }
    .footer-inner {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 40px;
    }
    .footer-brand {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 16px;
    }
    .footer-brand-img {
      height: 56px;
      width: auto;
      max-width: 180px;
      object-fit: contain;
      border-radius: 8px;
      border: 1px solid rgba(255, 255, 255, 0.35);
      background: #FFFFFF;
      padding: 3px;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    }
    .footer-brand-name {
      font-family: var(--font-serif);
      font-size: 2.1rem;
      font-weight: 700;
      color: #FFF;
    }
    .footer-text {
      color: #A09A94;
      font-size: 0.9rem;
      line-height: 1.6;
      max-width: 380px;
    }
    .footer-col-title {
      font-size: 0.88rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #E2C08D;
      margin-bottom: 16px;
    }
    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .footer-link {
      color: #C5BFB8;
      font-size: 0.9rem;
      transition: color 0.2s;
    }
    .footer-link:hover {
      color: #FFF;
    }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 24px;
      text-align: center;
      font-size: 0.84rem;
      color: #8A847E;
    }
    .footer-cws-link {
      color: #E2C08D;
      text-decoration: underline;
      font-weight: 600;
      transition: color 0.2s;
    }
    .footer-cws-link:hover {
      color: #FFF;
    }

    /* ── 1. TRUST PILLARS SECTION ── */
    .section-trust-pillars {
      padding: 10px 0 48px;
      margin-top: -10px;
    }
    .trust-pillars-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    .trust-pillar-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 24px 20px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      box-shadow: var(--shadow-subtle);
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    }
    .trust-pillar-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-hover);
      border-color: rgba(197, 160, 89, 0.4);
    }
    .pillar-icon {
      font-size: 1.8rem;
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: var(--gold-light);
      border: 1px solid rgba(197, 160, 89, 0.25);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .pillar-title {
      font-family: var(--font-serif);
      font-size: 1.22rem;
      font-weight: 700;
      color: var(--dark);
      line-height: 1.25;
      margin-bottom: 4px;
    }
    .pillar-desc {
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.5;
    }

    /* ── 2. WISHLIST BUTTON IN HEADER & SLIDE-IN DRAWER ── */
    .btn-wishlist-header {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #FFF;
      color: var(--dark);
      border: 1px solid var(--border);
      padding: 9px 18px;
      border-radius: 30px;
      font-size: 0.85rem;
      font-weight: 600;
      transition: all 0.25s ease;
      cursor: pointer;
    }
    .btn-wishlist-header:hover {
      border-color: var(--burgundy);
      color: var(--burgundy);
      transform: translateY(-1px);
    }
    .wishlist-badge {
      background: var(--burgundy);
      color: #FFF;
      font-size: 0.72rem;
      font-weight: 700;
      padding: 2px 7px;
      border-radius: 12px;
      line-height: 1;
      transition: transform 0.2s ease;
    }
    .wishlist-badge.bump {
      transform: scale(1.3);
    }

    /* Drawer Overlay */
    .drawer-overlay {
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(15, 10, 10, 0.6);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      z-index: 2500;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    .drawer-overlay.active {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }
    .wishlist-drawer {
      position: absolute;
      top: 0; right: 0; bottom: 0;
      width: 440px;
      max-width: 90vw;
      background: #FFF;
      box-shadow: -10px 0 40px rgba(0, 0, 0, 0.25);
      display: flex;
      flex-direction: column;
      transform: translateX(100%);
      transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .drawer-overlay.active .wishlist-drawer {
      transform: translateX(0);
    }
    .drawer-header {
      padding: 24px 22px;
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: var(--bg);
    }
    .drawer-title {
      font-family: var(--font-serif);
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--dark);
      line-height: 1.1;
    }
    .drawer-subtitle {
      font-size: 0.8rem;
      color: var(--text-muted);
    }
    .drawer-close-btn {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: #FFF;
      border: 1px solid var(--border);
      font-size: 1rem;
      color: var(--dark);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s ease;
    }
    .drawer-close-btn:hover {
      background: var(--burgundy-light);
      color: var(--burgundy);
    }
    .drawer-body {
      flex: 1;
      overflow-y: auto;
      padding: 20px 22px;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .drawer-empty-state {
      text-align: center;
      padding: 60px 20px;
      color: var(--text-muted);
    }
    .drawer-empty-icon {
      font-size: 3rem;
      margin-bottom: 12px;
      opacity: 0.6;
    }
    .drawer-item {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 12px;
      border-radius: var(--radius-sm);
      border: 1px solid var(--border);
      background: var(--bg);
      transition: border-color 0.2s ease;
    }
    .drawer-item:hover {
      border-color: rgba(123, 17, 35, 0.3);
    }
    .drawer-item-img {
      width: 64px;
      height: 74px;
      border-radius: 6px;
      object-fit: cover;
      flex-shrink: 0;
    }
    .drawer-item-info {
      flex: 1;
      min-width: 0;
    }
    .drawer-item-title {
      font-family: var(--font-serif);
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--dark);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .drawer-item-price {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--burgundy);
    }
    .drawer-item-sizes {
      font-size: 0.75rem;
      color: var(--text-muted);
    }
    .drawer-item-remove {
      color: #A09A94;
      font-size: 1.1rem;
      padding: 6px;
      cursor: pointer;
      transition: color 0.2s ease;
    }
    .drawer-item-remove:hover {
      color: #E74C3C;
    }
    .drawer-footer {
      padding: 20px 22px;
      border-top: 1px solid var(--border);
      background: var(--bg);
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .drawer-total-row {
      display: flex;
      justify-content: space-between;
      font-size: 0.92rem;
      color: var(--dark);
    }
    .btn-drawer-whatsapp {
      background: #25D366;
      color: #FFF;
      padding: 14px 20px;
      border-radius: 30px;
      font-size: 0.92rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
      transition: all 0.25s ease;
    }
    .btn-drawer-whatsapp:hover {
      background: #20BA5A;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    }

    /* ── 3. MODAL SIZE & EVENT DATE QUALIFICATION ── */
    .modal-size-pill {
      padding: 8px 16px;
      border-radius: 12px;
      background: var(--bg);
      border: 1px solid var(--border);
      color: var(--dark);
      font-weight: 700;
      font-size: 0.85rem;
      cursor: pointer;
      transition: all 0.2s ease;
    }
    .modal-size-pill:hover {
      border-color: var(--burgundy);
      color: var(--burgundy);
    }
    .modal-size-pill.active {
      background: var(--burgundy);
      border-color: var(--burgundy);
      color: #FFF;
      box-shadow: 0 2px 8px rgba(123, 17, 35, 0.25);
    }
    .modal-event-group {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .modal-date-input {
      width: 100%;
      padding: 10px 14px;
      border-radius: 12px;
      border: 1px solid var(--border);
      font-family: inherit;
      font-size: 0.88rem;
      color: var(--dark);
      background: var(--bg);
      outline: none;
      transition: border-color 0.2s ease;
    }
    .modal-date-input:focus {
      border-color: var(--burgundy);
      background: #FFF;
    }

    /* ── 4. TESTIMONIALS INFINITE MARQUEE ── */
    .section-testimonials {
      padding: 70px 0 60px;
      background: #FFF;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      overflow: hidden;
    }
    .text-center { text-align: center; }
    .marquee-wrapper {
      position: relative;
      width: 100%;
      overflow: hidden;
      margin-top: 40px;
      mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
      -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    }
    .marquee-track {
      display: flex;
      gap: 24px;
      width: max-content;
      animation: marqueeScroll 38s linear infinite;
    }
    .marquee-wrapper:hover .marquee-track {
      animation-play-state: paused;
    }
    @keyframes marqueeScroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(calc(-50% - 12px)); }
    }
    .review-card {
      width: 380px;
      max-width: 85vw;
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 24px 22px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 16px;
      box-shadow: var(--shadow-subtle);
      transition: transform 0.25s ease, border-color 0.25s ease;
      flex-shrink: 0;
    }
    .review-card:hover {
      transform: translateY(-4px);
      border-color: rgba(197, 160, 89, 0.4);
      background: #FFF;
    }
    .review-stars {
      color: #E2C08D;
      font-size: 1.1rem;
      letter-spacing: 2px;
    }
    .review-quote {
      font-size: 0.92rem;
      color: var(--text-main);
      line-height: 1.6;
      font-style: italic;
    }
    .review-author-row {
      display: flex;
      align-items: center;
      gap: 12px;
      border-top: 1px solid rgba(0,0,0,0.06);
      padding-top: 12px;
    }
    .review-avatar {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: var(--burgundy-light);
      color: var(--burgundy);
      font-weight: 700;
      font-size: 0.85rem;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--burgundy-border);
    }
    .review-author-name {
      font-weight: 700;
      font-size: 0.9rem;
      color: var(--dark);
    }
    .review-author-role {
      font-size: 0.75rem;
      color: var(--text-muted);
    }
    .verified-pill {
      margin-left: auto;
      font-size: 0.72rem;
      font-weight: 600;
      color: #00A859;
      background: #E8F7EE;
      padding: 3px 8px;
      border-radius: 10px;
    }

    /* ── AWWWARDS: VIEW SWITCHER & CONCIERGE TRIGGER ── */
    .top-bar-actions {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }
    .btn-concierge-trigger {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(123, 17, 35, 0.1) 100%);
      color: var(--burgundy);
      border: 1px solid var(--gold);
      padding: 10px 18px;
      border-radius: 30px;
      font-size: 0.84rem;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    }
    .btn-concierge-trigger:hover {
      background: var(--burgundy);
      color: #FFF;
      transform: translateY(-2px);
      box-shadow: 0 4px 14px rgba(123, 17, 35, 0.2);
    }
    .view-switcher {
      display: inline-flex;
      background: #F3EFEA;
      border-radius: 24px;
      padding: 3px;
      border: 1px solid var(--border);
    }
    .view-btn {
      background: transparent;
      border: none;
      padding: 6px 14px;
      border-radius: 20px;
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--text-muted);
      cursor: pointer;
      transition: all 0.25s ease;
    }
    .view-btn.active {
      background: #FFF;
      color: var(--burgundy);
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }

    /* ── AWWWARDS: LOOKBOOK EDITORIAL MODE ── */
    .dresses-grid.lookbook-mode {
      grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)) !important;
      gap: 36px !important;
    }
    .lookbook-mode .dress-card {
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      background: #FFF;
    }
    .lookbook-mode .dress-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 40px rgba(123, 17, 35, 0.12);
    }
    .lookbook-mode .dress-img-wrap {
      height: 480px;
      border-radius: 20px 20px 0 0;
    }
    .lookbook-mode .dress-card-info {
      padding: 24px 20px;
    }
    .lookbook-mode .dress-nom {
      font-family: var(--font-serif);
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--dark);
    }
    .lookbook-mode .dress-prix {
      font-size: 1.25rem;
    }

    /* ── AWWWARDS: CONCIERGE MODAL FINDER ── */
    .finder-dialog {
      background: #FFF;
      border-radius: 24px;
      max-width: 680px;
      width: 92%;
      max-height: 90vh;
      overflow-y: auto;
      padding: 36px 32px;
      position: relative;
      box-shadow: 0 25px 60px rgba(0,0,0,0.3);
      animation: modalSlideUp 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .finder-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 24px;
    }
    .finder-badge {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: 1.2px;
      margin-bottom: 6px;
    }
    .finder-title {
      font-family: var(--font-serif);
      font-size: 1.6rem;
      color: var(--dark);
      line-height: 1.2;
    }
    .finder-progress-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 30px;
      padding-bottom: 16px;
      border-bottom: 1px solid var(--border);
    }
    .finder-step-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--text-muted);
    }
    .finder-step-item span {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: #EDE8E2;
      color: var(--dark);
      font-size: 0.78rem;
    }
    .finder-step-item.active {
      color: var(--burgundy);
    }
    .finder-step-item.active span {
      background: var(--burgundy);
      color: #FFF;
    }
    .finder-step-item.completed span {
      background: var(--gold);
      color: #FFF;
    }
    .finder-step-line {
      flex: 1;
      height: 2px;
      background: var(--border);
      margin: 0 12px;
    }
    .finder-step-content {
      display: none;
    }
    .finder-step-content.active {
      display: block;
      animation: fadeIn 0.3s ease;
    }
    .finder-step-title {
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--dark);
      margin-bottom: 20px;
    }
    .finder-options-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      margin-bottom: 24px;
    }
    .finder-card {
      border: 1.5px solid var(--border);
      border-radius: 16px;
      padding: 20px 16px;
      cursor: pointer;
      transition: all 0.25s ease;
      background: #FAFAFA;
      text-align: left;
    }
    .finder-card:hover {
      border-color: var(--burgundy);
      background: #FFF;
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(123, 17, 35, 0.08);
    }
    .finder-card .f-icon {
      font-size: 1.8rem;
      margin-bottom: 8px;
      display: block;
    }
    .finder-card .f-title {
      font-weight: 700;
      font-size: 0.95rem;
      color: var(--dark);
      margin-bottom: 4px;
    }
    .finder-card .f-sub {
      font-size: 0.8rem;
      color: var(--text-muted);
      line-height: 1.35;
    }
    .finder-sizes-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
      margin-bottom: 24px;
    }
    .finder-size-btn {
      background: #FAFAFA;
      border: 1.5px solid var(--border);
      border-radius: 12px;
      padding: 14px 10px;
      font-size: 0.92rem;
      font-weight: 700;
      color: var(--dark);
      cursor: pointer;
      transition: all 0.2s ease;
    }
    .finder-size-btn:hover {
      background: var(--burgundy);
      color: #FFF;
      border-color: var(--burgundy);
      transform: translateY(-2px);
    }
    .finder-nav-row {
      display: flex;
      justify-content: flex-start;
      margin-top: 16px;
    }
    .btn-finder-back {
      background: transparent;
      border: none;
      color: var(--text-muted);
      font-size: 0.88rem;
      font-weight: 600;
      cursor: pointer;
    }
    .btn-finder-back:hover {
      color: var(--burgundy);
    }

    /* ── MOBILE FILTER DRAWER & SMART TRIGGER ── */
    .btn-mobile-filter-trigger {
      display: none;
    }
    @media (max-width: 1024px) {
      .btn-mobile-filter-trigger {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background: linear-gradient(135deg, var(--burgundy) 0%, #4A1E35 100%);
        color: #FFF;
        padding: 10px 18px;
        border-radius: 24px;
        font-weight: 700;
        font-size: 0.86rem;
        border: none;
        cursor: pointer;
        box-shadow: 0 4px 14px rgba(123, 17, 35, 0.25);
        transition: all 0.25s ease;
      }
      .btn-mobile-filter-trigger:active {
        transform: scale(0.96);
      }
      .filters-sidebar {
        display: none; /* Drawer replaces sidebar on mobile/tablet */
      }
    }

    .mobile-filter-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.65);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      z-index: 1200;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      display: flex;
      justify-content: flex-end;
      flex-direction: column;
    }
    .mobile-filter-overlay.open {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }
    .mobile-filter-sheet {
      background: #FFF;
      border-radius: 24px 24px 0 0;
      max-height: 85vh;
      display: flex;
      flex-direction: column;
      transform: translateY(100%);
      transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
      box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
    }
    .mobile-filter-overlay.open .mobile-filter-sheet {
      transform: translateY(0);
    }
    .drawer-handle-bar {
      width: 44px;
      height: 4px;
      background: #DDD;
      border-radius: 2px;
      margin: 12px auto 6px;
    }
    .mobile-filter-header {
      padding: 10px 20px 16px;
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .mobile-filter-title {
      font-family: var(--font-serif);
      font-size: 1.35rem;
      font-weight: 700;
      color: var(--dark);
      margin: 0;
    }
    .btn-clear-mob-filters {
      background: none;
      border: none;
      color: var(--burgundy);
      font-weight: 700;
      font-size: 0.82rem;
      cursor: pointer;
      text-decoration: underline;
    }
    .mobile-filter-body {
      padding: 20px;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .mobile-filter-footer {
      padding: 14px 20px calc(14px + env(safe-area-inset-bottom, 0px));
      border-top: 1px solid var(--border);
      background: #FAFAFA;
    }
    .btn-apply-filters-mob {
      width: 100%;
      background: var(--burgundy);
      color: #FFF;
      padding: 14px;
      border-radius: 28px;
      font-size: 0.95rem;
      font-weight: 700;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 16px rgba(123, 17, 35, 0.3);
    }

    /* ── AWWWARDS: MOBILE GLASSMORPHISM BOTTOM BAR ── */
    .mobile-bottom-bar {
      display: none;
    }
    @media (max-width: 768px) {
      .mobile-bottom-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 64px;
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-top: 1px solid rgba(212, 175, 55, 0.25);
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
        z-index: 990;
        align-items: center;
        justify-content: space-around;
        padding: 0 10px;
      }
      .mob-bar-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: none;
        color: var(--dark);
        text-decoration: none;
        font-size: 0.68rem;
        font-weight: 600;
        gap: 3px;
        cursor: pointer;
        padding: 6px 10px;
        border-radius: 12px;
        transition: transform 0.2s ease;
      }
      .mob-bar-item:active {
        transform: scale(0.92);
      }
      .mob-bar-icon {
        font-size: 1.25rem;
        line-height: 1;
      }
      .mob-bar-icon-wrap {
        position: relative;
        display: inline-block;
      }
      .mob-wishlist-badge {
        position: absolute;
        top: -4px;
        right: -8px;
        background: var(--burgundy);
        color: #FFF;
        font-size: 0.62rem;
        font-weight: 800;
        min-width: 16px;
        height: 16px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 4px;
      }
      .mob-bar-wa {
        color: #25D366;
      }
      body {
        padding-bottom: 70px;
      }
      .floating-whatsapp {
        bottom: 74px !important;
      }
    }

    /* ── AWWWARDS: IMAGE ZOOM INSPECTION IN MODAL ── */
    .modal-img-col {
      position: relative;
      overflow: hidden;
      cursor: crosshair;
    }
    .modal-main-img {
      transition: transform 0.2s ease-out;
      transform-origin: center center;
    }
    .modal-zoom-badge {
      position: absolute;
      bottom: 14px;
      left: 14px;
      background: rgba(18, 18, 18, 0.72);
      backdrop-filter: blur(8px);
      color: #FFF;
      font-size: 0.72rem;
      font-weight: 600;
      padding: 5px 12px;
      border-radius: 16px;
      border: 1px solid rgba(212, 175, 55, 0.3);
      pointer-events: none;
      z-index: 2;
    }

    /* Responsive */
    html, body {
      overflow-x: hidden;
      max-width: 100vw;
    }

    @media (max-width: 1024px) {
      .hero-grid { grid-template-columns: 1fr; gap: 36px; }
      .hero-story-card { height: 380px; }
      .trust-pillars-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
      .categories-5-grid { grid-template-columns: repeat(3, 1fr); }
      .storefront-grid { grid-template-columns: 1fr; }
      .dresses-grid { grid-template-columns: repeat(2, 1fr); }
      .about-grid { grid-template-columns: 1fr; gap: 36px; }
      .modal-dialog { flex-direction: column; max-height: 90vh; overflow-y: auto; }
      .modal-img-col { width: 100%; min-width: 100%; height: 380px; min-height: 380px; }
      .modal-info-col { width: 100%; max-height: none; overflow-y: visible; padding: 24px 20px; }
    }
    @media (max-width: 640px) {
      .nav-inner { height: 72px; }
      .brand-logo-img { height: 50px; }
      .btn-nav-primary { padding: 8px 14px; font-size: 0.78rem; }
      .wishlist-header-label { display: none; }
      .btn-wishlist-header { padding: 8px 12px; }
      .wishlist-drawer { width: 100vw; max-width: 100vw; }
      .trust-pillars-grid { grid-template-columns: 1fr; gap: 14px; }
      .review-card { width: 300px; }
      .hero-title { font-size: clamp(2rem, 8vw, 2.5rem); }
      .sec-heading { font-size: 2rem; }
      .categories-5-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
      .categories-5-grid .cat-item-card:last-child { grid-column: span 2; }
      .cat-item-card { height: 200px; }
      .storefront-top-bar { flex-direction: column; align-items: stretch; }
      .search-box { min-width: 100%; }
      .sort-box select { width: 100%; }
      .dresses-grid { grid-template-columns: 1fr; gap: 20px; }
      .dress-img-wrap { aspect-ratio: 3 / 4; height: auto; }
      .footer-inner { grid-template-columns: 1fr; gap: 32px; }
      .nav-links { display: none; }
      .modal-dialog { width: 95%; max-height: 92vh; border-radius: 16px; -webkit-overflow-scrolling: touch; }
      .modal-img-col { height: 340px; min-height: 340px; }
      .floating-whatsapp { bottom: 76px !important; right: 18px !important; width: 52px; height: 52px; padding: 0; }
    }
  
  /* --- COOKIE BANNER --- */
  .cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 10000;
    transform: translateY(150%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .cookie-banner.show {
    transform: translateY(0);
  }
  .cookie-text h4 {
    margin: 0 0 8px 0;
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--primary-dark);
  }
  .cookie-text p {
    margin: 0;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
  }
  .cookie-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
  }
  .btn-cookie {
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
  }
  .btn-cookie.accept {
    background: var(--primary-color);
    color: white;
  }
  .btn-cookie.accept:hover {
    background: var(--primary-dark);
  }
  .btn-cookie.decline {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
  }
  .btn-cookie.decline:hover {
    background: rgba(0,0,0,0.05);
  }
  @media(min-width: 768px) {
    .cookie-banner {
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
    }
    .cookie-text { flex: 1; padding-right: 20px; }
  }


  /* --- SCROLL ANIMATIONS & ENHANCED GLASSMORPHISM --- */
  .fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .glass-card {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
  }

/* --- SMART NAVBAR & MICRO-INTERACTIONS --- */
.header-wrapper {
  transition: transform 0.4s cubic-bezier(0.3, 1, 0.2, 1);
}
.header-wrapper.nav-hidden {
  transform: translateY(-150%);
}

@keyframes heartPulse {
  0% { transform: scale(1); }
  40% { transform: scale(1.35); color: #FF3B30; }
  100% { transform: scale(1); }
}
.heart-btn {
  transition: transform 0.2s ease, color 0.2s ease !important;
}
.heart-btn:active {
  transform: scale(0.85);
}
.heart-btn.active {
  color: #E74C3C !important;
  animation: heartPulse 0.4s ease-out forwards;
}
