/* ========== RESET & BASE ========== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: #0A0A0F;
  --bg-secondary: #12121A;
  --neon-teal: #00F5D4;
  --neon-coral: #FF4D6D;
  --neon-purple: #9B5DE5;
  --white: #FAFAFA;
  --muted: #8888AA;
  --glow-teal: 0 0 10px #00F5D4, 0 0 30px rgba(0, 245, 212, 0.4), 0 0 60px rgba(0, 245, 212, 0.15);
  --glow-coral: 0 0 10px #FF4D6D, 0 0 30px rgba(255, 77, 109, 0.4);
  --glow-purple: 0 0 10px #9B5DE5, 0 0 30px rgba(155, 93, 229, 0.4);
  --glow-teal-text: 0 0 10px #00F5D4, 0 0 30px rgba(0, 245, 212, 0.5), 0 0 60px rgba(0, 245, 212, 0.2);
  --glow-coral-text: 0 0 10px #FF4D6D, 0 0 30px rgba(255, 77, 109, 0.5);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  background: var(--bg-primary);
  color: var(--muted);
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

/* ========== CUSTOM CURSOR ========== */
.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--neon-teal);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transition: transform 0.1s ease;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 6px rgba(0, 245, 212, 0.6);
}

.cursor-ring {
  position: fixed;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(0, 245, 212, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transition: transform 0.15s ease, width 0.2s ease, height 0.2s ease;
  transform: translate(-50%, -50%);
}

/* ========== SCANLINE OVERLAY ========== */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.02;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 1px,
    rgba(0, 0, 0, 0.3) 1px,
    rgba(0, 0, 0, 0.3) 2px
  );
}

/* ========== UTILITY ========== */
.section-padding {
  padding: 6rem 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ========== SCROLL REVEAL ========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-child {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.reveal.visible .reveal-child {
  opacity: 1;
  transform: translateY(0);
}

.reveal.visible .reveal-child:nth-child(1) { transition-delay: 0ms; }
.reveal.visible .reveal-child:nth-child(2) { transition-delay: 80ms; }
.reveal.visible .reveal-child:nth-child(3) { transition-delay: 160ms; }
.reveal.visible .reveal-child:nth-child(4) { transition-delay: 240ms; }
.reveal.visible .reveal-child:nth-child(5) { transition-delay: 320ms; }
.reveal.visible .reveal-child:nth-child(6) { transition-delay: 400ms; }
.reveal.visible .reveal-child:nth-child(7) { transition-delay: 480ms; }
.reveal.visible .reveal-child:nth-child(8) { transition-delay: 560ms; }
.reveal.visible .reveal-child:nth-child(9) { transition-delay: 640ms; }
.reveal.visible .reveal-child:nth-child(10) { transition-delay: 720ms; }

/* ========== BUTTONS ========== */
.btn-teal {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  padding: 0.85rem 2rem;
  border: none;
  border-radius: 50px;
  background: var(--neon-teal);
  color: var(--bg-primary);
  cursor: none;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: var(--glow-teal);
}

.btn-teal:hover {
  background: #33F7DD;
  transform: translateY(-2px);
  box-shadow: 0 0 15px #00F5D4, 0 0 40px rgba(0, 245, 212, 0.5), 0 0 80px rgba(0, 245, 212, 0.2);
}

.btn-outline {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  padding: 0.85rem 2rem;
  border: 1px solid var(--white);
  border-radius: 50px;
  background: transparent;
  color: var(--white);
  cursor: none;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--neon-teal);
  color: var(--neon-teal);
  box-shadow: 0 0 15px rgba(0, 245, 212, 0.2);
}

/* ========== AGE GATE ========== */
.age-gate {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.age-gate.slide-up {
  animation: ageSlideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes ageSlideUp {
  to {
    transform: translateY(-100%);
    opacity: 0;
  }
}

.age-gate-box {
  text-align: center;
  padding: 3.5rem 3rem;
  border: 1px solid var(--neon-teal);
  box-shadow: var(--glow-teal);
  max-width: 440px;
  width: 90%;
}

.age-gate-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 4rem;
  color: var(--neon-teal);
  text-shadow: var(--glow-teal-text);
  margin-bottom: 1.5rem;
  line-height: 1;
}

.age-gate-disclaimer {
  font-family: 'Syne Mono', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--neon-teal);
  margin-bottom: 2rem;
}

.age-gate-question {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 2rem;
}

.age-gate-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-age-deny {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  padding: 0.85rem 2rem;
  border: 1px solid var(--neon-coral);
  border-radius: 50px;
  background: transparent;
  color: var(--neon-coral);
  cursor: none;
  transition: all 0.3s ease;
}

.btn-age-deny:hover {
  background: var(--neon-coral);
  color: var(--bg-primary);
  box-shadow: var(--glow-coral);
}

/* ========== NAVIGATION ========== */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  border-bottom: 1px solid var(--neon-teal);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  text-decoration: none;
  display: flex;
  gap: 0.4rem;
}

