/*
Theme Name: Cannabis Realm NY
Theme URI: https://cannabisrealmny.com
Author: Cannabis Realm NY
Author URI: https://cannabisrealmny.com
Description: Premium cannabis dispensary theme for Cannabis Realm of New York. Black/gold/white brand aesthetic with Dispense product integration.
Version: 1.7.39
License: Proprietary
Text Domain: crny-theme
*/

/* ============================================
   CSS RESET & BASE
   ============================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Brand tokens */
  --realm-gold: #CA943B;
  --realm-gold-hover: #b8852f;
  --realm-green: #548F3D;
  --realm-black: #000000;
  --realm-white: #FFFFFF;

  /* Grays */
  --gray-50: #fafbfc;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;

  /* Dispense SDK vars */
  --brand-primary: #CA943B;
  --brand-secondary: #548F3D;
  --bg-color: #ffffff;
  --text-color: #000000;
  --border-color: #e5e7eb;

  /* Layout */
  --max-width: 80rem;
  --header-height: 64px;
}

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

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

/* Screen reader only (SEO H1) */
.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;
}

/* Skip to content link (accessibility) */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--realm-gold);
  color: #000;
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
  font-size: 0.85rem;
  z-index: 999999;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

/* Global focus styles (accessibility) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid var(--realm-gold);
  outline-offset: 2px;
}

/* ============================================
   PAGE PRELOADER
   ============================================ */

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__inner {
  text-align: center;
}

.preloader__logo {
  animation: preloader-pulse 1.2s ease-in-out infinite;
  margin-bottom: 1.5rem;
}

.preloader__bar {
  width: 120px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}

.preloader__bar-fill {
  height: 100%;
  width: 0%;
  background: var(--realm-gold);
  border-radius: 2px;
  animation: preloader-fill 1.5s ease-out forwards;
}

@keyframes preloader-pulse {
  0%, 100% { opacity: 0.6; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1); }
}

@keyframes preloader-fill {
  0% { width: 0%; }
  60% { width: 70%; }
  100% { width: 100%; }
}

/* ============================================
   AGE GATE + LOCATION PICKER
   ============================================ */

.age-gate {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.age-gate.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.age-gate__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}

.age-gate__modal {
  position: relative;
  z-index: 2;
  max-width: 520px;
  width: 90%;
  text-align: center;
}

.age-gate__logo {
  margin-bottom: 1rem;
  animation: preloader-pulse 2s ease-in-out infinite;
}

.age-gate__title {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.age-gate__title span {
  color: var(--realm-gold);
}

.age-gate__divider {
  width: 60px;
  height: 1px;
  background: var(--realm-gold);
  margin: 1.25rem auto;
  opacity: 0.5;
}

.age-gate__question {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 1.75rem;
}

.age-gate__buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 280px;
  margin: 0 auto 1.5rem;
}

.age-gate__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.age-gate__btn--yes {
  background: var(--realm-gold);
  color: #000;
}

.age-gate__btn--yes:hover {
  background: #d4a347;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(202, 148, 59, 0.3);
}

