/* ==========================================================
   DEATH METAL FISHING — Beach Goth / Skate Shop / Show Flyer
   Cybersigilism + Capri Sun + Hardcore DIY
   "Walking into a bright skate shop with show flyers on the walls
    and cybersigilism stickers on the counter"
   ========================================================== */

/* ---- Custom Fonts ---- */
@font-face {
  font-family: 'Darkhorn';
  src: url('fonts/Darkhorn.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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

:root {
  /* ═══ PLAYFUL COLOR PALETTE ═══
     LA sun-bleached pastels + Southern warmth + gritty dark accents
     Think: Venice Beach boardwalk → New Orleans fish fry */
  --peach: #FFB5A7;          /* warm LA sunset */
  --peach-bright: #FF9B8A;
  --seafoam: #6FEDD6;        /* Gulf water on a good day */
  --seafoam-deep: #3DD4B8;
  --sky: #89CFF0;            /* SoCal blue */
  --lilac: #C9B1FF;          /* beach goth purple */
  --hot-pink: #FF3C78;       /* show flyer energy */
  --acid-yellow: #E8FF47;    /* hardcore zine highlighter */
  --terracotta: #E8734A;     /* Southern clay */
  --cream: #FFF8F0;          /* sun-bleached white */
  --sand: #F5E6D3;           /* warm neutral */
  --ink: #1A1A2E;            /* near-black with warmth */
  --charcoal: #2D2D44;       /* dark accent */
  --white: #ffffff;
  --off-white: #FEFCF9;
  --gray: #8B8BA3;
  --gray-light: #C4C4D4;
  --container: 1200px;
  --nav-h: 64px;
  --promo-h: 32px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* ═══ FONT STACK ═══ */
  --font-display: 'Unbounded', sans-serif;
  --font-body: 'Space Grotesk', -apple-system, sans-serif;
  --font-metal: 'Metal Mania', cursive;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}


/* ═══════════════════════════════════════════════════════════
   CYBERSIGILISM SVG PATTERNS — Thorn/tendril decorative art
   Used as section dividers, background textures, accents
   ═══════════════════════════════════════════════════════════ */

/* Symmetrical thorn divider — horizontal rule replacement */
.thorn-divider {
  display: block;
  width: 200px;
  height: 32px;
  margin: 0 auto;
  opacity: 0.7;
}

/* Thorn border pattern — repeating tendril/spike strip */
.thorn-border-top,
.thorn-border-bottom {
  display: block;
  width: 100%;
  height: 40px;
  position: relative;
  z-index: 2;
}

/* Inline SVG thorn pattern for backgrounds — subtle repeating tendrils */
.bg-thorns {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%231A1A2E' stroke-width='0.5' opacity='0.04'%3E%3Cpath d='M60 10 C55 30, 40 40, 60 60 C80 40, 65 30, 60 10Z'/%3E%3Cpath d='M60 110 C55 90, 40 80, 60 60 C80 80, 65 90, 60 110Z'/%3E%3Cpath d='M10 60 C30 55, 40 40, 60 60 C40 80, 30 65, 10 60Z'/%3E%3Cpath d='M110 60 C90 55, 80 40, 60 60 C80 80, 90 65, 110 60Z'/%3E%3C/g%3E%3C/svg%3E");
}

/* Dark-background thorn pattern */
.bg-thorns-light {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='0.5' opacity='0.04'%3E%3Cpath d='M60 10 C55 30, 40 40, 60 60 C80 40, 65 30, 60 10Z'/%3E%3Cpath d='M60 110 C55 90, 40 80, 60 60 C80 80, 65 90, 60 110Z'/%3E%3Cpath d='M10 60 C30 55, 40 40, 60 60 C40 80, 30 65, 10 60Z'/%3E%3Cpath d='M110 60 C90 55, 80 40, 60 60 C80 80, 90 65, 110 60Z'/%3E%3C/g%3E%3C/svg%3E");
}


/* ═══════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes promoScroll {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
@keyframes blobDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.08); }
  66% { transform: translate(-30px, 20px) scale(0.95); }
}
@keyframes thornPulse {
  0%, 100% { opacity: 0.06; }
  50% { opacity: 0.12; }
}
@keyframes flickerGlow {
  0%, 100% { filter: brightness(1) drop-shadow(0 0 0px transparent); }
  50% { filter: brightness(1.1) drop-shadow(0 0 6px rgba(111, 237, 214, 0.2)); }
}

/* Accent Colors */
.accent { color: var(--hot-pink); }
.accent-seafoam { color: var(--seafoam-deep); }


/* ==========================================================
   PROMO BAR — Hardcore show flyer energy
   ========================================================== */
.promo-bar {
  background: var(--ink);
  color: var(--acid-yellow);
  text-align: center;
  padding: 0.7rem 1rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  overflow: hidden;
  border-bottom: 2px solid var(--hot-pink);
}
.promo-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 60, 120, 0.08) 25%,
    transparent 50%,
    rgba(111, 237, 214, 0.08) 75%,
    transparent 100%);
  background-size: 200% 100%;
  animation: promoScroll 6s linear infinite;
}


