/** Shopify CDN: Minification failed

Line 3179:3 Unexpected "/"

**/
/* /*
 * misora-sections.css
 * Mi Sora — Figma-aligned redesign
 * Font: Moret (serif) primary
 * Palette: #1B3A2B dark green | #FDF8F0 cream | #1E2D24 footer
 */

/* ============================================================
    0. CSS VARIABLES & GLOBAL
    ============================================================ */

.ms-hero,
.ms-intro,
.ms-coolers,
.ms-functional,
.ms-split-promo,
.ms-benefits,
.ms-mi-club,
.ms-testimonial,
.ms-instagram {
  --font-primary: var(--font-heading--family);
  --color-dark-green: #1B3A2B;
  --color-charcoal: #2C2C2C;
  --color-muted-text: #5A5A5A;
  --color-cream: #FDF8F0;
  --color-cream-alt: #F4EFE6;
  --color-matcha-pastel: #EAF4E8;
  --color-footer-bg: #1E2D24;
}

/* ============================================================
    0a. CONTAINER — Centered page-width wrapper
    ============================================================ */

.ms-container {
  width: 100%;
  max-width: var(--normal-page-width, 120rem);
  margin: 0 auto;
  padding-inline: var(--page-margin, 16px);
  box-sizing: border-box;
}

@media screen and (min-width: 750px) {
  .ms-container {
    --page-margin: 40px;
  }
}

/* ============================================================
    1. HEADER — Fully transparent, white logo, right menu
    ============================================================ */

/* Override Shopify header for transparent look */
header-component,
.header-section,
.ms-header {
  background: transparent !important;
  box-shadow: none !important;
}


/* Nav link typography is intentionally NOT styled here.
   It is driven by the header schema settings (font, size, case)
   in the theme editor — do not hardcode nav styles in CSS. */

/* Hide any Shopify cart icon / actions that don't match Figma */
.header__actions,
.header-actions,
.ms-header__actions {
  display: flex !important;
  align-items: center !important;
  gap: 1rem !important;
}

/* ============================================================
    2. HERO — Two-column split layout
    ============================================================ */

.ms-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: #FDF8F0;
}

.ms-hero__panel--content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 80px 40px 80px 40px;
  background: #FDF8F0;
}

.ms-hero__content-inner {
  width: 100%;
  max-width: 520px;
}

.ms-hero__panel--media {
  position: relative;
  overflow: hidden;
}

.ms-hero__panel--media .ms-hero__dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 8px;
  margin: 0;
}

.ms-hero__panel--media .ms-hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease;
}

.ms-hero__panel--media .ms-hero__dot--active {
  background: #ffffff;
}

.ms-hero__slides {
  position: absolute;
  inset: 0;
}

.ms-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.ms-hero__slide--active {
  opacity: 1;
}

.ms-hero__bg {
  position: absolute;
  inset: 0;
}

.ms-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ms-hero__overlay {
  display: none;
}

.ms-hero__title {
  font-family: var(--font-heading--family);
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 400;
  line-height: 1.05;
  margin: 0 0 24px;
  color: #1B3A2B;
}

.ms-hero__title em {
  font-style: italic;
  font-weight: 550;
}

.ms-hero__body {
  font-family: var(--font-body--family);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  max-width: 460px;
  color: #5A5A5A;
  margin: 0 0 40px;
}

.ms-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.ms-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 0 30px;
  border-radius: 999px;
  font-family: var(--font-body--family);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.35s ease;
  cursor: pointer;
}

.ms-hero__btn--primary {
  background: #1B3A2B;
  color: #FFF8E8;
  border: none;
}

.ms-hero__btn--primary:hover {
  background: #245A3A;
  transform: scale(1.04);
}

.ms-hero__btn--text {
  background: transparent;
  color: #1B3A2B;
  border: none;
  padding: 0;
  height: auto;
  text-decoration: underline;
  text-underline-offset: 4px;
  letter-spacing: 0.1em;
}

.ms-hero__btn--text:hover {
  opacity: 0.6;
}

@media (max-width: 900px) {
  .ms-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .ms-hero__panel--content {
    padding: 60px 32px;
    order: 1;
  }

  .ms-hero__content-inner {
    max-width: 100%;
  }

  .ms-hero__panel--media {
    min-height: 50svh;
    order: 0;
  }

  .ms-hero__title {
    font-size: clamp(36px, 10vw, 48px);
  }

  .ms-hero__body {
    font-size: 14px;
    max-width: 100%;
  }

  .ms-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================================
    BUBBLES — Sparkling cocktail effect
    ============================================================ */

.ms-hero__bubbles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.ms-bubble {
  position: absolute;
  bottom: -30px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 248, 232, 0.4);
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.25), transparent 65%);
  box-shadow: inset 0 -1px 4px rgba(255, 248, 232, 0.2), 0 0 6px rgba(255, 248, 232, 0.08);
  animation: ms-bubble-rise linear infinite;
}

.ms-bubble:nth-child(1) {
  left: 5%;
  width: 14px;
  height: 14px;
  animation-duration: 14s;
  animation-delay: 1s;
  filter: blur(0.5px);
}

.ms-bubble:nth-child(2) {
  left: 12%;
  width: 20px;
  height: 20px;
  animation-duration: 18s;
  animation-delay: 2.5s;
  filter: blur(0.3px);
}

.ms-bubble:nth-child(3) {
  left: 22%;
  width: 10px;
  height: 10px;
  animation-duration: 12s;
  animation-delay: 0.5s;
}

.ms-bubble:nth-child(4) {
  left: 32%;
  width: 18px;
  height: 18px;
  animation-duration: 16s;
  animation-delay: 4s;
  filter: blur(0.5px);
}

.ms-bubble:nth-child(5) {
  left: 42%;
  width: 22px;
  height: 22px;
  animation-duration: 20s;
  animation-delay: 1.8s;
  filter: blur(0.4px);
  box-shadow: inset 0 -1px 4px rgba(255, 248, 232, 0.25), 0 0 10px rgba(255, 248, 232, 0.12);
}

.ms-bubble:nth-child(6) {
  left: 52%;
  width: 12px;
  height: 12px;
  animation-duration: 13s;
  animation-delay: 6s;
}

.ms-bubble:nth-child(7) {
  left: 62%;
  width: 16px;
  height: 16px;
  animation-duration: 17s;
  animation-delay: 3s;
  filter: blur(0.3px);
}

.ms-bubble:nth-child(8) {
  left: 72%;
  width: 20px;
  height: 20px;
  animation-duration: 15s;
  animation-delay: 5s;
  filter: blur(0.4px);
  box-shadow: inset 0 -1px 4px rgba(255, 248, 232, 0.25), 0 0 8px rgba(255, 248, 232, 0.1);
}

.ms-bubble:nth-child(9) {
  left: 82%;
  width: 14px;
  height: 14px;
  animation-duration: 19s;
  animation-delay: 0.8s;
}

.ms-bubble:nth-child(10) {
  left: 90%;
  width: 9px;
  height: 9px;
  animation-duration: 11s;
  animation-delay: 7s;
}

.ms-bubble:nth-child(11) {
  left: 8%;
  width: 17px;
  height: 17px;
  animation-duration: 22s;
  animation-delay: 4.5s;
  filter: blur(0.3px);
}

.ms-bubble:nth-child(12) {
  left: 68%;
  width: 11px;
  height: 11px;
  animation-duration: 12.5s;
  animation-delay: 2s;
}

.ms-bubble:nth-child(13) {
  left: 48%;
  width: 8px;
  height: 8px;
  animation-duration: 10s;
  animation-delay: 8s;
}

.ms-bubble:nth-child(14) {
  left: 18%;
  width: 15px;
  height: 15px;
  animation-duration: 21s;
  animation-delay: 6.5s;
  filter: blur(0.4px);
}

.ms-bubble:nth-child(15) {
  left: 78%;
  width: 13px;
  height: 13px;
  animation-duration: 16s;
  animation-delay: 9s;
}

.ms-bubble:nth-child(16) {
  left: 38%;
  width: 19px;
  height: 19px;
  animation-duration: 24s;
  animation-delay: 3.2s;
  filter: blur(0.3px);
  box-shadow: inset 0 -1px 4px rgba(255, 248, 232, 0.25), 0 0 8px rgba(255, 248, 232, 0.1);
}

.ms-bubble:nth-child(17) {
  left: 88%;
  width: 10px;
  height: 10px;
  animation-duration: 13s;
  animation-delay: 10s;
}

.ms-bubble:nth-child(18) {
  left: 58%;
  width: 16px;
  height: 16px;
  animation-duration: 19s;
  animation-delay: 1.2s;
  filter: blur(0.3px);
}

@keyframes ms-bubble-rise {
  0% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0;
  }

  8% {
    opacity: 0.8;
  }

  30% {
    transform: translateY(-30vh) translateX(8px) scale(1.02);
    opacity: 0.75;
  }

  60% {
    transform: translateY(-65vh) translateX(-6px) scale(0.95);
    opacity: 0.5;
  }

  100% {
    transform: translateY(-115vh) translateX(4px) scale(0.7);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ms-hero__bubbles {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ms-hero__bubbles {
    display: none;
  }
}

/* ============================================================
    FLAVOUR MARQUEE — Pink strip below hero
    ============================================================ */

.ms-flavour-marquee {
  width: 100%;
  overflow: hidden;
  background: #FDF8F0;
  color: #1B472D;
  white-space: nowrap;
  line-height: 0;
}

.ms-flavour-marquee__track {
  display: inline-flex;
  animation: ms-flavour-marquee-scroll 35s linear infinite;
  will-change: transform;
  backface-visibility: hidden;
}

.ms-flavour-marquee__item {
  display: inline-block;
  flex-shrink: 0;
  padding: 0 14px;
  font-family: var(--font-heading--family);
  font-size: 36px;
  font-style: italic;
  font-weight: 400;
  line-height: 88px;
  color: #1B472D;
  white-space: nowrap;
}

.ms-flavour-marquee:hover .ms-flavour-marquee__track {
  animation-play-state: paused;
}

@keyframes ms-flavour-marquee-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-16.666%, 0, 0);
  }
}

@media (max-width: 767px) {
  .ms-flavour-marquee__item {
    font-size: 26px;
    line-height: 64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ms-flavour-marquee__track {
    animation: none;
  }
}

/* ============================================================
    3. INTRO SECTION — Cream background
    ============================================================ */

.ms-intro {
  padding: 110px 0;
  background-color: white;
}

.ms-intro .ms-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

@media (min-width: 768px) {
  .ms-intro .ms-container {
    grid-template-columns: 1fr 1fr;
    gap: 140px;
  }
  .ms-intro__right { padding-left: 0; }
}

.ms-intro__heading {
  font-family: var(--font-heading--family);
  font-size: clamp(2.2rem, 5.5vw, 2.5rem);
  font-weight: 550;
  line-height: 1.1;
  text-transform: none;
  text-align: left;
  color: #1B3A2B;
  margin: 0;
  letter-spacing: -1px;
  transform: scaleY(1.5);
  transform-origin: center;
  font-weight: bold;
  text-transform: uppercase;
}

.ms-intro__right {
  display: flex;
  flex-direction: column;
  gap: 40px;
  text-align: left;
}

.ms-intro__body {
  font-family: var(--font-body--family);
  text-align: left;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: #2C2C2C;
  margin: 0;
  max-width: 380px;
  margin-right: auto;
}

.ms-intro__links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.ms-intro__link {
  cursor: pointer;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.35s ease;
}

.ms-intro__link--primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 0 30px;
  border-radius: 999px;
  font-family: var(--font-body--family);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  background: #1B3A2B;
  color: #FFF8E8;
  border: none;
}

.ms-intro__link--primary:hover {
  background: #245A3A;
  transform: scale(1.04);
}

.ms-intro__link--text {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body--family);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  background: transparent;
  color: #1B3A2B;
  border: none;
  padding: 0;
  height: auto;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.ms-intro__link--text:hover {
  opacity: 0.6;
}

/* ============================================================
    4. COOLERS SECTION — Cream bg
    ============================================================ */

.ms-coolers {
  background-color: #FDF8F0;
  padding: 80px 0;
}

.ms-coolers__header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .ms-coolers__header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.ms-coolers__heading {
  font-family: var(--font-heading--family);
  font-size: clamp(2rem, 6vw, 2.25rem);
  font-weight: 400;
  text-transform: uppercase;
  color: #1B3A2B;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -1px;
  transform: scaleY(1.3);
  transform-origin: center;
  font-weight: bold;
}

.ms-coolers__filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ms-filter-pill {
  font-family: var(--font-body--family);
  font-size: 16px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.02em;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1.5px solid #1B3A2B;
  background: transparent;
  color: #1B3A2B;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-transform: uppercase;
}

.ms-filter-pill:hover,
.ms-filter-pill--active {
  background: #1B3A2B;
  color: #ffffff;
}

/* Product grid — 4 col desktop */
.ms-coolers__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (min-width: 1024px) {
  .ms-coolers__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Product Card */
.ms-product-card {
  display: flex;
  flex-direction: column;
}

.ms-product-card__image-wrap {
  background: #D9F4DA;
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  aspect-ratio: 3 / 4;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.ms-product-card[data-category="non-alcoholic"] .ms-product-card__image-wrap {
  background: #E2F0D9;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }
}

.ms-product-card__can {
  width: 100%;
  height: 100%;
  background: transparent;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.16));
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 3s ease-in-out infinite;
  transition: transform 0.5s ease;
}

.ms-product-card__image-wrap:hover .ms-product-card__can {
  animation: none;
  transform: scale(1.08);
}

.ms-product-card__can img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ms-product-card__name {
  font-family: var(--font-heading--family);
  font-size: 22px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  color: #1B3A2B;
  margin: 0 0 4px;
  line-height: 1.3;
  text-transform: uppercase;
}

