/* Chill House — base styles. */

@font-face {
  font-family: 'Recoleta';
  src: url('/wp-content/themes/chill-house/dist/assets/recoleta-thin-Ce1Eki3F.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Recoleta';
  src: url('/wp-content/themes/chill-house/dist/assets/recoleta-light-C4Z5CUna.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Recoleta';
  src: url('/wp-content/themes/chill-house/dist/assets/recoleta-regular-D7x1i3pT.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Recoleta';
  src: url('/wp-content/themes/chill-house/dist/assets/recoleta-medium-DnDzY7S5.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Recoleta';
  src: url('/wp-content/themes/chill-house/dist/assets/recoleta-semibold-CjvMc7I_.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Recoleta';
  src: url('/wp-content/themes/chill-house/dist/assets/recoleta-bold-DL2YUH5F.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Recoleta';
  src: url('/wp-content/themes/chill-house/dist/assets/recoleta-black-CbCYtyya.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ch-blush-pink: #F5A4BE;
  --ch-lavender-mist: #B8A3CE;
  --ch-sky-breeze-blue: #ADD9F2;
  --ch-soft-sand-beige: #E7D9C9;
  --ch-golden-peach: #F9C680;
  --ch-rosy-bloom: #F49DC2;
  --ch-earthy-mocha: #8A7664;
  --ch-coral-blush: #EFC4B7;
  --ch-logo-accent: #E8265E;
  --ch-text-on-pastel: #4A3B33;
}

* {
  box-sizing: border-box;
}

/* Safety net: a stray overflowing element anywhere on the page (a flex/
   grid item that won't shrink below its content's intrinsic width, a
   mistimed doodle, a carousel track, etc.) would otherwise widen the whole
   page and cause horizontal scroll on mobile. Both html AND body need this
   — some mobile browsers (iOS Safari in particular) govern the root
   viewport's horizontal scroll/bounce from the html element specifically,
   and don't fully honor overflow-x set only on body. */
html {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: 'Recoleta', serif;
  font-weight: 400;
  color: var(--ch-earthy-mocha);
  max-width: 100%;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* ---------- Buttons ---------- */

.ch-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85em 1.8em;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.ch-btn:hover {
  transform: translateY(-3px);
}

.ch-btn:active {
  transform: translateY(-1px);
}

.ch-btn--primary {
  background: var(--ch-logo-accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(232, 38, 94, 0.0);
}

.ch-btn--primary:hover {
  box-shadow: 0 10px 20px rgba(232, 38, 94, 0.3);
}

.ch-btn--secondary {
  background: transparent;
  border-color: var(--ch-logo-accent);
  color: var(--ch-logo-accent);
}

.ch-btn--secondary:hover {
  background: var(--ch-logo-accent);
  color: #fff;
}

.ch-link {
  color: var(--ch-logo-accent);
  font-weight: 600;
  text-decoration: none;
  background-image: linear-gradient(var(--ch-logo-accent), var(--ch-logo-accent));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 2px;
  transition: background-size 0.25s ease;
  padding-bottom: 2px;
}

.ch-link:hover {
  background-size: 100% 2px;
}

/* ---------- Announcement bar ---------- */

.ch-announcement {
  background: var(--ch-earthy-mocha);
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 51;
}

.ch-announcement__track {
  display: flex;
  width: max-content;
  animation: ch-marquee 40s linear infinite;
}

.ch-announcement:hover .ch-announcement__track {
  animation-play-state: paused;
}

.ch-announcement__set {
  display: flex;
  flex-shrink: 0;
}

.ch-announcement__item {
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
}

.ch-announcement__item::after {
  content: '•';
  margin-left: 20px;
  opacity: 0.5;
}

@keyframes ch-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ch-announcement__track {
    animation: none;
  }
}

/* ---------- Header ---------- */

.ch-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--ch-soft-sand-beige);
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* On the front page the header starts blended into the hero (same tone,
   no border/shadow) and becomes distinct chrome once scrolled — .is-scrolled
   is toggled by header-scroll.js via ScrollTrigger. */
.home .ch-site-header {
  background: #ffffff;
  border-bottom-color: transparent;
}

.home .ch-site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--ch-soft-sand-beige);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.ch-site-header.is-scrolled .ch-site-header__inner {
  padding-top: 10px;
  padding-bottom: 10px;
}

.ch-site-header__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 22px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: padding 0.3s ease;
}

.ch-site-header__logo {
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
  color: var(--ch-logo-accent);
  display: flex;
  align-items: center;
}

.ch-site-header__logo img {
  width: 200px;
  height: auto;
}

.ch-site-header__toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.ch-site-header__toggle span {
  width: 22px;
  height: 2px;
  background: var(--ch-earthy-mocha);
}

/* Mobile: full-height slide-in drawer from the right. */
.ch-site-header__nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 28px;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  box-shadow: -12px 0 32px rgba(0, 0, 0, 0.12);
  z-index: 60;
}

.ch-site-header__nav.is-open {
  transform: translateX(0);
}

.ch-nav-scrim {
  position: fixed;
  inset: 0;
  background: rgba(74, 59, 51, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 59;
}

.ch-nav-scrim.is-visible {
  opacity: 1;
  pointer-events: auto;
}

body.ch-nav-open {
  overflow: hidden;
}

.ch-site-header__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ch-site-header__menu a {
  position: relative;
  display: inline-block;
  padding: 10px 0;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
}

.ch-site-header__menu a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.ch-site-header__menu a:hover::after,
.ch-site-header__menu .current-menu-item a::after {
  transform: scaleX(1);
}

.ch-site-header__menu .current-menu-item a {
  color: var(--ch-logo-accent);
}

@media (min-width: 900px) {
  .ch-site-header__toggle {
    display: none;
  }

  .ch-nav-scrim {
    display: none;
  }

  .ch-site-header__nav {
    position: static;
    width: auto;
    transform: none;
    box-shadow: none;
    background: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 32px;
  }

  .ch-site-header__menu {
    flex-direction: row;
    gap: 28px;
  }

  .ch-site-header__menu a {
    padding: 0;
    font-size: inherit;
  }
}

.ch-site-header__cta {
  padding: 0.55em 1.4em;
  margin: 16px 20px;
}

@media (min-width: 900px) {
  .ch-site-header__cta {
    margin: 0;
  }
}

/* ---------- Layout helpers ---------- */

.ch-page {
  max-width: 1440px;
  margin: 0 auto;
  padding: 48px 20px;
}

.ch-page__intro {
  max-width: 65ch;
  font-size: 17px;
  margin-bottom: 8px;
}

.ch-page__title,
.ch-section-title {
  font-size: clamp(28px, 4vw, 40px);
  margin: 0 0 24px;
}

/* ---------- About page ---------- */

.ch-about__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 24px;
}

@media (min-width: 900px) {
  .ch-about__layout {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
  }
}

.ch-about__collage {
  position: relative;
  height: clamp(280px, 32vw, 420px);
}

.ch-about__photo {
  position: absolute;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(43, 31, 38, 0.18);
}

.ch-about__photo--primary {
  top: 0;
  left: 0;
  width: 72%;
  height: 82%;
}

.ch-about__photo--secondary {
  bottom: 0;
  right: 0;
  width: 55%;
  height: 55%;
  border: 6px solid #fff;
}

.ch-about__content {
  font-size: 17px;
  line-height: 1.7;
}

.ch-about__content p {
  margin: 0 0 18px;
}

.ch-about-story__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  font-weight: 700;
  color: var(--ch-logo-accent);
  margin: 0 0 16px;
}

.ch-about-story__eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--ch-logo-accent);
}

/* A magazine-style left-border pull-quote (not the founder section's giant
   centered background numeral) — a "thought" that breaks up the plain
   paragraph text before it, with its own small decorative mark. */
.ch-about-story__quote {
  position: relative;
  margin: 0 0 28px;
  padding: 6px 0 6px 26px;
  border-left: 3px solid var(--ch-blush-pink);
}

.ch-about-story__quote-mark {
  position: absolute;
  top: -22px;
  left: 16px;
  font-size: 56px;
  font-family: Georgia, serif;
  color: var(--ch-blush-pink);
  line-height: 1;
  opacity: 0.7;
  pointer-events: none;
}

.ch-about-story__quote p {
  position: relative;
  font-size: clamp(19px, 2.4vw, 24px);
  font-style: italic;
  line-height: 1.5;
  margin: 0 0 8px;
  color: var(--ch-logo-accent);
}

.ch-about-story__quote-author {
  display: block;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  opacity: 0.7;
}

.ch-about__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}

/* Groups the number+suffix so they sit on one line — .ch-about__stat's own
   flex-direction:column would otherwise stack every direct child (number,
   suffix, label) onto its own row, wrapping the ★/+ below the number
   instead of right beside it. Same fix already used for the hero stats. */
.ch-about__stat-value {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.ch-about__stat-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--ch-logo-accent);
}

.ch-about__stat-suffix {
  font-size: 22px;
  font-weight: 700;
  color: var(--ch-logo-accent);
}

.ch-about__stat-label {
  font-size: 13px;
  opacity: 0.75;
}

/* ---------- About page: narrative sections ---------- */
/* Each section below has its own composition — none reuse a homepage
   section's card/layout design, even where the same interaction hooks
   ([data-count-to], .ch-testimonial-card, .ch-doodle, etc.) are reused. */

.ch-about-hero {
  background-color: #ffffff;
  background-image: radial-gradient(ellipse 55% 55% at 8% 15%, rgba(249, 198, 128, 0.35), transparent 60%),
    radial-gradient(ellipse 60% 60% at 92% 85%, rgba(184, 163, 206, 0.35), transparent 60%);
  background-repeat: no-repeat;
  padding: 88px 0 72px;
  text-align: center;
}