.nav-logo-mr {
  color: var(--neon-teal);
  text-shadow: var(--glow-teal-text);
}

.nav-logo-puffers {
  color: var(--white);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: var(--neon-teal);
  text-shadow: var(--glow-teal-text);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-location {
  font-family: 'Syne Mono', monospace;
  font-size: 0.7rem;
  color: var(--muted);
}

.nav-cta {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.45rem 1.2rem;
  border-radius: 50px;
  background: transparent;
  border: 1px solid var(--neon-teal);
  color: var(--neon-teal);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 8px rgba(0, 245, 212, 0.15);
}

.nav-cta:hover {
  background: var(--neon-teal);
  color: var(--bg-primary);
  box-shadow: var(--glow-teal);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: none;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--neon-teal);
  transition: all 0.3s ease;
  box-shadow: 0 0 4px rgba(0, 245, 212, 0.4);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  transition: right 0.4s ease;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu a {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--neon-teal);
  text-shadow: var(--glow-teal-text);
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 6rem 2rem 4rem;
  overflow: hidden;
}

.hero-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  will-change: transform;
}

.hero-blob-1 {
  width: 500px;
  height: 500px;
  background: rgba(0, 245, 212, 0.08);
  top: 10%;
  left: -10%;
}

.hero-blob-2 {
  width: 400px;
  height: 400px;
  background: rgba(255, 77, 109, 0.06);
  top: 40%;
  right: -5%;
}

.hero-blob-3 {
  width: 300px;
  height: 300px;
  background: rgba(155, 93, 229, 0.05);
  bottom: 10%;
  left: 30%;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1;
}

.hero-overline {
  font-family: 'Syne Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--neon-teal);
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  color: var(--white);
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: heroSlideUp 0.6s ease-out forwards;
}

@keyframes heroSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Neon OPEN sign */
.neon-sign {
  flex-shrink: 0;
  width: 220px;
  height: 120px;
  border: 2px solid var(--neon-teal);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--glow-teal), inset 0 0 20px rgba(0, 245, 212, 0.05);
  animation: signFlicker 4s ease-in-out infinite;
}

.neon-sign-text {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  color: var(--neon-teal);
  text-shadow: var(--glow-teal-text);
  letter-spacing: 0.15em;
}

@keyframes signFlicker {
  0%, 100% { opacity: 1; }
  4% { opacity: 0.85; }
  6% { opacity: 1; }
  50% { opacity: 1; }
  52% { opacity: 0.9; }
  53% { opacity: 1; }
  78% { opacity: 1; }
  80% { opacity: 0.8; }
  82% { opacity: 1; }
}

/* ========== MARQUEE ========== */
.marquee {
  background: var(--bg-primary);
  overflow: hidden;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(255, 77, 109, 0.15);
  border-bottom: 1px solid rgba(255, 77, 109, 0.15);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 25s linear infinite;
}

.marquee-text {
  font-family: 'Syne Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--neon-coral);
  text-shadow: var(--glow-coral-text);
  white-space: nowrap;
  padding-right: 1rem;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========== SECTION HEADERS ========== */
.section-overline {
  font-family: 'Syne Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--neon-teal);
  margin-bottom: 0.75rem;
}

.section-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 3rem;
}

/* ========== PRODUCTS ========== */
.products {
  background: var(--bg-primary);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
}

.product-card {
  background: var(--bg-secondary);
  border-radius: 6px;
  padding: 2rem 1.2rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: none;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  transition: all 0.3s ease;
}