.age-gate__btn--no {
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.age-gate__btn--no:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.age-gate__legal {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.7rem;
  line-height: 1.6;
  max-width: 360px;
  margin: 0 auto;
}

.age-gate__subtitle {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.age-gate__desc {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.age-gate__locations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 500px) {
  .age-gate__locations {
    grid-template-columns: 1fr;
  }
}

.age-gate__location {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem 1.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
}

.age-gate__location:hover {
  border-color: rgba(202, 148, 59, 0.4);
  background: rgba(202, 148, 59, 0.06);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.age-gate__location-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(202, 148, 59, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;
}

.age-gate__location-name {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.age-gate__location-address {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
  margin: 0;
  line-height: 1.4;
}

.age-gate__location-hours {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
  margin: 0;
}

.age-gate__coming-soon {
  margin-top: 1.25rem;
  text-align: center;
}

.age-gate__coming-soon-label {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.6rem;
}

.age-gate__coming-soon-list {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.age-gate__coming-soon-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
  padding: 0.4rem 0.85rem;
  border-radius: 50px;
}

.age-gate__under21 {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  min-height: 44px;
  transition: color 0.2s;
  margin-top: 0.5rem;
}

.age-gate__under21:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================================
   v1.7.33 — Simplified age gate (age verification only)
   Slimmer modal, single yes button, store picker removed
   (header carries that job now). Pairs with age-gate__modal--simple.
   ============================================================ */
.age-gate__modal--simple {
  max-width: 480px;
}

.age-gate__question {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  margin: 1.25rem 0 0.5rem;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.age-gate__law {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  text-align: center;
  margin: 0 0 1.75rem;
  letter-spacing: 0.01em;
}

.age-gate__yes {
  background: #CA943B;
  color: #0A0A0A;
  border: 0;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 14px 32px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  min-width: 220px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.age-gate__yes:hover,
.age-gate__yes:focus-visible {
  background: #d9a849;
  outline: none;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(202, 148, 59, 0.28);
}

.age-gate__yes:focus-visible {
  box-shadow: 0 0 0 3px rgba(202, 148, 59, 0.5);
}

.age-gate__foot {
  color: rgba(202, 148, 59, 0.65);
  font-size: 0.78rem;
  text-align: center;
  margin: 1.75rem 0 0;
  padding-top: 1.25rem;
  border-top: 0.5px solid rgba(255, 255, 255, 0.08);
  line-height: 1.5;
  width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  .age-gate__yes { transition: none; }
  .age-gate__yes:hover,
  .age-gate__yes:focus-visible { transform: none; box-shadow: 0 0 0 3px rgba(202, 148, 59, 0.5); }
}

.age-gate__location-tag {
  display: inline-block;
  background: rgba(202, 148, 59, 0.15);
  color: var(--realm-gold);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-top: 0.25rem;
}

/* ============================================
   LOCATION BAR (persistent)
   ============================================ */

.location-bar {
  background: rgba(0, 0, 0, 0.95);
  border-bottom: 1px solid rgba(202, 148, 59, 0.15);
  padding: 0.5rem 0;
  position: relative;
  z-index: 4999;
  margin-top: var(--header-height);
}

.location-bar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.location-bar__info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
}

.location-bar__info strong {
  color: var(--realm-gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.location-bar__change {
  background: none;
  border: 1px solid rgba(202, 148, 59, 0.3);
  color: var(--realm-gold);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.5rem 1rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s;
}

.location-bar__change:hover {
  background: rgba(202, 148, 59, 0.1);
  border-color: var(--realm-gold);
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--realm-gold), #d4a347, var(--realm-gold));
  z-index: 99999;
  transition: width 0.05s linear;
  box-shadow: 0 0 8px rgba(202, 148, 59, 0.4);
}

/* ============================================
   VANILLA-TILT CARD ENHANCEMENTS
   ============================================ */

.category-card {
  transform-style: preserve-3d;
}

.category-card__content,
.category-card__arrow {
  transform: translateZ(30px);
}


body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--realm-black);
  background: var(--realm-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

body.no-scroll {
  overflow: hidden;
}

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

a:visited {
  color: inherit;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
}

input {
  font-family: inherit;
  font-size: inherit;
}

ul, ol {
  list-style: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

.font-display {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.font-body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 400;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.max-w-7xl {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.container-px {
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container-px {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container-px {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.text-realm-gold { color: var(--realm-gold); }
.text-realm-black { color: var(--realm-black); }
.text-realm-white { color: var(--realm-white); }
.text-gray-400 { color: var(--gray-400); }
.text-gray-500 { color: var(--gray-500); }
.text-gray-600 { color: var(--gray-600); }

.bg-realm-black { background-color: var(--realm-black); }
.bg-realm-gold { background-color: var(--realm-gold); }
.bg-realm-white { background-color: var(--realm-white); }

/* Scrollbar hide for carousels */
.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

/* Screen reader only */
.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;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background-color: var(--realm-gold);
  color: var(--realm-black);
  font-family: system-ui, -apple-system, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.6rem 1.1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 0.7rem;
  white-space: nowrap;
}

.btn-gold:hover {
  background-color: var(--realm-gold-hover);
  box-shadow: 0 0 30px rgba(202, 148, 59, 0.3);
  transform: scale(1.02);
}

.btn-gold:active {
  transform: scale(0.98);
}

.btn-gold-rect {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--realm-gold);
  color: var(--realm-black);
  font-family: system-ui, -apple-system, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  font-size: 0.875rem;
}

.btn-gold-rect:hover {
  background-color: var(--realm-gold-hover);
  box-shadow: 0 0 20px rgba(202, 148, 59, 0.25);
  transform: scale(1.02);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--realm-gold);
  border: 1px solid var(--realm-gold);
  font-family: system-ui, -apple-system, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 1rem 2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 0.875rem;
}

.btn-outline:hover {
  background-color: var(--realm-gold);
  color: var(--realm-black);
}

.btn-outline-rect {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--realm-white);
  font-family: system-ui, -apple-system, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  font-size: 0.875rem;
}

.btn-outline-rect:hover {
  border-color: var(--realm-gold);
  color: var(--realm-gold);
}

.btn-coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid var(--gray-600);
  color: var(--gray-400);
  font-family: system-ui, -apple-system, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.6rem 1.1rem;
  border-radius: 50px;
  font-size: 0.7rem;
  cursor: default;
  white-space: nowrap;
}

.btn-coming-soon .badge-soon {
  font-size: 10px;
  background: rgba(202, 148, 59, 0.2);
  color: var(--realm-gold);
  padding: 0.125rem 0.5rem;
  border-radius: 50px;
  letter-spacing: 0.15em;
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */

.announcement-bar {
  background: var(--realm-black);
  text-align: center;
  padding: 0.625rem 2.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  position: relative;
  z-index: 4998;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  min-height: 40px;
}

.announcement-bar__text {
  color: var(--realm-gold);
  display: block;
  transition: opacity 0.3s, transform 0.3s;
}

.announcement-bar__text.is-hidden {
  opacity: 0;
  transform: translateY(-8px);
  position: absolute;
  left: 0;
  right: 0;
}

.announcement-bar__text.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.announcement-bar__close {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-500);
  transition: color 0.2s;
  padding: 0.75rem;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.announcement-bar__close:hover {
  color: var(--realm-white);
}

.announcement-bar__close svg {
  width: 14px;
  height: 14px;
}

/* ============================================
   HEADER / NAVBAR
   ============================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5000;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid rgba(202, 148, 59, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.92);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

/* WordPress admin bar offset */
.admin-bar .site-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

@media (min-width: 640px) {
  .header-inner {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .header-inner {
    padding: 0 2rem;
  }
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-logo img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.header-logo__text {
  font-family: system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--realm-white);
}

.header-logo__text span {
  color: var(--realm-gold);
}

/* Desktop nav */
.header-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .header-nav {
    display: flex;
  }
}

.header-nav a {
  position: relative;
  font-size: 0.875rem;
  color: var(--realm-white);
  transition: color 0.2s;
}

.header-nav a:hover {
  color: var(--realm-gold);
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--realm-gold);
  transition: width 0.3s;
}

.header-nav a:hover::after {
  width: 100%;
}

/* Location pill */
.location-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--realm-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 0.375rem 0.875rem;
  transition: all 0.2s;
}

.location-pill:hover {
  border-color: var(--realm-gold);
  color: var(--realm-gold);
}

.location-pill__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
}

.location-pill__icon {
  color: var(--realm-gold);
}

.location-dropdown__item:hover {
  background: rgba(202, 148, 59, 0.1) !important;
}

/* Right actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-actions__btn {
  color: var(--gray-600);
  padding: 0.5rem;
  transition: color 0.2s;
}

.header-actions__btn:hover {
  color: var(--realm-black);
}

.header-cta {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: var(--realm-gold);
  color: var(--realm-black);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  transition: all 0.2s;
}

@media (min-width: 640px) {
  .header-cta {
    display: inline-flex;
  }
}

.header-cta:hover {
  background: var(--realm-gold-hover);
}

/* Mobile hamburger */
.mobile-toggle {
  display: block;
  color: var(--realm-white);
  padding: 0.5rem;
}

@media (min-width: 768px) {
  .mobile-toggle {
    display: none;
  }
}

/* Mobile menu */
.mobile-menu {
  display: none;
  background: rgba(0, 0, 0, 0.97);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem;
}

.mobile-menu.is-open {
  display: block;
}

@media (min-width: 768px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.mobile-menu__links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  padding: 0.75rem 0;
  min-height: 44px;
  display: flex;
  align-items: center;
  transition: color 0.2s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-menu__links a:hover {
  color: var(--realm-gold);
}

/* Mobile Location Switcher */
.mobile-location-switcher {
  padding-bottom: 0.75rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-location-switcher__label {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
}

.mobile-location-switcher__buttons {
  display: flex;
  gap: 0.5rem;
}

.mobile-location-switcher__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.75rem;
  min-height: 48px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
}

.mobile-location-switcher__btn.is-active {
  background: rgba(202, 148, 59, 0.12);
  border-color: var(--realm-gold);
  color: var(--realm-gold);
}

.mobile-menu__cta {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--realm-gold);
  color: var(--realm-black);
  font-weight: 700;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.75rem;
  border-radius: 0.5rem;
  transition: background 0.2s;
}

.mobile-menu__cta:hover {
  background: var(--realm-gold-hover);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  background: var(--realm-black);
  overflow: hidden;
  height: calc(100vh - var(--header-height) - 75px);
  height: calc(100dvh - var(--header-height) - 75px);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Gold radial glow */
.hero__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__glow-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(202, 148, 59, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(160px);
}

/* Smoke drift layers */
.hero__smoke {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__smoke-layer-1 {
  position: absolute;
  top: -25%;
  left: -25%;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  filter: blur(120px);
  background: radial-gradient(ellipse at center, rgba(202, 148, 59, 0.06) 0%, transparent 70%);
  animation: drift-1 20s ease-in-out infinite;
}

.hero__smoke-layer-2 {
  position: absolute;
  bottom: -25%;
  right: -25%;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  filter: blur(100px);
  background: radial-gradient(ellipse at center, rgba(202, 148, 59, 0.05) 0%, transparent 70%);
  animation: drift-2 25s ease-in-out infinite;
}

.hero__smoke-shimmer {
  position: absolute;
  top: 33%;
  left: 50%;
  transform: translateX(-50%);
  width: 40vw;
  height: 30vh;
  border-radius: 50%;
  filter: blur(80px);
  background: radial-gradient(ellipse at center, rgba(202, 148, 59, 0.07) 0%, transparent 60%);
  animation: shimmer-pulse 8s ease-in-out infinite;
}

/* Gold line accent */
.hero__line {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(202, 148, 59, 0.4), transparent);
  animation: fade-in 1.2s 1.6s both;
}

@media (min-width: 640px) {
  .hero__line {
    width: 300px;
  }
}

/* Gold particles */
.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__particle {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(202, 148, 59, 0.3);
  animation: float-particle var(--duration, 12s) ease-in-out infinite;
}

/* Hero content */
.hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 1rem 1rem 1.5rem;
  width: 100%;
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero__content {
    padding: 1.5rem 1.5rem 2rem;
  }
}

/* Logo */
.hero__logo {
  width: 150px;
  height: 150px;
  margin: 0 auto 0.15rem;
  object-fit: contain;
  animation: fade-up 0.8s 0.3s both;
}

@media (min-width: 640px) {
  .hero__logo {
    width: 200px;
    height: 200px;
  }
}

@media (min-width: 1024px) {
  .hero__logo {
    width: 250px;
    height: 250px;
  }
}

/* Tagline badge */
.hero__tagline {
  display: inline-block;
  color: rgba(202, 148, 59, 0.7);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 0.5rem;
  animation: fade-up 0.8s 0.45s both;
}

@media (min-width: 640px) {
  .hero__tagline {
    font-size: 0.875rem;
    letter-spacing: 0.35em;
    margin-bottom: 1rem;
  }
}

/* Main headline */
.hero__headline {
  font-family: system-ui, -apple-system, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 2.25rem;
  color: var(--realm-white);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  animation: fade-up 0.8s 0.6s both;
}

@media (min-width: 380px) {
  .hero__headline {
    font-size: 3rem;
  }
}

.hero__headline > span {
  display: block;
  white-space: nowrap;
}

.hero__headline .gold {
  color: var(--realm-gold);
  font-size: 3rem;
  letter-spacing: 0.2em;
  margin-top: 0.1rem;
}

@media (min-width: 640px) {
  .hero__headline {
    font-size: 3rem;
    margin-bottom: 0.75rem;
  }
  .hero__headline .gold {
    font-size: 3.75rem;
    letter-spacing: 0.25em;
  }
}

@media (min-width: 768px) {
  .hero__headline {
    font-size: 3.5rem;
  }
  .hero__headline .gold {
    font-size: 4.5rem;
    letter-spacing: 0.28em;
  }
}

@media (min-width: 1024px) {
  .hero__headline {
    font-size: 4rem;
  }
  .hero__headline .gold {
    font-size: 5rem;
    letter-spacing: 0.3em;
  }
}

/* Divider */
.hero__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.6rem;
  animation: fade-up 0.8s 0.75s both;
}

@media (min-width: 640px) {
  .hero__divider {
    margin-bottom: 0.75rem;
  }
}

.hero__divider-line {
  width: 3rem;
  height: 1px;
}

.hero__divider-line--left {
  background: linear-gradient(to right, transparent, rgba(202, 148, 59, 0.5));
}

.hero__divider-line--right {
  background: linear-gradient(to left, transparent, rgba(202, 148, 59, 0.5));
}

.hero__divider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(202, 148, 59, 0.6);
}

@media (min-width: 640px) {
  .hero__divider-line {
    width: 4rem;
  }
}

/* Subtitle */
.hero__subtitle {
  color: var(--gray-400);
  font-size: 0.8rem;
  max-width: 36rem;
  margin: 0 auto 1rem;
  line-height: 1.5;
  animation: fade-up 0.8s 0.9s both;
}

@media (min-width: 640px) {
  .hero__subtitle {
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
  }
}

@media (min-width: 768px) {
  .hero__subtitle {
    font-size: 0.9rem;
  }
}

/* Location buttons */
.hero__locations {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  animation: fade-up 0.8s 1.05s both;
}

@media (min-width: 640px) {
  .hero__locations {
    flex-direction: row;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: nowrap;
  }
}

/* Bottom accent: Licensed / Lab Tested / Premium */
.hero__bottom-accent {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  color: var(--gray-600);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  animation: fade-in 1s 2s both;
}

@media (min-width: 640px) {
  .hero__bottom-accent {
    margin-top: 1.5rem;
  }
}

.hero__bottom-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(202, 148, 59, 0.4);
}

/* Bottom vignette */
.hero__vignette {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8rem;
  background: linear-gradient(to top, var(--realm-black), transparent);
  pointer-events: none;
}

/* ============================================
   SECTION HEADERS (reusable)
   ============================================ */

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header__title {
  font-family: system-ui, -apple-system, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.5rem;
  color: var(--realm-black);
}

@media (min-width: 640px) {
  .section-header__title {
    font-size: 1.875rem;
  }
}

.section-header__title--white {
  color: var(--realm-white);
}

.section-header__title .gold {
  color: var(--realm-gold);
}

.section-header__subtitle {
  color: var(--gray-400);
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.section-header__subtitle .gold {
  color: var(--realm-gold);
}

/* Section header with right-side link */
.section-header--split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  margin-bottom: 2rem;
}

.section-header--split .section-header__link {
  color: var(--realm-gold);
  font-size: 0.875rem;
  font-weight: 500;
  transition: text-decoration 0.2s;
  white-space: nowrap;
}

.section-header--split .section-header__link:hover {
  text-decoration: underline;
}

/* ============================================
   SHOP BY CATEGORY (BENTO GRID)
   ============================================ */

.categories-section {
  background: var(--realm-white);
  padding: 4rem 0;
}

@media (min-width: 640px) {
  .categories-section {
    padding: 5rem 0;
  }
}

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

@media (min-width: 480px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 640px) {
  .categories-grid {
    gap: 1rem;
  }
}

@media (min-width: 768px) {
  .categories-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.category-card {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.category-card__link {
  position: absolute;
  inset: 0;
  z-index: 10;
}

.category-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card:hover .category-card__image {
  transform: scale(1.05);
}

.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
  transition: background 0.3s;
}

.category-card:hover .category-card__overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.15));
}