.ch-about-hero__inner {
  max-width: 780px;
  position: relative;
  z-index: 1;
}

.ch-about-hero__stamp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  border: 2px dashed var(--ch-logo-accent);
  color: var(--ch-logo-accent);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  padding: 8px;
  text-align: center;
  animation: ch-stamp-spin 18s linear infinite;
}

@keyframes ch-stamp-spin {
  to {
    transform: rotate(360deg);
  }
}

.ch-about-hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  font-weight: 700;
  color: var(--ch-logo-accent);
  margin: 0 0 10px;
}

.ch-about-hero__headline {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.15;
  margin: 0 0 16px;
}

.ch-about-hero__subtext {
  font-size: 17px;
  line-height: 1.6;
  opacity: 0.85;
  max-width: 56ch;
  margin: 0 auto;
}

.ch-about-hero__photo-frame {
  margin: 32px auto 0;
  max-width: 640px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(43, 31, 38, 0.18);
}

.ch-about-hero__photo-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.ch-about-story {
  background-color: #ffffff;
  background-image: radial-gradient(ellipse 45% 55% at 18% 45%, rgba(244, 157, 194, 0.22), transparent 65%);
  background-repeat: no-repeat;
}

.ch-about-journey {
  background: var(--ch-sky-breeze-blue);
}

.ch-about-journey .ch-section-title {
  text-align: center;
}

.ch-about-journey__chapters {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 88px;
  margin-top: 16px;
}

.ch-about-journey__rail {
  display: none;
}

/* A flex column (not CSS Grid) guarantees every chapter stays in strict
   top-to-bottom single-file order, one per row, no matter its width — grid
   auto-placement was instead packing two narrower chapters side-by-side
   into the same row whenever both fit, which paired 2018+2020 together and
   broke the one-chapter-per-row alternation this section depends on. Each
   chapter is simply width-constrained and pushed left/right with margin
   auto instead, so the rail (which spans the container's full real height)
   lines up with each chapter's true vertical position. */
@media (min-width: 900px) {
  .ch-about-journey__rail {
    display: block;
    position: absolute;
    left: 50%;
    top: 8px;
    bottom: 8px;
    width: 4px;
    transform: translateX(-50%);
    z-index: 2;
  }

  .ch-about-journey__chapter {
    width: calc(50% - 48px);
  }

  .ch-about-journey__chapter:nth-child(odd) {
    margin-right: auto;
  }

  .ch-about-journey__chapter:nth-child(even) {
    margin-left: auto;
  }
}

.ch-about-journey__rail-track,
.ch-about-journey__rail-fill {
  position: absolute;
  inset: 0;
  border-radius: 4px;
}

.ch-about-journey__rail-track {
  background: rgba(255, 255, 255, 0.5);
}

.ch-about-journey__rail-fill {
  background: var(--ch-logo-accent);
  transform: scaleY(0);
  transform-origin: top;
}

.ch-about-journey__rail-point {
  position: absolute;
  left: 50%;
  display: flex;
  align-items: center;
  transform: translate(-50%, -50%);
}

.ch-about-journey__rail-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--ch-sky-breeze-blue);
  flex-shrink: 0;
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  z-index: 1;
}

.ch-about-journey__rail-year {
  position: absolute;
  left: 26px;
  font-weight: 800;
  font-size: 13px;
  color: var(--ch-text-on-pastel);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-6px) scale(0.85);
  transition: opacity 0.3s ease, transform 0.3s ease, font-size 0.3s ease;
  pointer-events: none;
}

.ch-about-journey__rail-point.is-active .ch-about-journey__rail-dot {
  background: var(--ch-logo-accent);
  border-color: #fff;
  transform: scale(1.35);
}

.ch-about-journey__rail-point.is-active .ch-about-journey__rail-year {
  opacity: 1;
  transform: translateX(0) scale(1);
  font-size: 20px;
  font-weight: 800;
  color: var(--ch-logo-accent);
}

.ch-about-journey__chapter {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  padding-top: 8px;
}

@media (min-width: 900px) {
  .ch-about-journey__chapter:nth-child(even) .ch-about-journey__chapter-number {
    left: auto;
    right: 4px;
    text-align: right;
  }
}

/* Each chapter only fills ~50% width (alternating left/right), which left
   the other half of that row looking flat and empty. This decorative art —
   either the automatic outline doodle, or a real uploaded photo — sits in
   its own full-height layer (a sibling of the rail and the chapters, not
   nested inside one) so each item can be centered on the true geometric
   midpoint of ITS half (25%/75% of the whole row) rather than an offset
   guessed from a chapter's own variable box width. */
.ch-about-journey__side-art {
  display: none;
}

@media (min-width: 900px) {
  .ch-about-journey__side-art {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 0;
  }
}

.ch-about-journey__side-item {
  /* Centered via fixed negative margins (not a translate(-50%,-50%)
     transform) so the `transform` property is left entirely free for the
     scroll-linked wiggle (GSAP owns x/y/rotation there) with nothing to
     conflict or get overwritten. */
  position: absolute;
  width: 280px;
  height: 280px;
  margin-left: -140px;
  margin-top: -140px;
}

.ch-about-journey__side-item--right {
  left: 75%;
}

.ch-about-journey__side-item--left {
  left: 25%;
}

.ch-about-journey__chapter-doodle {
  width: 100%;
  height: 100%;
  opacity: 0.4;
}

/* If an admin uploads a real image, it replaces the automatic outline
   doodle — this field is a decorative illustration slot (transparent PNGs
   expected), not a framed photo, so no card background, border-radius or
   shadow here — object-fit:contain shows the whole uploaded graphic
   (including its own transparency) instead of cropping it to fill a box. */
.ch-about-journey__side-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: none;
}

.ch-about-journey__side-item--right .ch-about-journey__side-image {
  transform: rotate(4deg);
}

.ch-about-journey__side-item--left .ch-about-journey__side-image {
  transform: rotate(-4deg);
}

.ch-about-journey__chapter-number {
  position: absolute;
  top: -30px;
  left: 4px;
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.ch-about-journey__chapter-media {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 20px 40px rgba(43, 31, 38, 0.18);
  background: #fff;
}

.ch-about-journey__chapter-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ch-about-journey__chapter-icon {
  position: absolute;
  bottom: 14px;
  left: 14px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 8px 16px rgba(43, 31, 38, 0.2);
}

.ch-about-journey__chapter-body {
  position: relative;
  z-index: 1;
}

.ch-about-journey__chapter-year {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ch-logo-accent);
  background: #fff;
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.ch-about-journey__chapter-title {
  font-size: clamp(22px, 3vw, 30px);
  margin: 0 0 12px;
}

.ch-about-journey__chapter-text {
  font-size: 16px;
  line-height: 1.75;
  opacity: 0.85;
  margin: 0;
  max-width: 48ch;
}

.ch-about-founder {
  background: #ffffff;
}

.ch-about-founder__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 900px) {
  .ch-about-founder__inner {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 72px;
  }
}

.ch-about-founder__photo-wrap {
  position: relative;
  width: min(300px, 72%);
  margin: 0 auto;
}

.ch-about-founder__halo {
  position: absolute;
  inset: -14%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 157, 194, 0.45), transparent 70%);
  z-index: 0;
}

.ch-about-founder__photo {
  /* No forced aspect-ratio/object-fit here on purpose — those force-crop
     whatever gets uploaded to a fixed shape, which is exactly what cut off
     the actual uploaded photo. height:auto lets it render at its own real
     proportions inside the polaroid frame instead. */
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
  background: #fff;
  padding: 10px 10px 28px;
  box-shadow: 0 20px 40px rgba(43, 31, 38, 0.2);
  box-sizing: border-box;
}

.ch-about-founder__photo--front {
  z-index: 2;
  transform: rotate(6deg);
}

.ch-about-founder__photo--back {
  position: absolute;
  z-index: 1;
  top: 6%;
  left: -12%;
  width: 78%;
  transform: rotate(-13deg);
  opacity: 0.92;
}

.ch-about-founder__tape {
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 22px;
  background: rgba(249, 198, 128, 0.75);
  box-shadow: 0 2px 4px rgba(43, 31, 38, 0.15);
}

.ch-about-founder__tape--a {
  top: -8px;
  left: 10%;
  transform: rotate(-8deg);
}

.ch-about-founder__tape--b {
  bottom: 6%;
  right: -6px;
  transform: rotate(80deg);
}

.ch-about-founder__chip {
  position: absolute;
  z-index: 4;
  bottom: -18px;
  right: -12%;
  background: #fff;
  border-radius: 14px;
  padding: 10px 16px;
  box-shadow: 0 14px 28px rgba(43, 31, 38, 0.2);
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 140px;
}

.ch-about-founder__chip-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
  opacity: 0.6;
}

.ch-about-founder__chip-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--ch-logo-accent);
}

.ch-about-founder__content {
  position: relative;
}

.ch-about-founder__mark {
  position: absolute;
  top: -50px;
  left: -10px;
  font-size: 160px;
  line-height: 1;
  font-family: Georgia, serif;
  color: var(--ch-blush-pink);
  opacity: 0.35;
  z-index: -1;
  pointer-events: none;
}

.ch-about-founder__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  font-weight: 700;
  color: var(--ch-logo-accent);
  margin: 0 0 12px;
}

.ch-about-founder__quote {
  font-size: clamp(20px, 2.6vw, 26px);
  line-height: 1.5;
  margin: 0 0 20px;
}

