/* kentrellsht — Global Stylesheet
   Design: Premium Dark Drop
   Fonts: Barlow Condensed (headlines), Inter (body)
   Colors: Base Black #0B0B0C | Off-White #F6F6F4 | Mask Green #3D974D | Glow #71D27C
*/

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;700;900&family=Inter:wght@400;500;600&display=swap');

/* ─── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0B0B0C;
  --off-white: #F6F6F4;
  --green: #3D974D;
  --glow: #71D27C;
  --muted: rgba(246,246,244,0.4);
  --border: rgba(246,246,244,0.08);
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--black);
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--glow); }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }
input, textarea, select { font-family: var(--font-body); }
ul { list-style: none; }

/* ─── Typography Utilities ──────────────────────────────────────────────────── */
.display { font-family: var(--font-display); }
.text-green { color: var(--green); }
.text-glow { color: var(--glow); }
.text-muted { color: var(--muted); }
.text-white { color: var(--off-white); }
.uppercase { text-transform: uppercase; }
.tracking-wide { letter-spacing: 0.1em; }
.tracking-widest { letter-spacing: 0.2em; }

/* ─── Layout ────────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* ─── Buttons ───────────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--green);
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.75rem 2rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary:hover {
  background: var(--glow);
  box-shadow: 0 0 20px rgba(113,210,124,0.35);
  color: var(--black);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  color: var(--muted);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
}
.btn-ghost:hover { color: var(--glow); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--off-white);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.6rem 1.5rem;
  border: 1px solid rgba(246,246,244,0.2);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--glow); color: var(--glow); }

/* ─── Badges ────────────────────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.2rem 0.5rem;
}
.badge-new { background: var(--green); color: var(--black); }
.badge-limited { background: rgba(61,151,77,0.15); color: var(--green); border: 1px solid rgba(61,151,77,0.4); }
.badge-new-drop { background: var(--green); color: var(--black); }
.badge-best-seller { background: rgba(246,246,244,0.1); color: var(--off-white); border: 1px solid rgba(246,246,244,0.2); }
.badge-sold-out { background: rgba(246,246,244,0.06); color: rgba(246,246,244,0.3); }

/* ─── Green Rule ────────────────────────────────────────────────────────────── */
.green-rule {
  height: 1px;
  background: linear-gradient(to right, var(--green), transparent);
  width: 100%;
}

/* ─── Header ────────────────────────────────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(11,11,12,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 56px;
  display: flex;
  align-items: center;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.header-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--off-white);
}
.header-logo:hover { color: var(--off-white); }

.header-nav {
  display: none;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) { .header-nav { display: flex; } }
.header-nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(246,246,244,0.7);
  transition: color 0.2s;
}
.header-nav a:hover, .header-nav a.active { color: var(--glow); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header-icon-btn {
  background: none;
  border: none;
  color: rgba(246,246,244,0.7);
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  transition: color 0.2s;
  position: relative;
}
.header-icon-btn:hover { color: var(--glow); }
.cart-count {
  position: absolute;
  top: -6px; right: -6px;
  background: var(--green);
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.55rem;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.cart-count.visible { display: flex; }

/* Hamburger */
.hamburger-btn {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
@media (min-width: 768px) { .hamburger-btn { display: none; } }
.hamburger-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--off-white);
  transition: all 0.3s;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 85vw);
  height: 100vh;
  background: #111212;
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  border-left: 1px solid var(--border);
}
.mobile-drawer.open { transform: translateX(0); }
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 199;
  display: none;
}
.drawer-overlay.open { display: block; }
.mobile-drawer-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-nav-links a {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--off-white);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-nav-links a:hover { color: var(--glow); }

