:root {
  --text-color: 35, 35, 35;
  --heading-color: 0, 0, 0;
  --background-color: 255, 255, 255;
  --foreground-color: 241, 238, 238;
  --border-color: 211, 211, 211;
  --button-bg: 0, 0, 0;
  --button-text: 255, 255, 255;
  --button-secondary: 240, 196, 23;
  --header-bg: 255, 255, 255;
  --header-text: 0, 0, 0;
  --header-hover: 138, 105, 105;
  --announce-bg: 224, 24, 40;
  --announce-text: 255, 255, 255;
  --muted: 114, 112, 112;
  --scheme-2: 240, 239, 241;
  --font: "Instrument Sans", system-ui, sans-serif;
  --font-heading: "TASA Explorer", "Instrument Sans", system-ui, sans-serif;
  --page: 1440px;
  --text-small: 0.825rem;
  --text-base: 0.9625rem;
}

@font-face {
  font-family: "TASA Explorer";
  src: url("../fonts/TASAExplorer-Variable.woff2") format("woff2-variations"),
       url("../fonts/TASAExplorer-Variable.woff2") format("woff2"),
       url("../fonts/TASAExplorer-Variable.ttf") format("truetype-variations"),
       url("../fonts/TASAExplorer-Variable.ttf") format("truetype");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Ballet";
  src: url("../fonts/Ballet72pt-Regular.woff2") format("woff2"),
       url("../fonts/Ballet72pt-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bungee";
  src: url("../fonts/Bungee-Regular.woff2") format("woff2"),
       url("../fonts/Bungee-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  background: rgb(var(--background-color));
  color: rgb(var(--text-color));
  font-size: var(--text-base);
  letter-spacing: 0.02em;
  line-height: 1.45;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, .h1, .h2 {
  font-family: var(--font);
  font-weight: 500;
  color: rgb(var(--heading-color));
  letter-spacing: 0;
  line-height: 1.15;
  margin: 0 0 0.6rem;
}
h1, .h1,
.social-follow-title,
.slide-caption h1 {
  font-family: var(--font-heading);
  font-synthesis: none;
}
h1, .h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2, .h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); text-transform: none; }
h3 { font-size: 1.05rem; font-weight: 500; }

.skip {
  position: absolute;
  left: -999px;
  background: #000;
  color: #fff;
  padding: 8px 12px;
  z-index: 10000;
}
.skip:focus { left: 12px; top: 12px; }

.wrap, .page--width {
  width: min(var(--page), calc(100% - 40px));
  margin: 0 auto;
}

/* Announcement bar — logo red + yellow link */
.topbar, .announcement-bar {
  background: rgb(var(--announce-bg));
  color: rgb(var(--announce-text));
  font-size: var(--text-small);
  font-weight: 500;
  text-align: center;
  padding: 10px 16px;
}
.topbar a, .announcement-bar a {
  color: #f8e000;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.topbar .wrap {
  display: block;
  min-height: 0;
  padding: 0;
}

/* Header — left links, centered logo, right links, icons */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgb(var(--header-bg));
  border-bottom: 1px solid rgb(var(--border-color), 0.45);
}
.header-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  grid-template-areas: "nav-left logo nav-right";
  align-items: center;
  column-gap: 20px;
  position: relative;
  min-height: 84px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-header .brand {
  grid-area: logo;
  position: relative;
  z-index: 2;
  justify-self: center;
}
.brand img, .logo-img {
  height: 50px;
  width: auto;
  max-width: none;
  object-fit: contain;
  background: transparent;
}
.brand-text { display: none; }

.nav-cluster {
  display: flex;
  align-items: center;
}
.nav-cluster--left {
  grid-area: nav-left;
  justify-content: flex-end;
  justify-self: end;
}
.nav-cluster--right {
  grid-area: nav-right;
  justify-content: flex-start;
  justify-self: start;
  padding-right: 96px;
}
.nav a, .menu-link {
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  font-size: var(--text-small);
  font-weight: 400;
  color: rgb(var(--header-text));
  white-space: nowrap;
}
.nav a:hover, .nav a.is-active, .menu-link:hover {
  color: rgb(var(--header-hover));
}

.header-cta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  grid-area: nav-right;
  justify-self: end;
  z-index: 3;
}
.header-icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  color: #000;
}
.header-icon:hover { transform: scale(1.08); }
.cart-link { position: relative; }
.cart-count {
  position: absolute;
  top: -4px;
  right: -8px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 99px;
  background: rgb(var(--button-secondary));
  color: #1a1a1a;
  font-size: 10px;
  font-weight: 600;
  line-height: 16px;
  text-align: center;
}
.menu-toggle {
  display: none;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}
.menu-toggle svg { display: block; }

.btn, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #000;
  border-radius: 5px;
  padding: 11px 18px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  background: #000;
  color: #fff;
  transition: opacity 0.2s ease;
}
.btn:hover, .button:hover { opacity: 0.85; }
.btn-gold, .btn-red {
  background: rgb(var(--button-secondary));
  border-color: rgb(var(--button-secondary));
  color: #1a1a1a;
}
.btn-ghost, .button-outline {
  background: transparent;
  color: #000;
  border-color: #000;
}

