/* ============================================================
   SUNFLOWER CANNABIS DISPENSARY — Dark Premium Theme
   ============================================================ */
/* Fonts loaded asynchronously via <link> in each HTML page — no blocking @import */

/* --- Accessibility utility --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- CSS Variables --- */
:root {
  --bg-deep:       #0a1a0a;
  --bg-card:       #111f11;
  --bg-card-hover: #172817;
  --bg-section:    #0d200d;
  --bg-light:      #1a3a1a;
  --border:        #1e401e;
  --border-glow:   #2e6e2e;
  --gold:          #f0c030;
  --gold-dark:     #c8960c;
  --gold-glow:     rgba(240,192,48,0.25);
  --green-bright:  #4dcc5e;
  --green-mid:     #2a8a2a;
  --green-dark:    #1a6b1a;
  --text-primary:  #e8f5e8;
  --text-secondary:#8ab88a;
  --text-muted:    #4a7a4a;
  --white:         #ffffff;
  --shadow:        0 4px 20px rgba(0,0,0,0.5);
  --shadow-lg:     0 8px 40px rgba(0,0,0,0.7);
  --shadow-gold:   0 4px 24px rgba(240,192,48,0.2);
  --radius:        14px;
  --radius-sm:     8px;
  --font-body:     'Nunito', sans-serif;
  --font-display:  'Fredoka One', cursive;
  --transition:    0.3s cubic-bezier(0.4,0,0.2,1);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;   /* prevent horizontal scroll at the root level */
  max-width: 100%;
}
body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-primary);
  overflow-x: hidden;
  max-width: 100%;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ============================================================
   SCROLL REVEAL — elements animate in when visible
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ============================================================
   AGE GATE
   ============================================================ */
#age-gate {
  position: fixed;
  inset: 0;
  background: rgba(5, 10, 5, 0.94);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
#age-gate.hidden { display: none; }
.age-verified #age-gate { display: none; }

.age-gate-card {
  background: var(--bg-card);
  border-radius: 20px;
  border: 6px solid var(--green-dark);
  outline: 5px solid var(--gold);
  outline-offset: -1px;
  max-width: 560px;
  width: 100%;
  padding: 48px 44px 40px;
  text-align: center;
  box-shadow: 0 0 60px rgba(240,192,48,0.15), 0 20px 60px rgba(0,0,0,0.6);
}
.age-gate-logo {
  width: 120px;
  margin: 0 auto 24px;
}
.age-gate-card h1 {
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 12px;
  line-height: 1.2;
}
.age-gate-card p {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.6;
}
.age-gate-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
}
.btn-yes {
  padding: 14px 52px;
  border-radius: 50px;
  background: var(--gold);
  color: #0a1a0a;
  font-weight: 900;
  font-size: 1.1rem;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 20px rgba(240,192,48,0.4);
}
.btn-yes:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(240,192,48,0.6); }
.btn-no {
  padding: 14px 36px;
  border-radius: 50px;
  background: transparent;
  color: var(--text-secondary);
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid var(--border-glow);
  transition: border-color 0.2s, color 0.2s;
}
.btn-no:hover { border-color: var(--text-secondary); color: var(--text-primary); }

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8, 18, 8, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
  gap: 20px;
}
.nav-logo img {
  height: 54px;
  width: auto;
  max-width: 400px;
  object-fit: contain;
  /* saturate + contrast to keep green bold, drop-shadow for depth */
  filter: saturate(1.6) contrast(1.15) drop-shadow(0 1px 4px rgba(0,0,0,0.8));
}
.nav-tagline {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-align: center;
  flex: 1;
  letter-spacing: 0.04em;
  position: relative;
  top: 6px;
}
.nav-hours {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--bg-deep);
  background: var(--gold);
  padding: 6px 16px;
  border-radius: 50px;
  white-space: nowrap;
  animation: pulse-badge 3s ease-in-out infinite;
}
@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(240,192,48,0.4); }
  50%       { box-shadow: 0 0 0 6px rgba(240,192,48,0); }
}


.nav-login-btn {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border: 1px solid var(--border-glow);
  padding: 5px 14px;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.nav-login-btn:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(240,192,48,0.08);
}