/* ─── Cart Drawer ───────────────────────────────────────────────────────────── */
.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(400px, 95vw);
  height: 100vh;
  background: #111212;
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--border);
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.cart-drawer-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.cart-drawer-close {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 1.3rem;
}
.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem 1.5rem;
}
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 1rem;
  color: var(--muted);
}
.cart-empty p {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.cart-item-img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  flex-shrink: 0;
  background: rgba(246,246,244,0.05);
}
.cart-item-info { flex: 1; }
.cart-item-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}
.cart-item-meta {
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.cart-item-price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--glow);
  font-size: 0.9rem;
}
.cart-qty-controls {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(246,246,244,0.15);
  width: fit-content;
  margin-top: 0.5rem;
}
.cart-qty-btn {
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 1rem;
  transition: color 0.2s;
}
.cart-qty-btn:hover { color: var(--glow); }
.cart-qty-num {
  width: 32px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--off-white);
  border-left: 1px solid rgba(246,246,244,0.1);
  border-right: 1px solid rgba(246,246,244,0.1);
  line-height: 28px;
}
.cart-remove {
  font-size: 0.7rem;
  color: rgba(246,246,244,0.25);
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  margin-top: 0.4rem;
  display: block;
  transition: color 0.2s;
}
.cart-remove:hover { color: #e05252; }
.cart-drawer-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
}
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.cart-subtotal-label {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.cart-subtotal-amount {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--off-white);
}
.cart-shipping-note {
  font-size: 0.7rem;
  color: rgba(246,246,244,0.25);
  text-align: center;
  margin-bottom: 1rem;
}
.cart-checkout-btn {
  width: 100%;
  padding: 1rem;
  margin-bottom: 0.5rem;
}
.cart-continue-btn {
  width: 100%;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.2s;
}
.cart-continue-btn:hover { color: var(--glow); }

/* ─── Hero Section ──────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 56px;
}
@media (max-width: 767px) { .hero { min-height: 60vh; } }

.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero-video-wrap iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: 177.78vh;
  height: 56.25vw;
  border: none;
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11,11,12,0.45) 0%, rgba(11,11,12,0.35) 40%, rgba(11,11,12,0.65) 100%);
  z-index: 1;
}
.hero-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 200px;
  background: radial-gradient(ellipse at center, rgba(61,151,77,0.2) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1rem;
  animation: fadeUp 0.8s ease forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--green);
  margin-bottom: 1rem;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--off-white);
  font-size: clamp(3.5rem, 12vw, 10rem);
  margin-bottom: 1rem;
}
.hero-title .accent { color: var(--green); }
.hero-subhead {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.75rem, 2vw, 1rem);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(246,246,244,0.6);
  max-width: 480px;
  margin: 0 auto 2.5rem;
}
.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 480px) {
  .hero-ctas { flex-direction: row; justify-content: center; }
}
.hero-scroll-line {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(61,151,77,0.6), transparent);
  z-index: 2;
}

/* ─── Section Padding ───────────────────────────────────────────────────────── */
.section { padding: 4rem 0; }
.section-sm { padding: 2rem 0; }
.section-lg { padding: 6rem 0; }
@media (min-width: 768px) {
  .section { padding: 6rem 0; }
  .section-lg { padding: 8rem 0; }
}

/* ─── Section Headers ───────────────────────────────────────────────────────── */
.section-eyebrow {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--green);
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  color: var(--off-white);
  letter-spacing: -0.01em;
}

/* ─── Product Grid ──────────────────────────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}
@media (min-width: 1024px) {
  .product-grid { grid-template-columns: repeat(4, 1fr); }
}
.product-grid-3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .product-grid-3 { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}

/* ─── Product Card ──────────────────────────────────────────────────────────── */
.product-card {
  display: block;
  cursor: pointer;
  position: relative;
  border: 1px solid var(--border);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.product-card:hover {
  border-color: rgba(113,210,124,0.35);
  box-shadow: 0 0 20px rgba(113,210,124,0.08);
}
.product-card-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: rgba(246,246,244,0.03);
}
.product-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card-img-wrap img { transform: scale(1.04); }
.product-card-badges {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}
.product-card-info {
  padding: 0.75rem;
}
.product-card-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--off-white);
  margin-bottom: 0.25rem;
  line-height: 1.2;
}
.product-card-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--glow);
  margin-bottom: 0.5rem;
}
.product-card-btn {
  width: 100%;
  padding: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
}

/* ─── Collection Tiles ──────────────────────────────────────────────────────── */
.collection-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .collection-grid { grid-template-columns: repeat(3, 1fr); }
}
.collection-tile {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.collection-tile:hover {
  border-color: rgba(113,210,124,0.4);
  box-shadow: 0 0 24px rgba(113,210,124,0.12);
}
.collection-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
  transition: transform 0.7s ease;
}
.collection-tile:hover img { transform: scale(1.05); }
.collection-tile-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 2rem;
}
.collection-tile-hover-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61,151,77,0.15), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.collection-tile:hover .collection-tile-hover-glow { opacity: 1; }
.collection-tile-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3rem);
  text-transform: uppercase;
  color: var(--off-white);
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}
.collection-tile-count {
  font-family: var(--font-display);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--glow);
  margin-top: 0.25rem;
  position: relative;
  z-index: 1;
}