/* ==========================================================
   NAV
   ========================================================== */
.nav {
  position: fixed;
  top: var(--promo-h, 32px);
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(26, 26, 46, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background var(--transition), box-shadow var(--transition), top var(--transition);
}
.nav.scrolled {
  background: rgba(26, 26, 46, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3), 0 1px 0 rgba(255, 60, 120, 0.15);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.nav-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 0 4px rgba(255,255,255,0.2));
}
.nav.scrolled .nav-logo {
  filter: none;
}
.nav-wordmark {
  font-family: var(--font-metal);
  font-weight: 400;
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  color: var(--white);
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6), 0 0 12px rgba(0,0,0,0.3);
}
.nav.scrolled .nav-wordmark {
  text-shadow: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 1px 4px rgba(0,0,0,0.6), 0 0 12px rgba(0,0,0,0.3);
  transition: color var(--transition), text-shadow var(--transition);
  position: relative;
}
.nav.scrolled .nav-links a {
  color: var(--gray-light);
  text-shadow: none;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--hot-pink);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--peach); }
.nav-links a:hover::after { width: 100%; }

/* Cart Button */
.cart-btn {
  background: none;
  border: none;
  color: var(--white);
  position: relative;
  padding: 0.25rem;
  transition: color var(--transition), filter var(--transition);
  display: flex;
  align-items: center;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.6));
}
.nav.scrolled .cart-btn {
  color: var(--gray-light);
  filter: none;
}
.cart-btn:hover { color: var(--seafoam); }
.cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--hot-pink);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  transform-origin: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.nav.scrolled .hamburger span {
  box-shadow: none;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ==========================================================
   HERO — SUN-LIT + PLAYFUL with dark metal typography
   Bright, warm, surprising background. Black metal font.
   The contrast IS the brand.
   ========================================================== */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding-top: calc(var(--nav-h) + var(--promo-h));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* BRIGHT warm gradient — sun-bleached Venice Beach / Gulf sunset */
  background: linear-gradient(165deg,
    #FFD4C8 0%,      /* peach sky */
    #FFB5A7 15%,     /* warm pink */
    #FFC9A7 30%,     /* golden */
    #89CFF0 50%,     /* sky blue */
    #6FEDD6 70%,     /* seafoam */
    #C9B1FF 85%,     /* sunset lilac */
    #FFB5A7 100%);   /* back to peach */
}

.hero-bg {
  position: absolute;
  inset: 0;
  /* Subtle overlay for depth without killing the color */
  background:
    radial-gradient(ellipse at 30% 30%, rgba(255, 181, 167, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 70%, rgba(111, 237, 214, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(201, 177, 255, 0.15) 0%, transparent 60%);
}

/* Floating color blobs */
.hero-bg::before,
.hero-bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: blobDrift 25s ease-in-out infinite;
  z-index: 0;
}
.hero-bg::before {
  width: 500px;
  height: 500px;
  background: rgba(255, 60, 120, 0.12);
  top: 5%;
  left: -10%;
  animation-delay: -8s;
}
.hero-bg::after {
  width: 450px;
  height: 450px;
  background: rgba(232, 255, 71, 0.08);
  bottom: 10%;
  right: -8%;
  animation-delay: -16s;
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  mix-blend-mode: multiply;
}

.hero-content {
  position: relative;
  text-align: center;
  z-index: 2;
  padding: 2rem;
}

.hero-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 1.5rem;
  opacity: 0.7;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}
.hero-label::before,
.hero-label::after {
  content: '✦';
  font-size: 0.5rem;
}

/* THE TITLE — Black metal font on bright playful background
   This contrast is the entire brand identity */
.hero-title {
  font-family: var(--font-metal);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-shadow:
    2px 2px 0px rgba(255, 181, 167, 0.5),
    -1px -1px 0px rgba(111, 237, 214, 0.3);
  position: relative;
}
.hero-title-line {
  display: block;
  font-size: clamp(4.5rem, 15vw, 14rem);
}
.hero-title-line.accent {
  color: var(--hot-pink);
  text-shadow:
    2px 2px 0px rgba(255, 255, 255, 0.4),
    0 0 40px rgba(255, 60, 120, 0.2);
}

.hero-sub {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--ink);
  opacity: 0.75;
  margin: 1.5rem auto 0;
  max-width: 520px;
  line-height: 1.7;
}

.hero .btn {
  margin-top: 2.5rem;
}

.hero-tagline {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 1.8rem;
  opacity: 0.6;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--ink);
  animation: float 2s ease-in-out infinite;
  opacity: 0.4;
}


/* ==========================================================
   BUTTONS
   ========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  padding: 1rem 2.6rem;
  transition: all var(--transition);
  cursor: pointer;
  border-radius: 3px;
  position: relative;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
  border: 2px solid var(--ink);
}
.btn-primary:hover {
  background: var(--hot-pink);
  border-color: var(--hot-pink);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 60, 120, 0.3);
}
.btn-sm {
  padding: 0.75rem 1.6rem;
  font-size: 0.75rem;
}
.btn-add {
  width: 100%;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid var(--ink);
  padding: 0.8rem 1rem;
  border-radius: 3px;
  transition: all var(--transition);
}
.btn-add:hover {
  background: var(--hot-pink);
  border-color: var(--hot-pink);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 60, 120, 0.2);
}


/* ==========================================================
   CYBERSIGILISM DIVIDER — Between hero and categories
   Symmetrical thorn/spike SVG strip
   ========================================================== */