.nav-categories {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: auto;
  scrollbar-width: none;
}
.nav-categories::-webkit-scrollbar { display: none; }
.nav-cat-link {
  display: inline-block;
  padding: 13px 28px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
  transition: color var(--transition);
}
.nav-cat-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  transition: left var(--transition), right var(--transition);
}
.nav-cat-link:hover { color: var(--gold); }
.nav-cat-link:hover::after { left: 16px; right: 16px; }

/* ============================================================
   TICKER / MARQUEE
   ============================================================ */
.ticker {
  background: var(--green-dark);
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-inner {
  display: inline-block;
  animation: ticker-scroll 30s linear infinite;
}
.ticker-inner:hover { animation-play-state: paused; }
.ticker span {
  display: inline-block;
  padding: 0 40px;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ticker span::before {
  content: '🌻 ';
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  background: var(--bg-deep);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: brightness(0.75) saturate(1.1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(5,12,5,0.3) 0%,
    rgba(5,12,5,0.55) 60%,
    rgba(5,12,5,0.82) 100%
  );
}

/* Floating particles */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  font-size: 1.4rem;
  opacity: 0;
  animation: float-up linear infinite;
}
.particle:nth-child(1)  { left: 8%;  animation-duration: 8s;  animation-delay: 0s;   font-size: 1.2rem; }
.particle:nth-child(2)  { left: 18%; animation-duration: 11s; animation-delay: 2s;   font-size: 1.6rem; }
.particle:nth-child(3)  { left: 30%; animation-duration: 9s;  animation-delay: 1s;   font-size: 1rem;   }
.particle:nth-child(4)  { left: 45%; animation-duration: 13s; animation-delay: 3.5s; font-size: 1.8rem; }
.particle:nth-child(5)  { left: 58%; animation-duration: 7s;  animation-delay: 0.5s; font-size: 1.1rem; }
.particle:nth-child(6)  { left: 70%; animation-duration: 10s; animation-delay: 4s;   font-size: 1.5rem; }
.particle:nth-child(7)  { left: 82%; animation-duration: 12s; animation-delay: 1.5s; font-size: 1.3rem; }
.particle:nth-child(8)  { left: 92%; animation-duration: 8.5s;animation-delay: 2.5s; font-size: 1rem;   }

@keyframes float-up {
  0%   { transform: translateY(110%) rotate(0deg);   opacity: 0;   }
  10%  { opacity: 0.7; }
  90%  { opacity: 0.4; }
  100% { transform: translateY(-20%) rotate(360deg); opacity: 0;   }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 20px 24px;
  text-align: center;
}
.hero-wordmark {
  width: min(1300px, 96vw);
  filter: drop-shadow(0 3px 12px rgba(0,0,0,0.9)) drop-shadow(0 0 20px rgba(0,0,0,0.7));
  margin-bottom: 20px;
  animation: hero-fade-in 1.2s ease forwards;
}
@keyframes hero-fade-in {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-subtitle {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  text-shadow: 0 2px 10px rgba(0,0,0,0.9);
  margin-bottom: 28px;
  letter-spacing: 0.04em;
  animation: hero-fade-in 1.2s ease 0.3s both;
}
.hero-subtitle em {
  font-style: normal;
  color: var(--gold);
}
.hero-ctas {
  display: flex;
  gap: 14px;
  animation: hero-fade-in 1.2s ease 0.6s both;
}
.btn-primary {
  display: inline-block;
  padding: 14px 48px;
  background: var(--gold);
  color: #0a1a0a;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(240,192,48,0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(240,192,48,0.65);
}
.btn-secondary {
  display: inline-block;
  padding: 14px 36px;
  background: rgba(255,255,255,0.08);
  color: var(--text-primary);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(4px);
  transition: background var(--transition), border-color var(--transition);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.6);
}

/* ============================================================
   INFO STRIP
   ============================================================ */
.info-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.info-strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border-right: 1px solid var(--border);
  transition: color var(--transition), background var(--transition);
}
.info-strip-item:last-child { border-right: none; }
.info-strip-item:hover { color: var(--gold); background: rgba(240,192,48,0.04); }
.info-strip-item .icon { font-size: 1.2rem; }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
  text-align: center;
  padding: 36px 24px 28px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.section-header h2 span { color: var(--gold); }
.section-header p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.section-divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 14px auto 0;
  border-radius: 2px;
}

/* ============================================================
   SPECIALS SECTION
   ============================================================ */
