/*
Theme Name: Infinity Wellness Custom
Author: Kelli O'Neill
Version: 1.0
*/
:root {
  --bg-1: #050814;
  --bg-2: #12071d;
  --panel: rgba(255, 255, 255, 0.07);
  --panel-strong: rgba(255, 255, 255, 0.11);
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.24);
  --text: #f4f7ff;
  --muted: #b8c0d8;
  --cyan: #75f8ff;
  --purple: #c05fff;
  --green: #bfff7b;
  --warning: #ffd36f;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: min(1220px, calc(100% - 36px));
  --ease: 180ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 18%, rgba(117, 248, 255, 0.18), transparent 24%),
    radial-gradient(circle at 85% 16%, rgba(192, 95, 255, 0.18), transparent 20%),
    radial-gradient(circle at 48% 72%, rgba(191, 255, 123, 0.08), transparent 26%),
    linear-gradient(180deg, var(--bg-1), var(--bg-2));
  position: relative;
  overflow-x: clip;
}

.grecaptcha-badge {
  max-width: 100vw;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.24) 1px, transparent 1px);
  background-size: 18px 18px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 95%);
}

body.age-gate-open {
  overflow: hidden;
}

/* Restore text colors from the theme 14 archive. */
body .page-main p,
body .page-main li,
body .page-main dd,
body .page-main dt,
body .page-main figcaption,
body .page-main blockquote,
body .page-main cite,
body .page-main .hero-copy p,
body .page-main .page-hero-copy p,
body .page-main .section-head p,
body .page-main .store-title p,
body .page-main .article-card p,
body .page-main .contact-card p,
body .page-main .feature-card p,
body .page-main .value-card p,
body .page-main .map-card p,
body .page-main .timeline-card p,
body .page-main .faq-answer,
body .page-main .faq-answer p,
body .page-main .product-meta,
body .page-main .hero-carousel__copy span:last-child,
body .page-main .visual-core span,
body .page-main .entry-content-panel p,
body .page-main .entry-content-panel li,
body .page-main .entry-content-panel figcaption,
body .page-main .wp-block-paragraph,
body .page-main .wp-block-list li,
body .page-main .wp-block-quote,
body .page-main .wp-block-quote cite {
  color: var(--muted) !important;
}

body .page-main h1,
body .page-main h2,
body .page-main h3,
body .page-main h4,
body .page-main h5,
body .page-main h6,
body .page-main .entry-content-panel h1,
body .page-main .entry-content-panel h2,
body .page-main .entry-content-panel h3,
body .page-main .entry-content-panel h4,
body .page-main .entry-content-panel h5,
body .page-main .entry-content-panel h6 {
  color: var(--text);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.glass,
.card,
.page-panel,
.store-card,
.product-card,
.category-card,
.value-card,
.faq-item,
.article-card,
.map-card,
.contact-card,
.newsletter-panel,
.timeline-card,
.feature-card {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--cyan);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  box-shadow: 0 0 18px rgba(117, 248, 255, 0.45);
}

h1,
h2,
h3,
h4,
p,
ul {
  margin: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.04em;
}

p,
li,
.muted {
  color: var(--muted);
}

ul.clean-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
  transition: transform var(--ease), border-color var(--ease), background var(--ease);
}

.button:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.08);
}

.button.primary {
  color: var(--text);
  border: none;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  box-shadow: 0 12px 30px rgba(117, 248, 255, 0.16);
}

.button.button--radiant-store {
  position: relative;
  isolation: isolate;
  border: none;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  color: var(--text);
  text-shadow: none;
  box-shadow:
    0 12px 30px rgba(117, 248, 255, 0.16),
    0 0 24px rgba(192, 95, 255, 0.16);
}

.button.button--radiant-store:hover,
.button.button--radiant-store:focus-visible {
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  color: var(--text);
  box-shadow:
    0 14px 34px rgba(117, 248, 255, 0.22),
    0 0 30px rgba(192, 95, 255, 0.22);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.03);
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(5, 8, 20, 0.62);
  backdrop-filter: blur(6px);
}

.age-gate.is-visible {
  display: flex;
}

.age-gate__card {
  width: min(460px, 100%);
  border-radius: var(--radius-xl);
  padding: 22px;
  background: rgba(10, 14, 28, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

.age-gate__brand {
  margin-bottom: 12px;
}

.age-gate__brand img {
  height: 48px;
  width: auto;
}

.age-gate__copy {
  display: grid;
  gap: 10px;
}

.age-gate__copy h2 {
  font-size: clamp(1.5rem, 4vw, 2.1rem);
}

.age-gate__copy p,
.age-gate__copy li {
  color: var(--muted);
}

.age-gate__copy ul {
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.age-gate__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(6, 10, 24, 0.58);
  backdrop-filter: blur(16px);
}

.site-header .container {
  width: min(1380px, calc(100% - 32px));
}

.nav-bar {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 16px 0;
}

.brand {
  grid-column: 1;
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 0;
  flex-shrink: 0;
  justify-self: start;
  transition: transform var(--ease);
}

.brand:hover {
  transform: translateY(-1px);
}

.brand-logo {
  display: block;
  width: auto;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.22));
}

.brand--footer .brand-logo {
  height: 50px;
}

.primary-nav {
  grid-column: 2;
  display: flex;
  align-items: center;
  min-width: 0;
  justify-self: center;
}

.nav-list,
.header-ctas,
.hero-actions,
.card-actions,
.newsletter-form,
.pill-row,
.page-outline {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 0;
  justify-content: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.nav-item {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 0;
  padding-bottom: 10px;
  margin-bottom: -10px;
}

.nav-item-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.header-ctas {
  grid-column: 3;
  justify-self: end;
  flex-shrink: 0;
  gap: 10px;
  flex-wrap: nowrap;
  margin-left: auto;
}

.nav-toggle-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  transition: transform var(--ease), border-color var(--ease), background var(--ease);
}

.nav-toggle-button span {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: transform var(--ease), opacity var(--ease);
}

.nav-toggle-button:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle-button[aria-expanded="true"] {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--muted);
  font-size: 0.95rem;
  white-space: nowrap;
  transition: color var(--ease), background var(--ease), border-color var(--ease);
}

.nav-dropdown-toggle {
  display: none;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  z-index: 40;
  min-width: 220px;
  padding: 10px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(6, 10, 24, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  display: grid;
  gap: 4px;
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity var(--ease), transform var(--ease);
}

.nav-dropdown-link {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 14px;
  color: var(--muted);
  font-size: 0.92rem;
  transition: color var(--ease), background var(--ease);
}

.nav-dropdown-link:hover,
.nav-dropdown-link:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.header-ctas .button {
  min-height: 42px;
  padding: 10px 16px;
  white-space: nowrap;
}

.nav-mobile-ctas {
  display: none;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.nav-item:hover .nav-item-trigger > .nav-link,
.nav-item:focus-within .nav-item-trigger > .nav-link,
.nav-item.is-open .nav-item-trigger > .nav-link,
.nav-item:hover .nav-item-trigger > .nav-link.active,
.nav-item:focus-within .nav-item-trigger > .nav-link.active,
.nav-item.is-open .nav-item-trigger > .nav-link.active {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.05);
}

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

.page-main {
  padding: 28px 0 64px;
}

.page-stack {
  display: grid;
  gap: 22px;
}

.section-card,
.page-panel {
  border-radius: var(--radius-xl);
  padding: 26px;
  animation: rise-in 660ms ease both;
}

.hero-card,
.page-hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 26px;
  align-items: stretch;
}