.product-card[data-accent="teal"]::before { background: var(--neon-teal); }
.product-card[data-accent="coral"]::before { background: var(--neon-coral); }
.product-card[data-accent="purple"]::before { background: var(--neon-purple); }

.product-card:hover {
  transform: translateY(-4px);
}

.product-card[data-accent="teal"]:hover {
  box-shadow: 0 0 20px rgba(0, 245, 212, 0.15), inset 0 0 20px rgba(0, 245, 212, 0.03);
  border: 1px solid rgba(0, 245, 212, 0.2);
}

.product-card[data-accent="coral"]:hover {
  box-shadow: 0 0 20px rgba(255, 77, 109, 0.15), inset 0 0 20px rgba(255, 77, 109, 0.03);
  border: 1px solid rgba(255, 77, 109, 0.2);
}

.product-card[data-accent="purple"]:hover {
  box-shadow: 0 0 20px rgba(155, 93, 229, 0.15), inset 0 0 20px rgba(155, 93, 229, 0.03);
  border: 1px solid rgba(155, 93, 229, 0.2);
}

.product-card {
  border: 1px solid transparent;
}

.product-emoji {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  display: block;
}

.product-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.product-desc {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.product-tag {
  font-family: 'Syne Mono', monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
  display: inline-block;
}

.product-tag[data-accent="teal"] {
  color: var(--neon-teal);
  border: 1px solid rgba(0, 245, 212, 0.3);
}

.product-tag[data-accent="coral"] {
  color: var(--neon-coral);
  border: 1px solid rgba(255, 77, 109, 0.3);
}

.product-tag[data-accent="purple"] {
  color: var(--neon-purple);
  border: 1px solid rgba(155, 93, 229, 0.3);
}

/* ========== ABOUT ========== */
.about {
  background: var(--bg-secondary);
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
  padding: 8rem 2rem;
}

.about-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
}

.about-neon-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(5rem, 10vw, 8rem);
  color: var(--neon-teal);
  text-shadow: var(--glow-teal-text);
  text-align: center;
  line-height: 1;
}

.about-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--white);
  margin-bottom: 1.2rem;
}

.about-body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.about-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.about-stat-value {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--neon-teal);
  min-width: 100px;
}

.about-stat-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--muted);
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  background: var(--bg-primary);
}

.testimonials-header {
  margin-bottom: 3rem;
}

.testimonials-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 0.5rem;
}

.testimonials-sub {
  font-family: 'Syne Mono', monospace;
  font-size: 0.8rem;
  color: var(--muted);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--bg-secondary);
  border-radius: 6px;
  padding: 2rem 1.5rem;
  position: relative;
  border-left: 4px solid;
}

.testimonial-card:nth-child(1) { border-left-color: var(--neon-teal); }
.testimonial-card:nth-child(2) { border-left-color: var(--neon-coral); }
.testimonial-card:nth-child(3) { border-left-color: var(--neon-purple); }
.testimonial-card:nth-child(4) { border-left-color: var(--neon-teal); }

.testimonial-text {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-family: 'Syne Mono', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

/* ========== LOYALTY ========== */
.loyalty {
  background: var(--bg-primary);
  position: relative;
  text-align: center;
  overflow: hidden;
}

.loyalty::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 80px rgba(255, 77, 109, 0.08), inset 0 0 200px rgba(255, 77, 109, 0.04);
  pointer-events: none;
}

.loyalty-content {
  position: relative;
  z-index: 1;
}

.loyalty-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.loyalty-body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 2rem;
}

.btn-loyalty {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  padding: 0.85rem 2rem;
  border: none;
  border-radius: 50px;
  background: var(--neon-teal);
  color: var(--bg-primary);
  cursor: none;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 0 10px var(--neon-teal), 0 0 30px rgba(0, 245, 212, 0.3), 0 0 10px var(--neon-coral), 0 0 30px rgba(255, 77, 109, 0.15);
}

.btn-loyalty:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 15px var(--neon-teal), 0 0 50px rgba(0, 245, 212, 0.4), 0 0 15px var(--neon-coral), 0 0 50px rgba(255, 77, 109, 0.2);
}

/* ========== STORE INFO ========== */
.store-info {
  background: var(--bg-primary);
}