/* Hero slideshow */
.hero, .slideshow {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: #111;
}
.hero-grid { display: block; }
.slideshow-track {
  position: relative;
  min-height: 508px;
  height: 87vh;
  max-height: 920px;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
  pointer-events: none;
}
.slide.is-on {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}
.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.12) 48%, rgba(0,0,0,0.22) 100%);
  pointer-events: none;
  z-index: 1;
}
.slide img, .hero-art img, .slideshow-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slide.is-map img {
  object-position: 18% 12%;
}
.slide.is-map::after {
  background:
    linear-gradient(rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.28)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.32) 30%, transparent 48%),
    linear-gradient(215deg, transparent 52%, rgba(0, 0, 0, 0.52) 100%);
}
.slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  pointer-events: none;
  background: #111;
}
.slide video::-webkit-media-controls,
.slide video::-webkit-media-controls-enclosure,
.slide video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}
.slide-caption, .hero-badge {
  position: absolute;
  left: 6%;
  bottom: 12%;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0,0,0,0.45);
  max-width: 520px;
  z-index: 3;
}
.slide-caption h1, .hero-badge strong {
  font-size: clamp(2rem, 5vw, 4.2rem);
  font-weight: 500;
  display: block;
  margin-bottom: 12px;
  color: #fff;
}
.slide-caption p { margin: 0 0 16px; font-size: 1rem; }
.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(0,0,0,0.35);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
}
.slide-arrow:hover { background: rgba(224, 24, 40, 0.9); }
.slide-arrow.prev { left: 16px; }
.slide-arrow.next { right: 16px; }
.slide-arrow svg { display: block; }
.slideshow.is-single .slide-arrow,
.slideshow.is-single .slide-nav { display: none; }
.slide-nav {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 4;
}
.slide-nav button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  padding: 0;
}
.slide-nav button.is-on { background: #f8e000; }

/* Diwali campaign — same caption system as other slides */
.slide.is-diwali::after {
  background: linear-gradient(135deg, rgba(0,0,0,0.58) 0%, rgba(0,0,0,0.22) 30%, transparent 58%);
}
.slide.is-diwali .slide-caption {
  left: 4.5%;
  right: auto;
  top: 6.5%;
  bottom: auto;
  max-width: min(26rem, 42%);
  text-shadow: none;
}
.slide.is-shop video {
  object-position: 80% 42%;
}
.slide.is-shop::after {
  background:
    linear-gradient(90deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 28%, transparent 46%),
    linear-gradient(210deg, transparent 52%, rgba(0,0,0,0.32) 100%);
}
.slide.is-shop .slide-caption {
  left: 4.5%;
  right: auto;
  top: 6.5%;
  bottom: auto;
  transform: none;
  text-align: left;
  max-width: min(26rem, 42%);
  text-shadow: none;
}
.slide.is-shop .shop-kicker {
  margin: 0 0 8px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #f8e000;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}
.slide.is-shop .shop-lockup h1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: clamp(2.7rem, 5.6vw, 4.85rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.86;
  text-shadow: none;
}
.slide.is-shop .shop-line {
  display: block;
  position: relative;
  -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.14);
  background-size: 160px 160px, 100% 100%;
  background-blend-mode: overlay, normal;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.slide.is-shop .shop-line--boom {
  color: #f6f3ea;
  background-image:
    url("../img/type-grain.svg"),
    linear-gradient(185deg, #ffffff 0%, #f4f0e6 48%, #cfc6b4 100%);
  filter:
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.4))
    drop-shadow(0 2px 0 rgba(40, 32, 18, 0.22))
    drop-shadow(0 10px 22px rgba(0, 0, 0, 0.32));
}
.slide.is-shop .shop-line--joy {
  color: #f8e000;
  background-image:
    url("../img/type-grain.svg"),
    linear-gradient(185deg, #fff6b8 0%, #f8e000 36%, #e0b000 68%, #a56d0a 100%);
  filter:
    drop-shadow(0 1px 0 rgba(255, 248, 200, 0.5))
    drop-shadow(0 2px 0 rgba(92, 58, 0, 0.32))
    drop-shadow(0 10px 22px rgba(0, 0, 0, 0.32));
}
@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .slide.is-shop .shop-line {
    -webkit-text-fill-color: unset;
    background-image: none;
    color: inherit;
  }
  .slide.is-shop .shop-line--boom { color: #f6f3ea; }
  .slide.is-shop .shop-line--joy { color: #f8e000; }
}
.slide.is-shop .shop-copy {
  margin: 0 0 16px;
  max-width: 28ch;
  font-size: 0.96rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}
.slide.is-shop .btn {
  background: transparent;
  border-color: #fff;
  color: #fff;
}
.slide.is-shop .btn:hover {
  background: #f8e000;
  border-color: #f8e000;
  color: #111;
  opacity: 1;
}
.shop-corner {
  color: #fff;
}
.shop-corner .shop-corner-kicker {
  margin: 0 0 6px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #f8e000;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}
.shop-corner .shop-corner-title {
  margin: 0 0 6px;
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}
.shop-corner .shop-corner-meta {
  margin: 0 0 10px;
  font-size: 0.78rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.82);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}
.shop-corner-link {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f8e000;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}
.shop-corner-link:hover { color: #fff; }
.slide.is-shop .shop-corner {
  position: absolute;
  right: 4.5%;
  bottom: 52px;
  z-index: 3;
  max-width: 18rem;
  text-align: right;
}
.slide.is-diwali .shop-corner {
  position: absolute;
  left: 4.5%;
  right: auto;
  bottom: 52px;
  z-index: 3;
  max-width: 18rem;
  text-align: left;
}
.slide.is-diwali .shop-corner .shop-corner-kicker,
.slide.is-diwali .shop-corner-link {
  color: #f0c417;
}

.slide.is-map .slide-caption {
  left: 4.5%;
  right: auto;
  top: 6.5%;
  bottom: auto;
  max-width: min(22rem, 34%);
  text-shadow: none;
}
.slide.is-map .map-kicker {
  margin: 0 0 8px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #f8e000;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}
.slide.is-map .map-lockup h1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: clamp(2.35rem, 4.8vw, 4.15rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.86;
  text-shadow: none;
}
.slide.is-map .map-line {
  display: block;
  position: relative;
  -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.14);
  background-size: 160px 160px, 100% 100%;
  background-blend-mode: overlay, normal;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.slide.is-map .map-line--stores {
  color: #f6f3ea;
  background-image:
    url("../img/type-grain.svg"),
    linear-gradient(185deg, #ffffff 0%, #f4f0e6 48%, #cfc6b4 100%);
  filter:
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.4))
    drop-shadow(0 2px 0 rgba(40, 32, 18, 0.22))
    drop-shadow(0 10px 22px rgba(0, 0, 0, 0.32));
}
.slide.is-map .map-line--show {
  color: #f8e000;
  background-image:
    url("../img/type-grain.svg"),
    linear-gradient(185deg, #fff6b8 0%, #f8e000 36%, #e0b000 68%, #a56d0a 100%);
  filter:
    drop-shadow(0 1px 0 rgba(255, 248, 200, 0.5))
    drop-shadow(0 2px 0 rgba(92, 58, 0, 0.32))
    drop-shadow(0 10px 22px rgba(0, 0, 0, 0.32));
}
@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .slide.is-map .map-line {
    -webkit-text-fill-color: unset;
    background-image: none;
    color: inherit;
  }
  .slide.is-map .map-line--stores { color: #f6f3ea; }
  .slide.is-map .map-line--show { color: #f8e000; }
}
.slide.is-map .map-copy {
  margin: 0 0 16px;
  max-width: 24ch;
  font-size: 0.96rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}
.slide.is-map .btn {
  background: transparent;
  border-color: #fff;
  color: #fff;
}
.slide.is-map .btn:hover {
  background: #f8e000;
  border-color: #f8e000;
  color: #111;
  opacity: 1;
}
.slide.is-map .map-corner {
  position: absolute;
  right: 3.5%;
  bottom: 28px;
  z-index: 3;
  max-width: 14rem;
  text-align: right;
  color: #fff;
}
.slide.is-map .map-corner-kicker {
  margin: 0 0 6px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #f8e000;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}
.slide.is-map .map-corner-title {
  margin: 0 0 6px;
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
}
.slide.is-map .map-corner-meta {
  margin: 0 0 8px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.82);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}
.slide.is-map .map-corner-link {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f8e000;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}
.slide.is-map .map-corner-link:hover { color: #fff; }

.slide.is-diwali .diwali-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 8px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #f0c417;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}
.slide.is-diwali .diwali-kicker::before {
  content: "";
  width: 20px;
  height: 1px;
  background: currentColor;
  flex: 0 0 auto;
}
.slide.is-diwali .diwali-lockup h1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: clamp(2.7rem, 5.6vw, 4.85rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.86;
  text-shadow: none;
}
.slide.is-diwali .diwali-line {
  display: block;
  position: relative;
  -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.14);
  background-size: 160px 160px, 100% 100%;
  background-blend-mode: overlay, normal;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.slide.is-diwali .diwali-line--light {
  font-family: "Ballet", cursive;
  font-weight: 400;
  font-size: 1.42em;
  letter-spacing: 0.01em;
  line-height: 1.12;
  text-transform: none;
  padding: 0.06em 0.08em 0.1em 0;
  color: #fff3e0;
  background-image:
    url("../img/type-grain.svg"),
    linear-gradient(185deg, #fffaf0 0%, #ffe7c2 48%, #e8c48a 100%);
  filter:
    drop-shadow(0 1px 0 rgba(255, 236, 200, 0.45))
    drop-shadow(0 2px 0 rgba(80, 40, 8, 0.28))
    drop-shadow(0 10px 22px rgba(0, 0, 0, 0.32));
}
.slide.is-diwali .diwali-line--joy {
  color: #f0a020;
  background-image:
    url("../img/type-grain.svg"),
    linear-gradient(185deg, #ffe08a 0%, #f0a020 40%, #d46b0c 72%, #9a3d08 100%);
  filter:
    drop-shadow(0 1px 0 rgba(255, 220, 150, 0.5))
    drop-shadow(0 2px 0 rgba(90, 35, 0, 0.32))
    drop-shadow(0 10px 22px rgba(0, 0, 0, 0.32));
}
@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .slide.is-diwali .diwali-line {
    -webkit-text-fill-color: unset;
    background-image: none;
    color: inherit;
  }
  .slide.is-diwali .diwali-line--light { color: #fff3e0; }
  .slide.is-diwali .diwali-line--joy { color: #f0a020; }
}
.slide.is-diwali .diwali-copy {
  max-width: 34ch;
  margin: 0 0 22px;
  font-size: 0.95rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.84);
}

.promo-marquee {
  --marquee-gap: 2.75rem;
  background: rgb(var(--announce-bg));
  color: #fff;
  padding: 0;
  overflow: hidden;
}
.promo-marquee-viewport {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 2.5%, #000 97.5%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 2.5%, #000 97.5%, transparent);
}
.promo-marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 36s linear infinite;
}
.promo-marquee:hover .promo-marquee-track {
  animation-play-state: paused;
}
.promo-marquee-group {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
.promo-marquee-item {
  flex: 0 0 auto;
  padding: 15px 0 15px var(--marquee-gap);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
}
.promo-marquee-sep {
  flex: 0 0 auto;
  width: 5px;
  height: 5px;
  margin-left: var(--marquee-gap);
  background: #f8e000;
  transform: rotate(45deg);
  opacity: 1;
}
@keyframes marquee-scroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .promo-marquee-track { animation: none; }
  .promo-marquee-group + .promo-marquee-group { display: none; }
  .promo-marquee-viewport {
    display: flex;
    justify-content: center;
    mask-image: none;
    -webkit-mask-image: none;
  }
  .location-card-media img { transition: none; }
  .location-card:hover .location-card-media img { transform: none; }
}

.kicker {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #727070;
  margin-bottom: 8px;
  font-weight: 500;
}
.kicker::before { display: none; }
.lede { font-size: 1rem; color: #4a4a4a; max-width: 62ch; margin: 0; }

section { padding: 56px 0; }
.section-head {
  text-align: center;
  margin: 0 auto 32px;
  max-width: 720px;
}
.section-head--left {
  text-align: left;
  margin: 0 0 28px;
  max-width: none;
}
.section-head h2, .section-title {
  font-family: "Bungee", var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(1.7rem, 3.6vw, 2.55rem);
  font-weight: 400;
  font-synthesis: none;
  line-height: 1.05;
}
.section-title--red {
  color: rgb(var(--announce-bg));
}
.section-head--locations {
  max-width: none;
  display: flex;
  justify-content: center;
}
.locations-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.81em;
  width: auto;
  margin: 0;
  line-height: 1;
}
.locations-boom {
  width: 1.24em;
  height: 1.24em;
  flex-shrink: 0;
  object-fit: contain;
  pointer-events: none;
}
.muted { color: #727070; }
.gold { color: #000; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
  border-top: 1px solid rgb(var(--border-color));
  border-bottom: 1px solid rgb(var(--border-color));
}
.stat {
  background: #fff;
  border: 0;
  border-right: 1px solid rgb(var(--border-color));
  border-radius: 0;
  padding: 28px 20px;
  text-align: center;
}
.stat:last-child { border-right: 0; }
.stat b {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  color: #000;
  margin-bottom: 4px;
}

.grid-2, .grid-3, .grid-4 {
  display: grid;
  gap: 12px;
}
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card, .collection-tile {
  background: #fff;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  min-height: 100%;
}
.card img.cover, .collection-tile img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  background: rgb(var(--foreground-color));
}
.card-body { padding: 14px 4px 8px; }
.card h3, .collection-tile h3 {
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.95rem;
}
.card p { color: #727070; margin: 0; font-size: 0.85rem; }

.hours-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  background: rgb(var(--scheme-2));
  border: 0;
  border-radius: 12px;
  padding: 48px 40px;
}
.hours-cash {
  margin: 8px 0 16px;
  color: rgb(var(--announce-bg));
  font-size: clamp(1.85rem, 3.6vw, 2.85rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.95;
  text-transform: uppercase;
  text-wrap: balance;
}
.hours-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.hours-table th, .hours-table td {
  text-align: left;
  padding: 8px 0;
  border-bottom: 1px solid rgb(var(--border-color));
}
.hours-table th {
  color: #000;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}
.loc-pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 18px; }
.loc-pills button, .chip {
  border: 1px solid #000;
  background: #fff;
  color: #000;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.loc-pills button.is-on, .chip.is-on {
  background: #000;
  color: #fff;
}

.phone { color: #000; font-weight: 500; }

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 24px;
  align-items: stretch;
}
.location-card {
  display: grid;
  grid-template-columns: 44% 56%;
  min-height: 248px;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #071d32;
  color: #fff;
  box-shadow: 0 6px 18px rgba(7, 29, 50, 0.14);
}
.location-card-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 22px 18px 20px 20px;
  min-width: 0;
}
.location-card-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  min-width: 0;
}
.location-card-heading:focus-visible,
.location-card-media:focus-visible {
  outline: 2px solid #ffc52c;
  outline-offset: -2px;
}
.location-card-pin {
  width: 34px;
  height: 45px;
  flex-shrink: 0;
}
.location-card-titles {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.location-card-city,
.location-card-state {
  font-family: "Oswald", var(--font-heading), sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 0.95;
}
.location-card-city {
  color: #fff;
  font-size: clamp(1.12rem, 1.45vw, 1.5rem);
  letter-spacing: 0.05em;
}
.location-card-state {
  color: #ffc52c;
  font-size: clamp(0.82rem, 1.15vw, 1.05rem);
  letter-spacing: 0.06em;
}
.location-card-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 12px 0 0;
  border-top: 1.5px solid #ed1c24;
}
.location-card-meta li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.35;
  color: #fff;
}
.location-card-meta a {
  color: #fff;
}
.location-card-meta a:hover {
  color: #ffc52c;
}
.location-card-meta address {
  font-style: normal;
  margin: 0;
}
.location-card-meta address span {
  display: block;
}
.location-card-ic {
  width: 22px;
  height: 22px;
  margin-top: 1px;
}
.location-card-ic--pin,
.location-card-ic--clock {
  width: 20px;
  height: 20px;
  margin-left: 1px;
}
.location-card-media {
  position: relative;
  display: block;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  background: #0a243c;
}
.location-card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 42%;
  display: block;
  transition: transform 0.45s ease;
}
.location-card:hover .location-card-media img {
  transform: scale(1.035);
}

.location-maps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 16px;
}
.location-map-embed {
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(7, 29, 50, 0.08);
}
.location-map-copy {
  padding: 16px 18px 12px;
}
.location-map-copy h3 {
  margin: 0 0 4px;
  font-size: 1.05rem;
}
.location-map-copy p {
  margin: 0 0 6px;
  color: #727070;
  font-size: 0.88rem;
}
.location-map-copy a {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.location-map-embed .map-frame {
  min-height: 280px;
  border-radius: 0;
}

.boomer {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 32px;
  align-items: center;
  background: rgb(var(--scheme-2));
  border: 0;
  border-radius: 0;
  padding: 36px 40px;
}
.boomer img { width: 160px; justify-self: center; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px 16px;
}
.product-row {
  position: relative;
}
.product-row-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.product-row-viewport::-webkit-scrollbar { display: none; }
.product-grid--row {
  grid-template-columns: none;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 4);
}
.product-grid--row > .product-card {
  scroll-snap-align: start;
  min-width: 0;
}
.product-row-btn {
  position: absolute;
  top: 140px;
  z-index: 2;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(0,0,0,0.35);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.product-row-btn:hover { background: rgba(224, 24, 40, 0.9); }
.product-row-btn:disabled {
  opacity: 0.35;
  cursor: default;
}
.product-row-btn:disabled:hover { background: rgba(0,0,0,0.35); }
.product-row-btn.prev { left: 16px; }
.product-row-btn.next { right: 16px; }
.product-row-btn svg { display: block; }
.product-card {
  background: #fff;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.product-card[hidden] { display: none; }
.product-card:hover { transform: none; }
.product-card .thumb {
  height: 280px;
  display: block;
  background: rgb(var(--foreground-color));
  overflow: hidden;
}
.product-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.product-card .thumb img.is-placeholder,
.product-visual img.is-placeholder {
  object-fit: contain;
  padding: 28px;
  background: rgb(var(--foreground-color));
}
.product-card[data-slug="diwali-dazzler-assortment-kit-2024"] .thumb,
.product-card[data-slug="9-floral-fountain-assortment"] .thumb {
  background: #fff;
}
.product-card[data-slug="diwali-dazzler-assortment-kit-2024"] .thumb img,
.product-card[data-slug="9-floral-fountain-assortment"] .thumb img {
  object-fit: contain;
}
.product-card .meta { padding: 12px 4px 0; }
.product-card h3 {
  font-size: 0.92rem;
  margin: 0 0 4px;
  line-height: 1.3;
  font-weight: 500;
}
.cat-tag {
  display: none;
}
.product-card .muted {
  font-size: 0.85rem;
  color: #1a1a1a;
}

.page-hero {
  padding: 36px 0 20px;
  border-bottom: 1px solid rgb(var(--border-color));
  background: #fff;
}
.crumbs { color: #888; font-size: 12px; margin-bottom: 10px; }
.crumbs a:hover { color: #000; }

.prose { max-width: 760px; }
.prose p, .prose li { color: #333; }
.prose a { color: #000; text-decoration: underline; text-underline-offset: 3px; }

.about-links {
  margin-top: 8px;
}
.about-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.about-link img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: rgb(var(--foreground-color));
  margin-bottom: 14px;
}
.about-link .kicker {
  margin: 0 0 8px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
}
.about-link h2 {
  margin: 0 0 8px;
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}
.about-link p {
  margin: 0;
  max-width: 46ch;
  font-size: 0.92rem;
  line-height: 1.45;
  color: #4a4a4a;
}
.about-link-cta {
  display: inline-block;
  margin-top: 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #111;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}
.about-link:hover .about-link-cta {
  color: #c45c12;
}
.about-links-foot {
  margin: 36px 0 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
}
.form {
  display: grid;
  gap: 12px;
  background: rgb(var(--scheme-2));
  border: 0;
  border-radius: 0;
  padding: 28px;
  position: relative;
}
.form label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #727070;
}
.form input, .form textarea, .form select {
  width: 100%;
  background: #fff;
  border: 1px solid #8c8c8c;
  color: #1a1a1a;
  border-radius: 5px;
  padding: 12px 14px;
}
.form textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: 13px; color: #727070; }

.map-frame {
  border: 0;
  width: 100%;
  min-height: 380px;
  border-radius: 0;
}

.toolbar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 8px 0 20px;
}
.search {
  flex: 1;
  min-width: 220px;
  background: #fff;
  border: 1px solid #8c8c8c;
  color: #1a1a1a;
  border-radius: 5px;
  padding: 12px 16px;
}

.notice {
  background: #f7f4e8;
  border: 1px solid rgb(var(--button-secondary));
  color: #1a1a1a;
  border-radius: 0;
  padding: 14px 16px;
  margin: 18px 0;
}

.shop-banner {
  position: relative;
  isolation: isolate;
  min-height: clamp(220px, 32vw, 340px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}
.shop-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  /* the hero's products sit on the floor line, so trim sky from the top
     rather than cutting the bottoms off the tube and the Monkey Drive */
  object-position: center bottom;
  z-index: 0;
}
.shop-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.55) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 42%, transparent 70%);
}
.shop-banner-copy {
  position: relative;
  z-index: 2;
  width: min(var(--page), calc(100% - 40px));
  margin: 0 auto;
  padding: 36px 0 32px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}
.shop-banner-kicker {
  margin: 0 0 8px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f8e000;
}
.shop-banner h1 {
  margin: 0 0 8px;
  color: #fff;
}
.shop-banner-copy p:last-child {
  margin: 0;
  max-width: 36ch;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.88);
}
.shop-promo {
  margin: 0;
  padding: 12px 20px;
  text-align: center;
  background: rgb(var(--announce-bg));
  color: rgb(var(--announce-text));
  border-bottom: 1px solid rgb(var(--button-secondary));
  font-size: 0.9rem;
  font-weight: 600;
}
.shop-promo::before,
.shop-promo::after {
  content: "\2605\2605\2605";
  /* the empty alt text keeps screen readers from announcing the stars;
     the plain declaration above is the fallback where that syntax is dropped */
  content: "\2605\2605\2605" / "";
  color: #f8e000;
  letter-spacing: 0.12em;
}
.shop-promo::before { margin-right: 12px; }
.shop-promo::after { margin-left: 12px; }
@media (max-width: 640px) {
  .shop-promo::before,
  .shop-promo::after {
    content: "\2605";
    content: "\2605" / "";
  }
  .shop-promo::before { margin-right: 8px; }
  .shop-promo::after { margin-left: 8px; }
}
.shop-catalog { padding-top: 36px; }
.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 18px;
}
.collection-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  color: inherit;
}
.collection-card:hover .collection-card-media {
  background: #eae7e7;
}
.collection-card-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: rgb(var(--foreground-color));
  overflow: hidden;
  display: grid;
  place-items: center;
}
.collection-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
}
.collection-card-fallback {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  color: #9a9696;
}
.collection-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding-top: 12px;
}
.collection-card-meta h3 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.25;
}
.collection-card-meta .count {
  font-size: 0.8rem;
  color: #727070;
  white-space: nowrap;
}
.shop-layout {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
.shop-sidebar {
  flex: 0 0 220px;
  width: 220px;
  position: sticky;
  top: 85px;
}
.shop-main {
  flex: 1 1 auto;
  min-width: 0;
}
.shop-sidebar .kicker { margin-bottom: 14px; }
.shop-filters {
  display: grid;
  gap: 2px;
}
.shop-filter {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgb(var(--border-color));
  padding: 10px 0;
  cursor: pointer;
  font-size: 0.92rem;
  color: #1a1a1a;
}
.shop-filter span {
  color: #888;
  font-size: 0.8rem;
}
.shop-filter.is-on {
  font-weight: 600;
}
.shop-filter.is-on span { color: #1a1a1a; }
.shop-filter--season {
  color: #9a3412;
}
.shop-filter--season span { color: #c2410c; }
.shop-filter--season.is-on {
  color: #1a1a1a;
}
.shop-toolbar {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  margin: 0 0 20px;
  padding: 12px 0 16px;
  border-bottom: 1px solid rgb(var(--border-color));
  background: #fff;
  position: sticky;
  top: 85px;
  z-index: 8;
}
.shop-count {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
  font-size: 0.9rem;
  color: #727070;
}
.shop-toolbar .search {
  flex: 0 1 280px;
  width: 280px;
  min-width: 160px;
}
.shop-sort {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #727070;
  white-space: nowrap;
}
.shop-sort select {
  font-size: 0.9rem;
  letter-spacing: 0;
  text-transform: none;
  color: #1a1a1a;
  background: #fff;
  border: 1px solid #8c8c8c;
  border-radius: 5px;
  padding: 10px 12px;
  min-width: 190px;
}
.shop-pager {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin: 36px 0 0;
}
.shop-pager button {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid rgb(var(--border-color));
  background: #fff;
  cursor: pointer;
}
.shop-pager button.is-on,
.shop-pager button:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}
.shop-pager button:disabled {
  opacity: 0.35;
  cursor: default;
  background: #fff;
  color: inherit;
  border-color: rgb(var(--border-color));
}
.shop-back { margin-top: 36px; }

.article {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px;
  background: #fff;
  border-bottom: 1px solid rgb(var(--border-color));
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 16px;
}
.article img { width: 100%; height: 100%; object-fit: cover; min-height: 140px; }
.article .body { padding: 8px 0 20px; }

.social-follow {
  padding: 72px 0 0;
}
.social-follow .wrap {
  text-align: center;
}
.social-follow .kicker {
  margin: 0 0 12px;
  font-size: 0.92rem;
  letter-spacing: 0.2em;
}
.social-follow-title {
  display: inline-block;
  margin: 0 0 22px;
  padding: 0.04em 0.28em 0.1em 0.12em;
  overflow: visible;
  white-space: nowrap;
  font-size: clamp(3.2rem, 8.5vw, 6.2rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.92;
  text-transform: uppercase;
  -webkit-text-stroke: 0.4px rgba(90, 35, 0, 0.18);
  background-image:
    url("../img/type-grain.svg"),
    linear-gradient(185deg, #ffe08a 0%, #f0a020 40%, #d46b0c 72%, #9a3d08 100%);
  background-size: 160px 160px, 100% 100%;
  background-blend-mode: overlay, normal;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter:
    drop-shadow(0 1px 0 rgba(255, 220, 150, 0.55))
    drop-shadow(0 2px 0 rgba(90, 35, 0, 0.22))
    drop-shadow(0 10px 20px rgba(154, 61, 8, 0.16));
}
@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .social-follow-title {
    -webkit-text-fill-color: unset;
    background-image: none;
    color: #d46b0c;
    filter: none;
  }
}
@supports (-webkit-touch-callout: none) {
  .slide.is-shop .shop-line--boom,
  .slide.is-shop .shop-line--joy,
  .slide.is-map .map-line--stores,
  .slide.is-map .map-line--show,
  .slide.is-diwali .diwali-line--light,
  .slide.is-diwali .diwali-line--joy,
  .social-follow-title {
    filter: none;
  }
}
.social-follow-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 0 0 40px;
}
.social-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid #111;
  border-radius: 50%;
  color: #111;
  transition: background 0.2s ease, color 0.2s ease;
}
.social-icon:hover {
  background: #111;
  color: #fff;
}
.social-follow-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  text-align: left;
}
.social-follow-shot {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: rgb(var(--foreground-color));
}
.social-follow-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.social-follow-shot:hover img {
  transform: scale(1.05);
}
.social-follow-hover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.32);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.social-follow-shot:hover .social-follow-hover {
  opacity: 1;
}
.social-follow-hover svg {
  width: 22px;
  height: 22px;
}

