/* ================================================================
   MONI'S MUNCHIES — style.css
   Shared stylesheet for all pages
   monismunchies.com | Y2K Neon Theme
   ================================================================ */

/* ===== GOOGLE FONTS (loaded in each HTML <head>) =====
   <link href="https://fonts.googleapis.com/css2?family=Fredoka+One&family=Nunito:wght@400;600;700;800;900&display=swap" rel="stylesheet">
   ===================================================== */


/* ================================================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ================================================================ */
:root {
  /* Brand Colors — MMv2 Logo Gradient Palette (Purple → Pink → Coral) */
  --orange:        #F07040;
  --orange-dark:   #C85030;
  --orange-light:  #F59070;
  --purple:        #7B52E8;
  --purple-dark:   #5B38C8;
  --lavender:      #B08AFF;
  --brown-sugar:   #6F5004;
  --cream:         #FFF8F0;

  /* Brand accent colors */
  --pink:        #E8457A;
  --pink-dark:   #C43060;
  --yellow:      #F07040;
  --yellow-dark: #C85030;
  --blue:        #00D4FF;
  --blue-dark:   #0099CC;
  --green:       #39FF14;

  /* Brand gradient (matches logo) */
  --brand-gradient: linear-gradient(90deg, #7B52E8, #E8457A, #F07040);

  /* Backgrounds — vivid purple-gradient-matched dark */
  --dark:        #100B28;
  --darker:      #08051A;
  --card-bg:     #1E1640;
  --card-hover:  #2A2058;
  --input-bg:    #180E32;

  /* Text */
  --text:        #FFFFFF;
  --text-muted:  rgba(255, 255, 255, 0.6);
  --text-faint:  rgba(255, 255, 255, 0.35);

  /* Borders */
  --border:        rgba(123, 82, 232, 0.4);
  --border-hover:  rgba(232, 69, 122, 0.75);
  --border-input:  rgba(123, 82, 232, 0.55);

  /* Glow Effects */
  --glow-pink:   0 0 9px #E8457A, 0 0 24px rgba(232, 69, 122, 0.38);
  --glow-yellow: 0 0 9px #F07040, 0 0 24px rgba(240, 112, 64, 0.38);
  --glow-purple: 0 0 9px #7B52E8, 0 0 24px rgba(123, 82, 232, 0.38);
  --glow-blue:   0 0 9px #00D4FF, 0 0 24px rgba(0, 212, 255, 0.38);

  /* Typography */
  --font-heading: 'Fredoka One', cursive;
  --font-body:    'Nunito', sans-serif;

  /* Spacing */
  --section-pad: 80px 2rem;
  --container:   1100px;

  /* Border Radius */
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-pill: 50px;

  /* Transitions */
  --transition: all 0.22s ease;
}


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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--dark);
  background-image:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(123, 82, 232, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(232, 69, 122, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 50% 30% at 50% 50%, rgba(240, 112, 64, 0.06) 0%, transparent 70%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  background: none;
}

input, textarea, select {
  font-family: var(--font-body);
}


/* ================================================================
   TYPOGRAPHY
   ================================================================ */
h1, h2, h3, h4, h5, h6,
.font-heading {
  font-family: var(--font-heading);
  line-height: 1.15;
}

.text-pink   { color: var(--pink);   }
.text-yellow { color: var(--yellow); }
.text-purple { color: var(--purple); }
.text-blue   { color: var(--blue);   }
.text-muted  { color: var(--text-muted); }

.glow-pink   { text-shadow: var(--glow-pink);   }
.glow-yellow { text-shadow: var(--glow-yellow); }
.glow-blue   { text-shadow: var(--glow-blue);   }


/* ================================================================
   LAYOUT UTILITIES
   ================================================================ */
.container {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

section {
  padding: var(--section-pad);
}

.section-dark   { background: var(--darker); }
.section-card   { background: var(--card-bg); }

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

.flex        { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between{ display: flex; align-items: center; justify-content: space-between; }
.flex-col    { display: flex; flex-direction: column; }
.gap-sm      { gap: 0.75rem; }
.gap-md      { gap: 1.5rem; }
.gap-lg      { gap: 2.5rem; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}


/* ================================================================
   SECTION LABEL / HEADING SYSTEM
   ================================================================ */
.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  text-shadow: var(--glow-blue);
  margin-bottom: 0.6rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 0.75rem;
}

.section-title .accent {
  color: var(--pink);
  text-shadow: var(--glow-pink);
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.divider {
  width: 56px;
  height: 4px;
  background: var(--brand-gradient);
  border-radius: 4px;
  box-shadow: var(--glow-purple);
  margin-bottom: 1rem;
}

.divider.centered { margin-left: auto; margin-right: auto; }


/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

/* Primary — hot pink solid */
.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: var(--text);
  box-shadow: var(--glow-pink);
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 0 21px var(--pink), 0 0 48px rgba(232, 69, 122, 0.34);
}
.btn-primary:active { transform: scale(0.98); }

/* Secondary — yellow outline */
.btn-secondary {
  background: transparent;
  color: var(--yellow);
  border: 2px solid var(--yellow);
  box-shadow: var(--glow-yellow);
}
.btn-secondary:hover {
  background: rgba(240, 112, 64, 0.1);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 0 21px var(--yellow), 0 0 48px rgba(240, 112, 64, 0.26);
}

/* Outline — purple */
.btn-outline {
  background: transparent;
  color: var(--purple);
  border: 2px solid var(--purple);
  box-shadow: 0 0 8px rgba(123, 82, 232, 0.26);
}
.btn-outline:hover {
  background: rgba(123, 82, 232, 0.12);
  color: var(--text);
  box-shadow: var(--glow-purple);
  transform: translateY(-2px);
}

/* Ghost — white outline */
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 2px solid rgba(255,255,255,0.25);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}

/* Small size modifier */
.btn-sm {
  padding: 9px 20px;
  font-size: 0.88rem;
}

/* Large size modifier */
.btn-lg {
  padding: 18px 44px;
  font-size: 1.1rem;
}

/* Full width */
.btn-block { width: 100%; }

/* Order button (on product cards) */
.btn-order {
  background: var(--pink);
  color: var(--text);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 0.85rem;
  box-shadow: 0 0 6px rgba(232, 69, 122, 0.38);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.btn-order:hover {
  transform: scale(1.08);
  box-shadow: var(--glow-pink);
}


/* ================================================================
   NEON ACCENT ELEMENTS
   ================================================================ */
.neon-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.35);
  color: var(--blue);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.neon-pill-pink {
  background: rgba(232, 69, 122, 0.1);
  border-color: rgba(232, 69, 122, 0.35);
  color: var(--pink);
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse-dot 1.6s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.8); }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(240, 112, 64, 0.12);
  border: 1px solid rgba(240, 112, 64, 0.3);
  color: var(--yellow);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}


/* ================================================================
   MARQUEE BAR (top of every page)
   ================================================================ */
