
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    :root {
      --bg: #0d0c09; --surface: #18160f; --surface2: #22201a;
      --text: #ece7dc; --muted: #8a8474; --gold: #c6a45a; --light: #f5f0e6;
      --serif: 'Cormorant Garamond', serif; --sans: 'DM Sans', sans-serif;
      --ease: cubic-bezier(0.16, 1, 0.3, 1); --spring: cubic-bezier(0.34, 1.3, 0.64, 1);
    }
    html { background: var(--bg); color: var(--text); font-family: var(--sans); font-weight: 300; overflow: hidden; height: 100%; }
    body { overflow: hidden; height: 100vh; width: 100vw; cursor: none; }
    a { color: inherit; text-decoration: none; }
    img { display: block; }
    button { background: none; border: none; cursor: none; font-family: var(--sans); }

    /* SCROLL */
    /* Touch scroll */
    #scroll-root { touch-action: pan-y; }
    body { touch-action: pan-y; overscroll-behavior-y: none; }

    #scroll-root { position: fixed; top: 0; left: 0; width: 100%; will-change: transform; }

    /* LOADER */
    #loader { position: fixed; inset: 0; background: var(--bg); z-index: 9000; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 24px; transition: opacity .8s ease, visibility .8s; }
    #loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
    .loader-logo { font-family: var(--serif); font-size: 32px; font-weight: 300; }
    .loader-logo em { font-style: italic; color: var(--gold); }
    .loader-bar-wrap { width: 200px; height: 1px; background: rgba(255,255,255,.1); }
    .loader-bar { height: 100%; background: var(--gold); width: 0; transition: width .05s linear; }
    .loader-pct { font-size: 11px; letter-spacing: .14em; color: var(--muted); }
    .loader-logo img {
      width: 160px;
      height: auto;
      opacity: 0.92;
    }

    /* CURSOR */
    #cursor-dot { position: fixed; width: 8px; height: 8px; background: var(--gold); border-radius: 50%; top: 0; left: 0; transform: translate(-50%,-50%); pointer-events: none; z-index: 9999; }
    #cursor-ring { position: fixed; width: 36px; height: 36px; border: 1px solid rgba(198,164,90,.5); border-radius: 50%; top: 0; left: 0; transform: translate(-50%,-50%); pointer-events: none; z-index: 9998; transition: width .4s var(--ease), height .4s var(--ease), border-color .3s; }
    body:has(a:hover) #cursor-ring, body:has(button:hover) #cursor-ring { width: 56px; height: 56px; border-color: var(--gold); }

    /* TICKER */
    .ticker-bar { background: var(--gold); color: var(--bg); font-size: 11px; font-weight: 500; letter-spacing: .15em; text-transform: uppercase; overflow: hidden; height: 32px; display: flex; align-items: center; }
    .ticker-track { display: flex; white-space: nowrap; animation: ticker 30s linear infinite; }
    .ticker-track span { padding: 0 48px; }
    .ticker-track span::before { content: '✦'; margin-right: 48px; opacity: .5; }
    @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

    /* HEADER */
    header { position: fixed; top: 32px; left: 50%; transform: translateX(-50%); width: 100%; z-index: 100; padding: 0 64px; display: flex; align-items: center; justify-content: space-between; height: 64px; background: rgba(0,0,0,.5); background-image: linear-gradient(to bottom,rgba(0,0,0,.65) 0%,rgba(0,0,0,.3) 60%,transparent 100%); background-repeat: no-repeat; background-size: 100% 120px; backdrop-filter: blur(0); border: 1px solid transparent; border-radius: 0; transition: width .65s var(--spring), top .65s var(--spring), padding .5s var(--ease), border-radius .5s var(--ease), background .4s, backdrop-filter .4s, border-color .4s, box-shadow .4s, height .5s var(--ease); }
    header.island { top: 18px; width: 720px; height: 52px; padding: 0 40px 0 32px; border-radius: 100px; background: rgba(16,14,10,.88); background-image: none; backdrop-filter: blur(24px) saturate(1.8); -webkit-backdrop-filter: blur(24px) saturate(1.8); border-color: rgba(198,164,90,.18); box-shadow: 0 8px 40px rgba(0,0,0,.5), 0 0 0 .5px rgba(198,164,90,.1) inset; }
    @keyframes island-glow { 0%{box-shadow:0 8px 40px rgba(0,0,0,.5),0 0 0 4px rgba(198,164,90,.15);}60%{box-shadow:0 8px 40px rgba(0,0,0,.5),0 0 0 8px rgba(198,164,90,.05);}100%{box-shadow:0 8px 40px rgba(0,0,0,.5),0 0 0 .5px rgba(198,164,90,.1) inset;} }
    header.island.just-docked { animation: island-glow .7s var(--ease) forwards; }
    .header-logo { font-family: var(--serif); font-size: 22px; font-weight: 400; letter-spacing: .05em; color: var(--light); transition: font-size .4s var(--ease); white-space: nowrap; }
    header.island .header-logo { font-size: 18px; }
    .header-logo em { font-style: italic; color: var(--gold); }
    nav { display: flex; gap: 36px; align-items: center; transition: gap .5s var(--ease); }
    header.island nav { gap: 24px; }
    nav a { font-size: 12px; font-weight: 400; letter-spacing: .12em; text-transform: uppercase; color: var(--text); opacity: .7; transition: opacity .3s, font-size .3s; position: relative; white-space: nowrap; }
    header.island nav a { font-size: 11px; }
    nav a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width .4s var(--ease); }
    nav a:hover, nav a.active { opacity: 1; }
    nav a:hover::after, nav a.active::after { width: 100%; }
    .lang-switch { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--text); opacity: .7; cursor: pointer; padding: 4px 8px; border: 1px solid rgba(255,255,255,.15); border-radius: 100px; transition: opacity .3s, border-color .3s; }
    .lang-switch:hover { opacity: 1; border-color: var(--gold); }
    .lang-switch svg { stroke: currentColor; }
    header.island .header-logo { font-size: 18px; }
    .header-logo span { font-style: italic; color: var(--gold); }
    .header-logo img {
      height: 36px;
      width: auto;
      opacity: 0.92;
      transition: height .4s var(--ease), opacity .3s;
      object-fit: contain;
      display: block;
    }
    header.island .header-logo img { height: 28px; }

    /* HERO DETAIL — full viewport, bottle centred */
    .detail-hero { position: relative; height: 100vh; display: flex; align-items: center; overflow: hidden; }
    .detail-hero-bg { position: absolute; inset: 0; }
    .detail-hero-bg-color { position: absolute; inset: 0; transition: background 1s ease; }
    .detail-hero-bg-color::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,12,9,.8) 0%, rgba(13,12,9,.5) 60%, rgba(13,12,9,.85) 100%); }
    .detail-hero-orb { position: absolute; width: 600px; height: 600px; border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none; transition: background 1s ease; }
    .detail-hero-inner { position: relative; z-index: 2; width: 100%; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 0; padding: 0 80px; margin-top: 32px; }

    /* Left panel */
    .detail-left { max-width: 380px; }
    .detail-breadcrumb { display: flex; align-items: center; gap: 10px; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 32px; opacity: 0; transform: translateX(-20px); transition: opacity .7s var(--ease) .1s, transform .7s var(--ease) .1s; }
    .detail-breadcrumb a:hover { color: var(--gold); }
    .detail-breadcrumb .sep { opacity: .4; }
    .detail-breadcrumb.in { opacity: 1; transform: translateX(0); }
    .detail-eyebrow { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; opacity: 0; transition: opacity .7s var(--ease) .25s; }
    .detail-eyebrow.in { opacity: 1; }
    .detail-title { font-family: var(--serif); font-size: clamp(44px, 5.5vw, 76px); font-weight: 300; line-height: .95; color: var(--light); letter-spacing: -.01em; margin-bottom: 24px; overflow: hidden; }
    .detail-title span { display: block; transform: translateY(110%); transition: transform 1s var(--ease); }
    .detail-title span.in { transform: translateY(0); }
    .detail-title span.italic { font-style: italic; color: var(--gold); transition-delay: .15s; }
    .detail-subtitle { font-size: 14px; color: var(--muted); letter-spacing: .06em; margin-bottom: 36px; opacity: 0; transition: opacity .7s var(--ease) .5s; }
    .detail-subtitle.in { opacity: 1; }
    .detail-desc { font-size: 15px; color: rgba(236,231,220,.65); line-height: 1.75; margin-bottom: 40px; opacity: 0; transform: translateY(12px); transition: opacity .8s var(--ease) .55s, transform .8s var(--ease) .55s; }
    .detail-desc.in { opacity: 1; transform: translateY(0); }
    .detail-vendors { display: flex; gap: 12px; flex-wrap: wrap; opacity: 0; transition: opacity .7s var(--ease) .7s; }
    .detail-vendors.in { opacity: 1; }
    .btn-vendor { display: inline-flex; align-items: center; gap: 10px; padding: 13px 28px; border: 1px solid rgba(255,255,255,.22); border-radius: 100px; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--text); transition: border-color .3s, background .3s, color .3s; position: relative; overflow: hidden; }
    .btn-vendor::before { content: ''; position: absolute; inset: 0; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease); z-index: -1; }
    .btn-vendor:hover { border-color: var(--gold); color: var(--bg); }
    .btn-vendor:hover::before { transform: scaleX(1); }
    .btn-vendor svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 1.5; }
    .btn-vendor-alt { border-color: rgba(198,164,90,.3); color: var(--gold); }
    .btn-vendor-alt::before { background: var(--gold); }
    .btn-vendor-alt:hover { color: var(--bg); }

    /* Centre bottle */
    .detail-bottle-wrap { display: flex; align-items: center; justify-content: center; height: 92vh; width: 320px; }
    .detail-bottle { max-height: 100%; max-width: 100%; object-fit: contain; filter: drop-shadow(0 48px 90px rgba(0,0,0,.7)); transform: translateY(40px) scale(.9); opacity: 0; transition: transform 1.2s var(--ease) .1s, opacity 1.2s var(--ease) .1s; }
    .detail-bottle.in { transform: translateY(0) scale(1); opacity: 1; }

    /* Right panel: specs */
    .detail-right { display: flex; justify-content: flex-end; }
    .detail-specs { max-width: 300px; width: 100%; opacity: 0; transform: translateX(20px); transition: opacity .8s var(--ease) .45s, transform .8s var(--ease) .45s; }
    .detail-specs.in { opacity: 1; transform: translateX(0); }
    .spec-group { margin-bottom: 32px; }
    .spec-label { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
    .spec-row { display: flex; flex-direction: column; gap: 10px; }
    .spec-item { display: flex; align-items: baseline; justify-content: space-between; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.06); gap: 12px; }
    .spec-item:last-child { border-bottom: none; padding-bottom: 0; }
    .spec-key { font-size: 12px; color: var(--muted); letter-spacing: .06em; }
    .spec-val { font-size: 14px; color: var(--light); text-align: right; font-family: var(--serif); font-size: 16px; font-weight: 300; }
    .spec-divider { height: 1px; background: rgba(255,255,255,.06); margin: 24px 0; }
    .spec-pairing-label { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
    .spec-pairing-val { font-size: 13px; color: var(--muted); line-height: 1.65; }

    /* Ghost title */
    .detail-ghost { position: absolute; bottom: 5vh; left: 50%; transform: translateX(-50%); font-family: var(--serif); font-size: clamp(80px, 11vw, 160px); font-weight: 300; text-transform: uppercase; letter-spacing: -.02em; color: transparent; -webkit-text-stroke: 1px rgba(198,164,90,.08); pointer-events: none; white-space: nowrap; opacity: 0; transform: translateX(-50%) translateY(20px); transition: opacity .9s var(--ease) .3s, transform .9s var(--ease) .3s; z-index: 1; }
    .detail-ghost.in { opacity: 1; transform: translateX(-50%) translateY(0); }

    /* Scroll hint */
    .scroll-hint { position: absolute; bottom: 32px; left: 64px; display: flex; align-items: center; gap: 12px; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); opacity: 0; transition: opacity .7s var(--ease) 1s; z-index: 5; }
    .scroll-hint.in { opacity: 1; }
    .scroll-hint-line { width: 40px; height: 1px; background: var(--muted); }

    /* DETAILS SECTION */
    .section-details { background: var(--surface); padding: 120px 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; border-top: 1px solid rgba(255,255,255,.06); }
    .details-text {}
    .details-eyebrow { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
    .details-title { font-family: var(--serif); font-size: clamp(36px, 4vw, 56px); font-weight: 300; line-height: 1.05; margin-bottom: 32px; }
    .details-body { font-size: 15px; color: rgba(236,231,220,.65); line-height: 1.8; }
    .details-divider { width: 48px; height: 1px; background: var(--gold); margin: 40px 0; }
    .details-fact { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
    .fact-item {}
    .fact-label { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
    .fact-val { font-family: var(--serif); font-size: 22px; font-weight: 300; color: var(--light); }

    /* RELATED */
    .section-related { background: var(--bg); padding: 100px 64px 120px; border-top: 1px solid rgba(255,255,255,.06); }
    .related-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 56px; }
    .related-title { font-family: var(--serif); font-size: clamp(36px, 4vw, 52px); font-weight: 300; }
    .related-all { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 8px; transition: gap .3s; }
    .related-all:hover { gap: 14px; }
    .related-all svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 1.5; }
    .related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
    .rcard { background: var(--surface); border: 1px solid rgba(255,255,255,.04); overflow: hidden; transition: background .3s, border-color .3s; cursor: pointer; }
    .rcard:hover { background: var(--surface2); border-color: rgba(198,164,90,.18); }
    .rcard-img { height: 240px; background: #0b0a07; display: flex; align-items: center; justify-content: center; overflow: hidden; }
    .rcard-img img { max-height: 80%; max-width: 55%; object-fit: contain; filter: drop-shadow(0 16px 32px rgba(0,0,0,.6)); transition: transform .7s var(--ease); }
    .rcard:hover .rcard-img img { transform: scale(1.06) translateY(-6px); }
    .rcard-body { padding: 20px 24px 24px; }
    .rcard-line { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
    .rcard-name { font-family: var(--serif); font-size: 20px; font-weight: 300; color: var(--light); }
    .rcard-grape { font-size: 12px; color: var(--muted); margin-top: 4px; }

    /* ANIM */
    .anim-fade-up { opacity: 0; transform: translateY(40px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
    .anim-fade-up.visible { opacity: 1; transform: translateY(0); }
    .d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; } .d3 { transition-delay: .3s; }

    /* FOOTER */
    footer { background: var(--bg); padding: 64px 64px 40px; border-top: 1px solid rgba(255,255,255,.06); }
    .footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 64px; }
    .footer-brand { font-family: var(--serif); font-size: 28px; font-weight: 300; }
    .footer-brand em { font-style: italic; color: var(--gold); }
    .footer-tagline { margin-top: 12px; font-size: 13px; color: var(--muted); line-height: 1.65; max-width: 260px; }
    .footer-social { margin-top: 28px; display: flex; gap: 12px; }
    .soc { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: border-color .3s; }
    .soc:hover { border-color: var(--gold); }
    .soc svg { width: 14px; height: 14px; stroke: var(--text); fill: none; stroke-width: 1.5; }
    .footer-col h4 { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .footer-col ul a { font-size: 14px; color: var(--muted); transition: color .3s; }
    .footer-col ul a:hover { color: var(--text); }
    .footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.06); }
    .footer-bottom p { font-size: 12px; color: var(--muted); }
    .footer-bottom a { color: var(--gold); }

    /* Error */
    .error-state { min-height: 80vh; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 24px; text-align: center; color: var(--muted); }
    .error-state h2 { font-family: var(--serif); font-size: 48px; font-weight: 300; color: var(--light); }
  
    /* ── LANG DROPDOWN ── */
    .lang-switch { display:none !important; }
    .lang-dropdown { position:relative; display:inline-flex; align-items:center; }
    .lang-btn { display:inline-flex; align-items:center; gap:5px; font-size:11px; font-weight:500; letter-spacing:.12em; text-transform:uppercase; color:var(--text); opacity:.7; background:none; border:1px solid rgba(255,255,255,.15); border-radius:100px; padding:5px 10px; cursor:pointer; transition:opacity .3s,border-color .3s; white-space:nowrap; user-select:none; font-family:var(--sans); }
    .lang-btn:hover { opacity:1; border-color:var(--gold); }
    .lang-btn svg { stroke:currentColor; transition:transform .3s; flex-shrink:0; }
    .lang-dropdown.open .lang-btn svg { transform:rotate(180deg); }
    .lang-menu { position:absolute; top:calc(100% + 8px); right:0; background:rgba(13,11,7,.97); border:1px solid rgba(198,164,90,.2); border-radius:10px; padding:5px; min-width:72px; display:none; flex-direction:column; gap:2px; backdrop-filter:blur(20px); z-index:9999; box-shadow:0 8px 32px rgba(0,0,0,.6); }
    .lang-dropdown.open .lang-menu { display:flex; }
    .lang-opt { font-size:11px; letter-spacing:.1em; text-transform:uppercase; color:var(--text); opacity:.65; padding:7px 13px; border-radius:7px; cursor:pointer; transition:background .2s,opacity .2s; font-family:var(--sans); }
    .lang-opt:hover { background:rgba(198,164,90,.12); opacity:1; }
    .lang-opt.active { color:var(--gold); opacity:1; font-weight:500; }

    /* ── HAMBURGER ── */
    .hamburger { display:none; flex-direction:column; justify-content:center; gap:5px; width:36px; height:36px; cursor:pointer; background:none; border:none; padding:4px; z-index:10001; }
    .hamburger span { display:block; width:22px; height:1.5px; background:var(--text); border-radius:2px; transition:transform .4s cubic-bezier(0.16,1,0.3,1),opacity .3s,width .3s; }
    .hamburger.open span:nth-child(1) { transform:translateY(6.5px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity:0; width:0; }
    .hamburger.open span:nth-child(3) { transform:translateY(-6.5px) rotate(-45deg); }

    /* ── MOBILE NAV OVERLAY ── */
    .mobile-nav-overlay { position:fixed; inset:0; z-index:10000; background:rgba(13,12,9,.98); backdrop-filter:blur(24px); display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px; transform:translateX(100%); transition:transform .5s cubic-bezier(0.16,1,0.3,1); pointer-events:none; }
    .mobile-nav-overlay.open { transform:translateX(0); pointer-events:all; }
    .mobile-nav-overlay a { font-family:var(--serif); font-size:clamp(32px,8vw,52px); font-weight:300; color:var(--light); opacity:.6; transition:opacity .3s,color .3s; padding:6px 0; }
    .mobile-nav-overlay a:hover, .mobile-nav-overlay a.active { opacity:1; color:var(--gold); }
    .mobile-lang-bar { display:flex; gap:10px; margin-top:28px; }
    .mobile-lang-btn { font-size:11px; letter-spacing:.14em; text-transform:uppercase; color:var(--muted); padding:6px 14px; border:1px solid rgba(255,255,255,.1); border-radius:100px; cursor:pointer; transition:color .3s,border-color .3s; font-family:var(--sans); }
    .mobile-lang-btn.active { color:var(--gold); border-color:rgba(198,164,90,.4); }
    /* ── MOBILE NAV CLOSE BUTTON ── */
    .mobile-nav-close {
      position: absolute;
      top: 20px; right: 20px;
      width: 48px; height: 48px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.15) !important;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer !important;
      flex-direction: column; gap: 0;
      padding: 0;
      flex-shrink: 0;
    }
    .mobile-nav-close span {
      display: block;
      width: 18px; height: 1.5px;
      background: var(--text);
      border-radius: 2px;
      position: absolute;
    }
    .mobile-nav-close span:nth-child(1) { transform: rotate(45deg); }
    .mobile-nav-close span:nth-child(2) { transform: rotate(-45deg); }

  /* ═══════════════════════════════════════════════════════════════
     WINE DETAIL PAGE — RESPONSIVE BREAKPOINTS
  ═══════════════════════════════════════════════════════════════ */

  /* ── Global overflow guard ── */
  html, body { max-width: 100%; overflow-x: hidden; }
  img { max-width: 100%; }
  .mobile-swipe-bar { display: none; }

  /* ════════════════════════════════════════
     TABLET  (max-width: 1100px)
  ════════════════════════════════════════ */
  @media (max-width: 1100px) {
    header { padding: 0 32px !important; }
    header.island { width: min(680px, calc(100% - 40px)) !important; }
    nav { gap: 20px !important; }
    .footer-top { grid-template-columns: 1fr 1fr !important; gap: 32px !important; }

    /* Hero: narrow the grid */
    .detail-hero-inner { padding: 0 48px !important; }
    .detail-left { max-width: 300px !important; }
    .detail-specs { max-width: 240px !important; }
    .detail-bottle-wrap { width: 260px !important; }

    /* Related */
    .related-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .section-related { padding: 80px 48px 100px !important; }

    /* Details */
    .section-details { padding: 80px 48px !important; gap: 56px !important; }
  }

  /* ════════════════════════════════════════
     TABLET MID (max-width: 900px)
  ════════════════════════════════════════ */
  @media (max-width: 900px) {
    /* Hero collapses: text / bottle / specs stacked */
    .detail-hero-inner {
      display: flex !important;
      flex-direction: column !important;
      align-items: center !important;
      padding: 100px 40px 48px !important;
      gap: 32px !important;
    }
    .detail-left,
    .detail-right { max-width: 100% !important; width: 100% !important; }
    .detail-bottle-wrap {
      width: 100% !important;
      height: 52vw !important;
      min-height: 260px !important;
      max-height: 400px !important;
    }
    .detail-right { justify-content: flex-start !important; }
    .detail-specs { max-width: 100% !important; }
    .scroll-hint { display: none !important; }
    .detail-ghost { display: none !important; }
  }

  /* ════════════════════════════════════════
     MOBILE  (max-width: 768px)
  ════════════════════════════════════════ */
  @media (max-width: 768px) {
    /* Native scroll */
    html { overflow: auto !important; height: auto !important; }
    body {
      overflow-x: hidden !important;
      overflow-y: auto !important;
      height: auto !important;
      width: 100% !important;
      cursor: auto !important;
    }
    #scroll-root { position: relative !important; transform: none !important; width: 100% !important; }

    /* Cursor off */
    #cursor-dot, #cursor-ring { display: none !important; }
    a, button { cursor: pointer !important; }

    /* Header */
    header {
      top: 0 !important; left: 0 !important; transform: none !important;
      width: 100% !important; padding: 0 20px !important; height: 58px !important;
      border-radius: 0 !important; background: rgba(13,12,9,.96) !important;
      background-image: none !important; backdrop-filter: blur(20px) !important;
      -webkit-backdrop-filter: blur(20px) !important;
      border-width: 0 0 1px 0 !important; border-color: rgba(198,164,90,.1) !important;
      box-shadow: 0 2px 20px rgba(0,0,0,.4) !important;
    }
    header.island { top: 0 !important; width: 100% !important; border-radius: 0 !important; height: 58px !important; padding: 0 20px !important; }
    .header-logo img { height: 28px !important; }
    header nav { display: none !important; }
    .hamburger { display: flex !important; position: fixed !important; top: 11px !important; right: 20px !important; z-index: 10002 !important; }

    /* Ticker */
    .ticker-bar { height: 28px !important; font-size: 10px !important; }
    .ticker-track span { padding: 0 24px !important; }

    /* Detail hero */
    .detail-hero { height: auto !important; min-height: 100svh; }
    .detail-hero-inner {
      display: flex !important;
      flex-direction: column !important;
      align-items: center !important;
      padding: 80px 20px 40px !important;
      gap: 28px !important;
    }
    .detail-left,
    .detail-right { max-width: 100% !important; width: 100% !important; }
    .detail-bottle-wrap {
      width: 100% !important;
      height: 55vw !important;
      min-height: 200px !important;
      max-height: 340px !important;
    }
    .detail-right { justify-content: flex-start !important; }
    .detail-specs { max-width: 100% !important; }

    /* Disable entry animations on mobile for instant display */
    .detail-breadcrumb,
    .detail-eyebrow,
    .detail-subtitle,
    .detail-desc,
    .detail-vendors,
    .detail-specs { opacity: 1 !important; transform: none !important; transition: none !important; }
    .detail-title span { transform: none !important; transition: none !important; }
    .detail-bottle { opacity: 1 !important; transform: none !important; transition: none !important; }
    .scroll-hint { display: none !important; }
    .detail-ghost { display: none !important; }

    /* Vendor buttons */
    .detail-vendors { flex-wrap: wrap !important; gap: 8px !important; }
    .btn-vendor { padding: 12px 20px !important; font-size: 10px !important; }

    /* Specs */
    .spec-item { flex-direction: row !important; }
    .spec-val { font-size: 14px !important; }

    /* Details section */
    .section-details {
      grid-template-columns: 1fr !important;
      padding: 60px 20px !important;
      gap: 32px !important;
    }
    .details-fact { grid-template-columns: 1fr 1fr !important; gap: 16px !important; }

    /* Related wines */
    .related-grid { grid-template-columns: 1fr 1fr !important; }
    .section-related { padding: 60px 20px !important; }
    .related-header {
      flex-direction: column !important;
      align-items: flex-start !important;
      gap: 16px !important;
      margin-bottom: 32px !important;
    }
    .rcard-img { height: 180px !important; }

    /* Footer */
    footer { padding: 48px 20px 32px !important; }
    .footer-top { grid-template-columns: 1fr 1fr !important; gap: 20px !important; margin-bottom: 32px !important; }
    .footer-bottom { flex-direction: column !important; text-align: center; gap: 6px !important; }
  }

  /* ════════════════════════════════════════
     MOBILE SM  (max-width: 480px)
  ════════════════════════════════════════ */
  @media (max-width: 480px) {
    .footer-top { grid-template-columns: 1fr !important; gap: 28px !important; }
    .related-grid { grid-template-columns: 1fr !important; }
    .details-fact { grid-template-columns: 1fr !important; }
    .detail-hero-inner { padding: 70px 16px 32px !important; }
    .detail-breadcrumb { font-size: 10px !important; }
    .section-details { padding: 48px 16px !important; }
    .section-related { padding: 48px 16px !important; }
    .btn-vendor { padding: 11px 16px !important; }
    .detail-vendors { gap: 6px !important; }
  }

  /* ════════════════════════════════════════
     MOBILE XS  (max-width: 360px)
  ════════════════════════════════════════ */
  @media (max-width: 360px) {
    .detail-title { font-size: clamp(32px, 10vw, 48px) !important; }
    .rcard-name { font-size: 16px !important; }
    .spec-key { font-size: 11px !important; }
    .spec-val { font-size: 13px !important; }
  }

  