.ch-about-founder__signoff {
  margin-bottom: 14px;
}

.ch-about-founder__name {
  font-weight: 700;
  font-size: 17px;
  margin: 0;
}

.ch-about-founder__role {
  font-size: 14px;
  opacity: 0.75;
  margin: 4px 0 0;
}

.ch-about-founder__social {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ch-logo-accent);
  text-decoration: none;
  border: 2px solid var(--ch-logo-accent);
  border-radius: 999px;
  padding: 8px 18px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.ch-about-founder__social:hover {
  background: var(--ch-logo-accent);
  color: #fff;
}

.ch-about-founder__doodle {
  z-index: 0;
}

.ch-about-values {
  /* White base with a soft two-tone glow, same technique as Story/Brand
     Intro/Bestsellers, instead of a solid color block. */
  background-color: #ffffff;
  background-image: radial-gradient(ellipse 55% 60% at 12% 30%, rgba(249, 198, 128, 0.3), transparent 65%),
    radial-gradient(ellipse 55% 60% at 88% 70%, rgba(184, 163, 206, 0.3), transparent 65%);
  background-repeat: no-repeat;
}

/* A flowing "belief strip" instead of a grid of boxed cards — circular
   icon badges sitting directly on the section's own background, items
   separated by a thin dashed rule (vertical side-by-side on desktop,
   horizontal when stacked on mobile) rather than individual card
   backgrounds/shadows/borders. */
.ch-about-beliefs {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 12px;
}

@media (min-width: 900px) {
  .ch-about-beliefs {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
  }
}

.ch-about-beliefs__item {
  width: 100%;
  max-width: 320px;
  text-align: center;
  padding: 22px 0;
}

.ch-about-beliefs__item + .ch-about-beliefs__item {
  border-top: 1px dashed rgba(74, 59, 51, 0.25);
}

@media (min-width: 900px) {
  .ch-about-beliefs__item {
    flex: 1 1 0;
    padding: 0 32px;
  }

  .ch-about-beliefs__item + .ch-about-beliefs__item {
    border-top: none;
    border-left: 1px dashed rgba(74, 59, 51, 0.25);
  }
}

.ch-about-beliefs__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  font-size: 28px;
  margin-bottom: 16px;
  background: rgba(249, 198, 128, 0.35);
}

.ch-about-beliefs__item:nth-child(4n+2) .ch-about-beliefs__icon {
  background: rgba(244, 157, 194, 0.45);
}

.ch-about-beliefs__item:nth-child(4n+3) .ch-about-beliefs__icon {
  background: rgba(173, 217, 242, 0.55);
}

.ch-about-beliefs__item:nth-child(4n+4) .ch-about-beliefs__icon {
  background: rgba(249, 198, 128, 0.5);
}

.ch-about-beliefs__title {
  font-size: 17px;
  margin: 0 0 8px;
}

.ch-about-beliefs__text {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.8;
  margin: 0;
}

.ch-about-stats {
  background: var(--ch-earthy-mocha);
  color: #fff;
}

.ch-about-stats__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.ch-about-stats .ch-about__stat {
  padding: 0 36px;
  position: relative;
}

.ch-about-stats .ch-about__stat:not(:first-child)::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: rgba(255, 255, 255, 0.25);
}

.ch-about-stats .ch-about__stat-number,
.ch-about-stats .ch-about__stat-suffix {
  color: var(--ch-golden-peach);
  font-size: 36px;
}

.ch-about-stats .ch-about__stat-label {
  color: #fff;
  opacity: 0.85;
}

.ch-about-testimonials {
  background: var(--ch-blush-pink);
}

/* "Wall of Love" — a pure-CSS infinite marquee, discarded in favor of the
   old Swiper carousel entirely (no carousel library, no scroll-triggered
   reveal). Each row's track is the review list duplicated exactly once and
   scrolled by exactly -50%, so it loops seamlessly forever with nothing to
   get out of sync — there's no dynamic DOM cloning/reordering for a GSAP
   ScrollTrigger reveal to lose track of, which is what kept breaking the
   old approach. */
.ch-about-wall {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 8px 0 32px;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.ch-about-wall__row {
  overflow: hidden;
}

.ch-about-wall__track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: ch-wall-scroll-left 34s linear infinite;
}

.ch-about-wall__row--right .ch-about-wall__track {
  animation-name: ch-wall-scroll-right;
  animation-duration: 40s;
}

.ch-about-wall__row:hover .ch-about-wall__track {
  animation-play-state: paused;
}

@keyframes ch-wall-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes ch-wall-scroll-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ch-about-wall__track {
    animation: none;
  }
}

.ch-about-wall__card {
  flex: 0 0 auto;
  width: 300px;
  background: #fff;
  border-left: 3px dashed var(--ch-logo-accent);
  border-radius: 4px 16px 16px 4px;
  padding: 20px 22px;
  box-shadow: 0 10px 24px rgba(43, 31, 38, 0.14);
  box-sizing: border-box;
}

.ch-about-wall__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 10px;
}

.ch-about-wall__quote {
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ch-about-wall__name {
  margin: 0;
  font-weight: 700;
  font-size: 13px;
  color: var(--ch-logo-accent);
}

.ch-about-cta {
  text-align: center;
  max-width: 560px;
  margin: 64px auto 0;
  padding-top: 48px;
  border-top: 1px dashed rgba(74, 59, 51, 0.3);
}

.ch-about-cta__title {
  font-size: clamp(24px, 3.4vw, 32px);
  margin: 0 0 12px;
}

.ch-about-cta__text {
  font-size: 16px;
  opacity: 0.85;
  margin: 0 0 24px;
}

.ch-about-cta__btn {
  border-style: dashed;
  border-color: #fff;
  border-radius: 14px;
}

@media (prefers-reduced-motion: reduce) {
  .ch-about-hero__stamp {
    animation: none;
  }
}

/* Home sections are full-bleed (for background color/wave dividers to reach
   the edge); .ch-section-inner holds the actual centered/padded content. */

.ch-section {
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}

/* ---------- Decorative doodles ---------- */

.ch-doodle {
  position: absolute;
  width: 88px;
  height: 106px;
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}

@media (min-width: 900px) {
  .ch-doodle {
    width: 140px;
    height: 168px;
  }
}

.ch-doodle--top-left {
  top: 20px;
  left: 20px;
  transform: rotate(-8deg);
}

.ch-doodle--top-right {
  top: 20px;
  right: 20px;
  transform: rotate(10deg);
}

.ch-doodle--bottom-right {
  bottom: 20px;
  right: 24px;
  transform: rotate(8deg) scaleX(-1);
}

.ch-section-inner {
  position: relative;
  z-index: 1;
}

/* The default body text color (earthy-mocha) has weak contrast against the
   more saturated pastel section backgrounds (lavender-mist especially) —
   these sections need a properly dark, high-contrast color instead. */
.ch-why,
.ch-offer,
.ch-visit-block,
.ch-menu-explorer,
.ch-order-online {
  color: var(--ch-text-on-pastel);
}

.ch-section-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ---------- Wave section dividers ---------- */

.ch-wave-divider {
  line-height: 0;
  margin-top: -1px;
}

.ch-wave-divider__svg {
  width: 100%;
  height: 70px;
  display: block;
}

.ch-wave-divider.is-flipped .ch-wave-divider__svg {
  transform: scaleX(-1);
}

@media (min-width: 700px) {
  .ch-wave-divider__svg {
    height: 110px;
  }
}

/* ---------- Hero ---------- */

.ch-hero {
  /* Soft two-tone wash on a white base — pink glow one side, blue glow the
     other — kept near the top corners so flat white still shows at the
     very bottom edge, where the wave divider's color has to match. */
  background-color: #ffffff;
  background-image: radial-gradient(ellipse 60% 50% at 12% 20%, rgba(245, 164, 190, 0.4), transparent 60%),
    radial-gradient(ellipse 60% 50% at 88% 15%, rgba(173, 217, 242, 0.4), transparent 60%);
  background-repeat: no-repeat;
  padding: 48px 20px 64px;
  position: relative;
  overflow: hidden;
}

.ch-hero__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 900px) {
  .ch-hero {
    padding: 64px 20px 96px;
  }

  .ch-hero__inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 32px;
  }
}

.ch-hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  text-align: left;
  position: relative;
  z-index: 2;
}

.ch-hero__tagline {
  margin: 0;
  font-weight: 500;
  font-size: 17px;
  color: var(--ch-logo-accent);
}

.ch-hero__headline {
  margin: 0;
  font-size: clamp(32px, 6vw, 56px);
  line-height: 1.12;
  color: var(--ch-earthy-mocha);
}

.ch-hero__headline-line {
  display: block;
}

.ch-hero__headline-accent {
  color: var(--ch-logo-accent);
}

.ch-hero__paragraph {
  margin: 0;
  max-width: 46ch;
  font-size: 17px;
  line-height: 1.5;
  color: var(--ch-earthy-mocha);
  opacity: 0.85;
}

.ch-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 4px;
}

.ch-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(74, 59, 51, 0.15);
  width: 100%;
}