.store-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.store-map-wrapper {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(0, 245, 212, 0.2);
  box-shadow: 0 0 20px rgba(0, 245, 212, 0.05);
}

.store-map-wrapper iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

.store-details {
  padding-top: 0.5rem;
}

.store-address {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.store-phone {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.store-phone a {
  color: var(--neon-teal);
  text-shadow: var(--glow-teal-text);
  text-decoration: none;
  transition: all 0.3s ease;
}

.store-phone a:hover {
  text-shadow: 0 0 15px #00F5D4, 0 0 40px rgba(0, 245, 212, 0.6);
}

.store-hours {
  margin-bottom: 1.5rem;
}

.store-hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(136, 136, 170, 0.1);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
}

.store-hours-day {
  color: var(--muted);
}

.store-hours-time {
  color: var(--white);
}

.store-instagram {
  margin-bottom: 2rem;
}

.store-instagram a {
  font-family: 'Syne Mono', monospace;
  font-size: 1rem;
  color: var(--neon-coral);
  text-shadow: var(--glow-coral-text);
  text-decoration: none;
  transition: all 0.3s ease;
}

.store-instagram a:hover {
  text-shadow: 0 0 15px #FF4D6D, 0 0 40px rgba(255, 77, 109, 0.6);
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--bg-primary);
  padding: 3rem 2rem 2rem;
  border-top: 3px solid var(--neon-teal);
  box-shadow: 0 -5px 30px rgba(0, 245, 212, 0.08);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: start;
}

.footer-brand-text {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--neon-teal);
  text-shadow: 0 0 10px rgba(0, 245, 212, 0.3);
}

.footer-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.footer-links a {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--muted);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--neon-teal);
  text-shadow: 0 0 10px rgba(0, 245, 212, 0.3);
}

