/** Shopify CDN: Minification failed

Line 685:0 Expected "}" to go with "{"

**/
/* =====================================================================
   GOLF SAVED MY LIFE — "Industrial Country Club"
   Art direction: deconstructed golf luxury.
   Type:  Archivo (industrial grotesk, display + body)
          Fraunces (country-club serif, editorial only)
          Space Mono (industrial labels, SKUs, numbers)
   Palette: cream, paper, ink, deep golf-green, fairway, brass, hazard.
   ===================================================================== */

@layer base, components, utilities;

/* ---------- DESIGN TOKENS ---------- */
:root,
[data-theme='light'] {
  /* Surfaces */
  --cream:        #F5F0E6;
  --paper:        #EFEBE0;
  --paper-2:      #E1DBC9;
  --bg:           var(--cream);
  --surface:      var(--paper);
  --surface-2:    var(--paper-2);

  /* Ink */
  --ink:          #12110D;
  --ink-soft:     #4A463E;
  --ink-faint:    #7C776B;
  --text:         var(--ink);
  --text-muted:   var(--ink-soft);
  --text-faint:   var(--ink-faint);

  /* Country club */
  --green:        #1B3A2F;
  --green-deep:   #0F221C;
  --fairway:      #1E4438;
  --green-soft:   #2C5446;

  /* Brass — decorative / large type / on dark only */
  --brass:        #C4A04E;
  --brass-bright: #D4B45E;

  /* Abloh pop — used sparingly */
  --hazard:       #D8552B;

  /* Borders / rules */
  --border:       #C9C2AF;
  --rule:         #1F1B14;

  /* Type */
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body:    'Work Sans', 'Helvetica Neue', Arial, sans-serif;
  --font-serif:   'Instrument Serif', Georgia, serif;
  --font-mono:    'Space Mono', 'Courier New', monospace;

  /* Radius */
  --radius-sm: 4px;
  --radius:    10px;
  --radius-lg: 18px;
  --radius-full: 9999px;

  /* Transitions */
  --transition:    200ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-lg: 420ms cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(18,17,13,0.06);
  --shadow:    0 6px 20px rgba(18,17,13,0.08);
  --shadow-lg: 0 24px 60px rgba(18,17,13,0.16);

  /* Layout */
  --container: 1200px;
  --gutter: clamp(16px, 5vw, 56px);
  --header-h: 72px;
}

[data-theme='dark'] {
  --cream:        #15140F;
  --paper:        #1C1A14;
  --paper-2:      #252219;
  --bg:           var(--cream);
  --surface:      var(--paper);
  --surface-2:    var(--paper-2);

  --ink:          #F5F0E6;
  --ink-soft:     #C7C1B2;
  --ink-faint:    #8E8879;
  --text:         var(--ink);
  --text-muted:   var(--ink-soft);
  --text-faint:   var(--ink-faint);

  --green:        #5E8A6F;
  --green-deep:   #1B3A2F;
  --fairway:      #2C5446;
  --green-soft:   #3E6353;

  --brass:        #D4B45E;
  --brass-bright: #E4C46E;

  --hazard:       #E8653B;

  --border:       #3A352B;
  --rule:         #F5F0E6;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
  --shadow:    0 6px 20px rgba(0,0,0,0.4);
  --shadow-lg: 0 24px 60px rgba(0,0,0,0.6);
}

/* =====================================================================
   RESET / BASE
   ===================================================================== */
@layer base {
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-h);
  }
  body {
    min-height: 100dvh;
    line-height: 1.6;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text);
    background-color: var(--bg);
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
  }
  img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
  ul[role='list'], ol[role='list'] { list-style: none; }
  input, button, textarea, select { font: inherit; color: inherit; }
  h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    text-wrap: balance;
    line-height: 1.1;
    font-weight: 400;
  }
  p, li, figcaption { text-wrap: pretty; max-width: 72ch; }
  a { color: inherit; text-decoration: none; transition: color var(--transition); }
  ::selection { background: var(--green); color: var(--cream); }
  :focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; border-radius: var(--radius-sm); }
  button { cursor: pointer; background: none; border: none; }
  table { border-collapse: collapse; width: 100%; }
  hr { border: none; border-top: 1px solid var(--border); margin: 1.5em 0; }

  /* System font fallback while web fonts load */
  .font-loading body { font-family: system-ui, -apple-system, sans-serif; }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
  }
}