.marquee-bar {
  background: linear-gradient(90deg, #7B52E8 0%, #E8457A 50%, #F07040 100%);
  padding: 8px 0;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.marquee-inner {
  display: inline-block;
  animation: marquee-scroll 22s linear infinite;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 2px;
  color: var(--text);
}

.marquee-inner:hover { animation-play-state: paused; }

.marquee-inner span { margin: 0 28px; }
.marquee-inner .m-star { color: var(--yellow); }

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ================================================================
   NAVIGATION
   ================================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 9000;
  height: 180px;
  background: rgba(8, 5, 26, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 2px solid var(--purple);
  box-shadow: 0 2px 21px rgba(123, 82, 232, 0.26);
  display: flex;
  align-items: center;
  padding: 0 2rem;
  gap: 2rem;
  transition: background 0.3s;
}

/* Logo */
.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 6px rgba(123, 82, 232, 0.3));
  text-decoration: none;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

/* Logo image version */
.nav-logo-img {
  height: 160px;
  width: auto;
  display: block;
  filter:
    brightness(1.25)
    saturate(1.3)
    drop-shadow(0 0 9px rgba(123, 82, 232, 0.45))
    drop-shadow(0 0 5px rgba(232, 69, 122, 0.3));
  transition: filter 0.22s ease, transform 0.22s ease;
}
.nav-logo:hover .nav-logo-img {
  filter:
    brightness(1.4)
    saturate(1.4)
    drop-shadow(0 0 17px rgba(232, 69, 122, 0.56))
    drop-shadow(0 0 8px rgba(123, 82, 232, 0.38));
  transform: scale(1.04);
}

/* Footer logo — keep it smaller */
.footer-brand .nav-logo-img {
  height: 64px;
  filter:
    brightness(1.15)
    saturate(1.2)
    drop-shadow(0 0 6px rgba(123, 82, 232, 0.34));
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-left: auto;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-gradient);
  border-radius: 2px;
  transition: width 0.22s ease;
  box-shadow: 0 0 8px rgba(123, 82, 232, 0.38);
}

/* Active nav link state (used on current-page links) */
.nav-links a.nav-active {
  color: var(--orange);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Nav CTA */
.nav-cta {
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: var(--text) !important;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-weight: 800 !important;
  font-size: 0.9rem !important;
  box-shadow: var(--glow-pink);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 17px var(--pink), 0 0 38px rgba(232, 69, 122, 0.3) !important;
  color: var(--yellow) !important;
}

/* ── ORDER DROPDOWN ── */
/* Shop nav dropdown (hover-triggered) */
.nav-dropdown {
  position: relative;
  list-style: none;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  background: rgba(13,0,34,0.98);
  border: 1px solid rgba(123,82,232,0.45);
  border-radius: 12px;
  min-width: 168px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.55), 0 0 15px rgba(123,82,232,0.15);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 200;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  padding: 12px 18px;
  color: var(--text-muted) !important;
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  text-decoration: none;
}

.nav-dropdown-menu a:last-child { border-bottom: none; }

.nav-dropdown-menu a:hover {
  background: rgba(123,82,232,0.12);
  color: var(--lavender) !important;
}

.nav-dropdown-menu a::after { display: none !important; }

/* Order Now CTA dropdown (click-triggered) */
.nav-order-dropdown {
  position: relative;
  list-style: none;
}

.nav-order-menu {
  position: absolute;
  top: calc(100% + 2px);
  right: 0;
  background: rgba(13,0,34,0.98);
  border: 1px solid rgba(232,69,122,0.45);
  border-radius: 12px;
  min-width: 168px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.55), 0 0 15px rgba(232,69,122,0.15);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 200;
}

/* Show on JS-toggled .open class OR keyboard focus-within */
.nav-order-dropdown.open .nav-order-menu,
.nav-order-dropdown:focus-within .nav-order-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-order-menu a {
  padding: 12px 18px;
  color: var(--text-muted) !important;
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  text-decoration: none;
}

.nav-order-menu a:last-child { border-bottom: none; }

.nav-order-menu a:hover {
  background: rgba(232,69,122,0.12);
  color: var(--pink) !important;
}

.nav-order-menu a::after { display: none !important; }

/* Hamburger (mobile) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-mobile {
  display: none;
  position: fixed;
  top: 68px;
  left: 0; right: 0;
  background: rgba(13, 0, 34, 0.98);
  backdrop-filter: blur(14px);
  border-bottom: 2px solid var(--purple);
  z-index: 8999;
  padding: 1.5rem 2rem 2rem;
  flex-direction: column;
  gap: 0;
  transform: translateY(-10px);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-mobile.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

.nav-mobile a {
  display: block;
  padding: 1rem 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--pink); }

.nav-mobile .nav-cta {
  display: block;
  text-align: center;
  margin-top: 1.25rem;
  padding: 14px;
  font-size: 1rem !important;
}


/* ================================================================
   PAGE HEADER (inner pages — not the homepage)
   ================================================================ */
.page-header {
  padding: 80px 2rem 60px;
  text-align: center;
  background: radial-gradient(ellipse at top, #252540 0%, var(--dark) 60%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-header-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(123,82,232,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123,82,232,0.07) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.page-header h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 0.75rem;
}

.page-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}


/* ================================================================
   HERO (homepage only)
   ================================================================ */
.hero {
  min-height: calc(100vh - 68px - 36px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 2rem 60px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at top, #252540 0%, var(--dark) 70%);
}

.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(123,82,232,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123,82,232,0.07) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.hero-stars {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-badge {
  display: inline-block;
  background: rgba(240, 112, 64, 0.12);
  border: 1px solid rgba(240, 112, 64, 0.35);
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 3px;
  padding: 6px 20px;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
  box-shadow: var(--glow-yellow);
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(3rem, 8.5vw, 6.5rem);
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

.hero-line1 {
  display: block;
  background: linear-gradient(135deg, var(--purple) 0%, var(--pink) 55%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 14px rgba(232, 69, 122, 0.38));
}

.hero-line2 {
  display: block;
  color: var(--text);
  text-shadow: 0 0 23px rgba(123, 82, 232, 0.53);
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-sub strong { color: var(--blue); font-weight: 800; }

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}

.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  animation: hero-bounce 2s ease-in-out infinite;
  opacity: 0.4;
}

.hero-scroll span {
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

@keyframes hero-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}


/* ================================================================
   PRODUCT CARDS
   ================================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--pink);
  box-shadow: 0 0 17px rgba(123, 82, 232, 0.38), 0 12px 30px rgba(0,0,0,0.4);
}

/* Product image area */
.product-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #1C1C2E, #111118);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}

/* Real photo variant */
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-img img {
  transform: scale(1.05);
}

.product-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(0deg, rgba(11,11,18,0.7) 0%, transparent 100%);
  pointer-events: none;
}

/* New / Popular badges */
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}

.product-badge.new {
  background: var(--yellow);
  color: #111118;
}

.product-badge.popular {
  background: var(--pink);
  color: var(--text);
  box-shadow: var(--glow-pink);
}

/* Product info */
.product-info {
  padding: 1rem 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
}