.footer-contact {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.footer-contact a {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-contact a:hover {
  color: var(--neon-teal);
}

.footer-legal {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(136, 136, 170, 0.1);
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  color: var(--muted);
  opacity: 0.6;
}

/* ========== TERMINAL BREADCRUMB ========== */
.terminal-crumb {
  padding: 1.2rem 2rem 0;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 70px;
  font-family: 'Syne Mono', monospace;
  font-size: 0.75rem;
  color: var(--muted);
}

.terminal-crumb a {
  color: var(--neon-teal);
  text-decoration: none;
  transition: text-shadow 0.3s ease;
}

.terminal-crumb a:hover {
  text-shadow: var(--glow-teal-text);
}

.terminal-crumb .crumb-sep {
  color: var(--muted);
  margin: 0 0.3rem;
}

.terminal-crumb .crumb-prompt {
  color: var(--neon-teal);
  margin-right: 0.5rem;
}

.terminal-crumb .crumb-current {
  color: var(--white);
}

/* ========== PAGE HERO (SUBPAGES) ========== */
.page-hero-neon {
  padding: 4rem 2rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero-neon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 245, 212, 0.06) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.page-hero-emoji {
  font-size: 4rem;
  display: block;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.page-hero-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.page-hero-rule {
  width: 80px;
  border: none;
  border-top: 2px solid var(--neon-teal);
  margin: 0 auto 1rem;
  box-shadow: var(--glow-teal);
}

.page-hero-sub {
  font-family: 'Syne Mono', monospace;
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}

/* ========== GLITCH TEXT EFFECT ========== */
.glitch {
  position: relative;
  display: inline-block;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.glitch::before {
  color: var(--neon-coral);
  animation: glitch-1 3s infinite linear alternate-reverse;
  clip-path: inset(0 0 80% 0);
}

.glitch::after {
  color: var(--neon-teal);
  animation: glitch-2 3s infinite linear alternate-reverse;
  clip-path: inset(80% 0 0 0);
}

@keyframes glitch-1 {
  0%, 95% { transform: translate(0); }
  96% { transform: translate(-3px, 1px); }
  97% { transform: translate(2px, -1px); }
  98% { transform: translate(-1px, 2px); }
  99% { transform: translate(3px, -2px); }
  100% { transform: translate(0); }
}

@keyframes glitch-2 {
  0%, 93% { transform: translate(0); }
  94% { transform: translate(2px, -1px); }
  95% { transform: translate(-3px, 2px); }
  96% { transform: translate(1px, -2px); }
  97% { transform: translate(-2px, 1px); }
  100% { transform: translate(0); }
}

/* ========== PRODUCT DETAIL PAGE ========== */
.product-detail-neon {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.product-detail-hero-card {
  background: var(--bg-secondary);
  border-radius: 8px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  margin-bottom: 3rem;
}

.product-detail-hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-teal), var(--neon-purple), var(--neon-coral));
  background-size: 200% 100%;
  animation: gradientSlide 4s linear infinite;
}

@keyframes gradientSlide {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

.product-detail-hero-card .detail-emoji {
  font-size: 5rem;
  display: block;
  margin-bottom: 1.5rem;
}

.product-detail-hero-card h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.product-detail-hero-card p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 700px;
}

/* Product feature pills - horizontal scroll */
.product-features {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.product-feature-pill {
  font-family: 'Syne Mono', monospace;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  border: 1px solid;
  transition: all 0.3s ease;
}

.product-feature-pill:nth-child(3n+1) {
  color: var(--neon-teal);
  border-color: rgba(0, 245, 212, 0.3);
}

.product-feature-pill:nth-child(3n+2) {
  color: var(--neon-coral);
  border-color: rgba(255, 77, 109, 0.3);
}

.product-feature-pill:nth-child(3n+3) {
  color: var(--neon-purple);
  border-color: rgba(155, 93, 229, 0.3);
}

.product-feature-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(0, 245, 212, 0.15);
}

/* ========== PRODUCT CTA BANNER ========== */
.neon-cta-banner {
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.neon-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 80px rgba(0, 245, 212, 0.06), inset 0 0 200px rgba(155, 93, 229, 0.04);
  pointer-events: none;
}

.neon-cta-banner h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.neon-cta-banner p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

/* ========== STORE COMPACT (SUBPAGES) ========== */
.store-compact-neon {
  padding: 3rem 2rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  border-top: 1px solid rgba(0, 245, 212, 0.1);
}

.store-compact-neon .store-name-compact {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--neon-teal);
  text-shadow: 0 0 10px rgba(0, 245, 212, 0.3);
  margin-bottom: 0.5rem;
}

.store-compact-neon .store-info-compact {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.8;
}

.store-compact-neon .store-info-compact a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.store-compact-neon .store-info-compact a:hover {
  color: var(--neon-teal);
}

/* ========== BENTO PRODUCTS GRID ========== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 1.2rem;
}

.bento-card {
  background: var(--bg-secondary);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  cursor: none;
  min-height: 180px;
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  transition: all 0.3s ease;
}

.bento-card:hover {
  transform: translateY(-3px);
}

.bento-card.span-2 {
  grid-column: span 2;
}

.bento-card.tall {
  grid-row: span 2;
}

.bento-card[data-accent="teal"]::before { background: var(--neon-teal); }
.bento-card[data-accent="coral"]::before { background: var(--neon-coral); }
.bento-card[data-accent="purple"]::before { background: var(--neon-purple); }

.bento-card[data-accent="teal"]:hover {
  border-color: rgba(0, 245, 212, 0.2);
  box-shadow: 0 0 25px rgba(0, 245, 212, 0.1);
}

.bento-card[data-accent="coral"]:hover {
  border-color: rgba(255, 77, 109, 0.2);
  box-shadow: 0 0 25px rgba(255, 77, 109, 0.1);
}

.bento-card[data-accent="purple"]:hover {
  border-color: rgba(155, 93, 229, 0.2);
  box-shadow: 0 0 25px rgba(155, 93, 229, 0.1);
}

.bento-card .product-emoji {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.bento-card.tall .product-emoji {
  font-size: 4rem;
}

/* ========== REVIEWS PAGE ========== */
.reviews-wall {
  padding: 4rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.review-neon-card {
  background: var(--bg-secondary);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  margin-bottom: 1.5rem;
  position: relative;
  border-left: 3px solid;
  transition: transform 0.3s ease;
}

.review-neon-card:hover {
  transform: translateX(4px);
}

.review-neon-card:nth-child(6n+1) { border-left-color: var(--neon-teal); }
.review-neon-card:nth-child(6n+2) { border-left-color: var(--neon-coral); }
.review-neon-card:nth-child(6n+3) { border-left-color: var(--neon-purple); }
.review-neon-card:nth-child(6n+4) { border-left-color: var(--neon-teal); }
.review-neon-card:nth-child(6n+5) { border-left-color: var(--neon-coral); }
.review-neon-card:nth-child(6n+6) { border-left-color: var(--neon-purple); }

.review-neon-card .review-stars {
  font-size: 0.85rem;
  margin-bottom: 1rem;
  display: block;
}

.review-neon-card:nth-child(6n+1) .review-stars { color: var(--neon-teal); }
.review-neon-card:nth-child(6n+2) .review-stars { color: var(--neon-coral); }
.review-neon-card:nth-child(6n+3) .review-stars { color: var(--neon-purple); }
.review-neon-card:nth-child(6n+4) .review-stars { color: var(--neon-teal); }
.review-neon-card:nth-child(6n+5) .review-stars { color: var(--neon-coral); }
.review-neon-card:nth-child(6n+6) .review-stars { color: var(--neon-purple); }

.review-neon-card .review-text {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.review-neon-card .review-author {
  font-family: 'Syne Mono', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
}

.reviews-cta-neon {
  text-align: center;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(0, 245, 212, 0.1);
  margin-top: 1rem;
}

.reviews-cta-neon p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

/* ========== ABOUT EXTENDED ========== */
.about-extended-neon {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.about-extended-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.about-block-neon {
  background: var(--bg-secondary);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.about-block-neon:hover {
  transform: translateY(-3px);
}

.about-block-neon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
}

.about-block-neon:nth-child(1)::before { background: var(--neon-teal); }
.about-block-neon:nth-child(2)::before { background: var(--neon-coral); }
.about-block-neon:nth-child(3)::before { background: var(--neon-purple); }

.about-block-neon h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.about-block-neon p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ========== DAILY DEAL BANNER ========== */
.daily-deal-banner {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(155, 93, 229, 0.2);
  border-bottom: 1px solid rgba(155, 93, 229, 0.2);
  padding: 0.85rem 2rem;
  position: relative;
  overflow: hidden;
}

.daily-deal-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(155, 93, 229, 0.04), transparent);
  pointer-events: none;
}

.daily-deal-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  position: relative;
  z-index: 1;
}

.daily-deal-label {
  font-family: 'Syne Mono', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--neon-purple);
  flex-shrink: 0;
}

