/*!********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/.pnpm/next@15.4.10_@babel+core@7.29.7_@playwright+test@1.54.1_babel-plugin-macros@3.1.0_react_fc106dcbc989f5b0099802287a9f969c/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[10].use[2]!../../node_modules/.pnpm/next@15.4.10_@babel+core@7.29.7_@playwright+test@1.54.1_babel-plugin-macros@3.1.0_react_fc106dcbc989f5b0099802287a9f969c/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[10].use[3]!./src/app/(frontend)/lexi-source.css ***!
  \********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* ============================================================
   Lexie's — shared design system
   Vanilla CSS, no dependencies, no build step.
   ============================================================ */

:root {
  /* brand palette */
  --bg: #f7f3ed;
  --bg-soft: #ede9e0;
  --butter: #f5ecd8;
  --ink: #1a1a1a;
  --ink-soft: #55504a;
  --ink-2: #7a746c;
  --teal: #4ba8b3;
  --teal-deep: #2d7f87;
  --berry: #ac5ba0;
  --berry-deep: #7e3d77;
  --mustard: #e6c86e;
  --mustard-deep: #c4a040;

  /* layout */
  --wrap: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius: 22px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04), 0 4px 14px rgba(20, 20, 20, 0.06);
  --shadow-md:
    0 6px 18px rgba(20, 20, 20, 0.1), 0 24px 60px -20px rgba(20, 20, 20, 0.18);
  --shadow-lg: 0 30px 80px -30px rgba(20, 20, 20, 0.35);

  /* type */
  --display: "Bricolage Grotesque", Georgia, serif;
  --body: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
}

/* reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  font-size: clamp(15px, 1vw + 12px, 17px);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}
h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.05;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.02em;
}
p {
  margin: 0;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
::-moz-selection {
  background: var(--mustard);
  color: var(--ink);
}
::selection {
  background: var(--mustard);
  color: var(--ink);
}

/* layout helpers */
.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.skip {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 9999;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
}
.skip:focus {
  left: 8px;
}

/* eyebrow label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 6px 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.6);
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--berry);
}
.eyebrow-light {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
}
.eyebrow-light::before {
  background: var(--mustard);
}

/* display headings */
.display {
  font-size: clamp(48px, 9vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  font-weight: 700;
}
.display em {
  font-style: italic;
  font-weight: 600;
  color: var(--berry);
}
.display-2 {
  font-size: clamp(34px, 5.5vw, 72px);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 700;
}
.display-2 em {
  font-style: italic;
  font-weight: 600;
  color: var(--berry);
}
.display-2.light,
.display.light {
  color: #fff;
}
.display-2.light em {
  color: var(--mustard);
}
.lede {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--ink-soft);
  max-width: 60ch;
}
.section-lede {
  font-size: clamp(16px, 1.2vw, 18px);
  color: var(--ink-soft);
  max-width: 58ch;
  margin-top: 14px;
}