#specials {
  background: var(--bg-section);
  padding-bottom: 64px;
  position: relative;
  overflow: hidden;
}
#specials::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(240,192,48,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.specials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.special-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
}
.special-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold-dark);
}
.special-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--gold);
  color: #0a1a0a;
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  z-index: 2;
  animation: badge-pulse 2.5s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.06); }
}
.special-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: brightness(0.85) saturate(1.1);
  transition: filter var(--transition);
}
.special-card:hover .special-card-img { filter: brightness(1) saturate(1.2); }
.special-card-body {
  padding: 20px;
}
.special-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.special-card-body p {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 14px;
  line-height: 1.5;
}
.special-price {
  display: flex;
  align-items: center;
  gap: 10px;
}
.price-new {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
}
.price-old {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: line-through;
}

/* ============================================================
   CATEGORY CARDS — Solid dark cards with SVG icons
   ============================================================ */
#categories {
  background: var(--bg-deep);
  padding-bottom: 72px;
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px 32px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  cursor: pointer;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}
/* Gold top accent line */
.category-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.category-card:hover::before { transform: scaleX(1); }
/* Subtle radial glow behind icon on hover */
.category-card::after {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(240,192,48,0.12) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(240,192,48,0.25);
  border-color: rgba(240,192,48,0.35);
  background: var(--bg-card-hover);
}
.category-card:hover::after { opacity: 1; }

/* SVG icon wrapper */
.cat-icon-wrap {
  width: 100%;
  height: 180px;
  margin-bottom: 20px;
  color: var(--text-primary);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), color var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cat-icon-wrap svg {
  width: 80px;
  height: 80px;
}
.cat-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.category-card:hover .cat-icon-wrap {
  transform: scale(1.18) translateY(-4px);
  color: var(--gold);
}

/* Card text */
.category-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 8px;
  transition: color var(--transition);
}
.category-card:hover h3 { color: var(--gold); }
.category-card p {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 18px;
}
.cat-arrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition);
  background: rgba(240,192,48,0.12);
  padding: 6px 18px;
  border-radius: 50px;
  border: 1px solid rgba(240,192,48,0.35);
}
.category-card:hover .cat-arrow {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   DUTCHIE MENU EMBED
   ============================================================ */
#menu {
  background: var(--bg-section);
  padding-bottom: 0;
}
.dutchie-wrapper {
  width: 100%;
  min-height: 600px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}
.dutchie-wrapper iframe {
  width: 100%;
  height: calc(100vh - 110px);
  min-height: 700px;
  border: none;
  display: block;
}
.dutchie-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  min-height: 320px;
  background: var(--bg-card);
  border: 2px dashed var(--border-glow);
  margin: 0 24px 24px;
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
}
.dutchie-placeholder .placeholder-icon { font-size: 3.5rem; }
.dutchie-placeholder h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--gold); }
.dutchie-placeholder p { font-size: 0.95rem; font-weight: 600; color: var(--text-secondary); line-height: 1.6; max-width: 480px; }
.dutchie-placeholder code {
  background: var(--bg-light);
  color: var(--green-bright);
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-family: monospace;
}

/* ============================================================
   ABOUT / STORE SECTION
   ============================================================ */
#about-strip {
  background: var(--bg-deep);
  padding: 72px 24px;
}
.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.about-photos img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: filter var(--transition), transform var(--transition);
}
.about-photos img:hover { filter: brightness(1.1); transform: scale(1.02); }
.about-photos img:first-child {
  grid-column: 1 / -1;
  height: 250px;
}
.about-text h2 {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--text-primary);
  margin-bottom: 18px;
  line-height: 1.2;
}
.about-text h2 span { color: var(--gold); }
.about-text p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 14px;
}
.btn-outline {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 36px;
  border: 2px solid var(--gold-dark);
  color: var(--gold);
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition);
}
.btn-outline:hover { background: var(--gold); color: var(--bg-deep); }

/* ============================================================
   LOCATION SECTION
   ============================================================ */