.product-category {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.25rem;
}

.product-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.product-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.55;
  text-align: center;
  margin-bottom: 0.85rem;
  flex: 1;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--yellow);
  text-shadow: 0 0 8px rgba(240, 112, 64, 0.38);
}

/* "Sold Out" state */
.product-card.sold-out .product-img { filter: grayscale(0.5) brightness(0.6); }
.product-card.sold-out .btn-order {
  background: rgba(255,255,255,0.1);
  color: var(--text-muted);
  cursor: not-allowed;
  box-shadow: none;
}


/* ================================================================
   CATEGORY FILTER TABS
   ================================================================ */
.category-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.cat-tag {
  padding: 9px 22px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  user-select: none;
}

.cat-tag:hover {
  border-color: rgba(232, 69, 122, 0.4);
  color: var(--text);
  background: rgba(232, 69, 122, 0.08);
}

.cat-tag.active {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--text);
  box-shadow: var(--glow-pink);
}


/* ================================================================
   ABOUT SECTION
   ================================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img-placeholder {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #252540, #111118);
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  box-shadow: 0 0 30px rgba(123, 82, 232, 0.19);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--text-faint);
  font-size: 4rem;
  overflow: hidden;
  position: relative;
}

.about-img-placeholder p {
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-body);
}

.about-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.about-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
}

.about-text p strong { color: var(--yellow); }


/* ================================================================
   TEAM CARDS
   ================================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.team-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}

.team-card:hover {
  border-color: var(--purple);
  box-shadow: 0 0 18px rgba(123, 82, 232, 0.23);
  transform: translateY(-4px);
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  box-shadow: var(--glow-purple);
  overflow: hidden;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}

.team-role {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.9rem;
}

.team-bio {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}


/* ================================================================
   TRUST / ICONS BAR
   ================================================================ */
.trust-bar {
  background: linear-gradient(135deg, #1C1C2E 0%, #111118 50%, #161628 100%);
  border-top: 1px solid rgba(0, 212, 255, 0.2);
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
  padding: 50px 2rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}

.trust-icon {
  font-size: 2.4rem;
  line-height: 1;
}

.trust-item h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
}

.trust-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}


/* ================================================================
   DEPOSIT / CTA BANNER
   ================================================================ */
.cta-banner {
  max-width: 920px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(232,69,122,0.12), rgba(123,82,232,0.12));
  border: 1.5px solid rgba(232, 69, 122, 0.35);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  box-shadow: 0 0 38px rgba(232, 69, 122, 0.06);
}

.cta-banner h2 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.cta-banner > p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.deposit-steps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.dep-step {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-pill);
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
}

.dep-num {
  width: 28px;
  height: 28px;
  background: var(--pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--text);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(232,69,122,0.5);
}


/* ================================================================
   FAQ
   ================================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item:hover {
  border-color: rgba(232, 69, 122, 0.4);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  transition: color 0.2s;
}

.faq-question:hover { color: var(--pink); }

.faq-icon {
  color: var(--pink);
  font-size: 1.3rem;
  line-height: 1;
  transition: transform 0.25s ease;
  flex-shrink: 0;
  font-style: normal;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
}

.faq-answer-inner {
  padding: 0 1.4rem 1.2rem;
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.75;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}


/* ================================================================
   CONTACT FORM
   ================================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
}

.form-group label .required { color: var(--pink); margin-left: 2px; }

.form-input,
.form-select,
.form-textarea {
  background: var(--input-bg);
  border: 1.5px solid var(--border-input);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text);
  font-size: 0.97rem;
  font-family: var(--font-body);
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(232, 69, 122, 0.15);
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-faint); }

.form-select option { background: var(--dark); }

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-note {
  font-size: 0.82rem;
  color: var(--text-faint);
  margin-top: 0.3rem;
}

/* Form success message */
.form-success {
  display: none;
  background: rgba(57, 255, 20, 0.1);
  border: 1px solid rgba(57, 255, 20, 0.3);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  color: var(--green);
}

/* Contact info cards */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--purple);
  transform: translateX(4px);
}

.contact-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  line-height: 1;
}

.contact-card h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.contact-card p,
.contact-card a {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-card a:hover { color: var(--blue); }


/* ================================================================
   ORDER FORM (order.html)
   ================================================================ */
.order-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
}

.order-form-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.order-summary-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: sticky;
  top: 88px;
}

.order-summary-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.85rem;
  font-size: 0.92rem;
}

.summary-row .label { color: var(--text-muted); }
.summary-row .value { font-weight: 700; text-align: right; }

.summary-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1rem 0;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.summary-total .label {
  font-family: var(--font-heading);
  font-size: 1rem;
}

.deposit-amount {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--yellow);
  text-shadow: 0 0 10px rgba(240,112,64,0.5);
}

.stripe-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-faint);
  margin-top: 0.75rem;
}

.stripe-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(100, 101, 255, 0.15);
  border: 1px solid rgba(100, 101, 255, 0.3);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #8b8fff;
}


/* ================================================================
   THANK YOU PAGE
   ================================================================ */
.thankyou-center {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 2rem;
}

.thankyou-icon {
  font-size: 5rem;
  margin-bottom: 1.5rem;
  animation: pop-in 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes pop-in {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.thankyou-center h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 0.75rem;
}

.thankyou-center p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 2rem;
}


/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: var(--darker);
  border-top: 2px solid rgba(123, 82, 232, 0.3);
  padding: 64px 2rem 28px;
}

.footer-body {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  max-width: var(--container);
  margin: 0 auto 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  flex: 1;
  min-width: 0;
}

.cottage-notice {
  flex-shrink: 0;
  width: 260px;
  align-self: flex-start;
}

.footer-brand .nav-logo {
  display: inline-block;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--text-faint);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 300px;
}

.social-links {
  display: flex;
  gap: 0.6rem;
}

.social-btn {
  width: 40px;
  height: 40px;
  background: rgba(232, 69, 122, 0.1);
  border: 1px solid rgba(232, 69, 122, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition: var(--transition);
}

.social-btn:hover {
  background: rgba(232, 69, 122, 0.25);
  box-shadow: var(--glow-pink);
  transform: scale(1.08);
}

.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--yellow);
  text-shadow: 0 0 8px rgba(240, 112, 64, 0.26);
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  color: var(--text-faint);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--lavender); }

.footer-coming-soon {
  color: rgba(255,255,255,0.25);
  font-size: 0.9rem;
  font-style: italic;
  margin-bottom: 0.6rem;
  display: block;
}

.cottage-notice {
  background: rgba(240, 112, 64, 0.06);
  border: 1px solid rgba(240, 112, 64, 0.18);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  font-size: 0.78rem;
  color: var(--text-faint);
  line-height: 1.65;
}

.cottage-notice strong { color: var(--yellow); }

.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: var(--text-faint);
}

.footer-bottom a { color: var(--pink); text-decoration: none; }
.footer-bottom a:hover { color: var(--yellow); }

.footer-links {
  display: flex;
  gap: 1.5rem;
}


/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