/* =====================================================================
   UTILITIES
   ===================================================================== */
@layer utilities {
  .container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
  .section { padding-block: clamp(48px, 8vw, 120px); }
  .section--tight { padding-block: clamp(32px, 5vw, 64px); }
  .section--flush { padding-block: 0; }
  .sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
  }
  .skip-link {
    position: absolute; left: -999px; top: 0; z-index: 200;
    background: var(--ink); color: var(--cream); padding: 12px 20px;
    border-radius: 0 0 var(--radius) 0; font-size: 14px;
  }
  .skip-link:focus { left: 0; }
  .mono-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: inline-block;
  }
  .eyebrow { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass); }
  .text-center { text-align: center; }
  .text-brass { color: var(--brass); }
  .text-green { color: var(--green); }
  .text-muted { color: var(--text-muted); }
  .bg-ink { background: var(--ink); color: var(--cream); }
  .bg-green { background: var(--green); color: var(--cream); }
  .bg-paper { background: var(--paper); }
  .hide-mobile { display: none; }
  .show-mobile { display: block; }
  @media (min-width: 768px) { .hide-mobile { display: block; } .show-mobile { display: none; } }
}

/* =====================================================================
   HEADER
   ===================================================================== */
@layer components {
.header { position: sticky; top: 0; z-index: 50; background: color-mix(in srgb, var(--bg) 88%, transparent); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: var(--header-h); max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--text); }
.brand__mark { color: var(--green); flex-shrink: 0; }
.brand__word { display: flex; flex-direction: column; line-height: 0.92; font-family: var(--font-display); font-size: 15px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
.brand__line { display: block; }
.brand--light .brand__mark { color: var(--cream); }
.brand--light .brand__word { color: var(--cream); }

.nav { display: none; }
.nav__list { display: flex; align-items: center; gap: 28px; }
.nav__link { font-size: 14px; font-weight: 500; letter-spacing: 0.01em; display: inline-flex; align-items: center; gap: 8px; padding: 8px 0; position: relative; }
.nav__link .mono-label { color: var(--brass); font-size: 10px; }
.nav__link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: var(--text); transition: width var(--transition); }
.nav__link:hover::after { width: 100%; }

.header__actions { display: flex; align-items: center; gap: 8px; }
.icon-btn { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: var(--radius-full); color: var(--text); transition: background var(--transition), color var(--transition); }
.icon-btn:hover { background: var(--paper-2); }
.icon--moon { display: none; }
[data-theme='dark'] .icon--sun { display: none; }
[data-theme='dark'] .icon--moon { display: block; }

.cart-btn { position: relative; }
.cart-count { position: absolute; top: 4px; right: 4px; background: var(--green); color: var(--cream); font-family: var(--font-mono); font-size: 10px; font-weight: 700; min-width: 16px; height: 16px; border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; padding: 0 4px; }

.nav-toggle { display: inline-flex; flex-direction: column; gap: 5px; width: 40px; height: 40px; align-items: center; justify-content: center; }
.nav-toggle__bar { display: block; width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: transform var(--transition), opacity var(--transition); }
.nav-toggle[aria-expanded='true'] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded='true'] .nav-toggle__bar:nth-child(2) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav { max-height: 0; overflow: hidden; transition: max-height var(--transition-lg); border-top: 1px solid transparent; }
.mobile-nav[data-open='true'] { max-height: 400px; border-top: 1px solid var(--border); }
.mobile-nav ul { display: flex; flex-direction: column; padding: 16px var(--gutter); gap: 4px; }
.mobile-nav__link { display: flex; align-items: center; gap: 12px; padding: 14px 0; font-size: 16px; border-bottom: 1px solid var(--border); }
.mobile-nav__link .mono-label { color: var(--brass); }

@media (min-width: 768px) {
  .nav { display: block; }
  .nav-toggle { display: none; }
}

/* =====================================================================
   MARQUEE
   ===================================================================== */