.category-card__content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
}

@media (min-width: 640px) {
  .category-card__content {
    padding: 1.25rem;
  }
}

.category-card__name {
  font-family: system-ui, -apple-system, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.125rem;
  color: var(--realm-white);
}

@media (min-width: 640px) {
  .category-card__name {
    font-size: 1.25rem;
  }
}

/* Hover arrow indicator */
.category-card__arrow {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2rem;
  height: 2rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.category-card:hover .category-card__arrow {
  opacity: 1;
}

.category-card__arrow svg {
  width: 16px;
  height: 16px;
  color: white;
}

/* ============================================
   PRODUCT CAROUSELS (Dispense Widgets)
   ============================================ */

.product-section {
  padding: 4rem 0;
}

@media (min-width: 640px) {
  .product-section {
    padding: 5rem 0;
  }
}

.product-section--white {
  background: var(--realm-white);
}

.product-section--black {
  background: var(--realm-black);
}

.product-section--gray {
  background: var(--gray-50);
}

.product-carousel-wrapper {
  overflow-x: auto;
  padding-bottom: 1rem;
}

.product-carousel-wrapper::-webkit-scrollbar {
  display: none;
}

/* Scroll arrow buttons */
.carousel-nav {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .carousel-nav {
    display: flex;
  }
}

.carousel-nav__btn {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  transition: all 0.2s;
}

.carousel-nav__btn:hover {
  color: var(--realm-black);
  border-color: var(--gray-400);
}

.carousel-nav__btn--dark {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--gray-400);
}

.carousel-nav__btn--dark:hover {
  border-color: var(--realm-gold);
  color: var(--realm-gold);
}

/* ============================================
   SHOP BY MOOD
   ============================================ */

.mood-section {
  background: var(--gray-50);
  padding: 4rem 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

@media (min-width: 640px) {
  .mood-section {
    padding: 5rem 0;
  }
}

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

@media (min-width: 640px) {
  .mood-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
  }
}

.mood-card {
  display: block;
  background: var(--realm-white);
  border: 1px solid var(--gray-200);
  border-radius: 0.75rem;
  padding: 1.25rem;
  text-align: center;
  transition: all 0.3s;
}

@media (min-width: 640px) {
  .mood-card {
    padding: 1.5rem;
  }
}

.mood-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border-color: rgba(202, 148, 59, 0.4);
}

.mood-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  transition: transform 0.3s;
}

.mood-card:hover .mood-card__icon {
  transform: scale(1.1);
}