.ms-product-card__desc {
  font-family: var(--font-body--family);
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  color: #5A5A5A;
  line-height: 1.4;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.ms-product-card__actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.ms-btn-primary {
  font-family: var(--font-body--family);
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.05em;
  background: #1B3A2B;
  color: #ffffff;
  border: none;
  padding: 9px 20px;
  cursor: pointer;
  border-radius: 40px;
  transition: background 0.2s;
  text-transform: uppercase;
}

.ms-btn-primary:hover {
  background: #2C5E3A;
}

.ms-btn-link {
  font-family: var(--font-body--family);
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.05em;
  color: #1B3A2B;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: opacity 0.2s;
  text-transform: uppercase;
}

.ms-btn-link:hover {
  opacity: 0.6;
}

/* Cocktails teaser (spans 2 cols) */
.ms-cocktails-teaser {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  text-align: right;
}

@media (min-width: 1024px) {
  .ms-cocktails-teaser {
    grid-column: span 2;
  }
}

.ms-cocktails-teaser__heading {
  font-family: var(--font-heading--family);
  font-size: clamp(2rem, 5vw, 2.25rem);
  font-weight: 400;
  text-transform: uppercase;
  color: #1B3A2B;
  margin: 0 0 32px;
  letter-spacing: -1px;
  transform: scaleY(1.3);
  transform-origin: center;
  font-weight: bold;
}

.ms-cocktails-teaser__inner {
  display: flex;
  gap: 24px;
  width: 100%;
}

.ms-cocktail-card {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ms-cocktail-card__image-wrap {
  background: #D9F4DA;
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  aspect-ratio: 3 / 4;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.ms-cocktails-teaser .ms-cocktail-card__image-wrap {
  background: #3F8146;
  box-shadow: none;
}

.ms-cocktail-card__wishlist {
  position: absolute;
  top: 14px;
  right: 14px;
  background: transparent;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 4px;
  transition: transform 0.2s;
}

.ms-cocktail-card__wishlist:hover {
  transform: scale(1.15);
}

.ms-cocktail-card__can {
  width: 100%;
  height: 100%;
  object-fit: contain;
  -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
  animation: float 3s ease-in-out infinite;
  animation-delay: 1.5s;
  transition: transform 0.5s ease;
  transform: scale(1.04);
}

.ms-cocktail-card__image-wrap:hover .ms-cocktail-card__can {
  animation: none;
  transform: scale(1.06);
}

.ms-cocktail-card__name {
  font-family: var(--font-heading--family);
  font-size: 24px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  color: #1B3A2B;
  margin: 0 0 4px;
  line-height: 1.3;
  font-style: bold;
  text-transform: uppercase;
}

.ms-cocktail-card__desc {
  font-family: var(--font-body--family);
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  color: #5A5A5A;
  line-height: 1.4;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.ms-cocktail-card__actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.ms-btn-dark {
  font-family: var(--font-body--family);
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.05em;
  background: #1B3A2B;
  color: #ffffff;
  border: none;
  padding: 9px 20px;
  cursor: pointer;
  border-radius: 40px;
  transition: opacity 0.2s;
  text-transform: uppercase;
}

.ms-btn-dark:hover {
  opacity: 0.8;
}

/* ============================================================
    5. FUNCTIONAL MATCHA — White, 5 column icons
    ============================================================ */

.ms-functional {
  padding: 96px 0;
  background: #ffffff;
  border-bottom: 1px solid #E5E5E5;
}

.ms-functional__header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 80px;
  gap: 24px;
}

@media (min-width: 768px) {
  .ms-functional__header {
    flex-direction: row;
    align-items: flex-end;
  }
}

.ms-functional__heading {
  font-family: var(--font-heading--family);
  font-size: clamp(2rem, 6vw, 2.25rem);
  font-weight: 400;
  text-transform: uppercase;
  color: #1B3A2B;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -1px;
  transform: scaleY(1.3);
  transform-origin: center;
  font-weight: bold;
}

.ms-functional__sub {
  font-family: var(--font-body--family);
  font-size: 16px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  color: #5A5A5A;
  max-width: 240px;
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 768px) {
  .ms-functional__sub {
    text-align: right;
  }
}

.ms-functional__icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  text-align: center;
}

@media (min-width: 600px) {
  .ms-functional__icons {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .ms-functional__icons {
    grid-template-columns: repeat(5, 1fr);
    gap: 48px;
  }
}

.ms-benefit-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.ms-benefit-icon__circle {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background: #E2F0D9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ms-benefit-icon__circle img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  filter: brightness(1.6) contrast(1.2) saturate(1.1);
}

.ms-benefit-icon__label-top {
  font-family: var(--font-body--family);
  font-size: 18px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  color: #1B3A2B;
  margin: 0 0 2px;
}

.ms-benefit-icon__label-bottom {
  font-family: var(--font-body--family);
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
  color: #5A5A5A;
  margin: 0;
  text-align: center;
  line-height: 1.3;
}

/* ============================================================
    6. SPLIT PROMO — 2-col image panels
    ============================================================ */

.ms-split-promo {
  display: grid;
  grid-template-columns: 1fr;
  height: auto;
  background: #FDF8F0;
}

@media (min-width: 768px) {
  .ms-split-promo {
    grid-template-columns: 1fr 1fr;
    height: 560px;
  }
}

.ms-split-promo__panel {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  min-height: 280px;
}

.ms-split-promo__bg {
  position: absolute;
  inset: 0;
  transition: transform 0.7s ease;
}

.ms-split-promo__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ms-split-promo__panel:hover .ms-split-promo__bg {
  transform: scale(1.08);
}

.ms-split-promo__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.28);
  transition: background 0.3s;
}

.ms-split-promo__panel:hover .ms-split-promo__content {
  background: rgba(0, 0, 0, 0.38);
}

.ms-split-promo__eyebrow {
  font-family: var(--font-body--family);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: normal;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.3;
}

.ms-split-promo__title {
  font-family: var(--font-heading--family);
  font-size: clamp(2rem, 6vw, 2.25rem);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: -1px;
  color: #ffffff;
  text-align: center;
  margin: 0;
  line-height: 1.2;
  transform: scaleY(1.3);
  transform-origin: center;
}

/* ============================================================
    8. WHY MI SORA — Cream bg, 4 cards
    ============================================================ */

.why-mi-sora {
  background: #F8F4E8;
  padding: 70px 0 100px;
}

.why-mi-sora__eyebrow {
  font-family: var(--font-body--family);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1D4B2C;
  margin: 0 0 16px;
  text-align: center;
}

.why-mi-sora__heading {
  font-family: var(--font-heading--family);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.15;
  color: #1B3A2B;
  margin: 0 0 48px;
  text-align: center;
}

.why-mi-sora__heading em {
  font-style: italic;
  font-weight: 550;
  color: #5B8C5A;
}

.why-mi-sora__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-mi-sora__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  border-radius: 30px;
  padding: 24px;
  min-height: 280px;
  background: #234B36;
  box-shadow: 0 4px 12px rgba(31, 59, 39, 0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.why-mi-sora__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(31, 59, 39, 0.15);
}

.why-mi-sora__card--pink {
}

.why-mi-sora__card--mint {
}

.why-mi-sora__card--yellow {
}

.why-mi-sora__card--lavender {
}

.why-mi-sora__card h3 {
  font-family: var(--font-heading--family);
  font-size: clamp(30px, 2.8vw, 40px);
  font-weight: 400;
  line-height: 1.1;
  color: #FDF8F0;
  margin: 0 0 24px;
  min-height: 120px;
  transform: scaleY(1.12);
  transform-origin: top left;
}

.why-mi-sora__card p {
  font-family: var(--font-body--family);
  font-size: 15px;
  font-weight: 550;
  line-height: 1.55;
  color: #C8DCC0;
  margin: 0;
}

@media (max-width: 1024px) {
  .why-mi-sora__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-mi-sora {
    padding: 60px 0;
  }

  .why-mi-sora__grid {
    grid-template-columns: 1fr;
  }

  .why-mi-sora__card {
    min-height: auto;
  }
}

/* ============================================================
    9. MI CLUB SIGNUP — Full-width hero with background image
    ============================================================ */

.ms-mi-club {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 60px 24px;
  overflow: hidden;
}

.ms-mi-club__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ms-mi-club__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.ms-mi-club__bg-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading--family);
  font-size: 20vw;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.03);
  user-select: none;
  pointer-events: none;
  letter-spacing: -0.04em;
  line-height: 1;
}

.ms-mi-club__bubbles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .ms-mi-club__bubbles {
    display: none;
  }
}

.ms-mi-club__bubbles .ms-bubble {
  border-color: rgba(255, 255, 255, 0.45);
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), transparent 65%);
  box-shadow: inset 0 -1px 4px rgba(255, 255, 255, 0.25), 0 0 8px rgba(255, 255, 255, 0.1);
}

.ms-mi-club__bubbles .ms-bubble:nth-child(1) {
  left: 8%;
  width: 16px;
  height: 16px;
  animation-duration: 16s;
  animation-delay: 0.5s;
  filter: blur(0.3px);
}

.ms-mi-club__bubbles .ms-bubble:nth-child(2) {
  left: 18%;
  width: 10px;
  height: 10px;
  animation-duration: 12s;
  animation-delay: 3s;
}

.ms-mi-club__bubbles .ms-bubble:nth-child(3) {
  left: 30%;
  width: 20px;
  height: 20px;
  animation-duration: 19s;
  animation-delay: 1.2s;
  filter: blur(0.4px);
}

.ms-mi-club__bubbles .ms-bubble:nth-child(4) {
  left: 42%;
  width: 12px;
  height: 12px;
  animation-duration: 14s;
  animation-delay: 5s;
}

.ms-mi-club__bubbles .ms-bubble:nth-child(5) {
  left: 55%;
  width: 18px;
  height: 18px;
  animation-duration: 21s;
  animation-delay: 2s;
  filter: blur(0.3px);
}

.ms-mi-club__bubbles .ms-bubble:nth-child(6) {
  left: 65%;
  width: 8px;
  height: 8px;
  animation-duration: 11s;
  animation-delay: 6.5s;
}

.ms-mi-club__bubbles .ms-bubble:nth-child(7) {
  left: 75%;
  width: 14px;
  height: 14px;
  animation-duration: 17s;
  animation-delay: 3.5s;
}

.ms-mi-club__bubbles .ms-bubble:nth-child(8) {
  left: 85%;
  width: 22px;
  height: 22px;
  animation-duration: 22s;
  animation-delay: 0.8s;
  filter: blur(0.4px);
}

.ms-mi-club__bubbles .ms-bubble:nth-child(9) {
  left: 48%;
  width: 6px;
  height: 6px;
  animation-duration: 10s;
  animation-delay: 7s;
}

.ms-mi-club__bubbles .ms-bubble:nth-child(10) {
  left: 92%;
  width: 15px;
  height: 15px;
  animation-duration: 18s;
  animation-delay: 4.2s;
  filter: blur(0.3px);
}

.ms-mi-club__bubbles .ms-bubble:nth-child(11) {
  left: 22%;
  width: 13px;
  height: 13px;
  animation-duration: 15s;
  animation-delay: 2.8s;
}

.ms-mi-club__bubbles .ms-bubble:nth-child(12) {
  left: 70%;
  width: 9px;
  height: 9px;
  animation-duration: 13s;
  animation-delay: 1.5s;
}

.ms-mi-club__bubbles .ms-bubble:nth-child(13) {
  left: 38%;
  width: 11px;
  height: 11px;
  animation-duration: 14s;
  animation-delay: 9s;
}

.ms-mi-club__bubbles .ms-bubble:nth-child(14) {
  left: 58%;
  width: 17px;
  height: 17px;
  animation-duration: 20s;
  animation-delay: 0.3s;
  filter: blur(0.3px);
}

.ms-mi-club__bubbles .ms-bubble:nth-child(15) {
  left: 15%;
  width: 7px;
  height: 7px;
  animation-duration: 11s;
  animation-delay: 8s;
}

.ms-mi-club__bubbles .ms-bubble:nth-child(16) {
  left: 88%;
  width: 19px;
  height: 19px;
  animation-duration: 23s;
  animation-delay: 5.5s;
  filter: blur(0.4px);
}

.ms-mi-club__bubbles .ms-bubble:nth-child(17) {
  left: 50%;
  width: 13px;
  height: 13px;
  animation-duration: 16s;
  animation-delay: 3s;
}

.ms-mi-club__bubbles .ms-bubble:nth-child(18) {
  left: 3%;
  width: 10px;
  height: 10px;
  animation-duration: 12s;
  animation-delay: 10s;
}

.ms-mi-club__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 580px;
  text-align: left;
  margin-left: 5%;
}

.ms-mi-club__eyebrow {
  font-family: var(--font-body--family);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 16px;
}

.ms-mi-club__heading {
  font-family: var(--font-heading--family);
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  font-weight: 550;
  line-height: 1.1;
  color: #FFFFFF;
  margin: 0 0 24px;
  white-space: nowrap;
  transform: scaleY(1.12);
  transform-origin: left center;
}

.ms-mi-club__heading em {
  font-style: italic;
  font-weight: 550;
  color: #FFFFFF;
}

.ms-mi-club__desc {
  font-family: var(--font-body--family);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  max-width: 460px;
  margin: 0 0 36px;
}

.ms-mi-club__form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  max-width: 460px;
  margin: 0;
}