/* link arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  border-bottom: 2px solid currentColor;
  padding-bottom: 2px;
  transition:
    gap 0.25s ease,
    color 0.25s ease;
}
.link-arrow:hover {
  gap: 14px;
  color: var(--berry);
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  padding: 14px 22px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  border-radius: var(--radius-pill);
  transition:
    transform 0.15s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
  white-space: nowrap;
  border: 0;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}
.btn-sm {
  padding: 10px 16px;
  font-size: 14px;
}
.btn-mustard {
  background: var(--mustard);
  color: var(--ink);
  box-shadow: 0 5px 0 var(--mustard-deep);
}
.btn-mustard:hover {
  background: #f0d87a;
  box-shadow: 0 4px 0 var(--mustard-deep);
}
.btn-mustard:active {
  box-shadow: 0 2px 0 var(--mustard-deep);
}
.btn-berry {
  background: var(--berry);
  color: #fff;
  box-shadow: 0 5px 0 var(--berry-deep);
}
.btn-berry:hover {
  background: #c470b5;
  box-shadow: 0 4px 0 var(--berry-deep);
}
.btn-ink {
  background: var(--ink);
  color: #fff;
}
.btn-ink:hover {
  background: #000;
}
.btn-teal {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 5px 0 var(--teal-deep);
}
.btn-teal:hover {
  background: #5dbec9;
  box-shadow: 0 4px 0 var(--teal-deep);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.25);
}
.btn-ghost:hover {
  background: rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 0 0 2px var(--ink);
}
.btn-ghost-light {
  background: transparent;
  color: #fff;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5);
}
.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 2px #fff;
}
.btn-ghost-berry {
  background: transparent;
  color: var(--berry);
  box-shadow: inset 0 0 0 2px var(--berry);
}
.btn-ghost-berry:hover {
  background: rgba(172, 91, 160, 0.08);
}

/* section head */
.section-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 48px;
  max-width: 780px;
}
.section-head .section-lede {
  margin-top: 6px;
}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announce {
  background: var(--ink);
  color: #f3ead8;
  font-size: 13px;
  font-weight: 500;
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
}
.announce-track {
  display: flex;
  gap: 48px;
  padding-left: 100%;
  animation: marqueeSlow 32s linear infinite;
  white-space: nowrap;
}
.announce-track span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.announce-track span::after {
  content: "✻";
  color: var(--mustard);
  margin-left: 48px;
}
@keyframes marqueeSlow {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ============================================================
   NAVIGATION DROPDOWNS
   ============================================================ */
.nav-dropdown {
  position: relative;
}
.nav-drop-trigger {
  font-weight: 500;
  font-size: 14.5px;
  color: var(--ink-soft);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  transition:
    background 0.2s,
    color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.nav-drop-trigger:hover {
  background: var(--bg-soft);
  color: var(--ink);
}
.drop-arrow {
  font-size: 11px;
  transition: transform 0.2s;
}
.nav-drop-trigger[aria-expanded="true"] .drop-arrow {
  transform: rotate(180deg);
}
.nav-drop-menu {
  position: absolute;
  top: calc(100% - 4px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 6px;
  min-width: 180px;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.2s,
    transform 0.2s;
  z-index: 100;
}
.nav-drop-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-drop-menu a {
  display: block;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  transition:
    background 0.15s,
    color 0.15s;
}
.nav-drop-menu a:hover {
  background: var(--bg-soft);
  color: var(--ink);
}
@media (max-width: 920px) {
  .nav-drop-menu {
    display: none;
  }
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 243, 237, 0.88);
  backdrop-filter: saturate(1.2) blur(14px);
  -webkit-backdrop-filter: saturate(1.2) blur(14px);
  transition: box-shadow 0.2s ease;
}
.site-header.is-scrolled {
  box-shadow:
    0 1px 0 rgba(0, 0, 0, 0.06),
    0 12px 30px -20px rgba(0, 0, 0, 0.18);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.logo {
  display: flex;
  align-items: center;
  height: 44px;
  width: auto;
}
.logo img {
  height: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.primary-nav {
  display: flex;
  gap: 6px;
  align-items: center;
}
.primary-nav a {
  font-weight: 500;
  font-size: 14.5px;
  color: var(--ink-soft);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  transition:
    background 0.2s,
    color 0.2s;
}
.primary-nav a:hover {
  background: var(--bg-soft);
  color: var(--ink);
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  align-items: center;
}
.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition:
    transform 0.25s,
    opacity 0.25s;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
.mobile-nav {
  position: fixed;
  inset: 74px 0 0 0;
  z-index: 49;
  background: var(--bg);
  padding: 24px var(--gutter) 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}
.mobile-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav a {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.02em;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.mobile-nav .btn {
  margin-top: 20px;
  align-self: flex-start;
}

@media (max-width: 920px) {
  .primary-nav,
  .header-cta .btn {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--teal-deep);
  color: #fff;
  padding: clamp(24px, 4vw, 50px) 0 clamp(50px, 7vw, 90px);
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    radial-gradient(
      circle at 20% 10%,
      rgba(255, 255, 255, 0.1) 0 1px,
      transparent 2px
    ),
    radial-gradient(
      circle at 80% 60%,
      rgba(255, 255, 255, 0.07) 0 1px,
      transparent 2px
    ),
    radial-gradient(
      circle at 40% 80%,
      rgba(255, 255, 255, 0.06) 0 1px,
      transparent 2px
    );
  background-size:
    60px 60px,
    80px 80px,
    100px 100px;
  opacity: 0.4;
}

/* ============================================================
   HERO SLIDESHOW (product photo background)
   ============================================================ */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--teal-deep);
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  will-change: opacity, transform;
  animation: heroFade 50s infinite;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.55) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
}

/* 9 slides, each visible for 5s, 1s crossfade — total cycle 45s */
.hero-slide.s2 {
  background-image: url("/custom/food-shots/food-03.webp");
  animation-delay: 0s;
}
.hero-slide.s3 {
  background-image: url("/custom/food-shots/food-04.webp");
  animation-delay: 5s;
}
.hero-slide.s4 {
  background-image: url("/custom/food-shots/food-05.webp");
  animation-delay: 10s;
}
.hero-slide.s5 {
  background-image: url("/custom/food-shots/food-06.webp");
  animation-delay: 15s;
}
.hero-slide.s6 {
  background-image: url("/custom/food-shots/food-07.webp");
  animation-delay: 20s;
}
.hero-slide.s7 {
  background-image: url("/custom/food-shots/food-08.webp");
  animation-delay: 25s;
}
.hero-slide.s8 {
  background-image: url("/custom/food-shots/food-09.webp");
  animation-delay: 30s;
}
.hero-slide.s9 {
  background-image: url("/custom/food-shots/food-10.webp");
  animation-delay: 35s;
}
.hero-slide.s10 {
  background-image: url("/custom/food-shots/food-11.webp");
  animation-delay: 40s;
}

@keyframes heroFade {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  2% {
    opacity: 1;
  }
  10% {
    opacity: 1;
    transform: scale(1.08);
  }
  12% {
    opacity: 0;
    transform: scale(1.08);
  }
  100% {
    opacity: 0;
    transform: scale(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    animation: none;
    opacity: 0.35;
  }
  .hero-slide.s2 {
    opacity: 1;
  }
}

/* hero logo: keep the white pill but make it glow against the photo */
.hero-logo {
  height: clamp(160px, 20vw, 280px);
  width: auto;
  margin-bottom: 8px;
  background: #fff;
  padding: 20px 40px;
  border-radius: 20px;
  box-shadow: 0 8px 30px -8px rgba(0, 0, 0, 0.45);
}
.hero-inner {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}
.hero-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 18px;
}
.hero-pills span {
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 13px;
  color: #fff;
}

/* decorative orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  box-shadow:
    inset -8px -10px 0 rgba(0, 0, 0, 0.1),
    0 30px 50px -20px rgba(0, 0, 0, 0.4);
  animation: floaty 8s ease-in-out infinite;
}
.orb-1 {
  width: clamp(60px, 9vw, 110px);
  height: clamp(60px, 9vw, 110px);
  top: 14%;
  left: 6%;
  background: radial-gradient(circle at 30% 30%, #f5dca8, #c8a05a 60%, #8c6a2c);
  animation-delay: -1s;
}
.orb-2 {
  width: clamp(80px, 11vw, 150px);
  height: clamp(80px, 11vw, 150px);
  top: 38%;
  right: 4%;
  background: radial-gradient(circle at 30% 30%, #f6e6e6, #b35e6c 65%, #6e2a3b);
  animation-delay: -3s;
}
.orb-3 {
  width: clamp(50px, 7vw, 90px);
  height: clamp(50px, 7vw, 90px);
  bottom: 18%;
  left: 14%;
  background: radial-gradient(circle at 30% 30%, #f0f1e3, #b3a55b 65%, #6e5e1a);
  animation-delay: -5s;
}
.orb-4 {
  width: clamp(40px, 5vw, 70px);
  height: clamp(40px, 5vw, 70px);
  top: 8%;
  right: 18%;
  background: radial-gradient(circle at 30% 30%, #fff, #e6d39b 60%, #b8a365);
  animation-delay: -2s;
}
@keyframes floaty {
  0%,
  100% {
    transform: translateY(0) rotate(-4deg);
  }
  50% {
    transform: translateY(-18px) rotate(6deg);
  }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--ink);
  color: var(--mustard);
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.marquee-track {
  display: flex;
  gap: 36px;
  align-items: center;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(18px, 2vw, 28px);
  letter-spacing: -0.01em;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
  width: -moz-max-content;
  width: max-content;
}
.marquee-track span {
  color: var(--mustard);
}
.marquee-track .dot {
  color: var(--berry);
  font-size: 1.2em;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ============================================================
   PROMISE / 3-UP
   ============================================================ */
.promise {
  padding: clamp(80px, 10vw, 130px) 0;
  background: var(--bg);
}
.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.promise-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.promise-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.promise-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: color-mix(in srgb, var(--mustard-deep) 20%, #fff);
  display: grid;
  place-items: center;
  color: var(--mustard-deep);
}
.promise-icon svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.promise-card h3 {
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.15;
}
.promise-card p {
  color: var(--ink-soft);
  font-size: 15.5px;
}

@media (max-width: 880px) {
  .promise-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   PRODUCT GRID
   ============================================================ */
.bites {
  padding: clamp(80px, 10vw, 130px) 0;
  background: var(--bg);
}
.bites-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.bite-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  padding: 28px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.bite-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.bite-art {
  position: relative;
  height: 200px;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.bite-art-chocobanana {
  background: linear-gradient(180deg, #f4e8d3 0%, #ead7b3 100%);
}
.bite-art-coconutcacao {
  background: linear-gradient(180deg, #f3ece0 0%, #e8dcc4 100%);
}
.bite-art-pbjelly {
  background: linear-gradient(180deg, #f7e8ec 0%, #ecd9e1 100%);
}
.bite-art-almond {
  background: linear-gradient(180deg, #f8f0d8 0%, #ede0c0 100%);
}
.bite-art-butter {
  background: linear-gradient(180deg, #f5e9c8 0%, #e8d9b0 100%);
}
.bite-art-cinnamon {
  background: linear-gradient(180deg, #f0e0d0 0%, #e0c8b0 100%);
}
.bite-ball {
  position: relative;
  z-index: 2;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  box-shadow:
    inset -16px -22px 0 rgba(0, 0, 0, 0.1),
    inset 12px 14px 0 rgba(255, 255, 255, 0.2),
    0 30px 40px -20px rgba(0, 0, 0, 0.25);
}
.bite-art-chocobanana .bite-ball {
  background: radial-gradient(
    circle at 30% 30%,
    #d39754 0%,
    #8b4a1f 60%,
    #4a200a 100%
  );
}
.bite-art-coconutcacao .bite-ball {
  background: radial-gradient(
    circle at 30% 30%,
    #f3e2c4 0%,
    #d4b27a 55%,
    #6a4a1d 100%
  );
}
.bite-art-pbjelly .bite-ball {
  background: radial-gradient(
    circle at 30% 30%,
    #f0c98b 0%,
    #c98a3e 55%,
    #6a3e10 100%
  );
}
.bite-art-almond .bite-ball {
  background: radial-gradient(
    circle at 30% 30%,
    #f5d88a 0%,
    #c8a040 55%,
    #7a5010 100%
  );
}
.bite-art-butter .bite-ball {
  background: radial-gradient(
    circle at 30% 30%,
    #f0d890 0%,
    #c8a838 55%,
    #7a5810 100%
  );
}
.bite-art-cinnamon .bite-ball {
  background: radial-gradient(
    circle at 30% 30%,
    #e8c8a0 0%,
    #b88050 55%,
    #6a3810 100%
  );
}
.bite-shadow {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  width: 140px;
  height: 18px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  filter: blur(8px);
  z-index: 1;
}
.bite-shine {
  position: absolute;
  top: 18%;
  left: 22%;
  width: 34px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  filter: blur(6px);
  z-index: 3;
}
.bite-card h3 {
  font-size: clamp(20px, 1.6vw, 24px);
  letter-spacing: -0.02em;
}
.bite-card p {
  color: var(--ink-soft);
  font-size: 15px;
}
.bite-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px dashed rgba(0, 0, 0, 0.12);
}
.bite-price {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
}
.bite-price span {
  font-family: var(--body);
  font-weight: 500;
  font-size: 13px;
  color: var(--ink-2);
  margin-left: 2px;
}
.bites-foot {
  margin-top: 36px;
  text-align: center;
}

@media (max-width: 880px) {
  .bites-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   WHERE TO FIND
   ============================================================ */
.where {
  background: linear-gradient(160deg, var(--berry) 0%, var(--berry-deep) 100%);
  color: #fff;
  padding: clamp(70px, 9vw, 120px) 0;
}
.where-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.where-inner p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 46ch;
  margin-bottom: 24px;
}
.loc-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.loc-list li {
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  transition:
    background 0.2s,
    transform 0.2s;
}
.loc-list li:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}
@media (max-width: 880px) {
  .where-inner {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   WHOLESALE
   ============================================================ */
.wholesale {
  background: linear-gradient(
    180deg,
    var(--teal-deep) 0%,
    color-mix(in srgb, var(--teal-deep) 80%, #000 20%) 100%
  );
  color: #fff;
  padding: clamp(70px, 9vw, 120px) 0;
}
.wholesale-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: end;
}
.wholesale-inner p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 50ch;
  margin-bottom: 24px;
  font-size: clamp(16px, 1.2vw, 18px);
}
.wholesale-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 28px;
}
.wholesale-benefit {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px 18px;
  background: var(--berry);
  border-radius: var(--radius-sm);
}
.wholesale-benefit-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  display: grid;
  place-items: center;
}
.wholesale-benefit-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--mustard);
  stroke-width: 2;
  fill: none;
}
.wholesale-benefit p {
  font-size: 15px;
  color: #fff;
  font-weight: 600;
}
.wholesale-benefit span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  display: block;
  margin-top: 4px;
}
@media (max-width: 880px) {
  .wholesale-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.kitchen {
  background: var(--bg-soft);
  padding: clamp(80px, 10vw, 130px) 0;
}
.kitchen-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.news-form {
  display: flex;
  gap: 8px;
  width: 100%;
  max-width: 480px;
  margin-top: 18px;
  background: #fff;
  padding: 8px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: var(--shadow-sm);
}
.news-form input {
  flex: 1;
  min-width: 0;
  padding: 12px 16px;
  border: 0;
  background: transparent;
  font-size: 15px;
  color: var(--ink);
  outline: none;
}
.news-form input::-moz-placeholder {
  color: var(--ink-2);
}
.news-form input::placeholder {
  color: var(--ink-2);
}
.news-form .btn {
  flex-shrink: 0;
}
.fineprint {
  color: var(--ink-2);
  font-size: 12.5px;
  margin-top: 4px;
}

/* ============================================================
   ABOUT / STORY SECTIONS
   ============================================================ */
.story-section {
  padding: clamp(80px, 10vw, 130px) 0;
}
.story-purple {
  background: var(--berry);
  color: #fff;
}
.story-teal {
  background: var(--teal-deep);
  color: #fff;
}
.story-copy {
  max-width: 52ch;
}
.story-copy h2 {
  color: #fff;
}
.story-copy p {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(16px, 1.2vw, 18px);
  max-width: 56ch;
  line-height: 1.65;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.story-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: rgba(0, 0, 0, 0.15);
}
.story-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.story-stats {
  display: flex;
  gap: 32px;
  margin-top: 24px;
}
.story-stat h3 {
  font-size: clamp(28px, 3vw, 40px);
  color: #fff;
}
.story-stat p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2px;
}
@media (max-width: 880px) {
  .story-grid {
    grid-template-columns: 1fr;
  }
  .story-image {
    aspect-ratio: 16/9;
  }
}

/* founder section */
.founder {
  background: var(--bg);
  padding: clamp(80px, 10vw, 130px) 0;
}
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.founder-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--butter);
}
.founder-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.founder-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.founder-copy p {
  color: var(--ink-soft);
  font-size: clamp(16px, 1.2vw, 18px);
  max-width: 52ch;
  line-height: 1.65;
}
@media (max-width: 880px) {
  .founder-grid {
    grid-template-columns: 1fr;
  }
  .founder-photo {
    aspect-ratio: 4/3;
  }
}

/* timeline */
.timeline-section {
  background: var(--bg-soft);
  padding: clamp(80px, 10vw, 130px) 0;
}
.timeline {
  position: relative;
  padding-left: 40px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--berry), var(--teal));
}
.timeline-item {
  position: relative;
  margin-bottom: 36px;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -32px;
  top: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--berry);
  border: 3px solid var(--bg-soft);
  box-shadow: 0 0 0 2px var(--berry);
}
.timeline-year {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  color: var(--berry);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.timeline-item h3 {
  font-size: clamp(18px, 1.5vw, 22px);
  margin-bottom: 6px;
}
.timeline-item p {
  color: var(--ink-soft);
  font-size: 15px;
  max-width: 52ch;
}

/* testimonials */
.testimonials {
  padding: clamp(80px, 10vw, 130px) 0;
  background: var(--bg);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-quote {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--butter);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  color: var(--berry);
}
.testimonial-name {
  font-weight: 600;
  font-size: 14px;
}
.testimonial-role {
  font-size: 13px;
  color: var(--ink-2);
}
.testimonial-stars {
  color: var(--mustard);
  font-size: 16px;
  letter-spacing: 2px;
}
@media (max-width: 880px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   SHOP PAGE
   ============================================================ */
.shop-hero {
  background: linear-gradient(
    160deg,
    rgba(26, 26, 26, 0.85) 0%,
    rgba(42, 42, 42, 0.85) 100%
  );
  color: #fff;
  padding: clamp(60px, 8vw, 100px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.shop-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/custom/food-shots/food-03.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}
.shop-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 1;
}
.shop-hero .wrap {
  position: relative;
  z-index: 2;
}
.shop-hero h1 {
  color: #fff;
}
.shop-hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(16px, 1.2vw, 18px);
  margin-top: 12px;
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
}
.shop-hero .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.5;
  z-index: 1;
  pointer-events: none;
}
.shop-hero .orb-berry {
  width: 200px;
  height: 200px;
  background: var(--berry);
  top: 10%;
  left: 5%;
}
.shop-hero .orb-teal {
  width: 150px;
  height: 150px;
  background: var(--teal);
  top: 50%;
  right: 8%;
}
.shop-hero .orb-mustard {
  width: 120px;
  height: 120px;
  background: var(--mustard);
  bottom: 15%;
  left: 20%;
}
.shop-hero .orb-berry-2 {
  width: 100px;
  height: 100px;
  background: var(--berry);
  bottom: 20%;
  right: 25%;
  opacity: 0.3;
}
.shop-page {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--bg);
}
.shop-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  align-items: center;
}
.filter-btn {
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.2s;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.shop-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    border-color 0.4s ease;
}
.shop-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(172, 91, 160, 0.3);
  box-shadow:
    0 22px 45px rgba(172, 91, 160, 0.12),
    0 8px 18px rgba(0, 0, 0, 0.03);
}
.shop-card-image {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
}
.shop-card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.shop-card-image:hover img {
  transform: scale(1.06);
}
.shop-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  background: var(--berry);
  color: #fff;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
}
.shop-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.shop-card-body h3 {
  font-size: clamp(17px, 1.4vw, 20px);
}
.shop-card-body p {
  color: var(--ink-soft);
  font-size: 14px;
  flex: 1;
}
.shop-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px dashed rgba(0, 0, 0, 0.12);
}
.shop-card-price {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
}
.shop-card-options {
  font-size: 13px;
  color: var(--ink-2);
}
.view-details-link {
  overflow: hidden;
  display: block;
  height: 100%;
  position: relative;
}
.view-details-oval {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(172, 91, 160, 0.08);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  pointer-events: none;
  border-radius: 0;
  z-index: 2;
}
.view-details-oval::after {
  content: "View Details →";
  padding: 10px 20px;
  background: #ffffff;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(12px);
  transition:
    transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
    background-color 0.2s;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.view-details-link:hover .view-details-oval {
  opacity: 1;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.view-details-link:hover .view-details-oval::after {
  transform: translateY(0);
  background: var(--butter);
  color: var(--ink);
}
.view-options-select {
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  font-size: 13px;
  font-weight: 500;
  background: #fff;
  cursor: pointer;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.view-options-select:hover {
  border-color: var(--ink);
}
@media (max-width: 880px) {
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .shop-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   LOCATIONS PAGE
   ============================================================ */
.locations-section {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--bg);
}
.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.locations-grid .map-section {
  grid-column: 1 / -1;
}
.location-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  padding: 28px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.location-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.location-card h3 {
  font-size: clamp(18px, 1.5vw, 22px);
  margin-bottom: 8px;
}
.location-card .address {
  color: var(--ink-soft);
  font-size: 14.5px;
  margin-bottom: 14px;
}
.location-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.location-tag {
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  background: rgba(75, 168, 179, 0.12);
  color: var(--teal-deep);
}
@media (max-width: 880px) {
  .locations-grid {
    grid-template-columns: 1fr;
  }
  .locations-grid .map-section {
    grid-column: 1;
  }
}

/* Map section layout */
.map-section {
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 24px 0;
  box-sizing: border-box;
}
.map-section > .section-head {
  margin-bottom: 16px;
  flex-shrink: 0;
}
.map-section > .section-head .eyebrow {
  font-size: 10px;
  padding: 4px 10px;
}
.map-section > .section-head .display-2 {
  font-size: clamp(24px, 3vw, 40px);
}
.map-layout {
  flex: 1;
  display: flex;
  gap: 20px;
  align-items: stretch;
  min-height: 0;
}
.locations-sidebar {
  width: 300px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 0;
}
.locations-sidebar-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.search-input-wrapper svg {
  position: absolute;
  left: 14px;
  color: var(--ink-2);
  pointer-events: none;
}
.search-input-wrapper input {
  width: 100%;
  padding: 10px 14px 10px 38px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-family: inherit;
  font-size: 13.5px;
  background: #ffffff;
  color: var(--ink);
  transition: all 0.2s;
}
.search-input-wrapper input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(75, 168, 179, 0.15);
}
.locations-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
  max-height: calc(100vh - 350px);
}
.locations-list li {
  display: block;
}
.location-distance-badge {
  background: var(--teal);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  flex-shrink: 0;
  font-family: var(--body);
}
.location-directions-link {
  display: inline-block;
  margin-top: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--berry);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
}
.location-directions-link:hover {
  color: var(--berry-deep);
  text-decoration: underline;
}
.location-btn.active .location-directions-link {
  color: var(--berry);
}
.location-btn.active .location-distance-badge {
  background: var(--teal);
  color: #ffffff;
}
.brand-group {
  display: block;
}
.brand-group > details > summary {
  list-style: none;
  cursor: pointer;
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: background 0.15s ease;
}
.brand-group > details > summary:hover {
  background: var(--butter);
}
.brand-group > details > summary::-webkit-details-marker {
  display: none;
}
.brand-group > details > summary::after {
  content: "▾";
  font-size: 10px;
  color: var(--ink-2);
  transition: transform 0.2s ease;
}
.brand-group > details:not([open]) > summary::after {
  transform: rotate(-90deg);
}
.brand-count {
  display: none;
  font-weight: 500;
  color: var(--ink-2);
  letter-spacing: 0;
  text-transform: none;
  font-size: 11px;
}
.locations-sublist {
  list-style: none;
  padding: 4px 0 0 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.location-btn {
  width: 100%;
  text-align: left;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  font-size: 14px;
}
.location-btn:hover {
  background: var(--butter);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
/* Selected: keep ink text; darken panel with complementary teal wash */
.location-btn.active,
.locations-sublist .location-btn.active {
  background: color-mix(in srgb, var(--teal) 22%, var(--bg-soft));
  color: var(--ink);
  border-color: color-mix(in srgb, var(--teal) 42%, var(--bg-soft));
  box-shadow: inset 3px 0 0 var(--teal);
}
.location-locate {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
.location-locate:hover {
  background: #333;
}
.location-name {
  display: block;
  font-weight: 600;
  font-size: 13px;
}
.location-role {
  display: block;
  font-size: 11px;
  color: var(--ink-2);
  margin-top: 2px;
}
.map-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.08);
  min-height: 0;
}
.map-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.map-leaflet {
  flex: 1;
  width: 100%;
  height: 100%;
  min-height: 0;
  background: var(--bg-soft);
  z-index: 0;
}
.leaflet-popup-content-wrapper {
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 4px 6px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
}
.leaflet-popup-content {
  margin: 10px 14px;
  font-family: var(--body);
}
.leaflet-popup-tip {
  box-shadow: var(--shadow-sm);
}
.map-popup {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
  line-height: 1.4;
}
.map-popup strong {
  font-family: var(--display);
  color: var(--ink);
  font-size: 15px;
  letter-spacing: -0.01em;
}
.map-popup span {
  color: var(--ink-soft);
  font-size: 13px;
}
.leaflet-control-attribution {
  font-size: 10px !important;
  background: rgba(255, 255, 255, 0.7) !important;
}

/* Custom Leaflet Map Markers */
.custom-marker-container {
  background: none !important;
  border: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.marker-pin {
  width: 24px;
  height: 24px;
  border-radius: 50% 50% 50% 0;
  background: var(--teal);
  transform: rotate(-45deg);
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #ffffff;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  position: relative;
}
.marker-pin::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
  transform: rotate(45deg);
}

/* Active State for Marker */
.custom-marker-container.active .marker-pin {
  background: var(--berry);
  transform: rotate(-45deg) scale(1.3);
  box-shadow: var(--shadow-md);
  border-color: #ffffff;
  z-index: 999;
}

/* Pulse animation for active marker */
.custom-marker-container.active::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 32px;
  margin-top: -16px;
  margin-left: -16px;
  border-radius: 50%;
  background: rgba(172, 91, 160, 0.35);
  animation: marker-pulse 1.8s infinite ease-out;
  z-index: -1;
  pointer-events: none;
}