@keyframes star-twinkle {
  0%, 100% { opacity: 0.25; transform: scale(0.8); }
  50%       { opacity: 1;    transform: scale(1.2); }
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: var(--glow-pink); }
  50%       { box-shadow: 0 0 18px var(--pink), 0 0 45px rgba(232,69,122,0.38); }
}

/* Fade in on scroll (applied via JS) */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}




/* ================================================================
   MONI'S TABLE PAGE
   ================================================================ */
.mt-tips-section {
  padding: var(--section-pad);
}

.mt-tips-alt {
  background: var(--darker);
}

.mt-tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.mt-tip-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: var(--transition);
}

.mt-tip-card:hover {
  border-color: var(--purple);
  box-shadow: 0 0 18px rgba(123, 82, 232, 0.23);
  transform: translateY(-3px);
}

.mt-tip-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.mt-tip-card h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--yellow);
  margin-bottom: 0.5rem;
}

.mt-tip-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.mt-rules-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
  max-width: 760px;
}

.mt-rule {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  transition: var(--transition);
}

.mt-rule:hover {
  border-color: var(--pink);
}

.mt-rule-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--pink);
  opacity: 0.4;
  line-height: 1;
  flex-shrink: 0;
  min-width: 3rem;
}

.mt-rule-content h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.mt-rule-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ================================================================
   RESPONSIVE BREAKPOINTS
   ================================================================ */

/* Tablet */
@media (max-width: 960px) {
  :root { --section-pad: 60px 1.5rem; }

  .about-grid       { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid     { grid-template-columns: 1fr; gap: 2.5rem; }
  .order-layout     { grid-template-columns: 1fr; }
  .order-summary-card { position: static; }
  .footer-body      { flex-direction: column; }
  .cottage-notice   { width: 100%; }
  .footer-grid      { grid-template-columns: 1fr 1fr; gap: 1.75rem; }
}

/* Mobile */
@media (max-width: 640px) {
  :root { --section-pad: 50px 1rem; }

  .site-nav { padding: 0 1rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero { padding: 50px 1rem 40px; }
  .hero-btns { flex-direction: column; align-items: center; }

  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .product-info { padding: 0.75rem; }
  .product-name { font-size: 1rem; }

  .cta-banner { padding: 2rem 1.25rem; }
  .deposit-steps { flex-direction: column; align-items: center; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }

  .form-row { grid-template-columns: 1fr; }

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

  .page-header { padding: 50px 1rem 40px; }

  .order-form-card { padding: 1.5rem; }
}

/* Very small screens */
@media (max-width: 380px) {
  .product-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
}


/* ================================================================
   FLATPICKR CALENDAR — Neon Dark Theme Override
   ================================================================ */

/* Container */
.flatpickr-calendar {
  background: #161628 !important;
  border: 1.5px solid #7B52E8 !important;
  border-radius: 16px !important;
  box-shadow: 0 0 40px rgba(123, 82, 232, 0.4), 0 8px 32px rgba(0,0,0,0.6) !important;
  font-family: 'Nunito', sans-serif !important;
  padding: 8px !important;
  width: 320px !important;
}

.flatpickr-calendar.open { z-index: 9999 !important; }

/* Month header */
.flatpickr-month {
  background: transparent !important;
  color: #FFFFFF !important;
  height: 44px !important;
  display: flex;
  align-items: center;
}

.flatpickr-current-month {
  font-family: 'Fredoka One', cursive !important;
  font-size: 1.15rem !important;
  color: #F07040 !important;
  text-shadow: 0 0 8px rgba(240, 112, 64, 0.5) !important;
  padding-top: 0 !important;
}

.flatpickr-current-month input.cur-year {
  font-family: 'Fredoka One', cursive !important;
  color: #F07040 !important;
  font-size: 1.1rem !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
  background: #1C1C2E !important;
  color: #F07040 !important;
  font-family: 'Fredoka One', cursive !important;
  font-size: 1.1rem !important;
  border: none !important;
}

/* Prev / Next arrows */
.flatpickr-prev-month,
.flatpickr-next-month {
  color: #7B52E8 !important;
  fill: #7B52E8 !important;
  padding: 8px !important;
}

.flatpickr-prev-month:hover,
.flatpickr-next-month:hover {
  color: #E8457A !important;
  fill: #E8457A !important;
}

.flatpickr-prev-month svg,
.flatpickr-next-month svg { fill: inherit !important; }

/* Weekday headers */
.flatpickr-weekdays { background: transparent !important; }

span.flatpickr-weekday {
  background: transparent !important;
  color: rgba(123, 82, 232, 0.8) !important;
  font-weight: 800 !important;
  font-size: 0.8rem !important;
  letter-spacing: 1px !important;
}

/* Day cells */
.flatpickr-day {
  background: transparent !important;
  border-color: transparent !important;
  color: rgba(255, 255, 255, 0.7) !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  transition: all 0.15s ease !important;
  height: 38px !important;
  line-height: 38px !important;
}

/* Hover on valid days */
.flatpickr-day:hover:not(.flatpickr-disabled):not(.prevMonthDay):not(.nextMonthDay) {
  background: rgba(232, 69, 122, 0.2) !important;
  border-color: rgba(232, 69, 122, 0.5) !important;
  color: #FFFFFF !important;
}

/* Selected day */
.flatpickr-day.selected,
.flatpickr-day.selected:hover {
  background: #E8457A !important;
  border-color: #E8457A !important;
  color: #FFFFFF !important;
  box-shadow: 0 0 14px rgba(232, 69, 122, 0.7) !important;
  font-weight: 900 !important;
}

/* Today */
.flatpickr-day.today {
  border-color: #7B52E8 !important;
  color: #FFFFFF !important;
}

.flatpickr-day.today:hover:not(.flatpickr-disabled) {
  background: rgba(123, 82, 232, 0.2) !important;
}

/* Disabled days */
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
  color: rgba(255, 255, 255, 0.15) !important;
  cursor: not-allowed !important;
  text-decoration: line-through !important;
  background: transparent !important;
}

/* Weekend days (available) — subtle highlight */
.flatpickr-day.weekend-available {
  color: #F07040 !important;
  font-weight: 800 !important;
}

/* The text input that Flatpickr attaches to */
.flatpickr-input {
  cursor: pointer !important;
}

.flatpickr-input[readonly] {
  cursor: pointer !important;
}

/* Flatpickr alt input (the visible pretty version) */
input.flatpickr-input.form-input {
  cursor: pointer;
}


/* ================================================================
   ORDERS CLOSED BANNER
   ================================================================ */
.orders-closed-banner {
  display: none; /* shown via JS when past cutoff */
  background: linear-gradient(135deg, rgba(232, 69, 122, 0.18), rgba(123, 82, 232, 0.18));
  border: 1.5px solid rgba(232, 69, 122, 0.5);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.orders-closed-banner.visible { display: block; }

.orders-closed-banner .closed-icon { font-size: 2.5rem; margin-bottom: 0.5rem; }

.orders-closed-banner h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.5rem;
  color: #E8457A;
  text-shadow: 0 0 12px rgba(232, 69, 122, 0.5);
  margin-bottom: 0.5rem;
}

.orders-closed-banner p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.97rem;
  margin-bottom: 0;
  line-height: 1.6;
}