.page-hero {
  grid-template-columns: 1fr;
}

.page-hero--single {
  grid-template-columns: 1fr;
}

.page-hero > .visual-panel {
  display: none;
}

.page-hero.page-hero--split {
  grid-template-columns: 1.06fr 0.94fr;
}

.page-hero.page-hero--split > .visual-panel {
  display: block;
}

.page-hero:has(> .visual-panel .visual-placeholder),
.page-hero:has(> .visual-panel .pillar-overview-board) {
  grid-template-columns: 1fr;
}

.page-hero > .visual-panel:has(.visual-placeholder),
.page-hero > .visual-panel:has(.pillar-overview-board) {
  display: none !important;
}

.hero-copy,
.page-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 7.6vw, 5.7rem);
  line-height: 0.93;
}

.page-hero-copy h1 {
  max-width: none;
  font-size: clamp(3rem, 7.6vw, 5.7rem);
  line-height: 0.93;
}

.hero-copy p,
.page-hero-copy p {
  max-width: 58ch;
  font-size: 1.02rem;
}

.micro-copy {
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-notes,
.stat-strip {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-notes span,
.stat {
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
}

.stat strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
}

.visual-panel {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  min-height: 360px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    rgba(8, 12, 27, 0.7);
  border: 1px solid var(--line);
}

.visual-panel::before {
  content: "";
  position: absolute;
  inset: -10% auto auto -10%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(117, 248, 255, 0.15);
  filter: blur(18px);
}

.visual-panel::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -40px;
  bottom: -40px;
  border-radius: 50%;
  background: rgba(192, 95, 255, 0.18);
  filter: blur(18px);
}

.visual-placeholder,
.product-art,
.map-visual {
  position: absolute;
  inset: 22px;
  border-radius: 24px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.visual-placeholder::before,
.visual-placeholder::after,
.product-art::before,
.product-art::after {
  content: "";
  position: absolute;
  width: 140%;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  top: 50%;
  left: -20%;
  transform-origin: center;
}

.visual-placeholder::before,
.product-art::before {
  transform: rotate(24deg);
}

.visual-placeholder::after,
.product-art::after {
  transform: rotate(-24deg);
}

.visual-core {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
}

.visual-core strong {
  font-size: 1.1rem;
}

.visual-core span {
  color: var(--muted);
  max-width: 28ch;
}

.visual-image-frame {
  position: absolute;
  inset: 22px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 11, 24, 0.88);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 16px 40px rgba(0, 0, 0, 0.28);
}

.visual-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.visual-panel--pillar {
  min-height: 420px;
}

.pillar-mosaic {
  position: absolute;
  inset: 22px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.pillar-mosaic__tile {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 11, 24, 0.88);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 16px 40px rgba(0, 0, 0, 0.28);
}

.pillar-mosaic__tile img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.pillar-mosaic__tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(5, 8, 20, 0.82) 100%);
}

.pillar-mosaic__tile figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 1;
  font-size: 0.96rem;
  font-weight: 700;
}

.hero-carousel {
  position: absolute;
  inset: 22px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(7, 12, 28, 0.38);
  isolation: isolate;
}

.hero-carousel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 26%),
    linear-gradient(180deg, transparent 54%, rgba(5, 8, 20, 0.42));
  z-index: 0;
  pointer-events: none;
}

.hero-carousel__slide {
  position: absolute;
  inset: 0;
  display: block;
  color: var(--text);
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity 520ms ease, transform 520ms ease;
}

.hero-carousel__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.hero-carousel__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 8, 20, 0.06) 12%, rgba(5, 8, 20, 0.2) 46%, rgba(5, 8, 20, 0.82) 100%);
  pointer-events: none;
}

.hero-carousel__slide:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: -2px;
}

.hero-carousel__art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.hero-carousel__slide--shop .hero-carousel__art {
  object-position: center 42%;
}

.hero-carousel__slide--locations .hero-carousel__art {
  object-position: center center;
}

.hero-carousel__slide--wellness .hero-carousel__art {
  object-position: 42% center;
}

.hero-carousel__slide--deals .hero-carousel__art {
  object-position: center center;
}

.hero-carousel__copy {
  position: absolute;
  left: 24px;
  right: 92px;
  bottom: 24px;
  z-index: 1;
  display: grid;
  gap: 10px;
  max-width: 28ch;
}

.hero-carousel__copy strong {
  font-size: clamp(1.55rem, 2.8vw, 2.2rem);
  line-height: 1.02;
}

.hero-carousel__copy span:last-child {
  color: rgba(244, 247, 255, 0.82);
  font-size: 0.98rem;
}

.hero-carousel__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(5, 8, 20, 0.36);
  color: var(--text);
}

.hero-carousel__label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.9;
}

.hero-carousel__slide--shop .hero-carousel__label {
  color: var(--cyan);
}

.hero-carousel__slide--locations .hero-carousel__label {
  color: var(--warning);
}

.hero-carousel__slide--wellness .hero-carousel__label {
  color: var(--green);
}

.hero-carousel__slide--deals .hero-carousel__label {
  color: #ffb1e6;
}

.hero-carousel__nav {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  display: flex;
  gap: 8px;
}

.hero-carousel__side {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 18%;
  min-width: 72px;
  padding: 0;
  border: none;
  background: transparent;
  opacity: 0;
  z-index: 2;
  cursor: pointer;
  transition: opacity var(--ease), background var(--ease);
}

.hero-carousel__side--prev {
  left: 0;
  background: linear-gradient(90deg, rgba(5, 8, 20, 0.22), transparent 78%);
}

.hero-carousel__side--next {
  right: 0;
  background: linear-gradient(270deg, rgba(5, 8, 20, 0.22), transparent 78%);
}

.hero-carousel__side:hover,
.hero-carousel__side:focus-visible {
  opacity: 1;
  outline: none;
}

.hero-carousel__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.32);
  cursor: pointer;
  transition: width var(--ease), background var(--ease), transform var(--ease);
}

.hero-carousel__dot:hover,
.hero-carousel__dot:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.56);
  outline: none;
}

.hero-carousel__dot.is-active {
  width: 30px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
}

.hero-card--home {
  grid-template-columns: 1fr;
  gap: 22px;
}

.hero-card--home .hero-copy h1 {
  max-width: 10ch;
  font-size: clamp(1.63rem, 3.6vw, 2.925rem);
}

.hero-card--home .hero-copy p {
  max-width: 56ch;
}

.hero-card--home .hero-copy {
  max-width: 960px;
}

.visual-panel--home-hero {
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 82%, rgba(176, 108, 255, 0.18), transparent 28%),
    radial-gradient(circle at 14% 18%, rgba(117, 248, 255, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03)),
    rgba(8, 12, 27, 0.76);
}

.visual-panel--home-hero::before {
  inset: -12% auto auto -12%;
  width: 210px;
  height: 210px;
  background: rgba(117, 248, 255, 0.12);
}

.visual-panel--home-hero::after {
  width: 180px;
  height: 180px;
  right: -36px;
  bottom: -36px;
  background: rgba(192, 95, 255, 0.14);
}