.ms-mi-club__input {
  width: 100%;
  background: transparent !important;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  color: #FFFFFF;
  font-family: var(--font-body--family);
  font-size: 15px;
  font-weight: 550;
  padding: 16px 20px;
  outline: none;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.ms-mi-club__input::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.ms-mi-club__input:focus {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.ms-mi-club__input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
  -webkit-text-fill-color: #FFFFFF !important;
  caret-color: #FFFFFF;
}

.ms-mi-club__submit {
  width: 100%;
  background: #1B3A2B;
  color: #F8F4E8;
  font-family: var(--font-body--family);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 28px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  text-align: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

.ms-mi-club__submit:hover {
  background: #245A3A;
  transform: translateY(-2px);
}

.ms-mi-club__note {
  font-family: var(--font-body--family);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1B3A2B;
  margin: 0;
}

@media (max-width: 600px) {
  .ms-mi-club {
    min-height: 420px;
    padding: 40px 20px;
  }

  .ms-mi-club__heading {
    font-size: clamp(2.2rem, 10vw, 2.8rem);
  }

  .ms-mi-club__desc {
    font-size: 14px;
  }

  .ms-mi-club__input {
    padding: 14px 18px;
  }

  .ms-mi-club__submit {
    padding: 16px 24px;
  }
}

/* ============================================================
    9. TESTIMONIAL — Dark green bg
    ============================================================ */

.ms-testimonial {
  min-height: 335px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 24px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #FFFDF2;
  text-align: center;
}

.ms-testimonial__content {
  position: relative;
  max-width: 620px;
  transition: transform 0.4s ease;
}

.ms-testimonial:hover .ms-testimonial__content {
  transform: translateY(-4px);
}

.ms-testimonial__content::after {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 24px;
  background: radial-gradient(ellipse at center, rgba(255, 253, 242, 0.06), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.ms-testimonial:hover .ms-testimonial__content::after {
  opacity: 1;
}

.ms-testimonial__stars {
  margin: 0 0 22px;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #FFFDF2;
}

.ms-testimonial__stars span {
  display: inline-block;
  transition: transform 0.4s ease, color 0.4s ease, text-shadow 0.4s ease;
}

.ms-testimonial:hover .ms-testimonial__stars span:nth-child(1) {
  transform: translateY(-6px) scale(1.25);
  text-shadow: 1px 1px 4px rgba(27, 58, 43, 0.5), 0 0 0 0.5px rgba(255, 253, 242, 0.85), 0 0 16px rgba(212, 175, 55, 0.4);
  transition-delay: 0s;
}

.ms-testimonial:hover .ms-testimonial__stars span:nth-child(2) {
  transform: translateY(-6px) scale(1.25);
  text-shadow: 1px 1px 4px rgba(27, 58, 43, 0.5), 0 0 0 0.5px rgba(255, 253, 242, 0.85), 0 0 16px rgba(212, 175, 55, 0.4);
  transition-delay: 0.08s;
}

.ms-testimonial:hover .ms-testimonial__stars span:nth-child(3) {
  transform: translateY(-6px) scale(1.25);
  text-shadow: 1px 1px 4px rgba(27, 58, 43, 0.5), 0 0 0 0.5px rgba(255, 253, 242, 0.85), 0 0 16px rgba(212, 175, 55, 0.4);
  transition-delay: 0.16s;
}

.ms-testimonial:hover .ms-testimonial__stars span:nth-child(4) {
  transform: translateY(-6px) scale(1.25);
  text-shadow: 1px 1px 4px rgba(27, 58, 43, 0.5), 0 0 0 0.5px rgba(255, 253, 242, 0.85), 0 0 16px rgba(212, 175, 55, 0.4);
  transition-delay: 0.24s;
}

.ms-testimonial:hover .ms-testimonial__stars span:nth-child(5) {
  transform: translateY(-6px) scale(1.25);
  text-shadow: 1px 1px 4px rgba(27, 58, 43, 0.5), 0 0 0 0.5px rgba(255, 253, 242, 0.85), 0 0 16px rgba(212, 175, 55, 0.4);
  transition-delay: 0.32s;
}

.ms-testimonial__quote {
  margin: 0;
  font-family: var(--font-heading--family);
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #FFFDF2;
  max-width: 590px;
  margin-left: auto;
  margin-right: auto;
  transition: color 0.4s ease, text-shadow 0.4s ease, transform 0.4s ease;
}

.ms-testimonial:hover .ms-testimonial__quote {
  color: #FFFFFF;
  text-shadow: 0 0 24px rgba(255, 253, 242, 0.15), 0 0 8px rgba(255, 253, 242, 0.08);
  transform: scale(1.02);
}

.ms-testimonial__author {
  margin: 20px 0 0;
  font-family: var(--font-body--family);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FFFDF2;
  transition: color 0.4s ease, letter-spacing 0.4s ease;
}

.ms-testimonial:hover .ms-testimonial__author {
  color: #FFFFFF;
  letter-spacing: 0.14em;
}

@media (prefers-reduced-motion: reduce) {

  .ms-testimonial__content,
  .ms-testimonial__quote,
  .ms-testimonial__author,
  .ms-testimonial__stars span {
    transition: none;
  }

  .ms-testimonial:hover .ms-testimonial__content {
    transform: none;
  }

  .ms-testimonial:hover .ms-testimonial__stars span {
    transform: none;
    color: #FFFDF2;
    text-shadow: none;
  }

  .ms-testimonial:hover .ms-testimonial__quote {
    transform: none;
    text-shadow: none;
  }

  .ms-testimonial:hover .ms-testimonial__author {
    letter-spacing: 0.08em;
  }

  .ms-testimonial__content::after {
    display: none;
  }
}

@media (max-width: 767px) {
  .ms-testimonial {
    min-height: auto;
    padding: 60px 20px;
  }

  .ms-testimonial__content {
    max-width: 100%;
  }

  .ms-testimonial__stars {
    font-size: 20px;
    margin-bottom: 18px;
  }

  .ms-testimonial__quote {
    font-size: clamp(20px, 4vw, 24px);
    line-height: 1.3;
    letter-spacing: normal;
    max-width: 100%;
  }

  .ms-testimonial__author {
    margin-top: 16px;
    font-size: 11px;
  }
}

/* ---------- Testimonial carousel ---------- */
.ms-testimonial__viewport {
  overflow: hidden;
}

.ms-testimonial__track {
  display: flex;
  animation: ms-testimonial-carousel 20s infinite;
}

.ms-testimonial:hover .ms-testimonial__track {
  animation-play-state: paused;
}

.ms-testimonial__slide {
  width: 100%;
  flex-shrink: 0;
}

@keyframes ms-testimonial-carousel {
  0%, 20% { transform: translateX(0); }
  25%, 45% { transform: translateX(-100%); }
  50%, 70% { transform: translateX(-200%); }
  75%, 95% { transform: translateX(-300%); }
  100% { transform: translateX(-400%); }
}

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

/* ============================================================
    9B. OUR STORY SECTION — Cream bg (same as Why Mi Sora)
    ============================================================ */

.ms-story {
  background: #F8F4E8;
  padding: 70px 0 100px;
}

.ms-story__eyebrow {
  font-family: var(--font-body--family);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1D4B2C;
  margin: 0 0 16px;
  text-align: center;
}

.ms-story__heading {
  font-family: var(--font-heading--family);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.15;
  color: #1B3A2B;
  margin: 0 0 48px;
  text-align: center;
}

.ms-story__heading em {
  font-style: italic;
  font-weight: 550;
  color: #5B8C5A;
}

.ms-story__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 600px) {
  .ms-story__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .ms-story__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.ms-story__card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 16px;
  background: #e5e5e5;
  box-shadow: 0 4px 12px rgba(31, 59, 39, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.ms-story__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(31, 59, 39, 0.14);
}

.ms-story__card-image {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.ms-story__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.ms-story__card:hover .ms-story__card-image img {
  transform: scale(1.04);
}

.ms-story__card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}

.ms-story__card:hover .ms-story__card-overlay {
  opacity: 1;
}

.ms-story__card-title {
  font-family: var(--font-heading--family);
  font-size: 24px;
  font-weight: 400;
  color: #FFFDF2;
  margin: 0 0 16px;
  line-height: 1.2;
}

.ms-story__btn {
  display: inline-block;
  padding: 10px 28px;
  border-radius: 50px;
  border: 1.5px solid #FFFDF2;
  background: transparent;
  color: #FFFDF2;
  font-family: var(--font-body--family);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.ms-story__btn:hover {
  background: #FFFDF2;
  color: #1B3A2B;
}

.ms-story__card-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease, opacity 0.3s ease;
  padding: 0 24px;
  opacity: 0;
  background: #FFFDF2;
}

.ms-story__card.is-expanded .ms-story__card-content {
  max-height: 600px;
  padding: 24px;
  opacity: 1;
}

.ms-story__card-content p {
  font-family: var(--font-body--family);
  font-size: 14px;
  font-weight: 550;
  line-height: 1.65;
  color: #3A5A47;
  margin: 0 0 12px;
}

.ms-story__card-content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .ms-story {
    padding: 60px 0;
  }

  .ms-story__card-image {
    aspect-ratio: 4 / 3;
  }
  .ms-story__card-title {
    margin-bottom: 14px;
  }

  .ms-story__btn {
    padding: 9px 24px;
    letter-spacing: 0.06em;
  }
}

/* Tablet */
@media (max-width: 768px) {
  .ms-story {
    padding: 60px 0;
  }

  .ms-story__card-image {
    aspect-ratio: 4 / 3;
  }
  .ms-story__card-title {
    margin-bottom: 14px;
  }

  .ms-story__btn {
    padding: 9px 24px;
    letter-spacing: 0.06em;
  }
  .ms-story__card-content p {
    line-height: 1.65;
    margin-bottom: 10px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .ms-story {
    padding: 60px 0;
  }

  .ms-story__card-image {
    aspect-ratio: 4 / 3;
  }
  .ms-story__card-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }

  .ms-story__btn {
    padding: 8px 20px;
    font-size: 0.75rem;
    border-width: 1.25px;
  }
  .ms-story__card-content p {
    font-size: 0.875rem; /* 14px */
    line-height: 1.6;
    margin-bottom: 8px;
  }
}
/* Tablet */
@media (max-width: 768px) {
  .ms-story__card.is-expanded .ms-story__card-content {
    max-height: 850px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .ms-story__card.is-expanded .ms-story__card-content {
    max-height: 1200px;
  }

  .ms-story__card-content {
    padding: 0 18px;
  }

  .ms-story__card.is-expanded .ms-story__card-content {
    padding: 18px;
  }

  .ms-story__card-content p {
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
}

/* ============================================================
    10. INSTAGRAM SECTION — Cream bg
    ============================================================ */

.ms-instagram {
  padding: 96px 0;
  background: #FDF8F0;
}

.ms-instagram__heading {
  font-family: var(--font-heading--family);
  font-size: clamp(1.8rem, 4vw, 2.25rem);
  font-weight: 400;
  text-transform: uppercase;
  color: #1B3A2B;
  margin: 0 0 48px;
  line-height: 1.2;
  letter-spacing: -1px;
  transform: scaleY(1.5);
  transform-origin: center;
  font-weight: bold;
}

.ms-instagram__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 600px) {
  .ms-instagram__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .ms-instagram__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

.ms-instagram__item {
  aspect-ratio: 1 / 1;
  background: #e5e5e5;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 16px;
}

.ms-instagram__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ms-instagram__item:hover img {
  transform: scale(1.04);
}

.ms-instagram__item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 16px;
}

.ms-instagram__item:hover .ms-instagram__item-overlay {
  opacity: 1;
}

.ms-instagram__item-overlay svg {
  width: 28px;
  height: 28px;
  color: #ffffff;
  fill: #ffffff;
}

/* ============================================================
    11. FOOTER — Dark green bg
    ============================================================ */

.ms-footer {
  background: #1E2D24;
  color: #CCCCCC;
  padding: 80px 0 0;
  font-family: var(--font-heading--family);
  overflow: hidden;
}

.ms-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 64px;
}

@media (min-width: 600px) {
  .ms-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .ms-footer__grid {
    grid-template-columns: auto 1fr 1fr 2fr;
    gap: 48px;
  }
}

.ms-footer__col-label {
  font-size: 14px;
  font-weight: 550;
  text-transform: none;
  letter-spacing: normal;
  color: #CCCCCC;
  margin: 0 0 24px;
}

.ms-footer__social {
  display: flex;
  gap: 18px;
  margin-top: 4px;
}

.ms-footer__social a {
  color: #CCCCCC;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.ms-footer__social a:hover {
  color: #C4D9B6;
}

.ms-footer__social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.ms-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ms-footer__nav a {
  font-size: 14px;
  font-weight: 550;
  text-transform: none;
  letter-spacing: normal;
  color: #CCCCCC;
  text-decoration: none;
  transition: color 0.2s;
}

.ms-footer__nav a:hover {
  color: #C4D9B6;
}

.ms-footer__newsletter {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ms-footer__newsletter-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #CCCCCC;
  margin: 0;
}

.ms-footer__email-wrap {
  position: relative;
  max-width: 360px;
  margin-top: 8px;
}

.ms-footer__email-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #CCCCCC;
  color: #CCCCCC;
  font-family: var(--font-body--family);
  font-size: 16px;
  letter-spacing: normal;
  padding: 8px 64px 8px 0;
  outline: none;
  border-radius: 0;
}

.ms-footer__email-input::placeholder {
  color: #888888;
}

.ms-footer__email-input:focus {
  border-color: #C4D9B6;
  color: #ffffff;
}

.ms-footer__email-submit {
  position: absolute;
  right: 0;
  bottom: 8px;
  background: transparent;
  border: none;
  font-family: var(--font-body--family);
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.05em;
  color: #CCCCCC;
  cursor: pointer;
  transition: color 0.2s;
  padding: 0;
}

.ms-footer__email-submit:hover {
  color: #C4D9B6;
}

.ms-footer__jumbo {
  text-align: center;
  overflow: hidden;
}

.ms-footer__jumbo-text {
  font-family: var(--font-heading--family);
  font-size: clamp(12vw, 20vw, 20vw);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.85;
  color: rgba(255, 255, 255, 0.05);
  user-select: none;
  display: block;
}

.ms-footer__bottom {
  padding: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
  .ms-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.ms-footer__bottom p {
  font-size: 14px;
  font-weight: 550;
  text-transform: none;
  letter-spacing: normal;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

/* ============================================================
    12. SCROLL OBSERVER STYLES
    ============================================================ */

.ms-reveal--delay-1 {
  transition-delay: 0.1s;
}

.ms-reveal--delay-2 {
  transition-delay: 0.2s;
}

.ms-reveal--delay-3 {
  transition-delay: 0.3s;
}

.ms-reveal--delay-4 {
  transition-delay: 0.4s;
}

/* ============================================================
    13. RESPONSIVE ADJUSTMENTS
    ============================================================ */

@media (max-width: 767px) {
  .ms-coolers__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .ms-cocktails-teaser {
    grid-column: span 2;
  }

  .ms-cocktails-teaser__inner {
    flex-direction: row;
  }

  .ms-mi-club__heading {
    font-size: clamp(2.5rem, 8vw, 4rem);
  }

  .ms-mi-club__desc {
    max-width: 400px;
  }

  .ms-footer__jumbo-text {
    font-size: 20vw;
  }
}

/* ============================================================
    14. HERO CAROUSEL — Crossfade slideshow
    ============================================================ */

.ms-hero-carousel .ms-hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ms-hero-carousel .ms-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.1s ease;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
  color: #ffffff;
}

.ms-hero-carousel .ms-hero__slide--active {
  opacity: 1;
  visibility: visible;
}

.ms-hero-carousel .ms-hero__slide .ms-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ms-hero-carousel .ms-hero__slide .ms-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ms-hero-carousel .ms-hero__slide .ms-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.25));
  z-index: 1;
}

