/** Shopify CDN: Minification failed

Line 21:7 Expected identifier but found whitespace
Line 21:9 Unexpected "{"
Line 21:19 Expected ":"
Line 22:9 Expected identifier but found whitespace
Line 22:11 Unexpected "{"
Line 22:21 Expected ":"
Line 23:12 Expected identifier but found whitespace
Line 23:14 Unexpected "{"
Line 23:24 Expected ":"
Line 24:11 Expected identifier but found whitespace
... and 5 more hidden warnings

**/
/* ============================================
   LightningCleats — Floodlit Theme
   ============================================ */

:root {
  --bg: {{ settings.color_bg | default: '#FBFAF7' }};
  --text: {{ settings.color_text | default: '#0A271A' }};
  --primary: {{ settings.color_primary | default: '#0A271A' }};
  --accent: {{ settings.color_accent | default: '#FF5A1F' }};
  --gold: {{ settings.color_gold | default: '#FFB627' }};
  --green-deep: #0A271A;
  --green-mid: #14463C;
  --line: rgba(10, 39, 26, 0.12);
  --radius: 4px;
  --maxw: 1280px;
  --pad: clamp(20px, 5vw, 64px);
  --font-head: 'Archivo', sans-serif;
  --font-body: 'Hanken Grotesk', sans-serif;
  --font-mono: 'Space Mono', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.display {
  font-size: clamp(40px, 8vw, 104px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-block;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: var(--radius);
  border: 2px solid var(--primary);
  background: var(--primary);
  color: #fff;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.btn:hover { transform: translateY(-2px); background: var(--accent); border-color: var(--accent); }

.btn--ghost {
  background: transparent;
  color: var(--primary);
}
.btn--ghost:hover { background: var(--primary); color: #fff; }

.btn--accent {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.btn--accent:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.btn:disabled, .btn[disabled] {
  background: #9aa39e;
  border-color: #9aa39e;
  color: #fff;
  cursor: not-allowed;
  opacity: 1;
}
.selected-option-value { color: var(--accent); font-weight: 800; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding-top: env(safe-area-inset-top, 0px);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.logo {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo__bolt { color: var(--accent); font-size: 24px; }
.nav { display: flex; gap: 28px; align-items: center; }
.nav a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: color .15s;
}
.nav a:hover { color: var(--accent); }
.header-actions { display: flex; gap: 18px; align-items: center; }
.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  display: flex;
  align-items: center;
  position: relative;
}
.icon-btn svg { width: 22px; height: 22px; }
.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-toggle { display: none; }

/* ===== Hero ===== */
.hero {
  position: relative;
  background: var(--green-deep);
  color: #fff;
  overflow: hidden;
  padding: clamp(60px, 12vh, 140px) 0 clamp(60px, 10vh, 120px);
}
.hero__pitch-lines {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 2; }
.hero__tag {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(255, 182, 39, 0.4);
  padding: 7px 16px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 28px;
}
.hero__title {
  font-size: clamp(48px, 11vw, 140px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.92;
  margin-bottom: 28px;
}
.hero__title em {
  font-style: normal;
  color: var(--accent);
  position: relative;
}
.hero__sub {
  font-size: clamp(16px, 2vw, 21px);
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 40px;
}
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero .btn { border-color: #fff; background: #fff; color: var(--green-deep); }
.hero .btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.hero .btn--ghost { background: transparent; color: #fff; }
.hero .btn--ghost:hover { background: #fff; color: var(--green-deep); }

.hero__stats {
  display: flex;
  gap: clamp(24px, 6vw, 72px);
  margin-top: 64px;
  flex-wrap: wrap;
}
.hero__stat-num {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.hero__stat-label {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 8px;
}

/* ===== Marquee ===== */
.marquee {
  background: var(--accent);
  color: #fff;
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 3px solid var(--green-deep);
  border-bottom: 3px solid var(--green-deep);
}
.marquee__track {
  display: inline-block;
  animation: scroll 30s linear infinite;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.marquee__track span { margin: 0 8px; }
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== Section heading ===== */
.section { padding: clamp(60px, 10vh, 120px) 0; }
.section--green { background: var(--green-deep); color: #fff; }
.section--alt { background: #F2EFE9; }

.sec-head {
  margin-bottom: 56px;
  max-width: 680px;
}
.sec-head h2 {
  font-size: clamp(32px, 5.5vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  margin: 16px 0 0;
}
.sec-head p {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(10, 39, 26, 0.65);
  margin-top: 18px;
}
.section--green .sec-head p { color: rgba(255, 255, 255, 0.7); }

/* ===== Surface grid ===== */
.surface-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.surface {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--green-deep);
  color: #fff;
  transition: transform .25s ease;
}
.surface:hover { transform: translateY(-6px); }
.surface img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: transform .4s ease, opacity .25s;
}
.surface:hover img { transform: scale(1.06); opacity: 0.65; }
.surface__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 39, 26, 0.92) 0%, rgba(10, 39, 26, 0.15) 60%, rgba(10, 39, 26, 0.4) 100%);
}
.surface__ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green-deep), #14463C);
}
.surface__ph span {
  font-family: var(--font-head);
  font-size: 72px;
  font-weight: 900;
  opacity: 0.18;
}
.surface__body {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 24px;
  z-index: 2;
  width: 100%;
}
.surface__code {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
}
.surface__name {
  font-family: var(--font-head);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 900;
  text-transform: uppercase;
  margin: 6px 0 4px;
}
.surface__desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}
.surface__arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .2s, transform .2s;
}
.surface:hover .surface__arrow { opacity: 1; transform: translateY(0); }
.surface__arrow svg { width: 18px; height: 18px; color: #fff; }

/* ===== Stud guide ===== */
.stud-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.stud-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.stud-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(10, 39, 26, 0.1); }
.stud-card__img {
  aspect-ratio: 16 / 11;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stud-card__img img { width: 100%; height: 100%; object-fit: cover; }
.stud-card__body { padding: 28px; }
.stud-card__tag {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.stud-card__title {
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 10px 0 12px;
}
.stud-card__text {
  font-size: 15px;
  color: rgba(10, 39, 26, 0.7);
}

/* ===== Product grid ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  transition: transform .2s, box-shadow .2s;
}
.product-card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(10, 39, 26, 0.12); }
.product-card__img {
  aspect-ratio: 1 / 1;
  background: #F2EFE9;
  position: relative;
  overflow: hidden;
}
.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.product-card:hover .product-card__img img { transform: scale(1.05); }
.product-card__ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(10, 39, 26, 0.2);
}
.product-card__ph svg { width: 48px; height: 48px; }
.product-card__body { padding: 18px; }
.product-card__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 6px;
}
.product-card__price {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
}

/* ===== FAQ ===== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(17px, 2vw, 20px);
  color: var(--text);
}
.faq-q__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: transform .25s, background .2s, color .2s;
}
.faq-item.open .faq-q__icon {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-a__inner {
  padding: 0 0 26px;
  font-size: 16px;
  color: rgba(10, 39, 26, 0.7);
  max-width: 90%;
}

/* ===== Trust ===== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.trust-item__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.trust-item__icon svg { width: 28px; height: 28px; color: #fff; }
.trust-item h3 {
  font-size: 21px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #fff;
}
.trust-item p { color: rgba(255, 255, 255, 0.7); font-size: 15px; }
.trust-banner {
  margin-top: 56px;
  padding: 32px 36px;
  background: rgba(255, 255, 255, 0.06);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.92);
}
.trust-banner strong { color: var(--gold); }

/* ===== CTA band ===== */
.cta-band {
  background: var(--accent);
  color: #fff;
  text-align: center;
  padding: clamp(60px, 10vh, 110px) 0;
}
.cta-band h2 {
  font-size: clamp(34px, 6vw, 72px);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.cta-band p { font-size: 19px; margin-bottom: 32px; opacity: 0.9; }
.cta-band .btn { background: var(--green-deep); border-color: var(--green-deep); color: #fff; }
.cta-band .btn:hover { background: #fff; color: var(--green-deep); border-color: #fff; }

/* ===== Newsletter ===== */
.newsletter { text-align: center; }
.newsletter__form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 32px auto 0;
}
.newsletter__form input {
  flex: 1;
  padding: 16px 20px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 16px;
  background: #fff;
}
.newsletter__form input:focus { outline: none; border-color: var(--accent); }

/* ===== Footer ===== */
.site-footer {
  background: var(--green-deep);
  color: #fff;
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
.footer-brand .logo { color: #fff; font-size: 26px; margin-bottom: 16px; }
.footer-brand p { color: rgba(255, 255, 255, 0.6); font-size: 15px; max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: rgba(255, 255, 255, 0.75); font-size: 15px; transition: color .15s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-mono);
}

/* ===== Page / Product / Collection basics ===== */
.page-wrap { padding: clamp(48px, 8vh, 96px) 0; background: var(--bg); color: var(--text); }
.page-wrap h1 { font-size: clamp(32px, 6vw, 64px); text-transform: uppercase; margin-bottom: 24px; color: var(--green-deep); }
.rte { font-size: 17px; color: rgba(10, 39, 26, 0.88); }
.rte p { margin-bottom: 18px; }
.rte h2 { font-size: 28px; margin: 32px 0 14px; color: var(--green-deep); }
.rte strong, .rte b { color: var(--green-deep); }
.rte h1, .rte h3, .rte h4 { color: var(--green-deep); }
.rte li { margin-bottom: 8px; }

.collection-head { margin-bottom: 48px; }
.collection-head h1 { font-size: clamp(36px, 7vw, 80px); text-transform: uppercase; }
.collection-head p { color: rgba(10, 39, 26, 0.6); margin-top: 12px; font-size: 18px; }

/* Product page */
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.product-gallery {
  aspect-ratio: 1/1;
  background: #F2EFE9;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-gallery img { width: 100%; height: 100%; object-fit: cover; }
.product-info h1 {
  font-size: clamp(28px, 4vw, 48px);
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--green-deep);
}
.product-price {
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 28px;
}
.product-options { margin-bottom: 28px; }
.product-options label {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--green-deep);
}
.size-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(56px, 1fr));
  gap: 8px;
}
.size-opt {
  padding: 12px;
  text-align: center;
  border: 2px solid #0A271A;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  background: #ffffff;
  color: #0A271A;
  transition: background .15s, color .15s, border-color .15s;
  line-height: 1.2;
}
.size-opt:hover { background: #FFB627; border-color: #0A271A; color: #0A271A; }
.size-opt.selected {
  background: #FF5A1F !important;
  color: #ffffff !important;
  border-color: #0A271A !important;
  font-weight: 800;
}
.product-info .btn { width: 100%; justify-content: center; }

/* ===== Reveal animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .surface-grid { grid-template-columns: repeat(2, 1fr); }
  .stud-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .product-layout { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 640px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .surface-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; }
  .newsletter__form { flex-direction: column; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; justify-content: center; }
}

/* ===== Header dropdown navigation ===== */
.nav-dd { position: relative; }
.nav-dd__trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.nav-dd__caret {
  width: 14px;
  height: 14px;
  transition: transform .2s ease;
}
.nav-dd:hover .nav-dd__caret { transform: rotate(180deg); }
.nav-dd__menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(10, 39, 26, 0.28);
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 200;
}
.nav-dd::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 28px;
}
.nav-dd:hover .nav-dd__menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dd__col { display: flex; flex-direction: column; gap: 2px; }
.nav-dd__head {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.nav-dd__menu a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  text-transform: none;
  letter-spacing: 0;
  padding: 7px 0;
  color: #0A271A;
  transition: color .15s, padding-left .15s;
}
.nav-dd__menu a:hover { color: var(--accent); padding-left: 4px; }
.nav-dd__col--feature { border-left: 1px solid var(--line); padding-left: 28px; }
.nav-dd__all { font-size: 17px !important; color: var(--accent) !important; }
.nav-dd__note {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(10, 39, 26, 0.55);
  margin-top: 8px;
  line-height: 1.5;
}

/* ===== Mobile nav ===== */
.mobile-nav { display: none; }
.mobile-nav.open {
  display: flex;
  flex-direction: column;
  padding: 16px var(--pad) 28px;
  border-top: 1px solid var(--line);
  background: #ffffff;
}
.mobile-nav a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  color: #0A271A;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav__head {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 18px;
  margin-bottom: 4px;
}
.mobile-nav__head:first-child { margin-top: 0; }

@media (max-width: 900px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }
}

/* ===== Account / auth pages ===== */
.auth-wrap {
  max-width: 460px;
  margin: 0 auto;
  padding: clamp(48px, 8vh, 90px) 0;
}
.auth-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
}
.auth-card h1 {
  font-size: 32px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.auth-card__sub {
  color: rgba(10, 39, 26, 0.6);
  margin-bottom: 28px;
  font-size: 15px;
}
.auth-field { margin-bottom: 18px; }
.auth-field label {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}
.auth-field input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 16px;
  background: var(--bg);
  transition: border-color .15s;
}
.auth-field input:focus { outline: none; border-color: var(--accent); }
.auth-card .btn { width: 100%; justify-content: center; margin-top: 6px; }
.auth-alt {
  text-align: center;
  margin-top: 24px;
  font-size: 15px;
  color: rgba(10, 39, 26, 0.65);
}
.auth-alt a { color: var(--accent); font-weight: 700; }
.auth-error {
  background: rgba(255, 90, 31, 0.1);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 12px 16px;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--accent);
}
.auth-error ul { margin: 0; padding-left: 18px; }

/* ===== Hero background image ===== */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--green-deep);
  pointer-events: none;
}
.hero--has-image .hero__pitch-lines { z-index: 1; }
.hero--has-image .hero__inner { position: relative; z-index: 2; }

/* ===== Product page action buttons (Add to Cart + Buy Now) ===== */
.product-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.pdp-btn {
  display: block;
  width: 100%;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 18px 24px;
  border-radius: 4px;
  cursor: pointer;
  transition: transform .12s ease, background .15s ease, color .15s ease;
}
.pdp-btn--outline {
  background: #ffffff;
  border: 2px solid #0A271A;
  color: #0A271A;
}
.pdp-btn--outline:hover {
  background: #0A271A;
  color: #ffffff;
  transform: translateY(-2px);
}
.pdp-btn--solid {
  background: #0A271A;
  border: 2px solid #0A271A;
  color: #ffffff;
}
.pdp-btn--solid:hover {
  background: #FF5A1F;
  border-color: #FF5A1F;
  color: #ffffff;
  transform: translateY(-2px);
}
.pdp-btn:disabled,
.pdp-btn[disabled] {
  background: #e4e4e0;
  border-color: #c4c4be;
  color: #8a8a84;
  cursor: not-allowed;
  transform: none;
}