.sigil-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  position: relative;
  z-index: 3;
}
.sigil-divider svg {
  display: block;
  width: 100%;
  height: auto;
}


/* ==========================================================
   CATEGORIES — Bright tiles, show-flyer-on-the-wall energy
   ========================================================== */
.categories {
  background: var(--sand);
  padding: 3.5rem 0 4rem;
  position: relative;
}
/* Subtle thorn pattern background */
.categories::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='none' stroke='%231A1A2E' stroke-width='0.4' opacity='0.035'%3E%3Cpath d='M40 5 C37 20, 25 28, 40 40 C55 28, 43 20, 40 5Z'/%3E%3Cpath d='M40 75 C37 60, 25 52, 40 40 C55 52, 43 60, 40 75Z'/%3E%3Cpath d='M5 40 C20 37, 28 25, 40 40 C28 55, 20 43, 5 40Z'/%3E%3Cpath d='M75 40 C60 37, 52 25, 40 40 C52 55, 60 43, 75 40Z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.category-card {
  position: relative;
  background: var(--white);
  padding: 2rem 1.5rem;
  text-align: center;
  overflow: hidden;
  transition: all var(--transition);
  border-radius: 6px;
  border: 2px solid transparent;
}
/* Each card gets a unique hover color — fun and unexpected */
.category-card:nth-child(1):hover { border-color: var(--seafoam); background: rgba(111, 237, 214, 0.08); }
.category-card:nth-child(2):hover { border-color: var(--hot-pink); background: rgba(255, 60, 120, 0.05); }
.category-card:nth-child(3):hover { border-color: var(--lilac); background: rgba(201, 177, 255, 0.08); }
.category-card:nth-child(4):hover { border-color: var(--terracotta); background: rgba(232, 115, 74, 0.06); }
.category-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(26, 26, 46, 0.08);
}
.category-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transition: transform var(--transition);
}
.category-card:nth-child(1) .category-accent { background: var(--seafoam); }
.category-card:nth-child(2) .category-accent { background: var(--hot-pink); }
.category-card:nth-child(3) .category-accent { background: var(--lilac); }
.category-card:nth-child(4) .category-accent { background: var(--terracotta); }
.category-card:hover .category-accent { transform: scaleX(1); }

.category-emoji {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}
.category-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}
.category-tag {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--gray);
  font-weight: 400;
}


/* ==========================================================
   FLYER STRIP — Hardcore show flyer aesthetic divider
   Looks like a strip of show flyers taped to a wall
   ========================================================== */
.flyer-strip {
  background: var(--ink);
  padding: 1.2rem 0;
  overflow: hidden;
  position: relative;
  border-top: 3px solid var(--hot-pink);
  border-bottom: 3px solid var(--acid-yellow);
}
.flyer-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding: 0 1.5rem;
}
.flyer-strip-item {
  font-family: var(--font-metal);
  font-size: 1.1rem;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 0.05em;
}
.flyer-strip-item:nth-child(odd) { color: var(--acid-yellow); }
.flyer-strip-item:nth-child(even) { color: var(--hot-pink); }
.flyer-strip-item .x-hands {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.9rem;
  vertical-align: middle;
}
.flyer-divider {
  color: var(--seafoam);
  font-size: 0.7rem;
  opacity: 0.5;
}


/* ==========================================================
   PRODUCTS — Bright, sun-lit skate shop display
   ========================================================== */