.marquee { background: var(--green); color: var(--cream); overflow: hidden; border-bottom: 1px solid var(--green-deep); }
.marquee__track { display: flex; align-items: center; gap: 20px; padding: 10px 0; white-space: nowrap; animation: marquee 30s linear infinite; width: max-content; }
.marquee__item { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; }
.marquee__dot { color: var(--brass); font-size: 10px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =====================================================================
   BUTTONS
   ===================================================================== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-family: var(--font-body); font-size: 14px; font-weight: 600; letter-spacing: 0.02em; padding: 14px 28px; border-radius: var(--radius-full); cursor: pointer; transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition); border: 1.5px solid transparent; text-align: center; line-height: 1; }
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--green); color: var(--cream); }
.btn--primary:hover { background: var(--green-deep); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--text); background: var(--paper-2); }
.btn--light { background: var(--cream); color: var(--ink); }
.btn--light:hover { background: var(--paper-2); }
.btn--sm { padding: 10px 18px; font-size: 13px; }
.btn--lg { padding: 18px 36px; font-size: 15px; }
.btn--block { display: flex; width: 100%; }
.btn .arrow { transition: transform var(--transition); }
.btn:hover .arrow { transform: translateX(4px); }

/* =====================================================================
   HERO
   ===================================================================== */
.hero { position: relative; min-height: 92vh; display: flex; align-items: flex-end; overflow: hidden; background: var(--ink); color: var(--cream); }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: 0.6; }
.hero__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(18,17,13,0.2) 0%, rgba(18,17,13,0.4) 40%, rgba(18,17,13,0.85) 100%); }
.hero__content { position: relative; z-index: 1; width: 100%; padding: 0 var(--gutter) clamp(48px, 8vw, 96px); max-width: var(--container); margin-inline: auto; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass); margin-bottom: 24px; }
.hero__eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--brass); }
.hero__title { font-family: var(--font-display); font-size: clamp(44px, 9vw, 120px); line-height: 0.95; letter-spacing: -0.02em; margin-bottom: 24px; max-width: 14ch; }
.hero__title em { font-style: italic; color: var(--brass); }
.hero__desc { font-size: clamp(15px, 1.6vw, 18px); max-width: 48ch; color: rgba(245,240,230,0.82); margin-bottom: 36px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero__scroll { position: absolute; bottom: 24px; right: var(--gutter); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream); opacity: 0.6; }
.hero__scroll-line { width: 1px; height: 40px; background: var(--cream); animation: scroll-pulse 2s ease-in-out infinite; }
@keyframes scroll-pulse { 0%, 100% { transform: scaleY(0.3); transform-origin: top; opacity: 0.3; } 50% { transform: scaleY(1); opacity: 1; } }
@media (max-width: 767px) { .hero__scroll { display: none; } }

/* =====================================================================
   SECTION HEADER (shared)
   ===================================================================== */
.section-head { margin-bottom: clamp(32px, 5vw, 64px); }
.section-head--center { text-align: center; }
.section-head__eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass); margin-bottom: 16px; }
.section-head--center .section-head__eyebrow { justify-content: center; }
.section-head__eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--brass); }
.section-head__title { font-family: var(--font-display); font-size: clamp(32px, 5vw, 64px); line-height: 1.02; letter-spacing: -0.02em; margin-bottom: 16px; max-width: 18ch; }
.section-head--center .section-head__title { margin-inline: auto; }
.section-head__title em { font-style: italic; color: var(--green); }
.section-head__desc { font-size: clamp(15px, 1.5vw, 17px); color: var(--text-muted); max-width: 56ch; }
.section-head--center .section-head__desc { margin-inline: auto; }

/* =====================================================================
   MANIFESTO / STATEMENT
   ===================================================================== */
.manifesto { background: var(--paper); border-block: 1px solid var(--border); }
.manifesto__grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: start; }
.manifesto__lead { font-family: var(--font-display); font-size: clamp(24px, 3.2vw, 40px); line-height: 1.2; letter-spacing: -0.01em; }
.manifesto__lead em { font-style: italic; color: var(--green); }
.manifesto__body p { margin-bottom: 16px; color: var(--text-muted); font-size: 16px; }
.manifesto__sign { display: flex; align-items: center; gap: 12px; margin-top: 28px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); }
.manifesto__sign::before { content: ''; width: 40px; height: 1px; background: var(--border); }
@media (min-width: 900px) {
  .manifesto__grid { grid-template-columns: 1fr 1fr; gap: 64px; }
}