/* ── End misora-sections.css ── */

/* ============================================================
    15. FUNCTIONAL MARQUEE — Horizontal 3D marquee
    ============================================================ */

.ms-functional__icons {
  overflow: hidden;
  display: flex;
  text-align: left;
  perspective: 800px;
  transform: rotateX(0.5deg);
  transform-origin: center center;
}

.ms-functional__icons-track {
  display: flex;
  gap: 56px;
  align-items: center;
  flex-shrink: 0;
  animation: ms-marquee-scroll 30s linear infinite;
  will-change: transform;
}

.ms-functional:hover .ms-functional__icons-track {
  animation-play-state: paused;
}

@keyframes ms-marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (min-width: 600px) {
  .ms-functional__icons-track {
    gap: 72px;
  }
}

@media (min-width: 1024px) {
  .ms-functional__icons-track {
    gap: 100px;
  }
}

/* ============================================================
    11. ANNOUNCEMENT BAR — Marquee
    ============================================================ */

/* Hide default theme announcement bar on landing page */
[data-template="index"] .announcement-bar {
  display: none;
}

.ms-announcement-bar {
  width: 100%;
  overflow: hidden;
  background: #244D35;
  color: #FFFDF2;
  white-space: nowrap;
  line-height: 0;
}

.ms-announcement-bar__track {
  display: inline-flex;
  animation: ms-announcement-marquee 30s linear infinite;
  will-change: transform;
  backface-visibility: hidden;
}

.ms-announcement-bar__content {
  display: inline-block;
  flex-shrink: 0;
  padding: 9px 14px;
  font-family: var(--font-body--family);
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #FFFDF2;
}

@keyframes ms-announcement-marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-16.666%, 0, 0);
  }
}

.ms-announcement-bar:hover .ms-announcement-bar__track {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .ms-announcement-bar__track {
    animation: none;
  }
}

/* ── End misora-sections.css ── */

/* ============================================================
    16. AGE GATE — Full-screen entry gate
    ============================================================ */

.ms-age-gate {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(255, 255, 255, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(0, 0, 0, 0.08) 0%, transparent 50%),
    linear-gradient(135deg,
      #5f8f4c 0%,
      #709f59 25%,
      #84b468 55%,
      #6f9f57 80%,
      #567f45 100%);
  overflow: hidden;
  padding: 40px 24px;
  box-sizing: border-box;
}

.ms-age-gate::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

[data-template="page.age-gate"] #MainContent {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ms-age-gate__bubbles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.ms-age-gate__bubbles .ms-bubble:nth-child(1) {
  left: 5%;
  width: 16px;
  height: 16px;
  animation-duration: 16s;
  animation-delay: 1s;
  filter: blur(0.3px);
}

.ms-age-gate__bubbles .ms-bubble:nth-child(2) {
  left: 14%;
  width: 10px;
  height: 10px;
  animation-duration: 13s;
  animation-delay: 3s;
}

.ms-age-gate__bubbles .ms-bubble:nth-child(3) {
  left: 24%;
  width: 20px;
  height: 20px;
  animation-duration: 19s;
  animation-delay: 1.5s;
  filter: blur(0.4px);
}

.ms-age-gate__bubbles .ms-bubble:nth-child(4) {
  left: 34%;
  width: 12px;
  height: 12px;
  animation-duration: 14s;
  animation-delay: 5s;
}

.ms-age-gate__bubbles .ms-bubble:nth-child(5) {
  left: 44%;
  width: 22px;
  height: 22px;
  animation-duration: 22s;
  animation-delay: 2s;
  filter: blur(0.4px);
}

.ms-age-gate__bubbles .ms-bubble:nth-child(6) {
  left: 54%;
  width: 8px;
  height: 8px;
  animation-duration: 11s;
  animation-delay: 6s;
}

.ms-age-gate__bubbles .ms-bubble:nth-child(7) {
  left: 64%;
  width: 14px;
  height: 14px;
  animation-duration: 17s;
  animation-delay: 3.5s;
  filter: blur(0.3px);
}

.ms-age-gate__bubbles .ms-bubble:nth-child(8) {
  left: 74%;
  width: 18px;
  height: 18px;
  animation-duration: 20s;
  animation-delay: 0.8s;
  filter: blur(0.4px);
}

.ms-age-gate__bubbles .ms-bubble:nth-child(9) {
  left: 84%;
  width: 10px;
  height: 10px;
  animation-duration: 12s;
  animation-delay: 7s;
}

.ms-age-gate__bubbles .ms-bubble:nth-child(10) {
  left: 92%;
  width: 15px;
  height: 15px;
  animation-duration: 18s;
  animation-delay: 4.2s;
  filter: blur(0.3px);
}

.ms-age-gate__bubbles .ms-bubble:nth-child(11) {
  left: 10%;
  width: 13px;
  height: 13px;
  animation-duration: 15s;
  animation-delay: 2.8s;
}

.ms-age-gate__bubbles .ms-bubble:nth-child(12) {
  left: 48%;
  width: 9px;
  height: 9px;
  animation-duration: 12s;
  animation-delay: 1.2s;
}

.ms-age-gate__bubbles .ms-bubble:nth-child(13) {
  left: 30%;
  width: 11px;
  height: 11px;
  animation-duration: 14s;
  animation-delay: 8s;
}

.ms-age-gate__bubbles .ms-bubble:nth-child(14) {
  left: 58%;
  width: 17px;
  height: 17px;
  animation-duration: 21s;
  animation-delay: 0.3s;
  filter: blur(0.3px);
}

.ms-age-gate__bubbles .ms-bubble:nth-child(15) {
  left: 78%;
  width: 7px;
  height: 7px;
  animation-duration: 11s;
  animation-delay: 9s;
}

.ms-age-gate__bubbles .ms-bubble:nth-child(16) {
  left: 18%;
  width: 19px;
  height: 19px;
  animation-duration: 23s;
  animation-delay: 5.5s;
  filter: blur(0.4px);
}

.ms-age-gate__bubbles .ms-bubble:nth-child(17) {
  left: 68%;
  width: 13px;
  height: 13px;
  animation-duration: 16s;
  animation-delay: 3s;
}

.ms-age-gate__bubbles .ms-bubble:nth-child(18) {
  left: 88%;
  width: 10px;
  height: 10px;
  animation-duration: 14s;
  animation-delay: 10s;
}

@media (prefers-reduced-motion: reduce) {
  .ms-age-gate__bubbles {
    display: none;
  }
}

.ms-age-gate__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  max-width: 500px;
}

.ms-age-gate__logo {
  margin-bottom: 8px;
}

.ms-age-gate__logo-img {
  width: 140px;
  height: auto;
  display: block;
}

.ms-age-gate__heading {
  font-family: var(--font-heading--family);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 400;
  line-height: 1.15;
  color: #ffffff;
  margin: 0;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.ms-age-gate__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.ms-age-gate__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 36px;
  border-radius: 999px;
  font-family: var(--font-body--family);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.35s ease;
  border: 1.5px solid transparent;
}

.ms-age-gate__btn--yes {
  background: #ffffff;
  color: #1B3A2B;
  border-color: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.ms-age-gate__btn--yes:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.ms-age-gate__btn--no {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.7);
}

.ms-age-gate__btn--no:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #ffffff;
}

.ms-age-gate__disclaimer {
  font-family: var(--font-body--family);
  font-size: 13px;
  font-weight: 550;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin: 8px 0 0;
  max-width: 420px;
}

@media (max-width: 767px) {
  .ms-age-gate {
    padding: 32px 20px;
  }

  .ms-age-gate__content {
    gap: 24px;
  }

  .ms-age-gate__logo-img {
    width: 110px;
  }

  .ms-age-gate__btn {
    height: 46px;
    padding: 0 28px;
    font-size: 12px;
  }
}

/* ============================================================
    17. CONTACT PAGE
    ============================================================ */

.ms-contact__hero {
  position: relative;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #473128;
}

.ms-contact__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
}

.ms-contact__hero-heading {
  font-family: var(--font-heading--family);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.15;
  color: #ffffff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.ms-contact__info {
  padding: 80px 0;
  background: #ffffff;
}

.ms-contact__info-inner {
  width: 100%;
  max-width: var(--normal-page-width, 120rem);
  margin: 0 auto;
  padding-inline: var(--page-margin, 16px);
  box-sizing: border-box;
}

.ms-contact__intro {
  font-family: var(--font-heading--family);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 550;
  line-height: 1.6;
  color: #2C2C2C;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.ms-contact__columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .ms-contact__columns {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }

  .ms-contact__column {
    padding: 0 48px;
    border-right: 1px solid #e0ddd5;
  }

  .ms-contact__column:first-child {
    padding-left: 0;
  }

  .ms-contact__column:last-child {
    padding-right: 0;
    border-right: none;
  }
}

.ms-contact__column {
  text-align: center;
}

.ms-contact__column-heading {
  font-family: var(--font-heading--family);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 400;
  line-height: 1.3;
  color: #1B3A2B;
  margin: 0 0 12px;
  text-transform: none;
  letter-spacing: normal;
}

.ms-contact__column-email {
  font-family: var(--font-body--family);
  font-size: 1rem;
  font-weight: 550;
  color: #5A5A5A;
  text-decoration: none;
  transition: color 0.2s;
}

.ms-contact__column-email:hover {
  color: #1B3A2B;
}

@media (max-width: 767px) {
  .ms-contact__info {
    padding: 60px 0;
  }

  .ms-contact__intro {
    margin-bottom: 48px;
  }

  .ms-contact__column {
    padding-bottom: 32px;
    border-bottom: 1px solid #e0ddd5;
  }

  .ms-contact__column:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
}

/* Split CTA */
.ms-contact__split {
  display: grid;
  grid-template-columns: 1fr;
  background: #FDF8F0;
}

@media (min-width: 768px) {
  .ms-contact__split {
    grid-template-columns: 1fr 1fr;
    height: 560px;
  }
}

.ms-contact__split-panel {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  min-height: 280px;
  text-decoration: none;
  color: inherit;
  display: block;
}

.ms-contact__split-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.7s ease;
}

.ms-contact__split-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ms-contact__split-panel:hover .ms-contact__split-bg {
  transform: scale(1.08);
}

.ms-contact__split-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.28);
  transition: background 0.3s;
}

.ms-contact__split-panel:hover .ms-contact__split-overlay {
  background: rgba(0, 0, 0, 0.38);
}

.ms-contact__split-eyebrow {
  font-family: var(--font-body--family);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #ffffff;
  margin-bottom: 8px;
}

.ms-contact__split-title {
  font-family: var(--font-heading--family);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #ffffff;
  text-align: center;
  margin: 0;
  line-height: 1.25;
} */







/* New One New One New One */

/*
 * misora-sections.css
 * Mi Sora — Figma-aligned redesign
 * Font: Moret (serif) primary
 * Palette: #1B3A2B dark green | #FDF8F0 cream | #1E2D24 footer
 */

/* ============================================================
    0. CSS VARIABLES & GLOBAL
    ============================================================ */

.ms-hero,
.ms-intro,
.ms-coolers,
.ms-functional,
.ms-split-promo,
.ms-benefits,
.ms-mi-club,
.ms-testimonial,
.ms-instagram {
  --font-primary: var(--font-heading--family);
  --color-dark-green: #1B3A2B;
  --color-charcoal: #2C2C2C;
  --color-muted-text: #5A5A5A;
  --color-cream: #FDF8F0;
  --color-cream-alt: #F4EFE6;
  --color-matcha-pastel: #EAF4E8;
  --color-footer-bg: #1E2D24;
}

/* ============================================================
    0a. CONTAINER — Centered page-width wrapper
    ============================================================ */

.ms-container {
  width: 100%;
  max-width: var(--normal-page-width, 120rem);
  margin: 0 auto;
  padding-inline: var(--page-margin, 16px);
  box-sizing: border-box;
}

@media screen and (min-width: 750px) {
  .ms-container {
    --page-margin: 40px;
  }
}

/* ============================================================
    1. HEADER — Fully transparent, white logo, right menu
    ============================================================ */

/* Override Shopify header for transparent look */
header-component,
.header-section,
.ms-header {
  background: transparent !important;
  box-shadow: none !important;
}


/* Nav link typography is intentionally NOT styled here.
   It is driven by the header schema settings (font, size, case)
   in the theme editor — do not hardcode nav styles in CSS. */

/* Hide any Shopify cart icon / actions that don't match Figma */
.header__actions,
.header-actions,
.ms-header__actions {
  display: flex !important;
  align-items: center !important;
  gap: 1rem !important;
}

/* ============================================================
    2. HERO — Two-column split layout
    ============================================================ */

.ms-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: #FDF8F0;
}

.ms-hero__panel--content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 80px 40px 80px 40px;
  background: #FDF8F0;
}

.ms-hero__content-inner {
  width: 100%;
  max-width: 520px;
}

.ms-hero__panel--media {
  position: relative;
  overflow: hidden;
}

.ms-hero__panel--media .ms-hero__dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 8px;
  margin: 0;
}

.ms-hero__panel--media .ms-hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease;
}