.products {
  background: var(--cream);
  padding: 5rem 0;
  position: relative;
}
/* Subtle cybersigilism thorn watermark in background */
.products::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cg fill='none' stroke='%231A1A2E' stroke-width='0.6' opacity='0.025'%3E%3Cpath d='M100 10 C90 40, 65 55, 100 100 C135 55, 110 40, 100 10Z'/%3E%3Cpath d='M100 190 C90 160, 65 145, 100 100 C135 145, 110 160, 100 190Z'/%3E%3Cpath d='M10 100 C40 90, 55 65, 100 100 C55 135, 40 110, 10 100Z'/%3E%3Cpath d='M190 100 C160 90, 145 65, 100 100 C145 135, 160 110, 190 100Z'/%3E%3Cpath d='M30 30 C50 50, 55 70, 100 100 C70 55, 50 50, 30 30Z'/%3E%3Cpath d='M170 30 C150 50, 145 70, 100 100 C130 55, 150 50, 170 30Z'/%3E%3Cpath d='M30 170 C50 150, 70 145, 100 100 C55 130, 50 150, 30 170Z'/%3E%3Cpath d='M170 170 C150 150, 130 145, 100 100 C145 130, 150 150, 170 170Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  animation: thornPulse 8s ease-in-out infinite;
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
}
.section-title--light {
  color: var(--cream);
}
.section-title--metal {
  font-family: var(--font-metal);
  font-size: 2.2rem;
  letter-spacing: 0.04em;
}
.section-subtitle {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--gray);
  margin-top: 0.3rem;
  font-weight: 400;
}
.section-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hot-pink);
  transition: all var(--transition);
}
.section-link:hover {
  color: var(--terracotta);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.product-card {
  background: var(--white);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  border-radius: 6px;
  border: 2px solid rgba(26, 26, 46, 0.06);
}
.product-card:hover {
  transform: translateY(-6px) rotate(-0.5deg);
  box-shadow: 0 16px 50px rgba(26, 26, 46, 0.1);
  border-color: rgba(26, 26, 46, 0.12);
}

.product-image {
  display: block;
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.product-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transition: all var(--transition);
  position: relative;
}
/* Unique warm/colorful gradients for each card */
.product-card:nth-child(1) .product-placeholder {
  background: linear-gradient(145deg, var(--ink) 0%, #2a3a4a 50%, var(--charcoal) 100%);
}
.product-card:nth-child(2) .product-placeholder {
  background: linear-gradient(145deg, #2D2D44 0%, #3a2a44 50%, var(--ink) 100%);
}
.product-card:nth-child(3) .product-placeholder {
  background: linear-gradient(145deg, var(--charcoal) 0%, #2a3a2a 50%, var(--ink) 100%);
}
.product-card:nth-child(4) .product-placeholder {
  background: linear-gradient(145deg, var(--ink) 0%, #44362a 50%, var(--charcoal) 100%);
}

/* Cybersigilism thorn watermark on each product card */
.product-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='0.4' opacity='0.06'%3E%3Cpath d='M50 8 C46 25, 35 35, 50 50 C65 35, 54 25, 50 8Z'/%3E%3Cpath d='M50 92 C46 75, 35 65, 50 50 C65 65, 54 75, 50 92Z'/%3E%3Cpath d='M8 50 C25 46, 35 35, 50 50 C35 65, 25 54, 8 50Z'/%3E%3Cpath d='M92 50 C75 46, 65 35, 50 50 C65 65, 75 54, 92 50Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 80%;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity var(--transition);
}
.product-card:hover .product-placeholder::before {
  opacity: 1;
}

.product-card:hover .product-placeholder {
  filter: brightness(1.15);
}

.product-placeholder-icon {
  width: 48px;
  height: 48px;
  stroke: rgba(255, 255, 255, 0.15);
  transition: stroke var(--transition);
}
.product-card:hover .product-placeholder-icon {
  stroke: var(--seafoam);
}

.product-placeholder-text {
  font-family: var(--font-metal);
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.18);
  padding: 0 1rem;
  text-align: center;
}

.product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 2px;
  z-index: 2;
}
.product-card:nth-child(1) .product-badge { background: var(--seafoam); color: var(--ink); }
.product-card:nth-child(2) .product-badge { background: var(--lilac); color: var(--ink); }
.product-card:nth-child(3) .product-badge { background: var(--hot-pink); color: var(--white); }
.product-card:nth-child(4) .product-badge { background: var(--peach); color: var(--ink); }

.product-info {
  padding: 1.25rem;
}
.product-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.2rem;
}
.product-price {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--terracotta);
  margin-bottom: 0.4rem;
}
.product-quip {
  font-family: var(--font-body);
  font-size: 0.76rem;
  color: var(--gray);
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.4;
}


/* ==========================================================
   LOOKBOOK — Dark section, cybersigilism overlay texture
   ========================================================== */
.lookbook {
  background: var(--ink);
  padding: 5rem 0;
  position: relative;
}
/* Cybersigilism thorn texture overlay */
.lookbook::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='0.3' opacity='0.025'%3E%3Cpath d='M50 5 C46 22, 30 32, 50 50 C70 32, 54 22, 50 5Z'/%3E%3Cpath d='M50 95 C46 78, 30 68, 50 50 C70 68, 54 78, 50 95Z'/%3E%3Cpath d='M5 50 C22 46, 32 30, 50 50 C32 70, 22 54, 5 50Z'/%3E%3Cpath d='M95 50 C78 46, 68 30, 50 50 C68 70, 78 54, 95 50Z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.lookbook .section-title {
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  font-weight: 600;
}
.lookbook .section-title--light {
  color: var(--gray-light);
}

.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  grid-auto-flow: dense;
}
.lookbook-item {
  overflow: hidden;
  border-radius: 4px;
}
.lookbook-item--tall {
  grid-row: span 2;
}