/* =====================================================================
   PRODUCT GRID
   ===================================================================== */
.product-grid { display: grid; grid-template-columns: repeat(1, 1fr); gap: clamp(20px, 3vw, 32px); }
@media (min-width: 560px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .product-grid { grid-template-columns: repeat(4, 1fr); } }

.product-card { position: relative; display: flex; flex-direction: column; background: var(--surface); border-radius: var(--radius); overflow: hidden; transition: transform var(--transition), box-shadow var(--transition); border: 1px solid var(--border); }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-card__media { position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--paper-2); }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-lg); }
.product-card:hover .product-card__media img { transform: scale(1.05); }
.product-card__badge { position: absolute; top: 12px; left: 12px; z-index: 2; display: flex; flex-direction: column; gap: 6px; }
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 5px 10px; border-radius: var(--radius-full); font-family: var(--font-mono); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.badge--new { background: var(--green); color: var(--cream); }
.badge--sold { background: var(--hazard); color: var(--cream); }
.badge--sale { background: var(--brass); color: var(--ink); }
.product-card__quick { position: absolute; bottom: 12px; left: 12px; right: 12px; z-index: 2; opacity: 0; transform: translateY(8px); transition: opacity var(--transition), transform var(--transition); }
.product-card:hover .product-card__quick { opacity: 1; transform: translateY(0); }
.product-card__body { display: flex; flex-direction: column; gap: 6px; padding: 18px; flex-grow: 1; }
.product-card__vendor { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-faint); }
.product-card__title { font-family: var(--font-display); font-size: 17px; line-height: 1.2; }
.product-card__title a { background-image: linear-gradient(currentColor, currentColor); background-size: 0% 1px; background-position: 0 100%; background-repeat: no-repeat; transition: background-size var(--transition); }
.product-card__title a:hover { background-size: 100% 1px; }
.product-card__price { display: flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 8px; font-family: var(--font-mono); font-size: 14px; font-weight: 700; color: var(--text); }
.product-card__price--sale { color: var(--hazard); }
.product-card__price s { color: var(--text-faint); font-weight: 400; font-size: 13px; }
.product-card__swatches { display: flex; gap: 6px; margin-top: 10px; }
.swatch { width: 16px; height: 16px; border-radius: var(--radius-full); border: 1px solid var(--border); cursor: pointer; transition: transform var(--transition); }
.swatch:hover, .swatch--active { transform: scale(1.15); border-color: var(--text); }
@media (max-width: 559px) { .product-card__quick { position: static; opacity: 1; transform: none; margin-top: 12px; } .product-card:hover .product-card__media img { transform: none; } }

/* =====================================================================
   COLLECTION FEATURE / EDITORIAL SPLIT
   ===================================================================== */
.split { display: grid; grid-template-columns: 1fr; gap: 0; align-items: stretch; }
.split--reverse .split__media { order: 2; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--reverse .split__media { order: -1; }
}
.split__media { position: relative; min-height: 320px; overflow: hidden; background: var(--paper-2); }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(18,17,13,0.3) 100%); }
.split__content { display: flex; flex-direction: column; justify-content: center; gap: 20px; padding: clamp(32px, 5vw, 64px); }
.split__eyebrow { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass); }
.split__title { font-family: var(--font-display); font-size: clamp(28px, 4vw, 48px); line-height: 1.05; letter-spacing: -0.02em; max-width: 14ch; }
.split__title em { font-style: italic; color: var(--green); }
.split__desc { color: var(--text-muted); font-size: 16px; max-width: 48ch; }
.split__list { display: grid; gap: 12px; margin-top: 8px; }
.split__list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; }
.split__list li::before { content: '✦'; color: var(--brass); font-size: 12px; margin-top: 4px; flex-shrink: 0; }
.split__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 8px; }

/* =====================================================================
   STATS / PROOF BAR
   ===================================================================== */
.stats { background: var(--green); color: var(--cream); }
.stats__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--green-deep); }
@media (min-width: 768px) { .stats__grid { grid-template-columns: repeat(4, 1fr); } }
.stat { background: var(--green); padding: clamp(24px, 4vw, 48px); display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
.stat__num { font-family: var(--font-display); font-size: clamp(36px, 5vw, 56px); line-height: 1; color: var(--brass); }
.stat__label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(245,240,230,0.7); }