@keyframes marker-pulse {
  0% {
    transform: scale(0.5);
    opacity: 1;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* Active list item keeps default text colors (no white invert) */
.location-btn.active .location-name,
.locations-sublist .location-btn.active .location-name {
  color: var(--ink);
}
.location-btn.active .location-role,
.locations-sublist .location-btn.active .location-role {
  color: var(--ink-2);
}

@media (max-width: 768px) {
  .map-section {
    height: auto;
    min-height: auto;
    padding: 20px 0;
  }
  .map-section > .section-head {
    margin-bottom: 12px;
  }
  .map-layout {
    flex-direction: column-reverse; /* Map at top, locations list at bottom */
    min-height: auto;
    gap: 16px;
  }
  .locations-sidebar {
    width: 100%;
    min-height: auto;
    gap: 12px;
  }
  .locations-list {
    width: 100%;
    max-height: 250px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .locations-list li {
    width: 100%;
  }
  .location-btn {
    white-space: normal; /* Allow text wrap for addresses on mobile */
  }
  .map-wrapper {
    min-height: 350px;
  }
  .map-container {
    min-height: 350px;
  }
  .map-leaflet {
    min-height: 350px;
    height: 350px;
    flex: none;
  }
}

/* ============================================================
   WHOLESALE PAGE
   ============================================================ */
.wholesale-hero {
  background: linear-gradient(
    160deg,
    rgba(26, 26, 26, 0.85) 0%,
    rgba(42, 42, 42, 0.85) 100%
  );
  color: #fff;
  padding: clamp(60px, 8vw, 100px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.wholesale-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/custom/food-shots/food-04.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}
.wholesale-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 1;
}
.wholesale-hero .wrap {
  position: relative;
  z-index: 2;
}
.wholesale-hero h1 {
  color: #fff;
}
.wholesale-hero p {
  color: rgba(255, 255, 255, 0.75);
  margin-top: 12px;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}
.wholesale-hero .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.5;
  z-index: 1;
  pointer-events: none;
}
.wholesale-hero .orb-berry {
  width: 200px;
  height: 200px;
  background: var(--berry);
  top: 10%;
  left: 5%;
}
.wholesale-hero .orb-teal {
  width: 150px;
  height: 150px;
  background: var(--teal);
  top: 50%;
  right: 8%;
}
.wholesale-hero .orb-mustard {
  width: 120px;
  height: 120px;
  background: var(--mustard);
  bottom: 15%;
  left: 20%;
}
.wholesale-hero .orb-berry-2 {
  width: 100px;
  height: 100px;
  background: var(--berry);
  bottom: 20%;
  right: 25%;
  opacity: 0.3;
}
.wholesale-section {
  padding: clamp(60px, 8vw, 100px) 0;
}
.wholesale-section h2 {
  font-size: clamp(26px, 3vw, 36px);
  margin-bottom: 20px;
}
.wholesale-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.wholesale-form {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: var(--radius-sm);
  font-family: var(--body);
  font-size: 15px;
  color: var(--ink);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  background: #fff;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--berry);
  box-shadow: 0 0 0 3px rgba(172, 91, 160, 0.12);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
@media (max-width: 880px) {
  .wholesale-split {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   BLOG PAGE
   ============================================================ */
.blog-hero {
  background: linear-gradient(
    160deg,
    rgba(26, 26, 26, 0.85) 0%,
    rgba(42, 42, 42, 0.85) 100%
  );
  padding: clamp(60px, 8vw, 100px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.blog-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/custom/food-shots/food-05.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}
.blog-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 1;
}
.blog-hero .wrap {
  position: relative;
  z-index: 2;
}
.blog-hero h1 {
  color: #fff;
}
.blog-hero p {
  color: rgba(255, 255, 255, 0.75);
  margin-top: 12px;
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
}
.blog-hero .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.5;
  z-index: 1;
  pointer-events: none;
}
.blog-hero .orb-berry {
  width: 200px;
  height: 200px;
  background: var(--berry);
  top: 10%;
  left: 5%;
}
.blog-hero .orb-teal {
  width: 150px;
  height: 150px;
  background: var(--teal);
  top: 50%;
  right: 8%;
}
.blog-hero .orb-mustard {
  width: 120px;
  height: 120px;
  background: var(--mustard);
  bottom: 15%;
  left: 20%;
}
.blog-hero .orb-berry-2 {
  width: 100px;
  height: 100px;
  background: var(--berry);
  bottom: 20%;
  right: 25%;
  opacity: 0.3;
}
.blog-section {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--bg);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.blog-card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s;
}
.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}
.blog-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.blog-card-meta {
  font-size: 12px;
  color: var(--ink-2);
  display: flex;
  gap: 12px;
}
.blog-card h3 {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.25;
}
.blog-card p {
  color: var(--ink-soft);
  font-size: 14px;
  flex: 1;
}
.blog-card .link-arrow {
  font-size: 14px;
  margin-top: 6px;
}
@media (max-width: 880px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero {
  background: linear-gradient(
    160deg,
    rgba(26, 26, 26, 0.85) 0%,
    rgba(42, 42, 42, 0.85) 100%
  );
  color: #fff;
  padding: clamp(60px, 8vw, 100px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/custom/food-shots/food-06.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}
.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 1;
}
.contact-hero .wrap {
  position: relative;
  z-index: 2;
}
.contact-hero h1 {
  color: #fff;
}
.contact-hero p {
  color: rgba(255, 255, 255, 0.85);
  margin-top: 12px;
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
}
.contact-hero .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.5;
  z-index: 1;
  pointer-events: none;
}
.contact-hero .orb-berry {
  width: 200px;
  height: 200px;
  background: var(--berry);
  top: 10%;
  left: 5%;
}
.contact-hero .orb-teal {
  width: 150px;
  height: 150px;
  background: var(--teal);
  top: 50%;
  right: 8%;
}
.contact-hero .orb-mustard {
  width: 120px;
  height: 120px;
  background: var(--mustard);
  bottom: 15%;
  left: 20%;
}
.contact-hero .orb-berry-2 {
  width: 100px;
  height: 100px;
  background: var(--berry);
  bottom: 20%;
  right: 25%;
  opacity: 0.3;
}
.contact-section {
  padding: clamp(60px, 8vw, 100px) 0;
}
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-info-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(75, 168, 179, 0.12);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-info-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--teal-deep);
  stroke-width: 1.8;
  fill: none;
}
.contact-info-card h3 {
  font-size: 16px;
  margin-bottom: 4px;
}
.contact-info-card p {
  font-size: 14px;
  color: var(--ink-soft);
}
.contact-form {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 880px) {
  .contact-split {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: #d3c9b3;
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
}
.foot-brand p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14.5px;
  max-width: 32ch;
  margin-top: 14px;
}
.foot-logo {
  height: 54px;
  width: auto;
  background: transparent;
}
.socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  transition:
    background 0.2s,
    transform 0.2s;
}
.socials a:hover {
  background: var(--berry);
  transform: translateY(-2px);
}
.socials svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}
.foot-nav h4 {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mustard);
  margin-bottom: 14px;
}
.foot-nav a {
  display: block;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14.5px;
  transition: color 0.2s;
}
.foot-nav a:hover {
  color: #fff;
}
.foot-bottom {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
.foot-bottom a {
  color: rgba(255, 255, 255, 0.7);
}
.foot-bottom a:hover {
  color: #fff;
}
@media (max-width: 880px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .foot-brand {
    grid-column: 1/-1;
  }
}
@media (max-width: 540px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   PAGE HERO (generic)
   ============================================================ */
.page-hero {
  padding: clamp(60px, 8vw, 100px) 0;
  text-align: center;
}
.page-hero h1 {
  color: var(--ink);
}
.page-hero p {
  color: var(--ink-soft);
  margin-top: 12px;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}
.page-hero.mint {
  background: linear-gradient(
    160deg,
    rgba(26, 26, 26, 0.85) 0%,
    rgba(42, 42, 42, 0.85) 100%
  );
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero.mint::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/custom/food-shots/food-07.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}
.page-hero.mint::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 1;
}
.page-hero.mint .wrap {
  position: relative;
  z-index: 2;
}
.page-hero.mint h1 {
  color: #fff;
}
.page-hero.mint p {
  color: rgba(255, 255, 255, 0.85);
}
.page-hero.mint .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.5;
  z-index: 1;
  pointer-events: none;
}
.page-hero.mint .orb-berry {
  width: 200px;
  height: 200px;
  background: var(--berry);
  top: 10%;
  left: 5%;
}
.page-hero.mint .orb-teal {
  width: 150px;
  height: 150px;
  background: var(--teal);
  top: 50%;
  right: 8%;
}
.page-hero.mint .orb-mustard {
  width: 120px;
  height: 120px;
  background: var(--mustard);
  bottom: 15%;
  left: 20%;
}
.page-hero.mint .orb-berry-2 {
  width: 100px;
  height: 100px;
  background: var(--berry);
  bottom: 20%;
  right: 25%;
  opacity: 0.3;
}
.page-hero.purple {
  background: linear-gradient(
    160deg,
    rgba(26, 26, 26, 0.85) 0%,
    rgba(42, 42, 42, 0.85) 100%
  );
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero.purple::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/custom/food-shots/food-08.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}
.page-hero.purple::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 1;
}
.page-hero.purple .wrap {
  position: relative;
  z-index: 2;
}
.page-hero.purple h1 {
  color: #fff;
}
.page-hero.purple p {
  color: rgba(255, 255, 255, 0.85);
}
.page-hero.purple .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.5;
  z-index: 1;
  pointer-events: none;
}
.page-hero.purple .orb-berry {
  width: 200px;
  height: 200px;
  background: var(--berry);
  top: 10%;
  left: 5%;
}
.page-hero.purple .orb-teal {
  width: 150px;
  height: 150px;
  background: var(--teal);
  top: 50%;
  right: 8%;
}
.page-hero.purple .orb-mustard {
  width: 120px;
  height: 120px;
  background: var(--mustard);
  bottom: 15%;
  left: 20%;
}
.page-hero.purple .orb-berry-2 {
  width: 100px;
  height: 100px;
  background: var(--berry);
  bottom: 20%;
  right: 25%;
  opacity: 0.3;
}
.page-hero.dark {
  background: linear-gradient(
    160deg,
    rgba(26, 26, 26, 0.85) 0%,
    rgba(42, 42, 42, 0.85) 100%
  );
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero.dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/custom/food-shots/food-09.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}
.page-hero.dark::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 1;
}
.page-hero.dark .wrap {
  position: relative;
  z-index: 2;
}
.page-hero.dark h1 {
  color: #fff;
}
.page-hero.dark p {
  color: rgba(255, 255, 255, 0.75);
}
.page-hero.dark .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.5;
  z-index: 1;
  pointer-events: none;
}
.page-hero.dark .orb-berry {
  width: 200px;
  height: 200px;
  background: var(--berry);
  top: 10%;
  left: 5%;
}
.page-hero.dark .orb-teal {
  width: 150px;
  height: 150px;
  background: var(--teal);
  top: 50%;
  right: 8%;
}
.page-hero.dark .orb-mustard {
  width: 120px;
  height: 120px;
  background: var(--mustard);
  bottom: 15%;
  left: 20%;
}
.page-hero.dark .orb-berry-2 {
  width: 100px;
  height: 100px;
  background: var(--berry);
  bottom: 20%;
  right: 25%;
  opacity: 0.3;
}
.page-hero.butter {
  background: linear-gradient(
    160deg,
    rgba(26, 26, 26, 0.85) 0%,
    rgba(42, 42, 42, 0.85) 100%
  );
  position: relative;
  overflow: hidden;
}
.page-hero.butter::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/custom/food-shots/food-10.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}
.page-hero.butter::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 1;
}
.page-hero.butter .wrap {
  position: relative;
  z-index: 2;
}
.page-hero.butter h1 {
  color: #fff;
}
.page-hero.butter p {
  color: rgba(255, 255, 255, 0.75);
  margin-top: 12px;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}
.page-hero.butter .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.5;
  z-index: 1;
  pointer-events: none;
}
.page-hero.butter .orb-berry {
  width: 200px;
  height: 200px;
  background: var(--berry);
  top: 10%;
  left: 5%;
}
.page-hero.butter .orb-teal {
  width: 150px;
  height: 150px;
  background: var(--teal);
  top: 50%;
  right: 8%;
}
.page-hero.butter .orb-mustard {
  width: 120px;
  height: 120px;
  background: var(--mustard);
  bottom: 15%;
  left: 20%;
}
.page-hero.butter .orb-berry-2 {
  width: 100px;
  height: 100px;
  background: var(--berry);
  bottom: 20%;
  right: 25%;
  opacity: 0.3;
}

/* ============================================================
   BLOG POST PAGE
   ============================================================ */
.post-header {
  padding: 60px 0 40px;
  background: var(--butter);
}
.back-link {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  opacity: 0.65;
  transition: opacity 0.2s;
}
.back-link:hover {
  opacity: 1;
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.post-date,
.post-read {
  font-size: 0.875rem;
  color: rgba(45, 32, 18, 0.6);
}
.post-read::before {
  content: "·";
  margin-right: 16px;
}
.post-deck {
  font-size: 1.2rem;
  line-height: 1.65;
  color: rgba(45, 32, 18, 0.75);
  max-width: 680px;
  margin-top: 12px;
}
.post-byline {
  font-size: 0.9rem;
  color: rgba(45, 32, 18, 0.55);
  margin-top: 16px;
  font-weight: 500;
}

.post-cover {
  margin: 40px 0;
}
.post-cover img {
  width: 100%;
  max-height: 520px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  display: block;
}

.post-body {
  padding-bottom: 80px;
}
.post-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 60px;
  align-items: start;
}
.post-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sidebar-card {
  background: var(--bg-soft);
  border-radius: 16px;
  padding: 24px;
}
.sidebar-card h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(45, 32, 18, 0.5);
  margin-bottom: 10px;
  font-weight: 600;
}
.sidebar-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(45, 32, 18, 0.75);
}
.sidebar-card .btn {
  margin-top: 14px;
  width: 100%;
  text-align: center;
}
.share-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.share-links a {
  font-size: 0.9rem;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 0.75;
}
.share-links a:hover {
  opacity: 1;
}

.post-content {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(45, 32, 18, 0.88);
}
.post-content p {
  margin-bottom: 24px;
}
.post-content h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin: 48px 0 20px;
  color: var(--ink);
}
.post-content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 36px 0 16px;
  color: var(--ink);
}
.post-content em {
  font-style: italic;
  color: rgba(45, 32, 18, 0.7);
}
.post-content a {
  color: var(--berry);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}
.post-content a:hover {
  color: var(--berry-dark);
}

@media (max-width: 860px) {
  .post-layout {
    grid-template-columns: 1fr;
  }
  .post-sidebar {
    position: static;
  }
  .post-header {
    padding: 40px 0 30px;
  }
  .post-cover img {
    max-height: 320px;
  }
}