.ms-hero__panel--media .ms-hero__dot--active {
  background: #ffffff;
}

.ms-hero__slides {
  position: absolute;
  inset: 0;
}

.ms-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.ms-hero__slide--active {
  opacity: 1;
}

.ms-hero__bg {
  position: absolute;
  inset: 0;
}

.ms-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ms-hero__overlay {
  display: none;
}

.ms-hero__title {
  font-family: var(--font-heading--family);
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 400;
  line-height: 1.05;
  margin: 0 0 24px;
  color: #1B3A2B;
}

.ms-hero__title em {
  font-style: italic;
  font-weight: 550;
}

.ms-hero__body {
  font-family: var(--font-body--family);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  max-width: 460px;
  color: #5A5A5A;
  margin: 0 0 40px;
}

.ms-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.ms-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 0 30px;
  border-radius: 999px;
  font-family: var(--font-body--family);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.35s ease;
  cursor: pointer;
}

.ms-hero__btn--primary {
  background: #1B3A2B;
  color: #FFF8E8;
  border: none;
}

.ms-hero__btn--primary:hover {
  background: #245A3A;
  transform: scale(1.04);
}

.ms-hero__btn--text {
  background: transparent;
  color: #1B3A2B;
  border: none;
  padding: 0;
  height: auto;
  text-decoration: underline;
  text-underline-offset: 4px;
  letter-spacing: 0.1em;
}

.ms-hero__btn--text:hover {
  opacity: 0.6;
}

@media (max-width: 900px) {
  .ms-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .ms-hero__panel--content {
    padding: 60px 32px;
    order: 1;
  }

  .ms-hero__content-inner {
    max-width: 100%;
  }

  .ms-hero__panel--media {
    min-height: 50svh;
    order: 0;
  }

  .ms-hero__title {
    font-size: clamp(36px, 10vw, 48px);
  }

  .ms-hero__body {
    font-size: 14px;
    max-width: 100%;
  }

  .ms-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================================
    BUBBLES — Sparkling cocktail effect
    ============================================================ */

.ms-hero__bubbles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.ms-bubble {
  position: absolute;
  bottom: -30px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 248, 232, 0.4);
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.25), transparent 65%);
  box-shadow: inset 0 -1px 4px rgba(255, 248, 232, 0.2), 0 0 6px rgba(255, 248, 232, 0.08);
  animation: ms-bubble-rise linear infinite;
}

.ms-bubble:nth-child(1) {
  left: 5%;
  width: 14px;
  height: 14px;
  animation-duration: 14s;
  animation-delay: 1s;
  filter: blur(0.5px);
}

.ms-bubble:nth-child(2) {
  left: 12%;
  width: 20px;
  height: 20px;
  animation-duration: 18s;
  animation-delay: 2.5s;
  filter: blur(0.3px);
}

.ms-bubble:nth-child(3) {
  left: 22%;
  width: 10px;
  height: 10px;
  animation-duration: 12s;
  animation-delay: 0.5s;
}

.ms-bubble:nth-child(4) {
  left: 32%;
  width: 18px;
  height: 18px;
  animation-duration: 16s;
  animation-delay: 4s;
  filter: blur(0.5px);
}

.ms-bubble:nth-child(5) {
  left: 42%;
  width: 22px;
  height: 22px;
  animation-duration: 20s;
  animation-delay: 1.8s;
  filter: blur(0.4px);
  box-shadow: inset 0 -1px 4px rgba(255, 248, 232, 0.25), 0 0 10px rgba(255, 248, 232, 0.12);
}

.ms-bubble:nth-child(6) {
  left: 52%;
  width: 12px;
  height: 12px;
  animation-duration: 13s;
  animation-delay: 6s;
}

.ms-bubble:nth-child(7) {
  left: 62%;
  width: 16px;
  height: 16px;
  animation-duration: 17s;
  animation-delay: 3s;
  filter: blur(0.3px);
}

.ms-bubble:nth-child(8) {
  left: 72%;
  width: 20px;
  height: 20px;
  animation-duration: 15s;
  animation-delay: 5s;
  filter: blur(0.4px);
  box-shadow: inset 0 -1px 4px rgba(255, 248, 232, 0.25), 0 0 8px rgba(255, 248, 232, 0.1);
}

.ms-bubble:nth-child(9) {
  left: 82%;
  width: 14px;
  height: 14px;
  animation-duration: 19s;
  animation-delay: 0.8s;
}

.ms-bubble:nth-child(10) {
  left: 90%;
  width: 9px;
  height: 9px;
  animation-duration: 11s;
  animation-delay: 7s;
}

.ms-bubble:nth-child(11) {
  left: 8%;
  width: 17px;
  height: 17px;
  animation-duration: 22s;
  animation-delay: 4.5s;
  filter: blur(0.3px);
}

.ms-bubble:nth-child(12) {
  left: 68%;
  width: 11px;
  height: 11px;
  animation-duration: 12.5s;
  animation-delay: 2s;
}

.ms-bubble:nth-child(13) {
  left: 48%;
  width: 8px;
  height: 8px;
  animation-duration: 10s;
  animation-delay: 8s;
}

.ms-bubble:nth-child(14) {
  left: 18%;
  width: 15px;
  height: 15px;
  animation-duration: 21s;
  animation-delay: 6.5s;
  filter: blur(0.4px);
}

.ms-bubble:nth-child(15) {
  left: 78%;
  width: 13px;
  height: 13px;
  animation-duration: 16s;
  animation-delay: 9s;
}

.ms-bubble:nth-child(16) {
  left: 38%;
  width: 19px;
  height: 19px;
  animation-duration: 24s;
  animation-delay: 3.2s;
  filter: blur(0.3px);
  box-shadow: inset 0 -1px 4px rgba(255, 248, 232, 0.25), 0 0 8px rgba(255, 248, 232, 0.1);
}

.ms-bubble:nth-child(17) {
  left: 88%;
  width: 10px;
  height: 10px;
  animation-duration: 13s;
  animation-delay: 10s;
}

.ms-bubble:nth-child(18) {
  left: 58%;
  width: 16px;
  height: 16px;
  animation-duration: 19s;
  animation-delay: 1.2s;
  filter: blur(0.3px);
}

@keyframes ms-bubble-rise {
  0% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0;
  }

  8% {
    opacity: 0.8;
  }

  30% {
    transform: translateY(-30vh) translateX(8px) scale(1.02);
    opacity: 0.75;
  }

  60% {
    transform: translateY(-65vh) translateX(-6px) scale(0.95);
    opacity: 0.5;
  }

  100% {
    transform: translateY(-115vh) translateX(4px) scale(0.7);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ms-hero__bubbles {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ms-hero__bubbles {
    display: none;
  }
}

/* ============================================================
    FLAVOUR MARQUEE — Pink strip below hero
    ============================================================ */

.ms-flavour-marquee {
  width: 100%;
  overflow: hidden;
  background: #FDF8F0;
  color: #1B472D;
  white-space: nowrap;
  line-height: 0;
}

.ms-flavour-marquee__track {
  display: inline-flex;
  animation: ms-flavour-marquee-scroll 35s linear infinite;
  will-change: transform;
  backface-visibility: hidden;
}

.ms-flavour-marquee__item {
  display: inline-block;
  flex-shrink: 0;
  padding: 0 14px;
  font-family: var(--font-heading--family);
  font-size: 36px;
  font-style: italic;
  font-weight: 400;
  line-height: 88px;
  color: #1B472D;
  white-space: nowrap;
}

.ms-flavour-marquee:hover .ms-flavour-marquee__track {
  animation-play-state: paused;
}

@keyframes ms-flavour-marquee-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-16.666%, 0, 0);
  }
}

@media (max-width: 767px) {
  .ms-flavour-marquee__item {
    font-size: 26px;
    line-height: 64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ms-flavour-marquee__track {
    animation: none;
  }
}

/* ============================================================
    3. INTRO SECTION — Cream background
    ============================================================ */

.ms-intro {
  padding: 110px 0;
  background-color: white;
}

.ms-intro .ms-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

@media (min-width: 768px) {
  .ms-intro .ms-container {
    grid-template-columns: 1fr 1fr;
    gap: 140px;
  }
  .ms-intro__right { padding-left: 0; }
}

.ms-intro__heading {
  font-family: var(--font-heading--family);
  font-size: clamp(2.2rem, 5.5vw, 2.5rem);
  font-weight: 550;
  line-height: 1.1;
  text-transform: none;
  text-align: left;
  color: #1B3A2B;
  margin: 0;
  letter-spacing: -1px;
  transform: scaleY(1.5);
  transform-origin: center;
  font-weight: bold;
  text-transform: uppercase;
}

.ms-intro__right {
  display: flex;
  flex-direction: column;
  gap: 40px;
  text-align: left;
}

.ms-intro__body {
  font-family: var(--font-body--family);
  text-align: left;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: #2C2C2C;
  margin: 0;
  max-width: 380px;
  margin-right: auto;
}

.ms-intro__links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.ms-intro__link {
  cursor: pointer;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.35s ease;
}

.ms-intro__link--primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 0 30px;
  border-radius: 999px;
  font-family: var(--font-body--family);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  background: #1B3A2B;
  color: #FFF8E8;
  border: none;
}

.ms-intro__link--primary:hover {
  background: #245A3A;
  transform: scale(1.04);
}

.ms-intro__link--text {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body--family);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  background: transparent;
  color: #1B3A2B;
  border: none;
  padding: 0;
  height: auto;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.ms-intro__link--text:hover {
  opacity: 0.6;
}

/* ============================================================
    4. COOLERS SECTION — Cream bg
    ============================================================ */

.ms-coolers {
  background-color: #FDF8F0;
  padding: 80px 0;
}

.ms-coolers__header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .ms-coolers__header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.ms-coolers__heading {
  font-family: var(--font-heading--family);
  font-size: clamp(2rem, 6vw, 2.25rem);
  font-weight: 400;
  text-transform: uppercase;
  color: #1B3A2B;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -1px;
  transform: scaleY(1.3);
  transform-origin: center;
  font-weight: bold;
}

.ms-coolers__filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ms-filter-pill {
  font-family: var(--font-body--family);
  font-size: 16px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.02em;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1.5px solid #1B3A2B;
  background: transparent;
  color: #1B3A2B;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-transform: uppercase;
}

.ms-filter-pill:hover,
.ms-filter-pill--active {
  background: #1B3A2B;
  color: #ffffff;
}

/* Product grid — 4 col desktop */
.ms-coolers__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (min-width: 1024px) {
  .ms-coolers__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Product Card */
.ms-product-card {
  display: flex;
  flex-direction: column;
}

.ms-product-card__image-wrap {
  background: #D9F4DA;
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  aspect-ratio: 3 / 4;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.ms-product-card[data-category="non-alcoholic"] .ms-product-card__image-wrap {
  background: #E2F0D9;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }
}

.ms-product-card__can {
  width: 100%;
  height: 100%;
  background: transparent;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.16));
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 3s ease-in-out infinite;
  transition: transform 0.5s ease;
}

.ms-product-card__image-wrap:hover .ms-product-card__can {
  animation: none;
  transform: scale(1.08);
}

.ms-product-card__can img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ms-product-card__name {
  font-family: var(--font-heading--family);
  font-size: 22px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  color: #1B3A2B;
  margin: 0 0 4px;
  line-height: 1.3;
  text-transform: uppercase;
}

