
    *, *::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 ROOT */
    /* 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; letter-spacing: .05em; }
    .loader-logo span { 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); }

    /* TRANSITION OVERLAY */
    #transition-overlay { position: fixed; inset: 0; z-index: 8000; pointer-events: none; overflow: hidden; display: none; }
    #transition-overlay .t-circle { position: absolute; border-radius: 50%; background: var(--bg); width: 200vmax; height: 200vmax; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(0); opacity: 0; }

    /* 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; box-shadow: none; 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; white-space: nowrap; }
    .lang-switch:hover { opacity: 1; border-color: var(--gold); }
    .lang-switch svg { stroke: currentColor; }
    .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 */
    .section-hero { position: relative; height: 52vh; min-height: 320px; display: flex; align-items: flex-end; overflow: hidden; }
    .hero-bg { position: absolute; inset: 0; }
    .hero-bg img { width: 100%; height: 130%; object-fit: cover; object-position: center 35%; }
    .hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,12,9,.2) 0%, rgba(13,12,9,.45) 45%, rgba(13,12,9,.98) 100%); }
    .hero-content { position: relative; z-index: 2; padding: 0 64px 64px; width: 100%; display: flex; align-items: flex-end; justify-content: space-between; gap: 48px; }
    .hero-eyebrow { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; opacity: 0; transition: opacity .7s ease .2s; }
    .hero-eyebrow.in { opacity: 1; }
    .hero-title-clip { padding-bottom: 8px; margin-bottom: -8px; }
    .hero-title-clip h1 { font-family: var(--serif); font-weight: 300; line-height: .92; color: var(--light); transform: translateY(110%); transition: transform 1s var(--ease); }
    .hero-title-clip h1.line-1 { font-size: clamp(52px, 7.5vw, 110px); letter-spacing: -.01em; }
    .hero-title-clip h1.line-2 { font-size: clamp(52px, 7.5vw, 110px); letter-spacing: -.01em; font-style: italic; color: var(--gold); }
    .hero-title-clip h1.loaded { transform: translateY(0); }
    .hero-line-2 { transition-delay: .18s !important; }
    .hero-right { opacity: 0; transform: translateY(16px); transition: opacity .8s ease .65s, transform .8s var(--ease) .65s; max-width: 280px; text-align: right; flex-shrink: 0; }
    .hero-right.in { opacity: 1; transform: translateY(0); }
    .hero-stat { font-family: var(--serif); font-size: 64px; font-weight: 300; color: var(--gold); line-height: 1; }
    .hero-stat-label { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }

    /* FILTER BAR */
    .filter-bar { position: sticky; top: 0; z-index: 20; background: var(--bg); border-bottom: 1px solid rgba(255,255,255,.07); display: flex; align-items: center; justify-content: space-between; padding: 0 64px; }
    @media (max-width: 768px) {
      .filter-bar { top: 58px !important; padding: 0 16px !important; flex-wrap: wrap !important; }
      .filter-tabs { overflow-x: auto; -webkit-overflow-scrolling: touch; display: flex; width: 100%; scrollbar-width: none; }
      .filter-tabs::-webkit-scrollbar { display: none; }
      .filter-tab { white-space: nowrap; flex-shrink: 0; padding: 14px 16px !important; font-size: 10px !important; }
    }
    .filter-tabs { display: flex; }
    .filter-tab { font-size: 11px; font-weight: 400; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); padding: 18px 22px; border-bottom: 2px solid transparent; transition: color .3s, border-color .3s; white-space: nowrap; }
    .filter-tab:hover { color: var(--text); }
    .filter-tab.active { color: var(--gold); border-color: var(--gold); }
    .filter-right { display: flex; align-items: center; gap: 24px; }
    .filter-count { font-size: 11px; letter-spacing: .1em; color: var(--muted); }
    .filter-count em { color: var(--gold); font-style: normal; font-weight: 500; }

    /* GRID */
    .section-grid { padding: 2px 0 120px; background: var(--bg); }
    .products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }

    /* PRODUCT CARD */
    .pcard { display: block; text-decoration: none; background: var(--surface); border: 1px solid rgba(255,255,255,.04); overflow: hidden; position: relative; transition: background .35s, border-color .35s; cursor: pointer; }
    .pcard:hover { background: var(--surface2); border-color: rgba(198,164,90,.18); }
    .pcard.hidden { display: none; }
    .pcard-img { height: 300px; background: #0b0a07; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
    .pcard-img::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 60%, var(--glow, rgba(198,164,90,.06)) 0%, transparent 65%); }
    .pcard-img img { max-height: 82%; max-width: 60%; object-fit: contain; transition: transform .75s var(--ease); filter: drop-shadow(0 20px 40px rgba(0,0,0,.65)); }
    .pcard:hover .pcard-img img { transform: scale(1.07) translateY(-8px); }
    .pcard-badge { position: absolute; top: 14px; left: 14px; font-size: 9px; letter-spacing: .16em; text-transform: uppercase; padding: 5px 11px; border-radius: 100px; background: var(--gold); color: var(--bg); font-weight: 500; z-index: 2; }
    .pcard-body { padding: 22px 26px 26px; }
    .pcard-line { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
    .pcard-name { font-family: var(--serif); font-size: 22px; font-weight: 300; line-height: 1.1; color: var(--light); }
    .pcard-grape { font-size: 12px; color: var(--muted); margin-top: 5px; }
    .pcard-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.06); }
    .pcard-tags { display: flex; gap: 6px; }
    .ptag { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; padding: 4px 10px; border: 1px solid rgba(255,255,255,.1); border-radius: 100px; color: var(--muted); }
    .pcard-cta { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .3s, border-color .3s; }
    .pcard:hover .pcard-cta { background: var(--gold); border-color: var(--gold); }
    .pcard-cta svg { width: 13px; height: 13px; stroke: var(--text); fill: none; stroke-width: 1.5; transition: stroke .3s; }
    .pcard:hover .pcard-cta svg { stroke: var(--bg); }

    /* NO RESULTS */
    .no-results { grid-column: 1/-1; padding: 100px 0; text-align: center; font-size: 15px; color: var(--muted); }

    /* ANIM */
    .anim-fade-up { opacity: 0; transform: translateY(40px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
    .anim-fade-up.visible { opacity: 1; transform: translateY(0); }
    .d1 { transition-delay: .06s; } .d2 { transition-delay: .12s; } .d3 { transition-delay: .18s; } .d4 { transition-delay: .24s; }

    /* 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); letter-spacing: .06em; }
    .footer-bottom a { color: var(--gold); }
  
    /* ── 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); }

  /* ═══════════════════════════════════════════════════════════════
     PRODUCTS 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; }
    .products-grid { grid-template-columns: repeat(3, 1fr) !important; }
    .hero-content { padding: 0 48px 56px !important; }
    .filter-bar { padding: 0 40px !important; }
    .section-grid { padding-bottom: 80px; }
  }

  /* ════════════════════════════════════════
     TABLET (768px)
  ════════════════════════════════════════ */
  @media (max-width: 900px) {
    .products-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .hero-content { padding: 0 32px 48px !important; }
    .filter-bar { padding: 0 24px !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; }

    /* Hero */
    .section-hero { height: 44vh !important; min-height: 260px !important; }
    .hero-content { padding: 0 20px 40px !important; gap: 12px !important; flex-direction: column !important; align-items: flex-start !important; }
    .hero-right { display: none !important; }
    .hero-eyebrow { margin-bottom: 10px !important; }

    /* Filter bar */
    .filter-bar {
      top: 58px !important;
      padding: 0 !important;
      flex-direction: column !important;
      align-items: flex-start !important;
      gap: 0 !important;
    }
    .filter-tabs {
      width: 100%;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      display: flex;
    }
    .filter-tabs::-webkit-scrollbar { display: none; }
    .filter-tab {
      white-space: nowrap;
      flex-shrink: 0;
      padding: 14px 14px !important;
      font-size: 10px !important;
    }
    .filter-right { padding: 8px 16px 12px; width: 100%; }

    /* Grid */
    .products-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 2px !important; }
    .pcard-img { height: 200px !important; }
    .pcard-body { padding: 16px 18px 20px !important; }
    .pcard-name { font-size: 18px !important; }
    .section-grid { padding-bottom: 60px; }

    /* 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) {
    .products-grid { grid-template-columns: 1fr !important; gap: 2px !important; }
    .pcard-img { height: 260px !important; }
    .footer-top { grid-template-columns: 1fr !important; gap: 28px !important; }
    .filter-tab { padding: 12px 10px !important; font-size: 9px !important; letter-spacing: .1em !important; }
    .hero-content { padding: 0 16px 36px !important; }
  }

  /* ════════════════════════════════════════
     MOBILE XS  (max-width: 360px)
  ════════════════════════════════════════ */
  @media (max-width: 360px) {
    .filter-tab { padding: 10px 8px !important; font-size: 8.5px !important; }
    .pcard-name { font-size: 16px !important; }
  }

  