.mood-card__icon--relaxed { background: #ecfdf5; color: #059669; }
.mood-card__icon--energized { background: #fffbeb; color: #f59e0b; }
.mood-card__icon--creative { background: #f5f3ff; color: #8b5cf6; }
.mood-card__icon--happy { background: #fefce8; color: #eab308; }
.mood-card__icon--sleepy { background: #eef2ff; color: #6366f1; }

.mood-card__name {
  font-family: system-ui, -apple-system, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  color: var(--realm-black);
  margin-bottom: 0.125rem;
}

.mood-card__desc {
  color: var(--gray-400);
  font-size: 0.75rem;
}

/* ============================================
   DEALS BAR
   ============================================ */

.deals-section {
  background: var(--realm-white);
  padding: 4rem 0;
}

@media (min-width: 640px) {
  .deals-section {
    padding: 5rem 0;
  }
}

.deal-tile {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  overflow: hidden;
}

.deal-tile__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.deal-tile__badge {
  display: inline-block;
  background: rgba(202, 148, 59, 0.15);
  color: var(--realm-gold);
  font-family: system-ui, -apple-system, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.7rem;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(202, 148, 59, 0.25);
  margin-bottom: 1rem;
}

.deal-tile__title {
  color: #fff;
  font-weight: 700;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 0.5rem;
}

.deal-tile__subtitle {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
  margin: 0;
}

.deal-tile__offers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.deal-tile__offer {
  background: #000;
  padding: 2rem 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.deal-tile__offer-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(202, 148, 59, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.deal-tile__offer-title {
  color: #CA943B;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 0.25rem;
}

.deal-tile__offer-desc {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  margin: 0;
  line-height: 1.5;
}

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

.deal-tile__button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--realm-gold);
  color: #000;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.9rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s, gap 0.3s;
}

.deal-tile__button:hover {
  background: #d4a347;
  gap: 0.75rem;
}

@media (max-width: 639px) {
  .deal-tile {
    padding: 2rem 1.5rem;
  }
  .deal-tile__offers {
    grid-template-columns: 1fr;
  }
  .deal-tile__title {
    font-size: 1.5rem;
  }
}

/* ============================================
   FEATURE BANNER (Value Props)
   ============================================ */

.feature-banner {
  background: var(--realm-white);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 640px) {
  .feature-banner {
    padding: 7rem 0;
  }
}

.feature-banner__glow {
  position: absolute;
  top: 33%;
  left: 25%;
  width: 500px;
  height: 500px;
  background: rgba(202, 148, 59, 0.03);
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.feature-banner__grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .feature-banner__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
}

.feature-banner__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(202, 148, 59, 0.1);
  border: 1px solid rgba(202, 148, 59, 0.2);
  color: var(--realm-gold);
  font-family: system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  margin-bottom: 2rem;
}

.feature-banner__heading {
  font-family: system-ui, -apple-system, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.875rem;
  color: var(--realm-black);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .feature-banner__heading {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .feature-banner__heading {
    font-size: 3rem;
  }
}

.feature-banner__heading .gold {
  color: var(--realm-gold);
}

.feature-banner__body {
  color: var(--gray-600);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 32rem;
}

.feature-banner__ctas {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
}

.feature-banner__ctas .btn-gold-rect,
.feature-banner__ctas .btn-outline-rect {
  justify-content: center;
}

@media (min-width: 640px) {
  .feature-banner__ctas {
    flex-direction: row;
    align-items: flex-start;
  }
}

/* Value prop items */
.value-props {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.value-prop {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  transition: border-color 0.3s;
}

.value-prop:hover {
  border-color: var(--realm-gold);
}

.value-prop__icon {
  width: 2.75rem;
  height: 2.75rem;
  background: rgba(202, 148, 59, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--realm-gold);
}

.value-prop__title {
  color: var(--realm-black);
  font-weight: 600;
  font-size: 0.875rem;
}

.value-prop__desc {
  color: var(--gray-500);
  font-size: 0.75rem;
  margin-top: 0.125rem;
}

/* ============================================
   CTA BANNER (FREE DELIVERY)
   ============================================ */

.cta-banner {
  background: var(--realm-black);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 640px) {
  .cta-banner {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .cta-banner {
    padding: 6rem 0;
  }
}

.cta-banner__glow-1 {
  position: absolute;
  top: 0;
  right: 25%;
  width: 600px;
  height: 600px;
  background: rgba(202, 148, 59, 0.04);
  border-radius: 50%;
  filter: blur(150px);
  pointer-events: none;
}

.cta-banner__glow-2 {
  position: absolute;
  bottom: 0;
  left: 25%;
  width: 400px;
  height: 400px;
  background: rgba(202, 148, 59, 0.03);
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.cta-banner__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .cta-banner__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.cta-banner__heading {
  font-family: system-ui, -apple-system, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 2.25rem;
  color: var(--realm-white);
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
  .cta-banner__heading {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .cta-banner__heading {
    font-size: 3.75rem;
  }
}

.cta-banner__heading .gold {
  color: var(--realm-gold);
}

.cta-banner__body {
  color: var(--gray-400);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 32rem;
}

/* Delivery visual */
.delivery-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.delivery-visual__card {
  position: relative;
  width: 100%;
  max-width: 24rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.delivery-visual__circle {
  width: 7rem;
  height: 7rem;
  background: rgba(202, 148, 59, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--realm-gold);
}

@media (min-width: 640px) {
  .delivery-visual__circle {
    width: 8rem;
    height: 8rem;
  }
}

.delivery-visual__badge-free {
  position: absolute;
  top: -0.75rem;
  right: -0.75rem;
  background: var(--realm-gold);
  color: var(--realm-black);
  font-family: system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.375rem 0.75rem;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.delivery-visual__badge-same-day {
  position: absolute;
  bottom: -0.75rem;
  left: -0.75rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--realm-white);
  font-size: 0.75rem;
  padding: 0.375rem 0.75rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.delivery-visual__badge-licensed {
  position: absolute;
  top: 1rem;
  left: -1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--realm-white);
  font-size: 0.75rem;
  padding: 0.375rem 0.75rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

/* Value props row */
.cta-value-props {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 640px) {
  .cta-value-props {
    margin-top: 4rem;
  }
}

.cta-value-props__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .cta-value-props__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.cta-value-prop {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .cta-value-prop {
    justify-content: flex-start;
  }
}

.cta-value-prop__icon {
  width: 2.75rem;
  height: 2.75rem;
  background: rgba(202, 148, 59, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--realm-gold);
}

.cta-value-prop__label {
  color: var(--realm-white);
  font-family: system-ui, -apple-system, sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============================================
   DELIVERY SECTION
   ============================================ */

.delivery-section {
  background: var(--realm-white);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

/* Old fragile attribute selectors removed — now using .delivery-steps-grid class */

@media (min-width: 640px) {
  .delivery-section {
    padding: 5rem 0;
  }
}

.delivery-section__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: rgba(202, 148, 59, 0.03);
  border-radius: 50%;
  filter: blur(150px);
  pointer-events: none;
}

.delivery-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .delivery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.delivery-tile {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  overflow: hidden;
}

@media (max-width: 639px) {
  .delivery-tile {
    padding: 2rem 1.25rem;
  }
}

.delivery-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .delivery-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.delivery-step {
  background: #000;
  padding: 2rem 1.25rem;
  text-align: center;
}

.delivery-zones-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .delivery-zones-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .delivery-zones-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.delivery-zone-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 1rem;
  transition: all 0.3s;
}

.delivery-zone-card:hover {
  border-color: var(--realm-gold);
  background: rgba(202, 148, 59, 0.08);
  transform: translateY(-2px);
}

.delivery-zone-card__inner {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}

.delivery-zone-card__icon {
  color: var(--realm-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.delivery-zone-card__name {
  color: var(--realm-white);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.3;
}

.delivery-zone-card__min {
  color: var(--gray-500);
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

.delivery-zone-card__min .gold {
  color: var(--realm-gold);
  font-weight: 500;
}

/* ============================================
   REVIEWS
   ============================================ */

.reviews-section {
  background: var(--gray-50);
  padding: 4rem 0;
  overflow: hidden;
}

@media (min-width: 640px) {
  .reviews-section {
    padding: 5rem 0;
  }
}

.reviews-row {
  display: flex;
  overflow: hidden;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

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

.reviews-row__inner {
  display: flex;
  gap: 1.25rem;
  flex-shrink: 0;
  animation: marquee var(--duration, 60s) linear infinite;
}

.reviews-row--reverse .reviews-row__inner {
  animation-direction: reverse;
}

.reviews-row:hover .reviews-row__inner {
  animation-play-state: paused;
}

.review-card {
  width: 300px;
  flex-shrink: 0;
  background: var(--realm-white);
  border: 1px solid var(--gray-200);
  border-radius: 0.75rem;
  padding: 1.25rem;
  transition: box-shadow 0.3s;
}

@media (min-width: 640px) {
  .review-card {
    width: 340px;
  }
}

.review-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.review-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 0.75rem;
}

.review-card__star {
  color: var(--realm-gold);
}

.review-card__star svg {
  width: 14px;
  height: 14px;
  fill: var(--realm-gold);
}

.review-card__text {
  color: var(--gray-600);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-card__footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-card__avatar {
  width: 2rem;
  height: 2rem;
  background: var(--realm-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--realm-gold);
  font-weight: 700;
  font-size: 0.75rem;
}

.review-card__name {
  color: var(--realm-black);
  font-weight: 600;
  font-size: 0.875rem;
}

.review-card__verified {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 10px;
  font-weight: 600;
  color: #059669;
  background: #ecfdf5;
  padding: 0.125rem 0.5rem;
  border-radius: 50px;
}

/* ============================================
   BRAND MARQUEE
   ============================================ */

.brand-marquee-section {
  background: var(--realm-black);
  padding: 3.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

@media (min-width: 640px) {
  .brand-marquee-section {
    padding: 4rem 0;
  }
}

.brand-marquee-section__title {
  text-align: center;
  font-family: system-ui, -apple-system, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-bottom: 1.5rem;
}

.marquee-row {
  display: flex;
  overflow: hidden;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

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

.marquee-row__inner {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
  animation: marquee var(--duration, 40s) linear infinite;
}

.marquee-row--reverse .marquee-row__inner {
  animation-direction: reverse;
}

.brand-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  white-space: nowrap;
  transition: border-color 0.3s;
  color: var(--realm-white);
}

.brand-pill:hover {
  border-color: rgba(202, 148, 59, 0.4);
}

.brand-pill__initial {
  width: 2rem;
  height: 2rem;
  background: rgba(202, 148, 59, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--realm-gold);
  flex-shrink: 0;
}

.brand-pill__name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--realm-white);
}

/* ============================================
   EMAIL CAPTURE
   ============================================ */

.email-section {
  background: var(--realm-white);
  padding: 4rem 0;
}

@media (min-width: 640px) {
  .email-section {
    padding: 5rem 0;
  }
}

.email-card {
  background: var(--realm-black);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (min-width: 640px) {
  .email-card {
    padding: 3rem;
  }
}

@media (min-width: 1024px) {
  .email-card {
    padding: 4rem;
  }
}

.email-card__glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 200px;
  background: rgba(202, 148, 59, 0.06);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.email-card__content {
  position: relative;
}

.email-card__icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(202, 148, 59, 0.1);
  border: 1px solid rgba(202, 148, 59, 0.2);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--realm-gold);
}

.email-card__heading {
  font-family: system-ui, -apple-system, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.5rem;
  color: var(--realm-white);
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
  .email-card__heading {
    font-size: 1.875rem;
  }
}

.email-card__desc {
  color: var(--gray-400);
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .email-card__desc {
    font-size: 1.125rem;
  }
}

.email-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 28rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .email-form {
    flex-direction: row;
  }
}

.email-form__input {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  color: var(--realm-white);
  font-size: 0.9375rem;
  outline: none;
  transition: border-color 0.2s;
}

.email-form__input::placeholder {
  color: var(--gray-500);
}

.email-form__input:focus {
  border-color: var(--realm-gold);
  box-shadow: 0 0 0 2px rgba(202, 148, 59, 0.2);
}

.email-form__submit {
  background: var(--realm-gold);
  color: var(--realm-black);
  font-family: system-ui, -apple-system, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
}

.email-form__submit:hover {
  background: var(--realm-gold-hover);
}

.email-card__fine-print {
  color: var(--gray-600);
  font-size: 0.75rem;
  margin-top: 1rem;
}

.email-card__success {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #4ade80;
  font-weight: 500;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--realm-black);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3.5rem 1rem;
}

@media (min-width: 640px) {
  .footer-main {
    padding: 4rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .footer-main {
    padding: 4rem 2rem;
  }
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
  }
}

/* Footer brand column */
.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-brand__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer-brand__logo img {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
}

.footer-brand__logo-text {
  font-family: system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--realm-white);
}

.footer-brand__logo-text span {
  color: var(--realm-gold);
}

.footer-brand__desc {
  color: var(--gray-500);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social__link {
  width: 2.75rem;
  height: 2.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: all 0.3s;
}

.footer-social__link:hover {
  background: rgba(202, 148, 59, 0.1);
  border-color: rgba(202, 148, 59, 0.3);
  color: var(--realm-gold);
}

.footer-brand__email {
  margin-bottom: 0.75rem;
}

.footer-brand__email a {
  color: var(--realm-gold);
  font-size: 0.85rem;
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer-brand__email a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.footer-payment {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.footer-payment__method {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gray-400);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
}

/* Footer columns */
.footer-col__title {
  color: var(--realm-white);
  font-family: system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.25rem;
}

.footer-col__list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-col__list a {
  color: var(--gray-500);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-col__list a:hover {
  color: var(--realm-gold);
}

/* Location info in footer */
.footer-location {
  margin-bottom: 1.25rem;
}

.footer-location:last-child {
  margin-bottom: 0;
}

.footer-location__name {
  color: var(--realm-white);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.footer-location__detail {
  display: flex;
  align-items: flex-start;
  gap: 0.375rem;
  color: var(--gray-500);
  font-size: 0.875rem;
  margin-bottom: 0.125rem;
}

.footer-location__detail svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-location--soon {
  opacity: 0.5;
}

.footer-location--soon .footer-location__detail {
  font-size: 0.875rem;
}

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .footer-bottom__inner {
    flex-direction: row;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .footer-bottom__inner {
    padding: 1.25rem 2rem;
  }
}

.footer-bottom__copyright {
  color: var(--gray-600);
  font-size: 0.75rem;
}

.footer-bottom__licenses {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0 1rem;
}

.footer-bottom__licenses span {
  color: var(--gray-600);
  font-size: 0.75rem;
}

.footer-bottom__licenses .divider {
  color: var(--gray-700);
}

/* ============================================
   SEO CONTENT BLOCK
   ============================================ */

.seo-content {
  background: var(--realm-black);
  padding: 4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.seo-content__heading {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
}

.seo-content__body {
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  max-width: 800px;
  font-size: 0.9rem;
}

.seo-content__body p {
  margin-bottom: 1rem;
}

.seo-content__body p:last-child {
  margin-bottom: 0;
}

/* ============================================
   CANNABIS DISCLAIMER
   ============================================ */

.cannabis-disclaimer {
  background: #C8B829;
  padding: 2rem 1.5rem;
}

.cannabis-disclaimer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.cannabis-disclaimer p {
  color: #000;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

.cannabis-disclaimer a {
  color: #000;
  text-decoration: underline;
  font-weight: 700;
}

.cannabis-disclaimer a:hover {
  text-decoration: none;
}

/* ============================================
   PAGE TEMPLATES
   ============================================ */

.page-content {
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 4rem;
  min-height: 60vh;
}

.page-content__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .page-content__inner {
    padding: 0 1.5rem;
  }
}

.page-title {
  font-family: system-ui, -apple-system, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 2rem;
  color: var(--realm-black);
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .page-title {
    font-size: 2.5rem;
  }
}

/* ============================================
   BLOG TEMPLATES
   ============================================ */

.blog-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 640px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  background: var(--realm-white);
  border: 1px solid var(--gray-200);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: box-shadow 0.3s, border-color 0.3s;
}

.blog-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: rgba(202, 148, 59, 0.3);
}

.blog-card__image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.blog-card__content {
  padding: 1.25rem;
}

.blog-card__date {
  color: var(--gray-400);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.blog-card__title {
  font-family: system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--realm-black);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.blog-card__excerpt {
  color: var(--gray-500);
  font-size: 0.875rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--realm-gold);
  font-weight: 600;
  font-size: 0.875rem;
  margin-top: 1rem;
  transition: gap 0.3s;
}

.blog-card:hover .blog-card__read-more {
  gap: 0.625rem;
}

/* Single blog post */
.blog-single {
  max-width: 48rem;
  margin: 0 auto;
}

.blog-single__header {
  margin-bottom: 2rem;
}

.blog-single__date {
  color: var(--gray-400);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.blog-single__title {
  font-family: system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--realm-black);
  line-height: 1.2;
}

@media (min-width: 640px) {
  .blog-single__title {
    font-size: 2.5rem;
  }
}

.blog-single__featured-image {
  width: 100%;
  border-radius: 0.75rem;
  margin-bottom: 2rem;
}

.blog-content h1 { font-size: 2rem; font-weight: 700; color: #000; margin-top: 2.5rem; margin-bottom: 1rem; line-height: 1.2; }
.blog-content h2 { font-size: 1.5rem; font-weight: 700; color: #000; margin-top: 2.5rem; margin-bottom: 0.75rem; line-height: 1.25; }
.blog-content h3 { font-size: 1.25rem; font-weight: 700; color: #000; margin-top: 2rem; margin-bottom: 0.5rem; line-height: 1.3; }
.blog-content p { color: #374151; line-height: 1.8; margin-bottom: 1.25rem; }
.blog-content a { color: var(--realm-gold); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; transition: color 0.2s; }
.blog-content a:hover { color: var(--realm-gold-hover); }
.blog-content strong { font-weight: 700; color: #000; }
.blog-content ul, .blog-content ol { margin: 1.25rem 0; padding-left: 1.5rem; }
.blog-content ul { list-style-type: disc; }
.blog-content ol { list-style-type: decimal; }
.blog-content li { color: #374151; line-height: 1.75; margin-bottom: 0.5rem; }
.blog-content img { border-radius: 0.75rem; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); margin: 2rem 0; max-width: 100%; height: auto; }
.blog-content blockquote { border-left: 4px solid var(--realm-gold); background: var(--gray-50); border-radius: 0 0.5rem 0.5rem 0; padding: 1rem 1.5rem; margin: 2rem 0; color: #374151; }

/* ============================================
   SCROLL ANIMATIONS (IntersectionObserver)
   ============================================ */

/* GSAP handles all scroll animations now */

/* ============================================
   KEYFRAME ANIMATIONS
   ============================================ */

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes drift-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(5vw, 3vh) scale(1.1); }
  66% { transform: translate(-3vw, -2vh) scale(0.95); }
}

@keyframes drift-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-4vw, -5vh) scale(1.08); }
}

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

@keyframes float-particle {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.2; }
  25% { opacity: 0.6; }
  50% { transform: translateY(-30px) translateX(10px); opacity: 0.3; }
  75% { opacity: 0.5; }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-100% - var(--gap, 1.25rem))); }
}

/* ============================================
   DISPENSE SDK OVERRIDES
   ============================================ */

/* Override Dispense default styling to match brand */
[class*="dispense"] {
  font-family: system-ui, -apple-system, sans-serif !important;
}

.dispense-product-carousel {
  padding: 0 !important;
}

/* ============================================================
   v1.7.10 — Our Locations footer band
   ============================================================ */
.footer-locations-band {
    background: rgba(0,0,0,0.95);
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 60px 0;
}
.footer-locations-band__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.footer-locations-band__title {
    color: #CA943B;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0 0 8px;
    text-align: center;
}
.footer-locations-band__subtitle {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    margin: 0 0 32px;
    text-align: center;
}
.footer-locations-band__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

/* Per-store card */
.footer-loc-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 20px 22px;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}
.footer-loc-card--open:hover {
    border-color: rgba(202,148,59,0.4);
    background: rgba(255,255,255,0.05);
}
.footer-loc-card--soon {
    opacity: 0.5;
}
.footer-loc-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-loc-card__name {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.3px;
}
.footer-loc-card__badge {
    background: rgba(202,148,59,0.15);
    color: #CA943B;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(202,148,59,0.3);
    white-space: nowrap;
}
.footer-loc-card__row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    color: rgba(255,255,255,0.75);
    font-size: 0.85rem;
    line-height: 1.5;
}
.footer-loc-card__row svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: #CA943B;
}
.footer-loc-card__row a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: color 0.15s ease;
}
.footer-loc-card__row a:hover {
    color: #CA943B;
}
.footer-loc-card__row strong {
    color: rgba(255,255,255,0.95);
    font-weight: 600;
}
.footer-loc-card__soon-text {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}
.footer-loc-card__actions {
    display: flex;
    gap: 8px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-loc-card__btn {
    flex: 1;
    text-align: center;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.15s ease, background-color 0.15s ease;
}
.footer-loc-card__btn--primary {
    background: #CA943B;
    color: #0A0A0A;
}
.footer-loc-card__btn--primary:hover {
    background: #fff;
    color: #0A0A0A;
    transform: translateY(-1px);
}
.footer-loc-card__btn--secondary {
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.85);
    border: 1px solid rgba(255,255,255,0.15);
}
.footer-loc-card__btn--secondary:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
    transform: translateY(-1px);
}

@media (max-width: 600px) {
    .footer-locations-band { padding: 40px 0; }
    .footer-locations-band__grid { grid-template-columns: 1fr; }
    .footer-loc-card { padding: 18px; }
}

/* ============================================================
   v1.7.16 — Simple footer link strip + SEO blurb
   ============================================================ */
.footer-simple {
    background: #0A0A0A;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 24px 16px;
}
.footer-simple__inner {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}
.footer-simple__links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px 12px;
    margin-bottom: 16px;
}
.footer-simple__links a {
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.15s ease;
    white-space: nowrap;
}
.footer-simple__links a:hover {
    color: #CA943B;
}
.footer-simple__sep {
    color: rgba(255,255,255,0.25);
    font-size: 0.85rem;
    user-select: none;
}
.footer-simple__seo {
    color: rgba(255,255,255,0.5);
    font-size: 0.78rem;
    line-height: 1.65;
    max-width: 1000px;
    margin: 0 auto;
}
@media (max-width: 600px) {
    .footer-simple { padding: 20px 16px 12px; }
    .footer-simple__links { gap: 6px 10px; margin-bottom: 12px; }
    .footer-simple__links a { font-size: 0.8rem; }
    .footer-simple__sep { font-size: 0.8rem; }
    .footer-simple__seo { font-size: 0.72rem; }
}

/* ============================================================
   v1.7.18 — Mobile Location Picker Bottom Sheet
   ============================================================ */

/* Make announcement bar tappable on mobile */
.location-bar__info--tappable {
    width: 100%;
    background: transparent;
    border: 0;
    color: rgba(255, 255, 255, 0.85) !important;
    cursor: pointer;
    font: inherit;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: left;
}
.location-bar__info--tappable strong {
    color: #CA943B !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.location-bar__info--tappable span {
    color: inherit;
}
.location-bar__info--tappable:hover .location-bar__change-hint,
.location-bar__info--tappable:focus-visible .location-bar__change-hint {
    color: #CA943B;
}
.location-bar__change-hint {
    display: none; /* hidden on desktop — desktop already has visible picker */
    color: rgba(255,255,255,0.55);
    font-size: 0.7rem;
    margin-left: 8px;
    align-items: center;
    gap: 3px;
    transition: color 0.15s ease;
}

/* On mobile: show "Change" hint, make whole bar tap target */
@media (max-width: 768px) {
    .location-bar__info--tappable {
        cursor: pointer;
        min-height: 36px;
        padding: 4px 12px;
    }
    .location-bar__change-hint {
        display: inline-flex;
    }
}
@media (min-width: 769px) {
    /* Desktop: don't make it tappable (cursor stays default, no hover effect) */
    .location-bar__info--tappable {
        cursor: default;
        pointer-events: none; /* disabled — desktop has the dropdown picker in the nav */
    }
}

/* Bottom sheet — hidden by default */
.mobile-loc-sheet {
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    visibility: hidden;
}
.mobile-loc-sheet.is-open {
    pointer-events: auto;
    visibility: visible;
}
.mobile-loc-sheet__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    opacity: 0;
    transition: opacity 0.25s ease;
    cursor: pointer;
}
.mobile-loc-sheet.is-open .mobile-loc-sheet__backdrop {
    opacity: 1;
}
.mobile-loc-sheet__panel {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0A0A0A;
    color: #fff;
    padding: 28px 20px 32px;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -8px 30px rgba(0,0,0,0.4);
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 85vh;
    overflow-y: auto;
    box-sizing: border-box;
}
.mobile-loc-sheet.is-open .mobile-loc-sheet__panel {
    transform: translateY(0);
}
.mobile-loc-sheet__handle {
    width: 40px;
    height: 4px;
    background: rgba(255,255,255,0.25);
    border-radius: 2px;
    margin: 0 auto 16px;
}
.mobile-loc-sheet__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.06);
    border: 0;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease;
}
.mobile-loc-sheet__close:hover {
    background: rgba(255,255,255,0.12);
}
.mobile-loc-sheet__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px;
    text-align: center;
}
.mobile-loc-sheet__subtitle {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    margin: 0 0 20px;
    text-align: center;
}
.mobile-loc-sheet__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.mobile-loc-sheet__option {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 14px 16px;
    color: #fff;
    cursor: pointer;
    text-align: left;
    transition: border-color 0.15s ease, background 0.15s ease, transform 0.1s ease;
    font: inherit;
}
.mobile-loc-sheet__option--open:hover,
.mobile-loc-sheet__option--open:focus-visible {
    border-color: rgba(202,148,59,0.4);
    background: rgba(202,148,59,0.08);
}
.mobile-loc-sheet__option--open:active {
    transform: scale(0.99);
}
.mobile-loc-sheet__option--soon {
    opacity: 0.45;
    cursor: not-allowed;
}
.mobile-loc-sheet__option--current {
    border-color: #CA943B;
    background: rgba(202,148,59,0.08);
}
.mobile-loc-sheet__option-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    background: rgba(202,148,59,0.12);
    color: #CA943B;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.mobile-loc-sheet__option-text {
    flex: 1;
    min-width: 0;
}
.mobile-loc-sheet__option-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2px;
}
.mobile-loc-sheet__option-badge {
    background: rgba(202,148,59,0.15);
    color: #CA943B;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 999px;
}
.mobile-loc-sheet__option-addr {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.3;
}
.mobile-loc-sheet__option-check {
    flex-shrink: 0;
    color: #CA943B;
    opacity: 0;
    transition: opacity 0.15s ease;
}
.mobile-loc-sheet__option--current .mobile-loc-sheet__option-check {
    opacity: 1;
}