/* =====================================================================
   TESTIMONIAL / QUOTE
   ===================================================================== */
.quote { text-align: center; max-width: 800px; margin-inline: auto; }
.quote__mark { font-family: var(--font-display); font-size: 80px; line-height: 0.5; color: var(--brass); margin-bottom: 16px; display: block; }
.quote__text { font-family: var(--font-display); font-style: italic; font-size: clamp(22px, 3vw, 36px); line-height: 1.3; letter-spacing: -0.01em; margin-bottom: 32px; }
.quote__author { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.quote__author-name { font-weight: 600; font-size: 15px; }
.quote__author-role { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-faint); }

/* =====================================================================
   JOURNAL / EDITORIAL CARDS
   ===================================================================== */
.journal-grid { display: grid; grid-template-columns: 1fr; gap: clamp(24px, 3vw, 40px); }
@media (min-width: 768px) { .journal-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .journal-grid { grid-template-columns: repeat(3, 1fr); } }
.journal-card { display: flex; flex-direction: column; gap: 16px; }
.journal-card__media { aspect-ratio: 16/11; overflow: hidden; border-radius: var(--radius); background: var(--paper-2); }
.journal-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-lg); }
.journal-card:hover .journal-card__media img { transform: scale(1.04); }
.journal-card__meta { display: flex; align-items: center; gap: 12px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); }
.journal-card__meta span:first-child { color: var(--brass); }
.journal-card__title { font-family: var(--font-display); font-size: 22px; line-height: 1.2; }
.journal-card__title a { background-image: linear-gradient(currentColor, currentColor); background-size: 0% 1px; background-position: 0 100%; background-repeat: no-repeat; transition: background-size var(--transition); }
.journal-card__title a:hover { background-size: 100% 1px; }
.journal-card__desc { color: var(--text-muted); font-size: 15px; }

/* =====================================================================
   NEWSLETTER
   ===================================================================== */
.newsletter { background: var(--ink); color: var(--cream); }
.newsletter__inner { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
@media (min-width: 880px) { .newsletter__inner { grid-template-columns: 1fr 1fr; gap: 64px; } }
.newsletter__title { font-family: var(--font-display); font-size: clamp(28px, 4vw, 44px); line-height: 1.05; letter-spacing: -0.02em; }
.newsletter__title em { font-style: italic; color: var(--brass); }
.newsletter__desc { color: rgba(245,240,230,0.7); font-size: 16px; margin-top: 12px; max-width: 44ch; }
.newsletter__form { display: flex; flex-direction: column; gap: 16px; }
.newsletter__row { display: flex; gap: 0; background: var(--paper); border-radius: var(--radius-full); padding: 6px; border: 1px solid var(--border); }
.newsletter__input { flex-grow: 1; background: transparent; border: none; padding: 12px 20px; font-size: 15px; color: var(--cream); }
.newsletter__input::placeholder { color: var(--ink-faint); }
.newsletter__input:focus { outline: none; }
.newsletter__check { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: rgba(245,240,230,0.6); }
.newsletter__check input { margin-top: 3px; accent-color: var(--brass); }
.newsletter__note { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); margin-top: 8px; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer { background: var(--ink); color: var(--cream); }
.footer__top { display: grid; grid-template-columns: 1fr; gap: 40px; padding-block: clamp(48px, 7vw, 88px); }
@media (min-width: 768px) { .footer__top { grid-template-columns: 1.5fr 2fr; gap: 64px; } }
.footer__brand { display: flex; flex-direction: column; gap: 16px; }
.footer__tag { color: rgba(245,240,230,0.7); font-size: 15px; max-width: 32ch; }
.footer__cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
@media (min-width: 768px) { .footer__cols { grid-template-columns: repeat(3, 1fr); } }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col .mono-label { color: var(--brass); margin-bottom: 4px; }
.footer__col a { color: rgba(245,240,230,0.75); font-size: 14px; }
.footer__col a:hover { color: var(--cream); }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 12px; padding: 24px var(--gutter); border-top: 1px solid rgba(245,240,230,0.1); }
.footer__mono { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); }