.daily-deal-text {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--white);
}

.daily-deal-link {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.65rem;
  color: var(--neon-teal);
  text-decoration: none;
  flex-shrink: 0;
  transition: all 0.3s ease;
  cursor: none;
}

.daily-deal-link:hover {
  text-shadow: var(--glow-teal-text);
}

/* ========== SPECIALS PAGE ========== */
.specials-hero-neon {
  padding: 4rem 2rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.specials-hero-neon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(155, 93, 229, 0.08) 0%, rgba(0, 245, 212, 0.04) 40%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.specials-hero-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.specials-hero-sub {
  font-family: 'Syne Mono', monospace;
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}

/* Everyday deal */
.everyday-deal-neon {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.everyday-deal-card-neon {
  background: var(--bg-secondary);
  border-radius: 8px;
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 245, 212, 0.15);
}

.everyday-deal-card-neon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-teal), var(--neon-purple), var(--neon-coral));
  background-size: 200% 100%;
  animation: gradientSlide 4s linear infinite;
}

.everyday-deal-card-neon::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 60px rgba(0, 245, 212, 0.04), inset 0 0 120px rgba(155, 93, 229, 0.03);
  pointer-events: none;
}

.everyday-deal-badge {
  font-family: 'Syne Mono', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--bg-primary);
  background: var(--neon-teal);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 10px rgba(0, 245, 212, 0.3);
}

.everyday-deal-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.everyday-deal-desc {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--muted);
  position: relative;
  z-index: 1;
}

/* Daily deals grid */
.daily-deals-neon {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
}

.daily-deals-header-neon {
  text-align: center;
  margin-bottom: 3rem;
}

.daily-deals-label {
  font-family: 'Syne Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--neon-teal);
  margin-bottom: 0.5rem;
}

.daily-deals-title-neon {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--muted);
}