.hero-screen-embed {
  position: relative;
  z-index: 1;
  min-height: 100%;
  border-radius: inherit;
  overflow: hidden;
  background: rgba(11, 16, 33, 0.9);
}

.hero-screen-embed__viewport {
  position: relative;
  min-height: 100%;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  border-radius: inherit;
  overflow: hidden;
  background: #0b1021;
}

.hero-screen-embed__viewport::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 88px;
  background: linear-gradient(180deg, rgba(11, 16, 33, 0) 0%, rgba(11, 16, 33, 0.22) 44%, rgba(11, 16, 33, 0.82) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-screen-embed__frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #ffffff;
  pointer-events: none;
  transform: scale(1.02);
  transform-origin: top center;
}

.hero-screen-embed__footer {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  pointer-events: none;
}

.hero-screen-embed__footer .button {
  min-height: 40px;
  padding-inline: 16px;
  pointer-events: auto;
}

.visual-mark {
  width: 74px;
  height: 74px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  position: relative;
}

.visual-mark::before {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  height: 22px;
  clip-path: polygon(0 100%, 28% 36%, 48% 68%, 66% 20%, 100% 100%);
  background: linear-gradient(135deg, var(--cyan), var(--purple));
}

.visual-mark::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  top: 15px;
  right: 18px;
  background: rgba(255, 255, 255, 0.8);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 18px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.section-head p {
  max-width: 52ch;
}

.section-number {
  display: none;
}

.page-outline {
  margin-top: 8px;
}

.page-outline a,
.page-outline button,
.pill {
  appearance: none;
  font: inherit;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  cursor: pointer;
  transition: border-color var(--ease), color var(--ease), background var(--ease);
}

.page-outline a:hover,
.page-outline button:hover,
.page-outline button:focus-visible,
.pill:hover {
  color: var(--text);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.08);
}

.grid-2,
.grid-3,
.grid-4,
.store-grid,
.products-grid,
.category-row,
.value-grid,
.article-grid,
.map-grid,
.contact-grid,
.footer-grid,
.timeline-grid {
  display: grid;
  gap: 16px;
}

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

.grid-3,
.value-grid,
.article-grid,
.timeline-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

.highlight-grid-five {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.category-row {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.store-card,
.product-card,
.category-card,
.value-card,
.article-card,
.map-card,
.contact-card,
.feature-card,
.timeline-card {
  border-radius: var(--radius-lg);
  padding: 20px;
}

.store-card,
.map-card,
.feature-card,
.timeline-card {
  display: grid;
  gap: 14px;
}

.store-title,
.product-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}

.store-badge,
.value-icon,
.contact-icon {
  min-width: 54px;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
}

.store-badge,
.contact-icon {
  color: var(--cyan);
}

.store-card__menu-button,
.store-card__menu-button:hover,
.store-card__menu-button:focus-visible {
  color: var(--text);
}

.value-icon {
  color: var(--warning);
}

.store-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 0.92rem;
}

.store-address-mobile {
  display: none;
}

.store-address-mobile span {
  display: block;
}

.store-meta span,
.meta-pill {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.category-card {
  display: grid;
  justify-items: stretch;
  align-content: start;
  gap: 12px;
  min-height: 0;
  text-align: center;
  overflow: hidden;
  transition: transform var(--ease), border-color var(--ease), background var(--ease);
}

.category-card__media {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.category-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.category-card:hover,
.product-card:hover,
.value-card:hover,
.article-card:hover,
.map-card:hover,
.contact-card:hover,
.timeline-card:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.07);
}

.category-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto;
  border-radius: 18px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  color: var(--cyan);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.category-card span {
  display: block;
  color: var(--text);
  font-weight: 700;
}

.product-card {
  display: grid;
  gap: 14px;
}

.product-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--line);
}

.product-art {
  position: relative;
  inset: auto;
  min-height: 142px;
}

.product-art span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(4, 9, 23, 0.74);
  border: 1px solid var(--line);
  font-size: 0.78rem;
}

.product-meta {
  display: grid;
  gap: 6px;
  font-size: 0.92rem;
}

.shop-menu-anchor {
  display: block;
  position: relative;
  top: -120px;
  visibility: hidden;
}

.menu-page-hero,
.menu-embed-panel,
.menu-page-notes {
  display: grid;
  gap: 22px;
}

.menu-page-main {
  padding-top: 20px;
}

.menu-page-shell {
  width: min(1560px, calc(100vw - 40px));
  max-width: none;
  margin: 0 auto;
  gap: 18px;
}

.menu-page-shell .menu-page-hero {
  padding: 22px 24px;
}

.menu-page-shell .menu-page-meta,
.menu-page-shell .menu-page-actions,
.menu-page-shell .menu-page-switcher {
  gap: 10px;
}

.menu-page-shell .menu-embed-panel {
  padding: 0;
  overflow: hidden;
}

.menu-page-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.menu-page-copy {
  display: grid;
  gap: 14px;
}

.menu-page-copy h1 {
  margin: 0;
}

.menu-page-store-badge {
  display: grid;
  gap: 10px;
  justify-items: start;
  justify-self: start;
  text-align: left;
}