/* ============================================================
   DIETARY BADGES STRIP
   ============================================================ */
.badges-strip {
  background: #fff;
  padding: 20px 0;
  border-bottom: 1px solid var(--bg-soft);
}
.badges-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  background: var(--bg-soft);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}
.badge-pill svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ============================================================
   LOCATIONS PAGE HERO + VAN ANIMATION
   ============================================================ */
.locations-hero {
  background: linear-gradient(
    160deg,
    rgba(26, 26, 26, 0.85) 0%,
    rgba(42, 42, 42, 0.85) 100%
  );
  padding: clamp(60px, 8vw, 100px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.locations-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/custom/food-shots/food-11.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}
.locations-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 1;
}
.locations-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 2;
}
.locations-hero-copy {
  max-width: 600px;
}
.locations-hero-copy h1 {
  color: #fff;
  font-size: clamp(36px, 5vw, 64px);
}
.locations-hero-copy p {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 16px;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.6;
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}
.locations-hero-art {
  flex-shrink: 0;
  margin-top: 8px;
}
.locations-hero-art .van {
  width: 160px;
  height: auto;
}
.locations-hero .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.5;
  z-index: 1;
  pointer-events: none;
}
.locations-hero .orb-berry {
  width: 200px;
  height: 200px;
  background: var(--berry);
  top: 10%;
  left: 5%;
}
.locations-hero .orb-teal {
  width: 150px;
  height: 150px;
  background: var(--teal);
  top: 50%;
  right: 8%;
}
.locations-hero .orb-mustard {
  width: 120px;
  height: 120px;
  background: var(--mustard);
  bottom: 15%;
  left: 20%;
}
.locations-hero .orb-berry-2 {
  width: 100px;
  height: 100px;
  background: var(--berry);
  bottom: 20%;
  right: 25%;
  opacity: 0.3;
}

@media (max-width: 640px) {
  .locations-hero-art .van {
    width: 120px;
  }
}

/* ============================================================
   LOCATIONS PAGE PLACEHOLDER
   ============================================================ */
.locations-placeholder {
  grid-column: 1/-1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background: #fff;
  border-radius: 20px;
  border: 1.5px dashed rgba(172, 91, 160, 0.35);
}
.placeholder-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
}
.locations-placeholder h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.locations-placeholder p {
  color: var(--ink-soft);
  max-width: 44ch;
  line-height: 1.7;
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   CART & CHECKOUT SYSTEM (PROMOTIONAL POC)
   ============================================================ */
.cart-toggle {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition:
    background 0.25s,
    transform 0.25s,
    box-shadow 0.25s;
}
.cart-toggle:hover {
  background: var(--butter);
  transform: scale(1.05);
  box-shadow: var(--shadow-sm);
}
.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--berry);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg);
}

/* Cart Drawer */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.cart-drawer-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 460px;
  background: rgba(247, 243, 237, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.cart-drawer.is-open {
  transform: translateX(0);
}
.cart-header {
  padding: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-header h2 {
  font-size: 24px;
  margin: 0;
}
.cart-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
}
.cart-close:hover {
  background: var(--bg-soft);
  transform: scale(1.05);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cart-item {
  display: flex;
  gap: 16px;
  background: #fff;
  padding: 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: var(--shadow-sm);
  align-items: center;
}
.cart-item-image {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cart-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cart-item-image .placeholder-shirt {
  width: 100%;
  height: 100%;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 12px;
  text-align: center;
  line-height: 1;
}
.cart-item-details {
  flex: 1;
}
.cart-item-title {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
}
.cart-item-option {
  font-size: 12px;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.cart-item-price {
  font-weight: 600;
  font-size: 15px;
}
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}
.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  background: #fff;
  transition: all 0.2s;
}
.qty-btn:hover {
  background: var(--bg-soft);
  border-color: var(--ink);
}
.cart-item-qty-value {
  font-size: 14px;
  font-weight: 600;
  min-width: 16px;
  text-align: center;
}
.cart-item-remove {
  background: none;
  border: 0;
  color: var(--ink-2);
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s;
  align-self: flex-start;
}
.cart-item-remove:hover {
  color: var(--berry);
}

.shipping-tracker {
  background: var(--butter);
  padding: 16px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.shipping-message {
  font-size: 13.5px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--ink-soft);
}
.shipping-message strong {
  color: var(--berry-deep);
}
.shipping-bar-bg {
  height: 6px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 3px;
  overflow: hidden;
}
.shipping-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal) 0%, var(--berry) 100%);
  width: 0%;
  border-radius: 3px;
  transition: width 0.4s ease;
}

.cart-footer {
  padding: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  color: var(--ink-soft);
}
.cart-summary-row.total {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  font-family: var(--display);
}
.promo-code-form {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}
.promo-input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  outline: none;
  transition: border-color 0.2s;
}
.promo-input:focus {
  border-color: var(--teal);
}
.promo-btn {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 0 16px;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s;
}
.promo-btn:hover {
  background: #000;
}
.promo-applied-badge {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(75, 168, 179, 0.1);
  border: 1px solid rgba(75, 168, 179, 0.2);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--teal-deep);
  font-weight: 500;
}
.promo-remove-btn {
  background: none;
  border: 0;
  color: var(--berry);
  cursor: pointer;
  font-weight: 600;
  font-size: 12px;
}

/* Empty state */
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 40px 24px;
  color: var(--ink-soft);
}
.cart-empty-icon {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.5;
}
.cart-empty-text {
  font-size: 16px;
  margin-bottom: 24px;
}

/* Checkout Modal */
.checkout-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1010;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.checkout-modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.checkout-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -46%) scale(0.95);
  width: 100%;
  max-width: 580px;
  background: rgba(247, 243, 237, 0.98);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 1011;
  padding: 32px;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.checkout-modal.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.checkout-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.checkout-header h2 {
  font-size: 28px;
  margin: 0;
}
.checkout-steps {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-2);
}
.checkout-step {
  flex: 1;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.08);
  transition:
    border-color 0.3s,
    color 0.3s;
}
.checkout-step.active {
  color: var(--berry);
  border-color: var(--berry);
}
.checkout-step.completed {
  color: var(--teal);
  border-color: var(--teal);
}
.checkout-section {
  display: none;
}
.checkout-section.active {
  display: block;
}
.checkout-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.checkout-form-grid .full-width {
  grid-column: 1 / -1;
}
.checkout-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.checkout-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
}
.checkout-input {
  padding: 12px 16px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-sm);
  background: #fff;
  font-size: 15px;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.checkout-input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(75, 168, 179, 0.15);
}
.checkout-nav-buttons {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 32px;
}
.checkout-nav-buttons .btn {
  flex: 1;
}

/* Success Step */
.success-content {
  text-align: center;
  padding: 24px 0;
}
.success-icon {
  font-size: 64px;
  margin-bottom: 16px;
  animation: popScale 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes popScale {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
.success-content h3 {
  font-size: 26px;
  margin-bottom: 8px;
}
.success-content p {
  color: var(--ink-soft);
  font-size: 15px;
  margin-bottom: 24px;
}
.order-summary-box {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-bottom: 28px;
  text-align: left;
}
.order-summary-header {
  font-weight: 700;
  font-family: var(--display);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding-bottom: 8px;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
}
.order-receipt-row {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.order-receipt-row.total {
  font-weight: 700;
  color: var(--ink);
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
  padding-top: 8px;
  margin-top: 8px;
  font-size: 15px;
}

/* Confetti particles */
.confetti-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1020;
}
.confetti {
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: var(--berry);
  opacity: 0.8;
  animation: confettiDrop 2.5s ease-out infinite;
}
@keyframes confettiDrop {
  0% {
    transform: translateY(-20px) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(500px) rotate(360deg);
    opacity: 0;
  }
}

/* Apparel size select elements styling */
.apparel-size-select-wrapper {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.apparel-size-select-wrapper label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
  text-transform: uppercase;
}
.apparel-size-select {
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 0, 0, 0.15);
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  background: #fff;
  color: var(--ink);
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s;
}
.apparel-size-select:focus {
  border-color: var(--ink);
}
.shop-card-footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed rgba(0, 0, 0, 0.08);
}
.shop-card-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.shop-card-unit-label {
  font-size: 12px;
  color: var(--ink-soft);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.shop-card-action-row {
  display: flex;
  gap: 8px;
  align-items: center;
  width: 100%;
}

/* Oval Add button styles */
.btn-oval-add {
  border-radius: var(--radius-pill) !important;
  padding: 8px 24px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 10px rgba(172, 91, 160, 0.25) !important;
  border: none !important;
  cursor: pointer;
  transition: all 0.2s !important;
}
.btn-oval-add:hover {
  background: var(--berry-deep) !important;
  box-shadow: 0 6px 14px rgba(172, 91, 160, 0.35) !important;
}
.pack-size-select-wrapper,
.apparel-size-select-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1;
}
.pack-size-select,
.apparel-size-select {
  width: 100%;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: var(--bg-soft);
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  outline: none;
  cursor: pointer;
  transition: all 0.2s;
  padding-right: 28px;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' width='12' height='12' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.pack-size-select:hover,
.apparel-size-select:hover {
  border-color: var(--ink-soft);
  background-color: var(--butter);
}
.apparel-size-select[disabled] {
  cursor: not-allowed;
  opacity: 0.7;
  background-color: rgba(0, 0, 0, 0.03);
}

/* ============================================================
   LIGHTBOX MODAL GALLERY
   ============================================================ */
.lightbox-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background-color: rgba(26, 26, 26, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.lightbox-modal.is-open {
  display: flex;
  opacity: 1;
}
.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox-image {
  max-width: 100%;
  max-height: 80vh;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  transform: scale(0.96);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.lightbox-modal.is-open .lightbox-image {
  transform: scale(1);
}
.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  line-height: 1;
  transition: all 0.2s;
  z-index: 10;
}
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
}
.product-gallery,
.product-3d {
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.product-gallery:hover,
.product-3d:hover {
  transform: scale(1.015);
}

/* ============================================================
   PREMIUM INTERACTIONS & GLOBAL VISUAL EFFECTS
   ============================================================ */

/* Shrinking Scrolled Header Padding */
.header-inner {
  transition: padding 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.site-header.is-scrolled .header-inner {
  padding-top: 10px;
  padding-bottom: 10px;
}
.site-header.is-scrolled {
  background: rgba(247, 243, 237, 0.78) !important;
  backdrop-filter: saturate(1.3) blur(20px) !important;
  -webkit-backdrop-filter: saturate(1.3) blur(20px) !important;
  box-shadow:
    0 4px 30px rgba(0, 0, 0, 0.03),
    0 1px 0 rgba(0, 0, 0, 0.05);
}

/* Scroll-triggered animations reveal class */
.scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
    transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.scroll-reveal.reveal-active {
  opacity: 1;
  transform: translateY(0);
}

/* Timeline specific entrance reveal */
.timeline-item {
  opacity: 0;
  transform: translateX(-20px);
  transition:
    opacity 0.7s cubic-bezier(0.25, 1, 0.5, 1),
    transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}
.timeline-item.reveal-active {
  opacity: 1;
  transform: translateX(0);
}

/* Back to Top Button */
#backToTopBtn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--ink);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  border: none;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 45;
}
#backToTopBtn.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
#backToTopBtn:hover {
  background: var(--berry);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Button & Card Micro-interactions */
.btn,
.location-btn,
.filter-btn,
.cart-toggle {
  transition:
    transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    background-color 0.2s,
    border-color 0.2s,
    box-shadow 0.2s !important;
}
.btn:hover,
.location-btn:hover,
.filter-btn:hover {
  transform: scale(1.03) translateY(-1px);
}
.btn:active,
.location-btn:active,
.filter-btn:active {
  transform: scale(0.98) translateY(0);
}

.shop-card,
.bite-card {
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease !important;
}
.shop-card:hover,
.bite-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--shadow-md);
}

/* FDA-Style Nutrition Facts Panel */
.fda-nutrition-panel {
  border: 1px solid #000000;
  padding: 16px;
  background: #ffffff;
  color: #000000;
  font-family: Arial, Helvetica, sans-serif;
  max-width: 320px;
  box-shadow: var(--shadow-sm);
}
.fda-nutrition-panel h3 {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 28px;
  font-weight: 900;
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
  border-bottom: 8px solid #000000;
  padding-bottom: 4px;
}
.fda-servings {
  font-size: 13px;
  font-weight: bold;
  border-bottom: 4px solid #000000;
  padding: 6px 0;
}
.fda-calories-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 6px solid #000000;
  padding: 4px 0;
}
.fda-calories-label {
  font-size: 15px;
  font-weight: 900;
}
.fda-calories-val {
  font-size: 32px;
  font-weight: 900;
  line-height: 0.9;
}
.fda-dv-header {
  text-align: right;
  font-size: 11px;
  font-weight: bold;
  border-bottom: 1px solid #000000;
  padding: 4px 0;
}
.fda-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 4px 0;
  border-bottom: 1px solid #000000;
  transition: background-color 0.2s;
}
.fda-row.sub-row {
  padding-left: 16px;
}
.fda-row.thick-bottom {
  border-bottom: 4px solid #000000;
}
.fda-row.no-bottom {
  border-bottom: 0;
}
.fda-row.highlighted {
  background: var(--butter);
}
.fda-footer {
  border-top: 6px solid #000000;
  font-size: 10px;
  padding-top: 6px;
  line-height: 1.35;
}

/* Donut Chart styles */
.macro-visualization {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  justify-content: center;
}
.macro-donut-svg {
  transform: rotate(-90deg); /* align start arc to top */
  overflow: visible;
}
.donut-segment {
  transition:
    stroke-width 0.3s,
    opacity 0.3s;
  cursor: pointer;
}
.donut-segment.dimmed {
  opacity: 0.25;
}
.donut-segment.highlighted {
  stroke-width: 6;
  opacity: 1;
}
.donut-text {
  transform: rotate(90deg);
  transform-origin: 50% 50%;
}
.donut-number {
  font-family: var(--display);
  font-size: 6px;
  font-weight: 700;
  text-anchor: middle;
  fill: var(--ink);
}
.donut-label {
  font-family: var(--body);
  font-size: 2px;
  text-transform: uppercase;
  letter-spacing: 0.1px;
  text-anchor: middle;
  fill: var(--ink-soft);
}
.macro-legend {
  display: flex;
  gap: 12px;
  flex-direction: column;
  font-size: 13px;
  align-items: flex-start;
  margin-top: 8px;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}
.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