.orders-closed-banner .next-open {
  display: inline-block;
  background: rgba(240, 112, 64, 0.12);
  border: 1px solid rgba(240, 112, 64, 0.3);
  color: #F07040;
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.9rem;
  font-weight: 800;
  margin-top: 0.75rem;
}


/* ================================================================
   SOLD OUT BADGE (on product cards)
   ================================================================ */
.product-badge.sold-out-badge {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Sold out card overlay */
.product-card.sold-out .product-img::before {
  content: 'SOLD OUT';
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fredoka One', cursive;
  font-size: 1.3rem;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(13, 0, 34, 0.75);
}

/* Max qty warning on order form */
.qty-warning {
  display: none;
  color: #F07040;
  font-size: 0.82rem;
  font-weight: 700;
  margin-top: 0.35rem;
  gap: 0.4rem;
  align-items: center;
}

.qty-warning.visible { display: flex; }


/* ================================================================
   DATE PICKER WRAPPER (for the calendar icon/input combo)
   ================================================================ */
.date-input-wrap {
  position: relative;
}

.date-input-wrap .cal-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(123, 82, 232, 0.7);
  font-size: 1.1rem;
  pointer-events: none;
}


/* ================================================================
   PICKUP SCHEDULE CHIP (next available dates)
   ================================================================ */
.pickup-schedule {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.pickup-chip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(123, 82, 232, 0.2);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.88rem;
}

.pickup-chip .chip-date {
  font-weight: 800;
  color: #F07040;
  min-width: 90px;
}

.pickup-chip .chip-status {
  font-size: 0.78rem;
  padding: 3px 10px;
  border-radius: 50px;
  font-weight: 800;
}

.chip-status.open {
  background: rgba(57, 255, 20, 0.15);
  color: #39FF14;
  border: 1px solid rgba(57, 255, 20, 0.3);
}

.chip-status.closed {
  background: rgba(232, 69, 122, 0.12);
  color: rgba(232, 69, 122, 0.7);
  border: 1px solid rgba(232, 69, 122, 0.2);
}


/* ================================================================
   ORDER PAGE — TABS, CART, CUSTOM ORDER
   ================================================================ */

/* ── Order Type Tabs ── */
.order-tabs {
  display: flex;
  gap: 0;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-bottom: none;
  margin-bottom: 0;
}

.order-tab {
  flex: 1;
  padding: 1rem 1.5rem;
  background: var(--darker);
  color: var(--text-muted);
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  border-bottom: 3px solid transparent;
}

.order-tab:hover {
  background: rgba(123,82,232,0.1);
  color: var(--text);
}

.order-tab.active {
  background: var(--card-bg);
  color: var(--pink);
  border-bottom-color: var(--pink);
}

.order-form-card {
  border-radius: 0 0 16px 16px !important;
  border-top: 1px solid var(--border);
}

/* ── Tab panels ── */
.tab-panel { display: block; }
.tab-panel.hidden { display: none; }

/* ── Form section labels ── */
.form-section-label {
  font-size: 0.85rem;
  color: var(--blue);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 0 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

/* ── Cart Builder ── */
.cart-builder {
  background: rgba(123,82,232,0.05);
  border: 1px solid rgba(123,82,232,0.2);
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}

.cart-builder-selects {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  margin-bottom: 0.75rem;
}

.cart-qty-group {
  width: 100px;
  flex-shrink: 0;
}

.btn-add-cart {
  width: 100%;
  background: rgba(123,82,232,0.2);
  color: var(--purple);
  border: 1px solid rgba(123,82,232,0.4);
  padding: 0.65rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.1s;
  font-family: var(--font-body);
  letter-spacing: 0.5px;
}

.btn-add-cart:hover {
  background: var(--purple);
  color: #fff;
  transform: translateY(-1px);
}

.btn-add-cart:active {
  transform: translateY(0);
}

/* ── Cart List ── */
.cart-list-wrap {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.25rem;
  min-height: 60px;
}

.cart-empty {
  text-align: center;
  color: var(--text-faint);
  font-size: 0.88rem;
  padding: 1.25rem;
  margin: 0;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
  background: var(--card-bg);
  transition: background 0.15s;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item:hover {
  background: rgba(123,82,232,0.04);
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-meta {
  display: block;
  font-size: 0.78rem;
  color: var(--text-faint);
  margin-top: 1px;
}

/* +/− quantity controls */
.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

.cart-qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--darker);
  color: var(--text);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s;
  flex-shrink: 0;
}

.cart-qty-btn:hover {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
}

.cart-qty-num {
  min-width: 20px;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--yellow);
}

.cart-item-right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.cart-item-price {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text);
  min-width: 36px;
  text-align: right;
}

.cart-remove {
  background: none;
  border: none;
  color: var(--text-faint);
  font-size: 0.9rem;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 4px;
  line-height: 1;
  transition: color 0.15s, background 0.15s;
}

.cart-remove:hover {
  color: var(--pink);
  background: rgba(232,69,122,0.1);
}

/* Cart subtotal strip */
.cart-subtotal {
  background: rgba(123,82,232,0.08);
  border-top: 1px solid var(--border);
  padding: 0.75rem 1rem;
}

.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.cart-subtotal-row:last-child { margin-bottom: 0; }

.cart-subtotal-row.deposit-row {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  border-top: 1px solid var(--border);
  padding-top: 0.5rem;
  margin-top: 0.25rem;
}


/* ── Custom Order Section ── */
.custom-order-callout {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(0,212,255,0.06);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 12px;
  padding: 1.1rem 1.25rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.custom-callout-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 1px;
}

.custom-order-callout strong {
  color: var(--blue);
  display: block;
  margin-bottom: 0.25rem;
}

.custom-deposit-note {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  background: rgba(240,112,64,0.05);
  border: 1px solid rgba(240,112,64,0.2);
  border-radius: 10px;
  padding: 1rem 1.15rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-top: 1.25rem;
}

.custom-deposit-note strong {
  color: var(--yellow);
}

/* ── Responsive cart on mobile ── */
@media (max-width: 480px) {
  .cart-builder-selects {
    flex-direction: column;
    gap: 0.75rem;
  }
  .cart-qty-group {
    width: 100%;
  }
  .cart-item {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .cart-item-controls {
    order: 3;
  }
  .order-tab {
    padding: 0.85rem 0.75rem;
    font-size: 0.88rem;
  }
}


/* ================================================================
   NEWSLETTER SECTION (homepage & other pages)
   ================================================================ */
.newsletter-section {
  padding: var(--section-pad);
  background: linear-gradient(135deg, rgba(123,82,232,0.08) 0%, rgba(232,69,122,0.06) 100%);
  border-top: 1px solid rgba(123,82,232,0.18);
  border-bottom: 1px solid rgba(123,82,232,0.18);
}

.newsletter-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(123,82,232,0.25);
  border-radius: 20px;
  padding: 2.5rem;
}