.lookbook-placeholder {
  width: 100%;
  height: 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all var(--transition);
}
/* Each gets a unique warm-tinted dark gradient */
.lookbook-item:nth-child(1) .lookbook-placeholder {
  background: linear-gradient(135deg, rgba(111,237,214,0.12) 0%, var(--charcoal) 100%);
}
.lookbook-item:nth-child(2) .lookbook-placeholder {
  background: linear-gradient(135deg, rgba(255,60,120,0.1) 0%, var(--ink) 100%);
}
.lookbook-item:nth-child(3) .lookbook-placeholder {
  background: linear-gradient(135deg, rgba(201,177,255,0.12) 0%, var(--charcoal) 100%);
}
.lookbook-item:nth-child(4) .lookbook-placeholder {
  background: linear-gradient(135deg, rgba(255,181,167,0.1) 0%, var(--ink) 100%);
}
.lookbook-item:nth-child(5) .lookbook-placeholder {
  background: linear-gradient(135deg, rgba(232,255,71,0.06) 0%, var(--charcoal) 100%);
}
.lookbook-item:nth-child(6) .lookbook-placeholder {
  background: linear-gradient(135deg, rgba(137,207,240,0.1) 0%, var(--ink) 100%);
}
.lookbook-item--tall .lookbook-placeholder {
  min-height: 460px;
}
.lookbook-placeholder:hover {
  filter: brightness(1.2);
}

.lookbook-watermark {
  width: 48px;
  height: 48px;
  opacity: 0.08;
  transition: opacity var(--transition);
}
.lookbook-placeholder:hover .lookbook-watermark {
  opacity: 0.2;
}
.lookbook-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.18);
}


/* ==========================================================
   BRAND STATEMENT — BRIGHT background, dark metal text
   Flipped from dark — THIS is the skate shop wall
   ========================================================== */
.statement {
  background: var(--peach);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Cybersigilism thorn pattern behind the statement */
.statement::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Cg fill='none' stroke='%231A1A2E' stroke-width='1' opacity='0.04'%3E%3Cpath d='M200 20 C185 80, 130 120, 200 200 C270 120, 215 80, 200 20Z'/%3E%3Cpath d='M200 380 C185 320, 130 280, 200 200 C270 280, 215 320, 200 380Z'/%3E%3Cpath d='M20 200 C80 185, 120 130, 200 200 C120 270, 80 215, 20 200Z'/%3E%3Cpath d='M380 200 C320 185, 280 130, 200 200 C280 270, 320 215, 380 200Z'/%3E%3Cpath d='M60 60 C100 100, 120 140, 200 200 C140 120, 100 100, 60 60Z'/%3E%3Cpath d='M340 60 C300 100, 280 140, 200 200 C260 120, 300 100, 340 60Z'/%3E%3Cpath d='M60 340 C100 300, 140 280, 200 200 C120 260, 100 300, 60 340Z'/%3E%3Cpath d='M340 340 C300 300, 260 280, 200 200 C280 260, 300 300, 340 340Z'/%3E%3Ccircle cx='200' cy='200' r='30'/%3E%3Ccircle cx='200' cy='200' r='60'/%3E%3Ccircle cx='200' cy='200' r='100'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  pointer-events: none;
}
.statement-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 3rem);
  letter-spacing: 0.01em;
  text-transform: lowercase;
  color: var(--ink);
  line-height: 1.3;
  position: relative;
}
.statement-text .accent {
  color: var(--hot-pink);
}
.statement-sub {
  font-family: var(--font-metal);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  color: var(--ink);
  margin-top: 1.5rem;
  opacity: 0.45;
  position: relative;
}


/* ==========================================================
   EMAIL SIGNUP — Warm, inviting, playful
   ========================================================== */
.signup {
  background: var(--seafoam);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
/* Thorn pattern on signup */
.signup::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='none' stroke='%231A1A2E' stroke-width='0.4' opacity='0.05'%3E%3Cpath d='M40 5 C37 20, 25 28, 40 40 C55 28, 43 20, 40 5Z'/%3E%3Cpath d='M40 75 C37 60, 25 52, 40 40 C55 52, 43 60, 40 75Z'/%3E%3Cpath d='M5 40 C20 37, 28 25, 40 40 C28 55, 20 43, 5 40Z'/%3E%3Cpath d='M75 40 C60 37, 52 25, 40 40 C52 55, 60 43, 75 40Z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.signup-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.signup-title {
  font-family: var(--font-metal);
  font-weight: 400;
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.6rem;
}
.signup-sub {
  font-size: 0.9rem;
  color: var(--ink);
  opacity: 0.65;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.signup-form {
  width: 100%;
}
.signup-input-wrap {
  display: flex;
  gap: 0;
  border: 3px solid var(--ink);
  overflow: hidden;
  border-radius: 4px;
  transition: box-shadow var(--transition);
  background: var(--white);
}
.signup-input-wrap:focus-within {
  box-shadow: 0 0 0 3px rgba(26, 26, 46, 0.15);
}
.signup-input-wrap input {
  flex: 1;
  border: none;
  padding: 0.9rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  background: transparent;
  color: var(--ink);
}
.signup-input-wrap input::placeholder {
  color: var(--gray-light);
}
.signup-input-wrap .btn {
  border: none;
  border-left: 3px solid var(--ink);
  border-radius: 0;
  background: var(--ink);
  color: var(--acid-yellow);
  font-weight: 800;
}
.signup-input-wrap .btn:hover {
  background: var(--hot-pink);
  color: var(--white);
}
.signup-thanks {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--ink);
  letter-spacing: 0.06em;
  font-weight: 700;
}