/* Lock body scroll when sheet is open */
body.mobile-loc-sheet-open {
    overflow: hidden;
}

/* ============================================================
   v1.7.22 — Header redesign: CTA-styled location pill,
              mega-dropdown, contextual store info bar
   ============================================================ */

/* ─── Location Pill (restyled as gold CTA — clearly clickable) ─── */
.location-pill {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 8px 16px !important;
    background: rgba(202,148,59,0.12) !important;
    border: 1.5px solid rgba(202,148,59,0.5) !important;
    border-radius: 999px !important;
    color: #fff !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: background-color 0.18s ease, border-color 0.18s ease, transform 0.12s ease !important;
    line-height: 1.2 !important;
}
.location-pill:hover,
.location-pill:focus-visible {
    background: rgba(202,148,59,0.2) !important;
    border-color: #CA943B !important;
    transform: translateY(-1px);
    outline: none;
}
.location-pill__icon {
    color: #CA943B;
    flex-shrink: 0;
}
.location-pill__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #34D399;
    margin-left: 2px;
    box-shadow: 0 0 6px rgba(52,211,153,0.6);
}

/* ─── Mega Dropdown (replaces simple text dropdown) ─── */
.location-dropdown--mega {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    background: #0A0A0A;
    border: 1px solid rgba(202,148,59,0.25);
    border-radius: 14px;
    overflow: hidden;
    width: 380px;
    max-width: 95vw;
    z-index: 9999;
    box-shadow: 0 16px 40px rgba(0,0,0,0.6);
}
.location-dropdown__header {
    padding: 18px 20px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.location-dropdown__title {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
}
.location-dropdown__sub {
    color: rgba(255,255,255,0.55);
    font-size: 0.78rem;
    line-height: 1.4;
}
.location-dropdown__cards {
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.location-dropdown__card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    transition: border-color 0.15s ease, background 0.15s ease, transform 0.1s ease;
    cursor: pointer;
}
.location-dropdown__card--open:hover,
.location-dropdown__card--open:focus-visible {
    border-color: rgba(202,148,59,0.5);
    background: rgba(202,148,59,0.08);
    outline: none;
}
.location-dropdown__card--soon {
    opacity: 0.5;
    cursor: not-allowed;
}
.location-dropdown__card-pin {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background: rgba(202,148,59,0.12);
    color: #CA943B;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.location-dropdown__card-text {
    flex: 1;
    min-width: 0;
}
.location-dropdown__card-name {
    color: #fff;
    font-size: 0.92rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2px;
}
.location-dropdown__card-badge {
    background: rgba(202,148,59,0.15);
    color: #CA943B;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 999px;
}
.location-dropdown__card-addr {
    font-size: 0.74rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.location-dropdown__card-check {
    color: #CA943B;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.15s ease;
}
.location-dropdown__card--current .location-dropdown__card-check {
    opacity: 1;
}
.location-dropdown__footer {
    padding: 12px 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.02);
}
.location-dropdown__view-all {
    color: #CA943B;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.location-dropdown__view-all:hover { color: #fff; }

/* ─── Contextual Store Info Bar (replaces rotating announcement) ─── */
.store-info-bar {
    background: rgba(0,0,0,0.95);
    border-top: 1px solid rgba(202,148,59,0.12);
    border-bottom: 1px solid rgba(202,148,59,0.12);
    padding: 0;
    transition: transform 0.3s ease;
}
.store-info-bar__inner {
    max-width: var(--max-width, 1280px);
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.store-info-bar__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 0;
    color: rgba(255,255,255,0.85);
    font-size: 0.82rem;
    font-weight: 500;
    padding: 10px 14px;
    cursor: pointer;
    transition: color 0.15s ease;
    line-height: 1.3;
}
.store-info-bar__btn:hover,
.store-info-bar__btn:focus-visible {
    color: #fff;
    outline: none;
}
.store-info-bar__pin { flex-shrink: 0; }
.store-info-bar__name {
    color: #CA943B;
    font-weight: 700;
}
.store-info-bar__sep {
    color: rgba(255,255,255,0.3);
    margin: 0 4px;
}
.store-info-bar__addr {
    color: rgba(255,255,255,0.6);
}
.store-info-bar__caret {
    color: rgba(255,255,255,0.4);
    margin-left: 4px;
    display: inline-flex;
}
.store-info-bar__btn:hover .store-info-bar__caret {
    color: #CA943B;
}

/* Smart sticky on mobile — hide on scroll-down, show on scroll-up */
@media (max-width: 768px) {
    .store-info-bar {
        position: sticky;
        top: var(--header-height, 64px);
        z-index: 4998;
    }
    .store-info-bar.is-hidden-on-scroll {
        transform: translateY(-100%);
    }
    .store-info-bar__btn {
        padding: 8px 10px;
        font-size: 0.78rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    /* On mobile, hide address (keep name only) — saves horizontal room */
    .store-info-bar__addr,
    .store-info-bar__sep {
        display: none;
    }
    .store-info-bar__btn {
        min-height: 44px; /* touch target */
        box-sizing: border-box;
    }
}

/* ============================================================
   v1.7.23 — Pill "Shopping:" prefix + mobile-only info bar
   ============================================================ */

/* "Shopping:" prefix in pill — desktop visible, mobile hidden */
.location-pill__prefix {
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    margin-right: 2px;
    font-size: 0.78rem;
    letter-spacing: 0.02em;
}
@media (max-width: 768px) {
    .location-pill__prefix {
        display: none;
    }
}

/* Store info bar — mobile only (desktop has the pill in the header) */
.store-info-bar--mobile-only {
    display: none;
}
@media (max-width: 768px) {
    .store-info-bar--mobile-only {
        display: block;
    }
}
/* Prefix in mobile bar */
.store-info-bar__prefix {
    color: rgba(255,255,255,0.6);
    font-weight: 500;
}

/* ============================================================
   v1.7.24 — Sign In button + delivery indicator on dropdown cards
   ============================================================ */

/* Sign In button — sits between location pill and ORDER NOW */
.header-signin {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.18);
    border-radius: 999px;
    color: rgba(255,255,255,0.85);
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease, transform 0.12s ease;
    line-height: 1.2;
}
.header-signin:hover,
.header-signin:focus-visible {
    border-color: #CA943B;
    color: #fff;
    background: rgba(202,148,59,0.08);
    transform: translateY(-1px);
    outline: none;
}
.header-signin svg {
    flex-shrink: 0;
    color: #CA943B;
}

/* Mobile: icon-only on the desktop nav (which is hidden on mobile anyway) */
@media (max-width: 900px) {
    .header-signin__label {
        display: none;
    }
    .header-signin {
        padding: 8px 10px;
    }
}

/* Delivery indicator on mega-dropdown cards */
.location-dropdown__card-delivery {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 4px;
    color: #CA943B;
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1.2;
}
.location-dropdown__card-delivery svg {
    flex-shrink: 0;
}
.location-dropdown__card--soon .location-dropdown__card-delivery {
    display: none;
}

/* ============================================================
   v1.7.26 — Homepage hero location cards (richer than buttons)
   ============================================================ */
.hero__locations--cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    max-width: 820px;
    margin: 24px auto 0;
    padding: 0 16px;
    box-sizing: border-box;
}
.hero-loc-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(202,148,59,0.25);
    border-radius: 14px;
    padding: 18px 20px;
    text-decoration: none;
    transition: border-color 0.2s ease, transform 0.15s ease, background 0.2s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.hero-loc-card--open:hover,
.hero-loc-card--open:focus-visible {
    border-color: #CA943B;
    background: rgba(202,148,59,0.08);
    transform: translateY(-2px);
    outline: none;
}
.hero-loc-card--soon {
    opacity: 0.55;
    cursor: default;
}
.hero-loc-card__top {
    display: flex;
    align-items: center;
    gap: 10px;
}
.hero-loc-card__pin {
    width: 30px;
    height: 30px;
    background: rgba(202,148,59,0.15);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #CA943B;
    flex-shrink: 0;
}
.hero-loc-card__name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    flex: 1;
    line-height: 1.2;
}
.hero-loc-card__status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.hero-loc-card__status--soon {
    color: #CA943B;
}
.hero-loc-card__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #34D399;
    box-shadow: 0 0 5px rgba(52,211,153,0.6);
}
.hero-loc-card__addr {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.4;
}
.hero-loc-card__delivery {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: #CA943B;
    font-weight: 600;
    line-height: 1;
}
.hero-loc-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    background: #CA943B;
    color: #0A0A0A;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 4px;
    transition: background 0.15s ease;
    min-height: 40px;
    box-sizing: border-box;
}
.hero-loc-card--open:hover .hero-loc-card__cta {
    background: #fff;
}
.hero-loc-card__soon-msg {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.4;
    margin-top: 4px;
}