.newsletter-icon {
  font-size: 3rem;
  line-height: 1;
  filter: drop-shadow(0 0 12px rgba(232,69,122,0.5));
  flex-shrink: 0;
}

.newsletter-text .section-label {
  font-size: 0.78rem;
  margin-bottom: 0.4rem;
  display: block;
}

.newsletter-title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--white);
  margin: 0 0 0.4rem;
  line-height: 1.15;
}

.newsletter-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
  max-width: 38ch;
}

.newsletter-form {
  flex-shrink: 0;
}

.newsletter-inputs {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  flex-wrap: wrap;
}

.newsletter-fname,
.newsletter-email {
  min-width: 0;
}

.newsletter-fname  { width: 140px; }
.newsletter-email  { width: 220px; }
.newsletter-btn    { white-space: nowrap; flex-shrink: 0; }

.newsletter-fine {
  font-size: 0.73rem;
  color: var(--text-faint);
  margin: 0.6rem 0 0;
}

@media (max-width: 1024px) {
  .newsletter-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
  }
  .newsletter-icon { display: none; }
  .newsletter-desc { max-width: 50ch; margin: 0 auto; }
  .newsletter-inputs { justify-content: center; }
  .newsletter-fname,
  .newsletter-email { width: auto; flex: 1 1 160px; }
}

@media (max-width: 520px) {
  .newsletter-inputs { flex-direction: column; align-items: stretch; }
  .newsletter-fname,
  .newsletter-email,
  .newsletter-btn   { width: 100%; }
}


/* ================================================================
   NEWSLETTER POPUP MODAL
   ================================================================ */
.newsletter-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(10,0,26,0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.newsletter-popup.visible {
  display: flex;
  opacity: 1;
}

.popup-card {
  position: relative;
  background: linear-gradient(145deg, #111118 0%, #1C1C2E 100%);
  border: 1px solid rgba(123,82,232,0.45);
  border-radius: 20px;
  padding: 2.5rem 2rem 2rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow:
    0 0 60px rgba(123,82,232,0.25),
    0 24px 60px rgba(0,0,0,0.6);
}

.newsletter-popup.visible .popup-card {
  animation: popup-slide-up 0.4s cubic-bezier(0.34,1.56,0.64,1) both;
}

@keyframes popup-slide-up {
  from { transform: translateY(32px) scale(0.96); opacity: 0; }
  to   { transform: translateY(0)    scale(1);    opacity: 1; }
}

.popup-close {
  position: absolute;
  top: 0.85rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text-faint);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  transition: color 0.2s;
  font-family: sans-serif;
}
.popup-close:hover { color: var(--pink); }

.popup-icon {
  font-size: 3rem;
  margin-bottom: 0.75rem;
  display: block;
  filter: drop-shadow(0 0 14px rgba(232,69,122,0.55));
}

.popup-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--white);
  margin: 0 0 0.6rem;
  line-height: 1.15;
}

.popup-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0 0 1.25rem;
  line-height: 1.5;
}

.popup-input {
  width: 100%;
  margin-bottom: 0.65rem;
}

.popup-skip {
  display: block;
  background: none;
  border: none;
  color: var(--text-faint);
  font-size: 0.78rem;
  cursor: pointer;
  margin-top: 1rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
  font-family: var(--font-body);
  padding: 0;
}
.popup-skip:hover { color: var(--text-muted); }


/* ================================================================
   PAYMENT METHOD SELECTOR
   ================================================================ */

.payment-method-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.payment-option {
  cursor: pointer;
  position: relative;
}

.payment-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.payment-option-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.9rem 0.5rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: var(--card-bg);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  text-align: center;
}

.payment-option input[type="radio"]:checked + .payment-option-inner {
  border-color: var(--pink);
  background: rgba(255, 45, 120, 0.08);
  box-shadow: 0 0 0 3px rgba(255, 45, 120, 0.15);
}

.payment-option[data-method="cashapp"] input[type="radio"]:checked + .payment-option-inner {
  border-color: #00d632;
  background: rgba(0, 214, 50, 0.08);
  box-shadow: 0 0 0 3px rgba(0, 214, 50, 0.15);
}

.payment-option[data-method="venmo"] input[type="radio"]:checked + .payment-option-inner {
  border-color: #008cff;
  background: rgba(0, 140, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(0, 140, 255, 0.15);
}

.payment-option[data-method="cash"] input[type="radio"]:checked + .payment-option-inner {
  border-color: #FFD700;
  background: rgba(255, 215, 0, 0.08);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.15);
}

/* ── Amount choice (deposit vs full) ── */
.amount-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.amount-option {
  cursor: pointer;
  position: relative;
}

.amount-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}

.amount-option-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 1rem 0.75rem;
  border-radius: var(--radius-md);
  border: 2px solid var(--border);
  background: var(--card-bg);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  text-align: center;
}

.amount-option-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text);
}

.amount-option-price {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--pink);
  font-family: var(--font-heading);
}

.amount-option-sub {
  font-size: 0.78rem;
  color: var(--text-faint);
}

.amount-option input[type="radio"]:checked + .amount-option-inner {
  border-color: var(--purple);
  background: rgba(123, 82, 232, 0.1);
  box-shadow: 0 0 0 3px rgba(123, 82, 232, 0.2);
}

.amount-option-inner:hover {
  border-color: var(--border-hover);
  background: var(--card-hover);
}

@media (max-width: 480px) {
  .amount-choice-grid { grid-template-columns: 1fr; }
}

.payment-option-inner:hover {
  border-color: rgba(255,255,255,0.3);
}

.payment-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.payment-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1;
}

.payment-sub {
  font-size: 0.72rem;
  color: var(--text-faint);
  line-height: 1;
}

/* Alt-payment notice box */
.payment-alt-notice {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: rgba(255, 200, 0, 0.08);
  border: 1px solid rgba(255, 200, 0, 0.35);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  transition: opacity 0.25s;
}

.payment-alt-notice .alt-notice-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.payment-alt-notice strong {
  color: var(--yellow);
}

/* Payment handle display panels (sidebar) */
.pay-handle-card {
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
  text-align: center;
  display: none;
}

