/* ============================================================
   ASTRIDI — Custom Styles
   Extracted from inline <style> blocks.
   Loaded after style.css on pages that need it.
   ============================================================ */

/* ════════════════════════════════════════════════════════════
   SECTION 1 — SHARED COMPONENTS
   Used on multiple pages (index, product, etc.)
   ════════════════════════════════════════════════════════════ */

/* ── Account dropdown ── */
  .account-dropdown-wrap { position: relative; }
  .account-dropdown {
    position: absolute; top: calc(100% + 10px); right: 0;
    background: #fff; border: 1px solid #e8e8e8;
    box-shadow: 0 8px 32px rgba(0,0,0,.1);
    min-width: 210px; z-index: 300;
    opacity: 0; pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .25s, transform .25s;
  }
  .account-dropdown.open { opacity: 1; pointer-events: all; transform: translateY(0); }
  .account-dropdown a {
    display: flex; align-items: center; gap: 10px;
    padding: 13px 20px; font-size: 12px; font-weight: 400;
    letter-spacing: .06em; color: #333;
    border-bottom: 1px solid #f2f2f2;
    transition: color .2s, background .2s;
  }
  .account-dropdown a:last-child { border-bottom: none; }
  .account-dropdown a:hover { color: #b8973a; background: #faf9f7; }


/* ════════════════════════════════════════════════════════════
   SECTION 2 — HOME PAGE  (index.html)
   ════════════════════════════════════════════════════════════ */

/* ── Nav Drawer expanded ── */
  .nav-drawer { width: 380px; }
  .nav-section-label {
    font-size: 9px; font-weight: 700; letter-spacing: .22em;
    text-transform: uppercase; color: #b8973a;
    padding: 18px 24px 6px; display: block;
  }
  .nav-sub-item a {
    padding: 10px 24px 10px 36px !important;
    font-size: 11px !important; font-weight: 400 !important;
    letter-spacing: .06em !important; color: #777 !important;
    border-bottom: none !important;
  }
  .nav-sub-item a:hover { color: #b8973a !important; padding-left: 42px !important; }
  .nav-list .has-sub { border-bottom: none; }

  /* ── Hero Video ── */
  .hero-video-section {
    position: relative; width: 100%; height: 100vh; min-height: 600px;
    overflow: hidden; background: #0a0a0a;
  }
  .hero-video-bg {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; object-position: center;
  }
  .hero-video-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,.65) 0%, rgba(0,0,0,.28) 55%, rgba(0,0,0,.05) 100%);
    z-index: 1;
  }
  .hero-video-content {
    position: absolute; z-index: 2;
    bottom: 0; left: 0; top: 0;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 0 56px 80px; max-width: 560px;
  }
  .hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px; font-weight: 400; font-style: italic;
    letter-spacing: .14em; color: #d4af70; margin-bottom: 12px;
    animation: fadeUp .9s .1s both;
  }
  .hero-video-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 58px; font-weight: 300; color: #fff;
    line-height: 1.08; margin-bottom: 18px; letter-spacing: .02em;
    animation: fadeUp .9s .2s both;
  }
  .hero-video-desc {
    font-size: 13px; font-weight: 300; color: rgba(255,255,255,.82);
    line-height: 1.85; margin-bottom: 26px; max-width: 380px;
    animation: fadeUp .9s .35s both;
  }
  .hero-video-content .cta-link { animation: fadeUp .9s .5s both; }
  .hero-mute-btn {
    position: absolute; bottom: 28px; right: 32px; z-index: 3;
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,.14); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.28); color: #fff;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: background .25s, transform .2s;
  }
  .hero-mute-btn:hover { background: rgba(255,255,255,.28); transform: scale(1.1); }
  .hero-scroll-hint {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
    z-index: 3; display: flex; flex-direction: column;
    align-items: center; gap: 7px; opacity: .65; animation: fadeIn 1s 1.3s both;
  }
  .hero-scroll-hint span { font-size: 8px; font-weight: 600; letter-spacing: .22em; color: #fff; }
  .scroll-dot { animation: scrollBounce 1.6s ease-in-out infinite; }
  @keyframes scrollBounce { 0%,100%{transform:translateY(0);opacity:1}50%{transform:translateY(6px);opacity:.4} }

  /* ── Collections Scroll Bar ── */
  .collections-bar-section { background: #fff; padding: 56px 0 48px; border-bottom: 1px solid #eee; }
  .collections-bar-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 40px; margin-bottom: 28px;
  }
  .collections-bar-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px; font-weight: 400; color: #1a1a1a; letter-spacing: .04em;
  }
  .collections-bar-cta {
    font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
    color: #b8973a; border-bottom: 1px solid #b8973a; padding-bottom: 2px;
    transition: color .2s, letter-spacing .2s;
  }
  .collections-bar-cta:hover { color: #9a7c2e; letter-spacing: .22em; }
  .collections-scroll-wrap { position: relative; overflow: hidden; }
  .collections-scroll-track {
    display: flex; gap: 3px; overflow-x: auto; scroll-behavior: smooth;
    padding: 0 40px 16px; scrollbar-width: none;
  }
  .collections-scroll-track::-webkit-scrollbar { display: none; }
  .coll-tile {
    flex-shrink: 0; width: 220px; cursor: pointer; display: block;
    transition: transform .3s ease;
  }
  .coll-tile:hover { transform: translateY(-4px); }
  .coll-tile-img {
    aspect-ratio: 3/4; overflow: hidden; background: #f0ece4; margin-bottom: 10px;
  }
  .coll-tile-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .55s ease;
  }
  .coll-tile:hover .coll-tile-img img { transform: scale(1.06); }
  .coll-tile-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px; font-weight: 400; color: #1a1a1a; padding: 0 4px; letter-spacing: .03em;
  }
  .coll-tile-sub { font-size: 11px; font-weight: 300; color: #999; padding: 3px 4px 0; }
  .scroll-arrow {
    position: absolute; top: 42%; transform: translateY(-50%);
    width: 40px; height: 40px; border-radius: 50%;
    background: #fff; border: 1px solid #e0e0e0;
    box-shadow: 0 2px 12px rgba(0,0,0,.1);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; z-index: 10; color: #1a1a1a;
    transition: background .2s, color .2s, transform .2s;
  }
  .scroll-arrow:hover { background: #1a1a1a; color: #fff; transform: translateY(-50%) scale(1.08); }
  .scroll-arrow.left { left: 6px; }
  .scroll-arrow.right { right: 6px; }

  /* ── Grayscale Front Products ── */
  .front-products-section { background: #fafafa; padding: 68px 40px 52px; }
  .front-products-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px; font-weight: 400; color: #1a1a1a;
    text-align: center; margin-bottom: 6px; letter-spacing: .04em;
  }
  .front-products-sub {
    font-size: 12px; font-weight: 300; color: #999; letter-spacing: .06em;
    text-align: center; margin-bottom: 44px; text-transform: uppercase;
  }
  .front-products-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    max-width: 1200px; margin: 0 auto;
  }
  .fp-card { cursor: pointer; display: block; }
  .fp-card-media {
    aspect-ratio: 3/4; overflow: hidden;
    background: #f0ece4; margin-bottom: 14px;
  }
  .fp-card-media img {
    width: 100%; height: 100%; object-fit: cover;
    filter: grayscale(100%);
    transition: transform .6s ease, filter .5s ease;
  }
  .fp-card:hover .fp-card-media img { transform: scale(1.05); filter: grayscale(20%); }
  .fp-card-cat {
    font-size: 10px; font-weight: 500; letter-spacing: .14em;
    text-transform: uppercase; color: #b8973a; margin-bottom: 4px;
  }
  .fp-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px; font-weight: 400; color: #1a1a1a; letter-spacing: .03em;
  }

  /* ── Prompt row ── */
  .prompt-row {
    text-align: center; padding: 60px 40px 56px;
    background: #fff; border-top: 1px solid #eee;
  }
  .prompt-row-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px; font-weight: 300; color: #1a1a1a;
    margin-bottom: 22px; font-style: italic;
  }

  /* ── Mid-page video ── */
  .video-section { position: relative; width: 100%; overflow: hidden; }
  .video-wrapper {
    position: relative; width: 100%; height: 90vh; min-height: 520px;
    overflow: hidden; background: #0a0a0a;
  }
  .video-bg {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; object-position: center;
  }
  .video-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,.68) 0%, rgba(0,0,0,.35) 55%, rgba(0,0,0,.1) 100%);
    z-index: 1;
  }
  .video-content {
    position: absolute; z-index: 2; inset: 0;
    display: flex; flex-direction: column;
    justify-content: center; align-items: flex-start;
    padding: 0 72px; max-width: 700px;
  }
  .video-eyebrow {
    display: block; font-size: 10px; font-weight: 600;
    letter-spacing: .28em; text-transform: uppercase;
    color: #d4af70; margin-bottom: 16px; animation: fadeUp .8s .1s both;
  }
  .video-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px; font-weight: 300; color: #fff;
    line-height: 1.1; margin-bottom: 18px; letter-spacing: .02em;
    animation: fadeUp .8s .25s both;
  }
  .video-subtitle {
    font-size: 13px; font-weight: 300; color: rgba(255,255,255,.82);
    line-height: 1.85; margin-bottom: 32px; max-width: 460px;
    animation: fadeUp .8s .4s both;
  }
  .video-content .btn { animation: fadeUp .8s .55s both; }
  .video-mute-btn {
    position: absolute; bottom: 24px; right: 72px; z-index: 3;
    width: 42px; height: 42px; border-radius: 50%;
    background: rgba(255,255,255,.15); backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,.3); color: #fff;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: background .2s, transform .2s;
  }
  .video-mute-btn:hover { background: rgba(255,255,255,.28); transform: scale(1.08); }
  .video-play-btn {
    position: absolute; bottom: 24px; right: 126px; z-index: 3;
    width: 42px; height: 42px; border-radius: 50%;
    background: rgba(255,255,255,.15); backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,.3); color: #fff;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: background .2s, transform .2s;
  }
  .video-play-btn:hover { background: rgba(255,255,255,.28); transform: scale(1.08); }
  .video-progress {
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px; background: rgba(255,255,255,.2); z-index: 3;
  }
  .video-progress-fill { height: 100%; background: #d4af70; width: 0%; transition: width .5s linear; }

  /* ── Responsive ── */
  @media (max-width: 900px) {
    .front-products-grid { grid-template-columns: repeat(2, 1fr); }
    .video-wrapper { height: 70vh; }
    .video-content { padding: 0 36px; }
    .video-title { font-size: 38px; }
    .video-mute-btn { right: 20px; bottom: 18px; }
    .video-play-btn { right: 72px; bottom: 18px; }
    .collections-bar-header { padding: 0 20px; }
    .collections-scroll-track { padding: 0 20px 16px; }
    .front-products-section { padding: 48px 20px 40px; }
  }
  @media (max-width: 640px) {
    .hero-video-title { font-size: 38px; }
    .hero-video-content { padding: 0 24px 60px; max-width: 100%; }
    .front-products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .video-wrapper { height: 60vh; min-height: 380px; }
    .video-content { padding: 0 20px; max-width: 100%; }
    .video-title { font-size: 30px; }
    .coll-tile { width: 160px; }
    .collections-bar-title { font-size: 22px; }
  }


/* ════════════════════════════════════════════════════════════
   SECTION 3 — PRODUCT DETAIL PAGE  (product.html)
   ════════════════════════════════════════════════════════════ */

/* ════════════════════════════════════════════════════
       PDP LAYOUT — Exact Bvlgari clone
       ════════════════════════════════════════════════════ */

    :root {
      --gold: #b8973a;
      --ink: #1a1a1a;
      --warm-bg: #f0ede8;   /* Bvlgari's warm grey image background */
      --panel-bg: #f5f3f0;  /* right panel / drawer background */
      --border: #e0dbd3;
      --muted: #888;
      --serif: 'Playfair Display', Georgia, serif;
    }

    body { background: #fff; padding-top: 0; }

    /* ── Breadcrumb — above hero ── */
    .pdp-breadcrumb {
      display: flex; align-items: center; gap: 6px;
      padding: 12px 20px;
      font-size: 11px; font-weight: 400; letter-spacing: .04em; color: var(--muted);
      background: var(--warm-bg);
    }
    .pdp-breadcrumb a { color: var(--muted); pointer-events: all; transition: color .2s; }
    .pdp-breadcrumb a:hover { color: var(--ink); }
    .pdp-breadcrumb .sep { color: #ccc; font-size: 10px; }

    /* ════ HERO: 2-col, image fills viewport height ════ */
    .pdp-hero {
      display: grid;
      grid-template-columns: 1fr 480px;
      min-height: calc(100vh - 58px);
      position: relative;
    }

    /* ── LEFT: Single big image viewer ── */
    .pdp-viewer {
      background: var(--warm-bg);
      position: relative;
      display: flex; flex-direction: column;
    }

    /* Main image fills remaining height */
    .pdp-viewer-main {
      flex: 1;
      position: relative;
      overflow: hidden;
      cursor: zoom-in;
      min-height: 520px;
    }
    .pdp-viewer-main img {
      width: 100%; height: 100%; object-fit: contain;
      object-position: center;
      transition: opacity .28s ease;
      display: block;
    }

    /* Prev / Next — top-left, circular grey buttons like Bvlgari */
    .pdp-viewer-nav {
      position: absolute; bottom: 28px; right: 20px;
      display: flex; gap: 8px; z-index: 4;
    }
    .pdp-viewer-btn {
      width: 44px; height: 44px; border-radius: 50%;
      background: rgba(220,215,207,.9); border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background .2s; color: #444;
    }
    .pdp-viewer-btn:hover { background: rgba(200,194,185,.95); }

    /* Tool icons — bottom-left column */
    .pdp-viewer-tools {
      position: absolute; bottom: 28px; left: 20px;
      display: flex; flex-direction: column; gap: 10px; z-index: 4;
    }
    .pdp-viewer-tool {
      width: 40px; height: 40px; border-radius: 50%;
      background: rgba(220,215,207,.85); border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background .2s; color: #555;
    }
    .pdp-viewer-tool:hover { background: rgba(200,194,185,.95); }

    /* Dot indicators — bottom-center */
    .pdp-viewer-dots {
      position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
      display: flex; gap: 7px; align-items: center; z-index: 4;
    }
    .pdp-viewer-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: rgba(0,0,0,.18);
      transition: background .2s, transform .2s;
      cursor: pointer; border: none;
    }
    .pdp-viewer-dot.active {
      background: var(--ink);
      transform: scale(1.2);
    }

    /* ── RIGHT: Info panel ── */
    .pdp-panel {
      border-left: 1px solid var(--border);
      background: #fff;
      display: flex; flex-direction: column;
      position: sticky; top: 58px;
      max-height: calc(100vh - 58px);
      overflow-y: auto; scrollbar-width: none;
    }
    .pdp-panel::-webkit-scrollbar { display: none; }

    .pdp-panel-inner {
      padding: 32px 40px 40px;
      display: flex; flex-direction: column;
      flex: 1;
    }

    /* Breadcrumb inside panel (Bvlgari style) */
    .pdp-panel-breadcrumb {
      display: flex; align-items: center; gap: 6px;
      font-size: 11px; font-weight: 400; color: var(--muted);
      margin-bottom: 12px;
    }
    .pdp-panel-breadcrumb a { color: var(--muted); transition: color .2s; }
    .pdp-panel-breadcrumb a:hover { color: var(--ink); }
    .pdp-panel-breadcrumb .sep { font-size: 10px; color: #ccc; }
    .pdp-panel-breadcrumb .wish-icon {
      margin-left: auto; cursor: pointer; color: #aaa; transition: color .2s;
    }
    .pdp-panel-breadcrumb .wish-icon:hover { color: #c41e3a; }

    /* Virtual try-on link */
    .pdp-try-on {
      font-size: 11.5px; font-weight: 400; color: var(--gold);
      letter-spacing: .02em; margin-bottom: 12px; display: flex; align-items: center; gap: 6px;
      cursor: pointer; width: fit-content; transition: opacity .2s;
    }
    .pdp-try-on:hover { opacity: .75; }

    /* Product title */
    .pdp-title {
      font-family: var(--serif); font-size: 34px; font-weight: 400;
      color: var(--ink); line-height: 1.18; margin-bottom: 20px;
      letter-spacing: .01em;
    }

    /* Price row */
    .pdp-price-row {
      display: flex; align-items: baseline; gap: 12px; margin-bottom: 6px;
    }
    .pdp-price {
      font-size: 20px; font-weight: 400; color: var(--ink);
    }
    .pdp-price-tax { font-size: 12px; font-weight: 300; color: var(--muted); }
    .pdp-price-note { font-size: 11.5px; font-weight: 300; color: var(--muted); margin-bottom: 16px; }

    /* Description teaser */
    .pdp-desc-teaser {
      font-size: 13px; font-weight: 300; color: #555; line-height: 1.75;
      margin-bottom: 4px;
      display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
    }
    .pdp-desc-teaser.expanded { -webkit-line-clamp: unset; }
    .pdp-read-more {
      font-size: 12px; font-weight: 500; color: var(--ink);
      cursor: pointer; text-decoration: underline; text-underline-offset: 3px;
      margin-bottom: 20px; display: inline-block;
    }

    /* Find your size row */
    .pdp-size-row {
      display: flex; align-items: center; justify-content: space-between;
      padding: 14px 0; border-top: 1px solid var(--border);
      cursor: pointer; transition: color .2s;
    }
    .pdp-size-row:hover .pdp-size-row-label { color: var(--gold); }
    .pdp-size-row-label {
      font-size: 12.5px; font-weight: 400; color: #444; transition: color .2s;
    }
    .pdp-size-row-value {
      font-size: 12.5px; font-weight: 400; color: var(--gold);
      display: flex; align-items: center; gap: 8px;
    }
    .pdp-size-row-value svg { color: #888; }

    /* View technical details */
    .pdp-tech-row {
      display: flex; align-items: center; gap: 12px;
      padding: 16px 0; border-top: 1px solid var(--border);
      font-size: 12.5px; font-weight: 400; color: #444;
      cursor: pointer; transition: color .2s;
    }
    .pdp-tech-row:hover { color: var(--gold); }
    .pdp-tech-row svg { color: var(--gold); flex-shrink: 0; }

    /* CTA buttons */
    .pdp-cta-wrap {
      display: flex; flex-direction: column; gap: 10px;
      padding: 20px 0 0; border-top: 1px solid var(--border);
      margin-top: 4px;
    }
    .pdp-btn-add {
      width: 100%; background: var(--ink); color: #fff;
      font-family: 'Poppins', sans-serif; font-size: 10.5px; font-weight: 600;
      letter-spacing: .22em; text-transform: uppercase;
      padding: 19px 20px; border: none; cursor: pointer;
      transition: background .2s;
    }
    .pdp-btn-add:hover { background: var(--gold); }
    .pdp-btn-gift {
      width: 100%; background: #fff; color: var(--ink);
      font-family: 'Poppins', sans-serif; font-size: 10.5px; font-weight: 600;
      letter-spacing: .22em; text-transform: uppercase;
      padding: 18px 20px; border: 1.5px solid var(--ink); cursor: pointer;
      transition: all .2s;
    }
    .pdp-btn-gift:hover { background: var(--ink); color: #fff; }

    /* Service links */
    .pdp-service-links {
      display: flex; flex-direction: column; margin-top: 4px;
    }
    .pdp-svc-link {
      display: flex; align-items: center; gap: 14px;
      padding: 15px 0; border-top: 1px solid var(--border);
      font-size: 12px; font-weight: 400; color: #555;
      cursor: pointer; transition: color .2s;
      background: none; text-align: left; width: 100%;
      font-family: 'Poppins', sans-serif;
    }
    .pdp-svc-link:last-child { border-bottom: 1px solid var(--border); }
    .pdp-svc-link:hover { color: var(--gold); }
    .pdp-svc-link svg { flex-shrink: 0; color: #555; transition: color .2s; }
    .pdp-svc-link:hover svg { color: var(--gold); }

    /* ════ BELOW-FOLD: 3-col lifestyle images ════ */
    .pdp-lifestyle {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      border-top: 1px solid var(--border);
    }
    .pdp-lifestyle-cell {
      aspect-ratio: 1/1.2;
      overflow: hidden;
      position: relative;
    }
    .pdp-lifestyle-cell img {
      width: 100%; height: 100%; object-fit: cover; object-position: center;
      transition: transform .7s ease; display: block;
    }
    .pdp-lifestyle-cell:hover img { transform: scale(1.04); }
    /* Nav arrows over the lifestyle strip */
    .pdp-lifestyle-nav {
      position: absolute; top: 50%; right: 20px; transform: translateY(-50%);
      display: flex; gap: 8px; z-index: 2;
    }
    .pdp-lifestyle-cell:last-child .pdp-lifestyle-nav { display: flex; }
    .pdp-lifestyle-nav-btn {
      width: 42px; height: 42px; border-radius: 50%;
      background: rgba(220,215,207,.85); border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      color: #444; transition: background .2s;
    }
    .pdp-lifestyle-nav-btn:hover { background: rgba(200,194,185,.95); }

    /* ════ DESCRIPTION + DETAILS accordion ════ */
    .pdp-info-section {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 420px;
      border-top: 1px solid var(--border);
    }
    .pdp-info-left {
      padding: 56px 48px 56px 64px;
      border-right: 1px solid var(--border);
      display: flex; align-items: center;
      overflow: hidden;
    }
    .pdp-info-left img {
      width: 100%; height: 100%; object-fit: cover;
      display: block;
    }
    .pdp-info-right {
      padding: 56px 64px 56px 48px;
      display: flex; flex-direction: column; justify-content: center;
    }

    /* Accordion items */
    .acc-pdp { border-bottom: 1px solid var(--border); }
    .acc-pdp:first-child { border-top: 1px solid var(--border); }
    .acc-pdp-header {
      display: flex; align-items: center; justify-content: space-between;
      padding: 20px 0; cursor: pointer; user-select: none;
    }
    .acc-pdp-title {
      font-family: var(--serif); font-size: 20px; font-weight: 400; color: var(--ink);
      display: flex; align-items: center; gap: 8px;
    }
    .acc-pdp-plus {
      font-size: 18px; color: var(--muted); font-weight: 300;
      transition: transform .25s;
    }
    .acc-pdp.open .acc-pdp-plus { transform: rotate(45deg); color: var(--ink); }
    .acc-pdp-body {
      max-height: 0; overflow: hidden;
      transition: max-height .35s cubic-bezier(.22,1,.36,1);
    }
    .acc-pdp.open .acc-pdp-body { max-height: 600px; }
    .acc-pdp-content {
      padding-bottom: 24px;
      font-size: 13px; font-weight: 300; color: #555; line-height: 1.8;
    }
    .acc-pdp-content .read-more-acc {
      font-size: 12px; font-weight: 500; color: var(--ink);
      text-decoration: underline; text-underline-offset: 3px; cursor: pointer;
      display: block; margin-top: 8px;
    }

    /* Details grid */
    .details-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px;
      margin-top: 12px;
    }
    .detail-item {
      display: flex; align-items: center; gap: 8px;
      font-size: 12px; font-weight: 300; color: #555;
    }
    .detail-item svg { color: var(--gold); flex-shrink: 0; }
    .detail-item strong { font-weight: 400; color: var(--ink); }

    /* ════ YOU MAY ALSO LIKE ════ */
    .pdp-also {
      padding: 72px 64px 80px;
      border-top: 1px solid var(--border);
    }
    .pdp-also-title {
      font-family: var(--serif); font-size: 36px; font-weight: 400; color: var(--ink);
      margin-bottom: 48px; letter-spacing: .02em;
    }
    .pdp-also-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
    }
    .pdp-also-card {
      cursor: pointer; background: var(--warm-bg);
      position: relative; overflow: hidden;
    }
    .pdp-also-img {
      aspect-ratio: 1/1; overflow: hidden; background: var(--warm-bg);
      position: relative;
    }
    .pdp-also-img img {
      width: 100%; height: 100%; object-fit: contain;
      object-position: center;
      transition: transform .65s ease; display: block; padding: 24px;
    }
    .pdp-also-card:hover .pdp-also-img img { transform: scale(1.06); }
    .pdp-also-tag {
      position: absolute; top: 12px; left: 12px;
      font-size: 9.5px; font-weight: 500; color: var(--gold); letter-spacing: .08em;
    }
    .pdp-also-meta {
      padding: 16px 20px 24px; background: #fff;
    }
    .pdp-also-name {
      font-size: 14px; font-weight: 400; color: var(--ink); margin-bottom: 4px;
    }
    .pdp-also-price {
      font-size: 13px; font-weight: 300; color: var(--muted);
    }

    /* ════ LIFESTYLE EDITORIAL (two big images) ════ */
    .pdp-editorial-duo {
      display: grid; grid-template-columns: 1fr 1fr;
      border-top: 1px solid var(--border);
    }
    .pdp-editorial-cell {
      aspect-ratio: 1/1.1; overflow: hidden; position: relative;
    }
    .pdp-editorial-cell img {
      width: 100%; height: 100%; object-fit: cover; display: block;
      transition: transform .7s ease;
    }
    .pdp-editorial-cell:hover img { transform: scale(1.04); }
    .pdp-editorial-nav {
      position: absolute; top: 20px; right: 20px;
      display: flex; gap: 8px; z-index: 2;
    }
    .pdp-editorial-nav-btn {
      width: 42px; height: 42px; border-radius: 50%;
      background: rgba(220,215,207,.85); border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: center; color: #444;
      transition: background .2s;
    }
    .pdp-editorial-nav-btn:hover { background: rgba(200,194,185,.95); }

    /* ════ GIFT BOX SECTION ════ */
    .pdp-gift {
      display: grid; grid-template-columns: 1fr 1fr;
      border-top: 1px solid var(--border);
      min-height: 460px;
    }
    .pdp-gift-img { overflow: hidden; }
    .pdp-gift-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .pdp-gift-content {
      padding: 60px 64px;
      display: flex; flex-direction: column; justify-content: center;
      background: #fff;
    }
    .pdp-gift-content .eyebrow {
      font-size: 9px; font-weight: 600; letter-spacing: .3em;
      text-transform: uppercase; color: var(--muted); margin-bottom: 18px;
    }
    .pdp-gift-content h2 {
      font-family: var(--serif); font-size: 28px; font-weight: 400;
      color: var(--ink); line-height: 1.3; margin-bottom: 20px;
    }
    .pdp-gift-content p {
      font-size: 13px; font-weight: 300; color: #666; line-height: 1.85; margin-bottom: 32px;
    }
    .pdp-gift-cta {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 9.5px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
      color: var(--ink); border-bottom: 1px solid var(--ink); padding-bottom: 4px;
      width: fit-content; transition: color .2s, border-color .2s;
    }
    .pdp-gift-cta:hover { color: var(--gold); border-color: var(--gold); }

    /* ════ EXCLUSIVE SERVICES ════ */
    .pdp-services {
      padding: 72px 64px;
      border-top: 1px solid var(--border);
    }
    .pdp-services-hdr {
      display: flex; align-items: center; justify-content: space-between; margin-bottom: 48px;
    }
    .pdp-services-hdr h2 {
      font-family: var(--serif); font-size: 32px; font-weight: 400; color: var(--ink);
    }
    .pdp-svc-nav { display: flex; gap: 8px; }
    .pdp-svc-nav-btn {
      width: 42px; height: 42px; border-radius: 50%;
      background: rgba(220,215,207,.6); border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: center; color: #444;
      transition: background .2s;
    }
    .pdp-svc-nav-btn:hover { background: rgba(200,194,185,.95); }
    .pdp-services-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
    }
    .pdp-svc-item {}
    .pdp-svc-img {
      aspect-ratio: 4/3; overflow: hidden; margin-bottom: 20px;
    }
    .pdp-svc-img img {
      width: 100%; height: 100%; object-fit: cover; display: block;
      transition: transform .65s ease;
    }
    .pdp-svc-item:hover .pdp-svc-img img { transform: scale(1.04); }
    .pdp-svc-name {
      font-size: 15px; font-weight: 400; color: var(--ink); margin-bottom: 8px;
    }
    .pdp-svc-desc { font-size: 12px; font-weight: 300; color: #666; line-height: 1.75; }

    /* ════ PRODUCT VIDEOS ════ */
    .pdp-videos-section {
      padding: 80px 40px;
      background: #f9f7f4;
      max-width: 1400px;
      margin: 0 auto;
    }
    .pdp-videos-header {
      text-align: center;
      margin-bottom: 48px;
    }
    .pdp-videos-title {
      font-family: var(--serif);
      font-size: clamp(26px, 3vw, 38px);
      font-weight: 400;
      color: var(--ink);
      margin: 0 0 10px;
      letter-spacing: 0.02em;
    }
    .pdp-videos-sub {
      font-size: 14px;
      color: #888;
      letter-spacing: 0.04em;
      margin: 0;
    }
    .pdp-videos-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .pdp-video-card {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .pdp-video-wrap {
      position: relative;
      width: 100%;
      aspect-ratio: 16/9;
      overflow: hidden;
      background: #111;
      border-radius: 2px;
    }
    .pdp-video-wrap video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .pdp-video-wrap.pdp-video-yt iframe {
      width: 100%;
      height: 100%;
      border: none;
      display: block;
    }
    .pdp-video-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(0,0,0,0.18);
      opacity: 0;
      transition: opacity 0.3s;
      pointer-events: none;
    }
    .pdp-video-wrap:hover .pdp-video-overlay { opacity: 1; }
    .pdp-video-play-btn {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: rgba(255,255,255,0.9);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--ink);
    }
    .pdp-video-meta { padding: 0 2px; }
    .pdp-video-label {
      font-size: 10px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold);
      display: block;
      margin-bottom: 4px;
    }
    .pdp-video-name {
      font-family: var(--serif);
      font-size: 16px;
      font-weight: 400;
      color: var(--ink);
      margin: 0;
    }
    @media (max-width: 900px) {
      .pdp-videos-grid { grid-template-columns: 1fr; }
      .pdp-videos-section { padding: 48px 20px; }
    }

    /* ════ COMMITMENT FULL-BLEED ════ */
    .pdp-commitment {
      position: relative; overflow: hidden;
      min-height: 58vh; display: flex; align-items: flex-end;
    }
    .pdp-commitment img {
      position: absolute; inset: 0;
      width: 100%; height: 100%; object-fit: cover; object-position: center 40%;
    }
    .pdp-commitment-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(0deg, rgba(0,0,0,.62) 0%, rgba(0,0,0,.12) 55%, transparent 100%);
    }
    .pdp-commitment-text {
      position: relative; z-index: 1;
      padding: 56px 64px; max-width: 600px;
    }
    .pdp-commitment-text h2 {
      font-family: var(--serif); font-size: 36px; font-weight: 300;
      color: #fff; line-height: 1.2; margin-bottom: 16px;
    }
    .pdp-commitment-text p {
      font-size: 13px; font-weight: 300; color: rgba(255,255,255,.78);
      line-height: 1.85; margin-bottom: 28px;
    }
    .pdp-commitment-cta {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 9.5px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
      color: #fff; border-bottom: 1px solid rgba(255,255,255,.55);
      padding-bottom: 4px; transition: border-color .2s;
    }
    .pdp-commitment-cta:hover { border-color: #fff; }

    /* ════ JOIN UNIVERSE ════ */
    .pdp-join {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 64px; padding: 72px 64px;
      border-top: 1px solid var(--border);
      align-items: center;
    }
    .pdp-join-left h2 {
      font-family: var(--serif); font-size: 30px; font-weight: 400;
      color: var(--ink); margin-bottom: 14px;
    }
    .pdp-join-left p { font-size: 13px; font-weight: 300; color: #666; line-height: 1.8; }
    .pdp-join-right {}
    .pdp-join-form {
      display: flex; align-items: center; border-bottom: 1.5px solid var(--ink);
      margin-bottom: 12px;
    }
    .pdp-join-input {
      flex: 1; background: none; border: none; outline: none;
      font-size: 13px; font-weight: 300; color: var(--ink);
      padding: 12px 0; font-family: 'Poppins', sans-serif;
    }
    .pdp-join-input::placeholder { color: #bbb; }
    .pdp-join-submit {
      background: none; border: none; cursor: pointer;
      padding: 8px 4px; color: var(--ink); transition: color .2s;
    }
    .pdp-join-submit:hover { color: var(--gold); }
    .pdp-join-legal { font-size: 10px; font-weight: 300; color: #aaa; line-height: 1.6; }
    .pdp-join-legal a { color: #aaa; text-decoration: underline; }

    /* ════ STICKY BOTTOM BAR ════ */
    .pdp-sticky {
      position: fixed; bottom: 0; left: 0; right: 0;
      background: rgba(255,255,255,.97); backdrop-filter: blur(12px);
      border-top: 1px solid var(--border);
      padding: 14px 48px;
      display: flex; align-items: center; justify-content: space-between;
      z-index: 150;
      transform: translateY(100%); transition: transform .4s cubic-bezier(.22,1,.36,1);
    }
    .pdp-sticky.show { transform: translateY(0); }
    .pdp-sticky-left { display: flex; flex-direction: column; }
    .pdp-sticky-name { font-size: 14px; font-weight: 400; color: var(--ink); }
    .pdp-sticky-price { font-size: 12px; font-weight: 300; color: var(--muted); margin-top: 2px; }
    .pdp-sticky-btn {
      background: var(--ink); color: #fff;
      font-family: 'Poppins', sans-serif; font-size: 10px; font-weight: 600;
      letter-spacing: .2em; text-transform: uppercase;
      padding: 15px 36px; border: none; cursor: pointer; transition: background .2s;
    }
    .pdp-sticky-btn:hover { background: var(--gold); }

    /* ════ SIZE DRAWER (right-slide) ════ */
    .size-overlay {
      position: fixed; inset: 0; background: rgba(0,0,0,.3);
      z-index: 400; opacity: 0; pointer-events: none; transition: opacity .35s;
    }
    .size-overlay.open { opacity: 1; pointer-events: all; }

    .size-drawer {
      position: fixed; top: 0; right: 0; bottom: 0;
      width: 480px; max-width: 100vw;
      background: var(--panel-bg);
      z-index: 401;
      display: flex; flex-direction: column;
      transform: translateX(100%);
      transition: transform .42s cubic-bezier(.22,1,.36,1);
      overflow-y: auto;
    }
    .size-drawer.open { transform: translateX(0); }

    .size-drawer-hdr {
      display: flex; align-items: center; justify-content: space-between;
      padding: 28px 36px 20px;
      position: sticky; top: 0; background: var(--panel-bg); z-index: 2;
    }
    .size-drawer-title {
      font-family: var(--serif); font-size: 24px; font-weight: 400; color: var(--ink);
    }
    .size-drawer-close {
      width: 40px; height: 40px; border: none; background: none; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      color: #555; transition: color .2s;
    }
    .size-drawer-close:hover { color: var(--ink); }

    .size-drawer-tabs {
      display: flex; padding: 0 36px;
      border-bottom: 1px solid var(--border);
    }
    .size-drawer-tab {
      font-size: 13px; font-weight: 400; color: #999; padding-bottom: 14px;
      margin-right: 28px; border: none; background: none; cursor: pointer;
      border-bottom: 2px solid transparent; transition: color .2s, border-color .2s;
    }
    .size-drawer-tab.active { color: var(--ink); border-bottom-color: var(--ink); }

    .size-drawer-panel { display: none; padding: 0 36px 40px; }
    .size-drawer-panel.active { display: block; }

    .size-drawer-note {
      font-size: 13px; font-weight: 300; color: #666; line-height: 1.7;
      padding: 24px 0; border-bottom: 1px solid var(--border);
    }

    .size-list { display: flex; flex-direction: column; }
    .size-list-row {
      display: flex; align-items: center; justify-content: space-between;
      padding: 20px 0; border-bottom: 1px solid var(--border);
      cursor: pointer; transition: background .15s;
    }
    .size-list-row:hover:not(.oos) { background: rgba(0,0,0,.02); margin: 0 -4px; padding-left: 4px; padding-right: 4px; }
    .size-list-row.oos { opacity: .38; cursor: default; }
    .size-list-row.selected .size-row-name { font-weight: 600; }
    .size-row-name { font-size: 16px; font-weight: 300; color: var(--ink); }
    .size-row-notify { font-size: 11.5px; font-weight: 300; color: #999; }
    .size-row-radio {
      width: 22px; height: 22px; border-radius: 50%; border: 1.5px solid #c8c2ba;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; transition: all .2s;
    }
    .size-list-row.selected .size-row-radio {
      border-color: var(--ink); background: var(--ink);
    }
    .size-list-row.selected .size-row-radio::after {
      content: ''; width: 8px; height: 8px; border-radius: 50%; background: #fff;
    }

    /* Size guide table */
    .size-guide-section { padding: 28px 0; }
    .size-guide-heading { font-family: var(--serif); font-size: 20px; font-weight: 400; color: var(--ink); margin-bottom: 8px; }
    .size-guide-sub { font-size: 13px; font-weight: 300; color: #666; line-height: 1.6; margin-bottom: 28px; }
    .size-guide-cat { font-size: 14px; font-weight: 500; color: var(--ink); margin-bottom: 16px; }
    .size-tbl { width: 100%; border-collapse: collapse; }
    .size-tbl th {
      text-align: left; font-size: 10.5px; font-weight: 500; color: #aaa;
      letter-spacing: .08em; text-transform: uppercase;
      padding: 8px 0; border-bottom: 1px solid var(--border);
    }
    .size-tbl th:not(:first-child) { text-align: right; }
    .size-tbl td {
      padding: 18px 0; font-size: 15px; font-weight: 300; color: var(--ink);
      border-bottom: 1px solid var(--border);
    }
    .size-tbl td:not(:first-child) { text-align: right; }

    /* ════ LIGHTBOX ════ */
    .pdp-lb {
      display: none; position: fixed; inset: 0;
      background: rgba(0,0,0,.93); z-index: 500;
      align-items: center; justify-content: center;
    }
    .pdp-lb.open { display: flex; animation: fadeIn .2s ease; }
    .pdp-lb img { max-width: 88vw; max-height: 88vh; object-fit: contain; animation: scaleIn .2s ease; }
    .pdp-lb-close {
      position: absolute; top: 24px; right: 28px;
      color: rgba(255,255,255,.7); font-size: 28px;
      cursor: pointer; background: none; border: none; line-height: 1; transition: color .2s;
    }
    .pdp-lb-close:hover { color: #fff; }
    .pdp-lb-prev, .pdp-lb-next {
      position: absolute; top: 50%; transform: translateY(-50%);
      background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
      color: #fff; width: 52px; height: 52px;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; transition: background .2s;
    }
    .pdp-lb-prev { left: 24px; } .pdp-lb-next { right: 24px; }
    .pdp-lb-prev:hover, .pdp-lb-next:hover { background: rgba(255,255,255,.2); }
    .pdp-lb-count {
      position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
      color: rgba(255,255,255,.45); font-size: 11px; letter-spacing: .1em;
    }

    /* ════ RESPONSIVE ════ */
    @media (max-width: 1100px) {
      .pdp-hero { grid-template-columns: 1fr 420px; }
      .pdp-panel-inner { padding: 28px 32px 36px; }
    }
    @media (max-width: 900px) {
      .pdp-hero { grid-template-columns: 1fr; min-height: auto; }
      .pdp-viewer { min-height: 70vw; }
      .pdp-viewer-main { min-height: 60vw; }
      .pdp-panel { position: static; max-height: none; border-left: none; border-top: 1px solid var(--border); }
      .pdp-panel-inner { padding: 28px 24px 36px; }
      .pdp-lifestyle { grid-template-columns: 1fr; }
      .pdp-lifestyle-cell { aspect-ratio: 4/3; }
      .pdp-info-section { grid-template-columns: 1fr; }
      .pdp-info-left { display: none; }
      .pdp-info-right { padding: 48px 24px; }
      .pdp-also-grid { grid-template-columns: repeat(2, 1fr); }
      .pdp-editorial-duo { grid-template-columns: 1fr; }
      .pdp-gift { grid-template-columns: 1fr; }
      .pdp-services-grid { grid-template-columns: 1fr; gap: 32px; }
      .pdp-join { grid-template-columns: 1fr; gap: 40px; padding: 48px 24px; }
      .pdp-also { padding: 48px 24px; }
      .pdp-services { padding: 48px 24px; }
      .pdp-commitment-text { padding: 40px 24px; }
      .size-drawer { width: 100%; }
    }