/* ==========================================================
   FOOTER
   ========================================================== */
.footer {
  background: var(--ink);
  padding: 4rem 0 2rem;
  color: var(--gray);
  position: relative;
  border-top: 3px solid var(--hot-pink);
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.footer-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.footer-wordmark {
  font-family: var(--font-metal);
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--cream);
}

.footer-links {
  display: flex;
  gap: 3rem;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-col a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--gray);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--peach); }

.footer-social {
  display: flex;
  gap: 1.2rem;
}
.footer-social a {
  color: var(--gray);
  transition: all var(--transition);
  display: flex;
  align-items: center;
}
.footer-social a:hover {
  color: var(--seafoam);
  transform: translateY(-2px);
}

.footer-bottom {
  padding-top: 2rem;
  text-align: center;
}
.footer-bottom p {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.2);
}
.footer-bottom .accent-footer {
  color: var(--hot-pink);
}


/* ==========================================================
   MOBILE RESPONSIVE
   ========================================================== */
@media (max-width: 900px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .lookbook-grid { grid-template-columns: repeat(2, 1fr); }
  .lookbook-item--tall { grid-row: span 1; }
  .lookbook-item--tall .lookbook-placeholder { min-height: 220px; }
  .footer-top { flex-direction: column; gap: 2rem; }
  .flyer-strip-inner { gap: 1.5rem; }
  .flyer-strip-item { font-size: 0.9rem; }
}

@media (max-width: 640px) {
  :root { --nav-h: 56px; --promo-h: 28px; }

  .promo-bar {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.5rem;
    padding: 0.45rem 1rem;
    letter-spacing: 0.12em;
    height: 28px;
    line-height: 1.4;
  }

  .nav-wordmark { font-size: 1rem; }

  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 280px;
    background: var(--ink);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform var(--transition);
    box-shadow: -8px 0 40px rgba(0,0,0,0.6);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.1rem; }
  .nav-links a::after { display: none; }
  .nav-links .cart-btn { margin-top: 1rem; }

  .hero-title-deathcore { font-size: clamp(2.8rem, 13vw, 5rem); }
  .hero-label { font-size: 0.6rem; }

  .category-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .category-card { padding: 1.5rem 1rem; }
  .category-name { font-size: 0.72rem; }
  .category-emoji { font-size: 1.5rem; }

  .product-grid { grid-template-columns: 1fr; gap: 1.25rem; }

  .section-header { flex-direction: column; gap: 0.5rem; }
  .section-title { font-size: 1.4rem; }

  .lookbook-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }

  .statement-text { font-size: clamp(1.2rem, 5.5vw, 1.8rem); }

  .flyer-strip-inner { gap: 1rem; }
  .flyer-strip-item { font-size: 0.8rem; }

  .signup { padding: 4rem 0; }
  .signup-title { font-size: 1.8rem; }
  .signup-input-wrap {
    flex-direction: column;
    border: none;
    background: transparent;
  }
  .signup-input-wrap input {
    border: 3px solid var(--ink);
    margin-bottom: 0.75rem;
    border-radius: 4px;
    background: var(--white);
  }
  .signup-input-wrap .btn {
    border: none;
    border-left: none;
    width: 100%;
    border-radius: 4px;
  }

  .footer-links { gap: 2rem; }
}

@media (max-width: 380px) {
  .nav-wordmark { display: none; }
  .lookbook-grid { grid-template-columns: 1fr; }
  .hero-title-deathcore { font-size: clamp(2.2rem, 12vw, 4rem); }
  .flyer-strip-item { font-size: 0.7rem; }
}


/* ==========================================================
   SUB-PAGE STYLES
   Page hero, shop filters, about, contact, product detail
   ========================================================== */

/* ---- Page Hero (shared across sub-pages) ---- */
.page-hero {
  position: relative;
  width: 100%;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(165deg,
    var(--ink) 0%,
    var(--charcoal) 40%,
    #2a3a4a 70%,
    var(--ink) 100%);
  padding-top: calc(var(--nav-h) + var(--promo-h));
}
.page-hero .page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(255, 60, 120, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(111, 237, 214, 0.06) 0%, transparent 50%);
}
.page-hero .hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  mix-blend-mode: overlay;
}
.page-hero-content {
  position: relative;
  text-align: center;
  z-index: 2;
  padding: 4rem 2rem;
}
.page-hero-content .hero-label {
  color: var(--gray-light);
}
.page-hero-title {
  font-family: var(--font-metal);
  font-weight: 400;
  font-size: clamp(3rem, 10vw, 8rem);
  line-height: 0.9;
  color: var(--cream);
  text-shadow: 2px 2px 0px rgba(255, 60, 120, 0.2);
  margin-bottom: 0.5rem;
}
.page-hero-content .hero-sub {
  color: var(--gray-light);
  max-width: 500px;
}