.ch-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ch-hero__stat-value {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.ch-hero__stat-number {
  font-size: 26px;
  font-weight: 700;
  color: var(--ch-logo-accent);
}

.ch-hero__stat-suffix {
  font-size: 18px;
  font-weight: 700;
  color: var(--ch-logo-accent);
}

.ch-hero__stat-label {
  font-size: 13px;
  opacity: 0.75;
}

/* ---------- Hero art zone: blob + floating cards ---------- */

.ch-hero__art {
  position: relative;
  height: clamp(320px, 42vw, 460px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ch-hero__blob {
  position: absolute;
  inset: 6% 8%;
  overflow: hidden;
  background: linear-gradient(155deg, var(--ch-blush-pink), var(--ch-rosy-bloom));
  animation: ch-blob-morph 12s ease-in-out infinite;
}

/* overflow:hidden clips this to whatever border-radius the morph keyframes
   currently hold, so an optional photo morphs in the same organic shape. */
.ch-hero__blob img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes ch-blob-morph {
  0%,
  100% {
    border-radius: 62% 38% 55% 45% / 45% 55% 45% 55%;
  }
  33% {
    border-radius: 45% 55% 40% 60% / 60% 40% 60% 40%;
  }
  66% {
    border-radius: 55% 45% 62% 38% / 40% 60% 40% 60%;
  }
}

.ch-hero__floater {
  position: absolute;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(74, 59, 51, 0.16);
  padding: 14px 16px;
}

.ch-hero__badge {
  top: 6%;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  animation: ch-float-a 4.5s ease-in-out infinite;
}

.ch-hero__badge-stars {
  color: var(--ch-golden-peach);
  font-size: 13px;
  letter-spacing: 1px;
}

.ch-hero__badge-rating {
  font-weight: 700;
  font-size: 15px;
}

.ch-hero__badge-count {
  font-size: 12px;
  opacity: 0.7;
}

.ch-hero__product-card {
  bottom: 4%;
  right: 2%;
  width: clamp(160px, 20vw, 200px);
  padding: 10px;
  animation: ch-float-b 5.5s ease-in-out infinite;
}

.ch-hero__product-card img {
  border-radius: 12px;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.ch-hero__product-card-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 4px 2px;
}

.ch-hero__product-card-name {
  font-weight: 700;
  font-size: 13px;
}

.ch-hero__product-card-price {
  font-size: 12px;
  color: var(--ch-logo-accent);
  font-weight: 600;
}

@keyframes ch-float-a {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes ch-float-b {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(12px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ch-hero__blob,
  .ch-hero__badge,
  .ch-hero__product-card {
    animation: none;
  }
}

.ch-hero__scroll-cue {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.6;
  transition: opacity 0.4s ease;
}

.ch-hero__scroll-cue.is-hidden {
  opacity: 0;
}

.ch-hero__scroll-cue span {
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--ch-earthy-mocha);
  border-bottom: 2px solid var(--ch-earthy-mocha);
  transform: rotate(45deg);
  animation: ch-scroll-cue-bounce 1.6s ease-in-out infinite;
}

@keyframes ch-scroll-cue-bounce {
  0%,
  100% {
    transform: rotate(45deg) translate(0, 0);
  }
  50% {
    transform: rotate(45deg) translate(4px, 4px);
  }
}

/* ---------- Brand intro ---------- */

.ch-brand-intro {
  background-color: #ffffff;
  background-image: radial-gradient(ellipse 55% 60% at 10% 50%, rgba(245, 164, 190, 0.3), transparent 65%),
    radial-gradient(ellipse 55% 60% at 90% 50%, rgba(173, 217, 242, 0.3), transparent 65%);
  background-repeat: no-repeat;
}

.ch-brand-intro .ch-section-inner {
  align-items: center;
  text-align: center;
  gap: 6px;
}

.ch-brand-intro__heading {
  margin: 0;
}

.ch-brand-intro__mark {
  font-size: 72px;
  line-height: 1;
  color: var(--ch-blush-pink);
  font-weight: 700;
  /* Pulls the mark tight to the paragraph right below it, which is what it
     actually decorates — without this the flex gap gave it equal spacing
     on both sides, same as everything else. */
  margin-bottom: -10px;
}

/* When the (optional) heading is present, the mark needs extra room above
   it too, so it reads as "heading, then quote+paragraph" instead of
   looking wedged evenly between the two. */
.ch-brand-intro__heading + .ch-brand-intro__mark {
  margin-top: 28px;
}

.ch-brand-intro p {
  font-size: clamp(20px, 3vw, 26px);
  max-width: 52ch;
  margin: 0 auto;
  line-height: 1.5;
}

.ch-word {
  display: inline-block;
}

/* ---------- Why Chill House ---------- */

.ch-why {
  background: var(--ch-lavender-mist);
}

.ch-why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 700px) {
  .ch-why__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.ch-why__card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px 26px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(43, 31, 38, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ch-why__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ch-blush-pink), var(--ch-golden-peach));
}

.ch-why__card:nth-child(4n + 2)::before {
  background: linear-gradient(90deg, var(--ch-sky-breeze-blue), var(--ch-lavender-mist));
}

.ch-why__card:nth-child(4n + 3)::before {
  background: linear-gradient(90deg, var(--ch-golden-peach), var(--ch-coral-blush));
}

.ch-why__card:nth-child(4n + 4)::before {
  background: linear-gradient(90deg, var(--ch-rosy-bloom), var(--ch-blush-pink));
}

.ch-why__card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 34px rgba(43, 31, 38, 0.18);
}

.ch-why__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin: 0 auto 14px;
  border-radius: 50%;
  font-size: 28px;
  background: linear-gradient(155deg, var(--ch-blush-pink), var(--ch-golden-peach));
}

.ch-why__card:nth-child(4n + 2) .ch-why__icon {
  background: linear-gradient(155deg, var(--ch-sky-breeze-blue), var(--ch-lavender-mist));
}

.ch-why__card:nth-child(4n + 3) .ch-why__icon {
  background: linear-gradient(155deg, var(--ch-golden-peach), var(--ch-coral-blush));
}

.ch-why__card:nth-child(4n + 4) .ch-why__icon {
  background: linear-gradient(155deg, var(--ch-rosy-bloom), var(--ch-blush-pink));
}

.ch-why__card:hover .ch-why__icon {
  animation: ch-wiggle 0.4s ease;
}

@keyframes ch-wiggle {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(8deg);
  }
  75% {
    transform: rotate(-8deg);
  }
}

.ch-why__title {
  margin: 0 0 8px;
  font-size: 18px;
}

.ch-why__text {
  margin: 0;
  font-size: 14px;
  color: var(--ch-earthy-mocha);
}

/* ---------- Menu Explorer (bento grid) ---------- */

.ch-menu-explorer {
  background: var(--ch-sky-breeze-blue);
}

/* This section's carousel is full-bleed (no .ch-section-inner wrapper —
   see .ch-showcase-explore-final__row/__swiper in the Design Preview
   block above), so the title needs its own matching gutter instead of
   inheriting one from a centered container. */
.ch-menu-explorer__title {
  margin-left: 20px;
  margin-right: 20px;
}

@media (min-width: 900px) {
  .ch-menu-explorer__title {
    margin-left: 48px;
    margin-right: 48px;
  }
}

/* Filter pills — clicking one routes to /menu/?cat=... rather than
   filtering in place (the Menu page already has its own filter system),
   so there's no persistent "active" pill state. The sliding indicator
   instead follows whichever pill is hovered — same signature interaction,
   adapted to a nav-away pill bar instead of an in-place filter. */
.ch-menu-explorer__pills {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ch-menu-explorer__pill {
  position: relative;
  z-index: 1;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  color: inherit;
  transition: color 0.2s ease;
}

.ch-menu-explorer__pill-indicator {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 999px;
  background: var(--ch-logo-accent);
  opacity: 0;
  transition: transform 0.3s ease, width 0.3s ease, opacity 0.2s ease;
  pointer-events: none;
}

.ch-menu-explorer__pills:hover .ch-menu-explorer__pill-indicator {
  opacity: 1;
}

.ch-menu-explorer__pill:hover {
  color: #fff;
}

/* Bento grid — hero categories (Ice Cream, Falooda) span 2 columns and
   stand taller; everything else varies mainly by min-height so the grid
   auto-flows without fragile multi-row spans. */
.ch-bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  grid-auto-flow: dense;
}

@media (min-width: 700px) {
  .ch-bento {
    grid-template-columns: repeat(4, 1fr);
  }
}

.ch-bento__tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  padding: 16px;
  min-height: 140px;
}

.ch-bento__tile--medium {
  min-height: 170px;
}

.ch-bento__tile--large {
  grid-column: span 2;
  min-height: 220px;
}

.ch-bento__wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, var(--ch-rosy-bloom), var(--ch-lavender-mist));
  z-index: 0;
}

.ch-bento__tile:nth-child(3n + 2) .ch-bento__wash {
  background: linear-gradient(155deg, var(--ch-golden-peach), var(--ch-coral-blush));
}

.ch-bento__tile:nth-child(3n + 3) .ch-bento__wash {
  background: linear-gradient(155deg, var(--ch-sky-breeze-blue), var(--ch-blush-pink));
}

.ch-bento__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.ch-bento__tile:hover .ch-bento__photo {
  opacity: 0.55;
}

.ch-bento__tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(43, 31, 38, 0.55), transparent 65%);
  z-index: 0;
}

.ch-bento__icon,
.ch-bento__body,
.ch-bento__arrow {
  position: relative;
  z-index: 1;
}

.ch-bento__icon {
  font-size: 26px;
  margin-bottom: 8px;
  display: inline-block;
  width: fit-content;
}

.ch-bento__tile:hover .ch-bento__icon {
  animation: ch-wiggle 0.4s ease;
}

.ch-bento__tile--large .ch-bento__icon {
  font-size: 34px;
}

.ch-bento__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ch-bento__name {
  font-weight: 700;
  font-size: 16px;
}

.ch-bento__tile--large .ch-bento__name {
  font-size: 20px;
}

.ch-bento__meta {
  font-size: 12px;
  opacity: 0.85;
}