.menu-page-meta,
.menu-page-actions,
.menu-page-switcher {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.menu-page-meta span {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.menu-embed-panel__head {
  display: grid;
  gap: 14px;
  align-items: start;
  padding: 22px 24px 0;
}

.menu-embed-panel__eyebrow {
  display: none;
}

.menu-embed-panel__switcher {
  display: inline-grid;
  width: fit-content;
  max-width: 100%;
  grid-template-columns: repeat(2, minmax(160px, 1fr));
  gap: 12px;
}

.menu-embed-panel__switcher .button {
  width: 100%;
}

.menu-plugin-slot {
  display: grid;
  gap: 18px;
  min-width: 0;
  padding: 0 0 18px;
  overflow: visible;
}

.menu-plugin-slot > weave-ordering[location] {
  --weave-header-offset: 88px;
  --weave-location-manager: hidden;
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 0;
  height: auto;
}

.menu-plugin-missing {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
}

.menu-plugin-missing strong {
  color: var(--text);
}

weave-ordering [data-infinity-weave-product-title="true"] {
  color: #625cc8 !important;
}

weave-ordering [data-infinity-weave-product-title="true"]:hover {
  color: #534db7 !important;
}

weave-ordering [data-infinity-weave-product-cta="true"] {
  background: #706ad6 !important;
  border-color: #706ad6 !important;
  color: #ffffff !important;
  box-shadow: 0 8px 20px rgba(112, 106, 214, 0.28) !important;
}

weave-ordering [data-infinity-weave-product-cta="true"]:hover,
weave-ordering [data-infinity-weave-product-cta="true"][aria-pressed="true"],
weave-ordering [data-infinity-weave-product-cta="true"][aria-selected="true"],
weave-ordering [data-infinity-weave-product-cta="true"][aria-current="page"] {
  background: #625dc9 !important;
  border-color: #625dc9 !important;
  color: #ffffff !important;
  box-shadow: 0 8px 20px rgba(112, 106, 214, 0.28) !important;
}

weave-ordering [data-infinity-weave-product-cta="true"] :is(svg, path, circle, rect, line, polyline, polygon) {
  fill: currentColor !important;
  stroke: currentColor !important;
}

.menu-page-notes > * {
  max-width: 72ch;
}

.menu-page-notes > * + * {
  margin-top: 18px;
}

.menu-page-shell--clean {
  width: min(1680px, calc(100vw - 24px));
  max-width: 100%;
  gap: 16px;
}

.menu-preview-card {
  display: grid;
  gap: 18px;
  padding: 18px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(7, 11, 24, 0.9);
  box-shadow: 0 22px 50px rgba(3, 7, 18, 0.26);
}

.menu-preview-switcher-card {
  gap: 14px;
}

.menu-preview-store-toggle {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.menu-preview-store-toggle .button {
  width: 100%;
}

.menu-preview-embed-card {
  display: grid;
  align-items: stretch;
  padding: 10px;
  min-height: 0;
  height: auto;
  overflow: hidden;
}

.menu-preview-embed-shell {
  display: grid;
  align-items: stretch;
  min-height: 0;
  height: auto;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.menu-preview-embed-shell .menu-plugin-slot {
  display: grid;
  min-height: 0;
  height: auto;
  align-self: stretch;
  padding-bottom: 0;
}

.menu-preview-embed-shell .menu-plugin-slot > * {
  min-height: 0;
  height: auto;
}

.menu-preview-copy-card {
  gap: 16px;
}

.menu-preview-copy-card h2 {
  margin: 0;
}

.weekly-deals-panel,
.weekly-deals-list {
  display: grid;
  gap: 18px;
}

.limited-time-panel,
.limited-time-embed {
  display: grid;
  gap: 18px;
}

.limited-time-embed {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 84% 82%, rgba(176, 108, 255, 0.18), transparent 28%),
    radial-gradient(circle at 14% 18%, rgba(117, 248, 255, 0.14), transparent 24%),
    #0b1021;
  aspect-ratio: 16 / 9;
  min-height: 300px;
}

.limited-time-embed::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 88px;
  background: linear-gradient(180deg, rgba(11, 16, 33, 0) 0%, rgba(11, 16, 33, 0.22) 44%, rgba(11, 16, 33, 0.82) 100%);
  pointer-events: none;
  z-index: 1;
}

.limited-time-embed__frame {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  background: #ffffff;
  transform: scale(1.02);
  transform-origin: top center;
}

.deals-hero-embed-panel {
  display: grid;
  align-items: center;
  padding: 22px;
}

.deals-hero-embed-panel .limited-time-embed {
  width: 100%;
  min-height: 0;
  border: 0;
  border-radius: 24px;
  background: transparent;
  box-shadow: none;
}

.deals-hero-embed-panel .limited-time-embed::after,
.deals-hero-embed-panel::before,
.deals-hero-embed-panel::after {
  display: none;
}

.deals-hero-embed-panel .limited-time-embed__frame {
  background: transparent;
  transform: none;
}

@media (max-width: 720px) {
  body[data-page-key="shop"] {
    --menu-page-mobile-header: 74px;
    --menu-page-mobile-switcher: 72px;
    --menu-page-mobile-footer: calc(74px + env(safe-area-inset-bottom, 0px));
    --menu-page-mobile-gap: 22px;
  }

  .deals-hero-embed-panel {
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .deals-hero-embed-panel .limited-time-embed {
    aspect-ratio: 16 / 9;
    min-height: 0;
    max-width: 100%;
    overflow: hidden;
    border-radius: 18px;
  }
}

.weekly-deal-card {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03)),
    rgba(7, 11, 24, 0.82);
  box-shadow: var(--shadow);
  scroll-margin-top: 140px;
}

.weekly-deal-day {
  display: grid;
  gap: 8px;
  align-content: center;
  padding: 18px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(117, 248, 255, 0.2), rgba(117, 248, 255, 0.08)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(117, 248, 255, 0.22);
  color: var(--cyan);
}

.weekly-deal-day--alt {
  background:
    linear-gradient(180deg, rgba(255, 211, 111, 0.2), rgba(255, 211, 111, 0.08)),
    rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 211, 111, 0.2);
  color: var(--warning);
}

.weekly-deal-day__abbr {
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.weekly-deal-day__name {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 247, 255, 0.76);
}

.weekly-deal-copy {
  display: grid;
  gap: 10px;
  align-content: center;
}

.weekly-deal-title {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.weekly-deal-lines {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.weekly-deal-lines li {
  color: var(--text);
  font-size: clamp(1.22rem, 2.25vw, 1.95rem);
  font-weight: 700;
  line-height: 1.04;
}

.weekly-deals-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.shop-selector-panel {
  gap: 22px;
}

.wellness-section {
  display: grid;
  gap: 22px;
}

.guide-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.guide-card {
  min-height: 100%;
  align-content: start;
}

.guide-card .card-actions {
  margin-top: auto;
}

.wellness-copy-card,
.wellness-disclaimer-card {
  max-width: 74ch;
}

.wellness-product-grid {
  align-items: stretch;
}

.location-section-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.location-store-grid {
  align-items: stretch;
}

.location-store-tile {
  display: grid;
  gap: 16px;
  align-content: start;
}

.location-store-tile > .map-visual {
  min-height: 320px;
}

.location-store-tile h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.location-heading-card,
.location-photo-card,
.location-details-card,
.location-map-card {
  min-height: 100%;
}

.location-heading-card {
  align-content: start;
}

.location-heading-card h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.location-heading-card p {
  max-width: 36ch;
}

.location-photo-card .location-photo-frame,
.location-map-card .map-visual {
  min-height: 100%;
}

.location-map-card .map-visual {
  min-height: 320px;
}

.shop-selector-grid {
  align-items: stretch;
}

.shop-selector-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at top right, rgba(117, 248, 255, 0.18), transparent 34%),
    radial-gradient(circle at bottom left, rgba(192, 95, 255, 0.16), transparent 30%);
}

.shop-selector-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 211, 111, 0), rgba(255, 211, 111, 0.9), rgba(255, 211, 111, 0));
}

.shop-selector-kicker {
  margin: 0 0 8px;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--warning);
}

.shop-selector-copy {
  max-width: 34ch;
  color: var(--muted);
}

.shop-selector-note {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
}

.shop-selector-note strong {
  color: var(--text);
}

.price-line {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.price-line strong {
  color: var(--text);
  font-size: 1.18rem;
}

.price-line del {
  color: rgba(255, 255, 255, 0.42);
}

.value-card {
  display: grid;
  gap: 12px;
}

.split-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.split-copy {
  display: grid;
  gap: 16px;
}

.seo-detail-panel {
  align-items: start;
}

.seo-side-card {
  align-content: start;
}

.seo-checklist {
  gap: 12px;
}

.seo-checklist li {
  position: relative;
  padding-left: 18px;
}

.seo-checklist li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  box-shadow: 0 0 18px rgba(117, 248, 255, 0.3);
}

.pet-cbd-section {
  align-items: stretch;
}

.pet-cbd-visual {
  min-height: 420px;
}

.pet-cbd-timeline {
  display: grid;
  gap: 16px;
  align-content: start;
}

.article-card {
  display: grid;
  gap: 12px;
}

.product-guide-card {
  min-height: 100%;
}

.product-guide-card .card-actions {
  margin-top: auto;
}

.pillar-category-grid,
.pillar-linked-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pillar-category-card {
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: 100%;
}

.pillar-category-card__media {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 11, 24, 0.88);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 16px 36px rgba(0, 0, 0, 0.24);
}

.pillar-category-card__media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform var(--ease);
}