/* =====================================================================
   REVEAL ANIMATION
   ===================================================================== */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out); }
[data-reveal='in'] { opacity: 1; transform: none; }
[data-reveal][data-reveal-delay='1'] { transition-delay: 80ms; }
[data-reveal][data-reveal-delay='2'] { transition-delay: 160ms; }
[data-reveal][data-reveal-delay='3'] { transition-delay: 240ms; }
[data-reveal][data-reveal-delay='4'] { transition-delay: 320ms; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* =====================================================================
   MARQUEE VARIANTS
   ===================================================================== */
.marquee--hazard { background: var(--hazard); color: var(--cream); }
.marquee--hazard .marquee__dot { color: var(--cream); }
.marquee--brass { background: var(--brass); color: var(--ink); }
.marquee--brass .marquee__dot { color: var(--ink); }

/* =====================================================================
   THEME TOGGLE TRANSITION
   ===================================================================== */
:root, [data-theme] { transition: background-color 400ms var(--ease-out), color 400ms var(--ease-out); }

/* =====================================================================
   CART DRAWER (minimal, if used)
   ===================================================================== */
.cart-drawer { position: fixed; top: 0; right: 0; height: 100dvh; width: min(420px, 100%); background: var(--bg); z-index: 100; transform: translateX(100%); transition: transform var(--transition-lg); box-shadow: var(--shadow-lg); display: flex; flex-direction: column; }
.cart-drawer[data-open='true'] { transform: translateX(0); }
.cart-drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 20px var(--gutter); border-bottom: 1px solid var(--border); }
.cart-drawer__title { font-family: var(--font-display); font-size: 22px; }
.cart-drawer__body { flex-grow: 1; overflow-y: auto; padding: 16px var(--gutter); }
.cart-drawer__foot { padding: 20px var(--gutter); border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 12px; }
.cart-overlay { position: fixed; inset: 0; background: rgba(18,17,13,0.5); z-index: 99; opacity: 0; visibility: hidden; transition: opacity var(--transition), visibility var(--transition); }
.cart-overlay[data-open='true'] { opacity: 1; visibility: visible; }

/* =====================================================================
   MISC / OVERRIDES
   ===================================================================== */
/* Ensure images don't overflow rounded containers */
img { border-radius: inherit; }
/* Fix for SVG icons inheriting unwanted radius */
svg { border-radius: 0; }
/* Prevent layout shift on web font load */
.font-loading .brand__word { visibility: hidden; }
.font-active .brand__word { visibility: visible; }

/* =====================================================================
   RESPONSIVE TWEAKS
   ===================================================================== */
@media (max-width: 767px) {
  .hero__title { font-size: clamp(40px, 12vw, 72px); }
  .section-head__title { font-size: clamp(28px, 7vw, 40px); }
  .split__content { padding: 32px 24px; }
  .stats__grid { gap: 0; }
  .stat { padding: 24px; }
  .footer__bottom { justify-content: center; text-align: center; }
}

/* =====================================================================
   PRODUCT PAGE (PDP) — minimal scaffolding
   ===================================================================== */