.ch-bento__arrow {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 16px;
  transition: transform 0.25s ease;
}

.ch-bento__tile:hover .ch-bento__arrow {
  transform: translateX(4px);
}

.ch-menu-explorer .ch-btn {
  align-self: center;
  margin-top: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .ch-bento__tile:hover .ch-bento__icon {
    animation: none;
  }
}

/* ---------- Offer callout ---------- */

.ch-offer {
  background: var(--ch-golden-peach);
}

.ch-offer__inner {
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.ch-offer__texture {
  position: absolute;
  inset: -20%;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.35) 0,
    rgba(255, 255, 255, 0.35) 2px,
    transparent 2px,
    transparent 22px
  );
  opacity: 0.5;
  animation: ch-offer-texture-drift 26s linear infinite;
  z-index: 0;
}

@keyframes ch-offer-texture-drift {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(22px, 22px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ch-offer__texture {
    animation: none;
  }
}

.ch-offer__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 4px 0;
}

.ch-offer__chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  padding: 10px 20px;
}

.ch-offer__chip-label {
  font-size: 12px;
  opacity: 0.75;
}

.ch-offer__chip-price {
  font-size: 22px;
  font-weight: 700;
  color: var(--ch-logo-accent);
}

/* ---------- Gallery strip (home) / Gallery page ---------- */

.ch-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Collage/masonry via CSS grid — varied cell spans instead of a uniform
   grid, so it reads as a curated collage rather than a photo dump. */

.ch-gallery-strip {
  background: var(--ch-coral-blush);
}

.ch-gallery-strip__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.ch-gallery-strip__grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 170px;
  gap: 10px;
}

.ch-gallery__grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 100px;
  gap: 10px;
}

@media (min-width: 700px) {
  .ch-gallery-strip__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
  }

  .ch-gallery__grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 130px;
  }
}

.ch-gallery-strip__item:nth-child(6n+1),
.ch-gallery__item:nth-child(7n+1) {
  grid-column: span 2;
  grid-row: span 2;
}

.ch-gallery__item:nth-child(7n+4) {
  grid-row: span 2;
}

.ch-gallery-strip__item:nth-child(6n+4) {
  grid-column: span 2;
}

.ch-gallery-strip__item,
.ch-gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border: 0;
  padding: 0;
  background: none;
  cursor: pointer;
  display: block;
  width: 100%;
  height: 100%;
}

.ch-gallery-strip__item img,
.ch-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.ch-gallery-strip__item:hover img,
.ch-gallery__item:hover img {
  transform: scale(1.08);
}

.ch-gallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(43, 31, 38, 0.35);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ch-gallery-strip__item:hover .ch-gallery__overlay,
.ch-gallery__item:hover .ch-gallery__overlay {
  opacity: 1;
}

.ch-gallery__heart {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  color: #fff;
  font-size: 28px;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.ch-gallery-strip__item:hover .ch-gallery__heart,
.ch-gallery__item:hover .ch-gallery__heart {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* ---------- Gallery page: narrative sections ---------- */

.ch-gallery-hero {
  background-color: #ffffff;
  background-image: radial-gradient(ellipse 55% 55% at 8% 8%, rgba(173, 217, 242, 0.35), transparent 60%),
    radial-gradient(ellipse 60% 60% at 92% 6%, rgba(244, 157, 194, 0.3), transparent 60%);
  background-repeat: no-repeat;
  padding: 72px 0;
}

.ch-gallery-hero__text {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.ch-gallery-hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  font-weight: 700;
  color: var(--ch-logo-accent);
  margin: 0 0 10px;
}

.ch-gallery-hero__headline {
  font-size: clamp(30px, 4.5vw, 46px);
  line-height: 1.15;
  margin: 0 0 16px;
}

.ch-gallery-hero__subtext {
  font-size: 17px;
  line-height: 1.6;
  opacity: 0.85;
  max-width: 48ch;
  margin: 0 auto;
}

/* The collage IS the gallery wall now (up to 15 tiles, reusing the same
   masonry + lightbox pattern the old separate grid section used) — bigger
   tiles than the homepage preview strip since this is the main event here,
   not a teaser. */
.ch-gallery-hero__collage {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 160px;
}

@media (min-width: 700px) {
  .ch-gallery-hero__collage {
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: 240px;
  }
}

@media (min-width: 1100px) {
  .ch-gallery-hero__collage {
    grid-auto-rows: 300px;
  }
}

.ch-gallery-ugc {
  background: var(--ch-lavender-mist);
  text-align: center;
}

.ch-gallery-ugc__inner {
  max-width: 640px;
}

.ch-gallery-ugc__title {
  font-size: clamp(24px, 3.4vw, 32px);
  margin: 0 0 12px;
}

.ch-gallery-ugc__text {
  font-size: 16px;
  opacity: 0.85;
  margin: 0 0 20px;
}

.ch-gallery-ugc__hashtag {
  display: inline-block;
  background: #fff;
  color: var(--ch-logo-accent);
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(43, 31, 38, 0.12);
}


/* ---------- Lightbox ---------- */

.ch-lightbox__panel {
  position: relative;
  max-width: min(90vw, 900px);
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ch-lightbox__image {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 12px;
  object-fit: contain;
}

.ch-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.ch-lightbox__nav--prev {
  left: -8px;
}

.ch-lightbox__nav--next {
  right: -8px;
}

@media (min-width: 900px) {
  .ch-lightbox__nav--prev {
    left: -56px;
  }

  .ch-lightbox__nav--next {
    right: -56px;
  }
}

/* ---------- Testimonials ---------- */

/* "Spotlight" testimonials — one review at a time in a fade-through
   carousel, with a giant background quote mark and an initials avatar per
   reviewer. Deliberately different from the About page's always-scrolling
   "Wall of Love" marquee (which shows many cards at once): here the focus
   stays on a single review, changed via arrows/dots/autoplay. */
.ch-testimonials {
  background: var(--ch-soft-sand-beige);
}

.ch-testimonials__head {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin-bottom: 8px;
}

.ch-testimonials__head .ch-section-title {
  margin: 0;
}

.ch-testimonials__nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ch-testimonials__arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(74, 59, 51, 0.2);
  background: #fff;
  color: var(--ch-logo-accent);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.ch-testimonials__arrow:hover {
  background: var(--ch-logo-accent);
  color: #fff;
  transform: scale(1.06);
}

.ch-testimonials__counter {
  font-size: 14px;
  font-weight: 600;
  color: var(--ch-text-on-pastel);
  opacity: 0.75;
  min-width: 44px;
  text-align: center;
}

.ch-testimonials__stage {
  position: relative;
  max-width: 640px;
  margin: 32px auto 0;
}

.ch-testimonials__mark {
  position: absolute;
  top: -36px;
  left: -6px;
  font-size: 90px;
  line-height: 1;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--ch-golden-peach);
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
}

@media (min-width: 700px) {
  .ch-testimonials__mark {
    top: -54px;
    left: -12px;
    font-size: 160px;
  }
}

.ch-testimonials__swiper {
  position: relative;
  z-index: 1;
  /* overflow:hidden clips anything a slide's content pokes outside its own
     box; extra bottom padding keeps the card's shadow from being chopped.
     Height itself is set inline by testimonials.js (syncHeight), matched
     to whichever review is currently active. width/max-width are pinned
     hard here (not left to Swiper's own JS-computed inline width) so a
     stale first-load measurement on mobile can never render the card
     wider than the viewport. */
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding-bottom: 20px;
  transition: height 0.3s ease;
}

.ch-testimonials__swiper .swiper-wrapper,
.ch-testimonials__swiper .swiper-slide {
  width: 100%;
  max-width: 100%;
}

.ch-spotlight-card {
  background: #fff;
  border-radius: 22px;
  padding: 40px 36px;
  box-shadow: 0 16px 36px rgba(43, 31, 38, 0.12);
  box-sizing: border-box;
  max-width: 100%;
  text-align: center;
}

.ch-spotlight-card__stars {
  display: flex;
  justify-content: center;
  gap: 3px;
  margin-bottom: 16px;
}

.ch-star {
  color: var(--ch-soft-sand-beige);
  font-size: 18px;
}

.ch-star.is-filled {
  color: var(--ch-golden-peach);
}

.ch-spotlight-card__quote {
  margin: 0 0 22px;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.65;
  color: var(--ch-text-on-pastel);
  overflow-wrap: break-word;
}

.ch-spotlight-card__person {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.ch-spotlight-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  flex-shrink: 0;
}

.ch-spotlight-card__name {
  font-weight: 700;
  font-size: 14px;
  color: var(--ch-logo-accent);
}

.ch-testimonials__pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.ch-testimonials__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(74, 59, 51, 0.25);
  opacity: 1;
  cursor: pointer;
}

.ch-testimonials__pagination .swiper-pagination-bullet-active {
  background: var(--ch-logo-accent);
}

/* ---------- Social proof ---------- */

.ch-social-proof__rating {
  font-size: 22px;
  font-weight: 700;
}

.ch-social-proof__rating span {
  font-size: 14px;
  font-weight: 400;
  opacity: 0.75;
}

/* ---------- Visit Us (home block) ---------- */

.ch-visit-block {
  background: var(--ch-blush-pink);
}

.ch-visit-block__inner {
  align-items: center;
  text-align: center;
}

/* ---------- Newsletter ---------- */

.ch-newsletter {
  background: var(--ch-soft-sand-beige);
}

.ch-newsletter__inner {
  align-items: center;
  text-align: center;
}

.ch-newsletter__card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 32px;
  max-width: 560px;
  margin: 0 auto;
  box-shadow: 0 20px 40px rgba(43, 31, 38, 0.12);
}