/* ---- Peach variant (about page) ---- */
.page-hero--peach {
  background: linear-gradient(165deg,
    #FFD4C8 0%,
    var(--peach) 30%,
    #FFC9A7 60%,
    var(--lilac) 100%);
}
.page-hero--peach .page-hero-title {
  color: var(--ink);
  text-shadow: 2px 2px 0px rgba(255, 181, 167, 0.5);
}
.page-hero--peach .hero-label,
.page-hero--peach .hero-sub {
  color: var(--ink);
  opacity: 0.7;
}

/* ---- Seafoam variant (contact page) ---- */
.page-hero--seafoam {
  background: linear-gradient(165deg,
    var(--seafoam) 0%,
    #6FEDD6 30%,
    var(--sky) 70%,
    var(--lilac) 100%);
}
.page-hero--seafoam .page-hero-title {
  color: var(--ink);
  text-shadow: 2px 2px 0px rgba(111, 237, 214, 0.4);
}
.page-hero--seafoam .hero-label,
.page-hero--seafoam .hero-sub {
  color: var(--ink);
  opacity: 0.7;
}


/* ---- Filter Bar (shop page) ---- */
.filter-bar {
  background: var(--sand);
  border-bottom: 2px solid rgba(26, 26, 46, 0.06);
  padding: 1rem 0;
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
}
.filter-bar-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}
.filter-btn {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--white);
  color: var(--ink);
  border: 2px solid rgba(26, 26, 46, 0.1);
  padding: 0.6rem 1.4rem;
  border-radius: 3px;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover {
  border-color: var(--hot-pink);
  color: var(--hot-pink);
}
.filter-btn.active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

/* Shop products section — extra top padding */
.shop-products {
  padding-top: 3rem;
}


/* ---- About Page ---- */
.about-section {
  padding: 5rem 0;
  background: var(--cream);
}
.about-content {
  max-width: 720px;
  margin: 0 auto;
}
.about-text p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink);
  margin-bottom: 1.5rem;
  opacity: 0.85;
}
.about-text strong {
  color: var(--ink);
  opacity: 1;
}
.about-text em {
  color: var(--hot-pink);
  font-style: italic;
}

/* ---- Founders Section ---- */
.founders-section {
  background: var(--ink);
  padding: 5rem 0;
  position: relative;
}
.founders-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.founder-card {
  background: var(--charcoal);
  border-radius: 6px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.04);
  transition: all var(--transition);
}
.founder-card:hover {
  border-color: var(--hot-pink);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(255, 60, 120, 0.1);
}
.founder-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 1.2rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}
.founder-avatar-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  opacity: 0.3;
}
.founder-name {
  font-family: var(--font-metal);
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.3rem;
}
.founder-role {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hot-pink);
  margin-bottom: 0.8rem;
}
.founder-quip {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.5;
  font-style: italic;
}


/* ---- Contact Page ---- */
.contact-section {
  padding: 5rem 0;
  background: var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-col {
  padding-top: 1rem;
}
.contact-detail {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(26, 26, 46, 0.08);
}
.contact-detail-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.3rem;
}
.contact-detail-value {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  transition: color var(--transition);
}
a.contact-detail-value:hover {
  color: var(--hot-pink);
}

/* ---- Contact Form ---- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}
.form-input {
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.85rem 1rem;
  border: 2px solid rgba(26, 26, 46, 0.12);
  border-radius: 3px;
  background: var(--white);
  color: var(--ink);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-input:focus {
  border-color: var(--hot-pink);
  box-shadow: 0 0 0 3px rgba(255, 60, 120, 0.1);
}
.form-input::placeholder {
  color: var(--gray-light);
}
textarea.form-input {
  resize: vertical;
  min-height: 120px;
}
select.form-input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238B8BA3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-disclaimer {
  font-family: var(--font-body);
  font-size: 0.76rem;
  color: var(--gray);
  font-style: italic;
  text-align: center;
}
.form-success {
  padding: 1rem;
  background: rgba(111, 237, 214, 0.15);
  border: 2px solid var(--seafoam);
  border-radius: 3px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--ink);
  text-align: center;
}


/* ---- Product Detail Page ---- */
.breadcrumb {
  padding: calc(var(--nav-h) + 2rem) 0 0;
  background: var(--cream);
}
.breadcrumb .container {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
}
.breadcrumb a {
  color: var(--gray);
  transition: color var(--transition);
}
.breadcrumb a:hover {
  color: var(--hot-pink);
}
.breadcrumb-sep {
  margin: 0 0.5rem;
  color: var(--hot-pink);
}
.breadcrumb-current {
  color: var(--ink);
}

.pdp-section {
  padding: 2rem 0 5rem;
  background: var(--cream);
}
.pdp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.pdp-image-main {
  aspect-ratio: 3 / 4;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 1rem;
}
.pdp-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, var(--ink) 0%, var(--charcoal) 50%, var(--ink) 100%);
}
.pdp-thumbs {
  display: flex;
  gap: 0.75rem;
}
.pdp-thumb {
  width: 72px;
  height: 72px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--charcoal);
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pdp-thumb.active,
.pdp-thumb:hover {
  border-color: var(--hot-pink);
}