@media (max-width: 768px) {
    .hero__locations--cards {
        grid-template-columns: 1fr;
        max-width: 360px;
        gap: 10px;
        padding: 0 12px;
        margin-top: 18px;
    }
    .hero-loc-card {
        padding: 14px 16px;
    }
    .hero-loc-card__name {
        font-size: 0.95rem;
    }
    .hero-loc-card__cta {
        min-height: 44px;
    }
}

/* v1.7.28: Force-hide preloader (markup removed but CSS overrides catch any stragglers) */
.preloader { display: none !important; }

/* v1.7.28: Speed up age-gate dismiss from 500ms to 200ms (no visual change, just snappier feel) */
.age-gate {
    transition: opacity 0.2s ease, visibility 0.2s ease !important;
}

/* ============================================================
   v1.7.29 — Conversion-first header (Option D)
   3 location CTAs replace Shop / Deals / location pill / Sign In / ORDER NOW
   ============================================================ */

/* Hide all old header nav elements so they can't accidentally appear */
.header-nav,
.header-actions,
.header-cta,
.header-signin,
.location-pill-wrapper,
.location-pill,
.location-dropdown {
    display: none !important;
}

/* ============================================================
   v1.7.30 — Compact store cards + side announcements
   Replaces the v1.7.29 jumbo gold CTAs with a slimmer card row,
   adds a 2-line desktop side panel and a mobile top strip for
   delivery + service info. Hamburger + mobile-menu removed
   (footer carries Sign In / Contact / About / Reviews / FAQ).
   ============================================================ */