.ch-newsletter__text {
  margin: 8px 0 20px;
  opacity: 0.8;
}

.ch-newsletter__form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.ch-newsletter__input {
  flex: 1 1 240px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--ch-soft-sand-beige);
  font-size: 15px;
  font-family: inherit;
  color: inherit;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.ch-newsletter__input:focus {
  outline: none;
  border-color: var(--ch-logo-accent);
  box-shadow: 0 0 0 4px rgba(232, 38, 94, 0.15);
}

.ch-newsletter__submit {
  flex: 0 0 auto;
}

.ch-newsletter__message {
  margin: 14px 0 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--ch-logo-accent);
}

.ch-newsletter__message.is-error {
  color: #c0392b;
}

/* ---------- Visit Us: hero ---------- */

.ch-visit-hero {
  position: relative;
  background-color: #ffffff;
  background-image: radial-gradient(ellipse 55% 55% at 8% 10%, rgba(173, 217, 242, 0.35), transparent 60%),
    radial-gradient(ellipse 60% 60% at 92% 8%, rgba(244, 157, 194, 0.3), transparent 60%);
  background-repeat: no-repeat;
  padding: 64px 0 24px;
  overflow: hidden;
}

.ch-visit-hero__inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.ch-visit-hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  font-weight: 700;
  color: var(--ch-logo-accent);
  margin: 0 0 10px;
}

.ch-visit-hero__headline {
  font-size: clamp(30px, 4.5vw, 46px);
  line-height: 1.15;
  margin: 0 0 16px;
}

.ch-visit-hero__subtext {
  font-size: 17px;
  line-height: 1.6;
  opacity: 0.85;
  max-width: 48ch;
  margin: 0 auto;
}

.ch-visit-hero__intro {
  margin-top: 12px;
}

.ch-visit__quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 4px 0 32px;
  justify-content: center;
}

.ch-visit-social {
  background: var(--ch-sky-breeze-blue);
  color: var(--ch-text-on-pastel);
}

.ch-visit-social__inner {
  align-items: center;
  text-align: center;
}

.ch-visit-social__follow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

/* ---------- Visit Us: collabs & influencers ---------- */

.ch-visit-collab {
  background: var(--ch-lavender-mist);
  color: var(--ch-text-on-pastel);
  text-align: center;
}

.ch-visit-collab__inner {
  max-width: 640px;
}

.ch-visit-collab__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  font-weight: 700;
  opacity: 0.75;
  margin: 0 0 10px;
}

.ch-visit-collab__title {
  margin: 0 0 12px;
}

.ch-visit-collab__text {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
  margin: 0 0 20px;
}

.ch-visit-collab__perks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}

.ch-visit-collab__perk {
  display: inline-block;
  background: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 999px;
}

.ch-visit-collab__cta {
  display: inline-block;
}

.ch-visit__layout {
  display: grid;
  gap: 32px;
}

@media (min-width: 900px) {
  .ch-visit__layout {
    grid-template-columns: 1.2fr 1fr;
  }
}

.ch-visit__map iframe {
  width: 100%;
  aspect-ratio: 8 / 3;
  border: none;
  border-radius: 16px;
  object-fit: cover;
}

.ch-visit__map-placeholder {
  width: 100%;
  aspect-ratio: 8 / 3;
  border-radius: 16px;
  background-color: var(--ch-soft-sand-beige);
  background-image: radial-gradient(rgba(74, 59, 51, 0.18) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.ch-visit__map-pin-wrap {
  position: relative;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ch-visit__map-pin {
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
  border-radius: 50% 50% 50% 0;
  background: var(--ch-logo-accent);
  transform: rotate(-45deg);
  box-shadow: 0 4px 10px rgba(43, 31, 38, 0.3);
}

.ch-visit__map-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--ch-logo-accent);
  opacity: 0.5;
  animation: ch-map-pulse 2.4s ease-out infinite;
}

.ch-visit__map-pulse--delay {
  animation-delay: 1.2s;
}

@keyframes ch-map-pulse {
  from {
    transform: scale(0.6);
    opacity: 0.55;
  }
  to {
    transform: scale(2.6);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ch-visit__map-pulse {
    animation: none;
    opacity: 0;
  }
}

.ch-visit__map-caption {
  font-size: 13px;
  font-weight: 600;
  color: var(--ch-earthy-mocha);
  opacity: 0.8;
}

.ch-visit__details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ch-visit__hours {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ch-visit__hours li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed var(--ch-soft-sand-beige);
  padding-bottom: 6px;
}

/* ---------- Menu Explorer ---------- */

.ch-menu__tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-bottom: 8px;
}

.ch-menu__tab {
  flex: 0 0 auto;
  padding: 10px 18px;
  border-radius: 999px;
  border: 2px solid var(--ch-soft-sand-beige);
  background: #fff;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.ch-menu__tab:hover {
  border-color: var(--ch-logo-accent);
  transform: translateY(-2px);
}

.ch-menu__tab.is-active {
  background: var(--ch-logo-accent);
  border-color: var(--ch-logo-accent);
  color: #fff;
}

.ch-menu__subtabs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  margin-bottom: 24px;
}

/* Same [hidden]-vs-author-display conflict as the product cards and the
   View All button — without this, the ice-cream sub-tabs stayed visible
   under every category, not just "Ice Cream". */
.ch-menu__subtabs[hidden] {
  display: none;
}

.ch-menu__subtab {
  flex: 0 0 auto;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--ch-lavender-mist);
  background: #fff;
  font-family: inherit;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.ch-menu__subtab:hover {
  transform: translateY(-2px);
}

.ch-menu__subtab.is-active {
  background: var(--ch-lavender-mist);
  color: #fff;
}

.ch-menu__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}

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

@media (min-width: 1100px) {
  .ch-menu__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.ch-product-card {
  /* Structurally rebuilt to match .ch-bestseller-card (the homepage card
     that never had this problem) property-for-property: a plain
     display:block box — no button-like intrinsic sizing to fight — with
     the 4:5 shape owned by the media container (below), not the <img>. It
     used to be a <button>, where grid's default min-width:auto took the
     size of the intrinsic 1000x1250 image as a floor and stopped the card
     shrinking to its real 1fr grid track; the markup is now a
     div[role="button"] so nothing about the element itself works
     differently from the div the homepage uses. */
  display: block;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  text-align: left;
  background: #fff;
  border: 1px solid var(--ch-soft-sand-beige);
  border-radius: 18px;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
  box-shadow: 0 4px 12px rgba(43, 31, 38, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ch-product-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 18px 30px rgba(43, 31, 38, 0.18);
  border-color: transparent;
}

/* Same cascade conflict as .ch-menu__view-all: an author `display` on a
   class always outranks the browser's own [hidden]{display:none} default,
   so the display:block above was silently keeping every card visible no
   matter what menu-filter.js set card.hidden to — breaking both the
   category filter and the 8-per-page cap at once. */
.ch-product-card[hidden] {
  display: none;
}

.ch-product-card__image {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.ch-product-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.ch-product-card:hover .ch-product-card__image img {
  transform: scale(1.06);
}

.ch-product-card__gloss {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 40%, rgba(255, 255, 255, 0.55) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
  pointer-events: none;
}

.ch-product-card:hover .ch-product-card__gloss {
  transform: translateX(120%);
}

.ch-product-card__category {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ch-earthy-mocha);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}

.ch-product-card__body {
  display: block;
  padding: 14px;
}

.ch-product-card__name {
  display: block;
  font-weight: 700;
  margin-bottom: 4px;
}

.ch-product-card__serving {
  display: block;
  font-size: 12px;
  color: var(--ch-earthy-mocha);
  margin-bottom: 8px;
}

.ch-product-card__pricing {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
}

.ch-product-card__price-pill {
  background: var(--ch-soft-sand-beige);
  border-radius: 999px;
  padding: 4px 12px;
  width: fit-content;
}

.ch-product-card__price-pill .ch-price {
  color: var(--ch-logo-accent);
}

/* Single column on mobile reads better as a horizontal "list" card (photo
   left, details right) than a full-width stacked card with a huge 4:5
   image — this is a mobile-only layout; 700px+ keeps the original stacked
   grid-tile design untouched. */
@media (max-width: 699px) {
  .ch-product-card {
    display: flex;
    align-items: stretch;
  }

  .ch-product-card__image {
    flex: 0 0 128px;
    align-self: flex-start;
  }

  .ch-product-card__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .ch-product-card__name {
    white-space: normal;
    overflow-wrap: break-word;
  }
}

.ch-price-row {
  display: flex;
  gap: 4px;
}

.ch-price-label {
  color: var(--ch-earthy-mocha);
}

.ch-price {
  font-weight: 700;
}

.ch-menu__empty {
  text-align: center;
  padding: 40px 0;
  color: var(--ch-earthy-mocha);
}

/* ---------- Menu page: narrative sections ---------- */
/* Same full-bleed section + wave-divider language as Home/About, but each
   section's own composition — none copy those pages' designs. */

.ch-menu-hero {
  background-color: #ffffff;
  background-image: radial-gradient(ellipse 55% 55% at 90% 12%, rgba(249, 198, 128, 0.35), transparent 60%),
    radial-gradient(ellipse 60% 60% at 8% 88%, rgba(173, 217, 242, 0.35), transparent 60%);
  background-repeat: no-repeat;
  padding: 88px 0 64px;
  text-align: center;
}

.ch-menu-hero__inner {
  max-width: 780px;
  position: relative;
  z-index: 1;
}

.ch-menu-hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  font-weight: 700;
  color: var(--ch-logo-accent);
  margin: 0 0 10px;
}

.ch-menu-hero__headline {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.15;
  margin: 0 0 16px;
}

.ch-menu-hero__subtext {
  font-size: 17px;
  line-height: 1.6;
  opacity: 0.85;
  max-width: 60ch;
  margin: 0 auto 24px;
}

.ch-menu-hero__highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.ch-menu-hero__highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 8px 20px rgba(43, 31, 38, 0.1);
}