.ms-product-card__desc {
  font-family: var(--font-body--family);
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  color: #5A5A5A;
  line-height: 1.4;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.ms-product-card__actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.ms-btn-primary {
  font-family: var(--font-body--family);
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.05em;
  background: #1B3A2B;
  color: #ffffff;
  border: none;
  padding: 9px 20px;
  cursor: pointer;
  border-radius: 40px;
  transition: background 0.2s;
  text-transform: uppercase;
}

.ms-btn-primary:hover {
  background: #2C5E3A;
}

.ms-btn-link {
  font-family: var(--font-body--family);
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.05em;
  color: #1B3A2B;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: opacity 0.2s;
  text-transform: uppercase;
}

.ms-btn-link:hover {
  opacity: 0.6;
}

/* Cocktails teaser (spans 2 cols) */
.ms-cocktails-teaser {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  text-align: right;
}

@media (min-width: 1024px) {
  .ms-cocktails-teaser {
    grid-column: span 2;
  }
}

.ms-cocktails-teaser__heading {
  font-family: var(--font-heading--family);
  font-size: clamp(2rem, 5vw, 2.25rem);
  font-weight: 400;
  text-transform: uppercase;
  color: #1B3A2B;
  margin: 0 0 32px;
  letter-spacing: -1px;
  transform: scaleY(1.3);
  transform-origin: center;
  font-weight: bold;
}

.ms-cocktails-teaser__inner {
  display: flex;
  gap: 24px;
  width: 100%;
}

.ms-cocktail-card {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ms-cocktail-card__image-wrap {
  background: #D9F4DA;
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  aspect-ratio: 3 / 4;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.ms-cocktails-teaser .ms-cocktail-card__image-wrap {
  background: #3F8146;
  box-shadow: none;
}

.ms-cocktail-card__wishlist {
  position: absolute;
  top: 14px;
  right: 14px;
  background: transparent;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 4px;
  transition: transform 0.2s;
}

.ms-cocktail-card__wishlist:hover {
  transform: scale(1.15);
}

.ms-cocktail-card__can {
  width: 100%;
  height: 100%;
  object-fit: contain;
  -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
  animation: float 3s ease-in-out infinite;
  animation-delay: 1.5s;
  transition: transform 0.5s ease;
  transform: scale(1.04);
}

.ms-cocktail-card__image-wrap:hover .ms-cocktail-card__can {
  animation: none;
  transform: scale(1.06);
}

.ms-cocktail-card__name {
  font-family: var(--font-heading--family);
  font-size: 24px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  color: #1B3A2B;
  margin: 0 0 4px;
  line-height: 1.3;
  font-style: bold;
  text-transform: uppercase;
}

.ms-cocktail-card__desc {
  font-family: var(--font-body--family);
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  color: #5A5A5A;
  line-height: 1.4;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.ms-cocktail-card__actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.ms-btn-dark {
  font-family: var(--font-body--family);
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.05em;
  background: #1B3A2B;
  color: #ffffff;
  border: none;
  padding: 9px 20px;
  cursor: pointer;
  border-radius: 40px;
  transition: opacity 0.2s;
  text-transform: uppercase;
}

.ms-btn-dark:hover {
  opacity: 0.8;
}

/* ============================================================
    5. FUNCTIONAL MATCHA — White, 5 column icons
    ============================================================ */

.ms-functional {
  padding: 96px 0;
  background: #ffffff;
  border-bottom: 1px solid #E5E5E5;
}

.ms-functional__header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 80px;
  gap: 24px;
}

@media (min-width: 768px) {
  .ms-functional__header {
    flex-direction: row;
    align-items: flex-end;
  }
}

.ms-functional__heading {
  font-family: var(--font-heading--family);
  font-size: clamp(2rem, 6vw, 2.25rem);
  font-weight: 400;
  text-transform: uppercase;
  color: #1B3A2B;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -1px;
  transform: scaleY(1.3);
  transform-origin: center;
  font-weight: bold;
}

.ms-functional__sub {
  font-family: var(--font-body--family);
  font-size: 16px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  color: #5A5A5A;
  max-width: 240px;
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 768px) {
  .ms-functional__sub {
    text-align: right;
  }
}

.ms-functional__icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  text-align: center;
}

@media (min-width: 600px) {
  .ms-functional__icons {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .ms-functional__icons {
    grid-template-columns: repeat(5, 1fr);
    gap: 48px;
  }
}

.ms-benefit-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.ms-benefit-icon__circle {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background: #E2F0D9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ms-benefit-icon__circle img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  filter: brightness(1.6) contrast(1.2) saturate(1.1);
}

.ms-benefit-icon__label-top {
  font-family: var(--font-body--family);
  font-size: 18px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  color: #1B3A2B;
  margin: 0 0 2px;
}

.ms-benefit-icon__label-bottom {
  font-family: var(--font-body--family);
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
  color: #5A5A5A;
  margin: 0;
  text-align: center;
  line-height: 1.3;
}

/* ============================================================
    6. SPLIT PROMO — 2-col image panels
    ============================================================ */

.ms-split-promo {
  display: grid;
  grid-template-columns: 1fr;
  height: auto;
  background: #FDF8F0;
}

@media (min-width: 768px) {
  .ms-split-promo {
    grid-template-columns: 1fr 1fr;
    height: 560px;
  }
}

.ms-split-promo__panel {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  min-height: 280px;
}

.ms-split-promo__bg {
  position: absolute;
  inset: 0;
  transition: transform 0.7s ease;
}

.ms-split-promo__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ms-split-promo__panel:hover .ms-split-promo__bg {
  transform: scale(1.08);
}

.ms-split-promo__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.28);
  transition: background 0.3s;
}

.ms-split-promo__panel:hover .ms-split-promo__content {
  background: rgba(0, 0, 0, 0.38);
}

.ms-split-promo__eyebrow {
  font-family: var(--font-body--family);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: normal;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.3;
}

.ms-split-promo__title {
  font-family: var(--font-heading--family);
  font-size: clamp(2rem, 6vw, 2.25rem);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: -1px;
  color: #ffffff;
  text-align: center;
  margin: 0;
  line-height: 1.2;
  transform: scaleY(1.3);
  transform-origin: center;
}










/* ============================================================
    8. WHY MI SORA — Cream bg, 4 cards
    ============================================================ */

.why-mi-sora {
  background: #F8F4E8;
  padding: 70px 0 100px;
}

.why-mi-sora__eyebrow {
  font-family: var(--font-body--family);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1D4B2C;
  margin: 0 0 16px;
  text-align: center;
}

.why-mi-sora__heading {
  font-family: var(--font-heading--family);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.15;
  color: #1B3A2B;
  margin: 0 0 48px;
  text-align: center;
}

.why-mi-sora__heading em {
  font-style: italic;
  font-weight: 550;
  color: #5B8C5A;
}

.why-mi-sora__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-mi-sora__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  border-radius: 30px;
  padding: 24px;
  min-height: 280px;
  background: #234B36;
  box-shadow: 0 4px 12px rgba(31, 59, 39, 0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.why-mi-sora__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(31, 59, 39, 0.15);
}

.why-mi-sora__card--pink {
}

.why-mi-sora__card--mint {
}

.why-mi-sora__card--yellow {
}

.why-mi-sora__card--lavender {
}

.why-mi-sora__card h3 {
  font-family: var(--font-heading--family);
  font-size: clamp(30px, 2.8vw, 40px);
  font-weight: 400;
  line-height: 1.1;
  color: #FDF8F0;
  margin: 0 0 24px;
  min-height: 120px;
  transform: scaleY(1.12);
  transform-origin: top left;
}

.why-mi-sora__card p {
  font-family: var(--font-body--family);
  font-size: 15px;
  font-weight: 550;
  line-height: 1.55;
  color: #C8DCC0;
  margin: 0;
}

@media (max-width: 1024px) {
  .why-mi-sora__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-mi-sora {
    padding: 60px 0;
  }

  .why-mi-sora__grid {
    grid-template-columns: 1fr;
  }

  .why-mi-sora__card {
    min-height: auto;
  }
}

/* ============================================================
    9. MI CLUB SIGNUP — Full-width hero with background image
    ============================================================ */

.ms-mi-club {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 60px 24px;
  overflow: hidden;
}

.ms-mi-club__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ms-mi-club__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.ms-mi-club__bg-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading--family);
  font-size: 20vw;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.03);
  user-select: none;
  pointer-events: none;
  letter-spacing: -0.04em;
  line-height: 1;
}

.ms-mi-club__bubbles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .ms-mi-club__bubbles {
    display: none;
  }
}

.ms-mi-club__bubbles .ms-bubble {
  border-color: rgba(255, 255, 255, 0.45);
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), transparent 65%);
  box-shadow: inset 0 -1px 4px rgba(255, 255, 255, 0.25), 0 0 8px rgba(255, 255, 255, 0.1);
}

.ms-mi-club__bubbles .ms-bubble:nth-child(1) {
  left: 8%;
  width: 16px;
  height: 16px;
  animation-duration: 16s;
  animation-delay: 0.5s;
  filter: blur(0.3px);
}

.ms-mi-club__bubbles .ms-bubble:nth-child(2) {
  left: 18%;
  width: 10px;
  height: 10px;
  animation-duration: 12s;
  animation-delay: 3s;
}

.ms-mi-club__bubbles .ms-bubble:nth-child(3) {
  left: 30%;
  width: 20px;
  height: 20px;
  animation-duration: 19s;
  animation-delay: 1.2s;
  filter: blur(0.4px);
}

.ms-mi-club__bubbles .ms-bubble:nth-child(4) {
  left: 42%;
  width: 12px;
  height: 12px;
  animation-duration: 14s;
  animation-delay: 5s;
}

.ms-mi-club__bubbles .ms-bubble:nth-child(5) {
  left: 55%;
  width: 18px;
  height: 18px;
  animation-duration: 21s;
  animation-delay: 2s;
  filter: blur(0.3px);
}

.ms-mi-club__bubbles .ms-bubble:nth-child(6) {
  left: 65%;
  width: 8px;
  height: 8px;
  animation-duration: 11s;
  animation-delay: 6.5s;
}

.ms-mi-club__bubbles .ms-bubble:nth-child(7) {
  left: 75%;
  width: 14px;
  height: 14px;
  animation-duration: 17s;
  animation-delay: 3.5s;
}

.ms-mi-club__bubbles .ms-bubble:nth-child(8) {
  left: 85%;
  width: 22px;
  height: 22px;
  animation-duration: 22s;
  animation-delay: 0.8s;
  filter: blur(0.4px);
}

.ms-mi-club__bubbles .ms-bubble:nth-child(9) {
  left: 48%;
  width: 6px;
  height: 6px;
  animation-duration: 10s;
  animation-delay: 7s;
}

.ms-mi-club__bubbles .ms-bubble:nth-child(10) {
  left: 92%;
  width: 15px;
  height: 15px;
  animation-duration: 18s;
  animation-delay: 4.2s;
  filter: blur(0.3px);
}

.ms-mi-club__bubbles .ms-bubble:nth-child(11) {
  left: 22%;
  width: 13px;
  height: 13px;
  animation-duration: 15s;
  animation-delay: 2.8s;
}

.ms-mi-club__bubbles .ms-bubble:nth-child(12) {
  left: 70%;
  width: 9px;
  height: 9px;
  animation-duration: 13s;
  animation-delay: 1.5s;
}

.ms-mi-club__bubbles .ms-bubble:nth-child(13) {
  left: 38%;
  width: 11px;
  height: 11px;
  animation-duration: 14s;
  animation-delay: 9s;
}

.ms-mi-club__bubbles .ms-bubble:nth-child(14) {
  left: 58%;
  width: 17px;
  height: 17px;
  animation-duration: 20s;
  animation-delay: 0.3s;
  filter: blur(0.3px);
}

.ms-mi-club__bubbles .ms-bubble:nth-child(15) {
  left: 15%;
  width: 7px;
  height: 7px;
  animation-duration: 11s;
  animation-delay: 8s;
}

.ms-mi-club__bubbles .ms-bubble:nth-child(16) {
  left: 88%;
  width: 19px;
  height: 19px;
  animation-duration: 23s;
  animation-delay: 5.5s;
  filter: blur(0.4px);
}

.ms-mi-club__bubbles .ms-bubble:nth-child(17) {
  left: 50%;
  width: 13px;
  height: 13px;
  animation-duration: 16s;
  animation-delay: 3s;
}

.ms-mi-club__bubbles .ms-bubble:nth-child(18) {
  left: 3%;
  width: 10px;
  height: 10px;
  animation-duration: 12s;
  animation-delay: 10s;
}

.ms-mi-club__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 580px;
  text-align: left;
  margin-left: 5%;
}

.ms-mi-club__eyebrow {
  font-family: var(--font-body--family);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 16px;
}

.ms-mi-club__heading {
  font-family: var(--font-heading--family);
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  font-weight: 550;
  line-height: 1.1;
  color: #FFFFFF;
  margin: 0 0 24px;
  white-space: nowrap;
  transform: scaleY(1.12);
  transform-origin: left center;
}

.ms-mi-club__heading em {
  font-style: italic;
  font-weight: 550;
  color: #FFFFFF;
}

.ms-mi-club__desc {
  font-family: var(--font-body--family);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  max-width: 460px;
  margin: 0 0 36px;
}

.ms-mi-club__form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  max-width: 460px;
  margin: 0;
}