/* --- Header height per breakpoint ---
   The header grows on mobile/tablet because of (a) the announcement strip
   and (b) the cards wrapping to a 2nd row on mobile. Updating --header-height
   here cascades to every dependent calc: .hero height, .store-info-bar
   sticky offset (4161), and any margin/padding-top that uses it. */
@media (max-width: 1023px) {
    :root { --header-height: 92px; } /* strip(~26) + logo+cards row(~64) */
}
@media (max-width: 767px) {
    :root { --header-height: 160px; } /* strip(~26) + logo row(~60) + cards row(~70) + safety */
}

/* On tablet (768-1023px), .header-inner still uses var(--header-height) from
   the original line 877 — but that variable now includes the strip height.
   Override here so the inner row stays compact at 64px. */
@media (min-width: 768px) and (max-width: 1023px) {
    .header-inner { height: 64px; }
}

/* --- Store cards container --- */
.header-stores {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: center;
    min-width: 0;
}
.header-stores__empty {
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    margin: 0;
}

/* --- Each store card (pin · name+OPEN · SHOP NOW pill) --- */
.header-store-card {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 10px 7px 12px;
    background: rgba(255,255,255,0.03);
    color: #fff !important;
    border: 1px solid rgba(202,148,59,0.32);
    border-radius: 8px;
    text-decoration: none !important;
    box-sizing: border-box;
    transition: background-color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
    line-height: 1;
    min-height: 44px; /* touch target */
}
.header-store-card:hover,
.header-store-card:focus-visible {
    background: rgba(202,148,59,0.10);
    border-color: rgba(202,148,59,0.6);
    outline: none;
    transform: translateY(-1px);
}
.header-store-card:focus-visible {
    box-shadow: 0 0 0 2px #CA943B;
}
.header-store-card__pin {
    flex-shrink: 0;
    color: #CA943B;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.header-store-card__mid {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}
.header-store-card__name {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
}
.header-store-card__status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #5DCAA5;
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1;
}
.header-store-card__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #5DCAA5;
    box-shadow: 0 0 0 2px rgba(93,202,165,0.18);
    display: inline-block;
}
.header-store-card__shop {
    color: #CA943B;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.08em;
    background: rgba(202,148,59,0.14);
    padding: 6px 9px;
    border-radius: 5px;
    line-height: 1;
    white-space: nowrap;
    flex-shrink: 0;
}
.header-store-card:hover .header-store-card__shop,
.header-store-card:focus-visible .header-store-card__shop {
    background: #CA943B;
    color: #0A0A0A;
}