.ch-menu-hero__highlight-icon {
  font-size: 18px;
}

.ch-menu-hero__photo-frame {
  margin: 32px auto 0;
  max-width: 640px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(43, 31, 38, 0.18);
}

.ch-menu-hero__photo-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.ch-menu-browse {
  background: #ffffff;
}

.ch-menu__spotlight {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-bottom: 28px;
  background: #fff;
  border: 1px solid var(--ch-soft-sand-beige);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(43, 31, 38, 0.08);
}

@media (min-width: 700px) {
  .ch-menu__spotlight {
    grid-template-columns: 280px 1fr;
    align-items: stretch;
  }
}

.ch-menu__spotlight-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.ch-menu__spotlight-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.25s ease;
}

.ch-menu__spotlight-media.is-fading img {
  opacity: 0;
}

.ch-menu__spotlight-body {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: opacity 0.25s ease;
}

.ch-menu__spotlight-body.is-fading {
  opacity: 0;
}

.ch-menu__spotlight-title {
  font-size: 22px;
  margin: 0 0 8px;
}

.ch-menu__spotlight-text {
  font-size: 14px;
  opacity: 0.8;
  margin: 0;
}

.ch-menu__view-all {
  display: flex;
  width: fit-content;
  margin: 28px auto 0;
}

/* An author-stylesheet `display` on a class always outranks the browser's
   own [hidden]{display:none} default (origin beats specificity in the
   cascade), so the rule above was silently overriding the JS-toggled
   `hidden` attribute and keeping this button visible no matter what.
   Re-asserting display:none specifically for the [hidden] state — one
   attribute-selector more specific than the plain class above — restores
   normal hidden/shown behavior. */
.ch-menu__view-all[hidden] {
  display: none;
}

.ch-menu-guide {
  background: var(--ch-lavender-mist);
}

.ch-menu-guide__steps {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 24px;
}

@media (min-width: 900px) {
  .ch-menu-guide__steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .ch-menu-guide__steps::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 14%;
    right: 14%;
    height: 2px;
    background-image: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.7) 0 10px, transparent 10px 20px);
  }
}

.ch-menu-guide__step {
  position: relative;
  text-align: center;
  background: #fff;
  border-radius: 18px;
  padding: 32px 20px 24px;
  box-shadow: 0 12px 26px rgba(43, 31, 38, 0.12);
}

.ch-menu-guide__step-number {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ch-logo-accent);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(43, 31, 38, 0.2);
}

.ch-menu-guide__step-icon {
  display: block;
  font-size: 34px;
  margin: 10px 0 12px;
}

.ch-menu-guide__step-title {
  font-size: 18px;
  margin: 0 0 8px;
}

.ch-menu-guide__step-text {
  font-size: 14px;
  opacity: 0.8;
  margin: 0;
}

.ch-menu-cta {
  position: relative;
  background: var(--ch-golden-peach);
  overflow: hidden;
}

.ch-menu-cta__texture {
  position: absolute;
  inset: -10%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.4) 2px, transparent 2px);
  background-size: 26px 26px;
  opacity: 0.6;
  animation: ch-menu-cta-drift 30s linear infinite;
  z-index: 0;
}

.ch-menu-cta__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.ch-menu-cta__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 14, 12, 0.55) 0%, rgba(20, 14, 12, 0.78) 100%);
  z-index: 0;
}

.ch-menu-cta.has-photo .ch-menu-cta__title,
.ch-menu-cta.has-photo .ch-menu-cta__text {
  color: #fff;
}

@keyframes ch-menu-cta-drift {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(26px, 26px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ch-menu-cta__texture {
    animation: none;
  }
}

.ch-menu-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  align-items: center;
}

.ch-menu-cta__title {
  font-size: clamp(26px, 3.6vw, 36px);
  margin: 0 0 12px;
}

.ch-menu-cta__text {
  font-size: 16px;
  opacity: 0.85;
  margin: 0 0 24px;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Order buttons (Zomato / Swiggy) ---------- */

.ch-order-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.ch-order-btn {
  flex: 1 1 140px;
  text-align: center;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ch-order-btn:hover {
  transform: translateY(-3px);
}

.ch-order-btn--zomato {
  background: #E23744;
  color: #fff;
}

.ch-order-btn--zomato:hover {
  box-shadow: 0 10px 18px rgba(226, 55, 68, 0.35);
}

.ch-order-btn--swiggy {
  background: #FC8019;
  color: #fff;
}

.ch-order-btn--swiggy:hover {
  box-shadow: 0 10px 18px rgba(252, 128, 25, 0.35);
}

/* ---------- Order Online (home section) ---------- */

.ch-order-online {
  background: var(--ch-rosy-bloom);
}

.ch-order-online .ch-section-inner {
  align-items: center;
  text-align: center;
}

.ch-order-online__text {
  max-width: 50ch;
}

.ch-order-buttons--large {
  justify-content: center;
  margin-top: 8px;
}

.ch-order-buttons--large .ch-order-btn {
  flex: 0 1 220px;
  padding: 16px 28px;
  font-size: 16px;
}

/* ---------- Product modal ---------- */

.ch-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* Author styles override the UA [hidden]{display:none} default at equal
   specificity, so the plain hidden attribute alone won't hide an element
   that also has display:flex from a class — this makes it win explicitly. */
.ch-modal[hidden] {
  display: none;
}

.ch-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(43, 31, 38, 0.55);
}

.ch-modal__panel {
  position: relative;
  background: #fff;
  border-radius: 20px;
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  gap: 0;
}

@media (min-width: 700px) {
  .ch-modal__panel {
    grid-template-columns: 1fr 1fr;
  }
}

.ch-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.ch-modal__gallery {
  position: relative;
  background: var(--ch-soft-sand-beige);
}

.ch-modal__gallery img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.ch-modal__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  cursor: pointer;
}

.ch-modal__nav--prev {
  left: 10px;
}

.ch-modal__nav--next {
  right: 10px;
}

.ch-modal__gallery-count {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 999px;
}

.ch-modal__details {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ch-modal__title {
  margin: 0;
  font-size: 24px;
}

.ch-modal__serving {
  margin: 0;
  font-size: 13px;
  color: var(--ch-earthy-mocha);
}

.ch-modal__pricing {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ch-modal__description {
  margin: 0;
  font-size: 14px;
}

.ch-modal__ingredients {
  margin: 0;
  padding-left: 18px;
  font-size: 13px;
}

body.ch-modal-open {
  overflow: hidden;
}

/* ---------- Footer ---------- */

.ch-site-footer {
  background: var(--ch-earthy-mocha);
  color: #fff;
  margin-top: -1px;
}

.ch-site-footer__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

@media (min-width: 700px) {
  .ch-site-footer__inner {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

.ch-site-footer a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  width: fit-content;
  transition: color 0.2s ease, transform 0.2s ease;
}

.ch-site-footer a:hover {
  color: #fff;
  transform: translateX(3px);
}

.ch-site-footer__heading {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ch-golden-peach);
  margin: 0 0 14px;
}

.ch-site-footer__name {
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 6px;
}

.ch-site-footer__tagline {
  margin: 0 0 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.ch-site-footer__address {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 32ch;
}

.ch-site-footer__menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ch-site-footer__whatsapp {
  color: var(--ch-golden-peach) !important;
  font-weight: 700;
}

.ch-site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 18px 20px;
  text-align: center;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.6);
}

.ch-site-footer__bottom p {
  margin: 0;
  max-width: 1440px;
  margin: 0 auto;
}

/* ---------- Home page Hero Banner (static overlay + background carousel) ----------
   See wp-content/themes/chill-house/template-parts/hero-banner.php and
   src/js/hero.js (initHeroBannerCarousel). Two independent layers:
   .hero-slide elements crossfade behind, a single static
   .ch-hero-banner__content overlay sits on top the whole time. */
.ch-hero-banner {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
  background-color: var(--ch-earthy-mocha);
}

@media (min-width: 700px) {
  .ch-hero-banner {
    height: 700px;
  }
}

.ch-hero-banner__slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* contain, not cover: at a short fixed height, cover would have to crop
     a 1920x1080 photo's top/bottom to fill the box. contain guarantees the
     whole photo always stays visible — if the box is wider than the photo's
     own ratio, it just letterboxes with the section's own background color
     on the sides instead of cutting anything. */
  background-image: var(--bg-desktop);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  /* All slides are stacked at the same position (absolute, inset) for the
     crossfade — without this, an invisible (opacity:0) slide still sits in
     the click/hover path and can silently swallow clicks meant for the one
     that's actually visible underneath/on top of it in paint order. Only
     the active slide should ever be clickable. */
  pointer-events: none;
  transition: opacity 1s ease-in-out;
}

/* Slides with a Slide Link render as <a> instead of <div> — this is the
   only thing that needs resetting for that (position/size above already
   applies to either tag). */
a.hero-slide {
  display: block;
  cursor: pointer;
}

/* Below 700px (same breakpoint the hero's own height switches at), use the
   admin's dedicated mobile photo instead of squeezing the wide desktop one
   into a narrow, tall viewport. --bg-mobile is always set (falls back to
   the desktop image itself in the template if no mobile photo was
   uploaded), so this is safe even before anyone fills in a mobile photo. */