.pdp { display: grid; grid-template-columns: 1fr; gap: 40px; padding-block: clamp(32px, 5vw, 64px); }
@media (min-width: 900px) { .pdp { grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; } }
.pdp__gallery { position: sticky; top: calc(var(--header-h) + 24px); }
.pdp__main-img { aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden; background: var(--paper-2); margin-bottom: 12px; }
.pdp__main-img img { width: 100%; height: 100%; object-fit: cover; }
.pdp__thumbs { display: flex; gap: 10px; overflow-x: auto; }
.pdp__thumb { width: 72px; height: 72px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; border: 2px solid transparent; cursor: pointer; }
.pdp__thumb--active { border-color: var(--green); }
.pdp__thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp__info { display: flex; flex-direction: column; gap: 20px; }
.pdp__vendor { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-faint); }
.pdp__title { font-family: var(--font-display); font-size: clamp(28px, 4vw, 44px); line-height: 1.05; letter-spacing: -0.02em; }
.pdp__price { display: flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 22px; font-weight: 700; }
.pdp__price--sale { color: var(--hazard); }
.pdp__price s { font-size: 18px; color: var(--text-faint); font-weight: 400; }
.pdp__desc { color: var(--text-muted); font-size: 16px; line-height: 1.7; }
.pdp__options { display: flex; flex-direction: column; gap: 16px; }
.pdp__option-label { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }
.pdp__swatches { display: flex; flex-wrap: wrap; gap: 10px; }
.pdp__swatch { width: 36px; height: 36px; border-radius: var(--radius-sm); border: 2px solid var(--border); cursor: pointer; transition: border-color var(--transition), transform var(--transition); }
.pdp__swatch--active { border-color: var(--green); transform: scale(1.05); }
.pdp__sizes { display: flex; flex-wrap: wrap; gap: 8px; }
.pdp__size { min-width: 48px; padding: 10px 16px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-family: var(--font-mono); font-size: 13px; text-align: center; cursor: pointer; transition: border-color var(--transition), background var(--transition); }
.pdp__size--active { border-color: var(--green); background: var(--green); color: var(--cream); }
.pdp__size--disabled { opacity: 0.4; cursor: not-allowed; text-decoration: line-through; }
.pdp__qty { display: flex; align-items: center; gap: 0; border: 1px solid var(--border); border-radius: var(--radius-full); overflow: hidden; width: fit-content; }
.pdp__qty button { width: 44px; height: 44px; font-size: 18px; display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
.pdp__qty button:hover { background: var(--paper-2); }
.pdp__qty input { width: 56px; height: 44px; text-align: center; border: none; border-left: 1px solid var(--border); border-right: 1px solid var(--border); background: transparent; font-family: var(--font-mono); font-size: 15px; }
.pdp__actions { display: flex; flex-direction: column; gap: 12px; }
.pdp__accordion { display: flex; flex-direction: column; border-top: 1px solid var(--border); }
.pdp__accord-item { border-bottom: 1px solid var(--border); }
.pdp__accord-head { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.05em; text-transform: uppercase; cursor: pointer; }
.pdp__accord-head::after { content: '+'; font-size: 18px; transition: transform var(--transition); }
.pdp__accord-item--open .pdp__accord-head::after { transform: rotate(45deg); }
.pdp__accord-body { max-height: 0; overflow: hidden; transition: max-height var(--transition-lg); }
.pdp__accord-item--open .pdp__accord-body { max-height: 500px; }
.pdp__accord-body-inner { padding-bottom: 18px; color: var(--text-muted); font-size: 15px; line-height: 1.7; }

/* =====================================================================
   CART PAGE
   ===================================================================== */
.cart-page { display: grid; grid-template-columns: 1fr; gap: 40px; padding-block: clamp(32px, 5vw, 64px); }
@media (min-width: 900px) { .cart-page { grid-template-columns: 2fr 1fr; gap: 64px; align-items: start; } }
.cart-items { display: flex; flex-direction: column; gap: 0; }
.cart-item { display: grid; grid-template-columns: 80px 1fr auto; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--border); align-items: center; }
.cart-item__img { width: 80px; height: 100px; border-radius: var(--radius-sm); overflow: hidden; background: var(--paper-2); }
.cart-item__img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item__info { display: flex; flex-direction: column; gap: 4px; }
.cart-item__title { font-family: var(--font-display); font-size: 16px; }
.cart-item__variant { font-family: var(--font-mono); font-size: 11px; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.05em; }
.cart-item__qty { display: flex; align-items: center; gap: 0; border: 1px solid var(--border); border-radius: var(--radius-full); overflow: hidden; }
.cart-item__qty button { width: 32px; height: 32px; font-size: 14px; }
.cart-item__qty input { width: 40px; height: 32px; text-align: center; border: none; border-left: 1px solid var(--border); border-right: 1px solid var(--border); font-family: var(--font-mono); font-size: 13px; }
.cart-item__right { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.cart-item__price { font-family: var(--font-mono); font-size: 15px; font-weight: 700; }
.cart-item__remove { font-size: 12px; color: var(--text-faint); text-decoration: underline; }
.cart-item__remove:hover { color: var(--hazard); }
.cart-summary { position: sticky; top: calc(var(--header-h) + 24px); background: var(--paper); border-radius: var(--radius); padding: 32px; display: flex; flex-direction: column; gap: 16px; }
.cart-summary__title { font-family: var(--font-display); font-size: 24px; margin-bottom: 8px; }
.cart-summary__row { display: flex; justify-content: space-between; font-size: 15px; }
.cart-summary__row--total { font-family: var(--font-display); font-size: 20px; padding-top: 16px; border-top: 1px solid var(--border); margin-top: 8px; }
.cart-summary__note { font-family: var(--font-mono); font-size: 11px; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.1em; }

/* =====================================================================
   COLLECTION PAGE
   ===================================================================== */
.collection-hero { padding-block: clamp(32px, 5vw, 64px); text-align: center; }
.collection-hero__title { font-family: var(--font-display); font-size: clamp(36px, 6vw, 72px); line-height: 1; letter-spacing: -0.02em; margin-bottom: 12px; }
.collection-hero__desc { color: var(--text-muted); max-width: 56ch; margin-inline: auto; font-size: 16px; }
.collection-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-block: 20px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 32px; flex-wrap: wrap; }
.collection-toolbar__count { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.collection-toolbar__sort { display: flex; align-items: center; gap: 10px; }
.collection-toolbar__sort select { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-full); padding: 8px 16px; font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; cursor: pointer; }