#location {
  background: var(--bg-section);
  padding: 72px 24px;
}
.location-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.location-map iframe {
  width: 100%;
  height: 400px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  display: block;
  filter: invert(0.92) hue-rotate(140deg) saturate(0.6) brightness(0.85);
}
.location-info h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-bottom: 28px;
}
.location-detail { display: flex; flex-direction: column; gap: 22px; }
.location-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.loc-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 3px; }
.loc-text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-secondary);
  line-height: 1.5;
}
.loc-text span {
  display: block;
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.2;
}
.loc-text a { color: var(--gold); }
.loc-text a:hover { text-decoration: underline; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #050e05;
  color: var(--text-primary);
  padding: 52px 24px 0;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.footer-logo img {
  height: 80px;
  /* white-on-transparent PNG — visible on dark footer */
  opacity: 0.9;
}
.footer-links h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 14px;
  letter-spacing: 0.05em;
}
.footer-links a {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-info {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.7;
}
.footer-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

/* NY State Required Disclaimer — yellow box */
.disclaimer-box {
  background: #ffe84d;
  color: #1a1400;
  border-top: 4px solid #c8a800;
  padding: 14px 24px;
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}
.disclaimer-box strong { font-weight: 900; }
.footer-bottom {
  background: #030803;
  padding: 14px 24px;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--text-muted); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--gold); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.page-hero {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: var(--bg-deep);
}
.page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) saturate(0.9);
}
.page-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}
.page-hero-content h1 {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--white);
  text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}
.page-section {
  max-width: 920px;
  margin: 0 auto;
  padding: 64px 24px;
}
.page-section h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 18px;
}
.page-section h2 span { color: var(--gold); }
.page-section p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}
.store-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
}
.store-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: filter var(--transition);
}
.store-gallery img:hover { filter: brightness(1.15); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  border-top: 3px solid var(--gold-dark);
  transition: transform var(--transition), border-color var(--transition);
}
.value-card:hover { transform: translateY(-4px); border-top-color: var(--gold); }
.value-card .val-icon { font-size: 2rem; margin-bottom: 12px; }
.value-card h3 { font-family: var(--font-display); color: var(--gold); font-size: 1.2rem; margin-bottom: 8px; }
.value-card p { font-size: 0.9rem; color: var(--text-secondary); font-weight: 600; line-height: 1.5; margin: 0; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-map iframe {
  width: 100%;
  height: 440px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  filter: invert(0.92) hue-rotate(140deg) saturate(0.6) brightness(0.85);
}
.contact-details h2 { font-family: var(--font-display); font-size: 1.9rem; color: var(--text-primary); margin-bottom: 28px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 24px; }
.c-icon { font-size: 1.6rem; flex-shrink: 0; }
.c-text { font-weight: 700; color: var(--text-secondary); line-height: 1.5; }
.c-text span { display: block; font-size: 1.3rem; font-weight: 900; color: var(--text-primary); }
.c-text a { color: var(--gold); }

/* ============================================================
   ACTIVE CATEGORY NAV LINK (menu.html)
   ============================================================ */
.nav-cat-link.active {
  color: var(--gold) !important;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .specials-grid   { grid-template-columns: 1fr 1fr; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .about-inner, .location-inner, .contact-grid { grid-template-columns: 1fr; }
  .values-grid     { grid-template-columns: 1fr 1fr; }
  .store-gallery   { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  /* Nav — prevent overflow on small phones */
  .nav-top {
    padding: 8px 12px;
    gap: 8px;
    flex-wrap: wrap;
  }
  .nav-tagline { display: none; }
  .nav-logo img { height: 40px; }
  .nav-hours {
    font-size: 0.72rem;
    padding: 5px 10px;
  }
  .nav-login-btn {
    font-size: 0.7rem;
    padding: 4px 10px;
  }
  .nav-cat-link { font-size: 0.78rem; padding: 10px 12px; letter-spacing: 0.03em; }

  #hero { height: 380px; }
  .hero-wordmark { width: 94vw; }
  .hero-subtitle { font-size: 1rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .specials-grid   { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr; }
  .values-grid     { grid-template-columns: 1fr; }
  .store-gallery   { grid-template-columns: 1fr; }
  .about-photos    { grid-template-columns: 1fr; }
  .about-photos img:first-child { grid-column: auto; }
  .age-gate-card   { padding: 36px 20px 28px; }
  .age-gate-card h1 { font-size: 1.5rem; }
  .info-strip      { flex-wrap: wrap; }
  .info-strip-item { width: 50%; border-right: none; border-bottom: 1px solid var(--border); justify-content: center; }
  .footer-inner    { flex-direction: column; align-items: center; text-align: center; }

  /* Ensure nothing bleeds past the screen edge */
  section, .ticker, .info-strip, footer { max-width: 100vw; overflow-x: hidden; }
}