/* Details Tabs */
.details-tabs-container {
  margin-top: 24px;
  border-radius: var(--radius-sm);
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.details-tabs-nav {
  display: flex;
  background: var(--bg-soft);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.tab-trigger {
  flex: 1;
  padding: 14px 10px;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  color: var(--ink-soft);
  cursor: pointer;
  border: none;
  background: none;
  transition: all 0.2s;
  border-bottom: 3px solid transparent;
}
.tab-trigger:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.4);
}
.tab-trigger.active {
  color: var(--berry);
  background: #ffffff;
  border-bottom-color: var(--berry);
}
.details-tabs-content {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}
.tab-panel {
  grid-column: 1;
  grid-row: 1;
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  padding: 24px;
  min-height: 250px;
  transition:
    opacity 0.3s ease,
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.3s;
  transform: translateY(12px);
}
.tab-panel.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
  }
  to {
    opacity: 1;
    transform: translateY(0);
    max-height: 500px;
  }
}

@media (max-width: 900px) {
  .details-tabs-container {
    margin-top: 32px;
  }
}

/* Abbreviation styling for definition tooltips */
abbr[title] {
  -webkit-text-decoration: underline dotted var(--teal);
          text-decoration: underline dotted var(--teal);
  text-decoration-thickness: 1.5px;
  cursor: help;
  position: relative;
  transition: color 0.2s;
}
abbr[title]:hover {
  color: var(--teal);
}

/*!************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/.pnpm/next@15.4.10_@babel+core@7.29.7_@playwright+test@1.54.1_babel-plugin-macros@3.1.0_react_fc106dcbc989f5b0099802287a9f969c/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[10].use[2]!../../node_modules/.pnpm/next@15.4.10_@babel+core@7.29.7_@playwright+test@1.54.1_babel-plugin-macros@3.1.0_react_fc106dcbc989f5b0099802287a9f969c/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[10].use[3]!../../node_modules/.pnpm/leaflet@1.9.4/node_modules/leaflet/dist/leaflet.css ***!
  \************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* required styles */

.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
	position: absolute;
	left: 0;
	top: 0;
	}
.leaflet-container {
	overflow: hidden;
	}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
	-webkit-user-select: none;
	   -moz-user-select: none;
	        user-select: none;
	  -webkit-user-drag: none;
	}
/* Prevents IE11 from highlighting tiles in blue */
.leaflet-tile::-moz-selection {
	background: transparent;
}
.leaflet-tile::selection {
	background: transparent;
}
/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
	image-rendering: -webkit-optimize-contrast;
	}
/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
	width: 1600px;
	height: 1600px;
	-webkit-transform-origin: 0 0;
	}
.leaflet-marker-icon,
.leaflet-marker-shadow {
	display: block;
	}
/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg {
	max-width: none !important;
	max-height: none !important;
	}
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
	max-width: none !important;
	max-height: none !important;
	width: auto;
	padding: 0;
	}

.leaflet-container img.leaflet-tile {
	/* See: https://bugs.chromium.org/p/chromium/issues/detail?id=600120 */
	mix-blend-mode: plus-lighter;
}

.leaflet-container.leaflet-touch-zoom {
	touch-action: pan-x pan-y;
	}
.leaflet-container.leaflet-touch-drag {
	/* Fallback for FF which doesn't support pinch-zoom */
	touch-action: none;
	touch-action: pinch-zoom;
}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
	touch-action: none;
}
.leaflet-container {
	-webkit-tap-highlight-color: transparent;
}
.leaflet-container a {
	-webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}
.leaflet-tile {
	filter: inherit;
	visibility: hidden;
	}
.leaflet-tile-loaded {
	visibility: inherit;
	}
.leaflet-zoom-box {
	width: 0;
	height: 0;
	box-sizing: border-box;
	z-index: 800;
	}
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
	-moz-user-select: none;
	}

.leaflet-pane         { z-index: 400; }

.leaflet-tile-pane    { z-index: 200; }
.leaflet-overlay-pane { z-index: 400; }
.leaflet-shadow-pane  { z-index: 500; }
.leaflet-marker-pane  { z-index: 600; }
.leaflet-tooltip-pane   { z-index: 650; }
.leaflet-popup-pane   { z-index: 700; }

.leaflet-map-pane canvas { z-index: 100; }
.leaflet-map-pane svg    { z-index: 200; }

.leaflet-vml-shape {
	width: 1px;
	height: 1px;
	}
.lvml {
	behavior: url(#default#VML);
	display: inline-block;
	position: absolute;
	}


/* control positioning */

.leaflet-control {
	position: relative;
	z-index: 800;
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}
.leaflet-top,
.leaflet-bottom {
	position: absolute;
	z-index: 1000;
	pointer-events: none;
	}
.leaflet-top {
	top: 0;
	}
.leaflet-right {
	right: 0;
	}
.leaflet-bottom {
	bottom: 0;
	}
.leaflet-left {
	left: 0;
	}
.leaflet-control {
	float: left;
	clear: both;
	}
.leaflet-right .leaflet-control {
	float: right;
	}
.leaflet-top .leaflet-control {
	margin-top: 10px;
	}
.leaflet-bottom .leaflet-control {
	margin-bottom: 10px;
	}
.leaflet-left .leaflet-control {
	margin-left: 10px;
	}
.leaflet-right .leaflet-control {
	margin-right: 10px;
	}


/* zoom and fade animations */

.leaflet-fade-anim .leaflet-popup {
	opacity: 0;
	transition: opacity 0.2s linear;
	}
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
	opacity: 1;
	}
.leaflet-zoom-animated {
	transform-origin: 0 0;
	}
svg.leaflet-zoom-animated {
	will-change: transform;
}

.leaflet-zoom-anim .leaflet-zoom-animated {
	transition:         transform 0.25s cubic-bezier(0,0,0.25,1);
	}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
	transition: none;
	}

.leaflet-zoom-anim .leaflet-zoom-hide {
	visibility: hidden;
	}


/* cursors */

.leaflet-interactive {
	cursor: pointer;
	}
.leaflet-grab {
	cursor:         grab;
	}
.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
	cursor: crosshair;
	}
.leaflet-popup-pane,
.leaflet-control {
	cursor: auto;
	}
.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
	cursor: move;
	cursor:         grabbing;
	}

/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
	pointer-events: none;
	}

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}

/* visual tweaks */

.leaflet-container {
	background: #ddd;
	outline-offset: 1px;
	}
.leaflet-container a {
	color: #0078A8;
	}
.leaflet-zoom-box {
	border: 2px dotted #38f;
	background: rgba(255,255,255,0.5);
	}


/* general typography */
.leaflet-container {
	font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1.5;
	}


/* general toolbar styles */

.leaflet-bar {
	box-shadow: 0 1px 5px rgba(0,0,0,0.65);
	border-radius: 4px;
	}
.leaflet-bar a {
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	width: 26px;
	height: 26px;
	line-height: 26px;
	display: block;
	text-align: center;
	text-decoration: none;
	color: black;
	}
.leaflet-bar a,
.leaflet-control-layers-toggle {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	display: block;
	}
.leaflet-bar a:hover,
.leaflet-bar a:focus {
	background-color: #f4f4f4;
	}
.leaflet-bar a:first-child {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	}
.leaflet-bar a:last-child {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border-bottom: none;
	}
.leaflet-bar a.leaflet-disabled {
	cursor: default;
	background-color: #f4f4f4;
	color: #bbb;
	}

.leaflet-touch .leaflet-bar a {
	width: 30px;
	height: 30px;
	line-height: 30px;
	}
.leaflet-touch .leaflet-bar a:first-child {
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	}
.leaflet-touch .leaflet-bar a:last-child {
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
	}

/* zoom control */

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
	font: bold 18px 'Lucida Console', Monaco, monospace;
	text-indent: 1px;
	}

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out  {
	font-size: 22px;
	}


/* layers control */

.leaflet-control-layers {
	box-shadow: 0 1px 5px rgba(0,0,0,0.4);
	background: #fff;
	border-radius: 5px;
	}
.leaflet-control-layers-toggle {
	background-image: url(/_next/static/media/layers.ef6db872.png);
	width: 36px;
	height: 36px;
	}
.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url(/_next/static/media/layers-2x.9859cd12.png);
	background-size: 26px 26px;
	}
.leaflet-touch .leaflet-control-layers-toggle {
	width: 44px;
	height: 44px;
	}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
	display: none;
	}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
	display: block;
	position: relative;
	}
.leaflet-control-layers-expanded {
	padding: 6px 10px 6px 6px;
	color: #333;
	background: #fff;
	}
.leaflet-control-layers-scrollbar {
	overflow-y: scroll;
	overflow-x: hidden;
	padding-right: 5px;
	}
.leaflet-control-layers-selector {
	margin-top: 2px;
	position: relative;
	top: 1px;
	}
.leaflet-control-layers label {
	display: block;
	font-size: 13px;
	font-size: 1.08333em;
	}
.leaflet-control-layers-separator {
	height: 0;
	border-top: 1px solid #ddd;
	margin: 5px -10px 5px -6px;
	}

/* Default icon URLs */
.leaflet-default-icon-path { /* used only in path-guessing heuristic, see L.Icon.Default */
	background-image: url(/_next/static/media/marker-icon.d577052a.png);
	}


/* attribution and scale controls */

.leaflet-container .leaflet-control-attribution {
	background: #fff;
	background: rgba(255, 255, 255, 0.8);
	margin: 0;
	}
.leaflet-control-attribution,
.leaflet-control-scale-line {
	padding: 0 5px;
	color: #333;
	line-height: 1.4;
	}
.leaflet-control-attribution a {
	text-decoration: none;
	}
.leaflet-control-attribution a:hover,
.leaflet-control-attribution a:focus {
	text-decoration: underline;
	}
.leaflet-attribution-flag {
	display: inline !important;
	vertical-align: baseline !important;
	width: 1em;
	height: 0.6669em;
	}
.leaflet-left .leaflet-control-scale {
	margin-left: 5px;
	}
.leaflet-bottom .leaflet-control-scale {
	margin-bottom: 5px;
	}
.leaflet-control-scale-line {
	border: 2px solid #777;
	border-top: none;
	line-height: 1.1;
	padding: 2px 5px 1px;
	white-space: nowrap;
	box-sizing: border-box;
	background: rgba(255, 255, 255, 0.8);
	text-shadow: 1px 1px #fff;
	}
.leaflet-control-scale-line:not(:first-child) {
	border-top: 2px solid #777;
	border-bottom: none;
	margin-top: -2px;
	}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
	border-bottom: 2px solid #777;
	}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	box-shadow: none;
	}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	border: 2px solid rgba(0,0,0,0.2);
	background-clip: padding-box;
	}


/* popup */

.leaflet-popup {
	position: absolute;
	text-align: center;
	margin-bottom: 20px;
	}
.leaflet-popup-content-wrapper {
	padding: 1px;
	text-align: left;
	border-radius: 12px;
	}
.leaflet-popup-content {
	margin: 13px 24px 13px 20px;
	line-height: 1.3;
	font-size: 13px;
	font-size: 1.08333em;
	min-height: 1px;
	}
.leaflet-popup-content p {
	margin: 17px 0;
	margin: 1.3em 0;
	}
.leaflet-popup-tip-container {
	width: 40px;
	height: 20px;
	position: absolute;
	left: 50%;
	margin-top: -1px;
	margin-left: -20px;
	overflow: hidden;
	pointer-events: none;
	}
.leaflet-popup-tip {
	width: 17px;
	height: 17px;
	padding: 1px;

	margin: -10px auto 0;
	pointer-events: auto;
	transform: rotate(45deg);
	}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
	background: white;
	color: #333;
	box-shadow: 0 3px 14px rgba(0,0,0,0.4);
	}
.leaflet-container a.leaflet-popup-close-button {
	position: absolute;
	top: 0;
	right: 0;
	border: none;
	text-align: center;
	width: 24px;
	height: 24px;
	font: 16px/24px Tahoma, Verdana, sans-serif;
	color: #757575;
	text-decoration: none;
	background: transparent;
	}
.leaflet-container a.leaflet-popup-close-button:hover,
.leaflet-container a.leaflet-popup-close-button:focus {
	color: #585858;
	}
.leaflet-popup-scrolled {
	overflow: auto;
	}

.leaflet-oldie .leaflet-popup-content-wrapper {
	-ms-zoom: 1;
	}
.leaflet-oldie .leaflet-popup-tip {
	width: 24px;
	margin: 0 auto;

	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
	filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
	}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
	border: 1px solid #999;
	}


/* div icon */

.leaflet-div-icon {
	background: #fff;
	border: 1px solid #666;
	}


/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
	position: absolute;
	padding: 6px;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 3px;
	color: #222;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	pointer-events: none;
	box-shadow: 0 1px 3px rgba(0,0,0,0.4);
	}
.leaflet-tooltip.leaflet-interactive {
	cursor: pointer;
	pointer-events: auto;
	}
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	position: absolute;
	pointer-events: none;
	border: 6px solid transparent;
	background: transparent;
	content: "";
	}

/* Directions */

.leaflet-tooltip-bottom {
	margin-top: 6px;
}
.leaflet-tooltip-top {
	margin-top: -6px;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
	left: 50%;
	margin-left: -6px;
	}
.leaflet-tooltip-top:before {
	bottom: 0;
	margin-bottom: -12px;
	border-top-color: #fff;
	}
.leaflet-tooltip-bottom:before {
	top: 0;
	margin-top: -12px;
	margin-left: -6px;
	border-bottom-color: #fff;
	}
.leaflet-tooltip-left {
	margin-left: -6px;
}
.leaflet-tooltip-right {
	margin-left: 6px;
}
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	top: 50%;
	margin-top: -6px;
	}
.leaflet-tooltip-left:before {
	right: 0;
	margin-right: -12px;
	border-left-color: #fff;
	}
.leaflet-tooltip-right:before {
	left: 0;
	margin-left: -12px;
	border-right-color: #fff;
	}

/* Printing */

@media print {
	/* Prevent printers from removing background-images of controls. */
	.leaflet-control {
		-webkit-print-color-adjust: exact;
		print-color-adjust: exact;
		}
	}

/*!****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/.pnpm/next@15.4.10_@babel+core@7.29.7_@playwright+test@1.54.1_babel-plugin-macros@3.1.0_react_fc106dcbc989f5b0099802287a9f969c/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[10].use[2]!../../node_modules/.pnpm/next@15.4.10_@babel+core@7.29.7_@playwright+test@1.54.1_babel-plugin-macros@3.1.0_react_fc106dcbc989f5b0099802287a9f969c/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[10].use[3]!./src/app/(frontend)/globals.css ***!
  \****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/**
 * Frontend global styles — lexi marketing skin on Mustard CMS.
 */

*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

/*! tailwindcss v3.4.19 | MIT License | https://tailwindcss.com
 */

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: var(--font-geist-sans); /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

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

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: var(--font-geist-mono); /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/

dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/

:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */

[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}
.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}
@media (min-width: 40rem) {

  .container {
    max-width: 40rem;
    padding-right: 1rem;
    padding-left: 1rem;
  }
}
@media (min-width: 48rem) {

  .container {
    max-width: 48rem;
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media (min-width: 64rem) {

  .container {
    max-width: 64rem;
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media (min-width: 80rem) {

  .container {
    max-width: 80rem;
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media (min-width: 86rem) {

  .container {
    max-width: 86rem;
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
.prose {
  color: var(--tw-prose-body);
  max-width: 65ch;
}
.prose :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}
.prose :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-lead);
  font-size: 1.25em;
  line-height: 1.6;
  margin-top: 1.2em;
  margin-bottom: 1.2em;
}
.prose :where(a):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-links);
  text-decoration: underline;
  font-weight: 500;
}
.prose :where(strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-bold);
  font-weight: 600;
}
.prose :where(a strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(blockquote strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(thead th strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: decimal;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-inline-start: 1.625em;
}
.prose :where(ol[type="A"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-alpha;
}
.prose :where(ol[type="a"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-alpha;
}
.prose :where(ol[type="A" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-alpha;
}
.prose :where(ol[type="a" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-alpha;
}
.prose :where(ol[type="I"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-roman;
}
.prose :where(ol[type="i"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-roman;
}
.prose :where(ol[type="I" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-roman;
}
.prose :where(ol[type="i" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-roman;
}
.prose :where(ol[type="1"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: decimal;
}
.prose :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: disc;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-inline-start: 1.625em;
}
.prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
  font-weight: 400;
  color: var(--tw-prose-counters);
}
.prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
  color: var(--tw-prose-bullets);
}
.prose :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  margin-top: 1.25em;
}
.prose :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-color: var(--tw-prose-hr);
  border-top-width: 1px;
  margin-top: 3em;
  margin-bottom: 3em;
}
.prose :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 500;
  font-style: italic;
  color: var(--tw-prose-quotes);
  border-inline-start-width: 0.25rem;
  border-inline-start-color: var(--tw-prose-quote-borders);
  quotes: "\201C""\201D""\2018""\2019";
  margin-top: 1.6em;
  margin-bottom: 1.6em;
  padding-inline-start: 1em;
}
.prose :where(blockquote p:first-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: open-quote;
}
.prose :where(blockquote p:last-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: close-quote;
}
.prose :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: normal;
  font-size: 2.25em;
  margin-top: 0;
  margin-bottom: 0.25em;
  line-height: 1.1111111;
}
.prose :where(h1 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 900;
  color: inherit;
}
.prose :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 700;
  font-size: 1.5em;
  margin-top: 2em;
  margin-bottom: 1em;
  line-height: 1.3333333;
}
.prose :where(h2 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 800;
  color: inherit;
}
.prose :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  font-size: 1.25em;
  margin-top: 1.6em;
  margin-bottom: 0.6em;
  line-height: 1.6;
}
.prose :where(h3 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 700;
  color: inherit;
}
.prose :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  line-height: 1.5;
}
.prose :where(h4 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 700;
  color: inherit;
}
.prose :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  display: block;
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 500;
  font-family: inherit;
  color: var(--tw-prose-kbd);
  box-shadow: 0 0 0 1px var(--tw-prose-kbd-shadows), 0 3px 0 var(--tw-prose-kbd-shadows);
  font-size: 0.875em;
  border-radius: 0.3125rem;
  padding-top: 0.1875em;
  padding-inline-end: 0.375em;
  padding-bottom: 0.1875em;
  padding-inline-start: 0.375em;
}
.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-code);
  font-weight: 600;
  font-size: 0.875em;
}
.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: none;
}
.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: none;
}
.prose :where(a code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(h1 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
  font-size: 0.875em;
}
.prose :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
  font-size: 0.9em;
}
.prose :where(h4 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(blockquote code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(thead th code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-pre-code);
  background-color: var(--tw-prose-pre-bg);
  overflow-x: auto;
  font-weight: 400;
  font-size: 0.875em;
  line-height: 1.7142857;
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
  border-radius: 0.375rem;
  padding-top: 0.8571429em;
  padding-inline-end: 1.1428571em;
  padding-bottom: 0.8571429em;
  padding-inline-start: 1.1428571em;
}
.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  background-color: transparent;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-weight: inherit;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}
.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: none;
}
.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: none;
}
.prose :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  width: 100%;
  table-layout: auto;
  margin-top: 2em;
  margin-bottom: 2em;
  font-size: 0.875em;
  line-height: 1.7142857;
}
.prose :where(thead):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-th-borders);
}
.prose :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  vertical-align: bottom;
  padding-inline-end: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-inline-start: 0.5714286em;
}
.prose :where(tbody tr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-td-borders);
}
.prose :where(tbody tr:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 0;
}
.prose :where(tbody td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  vertical-align: baseline;
}
.prose :where(tfoot):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-top-width: 1px;
  border-top-color: var(--tw-prose-th-borders);
}
.prose :where(tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  vertical-align: top;
}
.prose :where(th, td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  text-align: start;
}
.prose :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}
.prose :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-captions);
  font-size: 0.875em;
  line-height: 1.4285714;
  margin-top: 0.8571429em;
}
.prose {
  --tw-prose-body: var(--fg);
  --tw-prose-headings: var(--fg);
  --tw-prose-lead: #4b5563;
  --tw-prose-links: #111827;
  --tw-prose-bold: #111827;
  --tw-prose-counters: #6b7280;
  --tw-prose-bullets: #d1d5db;
  --tw-prose-hr: #e5e7eb;
  --tw-prose-quotes: #111827;
  --tw-prose-quote-borders: #e5e7eb;
  --tw-prose-captions: #6b7280;
  --tw-prose-kbd: #111827;
  --tw-prose-kbd-shadows: rgb(17 24 39 / 10%);
  --tw-prose-code: #111827;
  --tw-prose-pre-code: #e5e7eb;
  --tw-prose-pre-bg: #1f2937;
  --tw-prose-th-borders: #d1d5db;
  --tw-prose-td-borders: #e5e7eb;
  --tw-prose-invert-body: #d1d5db;
  --tw-prose-invert-headings: #fff;
  --tw-prose-invert-lead: #9ca3af;
  --tw-prose-invert-links: #fff;
  --tw-prose-invert-bold: #fff;
  --tw-prose-invert-counters: #9ca3af;
  --tw-prose-invert-bullets: #4b5563;
  --tw-prose-invert-hr: #374151;
  --tw-prose-invert-quotes: #f3f4f6;
  --tw-prose-invert-quote-borders: #374151;
  --tw-prose-invert-captions: #9ca3af;
  --tw-prose-invert-kbd: #fff;
  --tw-prose-invert-kbd-shadows: rgb(255 255 255 / 10%);
  --tw-prose-invert-code: #fff;
  --tw-prose-invert-pre-code: #d1d5db;
  --tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);
  --tw-prose-invert-th-borders: #4b5563;
  --tw-prose-invert-td-borders: #374151;
  font-size: 1rem;
  line-height: 1.75;
}
.prose :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}
.prose :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0.375em;
}
.prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0.375em;
}
.prose :where(.prose > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}
.prose :where(.prose > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
}
.prose :where(.prose > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.25em;
}
.prose :where(.prose > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
}
.prose :where(.prose > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.25em;
}
.prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}
.prose :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}
.prose :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.5em;
  padding-inline-start: 1.625em;
}
.prose :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0;
}
.prose :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-end: 0;
}
.prose :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-top: 0.5714286em;
  padding-inline-end: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-inline-start: 0.5714286em;
}
.prose :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0;
}
.prose :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-end: 0;
}
.prose :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose :where(.prose > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose :where(.prose > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 0;
}
.prose-invert {
  --tw-prose-body: var(--tw-prose-invert-body);
  --tw-prose-headings: var(--tw-prose-invert-headings);
  --tw-prose-lead: var(--tw-prose-invert-lead);
  --tw-prose-links: var(--tw-prose-invert-links);
  --tw-prose-bold: var(--tw-prose-invert-bold);
  --tw-prose-counters: var(--tw-prose-invert-counters);
  --tw-prose-bullets: var(--tw-prose-invert-bullets);
  --tw-prose-hr: var(--tw-prose-invert-hr);
  --tw-prose-quotes: var(--tw-prose-invert-quotes);
  --tw-prose-quote-borders: var(--tw-prose-invert-quote-borders);
  --tw-prose-captions: var(--tw-prose-invert-captions);
  --tw-prose-kbd: var(--tw-prose-invert-kbd);
  --tw-prose-kbd-shadows: var(--tw-prose-invert-kbd-shadows);
  --tw-prose-code: var(--tw-prose-invert-code);
  --tw-prose-pre-code: var(--tw-prose-invert-pre-code);
  --tw-prose-pre-bg: var(--tw-prose-invert-pre-bg);
  --tw-prose-th-borders: var(--tw-prose-invert-th-borders);
  --tw-prose-td-borders: var(--tw-prose-invert-td-borders);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.pointer-events-none {
  pointer-events: none;
}
.visible {
  visibility: visible;
}
.invisible {
  visibility: hidden;
}
.collapse {
  visibility: collapse;
}
.static {
  position: static;
}
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.sticky {
  position: sticky;
}
.inset-0 {
  inset: 0px;
}
.inset-x-0 {
  left: 0px;
  right: 0px;
}
.inset-y-0 {
  top: 0px;
  bottom: 0px;
}
.-top-4 {
  top: -1rem;
}
.bottom-0 {
  bottom: 0px;
}
.left-0 {
  left: 0px;
}
.left-1\/2 {
  left: 50%;
}
.left-2 {
  left: 0.5rem;
}
.right-0 {
  right: 0px;
}
.right-2 {
  right: 0.5rem;
}
.right-4 {
  right: 1rem;
}
.top-0 {
  top: 0px;
}
.top-1\/2 {
  top: 50%;
}
.top-4 {
  top: 1rem;
}
.isolate {
  isolation: isolate;
}
.-z-10 {
  z-index: -10;
}
.z-0 {
  z-index: 0;
}
.z-10 {
  z-index: 10;
}
.z-20 {
  z-index: 20;
}
.z-30 {
  z-index: 30;
}
.z-40 {
  z-index: 40;
}
.z-50 {
  z-index: 50;
}
.z-\[1\] {
  z-index: 1;
}
.z-\[2\] {
  z-index: 2;
}
.z-\[60\] {
  z-index: 60;
}
.col-span-1 {
  grid-column: span 1 / span 1;
}
.col-span-2 {
  grid-column: span 2 / span 2;
}
.col-span-3 {
  grid-column: span 3 / span 3;
}
.col-span-4 {
  grid-column: span 4 / span 4;
}
.col-start-1 {
  grid-column-start: 1;
}
.m-0 {
  margin: 0px;
}
.-mx-1 {
  margin-left: -0.25rem;
  margin-right: -0.25rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.mx-px {
  margin-left: 1px;
  margin-right: 1px;
}
.my-1 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
.my-12 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.my-16 {
  margin-top: 4rem;
  margin-bottom: 4rem;
}
.-ml-4 {
  margin-left: -1rem;
}
.-mt-16 {
  margin-top: -4rem;
}
.-mt-2 {
  margin-top: -0.5rem;
}
.-mt-4 {
  margin-top: -1rem;
}
.-mt-\[10\.4rem\] {
  margin-top: -10.4rem;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-12 {
  margin-bottom: 3rem;
}
.mb-16 {
  margin-bottom: 4rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.ml-\[55px\] {
  margin-left: 55px;
}
.ml-auto {
  margin-left: auto;
}
.mr-2 {
  margin-right: 0.5rem;
}
.mr-4 {
  margin-right: 1rem;
}
.ms-0 {
  margin-inline-start: 0px;
}
.mt-12 {
  margin-top: 3rem;
}
.mt-16 {
  margin-top: 4rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-auto {
  margin-top: auto;
}
.line-clamp-1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.line-clamp-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.line-clamp-3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.inline {
  display: inline;
}
.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.\!table {
  display: table !important;
}
.table {
  display: table;
}
.grid {
  display: grid;
}
.contents {
  display: contents;
}
.hidden {
  display: none;
}
.aspect-square {
  aspect-ratio: 1 / 1;
}
.aspect-video {
  aspect-ratio: 16 / 9;
}
.size-4 {
  width: 1rem;
  height: 1rem;
}
.size-9 {
  width: 2.25rem;
  height: 2.25rem;
}
.h-1\/2 {
  height: 50%;
}
.h-10 {
  height: 2.5rem;
}
.h-11 {
  height: 2.75rem;
}
.h-12 {
  height: 3rem;
}
.h-16 {
  height: 4rem;
}
.h-2 {
  height: 0.5rem;
}
.h-2\.5 {
  height: 0.625rem;
}
.h-24 {
  height: 6rem;
}
.h-3\.5 {
  height: 0.875rem;
}
.h-4 {
  height: 1rem;
}
.h-48 {
  height: 12rem;
}
.h-6 {
  height: 1.5rem;
}
.h-7 {
  height: 1.75rem;
}
.h-8 {
  height: 2rem;
}
.h-9 {
  height: 2.25rem;
}
.h-\[17px\] {
  height: 17px;
}
.h-\[34px\] {
  height: 34px;
}
.h-\[var\(--radix-select-trigger-height\)\] {
  height: var(--radix-select-trigger-height);
}
.h-auto {
  height: auto;
}
.h-fit {
  height: -moz-fit-content;
  height: fit-content;
}
.h-full {
  height: 100%;
}
.h-px {
  height: 1px;
}
.h-screen {
  height: 100vh;
}
.max-h-96 {
  max-height: 24rem;
}
.max-h-\[550px\] {
  max-height: 550px;
}
.min-h-\[300px\] {
  min-height: 300px;
}
.min-h-\[80px\] {
  min-height: 80px;
}
.min-h-\[80vh\] {
  min-height: 80vh;
}
.min-h-\[90vh\] {
  min-height: 90vh;
}
.min-h-screen {
  min-height: 100vh;
}
.w-10 {
  width: 2.5rem;
}
.w-12 {
  width: 3rem;
}
.w-16 {
  width: 4rem;
}
.w-2 {
  width: 0.5rem;
}
.w-2\.5 {
  width: 0.625rem;
}
.w-24 {
  width: 6rem;
}
.w-3\.5 {
  width: 0.875rem;
}
.w-3\/4 {
  width: 75%;
}
.w-32 {
  width: 8rem;
}
.w-4 {
  width: 1rem;
}
.w-48 {
  width: 12rem;
}
.w-6 {
  width: 1.5rem;
}
.w-8 {
  width: 2rem;
}
.w-9 {
  width: 2.25rem;
}
.w-\[17px\] {
  width: 17px;
}
.w-auto {
  width: auto;
}
.w-full {
  width: 100%;
}
.w-max {
  width: -moz-max-content;
  width: max-content;
}
.min-w-0 {
  min-width: 0px;
}
.min-w-\[36px\] {
  min-width: 36px;
}
.min-w-\[8rem\] {
  min-width: 8rem;
}
.min-w-\[var\(--radix-select-trigger-width\)\] {
  min-width: var(--radix-select-trigger-width);
}
.min-w-full {
  min-width: 100%;
}
.max-w-2xl {
  max-width: 42rem;
}
.max-w-3xl {
  max-width: 48rem;
}
.max-w-72 {
  max-width: 18rem;
}
.max-w-\[36px\] {
  max-width: 36px;
}
.max-w-\[48rem\] {
  max-width: 48rem;
}
.max-w-\[50rem\] {
  max-width: 50rem;
}
.max-w-\[52rem\] {
  max-width: 52rem;
}
.max-w-\[9\.375rem\] {
  max-width: 9.375rem;
}
.max-w-full {
  max-width: 100%;
}
.max-w-md {
  max-width: 28rem;
}
.max-w-none {
  max-width: none;
}
.max-w-xs {
  max-width: 20rem;
}
.flex-1 {
  flex: 1 1 0%;
}
.flex-none {
  flex: none;
}
.flex-shrink {
  flex-shrink: 1;
}
.shrink-0 {
  flex-shrink: 0;
}
.flex-grow {
  flex-grow: 1;
}
.grow {
  flex-grow: 1;
}
.grow-0 {
  flex-grow: 0;
}
.basis-1\/5 {
  flex-basis: 20%;
}
.basis-full {
  flex-basis: 100%;
}
.border-collapse {
  border-collapse: collapse;
}
.-translate-x-1\/2 {
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-y-1\/2 {
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
@keyframes spin {

  to {
    transform: rotate(360deg);
  }
}
.animate-spin {
  animation: spin 1s linear infinite;
}
.cursor-default {
  cursor: default;
}
.cursor-not-allowed {
  cursor: not-allowed;
}
.cursor-pointer {
  cursor: pointer;
}
.select-none {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.resize {
  resize: both;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.grid-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.grid-rows-\[2fr\] {
  grid-template-rows: 2fr;
}
.flex-row {
  flex-direction: row;
}
.flex-col {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.place-items-center {
  place-items: center;
}
.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}
.items-center {
  align-items: center;
}
.items-baseline {
  align-items: baseline;
}
.items-stretch {
  align-items: stretch;
}
.justify-start {
  justify-content: flex-start;
}
.justify-end {
  justify-content: flex-end;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-evenly {
  justify-content: space-evenly;
}
.gap-1 {
  gap: 0.25rem;
}
.gap-1\.5 {
  gap: 0.375rem;
}
.gap-12 {
  gap: 3rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-24 {
  gap: 6rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-8 {
  gap: 2rem;
}
.gap-x-4 {
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.gap-y-4 {
  row-gap: 1rem;
}
.space-x-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(1rem * var(--tw-space-x-reverse));
  margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-y-1 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
}
.space-y-1\.5 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.375rem * var(--tw-space-y-reverse));
}
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
.space-y-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.space-y-6 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}
.overflow-auto {
  overflow: auto;
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-x-auto {
  overflow-x: auto;
}
.overflow-y-auto {
  overflow-y: auto;
}
.overflow-x-hidden {
  overflow-x: hidden;
}
.whitespace-nowrap {
  white-space: nowrap;
}
.whitespace-pre-wrap {
  white-space: pre-wrap;
}
.break-all {
  word-break: break-all;
}
.rounded {
  border-radius: 0.25rem;
}
.rounded-2xl {
  border-radius: 1rem;
}
.rounded-3xl {
  border-radius: 1.5rem;
}
.rounded-\[0\.8rem\] {
  border-radius: 0.8rem;
}
.rounded-\[4px\] {
  border-radius: 4px;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-lg {
  border-radius: var(--radius);
}
.rounded-md {
  border-radius: calc(var(--radius) - 2px);
}
.rounded-sm {
  border-radius: calc(var(--radius) - 4px);
}
.rounded-xl {
  border-radius: 0.75rem;
}
.rounded-b-xl {
  border-bottom-right-radius: 0.75rem;
  border-bottom-left-radius: 0.75rem;
}
.rounded-t-xl {
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
}
.border {
  border-width: 1px;
}
.border-0 {
  border-width: 0px;
}
.border-2 {
  border-width: 2px;
}
.border-b {
  border-bottom-width: 1px;
}
.border-l {
  border-left-width: 1px;
}
.border-r {
  border-right-width: 1px;
}
.border-t {
  border-top-width: 1px;
}
.border-t-4 {
  border-top-width: 4px;
}
.border-dashed {
  border-style: dashed;
}
.border-none {
  border-style: none;
}
.border-\[\#BFE3E0\] {
  --tw-border-opacity: 1;
  border-color: rgb(191 227 224 / var(--tw-border-opacity, 1));
}
.border-amber-400 {
  --tw-border-opacity: 1;
  border-color: rgb(251 191 36 / var(--tw-border-opacity, 1));
}
.border-neutral-200 {
  --tw-border-opacity: 1;
  border-color: rgb(229 229 229 / var(--tw-border-opacity, 1));
}
.border-neutral-300 {
  --tw-border-opacity: 1;
  border-color: rgb(212 212 212 / var(--tw-border-opacity, 1));
}
.border-neutral-700 {
  --tw-border-opacity: 1;
  border-color: rgb(64 64 64 / var(--tw-border-opacity, 1));
}
.border-sky-400 {
  --tw-border-opacity: 1;
  border-color: rgb(56 189 248 / var(--tw-border-opacity, 1));
}
.\!bg-blue-200 {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(191 219 254 / var(--tw-bg-opacity, 1)) !important;
}
.bg-\[\#222222\] {
  --tw-bg-opacity: 1;
  background-color: rgb(34 34 34 / var(--tw-bg-opacity, 1));
}
.bg-\[\#39B9B9\] {
  --tw-bg-opacity: 1;
  background-color: rgb(57 185 185 / var(--tw-bg-opacity, 1));
}
.bg-\[\#BFE3E0\]\/10 {
  background-color: rgb(191 227 224 / 0.1);
}
.bg-\[\#fdfbfd\] {
  --tw-bg-opacity: 1;
  background-color: rgb(253 251 253 / var(--tw-bg-opacity, 1));
}
.bg-amber-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(251 191 36 / var(--tw-bg-opacity, 1));
}
.bg-amber-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(255 251 235 / var(--tw-bg-opacity, 1));
}
.bg-black {
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
}
.bg-black\/30 {
  background-color: rgb(0 0 0 / 0.3);
}
.bg-black\/80 {
  background-color: rgb(0 0 0 / 0.8);
}
.bg-blue-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
}
.bg-neutral-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(212 212 212 / var(--tw-bg-opacity, 1));
}
.bg-neutral-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(115 115 115 / var(--tw-bg-opacity, 1));
}
.bg-sky-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(56 189 248 / var(--tw-bg-opacity, 1));
}
.bg-sky-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(240 249 255 / var(--tw-bg-opacity, 1));
}
.bg-transparent {
  background-color: transparent;
}
.bg-white\/70 {
  background-color: rgb(255 255 255 / 0.7);
}
.bg-opacity-80 {
  --tw-bg-opacity: 0.8;
}
.bg-gradient-to-t {
  background-image: linear-gradient(to top, var(--tw-gradient-stops));
}
.from-black {
  --tw-gradient-from: #000 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.to-transparent {
  --tw-gradient-to: transparent var(--tw-gradient-to-position);
}
.object-contain {
  -o-object-fit: contain;
     object-fit: contain;
}
.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}
.p-0 {
  padding: 0px;
}
.p-1 {
  padding: 0.25rem;
}
.p-10 {
  padding: 2.5rem;
}
.p-2 {
  padding: 0.5rem;
}
.p-4 {
  padding: 1rem;
}
.p-6 {
  padding: 1.5rem;
}
.p-8 {
  padding: 2rem;
}
.px-0 {
  padding-left: 0px;
  padding-right: 0px;
}
.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-1\.5 {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-28 {
  padding-top: 7rem;
  padding-bottom: 7rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.pb-1 {
  padding-bottom: 0.25rem;
}
.pb-16 {
  padding-bottom: 4rem;
}
.pb-2 {
  padding-bottom: 0.5rem;
}
.pb-24 {
  padding-bottom: 6rem;
}
.pb-4 {
  padding-bottom: 1rem;
}
.pb-6 {
  padding-bottom: 1.5rem;
}
.pb-8 {
  padding-bottom: 2rem;
}
.pl-0 {
  padding-left: 0px;
}
.pl-2\.5 {
  padding-left: 0.625rem;
}
.pl-4 {
  padding-left: 1rem;
}
.pl-8 {
  padding-left: 2rem;
}
.pr-2 {
  padding-right: 0.5rem;
}
.pr-2\.5 {
  padding-right: 0.625rem;
}
.pr-4 {
  padding-right: 1rem;
}
.pt-0 {
  padding-top: 0px;
}
.pt-1 {
  padding-top: 0.25rem;
}
.pt-16 {
  padding-top: 4rem;
}
.pt-2 {
  padding-top: 0.5rem;
}
.pt-24 {
  padding-top: 6rem;
}
.pt-4 {
  padding-top: 1rem;
}
.pt-6 {
  padding-top: 1.5rem;
}
.pt-8 {
  padding-top: 2rem;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.align-top {
  vertical-align: top;
}
.font-mono {
  font-family: var(--font-geist-mono);
}
.\!text-8xl {
  font-size: 6rem !important;
  line-height: 1 !important;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.text-5xl {
  font-size: 3rem;
  line-height: 1;
}
.text-6xl {
  font-size: 3.75rem;
  line-height: 1;
}
.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.font-bold {
  font-weight: 700;
}
.font-light {
  font-weight: 300;
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.uppercase {
  text-transform: uppercase;
}
.lowercase {
  text-transform: lowercase;
}
.capitalize {
  text-transform: capitalize;
}
.italic {
  font-style: italic;
}
.tabular-nums {
  --tw-numeric-spacing: tabular-nums;
  font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
}
.leading-5 {
  line-height: 1.25rem;
}
.leading-6 {
  line-height: 1.5rem;
}
.leading-none {
  line-height: 1;
}
.leading-tight {
  line-height: 1.25;
}
.tracking-tight {
  letter-spacing: -0.025em;
}
.tracking-wide {
  letter-spacing: 0.025em;
}
.tracking-wider {
  letter-spacing: 0.05em;
}
.tracking-widest {
  letter-spacing: 0.1em;
}
.\!text-white {
  --tw-text-opacity: 1 !important;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1)) !important;
}
.text-\[\#39B9B9\] {
  --tw-text-opacity: 1;
  color: rgb(57 185 185 / var(--tw-text-opacity, 1));
}
.text-\[\#ffc72b\] {
  --tw-text-opacity: 1;
  color: rgb(255 199 43 / var(--tw-text-opacity, 1));
}
.text-amber-900 {
  --tw-text-opacity: 1;
  color: rgb(120 53 15 / var(--tw-text-opacity, 1));
}
.text-amber-950 {
  --tw-text-opacity: 1;
  color: rgb(69 26 3 / var(--tw-text-opacity, 1));
}
.text-black {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}
.text-current {
  color: currentColor;
}
.text-inherit {
  color: inherit;
}
.text-neutral-300 {
  --tw-text-opacity: 1;
  color: rgb(212 212 212 / var(--tw-text-opacity, 1));
}
.text-neutral-500 {
  --tw-text-opacity: 1;
  color: rgb(115 115 115 / var(--tw-text-opacity, 1));
}
.text-red-600 {
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / var(--tw-text-opacity, 1));
}
.text-sky-950 {
  --tw-text-opacity: 1;
  color: rgb(8 47 73 / var(--tw-text-opacity, 1));
}
.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.underline {
  text-decoration-line: underline;
}
.line-through {
  text-decoration-line: line-through;
}
.no-underline {
  text-decoration-line: none;
}
.decoration-dotted {
  text-decoration-style: dotted;
}
.underline-offset-4 {
  text-underline-offset: 4px;
}
.opacity-0 {
  opacity: 0;
}
.opacity-40 {
  opacity: 0.4;
}
.opacity-50 {
  opacity: 0.5;
}
.opacity-70 {
  opacity: 0.7;
}
.opacity-80 {
  opacity: 0.8;
}
.shadow {
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-2xl {
  --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-lg {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-md {
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-none {
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-sm {
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-xl {
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[\#4A4A4A\]\/50 {
  --tw-shadow-color: rgb(74 74 74 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.outline-none {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.outline {
  outline-style: solid;
}
.ring {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.blur {
  --tw-blur: blur(8px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.blur-lg {
  --tw-blur: blur(16px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.blur-md {
  --tw-blur: blur(12px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.blur-sm {
  --tw-blur: blur(4px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.drop-shadow {
  --tw-drop-shadow: drop-shadow(0 1px 2px rgb(0 0 0 / 0.1)) drop-shadow(0 1px 1px rgb(0 0 0 / 0.06));
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.invert {
  --tw-invert: invert(100%);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.backdrop-blur-md {
  --tw-backdrop-blur: blur(12px);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.backdrop-blur-sm {
  --tw-backdrop-blur: blur(4px);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.backdrop-blur-xl {
  --tw-backdrop-blur: blur(24px);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-\[color\2c box-shadow\] {
  transition-property: color,box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-\[max-height\] {
  transition-property: max-height;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-shadow {
  transition-property: box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.duration-150 {
  transition-duration: 150ms;
}
.duration-200 {
  transition-duration: 200ms;
}
.duration-300 {
  transition-duration: 300ms;
}
.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.ease-out {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.will-change-transform {
  will-change: transform;
}
@keyframes enter {

  from {
    opacity: var(--tw-enter-opacity, 1);
    transform: translate3d(var(--tw-enter-translate-x, 0), var(--tw-enter-translate-y, 0), 0) scale3d(var(--tw-enter-scale, 1), var(--tw-enter-scale, 1), var(--tw-enter-scale, 1)) rotate(var(--tw-enter-rotate, 0));
  }
}
@keyframes exit {

  to {
    opacity: var(--tw-exit-opacity, 1);
    transform: translate3d(var(--tw-exit-translate-x, 0), var(--tw-exit-translate-y, 0), 0) scale3d(var(--tw-exit-scale, 1), var(--tw-exit-scale, 1), var(--tw-exit-scale, 1)) rotate(var(--tw-exit-rotate, 0));
  }
}
.duration-150 {
  animation-duration: 150ms;
}
.duration-200 {
  animation-duration: 200ms;
}
.duration-300 {
  animation-duration: 300ms;
}
.ease-in-out {
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.ease-out {
  animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.running {
  animation-play-state: running;
}
.paused {
  animation-play-state: paused;
}

/* Canonical lexi stylesheet (path-rewritten assets → /custom/...) */

/* Leaflet (locations map). Served via CSS import so CSP style-src 'self' is satisfied
   (unpkg is blocked by middleware Content-Security-Policy). */

html {
  opacity: 0;
}

html[data-theme="dark"],
html[data-theme="light"] {
  opacity: initial;
}

/* Reinforce tokens if theme provider mutates :root */
:root {
  --bg: #f7f3ed;
  --bg-soft: #ede9e0;
  --butter: #f5ecd8;
  --ink: #1a1a1a;
  --ink-soft: #55504a;
  --ink-2: #7a746c;
  --teal: #4ba8b3;
  --teal-deep: #2d7f87;
  --berry: #ac5ba0;
  --berry-deep: #7e3d77;
  --mustard: #e6c86e;
  --mustard-deep: #c4a040;
  --wrap: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius: 22px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --display: "Bricolage Grotesque", Georgia, serif;
  --body: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
}

/* Scope marketing surface so Mustard theme type rules lose */
.lexi-site {
  font-family: var(--body) !important;
  color: var(--ink);
  background-color: var(--bg) !important;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Defeat CashoutFonts h2 { font-size:2rem; font-weight:400 } without
   forcing a single size — lexi utility classes own sizes */
.lexi-site h1,
.lexi-site h2,
.lexi-site h3,
.lexi-site h4 {
  font-family: var(--display) !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.lexi-site .display {
  font-size: clamp(48px, 9vw, 120px) !important;
  line-height: 0.95 !important;
  letter-spacing: -0.035em !important;
  font-weight: 700 !important;
}

.lexi-site .display-2 {
  font-size: clamp(34px, 5.5vw, 72px) !important;
  line-height: 1 !important;
  letter-spacing: -0.03em !important;
  font-weight: 700 !important;
}

.lexi-site .display em,
.lexi-site .display-2 em {
  font-style: italic;
  font-weight: 600;
}

.lexi-site .display em {
  color: var(--berry);
}

.lexi-site .display-2.light em,
.lexi-site .display.light em {
  color: var(--mustard);
}

/* Full-bleed sections inside CMS shells that use CSS grid */
.lexi-site main > section,
.lexi-site main > .marquee,
.lexi-site main > .announce,
.lexi-site .site-footer {
  grid-column: 1 / -1;
  width: 100%;
}

::-moz-selection {
  background: var(--mustard);
  color: var(--ink);
}

::selection {
  background: var(--mustard);
  color: var(--ink);
}

/* lexi-source.css hides .timeline-item / .scroll-reveal until scroll JS adds
   .reveal-active. We don't run that script on the CMS frontend — force visible. */
.timeline-item,
.scroll-reveal {
  opacity: 1 !important;
  transform: none !important;
}
@media (min-width: 768px) {

  .md\:prose-md :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-size: 3.5rem;
  }

  .md\:prose-md :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-size: 1.5rem;
  }
}
@media (min-width: 1024px) {

  .lg\:container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  @media (min-width: 40rem) {

    .lg\:container {
      max-width: 40rem;
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  @media (min-width: 48rem) {

    .lg\:container {
      max-width: 48rem;
      padding-right: 2rem;
      padding-left: 2rem;
    }
  }

  @media (min-width: 64rem) {

    .lg\:container {
      max-width: 64rem;
      padding-right: 2rem;
      padding-left: 2rem;
    }
  }

  @media (min-width: 80rem) {

    .lg\:container {
      max-width: 80rem;
      padding-right: 2rem;
      padding-left: 2rem;
    }
  }

  @media (min-width: 86rem) {

    .lg\:container {
      max-width: 86rem;
      padding-right: 2rem;
      padding-left: 2rem;
    }
  }
}
.dark\:prose-invert:where([data-theme="dark"], [data-theme="dark"] *) {
  --tw-prose-body: var(--tw-prose-invert-body);
  --tw-prose-headings: var(--tw-prose-invert-headings);
  --tw-prose-lead: var(--tw-prose-invert-lead);
  --tw-prose-links: var(--tw-prose-invert-links);
  --tw-prose-bold: var(--tw-prose-invert-bold);
  --tw-prose-counters: var(--tw-prose-invert-counters);
  --tw-prose-bullets: var(--tw-prose-invert-bullets);
  --tw-prose-hr: var(--tw-prose-invert-hr);
  --tw-prose-quotes: var(--tw-prose-invert-quotes);
  --tw-prose-quote-borders: var(--tw-prose-invert-quote-borders);
  --tw-prose-captions: var(--tw-prose-invert-captions);
  --tw-prose-kbd: var(--tw-prose-invert-kbd);
  --tw-prose-kbd-shadows: var(--tw-prose-invert-kbd-shadows);
  --tw-prose-code: var(--tw-prose-invert-code);
  --tw-prose-pre-code: var(--tw-prose-invert-pre-code);
  --tw-prose-pre-bg: var(--tw-prose-invert-pre-bg);
  --tw-prose-th-borders: var(--tw-prose-invert-th-borders);
  --tw-prose-td-borders: var(--tw-prose-invert-td-borders);
}
.\*\:table > * {
  display: table;
}
.file\:border-0::file-selector-button {
  border-width: 0px;
}
.file\:bg-transparent::file-selector-button {
  background-color: transparent;
}
.file\:text-sm::file-selector-button {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.file\:font-medium::file-selector-button {
  font-weight: 500;
}
.hover\:-translate-y-1:hover {
  --tw-translate-y: -0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.hover\:translate-y-1:hover {
  --tw-translate-y: 0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.hover\:scale-\[0\.98\]:hover {
  --tw-scale-x: 0.98;
  --tw-scale-y: 0.98;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.hover\:scale-\[1\.02\]:hover {
  --tw-scale-x: 1.02;
  --tw-scale-y: 1.02;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.hover\:cursor-pointer:hover {
  cursor: pointer;
}
.hover\:border-neutral-800:hover {
  --tw-border-opacity: 1;
  border-color: rgb(38 38 38 / var(--tw-border-opacity, 1));
}
.hover\:text-blue-300:hover {
  --tw-text-opacity: 1;
  color: rgb(147 197 253 / var(--tw-text-opacity, 1));
}
.hover\:underline:hover {
  text-decoration-line: underline;
}
.hover\:opacity-100:hover {
  opacity: 1;
}
.hover\:opacity-80:hover {
  opacity: 0.8;
}
.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.focus\:ring-2:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus\:ring-\[\#39B9B9\]:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(57 185 185 / var(--tw-ring-opacity, 1));
}
.focus\:ring-offset-2:focus {
  --tw-ring-offset-width: 2px;
}
.focus-visible\:outline-none:focus-visible {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.focus-visible\:ring-2:focus-visible {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus-visible\:ring-\[3px\]:focus-visible {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus-visible\:ring-offset-2:focus-visible {
  --tw-ring-offset-width: 2px;
}
.disabled\:pointer-events-none:disabled {
  pointer-events: none;
}
.disabled\:cursor-not-allowed:disabled {
  cursor: not-allowed;
}
.disabled\:opacity-30:disabled {
  opacity: 0.3;
}
.disabled\:opacity-40:disabled {
  opacity: 0.4;
}
.disabled\:opacity-50:disabled {
  opacity: 0.5;
}
.group:hover .group-hover\:visible {
  visibility: visible;
}
.group:hover .group-hover\:scale-105 {
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.group:hover .group-hover\:opacity-100 {
  opacity: 1;
}
.peer:disabled ~ .peer-disabled\:cursor-not-allowed {
  cursor: not-allowed;
}
.peer:disabled ~ .peer-disabled\:opacity-70 {
  opacity: 0.7;
}
.has-\[\>svg\]\:px-2\.5:has(>svg) {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
.has-\[\>svg\]\:px-3:has(>svg) {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.has-\[\>svg\]\:px-4:has(>svg) {
  padding-left: 1rem;
  padding-right: 1rem;
}
.data-\[disabled\]\:pointer-events-none[data-disabled] {
  pointer-events: none;
}
.data-\[side\=bottom\]\:translate-y-1[data-side="bottom"] {
  --tw-translate-y: 0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.data-\[side\=left\]\:-translate-x-1[data-side="left"] {
  --tw-translate-x: -0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.data-\[side\=right\]\:translate-x-1[data-side="right"] {
  --tw-translate-x: 0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.data-\[side\=top\]\:-translate-y-1[data-side="top"] {
  --tw-translate-y: -0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.data-\[disabled\]\:opacity-50[data-disabled] {
  opacity: 0.5;
}
.data-\[state\=closed\]\:duration-300[data-state="closed"] {
  transition-duration: 300ms;
}
.data-\[state\=open\]\:duration-500[data-state="open"] {
  transition-duration: 500ms;
}
.data-\[state\=open\]\:animate-in[data-state="open"] {
  animation-name: enter;
  animation-duration: 150ms;
  --tw-enter-opacity: initial;
  --tw-enter-scale: initial;
  --tw-enter-rotate: initial;
  --tw-enter-translate-x: initial;
  --tw-enter-translate-y: initial;
}
.data-\[state\=closed\]\:animate-out[data-state="closed"] {
  animation-name: exit;
  animation-duration: 150ms;
  --tw-exit-opacity: initial;
  --tw-exit-scale: initial;
  --tw-exit-rotate: initial;
  --tw-exit-translate-x: initial;
  --tw-exit-translate-y: initial;
}
.data-\[state\=closed\]\:fade-out-0[data-state="closed"] {
  --tw-exit-opacity: 0;
}
.data-\[state\=open\]\:fade-in-0[data-state="open"] {
  --tw-enter-opacity: 0;
}
.data-\[state\=closed\]\:zoom-out-95[data-state="closed"] {
  --tw-exit-scale: .95;
}
.data-\[state\=open\]\:zoom-in-95[data-state="open"] {
  --tw-enter-scale: .95;
}
.data-\[side\=bottom\]\:slide-in-from-top-2[data-side="bottom"] {
  --tw-enter-translate-y: -0.5rem;
}
.data-\[side\=left\]\:slide-in-from-right-2[data-side="left"] {
  --tw-enter-translate-x: 0.5rem;
}
.data-\[side\=right\]\:slide-in-from-left-2[data-side="right"] {
  --tw-enter-translate-x: -0.5rem;
}
.data-\[side\=top\]\:slide-in-from-bottom-2[data-side="top"] {
  --tw-enter-translate-y: 0.5rem;
}
.data-\[state\=closed\]\:slide-out-to-bottom[data-state="closed"] {
  --tw-exit-translate-y: 100%;
}
.data-\[state\=closed\]\:slide-out-to-left[data-state="closed"] {
  --tw-exit-translate-x: -100%;
}
.data-\[state\=closed\]\:slide-out-to-right[data-state="closed"] {
  --tw-exit-translate-x: 100%;
}
.data-\[state\=closed\]\:slide-out-to-top[data-state="closed"] {
  --tw-exit-translate-y: -100%;
}
.data-\[state\=open\]\:slide-in-from-bottom[data-state="open"] {
  --tw-enter-translate-y: 100%;
}
.data-\[state\=open\]\:slide-in-from-left[data-state="open"] {
  --tw-enter-translate-x: -100%;
}
.data-\[state\=open\]\:slide-in-from-right[data-state="open"] {
  --tw-enter-translate-x: 100%;
}
.data-\[state\=open\]\:slide-in-from-top[data-state="open"] {
  --tw-enter-translate-y: -100%;
}
.data-\[state\=closed\]\:duration-300[data-state="closed"] {
  animation-duration: 300ms;
}
.data-\[state\=open\]\:duration-500[data-state="open"] {
  animation-duration: 500ms;
}
@media (prefers-reduced-motion: reduce) {

  .motion-reduce\:transform-none {
    transform: none;
  }

  .motion-reduce\:transition-none {
    transition-property: none;
  }
}
@media (min-width: 640px) {

  .sm\:max-w-sm {
    max-width: 24rem;
  }

  .sm\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
}
@media (min-width: 768px) {

  .md\:col-span-2 {
    grid-column: span 2 / span 2;
  }

  .md\:col-start-2 {
    grid-column-start: 2;
  }

  .md\:block {
    display: block;
  }

  .md\:inline {
    display: inline;
  }

  .md\:flex {
    display: flex;
  }

  .md\:hidden {
    display: none;
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:items-center {
    align-items: center;
  }

  .md\:justify-between {
    justify-content: space-between;
  }

  .md\:gap-16 {
    gap: 4rem;
  }

  .md\:gap-8 {
    gap: 2rem;
  }

  .md\:pl-3 {
    padding-left: 0.75rem;
  }

  .md\:pt-12 {
    padding-top: 3rem;
  }

  .md\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .md\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
}
@media (min-width: 1024px) {

  .lg\:mb-16 {
    margin-bottom: 4rem;
  }

  .lg\:grid {
    display: grid;
  }

  .lg\:h-20 {
    height: 5rem;
  }

  .lg\:w-1\/2 {
    width: 50%;
  }

  .lg\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lg\:grid-cols-\[1fr_48rem_1fr\] {
    grid-template-columns: 1fr 48rem 1fr;
  }

  .lg\:grid-cols-subgrid {
    grid-template-columns: subgrid;
  }

  .lg\:flex-row {
    flex-direction: row;
  }

  .lg\:gap-16 {
    gap: 4rem;
  }

  .lg\:gap-x-8 {
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }

  .lg\:gap-y-8 {
    row-gap: 2rem;
  }

  .lg\:p-6 {
    padding: 1.5rem;
  }

  .lg\:pt-4 {
    padding-top: 1rem;
  }

  .lg\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }
}
@media (min-width: 1280px) {

  .xl\:gap-x-8 {
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
}
.dark\:border-neutral-700:where([data-theme="dark"], [data-theme="dark"] *) {
  --tw-border-opacity: 1;
  border-color: rgb(64 64 64 / var(--tw-border-opacity, 1));
}
.dark\:border-neutral-800:where([data-theme="dark"], [data-theme="dark"] *) {
  --tw-border-opacity: 1;
  border-color: rgb(38 38 38 / var(--tw-border-opacity, 1));
}
.dark\:bg-black\/70:where([data-theme="dark"], [data-theme="dark"] *) {
  background-color: rgb(0 0 0 / 0.7);
}
.dark\:bg-neutral-900:where([data-theme="dark"], [data-theme="dark"] *) {
  --tw-bg-opacity: 1;
  background-color: rgb(23 23 23 / var(--tw-bg-opacity, 1));
}
.dark\:text-black:where([data-theme="dark"], [data-theme="dark"] *) {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}
.dark\:text-neutral-400:where([data-theme="dark"], [data-theme="dark"] *) {
  --tw-text-opacity: 1;
  color: rgb(163 163 163 / var(--tw-text-opacity, 1));
}
.dark\:text-neutral-500:where([data-theme="dark"], [data-theme="dark"] *) {
  --tw-text-opacity: 1;
  color: rgb(115 115 115 / var(--tw-text-opacity, 1));
}
.dark\:text-white:where([data-theme="dark"], [data-theme="dark"] *) {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.dark\:hover\:bg-neutral-800:hover:where([data-theme="dark"], [data-theme="dark"] *) {
  --tw-bg-opacity: 1;
  background-color: rgb(38 38 38 / var(--tw-bg-opacity, 1));
}
.\[\&\>span\]\:line-clamp-1>span {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.\[\&_svg\:not\(\[class\*\=\'size-\'\]\)\]\:size-4 svg:not([class*='size-']) {
  width: 1rem;
  height: 1rem;
}
.\[\&_svg\]\:pointer-events-none svg {
  pointer-events: none;
}
.\[\&_svg\]\:shrink-0 svg {
  flex-shrink: 0;
}

