/*
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.0.0
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);
}

.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-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;
}