.ms-mi-club__input {
  width: 100%;
  background: transparent !important;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  color: #FFFFFF;
  font-family: var(--font-body--family);
  font-size: 15px;
  font-weight: 550;
  padding: 16px 20px;
  outline: none;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.ms-mi-club__input::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.ms-mi-club__input:focus {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.ms-mi-club__input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
  -webkit-text-fill-color: #FFFFFF !important;
  caret-color: #FFFFFF;
}

.ms-mi-club__submit {
  width: 100%;
  background: #1B3A2B;
  color: #F8F4E8;
  font-family: var(--font-body--family);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 28px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  text-align: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

.ms-mi-club__submit:hover {
  background: #245A3A;
  transform: translateY(-2px);
}

.ms-mi-club__note {
  font-family: var(--font-body--family);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1B3A2B;
  margin: 0;
}

@media (max-width: 600px) {
  .ms-mi-club {
    min-height: 420px;
    padding: 40px 20px;
  }

  .ms-mi-club__heading {
    font-size: clamp(2.2rem, 10vw, 2.8rem);
  }

  .ms-mi-club__desc {
    font-size: 14px;
  }

  .ms-mi-club__input {
    padding: 14px 18px;
  }

  .ms-mi-club__submit {
    padding: 16px 24px;
  }
}

/* ============================================================
    9. TESTIMONIAL — Dark green bg
    ============================================================ */

.ms-testimonial {
  min-height: 335px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 24px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #FFFDF2;
  text-align: center;
}

.ms-testimonial__content {
  position: relative;
  max-width: 620px;
  transition: transform 0.4s ease;
}

.ms-testimonial:hover .ms-testimonial__content {
  transform: translateY(-4px);
}

.ms-testimonial__content::after {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 24px;
  background: radial-gradient(ellipse at center, rgba(255, 253, 242, 0.06), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.ms-testimonial:hover .ms-testimonial__content::after {
  opacity: 1;
}

.ms-testimonial__stars {
  margin: 0 0 22px;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #FFFDF2;
}

.ms-testimonial__stars span {
  display: inline-block;
  transition: transform 0.4s ease, color 0.4s ease, text-shadow 0.4s ease;
}

.ms-testimonial:hover .ms-testimonial__stars span:nth-child(1) {
  transform: translateY(-6px) scale(1.25);
  text-shadow: 1px 1px 4px rgba(27, 58, 43, 0.5), 0 0 0 0.5px rgba(255, 253, 242, 0.85), 0 0 16px rgba(212, 175, 55, 0.4);
  transition-delay: 0s;
}

.ms-testimonial:hover .ms-testimonial__stars span:nth-child(2) {
  transform: translateY(-6px) scale(1.25);
  text-shadow: 1px 1px 4px rgba(27, 58, 43, 0.5), 0 0 0 0.5px rgba(255, 253, 242, 0.85), 0 0 16px rgba(212, 175, 55, 0.4);
  transition-delay: 0.08s;
}

.ms-testimonial:hover .ms-testimonial__stars span:nth-child(3) {
  transform: translateY(-6px) scale(1.25);
  text-shadow: 1px 1px 4px rgba(27, 58, 43, 0.5), 0 0 0 0.5px rgba(255, 253, 242, 0.85), 0 0 16px rgba(212, 175, 55, 0.4);
  transition-delay: 0.16s;
}

.ms-testimonial:hover .ms-testimonial__stars span:nth-child(4) {
  transform: translateY(-6px) scale(1.25);
  text-shadow: 1px 1px 4px rgba(27, 58, 43, 0.5), 0 0 0 0.5px rgba(255, 253, 242, 0.85), 0 0 16px rgba(212, 175, 55, 0.4);
  transition-delay: 0.24s;
}

.ms-testimonial:hover .ms-testimonial__stars span:nth-child(5) {
  transform: translateY(-6px) scale(1.25);
  text-shadow: 1px 1px 4px rgba(27, 58, 43, 0.5), 0 0 0 0.5px rgba(255, 253, 242, 0.85), 0 0 16px rgba(212, 175, 55, 0.4);
  transition-delay: 0.32s;
}

.ms-testimonial__quote {
  margin: 0;
  font-family: var(--font-heading--family);
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #FFFDF2;
  max-width: 590px;
  margin-left: auto;
  margin-right: auto;
  transition: color 0.4s ease, text-shadow 0.4s ease, transform 0.4s ease;
}

.ms-testimonial:hover .ms-testimonial__quote {
  color: #FFFFFF;
  text-shadow: 0 0 24px rgba(255, 253, 242, 0.15), 0 0 8px rgba(255, 253, 242, 0.08);
  transform: scale(1.02);
}

.ms-testimonial__author {
  margin: 20px 0 0;
  font-family: var(--font-body--family);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FFFDF2;
  transition: color 0.4s ease, letter-spacing 0.4s ease;
}

.ms-testimonial:hover .ms-testimonial__author {
  color: #FFFFFF;
  letter-spacing: 0.14em;
}

@media (prefers-reduced-motion: reduce) {

  .ms-testimonial__content,
  .ms-testimonial__quote,
  .ms-testimonial__author,
  .ms-testimonial__stars span {
    transition: none;
  }

  .ms-testimonial:hover .ms-testimonial__content {
    transform: none;
  }

  .ms-testimonial:hover .ms-testimonial__stars span {
    transform: none;
    color: #FFFDF2;
    text-shadow: none;
  }

  .ms-testimonial:hover .ms-testimonial__quote {
    transform: none;
    text-shadow: none;
  }

  .ms-testimonial:hover .ms-testimonial__author {
    letter-spacing: 0.08em;
  }

  .ms-testimonial__content::after {
    display: none;
  }
}

@media (max-width: 767px) {
  .ms-testimonial {
    min-height: auto;
    padding: 60px 20px;
  }

  .ms-testimonial__content {
    max-width: 100%;
  }

  .ms-testimonial__stars {
    font-size: 20px;
    margin-bottom: 18px;
  }

  .ms-testimonial__quote {
    font-size: clamp(20px, 4vw, 24px);
    line-height: 1.3;
    letter-spacing: normal;
    max-width: 100%;
  }

  .ms-testimonial__author {
    margin-top: 16px;
    font-size: 11px;
  }
}

/* ---------- Testimonial carousel ---------- */
.ms-testimonial__viewport {
  overflow: hidden;
}

.ms-testimonial__track {
  display: flex;
  animation: ms-testimonial-carousel 20s infinite;
}

.ms-testimonial:hover .ms-testimonial__track {
  animation-play-state: paused;
}

.ms-testimonial__slide {
  width: 100%;
  flex-shrink: 0;
}

@keyframes ms-testimonial-carousel {

  0%,
  20% {
    transform: translateX(0);
  }

  25%,
  45% {
    transform: translateX(-100%);
  }

  50%,
  70% {
    transform: translateX(-200%);
  }

  75%,
  95% {
    transform: translateX(-300%);
  }

  100% {
    transform: translateX(-400%);
  }
}

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

/* ============================================================
    9B. OUR STORY SECTION — Cream bg (same as Why Mi Sora)
    ============================================================ */

.ms-story {
  background: #F8F4E8;
  padding: 70px 0 100px;
}

.ms-story__eyebrow {
  font-family: var(--font-body--family);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1D4B2C;
  margin: 0 0 16px;
  text-align: center;
}

.ms-story__heading {
  font-family: var(--font-heading--family);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.15;
  color: #1B3A2B;
  margin: 0 0 48px;
  text-align: center;
}

.ms-story__heading em {
  font-style: italic;
  font-weight: 550;
  color: #5B8C5A;
}

.ms-story__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 600px) {
  .ms-story__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .ms-story__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.ms-story__card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 16px;
  background: #e5e5e5;
  box-shadow: 0 4px 12px rgba(31, 59, 39, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.ms-story__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(31, 59, 39, 0.14);
}

.ms-story__card-image {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.ms-story__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.ms-story__card:hover .ms-story__card-image img {
  transform: scale(1.04);
}

.ms-story__card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}

.ms-story__card:hover .ms-story__card-overlay {
  opacity: 1;
}

.ms-story__card-title {
  font-family: var(--font-heading--family);
  font-size: 24px;
  font-weight: 400;
  color: #FFFDF2;
  margin: 0 0 16px;
  line-height: 1.2;
}

.ms-story__btn {
  display: inline-block;
  padding: 10px 28px;
  border-radius: 50px;
  border: 1.5px solid #FFFDF2;
  background: transparent;
  color: #FFFDF2;
  font-family: var(--font-body--family);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.ms-story__btn:hover {
  background: #FFFDF2;
  color: #1B3A2B;
}

.ms-story__card-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease, opacity 0.3s ease;
  padding: 0 24px;
  opacity: 0;
  background: #FFFDF2;
}

.ms-story__card.is-expanded .ms-story__card-content {
  max-height: 600px;
  padding: 24px;
  opacity: 1;
}

.ms-story__card-content p {
  font-family: var(--font-body--family);
  font-size: 14px;
  font-weight: 550;
  line-height: 1.65;
  color: #3A5A47;
  margin: 0 0 12px;
}

.ms-story__card-content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .ms-story {
    padding: 60px 0;
  }

  .ms-story__card-image {
    aspect-ratio: 4 / 3;
  }

  .ms-story__card-title {
    margin-bottom: 14px;
  }

  .ms-story__btn {
    padding: 9px 24px;
    letter-spacing: 0.06em;
  }
}

/* Tablet */
@media (max-width: 768px) {
  .ms-story {
    padding: 60px 0;
  }

  .ms-story__card-image {
    aspect-ratio: 4 / 3;
  }

  .ms-story__card-title {
    margin-bottom: 14px;
  }

  .ms-story__btn {
    padding: 9px 24px;
    letter-spacing: 0.06em;
  }

  .ms-story__card-content p {
    line-height: 1.65;
    margin-bottom: 10px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .ms-story {
    padding: 60px 0;
  }

  .ms-story__card-image {
    aspect-ratio: 4 / 3;
  }

  .ms-story__card-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }

  .ms-story__btn {
    padding: 8px 20px;
    font-size: 0.75rem;
    border-width: 1.25px;
  }

  .ms-story__card-content p {
    font-size: 0.875rem;
    /* 14px */
    line-height: 1.6;
    margin-bottom: 8px;
  }
}

/* Tablet */
@media (max-width: 768px) {
  .ms-story__card.is-expanded .ms-story__card-content {
    max-height: 850px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .ms-story__card.is-expanded .ms-story__card-content {
    max-height: 1200px;
  }

  .ms-story__card-content {
    padding: 0 18px;
  }

  .ms-story__card.is-expanded .ms-story__card-content {
    padding: 18px;
  }

  .ms-story__card-content p {
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
}

/* ============================================================
    10. INSTAGRAM SECTION — Cream bg
    ============================================================ */

.ms-instagram {
  padding: 96px 0;
  background: #FDF8F0;
}

.ms-instagram__heading {
  font-family: var(--font-heading--family);
  font-size: clamp(1.8rem, 4vw, 2.25rem);
  font-weight: 400;
  text-transform: uppercase;
  color: #1B3A2B;
  margin: 0 0 48px;
  line-height: 1.2;
  letter-spacing: -1px;
  transform: scaleY(1.5);
  transform-origin: center;
  font-weight: bold;
}

.ms-instagram__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 600px) {
  .ms-instagram__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .ms-instagram__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

.ms-instagram__item {
  aspect-ratio: 1 / 1;
  background: #e5e5e5;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 16px;
}

.ms-instagram__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ms-instagram__item:hover img {
  transform: scale(1.04);
}

.ms-instagram__item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 16px;
}

.ms-instagram__item:hover .ms-instagram__item-overlay {
  opacity: 1;
}

.ms-instagram__item-overlay svg {
  width: 28px;
  height: 28px;
  color: #ffffff;
  fill: #ffffff;
}

/* ============================================================
    11. FOOTER — Dark green bg
    ============================================================ */

.ms-footer {
  background: #1E2D24;
  color: #CCCCCC;
  padding: 80px 0 0;
  font-family: var(--font-heading--family);
  overflow: hidden;
}

.ms-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 64px;
}

@media (min-width: 600px) {
  .ms-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .ms-footer__grid {
    grid-template-columns: auto 1fr 1fr 2fr;
    gap: 48px;
  }
}

.ms-footer__col-label {
  font-size: 14px;
  font-weight: 550;
  text-transform: none;
  letter-spacing: normal;
  color: #CCCCCC;
  margin: 0 0 24px;
}

.ms-footer__social {
  display: flex;
  gap: 18px;
  margin-top: 4px;
}

.ms-footer__social a {
  color: #CCCCCC;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.ms-footer__social a:hover {
  color: #C4D9B6;
}

.ms-footer__social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.ms-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ms-footer__nav a {
  font-size: 14px;
  font-weight: 550;
  text-transform: none;
  letter-spacing: normal;
  color: #CCCCCC;
  text-decoration: none;
  transition: color 0.2s;
}

.ms-footer__nav a:hover {
  color: #C4D9B6;
}

.ms-footer__newsletter {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ms-footer__newsletter-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #CCCCCC;
  margin: 0;
}

.ms-footer__email-wrap {
  position: relative;
  max-width: 360px;
  margin-top: 8px;
}

.ms-footer__email-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #CCCCCC;
  color: #CCCCCC;
  font-family: var(--font-body--family);
  font-size: 16px;
  letter-spacing: normal;
  padding: 8px 64px 8px 0;
  outline: none;
  border-radius: 0;
}

.ms-footer__email-input::placeholder {
  color: #888888;
}

.ms-footer__email-input:focus {
  border-color: #C4D9B6;
  color: #ffffff;
}

.ms-footer__email-submit {
  position: absolute;
  right: 0;
  bottom: 8px;
  background: transparent;
  border: none;
  font-family: var(--font-body--family);
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.05em;
  color: #CCCCCC;
  cursor: pointer;
  transition: color 0.2s;
  padding: 0;
}

.ms-footer__email-submit:hover {
  color: #C4D9B6;
}

.ms-footer__jumbo {
  text-align: center;
  overflow: hidden;
}

.ms-footer__jumbo-text {
  font-family: var(--font-heading--family);
  font-size: clamp(12vw, 20vw, 20vw);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.85;
  color: rgba(255, 255, 255, 0.05);
  user-select: none;
  display: block;
}

.ms-footer__bottom {
  padding: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
  .ms-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.ms-footer__bottom p {
  font-size: 14px;
  font-weight: 550;
  text-transform: none;
  letter-spacing: normal;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

/* ============================================================
    12. SCROLL OBSERVER STYLES
    ============================================================ */

.ms-reveal--delay-1 {
  transition-delay: 0.1s;
}

.ms-reveal--delay-2 {
  transition-delay: 0.2s;
}

.ms-reveal--delay-3 {
  transition-delay: 0.3s;
}

.ms-reveal--delay-4 {
  transition-delay: 0.4s;
}

/* ============================================================
    13. RESPONSIVE ADJUSTMENTS
    ============================================================ */

@media (max-width: 767px) {
  .ms-coolers__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .ms-cocktails-teaser {
    grid-column: span 2;
  }

  .ms-cocktails-teaser__inner {
    flex-direction: row;
  }

  .ms-mi-club__heading {
    font-size: clamp(2.5rem, 8vw, 4rem);
  }

  .ms-mi-club__desc {
    max-width: 400px;
  }

  .ms-footer__jumbo-text {
    font-size: 20vw;
  }
}

/* ============================================================
    14. HERO CAROUSEL — Crossfade slideshow
    ============================================================ */

.ms-hero-carousel .ms-hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ms-hero-carousel .ms-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.1s ease;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
  color: #ffffff;
}

.ms-hero-carousel .ms-hero__slide--active {
  opacity: 1;
  visibility: visible;
}

.ms-hero-carousel .ms-hero__slide .ms-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ms-hero-carousel .ms-hero__slide .ms-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ms-hero-carousel .ms-hero__slide .ms-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.25));
  z-index: 1;
}

/* ── End misora-sections.css ── */

/* ============================================================
    15. FUNCTIONAL MARQUEE — Horizontal 3D marquee
    ============================================================ */

.ms-functional__icons {
  overflow: hidden;
  display: flex;
  text-align: left;
  perspective: 800px;
  transform: rotateX(0.5deg);
  transform-origin: center center;
}

.ms-functional__icons-track {
  display: flex;
  gap: 56px;
  align-items: center;
  flex-shrink: 0;
  animation: ms-marquee-scroll 30s linear infinite;
  will-change: transform;
}

.ms-functional:hover .ms-functional__icons-track {
  animation-play-state: paused;
}

@keyframes ms-marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (min-width: 600px) {
  .ms-functional__icons-track {
    gap: 72px;
  }
}

@media (min-width: 1024px) {
  .ms-functional__icons-track {
    gap: 100px;
  }
}

/* ============================================================
    11. ANNOUNCEMENT BAR — Marquee
    ============================================================ */

/* Hide default theme announcement bar on landing page */
[data-template="index"] .announcement-bar {
  display: none;
}

.ms-announcement-bar {
  width: 100%;
  overflow: hidden;
  background: #244D35;
  color: #FFFDF2;
  white-space: nowrap;
  line-height: 0;
}

.ms-announcement-bar__track {
  display: inline-flex;
  animation: ms-announcement-marquee 30s linear infinite;
  will-change: transform;
  backface-visibility: hidden;
}