.daily-deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
}

.deal-card-neon {
  background: var(--bg-secondary);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: none;
}

.deal-card-neon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--muted);
  opacity: 0.2;
  transition: all 0.3s ease;
}

.deal-card-neon:hover {
  transform: translateY(-3px);
}

.deal-card-neon:nth-child(7n+1)::before { background: var(--neon-teal); opacity: 1; }
.deal-card-neon:nth-child(7n+2)::before { background: var(--neon-coral); opacity: 1; }
.deal-card-neon:nth-child(7n+3)::before { background: var(--neon-purple); opacity: 1; }
.deal-card-neon:nth-child(7n+4)::before { background: var(--neon-teal); opacity: 1; }
.deal-card-neon:nth-child(7n+5)::before { background: var(--neon-coral); opacity: 1; }
.deal-card-neon:nth-child(7n+6)::before { background: var(--neon-purple); opacity: 1; }
.deal-card-neon:nth-child(7n+7)::before { background: var(--neon-teal); opacity: 1; }

.deal-card-neon:nth-child(7n+1):hover { border-color: rgba(0, 245, 212, 0.2); box-shadow: 0 0 20px rgba(0, 245, 212, 0.1); }
.deal-card-neon:nth-child(7n+2):hover { border-color: rgba(255, 77, 109, 0.2); box-shadow: 0 0 20px rgba(255, 77, 109, 0.1); }
.deal-card-neon:nth-child(7n+3):hover { border-color: rgba(155, 93, 229, 0.2); box-shadow: 0 0 20px rgba(155, 93, 229, 0.1); }
.deal-card-neon:nth-child(7n+4):hover { border-color: rgba(0, 245, 212, 0.2); box-shadow: 0 0 20px rgba(0, 245, 212, 0.1); }
.deal-card-neon:nth-child(7n+5):hover { border-color: rgba(255, 77, 109, 0.2); box-shadow: 0 0 20px rgba(255, 77, 109, 0.1); }
.deal-card-neon:nth-child(7n+6):hover { border-color: rgba(155, 93, 229, 0.2); box-shadow: 0 0 20px rgba(155, 93, 229, 0.1); }
.deal-card-neon:nth-child(7n+7):hover { border-color: rgba(0, 245, 212, 0.2); box-shadow: 0 0 20px rgba(0, 245, 212, 0.1); }

.deal-card-neon.deal-today {
  border-color: rgba(0, 245, 212, 0.3);
  box-shadow: 0 0 30px rgba(0, 245, 212, 0.08), inset 0 0 30px rgba(0, 245, 212, 0.03);
}

.deal-today-badge-neon {
  font-family: 'Syne Mono', monospace;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--bg-primary);
  background: var(--neon-teal);
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  display: none;
  margin-bottom: 0.75rem;
  box-shadow: 0 0 8px rgba(0, 245, 212, 0.4);
}

.deal-card-neon.deal-today .deal-today-badge-neon {
  display: inline-block;
}

.deal-day-neon {
  font-family: 'Syne Mono', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 0.75rem;
  display: block;
}

.deal-card-neon.deal-today .deal-day-neon {
  color: var(--neon-teal);
}

.deal-name-neon {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.deal-desc-neon {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .nav-links, .nav-right {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-body {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .neon-sign {
    width: 180px;
    height: 90px;
  }

  .neon-sign-text {
    font-size: 2.2rem;
  }

  .about {
    clip-path: polygon(0 2%, 100% 0, 100% 98%, 0 100%);
    padding: 6rem 2rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .about-extended-grid {
    grid-template-columns: 1fr;
  }

  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-card.span-2 {
    grid-column: span 1;
  }

  .bento-card.tall {
    grid-row: span 1;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .store-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-contact {
    text-align: center;
  }

  /* Hide custom cursor on touch devices */
  .cursor-dot, .cursor-ring {
    display: none;
  }

  body {
    cursor: auto;
  }

  .btn-teal, .btn-outline, .btn-age-deny, .btn-loyalty, .hamburger {
    cursor: pointer;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 4rem 1.25rem;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .daily-deal-inner {
    flex-direction: column;
    gap: 0.4rem;
    text-align: center;
  }

  .daily-deals-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .age-gate-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }
}