.pillar-category-card__media:hover img,
.pillar-category-card__media:focus-visible img {
  transform: scale(1.03);
}

.pillar-detail-panel,
.pillar-support-grid {
  align-items: stretch;
}

.pillar-copy-stack {
  align-content: start;
}

.pillar-lead-copy {
  margin: 0;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.02);
  color: var(--text) !important;
  font-size: 1.05rem;
  line-height: 1.6;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.pillar-summary-card {
  align-content: start;
}

.pillar-callout {
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(117, 248, 255, 0.08), rgba(192, 95, 255, 0.08)),
    rgba(255, 255, 255, 0.03);
}

.pillar-fact-list {
  display: grid;
  gap: 12px;
}

.pillar-fact-item {
  display: grid;
  gap: 6px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.pillar-fact-item span {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warning);
}

.pillar-fact-item strong,
.pillar-fact-item strong a {
  color: var(--text);
}

.pillar-page .section-card,
.pillar-page .page-panel {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.pillar-page .section-card::before,
.pillar-page .page-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(117, 248, 255, 0.08), transparent 28%),
    radial-gradient(circle at bottom right, rgba(192, 95, 255, 0.1), transparent 32%);
  pointer-events: none;
  z-index: -1;
}

.pillar-hero {
  padding: 32px;
}

.pillar-page--products .pillar-hero--overview .page-hero-copy {
  max-width: 980px;
}

.pillar-page--products .pillar-hero--overview .stat-strip {
  max-width: 760px;
}

.pillar-link-row,
.pillar-page .page-outline,
.pillar-page .page-outline--soft {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.pillar-page .page-outline a,
.pillar-page .page-outline button,
.pillar-page .page-outline--soft a,
.pillar-link-row a,
.pillar-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  color: var(--cyan);
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  transition: color var(--ease), opacity var(--ease);
}

.pillar-page .page-outline a::after,
.pillar-page .page-outline button::after,
.pillar-page .page-outline--soft a::after,
.pillar-link-row a::after,
.pillar-card-link::after {
  content: "->";
  font-size: 0.88em;
  opacity: 0.75;
}

.pillar-page .page-outline a:hover,
.pillar-page .page-outline a:focus-visible,
.pillar-page .page-outline button:hover,
.pillar-page .page-outline button:focus-visible,
.pillar-page .page-outline--soft a:hover,
.pillar-page .page-outline--soft a:focus-visible,
.pillar-link-row a:hover,
.pillar-link-row a:focus-visible,
.pillar-card-link:hover,
.pillar-card-link:focus-visible {
  color: var(--text);
}

.pillar-card-heading a {
  color: inherit;
  text-decoration: none;
  transition: color var(--ease);
}

.pillar-card-heading a:hover,
.pillar-card-heading a:focus-visible {
  color: var(--cyan);
}

.pillar-card-link {
  margin-top: auto;
}

.card-actions + .pillar-card-link,
.card-actions + .pillar-link-row {
  margin-top: 2px;
}

.pillar-card-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pillar-card-tags span {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.2;
}

.visual-panel--overview {
  display: block;
}

.pillar-overview-board {
  position: absolute;
  inset: 22px;
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(17, 28, 48, 0.9), rgba(14, 18, 36, 0.92)),
    rgba(8, 12, 27, 0.9);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 18px 40px rgba(0, 0, 0, 0.28);
}

.pillar-overview-board__lead {
  display: grid;
  gap: 10px;
}

.pillar-overview-board__lead strong {
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  line-height: 1;
}

.pillar-overview-board__lead p {
  max-width: 36ch;
  color: var(--muted);
}

.pillar-overview-board__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.pillar-overview-board__item {
  display: grid;
  align-content: end;
  gap: 8px;
  min-height: 140px;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.02);
}

.pillar-overview-board__item span {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warning);
}

.pillar-overview-board__item strong {
  font-size: 1.05rem;
  line-height: 1.2;
}

.pillar-step-card {
  position: relative;
  padding-top: 58px;
}

.pillar-step-card__count {
  position: absolute;
  top: 18px;
  left: 18px;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--warning);
}

.pillar-page--products .pillar-section--categories .pillar-category-card:first-child {
  grid-column: span 2;
}

.pillar-page--products .pillar-section--categories .pillar-category-card:first-child .pillar-category-card__media img {
  min-height: 280px;
  aspect-ratio: 16 / 9;
}

.pillar-category-card {
  position: relative;
  overflow: hidden;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.pillar-category-card:hover,
.pillar-category-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.24);
}

.pillar-copy-card,
.pillar-link-card,
.pillar-map-card,
.pillar-action-card {
  min-height: 100%;
}

.pillar-link-card {
  align-content: start;
}

.pillar-product-visual__card,
.pillar-location-visual__card {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  display: grid;
  gap: 10px;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(10, 16, 31, 0.84), rgba(10, 16, 31, 0.92)),
    rgba(10, 16, 31, 0.92);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
}

.pillar-product-visual__card strong,
.pillar-location-visual__card strong {
  font-size: 1.18rem;
}

.pillar-location-visual__card p {
  color: var(--muted);
}

.pillar-location-resource-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  align-items: stretch;
}

.pillar-location-resource-stack {
  display: grid;
  gap: 16px;
}

.pillar-map-card .map-visual {
  position: relative;
  inset: auto;
  min-height: 320px;
  margin-top: 6px;
}

.pillar-map-card .card-actions {
  margin-top: auto;
}

.pillar-section--stores .shop-selector-card,
.pillar-section--support .feature-card,
.pillar-section--resources .feature-card,
.pillar-section--story .pillar-summary-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at top right, rgba(117, 248, 255, 0.1), transparent 34%),
    rgba(255, 255, 255, 0.02);
}

.article-card h3,
.product-card h3,
.store-card h3,
.map-card h3,
.value-card h3,
.contact-card h3,
.timeline-card h3 {
  font-size: 1.12rem;
}

.article-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.map-visual {
  position: relative;
  inset: auto;
  min-height: 180px;
  border-style: solid;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 16px 40px rgba(0, 0, 0, 0.28);
}

.location-photo-frame {
  border-radius: 20px;
  overflow: hidden;
  background: rgba(7, 11, 24, 0.88);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 16px 40px rgba(0, 0, 0, 0.28);
}

.location-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.map-visual::before,
.map-visual::after {
  content: none;
}

.map-visual--compact {
  min-height: 150px;
}

.map-embed {
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
  display: block;
  filter: none;
  transform: none;
}

.map-visual--embed::before,
.map-visual--embed::after {
  display: none;
}

.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 28px;
  margin-left: -14px;
  margin-top: -14px;
  border-radius: 18px 18px 18px 2px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  box-shadow: 0 0 24px rgba(117, 248, 255, 0.28);
}

.map-pin::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #07101c;
  top: 9px;
  left: 9px;
}

.hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 14px;
  font-size: 0.94rem;
}