.ms-announcement-bar__content {
  display: inline-block;
  flex-shrink: 0;
  padding: 9px 14px;
  font-family: var(--font-body--family);
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #FFFDF2;
}

@keyframes ms-announcement-marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-16.666%, 0, 0);
  }
}

.ms-announcement-bar:hover .ms-announcement-bar__track {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .ms-announcement-bar__track {
    animation: none;
  }
}

/* ── End misora-sections.css ── */

/* ============================================================
    16. AGE GATE — Full-screen entry gate
    ============================================================ */

.ms-age-gate {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(255, 255, 255, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(0, 0, 0, 0.08) 0%, transparent 50%),
    linear-gradient(135deg,
      #5f8f4c 0%,
      #709f59 25%,
      #84b468 55%,
      #6f9f57 80%,
      #567f45 100%);
  overflow: hidden;
  padding: 40px 24px;
  box-sizing: border-box;
}

.ms-age-gate::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

[data-template="page.age-gate"] #MainContent {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ms-age-gate__bubbles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.ms-age-gate__bubbles .ms-bubble:nth-child(1) {
  left: 5%;
  width: 16px;
  height: 16px;
  animation-duration: 16s;
  animation-delay: 1s;
  filter: blur(0.3px);
}

.ms-age-gate__bubbles .ms-bubble:nth-child(2) {
  left: 14%;
  width: 10px;
  height: 10px;
  animation-duration: 13s;
  animation-delay: 3s;
}

.ms-age-gate__bubbles .ms-bubble:nth-child(3) {
  left: 24%;
  width: 20px;
  height: 20px;
  animation-duration: 19s;
  animation-delay: 1.5s;
  filter: blur(0.4px);
}

.ms-age-gate__bubbles .ms-bubble:nth-child(4) {
  left: 34%;
  width: 12px;
  height: 12px;
  animation-duration: 14s;
  animation-delay: 5s;
}

.ms-age-gate__bubbles .ms-bubble:nth-child(5) {
  left: 44%;
  width: 22px;
  height: 22px;
  animation-duration: 22s;
  animation-delay: 2s;
  filter: blur(0.4px);
}

.ms-age-gate__bubbles .ms-bubble:nth-child(6) {
  left: 54%;
  width: 8px;
  height: 8px;
  animation-duration: 11s;
  animation-delay: 6s;
}

.ms-age-gate__bubbles .ms-bubble:nth-child(7) {
  left: 64%;
  width: 14px;
  height: 14px;
  animation-duration: 17s;
  animation-delay: 3.5s;
  filter: blur(0.3px);
}

.ms-age-gate__bubbles .ms-bubble:nth-child(8) {
  left: 74%;
  width: 18px;
  height: 18px;
  animation-duration: 20s;
  animation-delay: 0.8s;
  filter: blur(0.4px);
}

.ms-age-gate__bubbles .ms-bubble:nth-child(9) {
  left: 84%;
  width: 10px;
  height: 10px;
  animation-duration: 12s;
  animation-delay: 7s;
}

.ms-age-gate__bubbles .ms-bubble:nth-child(10) {
  left: 92%;
  width: 15px;
  height: 15px;
  animation-duration: 18s;
  animation-delay: 4.2s;
  filter: blur(0.3px);
}

.ms-age-gate__bubbles .ms-bubble:nth-child(11) {
  left: 10%;
  width: 13px;
  height: 13px;
  animation-duration: 15s;
  animation-delay: 2.8s;
}

.ms-age-gate__bubbles .ms-bubble:nth-child(12) {
  left: 48%;
  width: 9px;
  height: 9px;
  animation-duration: 12s;
  animation-delay: 1.2s;
}

.ms-age-gate__bubbles .ms-bubble:nth-child(13) {
  left: 30%;
  width: 11px;
  height: 11px;
  animation-duration: 14s;
  animation-delay: 8s;
}

.ms-age-gate__bubbles .ms-bubble:nth-child(14) {
  left: 58%;
  width: 17px;
  height: 17px;
  animation-duration: 21s;
  animation-delay: 0.3s;
  filter: blur(0.3px);
}

.ms-age-gate__bubbles .ms-bubble:nth-child(15) {
  left: 78%;
  width: 7px;
  height: 7px;
  animation-duration: 11s;
  animation-delay: 9s;
}

.ms-age-gate__bubbles .ms-bubble:nth-child(16) {
  left: 18%;
  width: 19px;
  height: 19px;
  animation-duration: 23s;
  animation-delay: 5.5s;
  filter: blur(0.4px);
}

.ms-age-gate__bubbles .ms-bubble:nth-child(17) {
  left: 68%;
  width: 13px;
  height: 13px;
  animation-duration: 16s;
  animation-delay: 3s;
}

.ms-age-gate__bubbles .ms-bubble:nth-child(18) {
  left: 88%;
  width: 10px;
  height: 10px;
  animation-duration: 14s;
  animation-delay: 10s;
}

@media (prefers-reduced-motion: reduce) {
  .ms-age-gate__bubbles {
    display: none;
  }
}

.ms-age-gate__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  max-width: 500px;
}

.ms-age-gate__logo {
  margin-bottom: 8px;
}

.ms-age-gate__logo-img {
  width: 140px;
  height: auto;
  display: block;
}

.ms-age-gate__heading {
  font-family: var(--font-heading--family);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 400;
  line-height: 1.15;
  color: #ffffff;
  margin: 0;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.ms-age-gate__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.ms-age-gate__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 36px;
  border-radius: 999px;
  font-family: var(--font-body--family);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.35s ease;
  border: 1.5px solid transparent;
}

.ms-age-gate__btn--yes {
  background: #ffffff;
  color: #1B3A2B;
  border-color: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.ms-age-gate__btn--yes:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.ms-age-gate__btn--no {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.7);
}

.ms-age-gate__btn--no:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #ffffff;
}

.ms-age-gate__disclaimer {
  font-family: var(--font-body--family);
  font-size: 13px;
  font-weight: 550;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin: 8px 0 0;
  max-width: 420px;
}

@media (max-width: 767px) {
  .ms-age-gate {
    padding: 32px 20px;
  }

  .ms-age-gate__content {
    gap: 24px;
  }

  .ms-age-gate__logo-img {
    width: 110px;
  }

  .ms-age-gate__btn {
    height: 46px;
    padding: 0 28px;
    font-size: 12px;
  }
}

/* ============================================================
    17. CONTACT PAGE
    ============================================================ */

.ms-contact__hero {
  position: relative;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #473128;
}

.ms-contact__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
}

.ms-contact__hero-heading {
  font-family: var(--font-heading--family);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.15;
  color: #ffffff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.ms-contact__info {
  padding: 80px 0;
  background: #ffffff;
}

.ms-contact__info-inner {
  width: 100%;
  max-width: var(--normal-page-width, 120rem);
  margin: 0 auto;
  padding-inline: var(--page-margin, 16px);
  box-sizing: border-box;
}

.ms-contact__intro {
  font-family: var(--font-heading--family);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 550;
  line-height: 1.6;
  color: #2C2C2C;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.ms-contact__columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .ms-contact__columns {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }

  .ms-contact__column {
    padding: 0 48px;
    border-right: 1px solid #e0ddd5;
  }

  .ms-contact__column:first-child {
    padding-left: 0;
  }

  .ms-contact__column:last-child {
    padding-right: 0;
    border-right: none;
  }
}

.ms-contact__column {
  text-align: center;
}

.ms-contact__column-heading {
  font-family: var(--font-heading--family);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 400;
  line-height: 1.3;
  color: #1B3A2B;
  margin: 0 0 12px;
  text-transform: none;
  letter-spacing: normal;
}

.ms-contact__column-email {
  font-family: var(--font-body--family);
  font-size: 1rem;
  font-weight: 550;
  color: #5A5A5A;
  text-decoration: none;
  transition: color 0.2s;
}

.ms-contact__column-email:hover {
  color: #1B3A2B;
}

@media (max-width: 767px) {
  .ms-contact__info {
    padding: 60px 0;
  }

  .ms-contact__intro {
    margin-bottom: 48px;
  }

  .ms-contact__column {
    padding-bottom: 32px;
    border-bottom: 1px solid #e0ddd5;
  }

  .ms-contact__column:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
}

/* Split CTA */
.ms-contact__split {
  display: grid;
  grid-template-columns: 1fr;
  background: #FDF8F0;
}

@media (min-width: 768px) {
  .ms-contact__split {
    grid-template-columns: 1fr 1fr;
    height: 560px;
  }
}

.ms-contact__split-panel {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  min-height: 280px;
  text-decoration: none;
  color: inherit;
  display: block;
}

.ms-contact__split-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.7s ease;
}

.ms-contact__split-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ms-contact__split-panel:hover .ms-contact__split-bg {
  transform: scale(1.08);
}

.ms-contact__split-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.28);
  transition: background 0.3s;
}

.ms-contact__split-panel:hover .ms-contact__split-overlay {
  background: rgba(0, 0, 0, 0.38);
}

.ms-contact__split-eyebrow {
  font-family: var(--font-body--family);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #ffffff;
  margin-bottom: 8px;
}

.ms-contact__split-title {
  font-family: var(--font-heading--family);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #ffffff;
  text-align: center;
  margin: 0;
  line-height: 1.25;
}

/* ============================================================
    RESPONSIVE FIXES — Added without modifying original CSS.
    Each section is prefixed so you can verify independently.
    ============================================================ */

/* ── SECTION 2: HERO ── */
@media (max-width: 480px) {
  .ms-hero {
    padding: 0 16px;
  }

  .ms-hero__content {
    padding-left: 8px;
    padding-right: 8px;
  }

  .ms-hero__title {
    font-size: clamp(30px, 11vw, 40px);
  }
}

/* ── SECTION 3: INTRO ── */
@media (max-width: 640px) {
  .ms-intro {
    padding: 60px 0;
  }

  .ms-intro__links {
    flex-direction: column;
    gap: 16px;
  }

  .ms-intro__heading {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
}

/* ── SECTION 3b: INTRO (tablet) ── */
@media (min-width: 641px) and (max-width: 767px) {
  .ms-intro {
    padding: 80px 0;
  }

  .ms-intro .ms-container {
    gap: 32px;
  }

  .ms-intro__right {
    gap: 32px;
  }
}

/* ── SECTION 4: COOLERS ── */
@media (max-width: 640px) {
  .ms-coolers {
    padding: 48px 0;
  }

  .ms-product-card__name {
    font-size: 17px;
  }

  .ms-product-card__desc {
    font-size: 12px;
  }

  .ms-cocktail-card__name {
    font-size: 18px;
  }

  .ms-cocktail-card__desc {
    font-size: 12px;
  }

  .ms-coolers__grid {
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .ms-product-card__image-wrap {
    padding: 14px;
  }

  .ms-cocktail-card__image-wrap {
    padding: 14px;
  }

  .ms-product-card__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .ms-product-card__actions .ms-btn-primary,
  .ms-product-card__actions .ms-btn-link {
    text-align: center;
  }

  .ms-cocktail-card__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .ms-cocktail-card__actions .ms-btn-dark,
  .ms-cocktail-card__actions .ms-btn-link {
    text-align: center;
  }
}

/* ── SECTION 5: FUNCTIONAL MATCHA ── */
@media (max-width: 767px) {
  .ms-functional {
    padding: 56px 0;
  }

  .ms-functional__heading {
    max-width: 100%;
  }

  .ms-functional__sub {
    max-width: 100%;
  }

  .ms-functional__icons {
    perspective: none;
    transform: none;
  }
}

@media (max-width: 640px) {
  .ms-functional__icons-track {
    gap: 24px;
  }

  .ms-benefit-icon__label-top {
    font-size: 15px;
  }

  .ms-benefit-icon__label-bottom {
    font-size: 12px;
  }
}

/* ── SECTION 6: SPLIT PROMO ── */
@media (max-width: 480px) {
  .ms-split-promo__panel {
    min-height: 200px;
  }

  .ms-split-promo__title {
    font-size: clamp(1.2rem, 5vw, 1.6rem);
  }
}

/* ── SECTION 11: INSTAGRAM ── */
@media (max-width: 640px) {
  .ms-instagram {
    padding: 56px 0;
  }
}

/* ── SECTION 12: FOOTER ── */
@media (max-width: 640px) {
  .ms-footer {
    padding: 48px 0 0;
  }

  .ms-footer__email-wrap {
    max-width: 100%;
  }

  .ms-footer__grid {
    gap: 32px;
  }
}

/* ── SECTION 10: TESTIMONIAL — Responsive ── */
@media (max-width: 767px) {
  .ms-testimonial {
    padding: 60px 20px;
  }

  .ms-testimonial__content {
    max-width: 100%;
  }

  .ms-testimonial__stars {
    font-size: 20px;
    margin-bottom: 18px;
  }

  .ms-testimonial__quote {
    font-size: clamp(20px, 4vw, 24px);
    line-height: 1.3;
    letter-spacing: normal;
    max-width: 100%;
  }

  .ms-testimonial__author {
    margin-top: 16px;
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .ms-testimonial {
    padding: 48px 16px;
  }

  .ms-testimonial__stars {
    font-size: 18px;
    margin-bottom: 14px;
  }

  .ms-testimonial__quote {
    font-size: clamp(17px, 5vw, 20px);
    line-height: 1.35;
  }

  .ms-testimonial__author {
    margin-top: 12px;
    font-size: 10px;
  }
}

/* ── FUNCTIONAL ICONS: Mobile ── */
@media (max-width: 640px) {
  .ms-benefit-icon__circle {
    width: 68px;
    height: 68px;
  }

  .ms-benefit-icon__circle img {
    width: 64px;
    height: 64px;
  }

  .ms-benefit-icon {
    gap: 16px;
  }

  .ms-functional__icons-track {
    gap: 40px;
  }
}

/* Clickable card images — display:contents keeps the anchor out of the
   flex/positioning flow so existing card layouts are untouched. */
.ms-card-image-link {
  display: contents;
}
.ms-card-image-link img,
.ms-card-image-link .ms-product-card__can {
  cursor: pointer;
}