/* ─── New Drop Banner ───────────────────────────────────────────────────────── */
.new-drop-banner {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.new-drop-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35);
}
.new-drop-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,11,12,0.8) 0%, rgba(11,11,12,0.3) 100%);
}
.new-drop-banner-content {
  position: relative;
  z-index: 1;
}

/* ─── Email Signup Strip ────────────────────────────────────────────────────── */
.email-strip {
  background: #0D0F0D;
  border-top: 1px solid rgba(61,151,77,0.1);
  border-bottom: 1px solid rgba(61,151,77,0.1);
  padding: 4rem 0;
  text-align: center;
}
.email-form {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 400px;
  margin: 0 auto;
}
@media (min-width: 480px) { .email-form { flex-direction: row; } }
.email-input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: rgba(246,246,244,0.05);
  border: 1px solid rgba(246,246,244,0.12);
  color: var(--off-white);
  font-size: 0.85rem;
  outline: none;
}
@media (min-width: 480px) { .email-input { border-right: none; } }
.email-input::placeholder { color: rgba(246,246,244,0.3); }
.email-submit { padding: 0.75rem 1.5rem; }

/* ─── Footer ────────────────────────────────────────────────────────────────── */
footer {
  background: #0B0B0C;
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
}
.footer-brand-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}
.footer-tagline {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}
.social-links {
  display: flex;
  gap: 1rem;
}
.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(246,246,244,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.7rem;
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: border-color 0.2s, color 0.2s;
}
.social-link:hover { border-color: var(--glow); color: var(--glow); }
.footer-col-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(246,246,244,0.4);
  margin-bottom: 1rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a {
  font-size: 0.82rem;
  color: rgba(246,246,244,0.55);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--glow); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}
.footer-copyright {
  font-size: 0.72rem;
  color: rgba(246,246,244,0.2);
}
.footer-email-wrap {
  margin-bottom: 1.5rem;
}
.footer-email-form {
  display: flex;
  max-width: 320px;
}

/* ─── Page Header ───────────────────────────────────────────────────────────── */
.page-header {
  padding-top: calc(56px + 2.5rem);
  padding-bottom: 2.5rem;
}
.page-header .section-eyebrow { margin-bottom: 0.5rem; }
.page-header .section-title { margin-bottom: 0.5rem; }
.page-header .page-desc {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 480px;
}

/* ─── Filters / Sort Bar ────────────────────────────────────────────────────── */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.filter-select {
  appearance: none;
  padding: 0.6rem 2.5rem 0.6rem 1rem;
  background: rgba(246,246,244,0.05) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='rgba(246,246,244,0.4)'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
  border: 1px solid rgba(246,246,244,0.12);
  color: var(--off-white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  outline: none;
}
.filter-select option { background: #111; }

/* ─── Product Detail Page ───────────────────────────────────────────────────── */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-top: calc(56px + 2rem);
}
@media (min-width: 768px) {
  .product-detail-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
.product-main-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border: 1px solid var(--border);
}
.product-thumbnails {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.product-thumb {
  width: 64px; height: 64px;
  object-fit: cover;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s;
}
.product-thumb.active, .product-thumb:hover { border-color: var(--green); }
.product-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}
.product-price {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--glow);
  margin-bottom: 1rem;
}
.product-desc {
  font-size: 0.85rem;
  color: rgba(246,246,244,0.6);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.variant-label {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(246,246,244,0.5);
  margin-bottom: 0.5rem;
}
.variant-label span { color: var(--off-white); }
.variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.variant-btn {
  padding: 0.4rem 1rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: transparent;
  border: 1px solid rgba(246,246,244,0.2);
  color: rgba(246,246,244,0.7);
  cursor: pointer;
  transition: all 0.2s;
}
.variant-btn:hover, .variant-btn.selected {
  background: var(--green);
  border-color: var(--green);
  color: var(--black);
}
.qty-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.qty-controls {
  display: flex;
  align-items: center;
  border: 1px solid rgba(246,246,244,0.15);
}
.qty-btn {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 1.1rem;
  transition: color 0.2s;
}
.qty-btn:hover { color: var(--glow); }
.qty-num {
  width: 40px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--off-white);
  border-left: 1px solid rgba(246,246,244,0.1);
  border-right: 1px solid rgba(246,246,244,0.1);
  line-height: 36px;
}
.add-to-cart-btn {
  width: 100%;
  padding: 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
  transition: all 0.2s;
}
.add-to-cart-btn.added {
  background: var(--glow);
  box-shadow: 0 0 24px rgba(113,210,124,0.4);
}
.add-to-cart-btn:disabled {
  background: rgba(246,246,244,0.08);
  color: rgba(246,246,244,0.2);
  cursor: not-allowed;
  box-shadow: none;
}
.microcopy {
  font-size: 0.7rem;
  color: rgba(246,246,244,0.3);
  text-align: center;
  margin-bottom: 1.25rem;
}
.reassurance-row {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}
.reassurance-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(246,246,244,0.4);
}
.reassurance-item svg { color: var(--green); }