.faq-stack {
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  line-height: 1;
  color: var(--cyan);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-answer {
  padding: 0 20px 20px;
  max-width: 78ch;
}

.contact-card,
.newsletter-panel,
.timeline-card {
  display: grid;
  gap: 14px;
}

.blog-post-hero .page-hero-copy h1 {
  max-width: 14ch;
  font-size: clamp(2.9rem, 6.2vw, 4.9rem);
}

.blog-post-intro {
  max-width: 58ch;
  font-size: 1.04rem;
}

.blog-post-meta {
  margin-top: -2px;
}

.blog-post-visual {
  min-height: 420px;
}

.blog-post-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-post-content {
  display: grid;
  gap: 18px;
}

.blog-post-content__body > * {
  max-width: 72ch;
}

.blog-post-content__body > * + * {
  margin-top: 18px;
}

.blog-post-content__body h2,
.blog-post-content__body h3,
.blog-post-content__body h4 {
  line-height: 1.08;
}

.blog-post-content__body h2 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
}

.blog-post-content__body h3 {
  font-size: clamp(1.34rem, 2.8vw, 1.75rem);
}

.blog-post-content__body p,
.blog-post-content__body li {
  line-height: 1.78;
}

.blog-post-content__body ul,
.blog-post-content__body ol {
  padding-left: 22px;
}

.blog-post-content__body a {
  color: var(--cyan);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.blog-post-content__body strong {
  color: var(--text);
}

.blog-post-content__body blockquote {
  margin-left: 0;
  padding: 18px 20px;
  border-left: 3px solid var(--cyan);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.blog-post-content__body figure,
.blog-post-content__body .wp-block-image {
  display: grid;
  gap: 10px;
}

.blog-post-content__body img {
  border-radius: 20px;
  border: 1px solid var(--line);
}

.blog-post-content__body figcaption {
  font-size: 0.88rem;
  color: var(--muted);
}

.blog-post-related__grid {
  align-items: stretch;
}

.blog-post-related__card {
  min-height: 100%;
}

.blog-post-related__card .card-actions {
  margin-top: auto;
}

.blog-post-compliance__note {
  font-size: 0.88rem;
  line-height: 1.58;
}

.blog-index-card {
  align-content: start;
}

.blog-index-card:focus-within {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.07);
}

.blog-index-card__link {
  display: grid;
  gap: 12px;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
}

.blog-index-card__media {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 11, 24, 0.88);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 16px 40px rgba(0, 0, 0, 0.28);
  aspect-ratio: 16 / 9;
}

.blog-index-card__media--placeholder {
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
}

.blog-index-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-index-card__link:focus-visible {
  outline: none;
}

.blog-index-card__title {
  color: inherit;
  transition: color var(--ease);
}

.blog-index-card__link:hover .blog-index-card__title,
.blog-index-card__link:focus-visible .blog-index-card__title {
  color: var(--text);
}

.blog-pagination {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.blog-pagination__status {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
}

.entry-content-panel a {
  color: var(--cyan);
}

.field-grid {
  display: grid;
  gap: 12px;
}

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

.field,
.textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.textarea {
  min-height: 132px;
  padding-top: 14px;
  resize: vertical;
}

.field::placeholder,
.textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.demo-note {
  color: var(--warning);
  font-size: 0.88rem;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 30px 0 46px;
  background: rgba(4, 8, 20, 0.35);
}

.footer-grid {
  grid-template-columns: 1.15fr 0.8fr 0.7fr 0.9fr 1fr;
  align-items: start;
}

.footer-copy {
  display: grid;
  gap: 16px;
}

.footer-list {
  display: grid;
  gap: 10px;
}

.footer-location-embeds {
  display: grid;
  gap: 12px;
}

.footer-location-embed-grid {
  display: grid;
  gap: 12px;
}

.footer-location-card {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    rgba(7, 11, 24, 0.82);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 14px 32px rgba(0, 0, 0, 0.2);
}

.footer-location-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.footer-location-card__title {
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
}

.footer-location-card__title:hover {
  color: var(--cyan);
}

.footer-location-card__badge {
  min-width: 42px;
  height: 42px;
  padding: 0 10px;
  border-radius: 14px;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warning);
  background: rgba(255, 255, 255, 0.05);
}

.footer-location-card__meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.footer-location-card__map {
  min-height: 118px;
}

.footer-location-card__links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-location-card__links a {
  color: var(--muted);
  font-size: 0.84rem;
  text-decoration: none;
}

.footer-location-card__links a:hover {
  color: var(--text);
}