.pay-handle-card.cash-card {
  background: rgba(255, 215, 0, 0.07);
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.pay-handle-card.cashapp-card {
  background: rgba(0, 214, 50, 0.07);
  border: 1px solid rgba(0, 214, 50, 0.3);
}

.pay-handle-card.venmo-card {
  background: rgba(0, 140, 255, 0.07);
  border: 1px solid rgba(0, 140, 255, 0.3);
}

/* QR Code placeholder */
.qr-placeholder {
  width: 154px;
  height: 154px;
  margin: 0.85rem auto 0.75rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.cashapp-qr { border: 2px dashed rgba(0, 214, 50, 0.4); }
.venmo-qr   { border: 2px dashed rgba(0, 140, 255, 0.4); }

.qr-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.qr-fallback {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  text-align: center;
  color: var(--text-faint);
  font-size: 0.7rem;
  padding: 0.5rem;
  line-height: 1.4;
}
.qr-fallback span { font-size: 1.6rem; margin-bottom: 0.15rem; }

.pay-handle-label {
  font-size: 0.8rem;
  color: var(--text-faint);
  margin-bottom: 0.4rem;
}

.pay-handle-value {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 0.35rem;
}

.pay-handle-card.cashapp-card .pay-handle-value { color: #00d632; }
.pay-handle-card.venmo-card .pay-handle-value { color: #008cff; }

.pay-handle-warning {
  font-size: 0.78rem;
  color: var(--yellow);
  font-weight: 700;
}

@media (max-width: 480px) {
  .payment-method-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  .payment-option-inner {
    padding: 0.7rem 0.25rem;
  }
  .payment-icon { font-size: 1.25rem; }
  .payment-name { font-size: 0.82rem; }
  .payment-sub  { font-size: 0.65rem; }
  .qr-placeholder { width: 130px; height: 130px; }
}


/* ================================================================
   PRODUCT LABEL INFO TOGGLE (shop page)
   ================================================================ */

.label-toggle-btn {
  display: block;
  width: fit-content;
  margin: 0.5rem auto 0.75rem;
  text-align: center;
  align-items: center;
  gap: 0.35rem;
  background: none;
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--text-faint);
  font-size: 0.75rem;
  font-family: var(--font-body);
  cursor: pointer;
  padding: 0.25rem 0.65rem;
  margin: 0.35rem 0 0;
  transition: border-color 0.2s, color 0.2s;
  line-height: 1.4;
}

.label-toggle-btn:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.label-toggle-btn .toggle-arrow {
  transition: transform 0.25s;
  display: inline-block;
}

.label-toggle-btn.open .toggle-arrow {
  transform: rotate(180deg);
}

/* Panel is hidden inline — content is read by the modal JS */
.label-info-panel { display: none; }

/* ── Label Info Modal ── */
.label-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9500;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.label-modal-overlay.open {
  display: flex;
}
.label-modal-card {
  background: var(--card-bg);
  border: 1px solid rgba(123, 82, 232, 0.4);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 540px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 0 30px rgba(123, 82, 232, 0.19);
  animation: label-modal-in 0.2s ease;
}
@keyframes label-modal-in {
  from { opacity: 0; transform: scale(0.96) translateY(12px); }
  to   { opacity: 1; transform: scale(1)    translateY(0);    }
}
.label-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  transition: color 0.15s;
}
.label-modal-close:hover { color: var(--text); }
.label-modal-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--yellow);
  margin-bottom: 1.25rem;
  padding-right: 2rem;
}
.label-modal-body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}
.label-modal-body strong { color: var(--text); }
.label-modal-body .label-cottage-notice {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
  margin-top: 0.5rem;
}

.label-info-inner {
  border-top: 1px solid var(--border);
  margin-top: 0.5rem;
  padding: 0.75rem 0 0.25rem;
  font-size: 0.74rem;
  color: var(--text-faint);
  line-height: 1.55;
}

.label-info-inner p {
  margin: 0 0 0.45rem;
}

.label-info-inner strong {
  color: var(--text-muted);
}

.label-cottage-notice {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.3);
  border-top: 1px solid var(--border);
  padding-top: 0.45rem;
  margin-top: 0.35rem;
  line-height: 1.4;
}

/* ================================================================
   LABEL INFO SECTION (bottom of shop.html)
   ================================================================ */
.label-info-section {
  background: var(--darker);
  border-top: 1px solid var(--border);
  padding: 4rem 1.5rem 3rem;
}

.label-info-inner {
  /* override old card-inner styles from the modal era */
  border-top: none;
  margin-top: 0;
  padding: 0;
  font-size: inherit;
  color: inherit;
  line-height: inherit;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.label-info-heading {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--text);
  margin: 0 0 0.4rem;
  text-align: center;
}

.label-info-subhead {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
  margin: 0 0 2.5rem;
}

/* Category heading */
.label-group {
  margin-bottom: 1.5rem;
}

.label-group-heading {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--lavender);
  padding: 0.4rem 0;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.02em;
}

/* Individual accordion item */
.label-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.label-item-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.75rem 2rem 0.75rem 0;
  cursor: pointer;
  position: relative;
  transition: color 0.15s;
}

.label-item-btn::after {
  content: '+';
  position: absolute;
  right: 0.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--text-muted);
  transition: transform 0.2s, color 0.15s;
  line-height: 1;
}

.label-item-btn[aria-expanded="true"]::after {
  content: '−';
  color: var(--pink);
}

.label-item-btn:hover {
  color: var(--pink);
}

/* Collapsible body */
.label-item-body {
  display: none;
  padding: 0 0 1rem 0;
}

.label-item-body.open {
  display: block;
}

/* Three-column-ish rows */
.label-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 0.4rem 1rem;
  margin-bottom: 0.55rem;
  align-items: baseline;
}

.label-key {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  padding-top: 0.05rem;
}

.label-val {
  font-size: 0.82rem;
  color: var(--text-faint);
  line-height: 1.55;
}

.label-allergen {
  display: inline-block;
  background: rgba(232, 69, 122, 0.15);
  color: var(--pink);
  border: 1px solid rgba(232, 69, 122, 0.3);
  border-radius: 3px;
  padding: 0 4px;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.4;
}

/* Bottom cottage notice */
.label-section-notice {
  margin-top: 2.5rem;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 600px) {
  .label-info-heading { font-size: 1.5rem; }
  .label-row { grid-template-columns: 76px 1fr; }
}


/* ================================================================
   EVENTS PAGE
   ================================================================ */

/* Upcoming Events */
.events-section {
  padding: 4rem 1.5rem;
}

.section-header-row {
  margin-bottom: 2.5rem;
}

/* Event cards (JS-rendered from config) */
.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.event-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: border-color 0.2s, transform 0.2s;
}

.event-card:hover {
  border-color: var(--purple);
  transform: translateY(-2px);
}

.event-date-block {
  background: var(--purple);
  border-radius: 10px;
  padding: 0.5rem 0.75rem;
  text-align: center;
  min-width: 52px;
  flex-shrink: 0;
}

.event-date-block .event-month {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.8);
  display: block;
}

.event-date-block .event-day {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: #fff;
  line-height: 1;
  display: block;
}

.event-details {
  flex: 1;
}

.event-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--text);
  margin: 0 0 0.3rem;
}

.event-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.event-meta span {
  display: inline-block;
  margin-right: 0.75rem;
}

.event-desc {
  font-size: 0.85rem;
  color: var(--text-faint);
  line-height: 1.5;
  margin: 0;
}

.event-tag {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(123,82,232,0.15);
  color: var(--lavender);
  border: 1px solid rgba(123,82,232,0.3);
  border-radius: 4px;
  padding: 2px 7px;
}