@media (max-width: 699px) {
  .hero-slide {
    background-image: var(--bg-mobile);
  }
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: none;
  }
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: #000;
}

.ch-hero-banner__content {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 4px;
  max-width: 640px;
  padding: 24px 20px;
  color: #fff;
  /* This box spans the whole hero (inset:0) even though the text only
     fills part of it — without this, its own transparent area would sit on
     top of the slides and swallow clicks meant for a slide's own link. */
  pointer-events: none;
}

.ch-hero-banner__content > * {
  pointer-events: auto;
}

@media (min-width: 900px) {
  .ch-hero-banner__content {
    padding: 0 64px;
  }
}

.ch-hero-banner__subheading {
  margin: 0;
  font-weight: 600;
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--ch-golden-peach);
}

.ch-hero-banner__heading {
  margin: 6px 0 14px;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.15;
  color: #fff;
}

/* --ch-logo-accent is already #E8265E in this theme's palette (see the
   :root block near the top of this file) — reusing it instead of a fresh
   hardcoded value. */
.accent-word {
  color: var(--ch-logo-accent);
}

.ch-hero-banner__description {
  margin: 0 0 26px;
  max-width: 52ch;
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.6;
  color: #fff;
}

.ch-hero-banner__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Primary CTA reuses .ch-btn--primary as-is (site-wide) — its background
   is already var(--ch-logo-accent), which is #E8265E, the exact accent
   asked for here. Only the secondary/ghost button needs a hero-specific
   override: the site-wide .ch-btn--secondary is accent-colored text on
   transparent, meant for light backgrounds — against a dark photo it needs
   to be white instead. */
.ch-hero-banner__cta--secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

.ch-hero-banner__cta--secondary:hover {
  background: #fff;
  color: var(--ch-earthy-mocha);
}

/* ---------- Explore the Menu: big full-photo carousel cards ---------- */

/* Truly edge-to-edge: the row is just a positioning context now, not a
   flex layout that reserves dedicated space for the arrows — the swiper
   itself spans the row's full width (a small 20px/48px gutter is just
   inner padding on the swiper, not a flex sibling eating into it), and
   the prev/next buttons float on top of the carousel as absolutely
   positioned overlays instead. */
.ch-showcase-explore-final__row {
  position: relative;
  margin-top: 32px;
}

/* Centered on the photo shape itself, not the whole slide (which also
   includes the caption text below it). top/bottom + margin:auto centers
   the button within exactly that photo region regardless of card width —
   top:10px matches the swiper's own top padding, and bottom:84px clears
   the swiper's 28px bottom padding plus the ~56px caption block
   (16px margin-top + name/meta line heights) below the photo. A percentage
   guess here would drift off-center as the card's own width changes the
   photo:caption height ratio; pixel offsets don't. */
.ch-showcase-explore-final__prev,
.ch-showcase-explore-final__next {
  position: absolute;
  top: 10px;
  bottom: 84px;
  margin: auto 0;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(43, 31, 38, 0.18);
}

.ch-showcase-explore-final__prev {
  left: 8px;
}

.ch-showcase-explore-final__next {
  right: 8px;
}

@media (min-width: 900px) {
  .ch-showcase-explore-final__prev {
    left: 20px;
  }

  .ch-showcase-explore-final__next {
    right: 20px;
  }
}

.ch-showcase-explore-final__swiper {
  overflow: hidden;
  padding: 10px 20px 28px;
}

@media (min-width: 900px) {
  .ch-showcase-explore-final__swiper {
    padding: 10px 48px 28px;
  }
}

/* The photo lives inside an organic morphing blob (same shape/animation
   as the Home hero's blob) — the category name/count/price sit as plain
   text below the shape, not overlaid on the photo. */
.ch-showcase-explore-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: var(--ch-text-on-pastel);
}

.ch-showcase-explore-card__shape {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ch-soft-sand-beige);
  border-radius: 62% 38% 55% 45% / 45% 55% 45% 55%;
  box-shadow: 0 18px 36px rgba(43, 31, 38, 0.2);
  animation: ch-blob-morph 14s ease-in-out infinite;
}

.ch-showcase-explore-card__shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.ch-showcase-explore-card:hover .ch-showcase-explore-card__shape img {
  transform: scale(1.08);
}

.ch-showcase-explore-card__body {
  margin-top: 16px;
  padding: 0 8px;
}

.ch-showcase-explore-card__name {
  display: block;
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 700;
  margin-bottom: 2px;
}

.ch-showcase-explore-card--static {
  cursor: default;
}

.ch-showcase-explore-final__pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

.ch-showcase-explore-final__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(74, 59, 51, 0.25);
  opacity: 1;
  cursor: pointer;
}

.ch-showcase-explore-final__pagination .swiper-pagination-bullet-active {
  background: var(--ch-logo-accent);
}

/* ==========================================================================
   The Chill Club page
   ========================================================================== */

/* ---------- About ---------- */

.ch-club-about {
  color: var(--ch-text-on-pastel);
}

.ch-club-about__inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.ch-club-about__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  font-weight: 700;
  color: var(--ch-logo-accent);
  margin: 0 0 10px;
}

.ch-club-about__text {
  font-size: 17px;
  line-height: 1.7;
  opacity: 0.85;
}

/* ---------- What to Expect ---------- */

.ch-club-expect {
  color: var(--ch-text-on-pastel);
}

.ch-club-expect__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.ch-club-expect-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 22px;
  text-align: center;
  box-shadow: 0 10px 26px rgba(43, 31, 38, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ch-club-expect-card:hover {
  transform: translateY(-6px) rotate(-1deg);
  box-shadow: 0 16px 34px rgba(43, 31, 38, 0.16);
}

.ch-club-expect-card__emoji {
  display: block;
  font-size: 36px;
  line-height: 1;
  margin-bottom: 14px;
}

.ch-club-expect-card__title {
  font-size: 18px;
  margin: 0 0 6px;
}

.ch-club-expect-card__text {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.8;
  margin: 0;
}

/* ---------- Upcoming Events ---------- */

.ch-club-events__note {
  opacity: 0.7;
  font-size: 14px;
  margin-top: -12px;
}

.ch-club-events__row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ch-club-events__swiper {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.ch-club-event-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(43, 31, 38, 0.12);
  height: 100%;
}

.ch-club-event-card__image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.ch-club-event-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ch-club-event-card__body {
  padding: 22px;
}

.ch-club-event-card__name {
  font-size: 20px;
  margin: 0 0 4px;
}

.ch-club-event-card__subtitle {
  font-size: 14px;
  opacity: 0.75;
  margin: 0 0 14px;
}

.ch-club-event-card__meta {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  color: var(--ch-text-on-pastel);
}

.ch-club-event-card__cta {
  width: 100%;
}

.ch-club-events__empty {
  text-align: center;
  padding: 32px 20px;
  background: #fff;
  border-radius: 20px;
}

.ch-club-events__empty p {
  margin: 0 0 18px;
  opacity: 0.8;
}

.ch-club-events__pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.ch-club-events__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(74, 59, 51, 0.25);
  opacity: 1;
  cursor: pointer;
}

.ch-club-events__pagination .swiper-pagination-bullet-active {
  background: var(--ch-logo-accent);
}

/* ---------- Why Join ---------- */

.ch-club-why {
  color: var(--ch-text-on-pastel);
}

.ch-club-why__title {
  text-align: center;
}

.ch-club-why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  max-width: 960px;
  margin: 0 auto;
}

.ch-club-why__item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 14px;
  padding: 16px 20px;
  font-weight: 600;
}

.ch-club-why__item::before {
  content: '✔';
  flex-shrink: 0;
  color: var(--ch-logo-accent);
  font-weight: 700;
}

/* ---------- Gallery ---------- */

.ch-club-gallery__head {
  text-align: center;
}

.ch-club-gallery__subtext {
  opacity: 0.75;
  margin: 4px 0 0;
}

/* ---------- Closing CTA ---------- */

.ch-club-cta {
  background: var(--ch-golden-peach);
  color: var(--ch-text-on-pastel);
}

.ch-club-cta__inner {
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.ch-club-cta__title {
  font-size: clamp(26px, 4vw, 38px);
  margin: 0 0 12px;
}

.ch-club-cta__text {
  font-size: 16px;
  max-width: 52ch;
  opacity: 0.85;
  margin: 0 0 22px;
}

/**
 * Swiper 11.2.10
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 28, 2025
 */

/* FONT_START */
@font-face {
  font-family: 'swiper-icons';
  src: url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');
  font-weight: 400;
  font-style: normal;
}
/* FONT_END */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: '';
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}
/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}
.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
}
.swiper-rtl .swiper-button-prev svg,
.swiper-rtl .swiper-button-next svg {
  transform: rotate(180deg);
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-lock {
  display: none;
}
/* Navigation font start */
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: 'prev';
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: 'next';
}
/* Navigation font end */
:root {
  /*
  --swiper-scrollbar-border-radius: 10px;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: 4px;
  --swiper-scrollbar-left: auto;
  --swiper-scrollbar-right: 4px;
  --swiper-scrollbar-sides-offset: 1%;
  --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
  --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
  --swiper-scrollbar-size: 4px;
  */
}
.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}
.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}
.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}
.swiper-vertical > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-vertical {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
          appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}
.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}
.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform,
        200ms top;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform,
        200ms left;
}
.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform,
    200ms right;
}
/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}
/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}
.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-lock {
  display: none;
}
.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}
.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