/* --- Desktop side announcements --- */
.header-announce {
    display: none; /* mobile uses the top strip instead */
    flex-direction: column;
    gap: 4px;
    margin: 0;
    padding-left: 12px;
    border-left: 1px solid rgba(202,148,59,0.18);
    flex-shrink: 0;
}
@media (min-width: 1024px) {
    .header-announce { display: flex; }
}
.header-announce__line {
    color: rgba(255,255,255,0.85);
    font-size: 11.5px;
    line-height: 1.3;
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}
.header-announce__icon {
    color: #CA943B;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* --- Mobile + tablet top announcement strip (hidden on desktop where side panel takes over).
       Sibling of .header-inner so it's a regular block — no flex math needed. --- */
.header-announce-strip {
    display: none;
    background: rgba(202,148,59,0.10);
    border-bottom: 1px solid rgba(202,148,59,0.18);
    color: rgba(255,255,255,0.88);
    font-size: 11px;
    text-align: center;
    padding: 5px 12px;
    line-height: 1.3;
}
.header-announce-strip__sep { color: rgba(255,255,255,0.4); margin: 0 6px; }
@media (max-width: 1023px) {
    .header-announce-strip { display: block; }
}

/* ============================================================
   Mobile layout (≤767px)
   The header grows to two rows: brand row + cards row, with
   the announcement strip on top.
   ============================================================ */
@media (max-width: 767px) {
    .header-inner {
        flex-wrap: wrap;
        height: auto;
        padding-top: 0;
        padding-bottom: 8px;
        justify-content: center;
    }
    .header-logo {
        padding: 8px 0;
        width: 100%;
        justify-content: center;
    }
    .header-stores {
        flex: 1 0 100%;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 6px;
        padding: 0 4px 4px;
        margin: 0;
        justify-content: stretch;
    }
    .header-stores--count-1 { grid-template-columns: 1fr; }
    .header-stores--count-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .header-stores--count-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .header-store-card {
        flex-direction: column;
        gap: 5px;
        padding: 9px 4px;
        text-align: center;
        min-height: 64px;
    }
    .header-store-card__mid { align-items: center; gap: 3px; }
    .header-store-card__name { font-size: 12px; }
    .header-store-card__status { font-size: 8.5px; }
    .header-store-card__shop { font-size: 9px; padding: 4px 7px; margin-top: 1px; }
}

/* ============================================================
   Reduced motion: drop the hover lift
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    .header-store-card { transition: none; }
    .header-store-card:hover,
    .header-store-card:focus-visible { transform: none; }
}

/* ============================================================
   v1.7.30: legacy classes left orphaned (no markup uses them).
   Keeping them out of the cascade with a single hide rule so
   any stray references fail silently rather than mis-rendering.
   v1.7.31: store-info-bar + mobile-loc-sheet added to the list
   (markup removed; underlying JS IIFEs early-return safely).
   ============================================================ */
.header-locations,
.header-loc-cta,
.mobile-toggle,
.mobile-menu,
.store-info-bar,
.mobile-loc-sheet { display: none !important; }

/* v1.7.31: Header must always follow the user — never let .is-hidden
   translate it off-screen. JS no longer adds the class but this is
   belt-and-suspenders against any legacy code path or third-party
   plugin that might toggle it. */
.site-header.is-hidden { transform: none !important; }

/* ============================================================
   v1.7.38 — Fixed-header content offset (sitewide breathing room)
   The .site-header is position:fixed so content scrolls under it.
   Without padding-top on <main>, every page's first section sits
   flush against the header's bottom edge with zero gap. This block
   restores consistent breathing room across the entire site.
   ============================================================ */

/* Global content offset — pushes EVERY page's content below the header */
main#main-content {
    padding-top: var(--header-height);
}

/* Tablet/mobile: header is taller (announcement strip + cards row),
   --header-height is already breakpoint-aware (set in v1.7.30+),
   so this calc auto-adjusts. */

/* Don't double-offset on town pages where .hero already accounts for header */
.home main#main-content,
main#main-content > .hero:first-child,
main#main-content > section.hero:first-child {
    padding-top: 0;
}

/* Keep the age gate above the header (z-index sanity) */
.age-gate { z-index: 10000; }

/* WordPress admin bar offset — when the admin bar is visible, the header
   sits 32px lower (or 46px on small screens). Main needs to clear both. */
.admin-bar main#main-content {
    padding-top: calc(var(--header-height) + 32px);
}
@media screen and (max-width: 782px) {
    .admin-bar main#main-content {
        padding-top: calc(var(--header-height) + 46px);
    }
}

/* Elementor sections — give the FIRST section a tiny top margin so it
   doesn't kiss the header's bottom edge after the offset. Subsequent
   sections control their own spacing. */
main#main-content > .elementor:first-child > .e-con:first-child,
main#main-content > div[data-elementor-type]:first-child > .e-con:first-child {
    margin-top: 1rem;
}