.footer-list strong {
  margin-bottom: 2px;
  font-size: 0.94rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-list a {
  color: var(--muted);
}

.footer-list a:hover {
  color: var(--text);
}

.newsletter-panel {
  border-radius: var(--radius-lg);
  padding: 18px;
}

.newsletter-field {
  flex: 1 1 180px;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.newsletter-field::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.footer-note {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--muted);
}

.is-hidden {
  display: none;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

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

@media (max-width: 1120px) {
  .hero-card,
  .page-hero,
  .page-hero.page-hero--split,
  .split-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .highlight-grid-five {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .value-grid,
  .article-grid,
  .timeline-grid {
    grid-template-columns: 1fr;
  }

  .blog-post-hero .page-hero-copy h1 {
    max-width: none;
  }

  .menu-page-header {
    grid-template-columns: 1fr;
  }

  .menu-page-store-badge {
    justify-items: start;
    text-align: left;
  }

  .menu-embed-panel__head {
    align-items: start;
  }

  .visual-panel {
    min-height: 320px;
  }

  .visual-panel--pillar {
    min-height: 360px;
  }

  .pillar-location-resource-grid {
    grid-template-columns: 1fr;
  }

  .pillar-category-grid,
  .pillar-linked-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pet-cbd-visual {
    min-height: 360px;
  }
}

@media (max-width: 1280px) {
  .nav-list {
    gap: 6px;
  }

  .nav-link {
    padding: 8px 10px;
    font-size: 0.92rem;
  }

  .header-ctas .button {
    padding-inline: 14px;
  }
}

@media (max-width: 980px) {
  body.mobile-nav-open {
    overflow: hidden;
  }

  body.mobile-nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(5, 9, 20, 0.58);
    backdrop-filter: blur(4px);
    z-index: 900;
  }

  .nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .site-header {
    z-index: 1000;
  }

  .primary-nav {
    position: fixed;
    right: 0;
    left: auto;
    top: 0;
    bottom: 0;
    width: min(86vw, 390px);
    min-width: 0;
    max-width: 390px;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: calc(22px + env(safe-area-inset-top, 0px)) 18px calc(24px + env(safe-area-inset-bottom, 0px));
    border-radius: 24px 0 0 24px;
    background:
      radial-gradient(circle at 0 0, rgba(106, 232, 242, 0.16), transparent 34%),
      linear-gradient(180deg, rgba(10, 15, 32, 0.98), rgba(6, 10, 24, 0.98)),
      rgba(6, 10, 24, 1);
    border: 0;
    border-left: 1px solid var(--line);
    box-shadow: -24px 0 60px rgba(0, 0, 0, 0.34);
    box-sizing: border-box;
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    overflow-y: auto;
    overscroll-behavior: contain;
    display: flex;
    opacity: 0;
    pointer-events: none;
    transform: translateX(104%);
    transition: opacity 180ms ease, transform 240ms ease, visibility 240ms ease;
    visibility: hidden;
    z-index: 1001;
  }

  body.mobile-nav-open .primary-nav,
  .primary-nav.is-open {
    display: flex;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    visibility: visible;
  }

  .nav-list {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-list > .nav-link {
    width: 100%;
    justify-content: flex-start;
  }

  .nav-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .header-ctas {
    display: flex;
    margin-left: auto;
    gap: 7px;
  }

  .header-ctas > .button {
    display: none;
  }

  .header-ctas--store > .button {
    display: inline-flex;
  }

  .nav-item-trigger {
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .nav-item-trigger > .nav-link {
    width: 100%;
    justify-content: flex-start;
    min-height: 48px;
    padding-right: 10px;
  }

  .nav-dropdown-toggle {
    flex: 0 0 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    cursor: pointer;
    transition: border-color var(--ease), background var(--ease), transform var(--ease);
  }

  .nav-dropdown-toggle:hover,
  .nav-dropdown-toggle:focus-visible,
  .nav-item.is-open .nav-dropdown-toggle {
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, 0.08);
  }

  .nav-dropdown-toggle:focus-visible {
    outline: none;
  }

  .nav-dropdown-toggle span {
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    transition: transform var(--ease);
  }

  .nav-item.is-open .nav-dropdown-toggle span {
    transform: rotate(225deg) translate(-1px, -1px);
  }

  .header-ctas .button {
    min-height: 40px;
    padding-inline: 12px;
    font-size: 0.88rem;
  }

  .header-ctas--store .button {
    min-height: 38px;
    padding-inline: 10px;
    font-size: 0.78rem;
  }

  .nav-toggle-button {
    display: inline-flex;
    flex: 0 0 42px;
  }

  .nav-dropdown {
    position: static;
    min-width: 0;
    width: 100%;
    padding: 0 0 0 14px;
    border: none;
    border-radius: 0;
    background: transparent;
    display: grid;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    box-shadow: none;
    display: none;
  }

  .js .nav-item.is-open .nav-dropdown {
    display: grid;
  }

  .nav-dropdown-link {
    min-height: 38px;
    padding: 8px 12px;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0 12px 12px 0;
  }

  .nav-mobile-ctas {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
  }

  .nav-mobile-ctas .button {
    width: 100%;
    justify-content: center;
  }

  body.store-menu-page .menu-page-main {
    padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px));
  }

  body.store-menu-page .menu-preview-embed-card,
  body.store-menu-page .menu-preview-embed-shell,
  body.store-menu-page .menu-plugin-slot {
    overflow: visible;
  }

  body.store-menu-page .menu-plugin-slot > weave-ordering[location] {
    --weave-header-offset: var(--mobile-nav-offset, 72px);
  }

  body.store-menu-page.weave-route-overlay-active .menu-preview-embed-card {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    overflow: visible;
  }

  body.store-menu-page.weave-route-overlay-active .menu-preview-embed-shell {
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }

  body.store-menu-page.weave-route-overlay-active .menu-preview-embed-shell .menu-plugin-slot,
  body.store-menu-page.weave-route-overlay-active .menu-preview-embed-shell .menu-plugin-slot > * {
    min-height: 0;
    height: auto;
    overflow: visible;
  }

  .store-grid,
  .map-grid,
  .contact-grid,
  .field-grid.two-up,
  .location-section-grid,
  .location-store-grid,
  .guide-grid {
    grid-template-columns: 1fr;
  }

  .store-grid--hero-locations {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .store-grid--hero-locations .store-meta span:nth-child(-n + 2) {
    display: none;
  }

  .store-grid--hero-locations .store-address {
    font-size: 0.84rem;
    line-height: 1.3;
  }

  .store-grid--hero-locations .store-address-full {
    display: none;
  }

  .store-grid--hero-locations .store-address-mobile {
    display: block;
  }

  .category-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pillar-overview-board__grid {
    grid-template-columns: 1fr;
  }

  .weekly-deal-card {
    grid-template-columns: 1fr;
  }

  .weekly-deal-day {
    grid-template-columns: auto auto;
    align-items: end;
    justify-content: start;
  }

  .map-visual--compact {
    min-height: 180px;
  }

  .section-head {
    flex-direction: column;
    align-items: start;
  }

  .menu-page-shell {
    width: min(calc(100vw - 20px), 100%);
  }

  .menu-page-shell--clean {
    width: min(1680px, calc(100vw - 20px));
  }

  .menu-page-shell .menu-page-hero,
  .menu-embed-panel__head {
    padding-inline: 20px;
  }

  .menu-preview-card {
    padding: 18px;
    border-radius: 22px;
  }

  .menu-page-meta span {
    white-space: normal;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 24px, 100%);
  }

  .brand-logo {
    height: 46px;
  }

  .header-ctas {
    gap: 6px;
  }

  .header-ctas .button {
    min-height: 38px;
    padding-inline: 10px;
    font-size: 0.84rem;
  }

  .header-ctas--store .button {
    min-height: 34px;
    padding-inline: 8px;
    font-size: 0.72rem;
  }

  .nav-toggle-button {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .hero-carousel {
    inset: 18px;
  }

  .hero-card--home {
    grid-template-columns: 1fr;
  }

  .hero-card--home .hero-copy h1 {
    max-width: 10ch;
  }

  .visual-panel--home-hero {
    min-height: 0;
  }

  .hero-carousel__copy {
    left: 18px;
    right: 18px;
    bottom: 18px;
    max-width: none;
  }

  .hero-carousel__side {
    display: none;
  }

  .hero-carousel__copy strong {
    font-size: 1.45rem;
  }

  .hero-carousel__copy span:last-child {
    font-size: 0.92rem;
  }

  .hero-carousel__nav {
    top: auto;
    right: 18px;
    bottom: 18px;
  }

  .age-gate__card {
    padding: 22px;
  }

  .brand-logo {
    height: 48px;
  }

  .brand--footer .brand-logo {
    height: 42px;
  }

  .page-main {
    padding-top: 18px;
  }

  .section-card,
  .page-panel {
    padding: 20px;
  }

  .menu-page-main {
    padding-top: 14px;
  }

  .menu-page-shell {
    width: min(calc(100vw - 12px), 100%);
  }

  .menu-page-shell--clean {
    width: min(calc(100vw - 4px), 100%);
    gap: 10px;
  }

  .menu-page-shell .menu-embed-panel {
    overflow: visible;
  }

  .menu-preview-card {
    padding: 10px;
    border-radius: 18px;
  }

  .menu-preview-switcher-card {
    padding-block: 8px;
  }

  .menu-preview-embed-card {
    padding: 4px;
    min-height: 0;
    height: auto;
  }

  .menu-preview-embed-shell {
    min-height: 0;
    height: auto;
    border-radius: 14px;
    overflow: visible;
    padding-bottom: 0;
  }

  .menu-preview-embed-shell .menu-plugin-slot {
    min-height: 0;
    height: auto;
  }

  .menu-page-shell .menu-page-hero,
  .menu-embed-panel__head {
    padding-inline: 18px;
  }

  .menu-embed-panel__head {
    align-items: start;
  }

  .menu-embed-panel__switcher {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page-key="shop"] .site-header {
    position: relative !important;
    top: auto !important;
    z-index: 1 !important;
  }

  body[data-page-key="shop"] .menu-page-shell--clean .menu-plugin-slot > weave-ordering[location] {
    min-height: 0;
    height: auto;
    block-size: auto;
  }

  .hero-copy h1,
  .page-hero-copy h1 {
    font-size: clamp(2.5rem, 13vw, 4.2rem);
  }

  .products-grid,
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .blog-post-visual {
    min-height: 300px;
  }

  .visual-panel,
  .pet-cbd-visual,
  .location-store-tile > .map-visual,
  .location-map-card .map-visual {
    min-height: 280px;
  }

  .visual-panel--pillar {
    min-height: 320px;
  }

  .pillar-hero--product .visual-panel--pillar,
  .page-hero--split > .visual-panel--pillar {
    min-height: 260px;
  }

  .pillar-page--product .pillar-hero--product > .visual-panel {
    display: none !important;
  }

  .pillar-overview-board {
    inset: 18px;
    padding: 18px;
  }

  .pillar-overview-board__item {
    min-height: 0;
  }

  .pillar-product-visual__card,
  .pillar-location-visual__card {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 14px 16px;
  }

  .pillar-mosaic {
    inset: 18px;
    gap: 12px;
  }

  .pillar-category-grid,
  .pillar-linked-grid {
    grid-template-columns: 1fr;
  }

  .pillar-page--products .pillar-section--categories .pillar-category-card:first-child {
    grid-column: auto;
  }

  .pillar-location-resource-stack {
    gap: 12px;
  }

  .pillar-map-card .map-visual {
    min-height: 240px;
  }

  .pillar-lead-copy {
    padding: 16px 18px;
    font-size: 1rem;
  }

  .visual-panel--home-hero {
    min-height: 0;
  }

  .hero-screen-embed__viewport {
    min-height: 0;
  }

  .hero-screen-embed__frame {
    width: 100%;
    height: 100%;
    transform: scale(1.02);
  }

  .hero-screen-embed__footer {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .highlight-grid-five,
  .store-grid--hero-locations {
    grid-template-columns: 1fr;
  }

  .category-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-actions,
  .card-actions,
  .newsletter-form,
  .page-outline,
  .menu-page-actions,
  .menu-page-switcher,
  .menu-page-meta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions > *,
  .card-actions > *,
  .newsletter-form > *,
  .page-outline > *,
  .menu-page-actions > *,
  .menu-page-switcher > *,
  .menu-page-meta > * {
    width: 100%;
  }

  .page-outline > *,
  .menu-page-meta > * {
    text-align: center;
  }

  .site-header .container {
    width: min(100% - 20px, 100%);
  }

  .nav-bar {
    gap: 10px;
    padding: 12px 0;
  }

  .brand-logo {
    height: 42px;
  }

  .header-ctas .button {
    min-height: 36px;
    padding-inline: 11px;
    font-size: 0.8rem;
  }

  .nav-toggle-button {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  body[data-page-key="home"] .page-stack {
    gap: 18px;
  }

  body[data-page-key="home"] .section-card {
    padding: 18px;
    border-radius: 24px;
  }

  body[data-page-key="home"] .hero-card--home {
    gap: 0;
    padding: 12px;
  }

  body[data-page-key="home"] .hero-card--home .visual-panel--home-hero {
    min-height: 0;
  }

  body[data-page-key="home"] .hero-screen-embed__viewport {
    aspect-ratio: 16 / 8.6;
    min-height: 0;
  }

  body[data-page-key="home"] .hero-copy,
  body[data-page-key="home"] .page-hero-copy {
    gap: 14px;
  }

  body[data-page-key="home"] .hero-card--home .hero-copy h1 {
    max-width: 9ch;
    font-size: clamp(1.52rem, 7.425vw, 2.25rem);
  }

  body[data-page-key="home"] .hero-copy p {
    font-size: 0.99rem;
    line-height: 1.46;
  }

  body[data-page-key="home"] .hero-actions {
    gap: 10px;
  }

  body[data-page-key="home"] .hero-actions .button {
    min-height: 50px;
  }

  body[data-page-key="home"] .hero-screen-embed__footer {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  body[data-page-key="home"] .hero-screen-embed__footer .button {
    min-height: 38px;
    padding-inline: 14px;
    font-size: 0.92rem;
  }

  body[data-page-key="home"] .section-head {
    gap: 12px;
    margin-bottom: 16px;
  }

  body[data-page-key="home"] .section-head h2 {
    font-size: clamp(1.85rem, 8.8vw, 2.45rem);
  }

  body[data-page-key="home"] .section-head p {
    font-size: 0.98rem;
    line-height: 1.5;
  }

  body[data-page-key="home"] .store-card,
  body[data-page-key="home"] .category-card,
  body[data-page-key="home"] .value-card {
    padding: 16px;
  }

  body[data-page-key="home"] .store-card {
    gap: 12px;
  }

  body[data-page-key="home"] .store-badge,
  body[data-page-key="home"] .value-icon {
    min-width: 48px;
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  body[data-page-key="home"] .store-meta {
    gap: 8px;
  }

  body[data-page-key="home"] .store-meta span {
    padding: 7px 10px;
    font-size: 0.84rem;
  }

  body[data-page-key="home"] .map-visual--compact {
    min-height: 132px;
  }

  body[data-page-key="home"] .category-row,
  body[data-page-key="home"] .value-grid {
    gap: 12px;
  }

  body[data-page-key="home"] .category-card {
    gap: 10px;
    border-radius: 20px;
  }

  body[data-page-key="home"] .category-card__media {
    border-radius: 16px;
  }

  body[data-page-key="home"] .category-card span {
    font-size: 0.98rem;
    line-height: 1.2;
  }

  body[data-page-key="home"] .value-card {
    gap: 10px;
  }

  .store-card .card-actions,
  .shop-selector-card .card-actions,
  .pillar-map-card .card-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(142px, 100%), 1fr));
    gap: 10px;
  }

  .store-card .card-actions > *,
  .shop-selector-card .card-actions > *,
  .pillar-map-card .card-actions > * {
    width: 100%;
    min-width: 0;
  }

  .store-card .card-actions .button,
  .shop-selector-card .card-actions .button,
  .pillar-map-card .card-actions .button {
    min-height: 54px;
    padding: 11px 12px;
    font-size: clamp(0.88rem, 3.8vw, 1rem);
    line-height: 1.05;
    white-space: nowrap;
  }

  .menu-page-meta-id-note,
  .menu-page-meta-starting,
  .menu-page-action-choose-location {
    display: none;
  }

  .shop-selector-note {
    align-items: start;
  }

  body[data-page-key="home"] .hero-card--home {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  body[data-page-key="home"] .hero-card--home .visual-panel--home-hero,
  body[data-page-key="home"] .hero-screen-embed,
  body[data-page-key="home"] .hero-screen-embed__viewport {
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  body[data-page-key="home"] .hero-card--home .visual-panel--home-hero {
    border-radius: 0;
    overflow: visible;
  }

  body[data-page-key="home"] .hero-screen-embed__viewport {
    aspect-ratio: 16 / 9;
    border-radius: 18px;
  }

  body[data-page-key="home"] .hero-screen-embed__frame {
    left: -1px;
    width: calc(100% + 2px);
    transform: none;
  }

  body[data-page-key="deals"] .page-hero--split > .deals-hero-embed-panel {
    width: calc(100% + 40px);
    min-height: 0;
    height: auto;
    margin: 6px -20px 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  body[data-page-key="deals"] .deals-hero-embed-panel .limited-time-embed {
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 0;
    border-radius: 18px;
  }

  body[data-page-key="deals"] .deals-hero-embed-panel .limited-time-embed__frame {
    left: -1px;
    width: calc(100% + 2px);
    transform: none;
  }

  .menu-plugin-slot > weave-ordering[location] {
    min-height: 900px;
  }
}