.site-footer {
  border-top: 1px solid rgb(var(--border-color));
  background: #fff;
  padding: 72px 0 28px;
  margin-top: 48px;
  color: #000;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1.2fr) minmax(0, 0.9fr) minmax(0, 0.8fr);
  gap: 40px 48px;
  align-items: start;
}
.footer-brand .brand {
  display: inline-flex;
  margin: 0 0 18px;
}
.site-footer .brand img {
  height: 48px;
  width: auto;
}
.footer-brand .muted {
  max-width: 32ch;
  margin: 0 0 22px;
  font-size: 0.9rem;
  line-height: 1.55;
}
.footer-brand .btn {
  padding: 9px 16px;
}
.site-footer h4 {
  font-family: var(--font);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 6px 0 18px;
  color: #000;
  font-size: 11px;
  font-weight: 500;
}
.footer-links,
.footer-locations {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}
.footer-links {
  gap: 9px;
}
.footer-locations {
  gap: 0;
}
.site-footer a { color: #3a3a3a; font-size: 0.9rem; }
.site-footer a:hover { color: #000; }
.footer-links a {
  display: inline-block;
  line-height: 1.35;
}
.footer-locations li {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 0 0 14px;
  margin: 0 0 14px;
  border-bottom: 1px solid rgb(var(--border-color));
}
.footer-locations li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.footer-loc-name {
  color: #000;
  font-weight: 500;
  font-size: 0.92rem;
  line-height: 1.3;
}
.footer-loc-addr,
.footer-loc-phone {
  color: #727070;
  font-size: 0.82rem;
  line-height: 1.4;
}
.footer-loc-phone:hover { color: #000; }
.footer-note {
  margin: 18px 0 0;
  font-size: 0.8rem;
  line-height: 1.4;
  color: #727070;
}
.footer-grid p { margin: 0 0 8px; }
.footer-grid > div:not(.footer-brand):not(.footer-col) > div {
  margin: 0 0 14px;
  font-size: 0.82rem;
  line-height: 1.45;
  color: #727070;
}
.legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px 32px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgb(var(--border-color));
  color: #727070;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.product-visual {
  background: rgb(var(--foreground-color));
  border: 0;
  border-radius: 0;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  padding: 0;
  overflow: hidden;
}
.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.empty {
  padding: 40px;
  text-align: center;
  color: #727070;
  border: 1px dashed rgb(var(--border-color));
}

.hero-art { display: none; }

@media (max-width: 1024px) {
  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas: "logo cta";
  }
  .site-header .brand {
    grid-area: logo;
    justify-self: start;
    position: relative;
    transform: none;
    left: auto;
    top: auto;
  }
  .header-cta {
    grid-area: cta;
    justify-self: end;
    position: static;
    transform: none;
  }
  .nav-cluster--left,
  .nav-cluster--right {
    display: none;
    padding: 0;
  }
  .site-header.is-nav-open .header-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .site-header.is-nav-open .brand { order: 1; }
  .site-header.is-nav-open .header-cta {
    order: 2;
    margin-left: auto;
  }
  .site-header.is-nav-open .nav-cluster {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    order: 3;
    flex: 1 1 100%;
  }
  .site-header.is-nav-open .nav-cluster--left { padding-top: 10px; }
  .site-header.is-nav-open .nav-cluster--right { padding-bottom: 12px; }
  .menu-toggle { display: inline-flex; }
  .hero-grid, .hours-panel, .grid-2, .grid-3, .grid-4, .stats, .contact-grid, .product-detail, .article, .boomer {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid { gap: 36px 28px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .collection-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .shop-banner { min-height: 220px; }
  .shop-banner-copy { padding: 28px 0 24px; }
  .shop-layout { flex-direction: column; gap: 28px; }
  .shop-sidebar {
    flex: 0 0 auto;
    width: 100%;
    position: static;
  }
  .shop-filters {
    display: flex;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 8px;
  }
  .shop-filter {
    flex: 0 0 auto;
    width: auto;
    border: 1px solid #000;
    border-radius: 999px;
    padding: 8px 14px;
  }
  .shop-filter.is-on { background: #000; color: #fff; }
  .shop-filter.is-on span { color: #fff; }
  .shop-toolbar {
    flex-wrap: wrap;
    top: 85px;
  }
  .shop-toolbar .search {
    flex: 1 1 100%;
    width: 100%;
    min-width: 0;
    order: 3;
  }
  .product-grid--row {
    grid-template-columns: none;
    grid-auto-columns: calc((100% - 16px) / 2);
  }
  .product-row-btn { top: 118px; }
  .slideshow-track { height: 484px; min-height: 387px; }
  .slide.is-diwali .slide-caption {
    top: 20px;
    bottom: auto;
    left: 4.5%;
    max-width: min(24rem, 44%);
  }
  .slide.is-shop .slide-caption {
    top: 20px;
    bottom: auto;
    left: 4.5%;
    max-width: min(24rem, 44%);
  }
  .slide.is-map .slide-caption {
    top: 20px;
    bottom: auto;
    left: 4.5%;
    max-width: min(22rem, 38%);
  }
  .slide.is-map .map-corner {
    right: 20px;
    bottom: 24px;
  }
}

@media (max-width: 960px) {
  .location-grid,
  .location-maps { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 32px;
  }
  .footer-brand .muted { max-width: 46ch; }
}

@media (max-width: 640px) {
  .wrap, .page--width { width: min(var(--page), calc(100% - 28px)); }
  section { padding: 40px 0; }
  .location-grid { grid-template-columns: 1fr; }
  .location-card { grid-template-columns: 1fr; }
  .about-links { grid-template-columns: 1fr; }
  .location-card-media {
    min-height: 210px;
    order: -1;
  }
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 12px;
  }
  .collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 12px;
  }
  .shop-toolbar {
    flex-wrap: wrap;
    top: 73px;
  }
  .shop-sort { width: 100%; }
  .shop-sort select { width: 100%; min-width: 0; }
  .product-grid--row {
    grid-template-columns: none;
    grid-auto-columns: calc((100% - 12px) / 2);
  }
  .product-row-btn {
    width: 36px;
    height: 36px;
    top: 105px;
  }
  .product-row-btn.prev { left: 8px; }
  .product-row-btn.next { right: 8px; }
  .product-card .thumb { height: 210px; }
  .product-card h3 { font-size: 0.82rem; }
  .product-card .muted { font-size: 0.78rem; }
  .product-card .meta { padding: 10px 0 0; }
  .product-card .add-to-cart {
    padding: 9px 8px;
    font-size: 11px;
    letter-spacing: 0.06em;
  }
  .footer-brand .muted { max-width: none; }
  .site-footer { padding: 48px 0 24px; margin-top: 24px; }
  .stat { border-right: 0; border-bottom: 1px solid rgb(var(--border-color)); }
  .brand img { height: 40px; max-width: 160px; }
  .hours-panel, .boomer { padding: 24px 18px; }
  .slide-arrow { width: 36px; height: 36px; }
  .slide-arrow.prev { left: 8px; }
  .slide-arrow.next { right: 8px; }
  .slide-caption { left: 20px; right: 56px; max-width: none; bottom: 56px; }
  .slide.is-diwali .slide-caption { top: 18px; bottom: auto; left: 20px; max-width: min(20rem, 62%); }
  .slide.is-diwali .diwali-lockup h1 { font-size: clamp(2.25rem, 10vw, 3.05rem); }
  .slide.is-shop .slide-caption {
    left: 20px;
    right: auto;
    top: 18px;
    max-width: min(20rem, 62%);
  }
  .slide.is-shop .shop-lockup h1 { font-size: clamp(2.25rem, 10vw, 3.05rem); }
  .slide.is-shop video { object-position: 84% 40%; }
  .slide.is-shop .shop-corner {
    right: 20px;
    bottom: 58px;
    max-width: 14rem;
  }
  .slide.is-diwali .shop-corner {
    left: 20px;
    right: auto;
    bottom: 58px;
    max-width: 14rem;
  }
  .slide.is-map .slide-caption {
    left: 20px;
    right: auto;
    top: 18px;
    max-width: min(18rem, 54%);
  }
  .slide.is-map .map-lockup h1 { font-size: clamp(2.05rem, 9vw, 2.7rem); }
  .slide.is-map .map-copy { display: none; }
  .slide.is-map .map-corner { display: none; }
  .social-follow { padding-top: 48px; }
  .social-follow-grid { gap: 6px; }
  .social-follow-icons { margin-bottom: 24px; }
  .order-layout, .cart-footer, .buy-actions, .form-row { grid-template-columns: 1fr; }
  .cart-table th:nth-child(2),
  .cart-table td:nth-child(2) { display: none; }
}

.product-card-link { display: flex; flex-direction: column; flex: 1; color: inherit; }
.product-card .add-to-cart {
  margin-top: 10px;
  width: 100%;
  padding: 8px 12px;
}
.product-detail .cat-tag { display: block; margin-bottom: 8px; }
.product-specs {
  margin: 0 0 16px;
  color: var(--muted, #6b7280);
  font-size: 0.95rem;
}
.buy-box h2 { margin-top: 0; }
.qty-row { margin: 16px 0; max-width: 140px; }
.qty-row label {
  display: grid;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #727070;
}
.qty-input,
.qty-control input {
  width: 64px;
  text-align: center;
  background: #fff;
  border: 1px solid #8c8c8c;
  border-radius: 5px;
  padding: 10px 8px;
}
.buy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}

.cart-table-wrap { overflow-x: auto; }
.cart-table {
  width: 100%;
  border-collapse: collapse;
}
.cart-table th {
  text-align: left;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #727070;
  padding: 10px 8px;
  border-bottom: 1px solid rgb(var(--border-color));
}
.cart-table td {
  padding: 16px 8px;
  border-bottom: 1px solid rgb(var(--border-color));
  vertical-align: middle;
}
.cart-product {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cart-product img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  background: rgb(var(--foreground-color));
  padding: 6px;
}
.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.qty-control button {
  width: 32px;
  height: 32px;
  border: 1px solid #8c8c8c;
  background: #fff;
  border-radius: 5px;
  cursor: pointer;
}
.link-btn {
  background: none;
  border: 0;
  padding: 0;
  color: #727070;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.cart-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.order-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: start;
}
.form-intro { margin: 0 0 8px; color: #333; text-transform: none; letter-spacing: 0; font-size: 0.95rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form label.check-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.9rem;
  color: #333;
}
.check-label input { width: auto; margin-top: 3px; }
.hp {
  position: absolute;
  left: -9999px;
  height: 0;
  opacity: 0;
}
.order-summary {
  background: rgb(var(--scheme-2));
  padding: 28px;
}
.summary-list { display: grid; gap: 10px; margin: 0 0 16px; }
.summary-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgb(var(--border-color));
}
.order-success {
  background: #f7f4e8;
  border: 1px solid rgb(var(--button-secondary));
  padding: 32px;
  margin-bottom: 24px;
}

.fw-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(16px);
  background: #111;
  color: #fff;
  padding: 12px 18px;
  border-radius: 5px;
  font-size: 13px;
  letter-spacing: 0.04em;
  opacity: 0;
  pointer-events: none;
  z-index: 80;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.fw-toast.is-on {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 1024px) {
  .order-layout { grid-template-columns: 1fr; }
}