/* =====================================================================
   PAGINATION
   ===================================================================== */
.pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 64px; }
.pagination a, .pagination span { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; border-radius: var(--radius-full); font-family: var(--font-mono); font-size: 13px; border: 1px solid var(--border); }
.pagination a:hover { background: var(--paper-2); }
.pagination .current { background: var(--green); color: var(--cream); border-color: var(--green); }
.pagination .disabled { opacity: 0.3; cursor: not-allowed; }

/* =====================================================================
   BREADCRUMBS
   ===================================================================== */
.breadcrumbs { display: flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); padding-block: 16px; }
.breadcrumbs a:hover { color: var(--text); }
.breadcrumbs span { color: var(--brass); }

/* =====================================================================
   FORMS (general)
   ===================================================================== */
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-field label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.form-field input, .form-field textarea, .form-field select { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 12px 16px; font-size: 15px; color: var(--text); transition: border-color var(--transition); }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { outline: none; border-color: var(--green); }
.form-field textarea { resize: vertical; min-height: 120px; }

/* =====================================================================
   ANNOUNCEMENT / ALERT BAR
   ===================================================================== */
.alert-bar { background: var(--hazard); color: var(--cream); text-align: center; padding: 10px var(--gutter); font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; }

/* =====================================================================
   LOADING STATES
   ===================================================================== */
.is-loading { position: relative; pointer-events: none; opacity: 0.6; }
.is-loading::after { content: ''; position: absolute; inset: 0; background: var(--bg); opacity: 0.4; }
.spinner { display: inline-block; width: 16px; height: 16px; border: 2px solid var(--border); border-top-color: var(--green); border-radius: 50%; animation: spin 0.6s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* =====================================================================
   PRINT
   ===================================================================== */
@media print {
  .header, .marquee, .footer, .newsletter, .cart-drawer, .cart-overlay, .nav-toggle, .hero__scroll { display: none !important; }
  body { color: #000; background: #fff; }
}

/* =====================================================================
   FOCUS / ACCESSIBILITY
   ===================================================================== */
/* Visible focus on keyboard nav only */
:focus:not(:focus-visible) { outline: none; }

/* =====================================================================
   FINAL UTILITIES
   ===================================================================== */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 24px; }
.grid-4 { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 560px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 8px; }
.gap-4 { gap: 16px; }
.gap-8 { gap: 32px; }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }

.w-full { width: 100%; }
.text-sm { font-size: 14px; }
.text-base { font-size: 16px; }
.text-lg { font-size: 18px; }
.text-xl { font-size: 20px; }
.font-bold { font-weight: 700; }
.font-mono { font-family: var(--font-mono); }
.font-display { font-family: var(--font-display); }
.uppercase { text-transform: uppercase; }
.tracking-wide { letter-spacing: 0.1em; }

/* End of stylesheet — GOLF SAVED MY LIFE theme */

/* Additional responsive tweaks for product grid add-to-cart on mobile */
@media (max-width: 559px) {
  .product-card .btn--sm { width: 100%; justify-content: center; }
}