/* Empty state */
.event-empty-state {
  text-align: center;
  padding: 4rem 1.5rem;
  background: var(--card-bg);
  border: 1px dashed var(--border);
  border-radius: 16px;
  max-width: 520px;
  margin: 0 auto;
}

.event-empty-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.event-empty-state h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--text);
  margin: 0 0 0.75rem;
}

.event-empty-state p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 1.5rem;
}

/* Venues */
.venues-section {
  background: var(--darker);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 1.5rem;
}

.venues-intro {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 620px;
  margin-bottom: 2.5rem;
}

.venue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.venue-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem 1.25rem 1.4rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: border-color 0.2s, transform 0.2s;
}

.venue-card:hover {
  border-color: var(--pink);
  transform: translateY(-2px);
}

.venue-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 0.1rem;
}

.venue-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.venue-detail {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--lavender);
  margin-bottom: 0.5rem;
}

.venue-desc {
  font-size: 0.83rem;
  color: var(--text-faint);
  line-height: 1.5;
}

/* What to Expect */
.expect-section {
  padding: 4rem 1.5rem;
}

.expect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 768px) {
  .expect-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.expect-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.expect-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.expect-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.expect-img-placeholder {
  background: linear-gradient(135deg, var(--card-bg), var(--input-bg));
  border: 1px solid var(--border);
  border-radius: 20px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 3.5rem;
}

.expect-img-placeholder p {
  font-size: 0.85rem;
  color: var(--text-faint);
  margin: 0;
}

/* Notify Me */
.notify-section {
  background: var(--darker);
  border-top: 1px solid var(--border);
  padding: 4rem 1.5rem;
}

.notify-card {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.notify-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.notify-card h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin: 0 0 0.75rem;
}

.notify-card > p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.notify-fields {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.notify-fields input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--input-bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.notify-fields input[type="email"]:focus {
  outline: none;
  border-color: var(--purple);
}

.notify-success {
  margin-top: 1rem;
  font-weight: 700;
  color: #4ade80;
}

.notify-error {
  margin-top: 1rem;
  font-size: 0.88rem;
  color: var(--pink);
}

.notify-alt {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-faint);
}

.notify-alt a {
  color: var(--lavender);
  text-decoration: underline;
}

/* Nav active state */
.site-nav .nav-links a.active {
  color: var(--pink);
  font-weight: 800;
}

@media (max-width: 768px) {
  .event-grid { grid-template-columns: 1fr; }
  .venue-grid { grid-template-columns: 1fr; }
  .notify-fields { flex-direction: column; align-items: stretch; }
  .notify-fields input[type="email"] { min-width: unset; }
}


/* ================================================================
   LABELS PAGE — food-label-card system
   ================================================================ */

/* Filter bar */
.labels-filter-bar {
  position: sticky;
  top: 180px;   /* matches nav height */
  z-index: 90;
  background: rgba(10, 7, 25, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0.6rem 0;
}

.labels-filter-inner {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.label-filter-btn {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.35rem 1rem;
  cursor: pointer;
  transition: all 0.18s;
  white-space: nowrap;
}

.label-filter-btn:hover {
  border-color: var(--purple);
  color: var(--lavender);
}

.label-filter-btn.active {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
}

/* Grid */
.labels-section {
  padding: 3rem 1.5rem 5rem;
}

.labels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  align-items: start;
}

.labels-no-results {
  text-align: center;
  padding: 4rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ── The food label card ── */
.food-label-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card-bg);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, border-color 0.2s;
}

.food-label-card:hover {
  transform: translateY(-3px);
  border-color: var(--purple);
}

/* Branded header — colour-coded by category */
.flc-header {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 60%, var(--pink) 100%);
  padding: 1.1rem 1.25rem 1rem;
  position: relative;
}

.flc-header--pastry {
  background: linear-gradient(135deg, #7B52E8 0%, #E8457A 60%, #F07040 100%);
}

.flc-header--brownie {
  background: linear-gradient(135deg, #3d1a10 0%, #8B4513 50%, #5B38C8 100%);
}

.flc-header--muffin {
  background: linear-gradient(135deg, #1a4a2e 0%, #2E8B57 50%, #7B52E8 100%);
}

.flc-header--mix {
  background: linear-gradient(135deg, #1a3a5c 0%, #2563EB 50%, #7B52E8 100%);
}

.flc-brand {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.25rem;
}

.flc-product-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.flc-category-badge {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.9);
  padding: 2px 10px;
}

/* Label body — mimics a real product label */
.flc-body {
  background: #f5f2eb;   /* warm off-white — actual label feel */
  color: #111;
  padding: 1rem 1.1rem 0.75rem;
  flex: 1;
  font-family: 'Arial Narrow', Arial, sans-serif;
}

/* Net weight row */
.flc-netweight {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.flc-nw-label {
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #333;
  white-space: nowrap;
}

.flc-nw-value {
  font-size: 0.82rem;
  font-weight: 700;
  color: #111;
}

/* Thick rule — like FDA label separator */
.flc-divider-thick {
  height: 6px;
  background: #111;
  margin: 0.4rem 0;
  border-radius: 1px;
}

.flc-divider {
  height: 1px;
  background: #aaa;
  margin: 0.55rem 0;
}

/* Ingredients / To Prepare fields */
.flc-field {
  margin-bottom: 0.4rem;
}

.flc-field-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #222;
  margin-bottom: 0.2rem;
}

.flc-field-value {
  margin: 0;
  font-size: 0.78rem;
  color: #333;
  line-height: 1.5;
}

.flc-field--prep .flc-field-label {
  color: #2563EB;
}

.flc-field--prep .flc-field-value {
  color: #1e3a5f;
  background: rgba(37,99,235,0.06);
  border-left: 2px solid #2563EB;
  padding: 0.3rem 0.5rem;
  border-radius: 0 4px 4px 0;
}

/* Allergen row */
.flc-allergens {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.flc-allergen-label {
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #111;
  white-space: nowrap;
}

.flc-allergen-pill {
  display: inline-block;
  background: #111;
  color: #fff;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  border-radius: 3px;
  padding: 1px 6px;
  white-space: nowrap;
}

.flc-allergen-note {
  font-size: 0.7rem;
  color: #555;
  font-style: italic;
}

/* Producer + cottage notice */
.flc-producer {
  font-size: 0.74rem;
  color: #222;
  margin-bottom: 0.3rem;
}

.flc-producer strong {
  font-weight: 900;
}

.flc-cottage {
  font-size: 0.65rem;
  color: #666;
  line-height: 1.4;
  font-style: italic;
}

/* Order link footer */
.flc-footer {
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  padding: 0.65rem 1.1rem;
  display: flex;
  justify-content: flex-end;
}

.flc-order-link {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--lavender);
  text-decoration: none;
  transition: color 0.15s;
}

.flc-order-link:hover {
  color: var(--pink);
}

/* Hidden cards when filtering */
.food-label-card.hidden {
  display: none;
}

@media (max-width: 640px) {
  .labels-grid { grid-template-columns: 1fr; }
  .labels-filter-bar { top: 0; }
  .flc-product-name { font-size: 1.1rem; }
}