/* ─── Accordion ─────────────────────────────────────────────────────────────── */
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.accordion-trigger-label {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--off-white);
}
.accordion-icon {
  font-size: 1rem;
  color: rgba(246,246,244,0.4);
  transition: color 0.2s;
}
.accordion-item.open .accordion-icon { color: var(--green); }
.accordion-body {
  display: none;
  padding-bottom: 1rem;
  font-size: 0.82rem;
  color: rgba(246,246,244,0.6);
  line-height: 1.7;
}
.accordion-item.open .accordion-body { display: block; }

/* ─── Breadcrumb ────────────────────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(246,246,244,0.3);
  margin-bottom: 2rem;
}
.breadcrumb a:hover { color: var(--glow); }
.breadcrumb span { color: rgba(246,246,244,0.6); }

/* ─── Policy Pages ──────────────────────────────────────────────────────────── */
.policy-content { max-width: 720px; }
.policy-section { margin-bottom: 2.5rem; }
.policy-section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--off-white);
  margin-bottom: 0.75rem;
}
.policy-section p, .policy-section li {
  font-size: 0.85rem;
  color: rgba(246,246,244,0.65);
  line-height: 1.8;
}
.policy-section ul { padding-left: 1rem; }
.policy-section li { margin-bottom: 0.4rem; }
.policy-alert {
  padding: 1rem 1.25rem;
  background: rgba(61,151,77,0.1);
  border: 1px solid rgba(61,151,77,0.3);
  margin-bottom: 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--glow);
}

/* ─── Size Guide Table ──────────────────────────────────────────────────────── */
.size-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  margin-bottom: 2rem;
}
.size-table th {
  text-align: left;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  padding: 0.5rem 1rem 0.5rem 0;
  border-bottom: 1px solid rgba(61,151,77,0.3);
}
.size-table td {
  padding: 0.6rem 1rem 0.6rem 0;
  border-bottom: 1px solid var(--border);
  color: rgba(246,246,244,0.65);
}
.size-table td:first-child {
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--off-white);
}

/* ─── Contact Form ──────────────────────────────────────────────────────────── */
.form-group { margin-bottom: 1rem; }
.form-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(246,246,244,0.5);
  margin-bottom: 0.4rem;
}
.form-input, .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(246,246,244,0.05);
  border: 1px solid rgba(246,246,244,0.12);
  color: var(--off-white);
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus, .form-textarea:focus { border-color: rgba(61,151,77,0.5); }
.form-textarea { resize: vertical; min-height: 120px; }

/* ─── Search Page ───────────────────────────────────────────────────────────── */
.search-bar-wrap {
  display: flex;
  max-width: 480px;
  margin-bottom: 2rem;
}
.search-input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: rgba(246,246,244,0.05);
  border: 1px solid rgba(246,246,244,0.12);
  border-right: none;
  color: var(--off-white);
  font-size: 0.9rem;
  outline: none;
}
.search-icon-btn {
  padding: 0 1rem;
  background: rgba(246,246,244,0.05);
  border: 1px solid rgba(246,246,244,0.12);
  color: rgba(246,246,244,0.4);
  display: flex;
  align-items: center;
}

/* ─── Account Page ──────────────────────────────────────────────────────────── */
.tab-bar {
  display: flex;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}
.tab-btn {
  flex: 1;
  padding: 0.75rem;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(246,246,244,0.4);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.tab-btn.active { color: var(--glow); border-bottom-color: var(--green); }

/* ─── Utility ───────────────────────────────────────────────────────────────── */
.hidden { display: none !important; }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.flex { display: flex; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.w-full { width: 100%; }
.max-w-2xl { max-width: 640px; }
.max-w-3xl { max-width: 768px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.link-green { color: var(--green); text-decoration: underline; }
.link-green:hover { color: var(--glow); }
.bullet-list { display: flex; flex-direction: column; gap: 0.4rem; }
.bullet-list li { display: flex; gap: 0.5rem; color: rgba(246,246,244,0.6); font-size: 0.82rem; }
.bullet-list li::before { content: '—'; color: var(--green); flex-shrink: 0; }