.pdp-category {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.5rem;
}
.pdp-name {
  font-family: var(--font-metal);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.95;
  color: var(--ink);
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}
.pdp-price {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--terracotta);
  margin-bottom: 1.2rem;
}
.pdp-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink);
  opacity: 0.8;
  margin-bottom: 2rem;
}

.pdp-selector-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.6rem;
}

/* Size buttons */
.size-grid {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.size-btn {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--white);
  color: var(--ink);
  border: 2px solid rgba(26, 26, 46, 0.12);
  padding: 0.65rem 1.1rem;
  border-radius: 3px;
  cursor: pointer;
  transition: all var(--transition);
}
.size-btn:hover {
  border-color: var(--ink);
}
.size-btn.active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.size-btn.out-of-stock {
  opacity: 0.3;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* Color swatches */
.color-grid {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.color-swatch {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all var(--transition);
  box-shadow: 0 0 0 1px rgba(26, 26, 46, 0.1);
}
.color-swatch:hover {
  transform: scale(1.15);
}
.color-swatch.active {
  border-color: var(--hot-pink);
  box-shadow: 0 0 0 2px var(--hot-pink);
}

.pdp-cta {
  margin-bottom: 2.5rem;
}

/* Outline button for wishlist etc. */
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  color: var(--ink);
  border: 2px solid rgba(26, 26, 46, 0.15);
  padding: 0.85rem 2rem;
  border-radius: 3px;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-outline:hover {
  border-color: var(--hot-pink);
  color: var(--hot-pink);
}

.pdp-features {
  border-top: 1px solid rgba(26, 26, 46, 0.08);
  padding-top: 2rem;
  margin-bottom: 2rem;
}
.pdp-features-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 1rem;
}
.pdp-features-list {
  list-style: none;
  padding: 0;
}
.pdp-features-list li {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--ink);
  opacity: 0.75;
  padding: 0.4rem 0;
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.5;
}
.pdp-features-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--hot-pink);
  font-size: 0.6rem;
  top: 0.55rem;
}

.pdp-shipping-note {
  background: var(--sand);
  border: 2px solid rgba(26, 26, 46, 0.06);
  border-radius: 4px;
  padding: 1.2rem 1.5rem;
}
.pdp-shipping-note p {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  line-height: 2;
}


/* ---- Cart Toast ---- */
.cart-toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--ink);
  color: var(--cream);
  padding: 1rem 1.5rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  z-index: 9999;
  transform: translateY(120%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 4px solid var(--seafoam);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}
.cart-toast.show {
  transform: translateY(0);
  opacity: 1;
}
.cart-toast .toast-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--seafoam);
  margin-bottom: 0.2rem;
}

/* ---- Cart Drawer ---- */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 46, 0.6);
  backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 380px;
  max-width: 90vw;
  background: var(--ink);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--transition);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.4);
}
.cart-drawer.open {
  transform: translateX(0);
}
.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.cart-drawer-title {
  font-family: var(--font-metal);
  font-size: 1.4rem;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.cart-close {
  background: none;
  border: none;
  color: var(--gray);
  font-size: 1.2rem;
  cursor: pointer;
  transition: color var(--transition);
  padding: 0.25rem;
}
.cart-close:hover {
  color: var(--hot-pink);
}
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
}
.cart-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--gray);
  font-family: var(--font-body);
  font-size: 0.9rem;
}
.cart-empty .empty-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  opacity: 0.3;
}
.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  align-items: flex-start;
}
.cart-item-img {
  width: 56px;
  height: 56px;
  background: var(--charcoal);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-metal);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}
.cart-item-details {
  flex: 1;
}
.cart-item-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.2rem;
}
.cart-item-meta {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--gray);
}
.cart-item-price {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--terracotta);
  margin-top: 0.3rem;
}
.cart-item-remove {
  background: none;
  border: none;
  color: var(--gray);
  cursor: pointer;
  font-size: 0.9rem;
  padding: 0.25rem;
  transition: color var(--transition);
}
.cart-item-remove:hover {
  color: var(--hot-pink);
}
.cart-footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.cart-subtotal .label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-light);
}
.cart-subtotal .amount {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--cream);
}
.btn-full { width: 100%; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  color: var(--gray);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.85rem 2rem;
  border-radius: 3px;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-ghost:hover {
  color: var(--cream);
  border-color: var(--gray);
}
.mt-1 { margin-top: 0.75rem; }


/* ==========================================================
   SUB-PAGE RESPONSIVE
   ========================================================== */
@media (max-width: 900px) {
  .founders-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .pdp-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 640px) {
  .page-hero { min-height: 40vh; }
  .page-hero-title { font-size: clamp(2.5rem, 12vw, 5rem); }
  .founders-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .founder-card { padding: 1.5rem 1rem; }
  .founder-name { font-size: 1.3rem; }
  .form-row { grid-template-columns: 1fr; }
  .pdp-thumbs { gap: 0.5rem; }
  .pdp-thumb { width: 56px; height: 56px; }
  .filter-bar-inner { gap: 0.5rem; }
  .filter-btn { padding: 0.5rem 1rem; font-size: 0.65rem; }
}

@media (max-width: 380px) {
  .founders-grid { grid-template-columns: 1fr; }
}
