
:root {
  --bg: #FFFFFF;
  --bg-alt: #F4E4C8;
  --ink: #3D2817;
  --ink-soft: #7A5947;
  --primary: #0E9088;
  --primary-deep: #0A5F5A;
  --accent: #C2410C;
  --cream: #FFF8EC;
  --warm: #F4C24A;
  --divider: rgba(61, 40, 23, 0.15);
  --radius: 18px;
  --display-font: "Google Sans", "Google Sans Flex", system-ui, sans-serif;
  --body-font: "Google Sans", system-ui, sans-serif;
}

/* ---- Base ---- */
html, body {
  margin: 0;
  padding: 0;
  background: #FFFFFF;
  font-family: var(--body-font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  overflow-x: hidden;
}

*, *::before, *::after { box-sizing: border-box; }

#root { width: 100%; min-height: 100vh; }

/* ---- Utilities ---- */
.h-scroll::-webkit-scrollbar { display: none; }
.h-scroll { scrollbar-width: none; -ms-overflow-style: none; }

.drawer { transition: transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1); }

/* ---- Animations ---- */
@keyframes mobile-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

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

/* ============================================
   APP WRAPPER
   ============================================ */
.app {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body-font);
  position: relative;
  overflow: hidden;
  min-height: 100%;
}

/* ============================================
   DESKTOP NAV
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  padding: 14px 120px;
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__logo-link { display: flex; flex-shrink: 0; }
.nav__logo { height: 64px; width: auto; display: block; }

.nav__list {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0 0 0 16px;
  padding: 0;
}

.nav__link {
  text-decoration: none;
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav__link--active { font-weight: 700; border-bottom-color: var(--primary); }

.nav__spacer { flex: 1; }

.nav__cta {
  background: var(--ink);
  color: var(--cream);
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body-font);
}

/* ============================================
   MOBILE NAV
   ============================================ */
.mobile-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--divider);
}

.mobile-nav__logo { height: 44px; width: auto; display: block; }

.mobile-nav__burger {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--ink);
  color: var(--cream);
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.mobile-nav__burger-bar {
  width: 18px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
}

/* Drawer overlay */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 25, 0.5);
  transition: opacity 0.3s;
  z-index: 90;
}
.drawer-overlay--open  { opacity: 1; pointer-events: auto; }
.drawer-overlay--closed { opacity: 0; pointer-events: none; }

/* Drawer panel */
.drawer-panel {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 86%;
  max-width: 360px;
  background: var(--ink);
  color: var(--cream);
  z-index: 100;
  padding: 22px 24px 32px;
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 50px rgba(0,0,0,0.25);
}

.drawer-panel__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.drawer-panel__logo { height: 52px; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3)); }

.drawer-panel__close {
  width: 42px; height: 42px;
  border-radius: 999px;
  background: rgba(255, 248, 236, 0.12);
  color: var(--cream);
  border: none;
  cursor: pointer;
  font-size: 18px;
}

.drawer-panel__list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.drawer-panel__link {
  display: block;
  padding: 18px 0;
  color: var(--cream);
  text-decoration: none;
  font-family: var(--display-font);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.025em;
  border-bottom: 1px solid rgba(255, 248, 236, 0.1);
}

.drawer-panel__link-num {
  font-size: 12px;
  color: var(--warm);
  margin-right: 12px;
  font-weight: 500;
  font-family: var(--body-font);
  letter-spacing: 0.04em;
}

.drawer-panel__footer { margin-top: auto; padding-top: 32px; }

.drawer-panel__wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--primary);
  color: var(--cream);
  padding: 16px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}

.drawer-panel__contact-info {
  margin-top: 18px;
  font-size: 13px;
  opacity: 0.7;
  line-height: 1.5;
}

/* ============================================
   HERO — DESKTOP
   ============================================ */
.hero {
  position: relative;
  padding: 56px 120px 80px;
  background: #FFFFFF;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: flex-start;
}

.hero__left { position: relative; display: flex; flex-direction: column; }

.hero__title {
  font-family: var(--display-font);
  font-size: 168px;
  line-height: 0.82;
  letter-spacing: -0.05em;
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  white-space: nowrap;
  position: relative;
}

.hero__title-line { overflow: hidden; padding-bottom: 0.22em; }

.hero__title-accent {
  overflow: visible;
  color: var(--primary);
  font-style: italic;
  font-weight: 700;
  padding-bottom: 0.18em;
  text-transform: uppercase;
  letter-spacing: -0.045em;
  position: relative;
}

.hero__badge {
  position: absolute;
  left: 50%;
  top: 88%;
  transform: translate(-50%, calc(-50% + 5px)) rotate(-3deg);
  display: inline-flex;
  align-items: center;
  background: var(--warm);
  color: var(--ink);
  padding: 12px 22px;
  border-radius: 14px;
  font-family: var(--display-font);
  font-style: normal;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1;
  box-shadow: 0 12px 28px rgba(61, 40, 23, 0.22);
  white-space: nowrap;
  z-index: 3;
}

.hero__sub {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  max-width: 540px;
}

.hero__copy {
  margin: 0;
  font-size: 22px;
  line-height: 1.45;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.015em;
}

.hero__copy strong { font-weight: 600; color: var(--primary); }

.hero__actions { display: flex; gap: 12px; align-items: center; }

.hero__right { position: relative; display: flex; flex-direction: column; }

.hero__splash {
  position: absolute;
  top: -36px; right: -28px;
  width: 156px; height: 156px;
  pointer-events: none;
  z-index: 4;
  filter: drop-shadow(0 10px 24px rgba(61, 40, 23, 0.28));
}

.hero__splash img { width: 100%; height: 100%; object-fit: contain; }

.hero__img {
  border-radius: 24px;
  overflow: hidden;
  flex: 1;
  min-height: 560px;
  background-image: url(hero.jpg);
  background-size: cover;
  background-position: center 40%;
  position: relative;
  transition: background-position-y 0.1s linear;
}

.hero__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(61, 40, 23, 0.5));
}

/* ============================================
   SHARED BUTTONS
   ============================================ */
.btn--primary {
  background: var(--primary);
  color: var(--cream);
  border: none;
  padding: 18px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body-font);
}

.btn--outline {
  background: transparent;
  border: 1.5px solid var(--ink);
  color: var(--ink);
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body-font);
}

.btn--dark {
  background: var(--ink);
  color: var(--cream);
  border: none;
  padding: 20px 32px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body-font);
}

.btn--dark-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  padding: 20px 32px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--body-font);
}

.btn--play {
  background: #FFFFFF;
  border: 1.5px solid var(--ink);
  color: var(--ink);
  width: 56px; height: 56px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn--more {
  background: var(--ink);
  color: var(--cream);
  border: none;
  padding: 18px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

/* ============================================
   HERO — MOBILE
   ============================================ */
.mobile-hero {
  padding: 32px 18px 28px;
  position: relative;
  background: var(--bg);
}

.mobile-hero__title {
  font-family: var(--display-font);
  font-size: clamp(58px, 17vw, 78px);
  line-height: 0.85;
  letter-spacing: -0.045em;
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.mobile-hero__title-line { padding-bottom: 0.08em; }

.mobile-hero__title-accent {
  color: var(--primary);
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  position: relative;
  padding-bottom: 0.08em;
  display: inline-block;
}

.mobile-hero__badge {
  display: inline-block;
  background: var(--warm);
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 10px;
  font-family: var(--display-font);
  font-size: clamp(22px, 6.5vw, 30px);
  font-weight: 600;
  font-style: normal;
  text-transform: none;
  letter-spacing: -0.025em;
  line-height: 1;
  transform: rotate(-2.5deg);
  box-shadow: 0 10px 22px rgba(61, 40, 23, 0.2);
  margin-top: 6px;
}

.mobile-hero__img-wrap { position: relative; margin-top: 36px; }

.mobile-hero__splash {
  position: absolute;
  top: -22px; right: -8px;
  width: 96px; height: 96px;
  pointer-events: none;
  z-index: 4;
  filter: drop-shadow(0 8px 18px rgba(61, 40, 23, 0.32));
}

.mobile-hero__splash img { width: 100%; height: 100%; object-fit: contain; }

.mobile-hero__img {
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: url(hero.jpg) center/cover;
  position: relative;
}

.mobile-hero__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(61, 40, 23, 0.55));
}

.mobile-hero__copy {
  margin: 28px 0 0;
  font-size: 17px;
  line-height: 1.45;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.01em;
}

.mobile-hero__copy strong { font-weight: 600; color: var(--primary); }

.mobile-hero__actions { margin-top: 24px; display: flex; gap: 10px; align-items: center; }

.mobile-hero__cta {
  flex: 1;
  background: var(--primary);
  color: var(--cream);
  border: none;
  padding: 16px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--body-font);
}

.mobile-hero__play-btn {
  background: #FFFFFF;
  border: 1.5px solid var(--ink);
  color: var(--ink);
  width: 52px; height: 52px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ============================================
   MARQUEE TICKER
   ============================================ */
.marquee {
  background: var(--ink);
  color: var(--cream);
  padding: 24px 0;
  overflow: hidden;
}

.marquee__track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  align-items: center;
  font-size: 22px;
  font-family: var(--display-font);
  font-weight: 500;
  letter-spacing: -0.01em;
  animation: marquee-scroll 40s linear infinite;
  width: max-content;
}

.marquee__item { font-style: italic; color: var(--cream); }
.marquee__sep  { color: var(--warm); font-size: 18px; font-style: normal; }

.mobile-marquee {
  background: var(--ink);
  color: var(--cream);
  padding: 18px 0;
  overflow: hidden;
}

.mobile-marquee__track {
  display: flex;
  gap: 22px;
  white-space: nowrap;
  align-items: center;
  font-family: var(--display-font);
  font-weight: 500;
  letter-spacing: -0.01em;
  animation: mobile-marquee 32s linear infinite;
  width: max-content;
}

.mobile-marquee__item { font-size: 18px; font-style: italic; color: var(--cream); }
.mobile-marquee__sep  { font-size: 14px; color: var(--warm); }

/* ============================================
   ABOUT — DESKTOP
   ============================================ */
.about { padding: 120px; position: relative; }

.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.about__images { position: relative; }

.about__img-main-wrap {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  width: 52%;
  transform: rotate(2deg);
  box-shadow: 0 20px 50px rgba(61, 40, 23, 0.18);
}

.about__img-main { width: 100%; height: 100%; object-fit: cover; display: block; }

.about__img-secondary-wrap {
  position: absolute;
  bottom: -30px; left: -30px;
  width: 220px;
  border-radius: 16px;
  overflow: hidden;
  transform: rotate(-6deg);
  box-shadow: 0 14px 40px rgba(61, 40, 23, 0.2);
}

.about__img-secondary { width: 100%; height: 100%; object-fit: cover; display: block; }

.about__heading {
  font-family: var(--display-font);
  font-size: 100px;
  line-height: 0.92;
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.about__heading-accent { color: var(--primary); font-style: italic; font-weight: 500; }

.about__text {
  font-size: 19px;
  line-height: 1.55;
  margin: 32px 0 0;
  max-width: 540px;
  color: var(--ink-soft);
  font-weight: 400;
}

.about__text strong { color: var(--ink); font-weight: 700; }

.about__cta-wrap { margin-top: 36px; }

/* ABOUT — MOBILE */
.mobile-about { padding: 64px 18px 56px; position: relative; }

.mobile-about__images { position: relative; margin-bottom: 36px; }

.mobile-about__img-main-wrap {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  transform: rotate(1.5deg);
  box-shadow: 0 16px 40px rgba(61, 40, 23, 0.18);
  margin-right: 60px;
}

.mobile-about__img-main { width: 100%; height: 100%; object-fit: cover; display: block; }

.mobile-about__img-secondary-wrap {
  position: absolute;
  bottom: -22px; right: 6px;
  width: 130px;
  border-radius: 14px;
  overflow: hidden;
  transform: rotate(-5deg);
  box-shadow: 0 12px 28px rgba(61, 40, 23, 0.22);
  aspect-ratio: 1 / 1;
}

.mobile-about__img-secondary { width: 100%; height: 100%; object-fit: cover; display: block; }

.mobile-about__content { margin-top: 40px; }

.mobile-about__heading {
  font-family: var(--display-font);
  font-size: clamp(46px, 13vw, 60px);
  line-height: 0.9;
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.mobile-about__heading-accent { color: var(--primary); font-style: italic; font-weight: 500; }

.mobile-about__text { font-size: 16px; line-height: 1.55; margin: 20px 0 0; color: var(--ink-soft); font-weight: 400; }
.mobile-about__text strong { color: var(--ink); font-weight: 700; }

.mobile-about__btn {
  margin-top: 26px;
  background: transparent;
  border: 1.5px solid var(--ink);
  color: var(--ink);
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body-font);
}

/* ============================================
   SNACKS BANNER (animated heading)
   ============================================ */
.snacks-banner {
  background: var(--primary);
  color: var(--cream);
  padding: 72px 0 56px;
  overflow: hidden;
  position: relative;
}

.snacks-banner__heading {
  font-family: var(--display-font);
  font-size: 150px;
  line-height: 0.9;
  font-weight: 700;
  letter-spacing: -0.05em;
  white-space: nowrap;
  padding: 0 120px;
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 28px;
}

.snacks-banner__accent { display: inline-block; overflow: hidden; vertical-align: baseline; }

.snacks-banner__accent-inner {
  color: var(--warm);
  font-weight: 500;
  font-style: italic;
  display: inline-block;
}

.mobile-snacks-banner {
  background: var(--primary);
  color: var(--cream);
  padding: 44px 18px 36px;
  overflow: hidden;
}

.mobile-snacks-banner__heading {
  font-family: var(--display-font);
  font-size: clamp(48px, 14vw, 64px);
  line-height: 0.92;
  font-weight: 700;
  letter-spacing: -0.045em;
  margin: 0;
}

.mobile-snacks-banner__accent-wrap { overflow: hidden; }

.mobile-snacks-banner__accent {
  color: var(--warm);
  font-weight: 500;
  font-style: italic;
  display: inline-block;
}

/* ============================================
   SNACKS SECTION
   ============================================ */
.snacks { padding: 100px 120px; background: var(--bg-alt); }

.snacks__header {
  margin-bottom: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
}

.snacks__heading {
  font-family: var(--display-font);
  font-size: 84px;
  line-height: 0.95;
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.snacks__heading-accent { color: var(--primary); font-style: italic; font-weight: 500; }

.snacks__subtext {
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 460px;
  justify-self: end;
  font-weight: 400;
}

.snacks__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; align-items: start; }

.snacks__footer { margin-top: 56px; display: flex; justify-content: center; }

.mobile-snacks { padding: 64px 18px 56px; background: var(--bg-alt); }

.mobile-snacks__header { margin-bottom: 32px; }

.mobile-snacks__heading {
  font-family: var(--display-font);
  font-size: clamp(42px, 11.5vw, 56px);
  line-height: 0.92;
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.mobile-snacks__heading-accent { color: var(--primary); font-style: italic; font-weight: 500; }

.mobile-snacks__subtext { margin: 18px 0 0; font-size: 15.5px; line-height: 1.5; color: var(--ink-soft); font-weight: 400; }

.mobile-snacks__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.mobile-snacks__footer { margin-top: 36px; display: flex; justify-content: center; }

/* ============================================
   SNACK CARD — DESKTOP
   ============================================ */
.snack-card {
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 18px rgba(61, 40, 23, 0.08);
}

.snack-card--feature { background: var(--ink); color: var(--cream); }
.snack-card--default { background: var(--cream); color: var(--ink); }

.snack-card__img-wrap { aspect-ratio: 4 / 3; overflow: hidden; position: relative; }

.snack-card__img { width: 100%; height: 100%; background-size: cover; background-position: center; }

.snack-card__badge {
  position: absolute;
  top: 14px; right: 14px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: rgba(0,0,0,0.4);
  padding: 4px 10px;
  border-radius: 999px;
}

.snack-card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }

.snack-card__name {
  font-family: var(--display-font);
  font-size: 26px;
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

.snack-card__short { font-size: 13.5px; line-height: 1.55; margin: 0; opacity: 0.78; font-weight: 400; }
.snack-card--feature .snack-card__short { opacity: 0.85; }

.snack-card__footer {
  margin-top: auto;
  padding-top: 14px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  border-top: 1px solid var(--divider);
}

.snack-card--feature .snack-card__footer { border-top-color: rgba(255, 248, 236, 0.2); }

.snack-card__cta { font-size: 13px; display: flex; align-items: center; gap: 6px; font-weight: 600; color: var(--primary); }
.snack-card--feature .snack-card__cta { color: var(--warm); }

/* SNACK CARD — MOBILE */
.mobile-snack-card {
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 14px rgba(61, 40, 23, 0.1);
}

.mobile-snack-card--feature { background: var(--ink); color: var(--cream); }
.mobile-snack-card--default { background: var(--cream); color: var(--ink); }

.mobile-snack-card__img-wrap { aspect-ratio: 4 / 3; overflow: hidden; position: relative; }
.mobile-snack-card__img { width: 100%; height: 100%; background-size: cover; background-position: center; }

.mobile-snack-card__badge {
  position: absolute;
  top: 10px; right: 10px;
  font-size: 11px; font-weight: 600;
  color: #fff;
  background: rgba(0,0,0,0.42);
  padding: 3px 8px;
  border-radius: 999px;
}

.mobile-snack-card__body { padding: 14px 14px 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }

.mobile-snack-card__name {
  font-family: var(--display-font);
  font-size: 19px; margin: 0; font-weight: 700;
  letter-spacing: -0.03em; line-height: 1.05;
}

.mobile-snack-card__short { font-size: 12px; line-height: 1.45; margin: 0; opacity: 0.75; font-weight: 400; }
.mobile-snack-card--feature .mobile-snack-card__short { opacity: 0.82; }

.mobile-snack-card__footer {
  margin-top: auto; padding-top: 10px;
  display: flex; justify-content: flex-end; align-items: center;
  border-top: 1px solid var(--divider);
}

.mobile-snack-card--feature .mobile-snack-card__footer { border-top-color: rgba(255, 248, 236, 0.18); }

.mobile-snack-card__cta { font-size: 11px; display: flex; align-items: center; gap: 5px; font-weight: 600; color: var(--primary); }
.mobile-snack-card--feature .mobile-snack-card__cta { color: var(--warm); }

/* ============================================
   SERVICES — DESKTOP
   ============================================ */
.services { padding: 120px; background: var(--ink); color: var(--cream); }

.services__grid { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 60px; align-items: start; }

.services__heading {
  font-family: var(--display-font);
  font-size: 100px;
  line-height: 0.92;
  margin: 0 0 28px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.services__heading-accent { color: var(--warm); font-style: italic; font-weight: 500; }

.services__subtext { font-size: 18px; line-height: 1.55; margin: 0; opacity: 0.82; max-width: 380px; font-weight: 400; }

.services__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.service-card { background: var(--cream); color: var(--ink); border-radius: 20px; overflow: hidden; display: flex; flex-direction: column; }
.service-card--offset { transform: translateY(40px); }

.service-card__img { aspect-ratio: 4 / 3; background-size: cover; background-position: center; }

.service-card__body { padding: 28px 26px 30px; }

.service-card__header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }

.service-card__name { font-family: var(--display-font); font-size: 36px; margin: 0; font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
.service-card__num { font-size: 13px; color: var(--ink-soft); font-weight: 500; }
.service-card__desc { font-size: 15px; line-height: 1.55; color: var(--ink-soft); margin: 0; font-weight: 400; }

.service-card__cta {
  margin-top: 22px;
  background: var(--primary);
  color: var(--cream);
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--body-font);
  text-decoration: none;
}

/* SERVICES — MOBILE */
.mobile-services { padding: 64px 18px; background: var(--ink); color: var(--cream); }

.mobile-services__heading {
  font-family: var(--display-font);
  font-size: clamp(46px, 13vw, 60px);
  line-height: 0.9; margin: 0 0 16px;
  font-weight: 700; letter-spacing: -0.04em;
}

.mobile-services__heading-accent { color: var(--warm); font-style: italic; font-weight: 500; }
.mobile-services__subtext { font-size: 15.5px; line-height: 1.55; margin: 0; opacity: 0.82; font-weight: 400; }
.mobile-services__cards { display: flex; flex-direction: column; gap: 18px; margin-top: 32px; }

.mobile-service-card { background: var(--cream); color: var(--ink); border-radius: 18px; overflow: hidden; display: flex; flex-direction: column; }

.mobile-service-card__img { aspect-ratio: 4 / 3; background-size: cover; background-position: center; }
.mobile-service-card__body { padding: 22px 20px 24px; }
.mobile-service-card__header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.mobile-service-card__name { font-family: var(--display-font); font-size: 28px; margin: 0; font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
.mobile-service-card__num { font-size: 12px; color: var(--ink-soft); font-weight: 500; }
.mobile-service-card__desc { font-size: 14px; line-height: 1.55; color: var(--ink-soft); margin: 0; font-weight: 400; }

.mobile-service-card__cta {
  margin-top: 18px;
  background: var(--primary); color: var(--cream);
  border: none; padding: 11px 20px; border-radius: 999px;
  font-size: 12px; font-weight: 600; cursor: pointer;
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--body-font); text-decoration: none;
}

/* ============================================
   TESTIMONIALS — DESKTOP
   ============================================ */
.testimonials { padding: 120px 120px 160px; background: var(--bg); }

.testimonials__header { margin-bottom: 64px; text-align: center; }

.testimonials__heading {
  font-family: var(--display-font);
  font-size: 104px; line-height: 0.92;
  margin: 0 0 20px; font-weight: 700; letter-spacing: -0.04em;
}

.testimonials__heading-accent { color: var(--primary); font-style: italic; font-weight: 500; }

.testimonials__subtext { font-size: 18px; line-height: 1.55; margin: 0 auto; color: var(--ink-soft); max-width: 540px; font-weight: 400; }

.testimonials__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 1100px; margin: 0 auto; }

.testimonial-card { color: var(--ink); border-radius: 20px; padding: 40px 36px; position: relative; box-shadow: 0 12px 32px rgba(61, 40, 23, 0.08); }
.testimonial-card--cream { background: var(--cream); }
.testimonial-card--warm  { background: var(--warm); }
.testimonial-card--offset { transform: translateY(40px); }

.testimonial-card__stars { display: flex; gap: 2px; color: var(--accent); margin-bottom: 16px; }

.testimonial-card__title { font-family: var(--display-font); font-size: 32px; margin: 0; font-weight: 700; letter-spacing: -0.03em; line-height: 1.1; }

.testimonial-card__text { font-size: 16px; line-height: 1.55; margin: 16px 0 28px; color: var(--ink-soft); font-weight: 400; }

.testimonial-card__author { display: flex; align-items: center; gap: 14px; border-top: 1px solid var(--divider); padding-top: 18px; }

.testimonial-card__avatar {
  width: 44px; height: 44px; border-radius: 999px;
  background: var(--primary); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display-font); font-size: 18px; font-weight: 700;
}

.testimonial-card__name { font-size: 15px; font-weight: 700; }
.testimonial-card__role { font-size: 13px; color: var(--ink-soft); margin-top: 2px; font-weight: 400; }

/* TESTIMONIALS — MOBILE */
.mobile-testimonials { padding: 72px 18px 80px; background: var(--bg); }
.mobile-testimonials__header { margin-bottom: 36px; text-align: center; }

.mobile-testimonials__heading {
  font-family: var(--display-font);
  font-size: clamp(46px, 13vw, 60px);
  line-height: 0.9; margin: 0 0 14px;
  font-weight: 700; letter-spacing: -0.04em;
}

.mobile-testimonials__heading-accent { color: var(--primary); font-style: italic; font-weight: 500; }
.mobile-testimonials__subtext { font-size: 15.5px; line-height: 1.5; margin: 0; color: var(--ink-soft); font-weight: 400; }
.mobile-testimonials__list { display: flex; flex-direction: column; gap: 18px; }

.mobile-testimonial-card { color: var(--ink); border-radius: 18px; padding: 28px 24px 26px; box-shadow: 0 10px 26px rgba(61, 40, 23, 0.08); }
.mobile-testimonial-card--cream { background: var(--cream); }
.mobile-testimonial-card--warm  { background: var(--warm); }

.mobile-testimonial-card__stars { display: flex; gap: 2px; color: var(--accent); margin-bottom: 14px; }
.mobile-testimonial-card__title { font-family: var(--display-font); font-size: 23px; margin: 0; font-weight: 700; letter-spacing: -0.03em; line-height: 1.1; }
.mobile-testimonial-card__text { font-size: 15px; line-height: 1.55; margin: 12px 0 22px; color: var(--ink-soft); font-weight: 400; }
.mobile-testimonial-card__author { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--divider); padding-top: 14px; }

.mobile-testimonial-card__avatar {
  width: 38px; height: 38px; border-radius: 999px;
  background: var(--primary); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display-font); font-size: 16px; font-weight: 700;
}

.mobile-testimonial-card__name { font-size: 14px; font-weight: 700; }
.mobile-testimonial-card__role { font-size: 12px; color: var(--ink-soft); margin-top: 1px; font-weight: 400; }

/* ============================================
   GALLERY — DESKTOP
   ============================================ */
.gallery { padding: 0 0 100px; background: var(--bg); }

.gallery__header { padding: 0 120px 32px; display: flex; justify-content: space-between; align-items: baseline; }

.gallery__heading { font-family: var(--display-font); font-size: 72px; line-height: 0.95; margin: 0; font-weight: 700; letter-spacing: -0.04em; }
.gallery__heading-accent { color: var(--primary); font-style: italic; font-weight: 500; }

.gallery__link { font-size: 15px; color: var(--ink); text-decoration: underline; text-underline-offset: 4px; font-weight: 600; }

.gallery__grid { display: flex; gap: 12px; padding: 0 120px; }

.gallery__item { flex: 1; border-radius: 16px; overflow: hidden; aspect-ratio: 3 / 4; min-width: 0; }
.gallery__item--wide { flex: 1.4; }

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

/* GALLERY — MOBILE */
.mobile-gallery { padding: 0 0 72px; background: var(--bg); }

.mobile-gallery__header { padding: 0 18px 22px; display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }

.mobile-gallery__heading {
  font-family: var(--display-font);
  font-size: clamp(38px, 11vw, 50px);
  line-height: 0.95; margin: 0; font-weight: 700; letter-spacing: -0.04em;
}

.mobile-gallery__heading-accent { color: var(--primary); font-style: italic; font-weight: 500; }

.mobile-gallery__scroll {
  display: flex; gap: 12px;
  padding: 0 18px 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.mobile-gallery__item { flex-shrink: 0; width: 62%; aspect-ratio: 3 / 4; border-radius: 16px; overflow: hidden; scroll-snap-align: start; }
.mobile-gallery__item--first { width: 78%; }
.mobile-gallery__img { width: 100%; height: 100%; object-fit: cover; display: block; }

.mobile-gallery__footer { padding: 20px 18px 0; }
.mobile-gallery__all-link { font-size: 14px; color: var(--ink); text-decoration: underline; text-underline-offset: 4px; font-weight: 600; }

/* ============================================
   CTA SECTION
   ============================================ */
.cta { padding: 140px 120px; background: var(--warm); color: var(--ink); text-align: center; position: relative; overflow: hidden; }

.cta__heading { font-family: var(--display-font); font-size: 156px; line-height: 0.88; margin: 0; font-weight: 700; letter-spacing: -0.05em; }
.cta__heading-accent { color: var(--primary); font-style: italic; font-weight: 500; }

.cta__actions { margin-top: 56px; display: flex; justify-content: center; gap: 12px; }

.mobile-cta { padding: 80px 18px 88px; background: var(--warm); color: var(--ink); text-align: center; overflow: hidden; }

.mobile-cta__heading { font-family: var(--display-font); font-size: clamp(58px, 17vw, 78px); line-height: 0.86; margin: 0; font-weight: 700; letter-spacing: -0.045em; }
.mobile-cta__heading-accent { color: var(--primary); font-style: italic; font-weight: 500; }

.mobile-cta__actions { margin-top: 32px; display: flex; flex-direction: column; gap: 10px; }

.mobile-cta__btn-primary {
  background: var(--ink); color: var(--cream);
  border: none; padding: 17px 24px; border-radius: 999px;
  font-size: 15px; font-weight: 600; cursor: pointer;
  text-decoration: none;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
}

.mobile-cta__btn-outline {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--ink); padding: 17px 24px; border-radius: 999px;
  font-size: 15px; font-weight: 600; cursor: pointer;
  text-decoration: none;
  display: inline-flex; align-items: center; justify-content: center;
}

/* ============================================
   FOOTER — DESKTOP
   ============================================ */
.footer { background: var(--ink); color: var(--cream); padding: 80px 120px 32px; }

.footer__logo { height: 110px; width: auto; display: block; filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.25)); margin-bottom: 56px; }

.footer__grid { display: grid; grid-template-columns: 1.2fr 1.3fr 1fr; gap: 56px; }

.footer__col-title { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; color: var(--warm); margin: 0; font-family: var(--display-font); }
.footer__col-text { font-size: 14px; line-height: 1.65; opacity: 0.82; margin: 14px 0 0; max-width: 380px; font-weight: 400; }

.footer__avail-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer__avail-item { display: grid; grid-template-columns: 140px 1fr; gap: 16px; font-size: 14px; border-bottom: 1px solid rgba(255, 248, 236, 0.1); padding-bottom: 12px; }
.footer__avail-key { font-weight: 600; }
.footer__avail-val { opacity: 0.78; font-weight: 400; }

.footer__contact-group { margin-top: 24px; }
.footer__contact-label { font-size: 14px; font-weight: 600; }

.footer__phone-link { display: flex; align-items: center; gap: 8px; font-size: 18px; margin-top: 6px; font-weight: 600; color: var(--cream); text-decoration: none; letter-spacing: -0.01em; }

.footer__email-group { display: flex; flex-direction: column; gap: 4px; margin-top: 6px; }
.footer__email-link { font-size: 15px; font-weight: 500; color: var(--cream); opacity: 0.9; text-decoration: none; }

.footer__social { margin-top: 28px; display: flex; gap: 10px; }
.footer__social-link { width: 40px; height: 40px; border-radius: 999px; border: 1px solid rgba(255, 248, 236, 0.25); display: flex; align-items: center; justify-content: center; color: var(--cream); text-decoration: none; }

.footer__bottom { border-top: 1px solid rgba(255, 248, 236, 0.12); margin-top: 60px; padding-top: 24px; display: flex; justify-content: space-between; font-size: 12px; opacity: 0.55; letter-spacing: 0.02em; }

/* FOOTER — MOBILE */
.mobile-footer { background: var(--ink); color: var(--cream); padding: 56px 22px 28px; }

.mobile-footer__logo { height: 88px; width: auto; display: block; margin-bottom: 36px; filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.25)); }

.mobile-footer__sections { display: flex; flex-direction: column; gap: 38px; }

.mobile-footer__section-title { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; color: var(--warm); margin: 0; font-family: var(--display-font); }
.mobile-footer__text { font-size: 14px; line-height: 1.6; opacity: 0.82; margin: 12px 0 0; font-weight: 400; }

.mobile-footer__avail-list { list-style: none; padding: 0; margin: 14px 0 0; display: flex; flex-direction: column; gap: 10px; }
.mobile-footer__avail-item { display: grid; grid-template-columns: 110px 1fr; gap: 12px; font-size: 13px; border-bottom: 1px solid rgba(255, 248, 236, 0.1); padding-bottom: 10px; }
.mobile-footer__avail-key { font-weight: 600; }
.mobile-footer__avail-val { opacity: 0.78; font-weight: 400; }

.mobile-footer__contact-group { margin-top: 16px; }
.mobile-footer__contact-label { font-size: 13px; font-weight: 600; }

.mobile-footer__phone-link { display: inline-flex; align-items: center; gap: 8px; font-size: 17px; margin-top: 4px; font-weight: 600; color: var(--cream); text-decoration: none; letter-spacing: -0.01em; }

.mobile-footer__email-group { display: flex; flex-direction: column; gap: 3px; margin-top: 4px; }
.mobile-footer__email-link { font-size: 14px; font-weight: 500; color: var(--cream); opacity: 0.9; text-decoration: none; }

.mobile-footer__social { margin-top: 22px; display: flex; gap: 10px; }
.mobile-footer__social-link { width: 40px; height: 40px; border-radius: 999px; border: 1px solid rgba(255, 248, 236, 0.25); display: flex; align-items: center; justify-content: center; color: var(--cream); text-decoration: none; }

.mobile-footer__bottom { border-top: 1px solid rgba(255, 248, 236, 0.12); margin-top: 44px; padding-top: 20px; display: flex; flex-direction: column; gap: 6px; font-size: 11.5px; opacity: 0.55; letter-spacing: 0.02em; }

/* ============================================
   WHATSAPP FAB — DESKTOP
   ============================================ */
.wa-fab { position: absolute; right: 24px; bottom: 24px; z-index: 50; }

.wa-fab__btn {
  width: 58px; height: 58px; border-radius: 999px;
  border: none; background: #25D366; color: #fff;
  cursor: pointer; box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
  display: flex; align-items: center; justify-content: center;
}

.wa-fab__popover { position: absolute; bottom: 76px; right: 0; width: 320px; background: #fff; border-radius: 16px; box-shadow: 0 20px 50px rgba(0,0,0,0.25); overflow: hidden; }

.wa-fab__header { background: #075E54; color: #fff; padding: 14px 16px; display: flex; align-items: center; gap: 12px; }

.wa-fab__header-icon { width: 38px; height: 38px; border-radius: 999px; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; }

.wa-fab__header-name { font-size: 13px; font-weight: 600; }
.wa-fab__header-status { font-size: 11px; opacity: 0.8; }

.wa-fab__close-btn { background: transparent; border: none; color: #fff; cursor: pointer; font-size: 18px; }

.wa-fab__body { padding: 16px; background: #ECE5DD; }

.wa-fab__bubble { background: #fff; padding: 10px 12px; border-radius: 0 12px 12px 12px; font-size: 13px; color: #111; display: inline-block; max-width: 85%; }

.wa-fab__service-label { margin-top: 14px; font-size: 11px; color: #666; letter-spacing: 0.08em; text-transform: uppercase; }

.wa-fab__services { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }

.wa-fab__service-btn { border: 1px solid #25D366; background: #fff; color: #075E54; padding: 6px 10px; border-radius: 999px; font-size: 12px; cursor: pointer; }

/* WHATSAPP FAB — MOBILE */
.mobile-wa-fab { position: fixed; right: 16px; bottom: 16px; z-index: 60; }

.mobile-wa-fab__btn {
  width: 54px; height: 54px; border-radius: 999px;
  border: none; background: #25D366; color: #fff;
  cursor: pointer; box-shadow: 0 10px 22px rgba(37, 211, 102, 0.45);
  display: flex; align-items: center; justify-content: center;
}

.mobile-wa-fab__popover { position: absolute; bottom: 70px; right: 0; width: calc(100vw - 32px); max-width: 320px; background: #fff; border-radius: 16px; box-shadow: 0 18px 44px rgba(0,0,0,0.28); overflow: hidden; }

.mobile-wa-fab__header { background: #075E54; color: #fff; padding: 13px 14px; display: flex; align-items: center; gap: 10px; }
.mobile-wa-fab__header-icon { width: 34px; height: 34px; border-radius: 999px; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; }
.mobile-wa-fab__header-name { font-size: 13px; font-weight: 600; }
.mobile-wa-fab__header-status { font-size: 11px; opacity: 0.8; }
.mobile-wa-fab__close-btn { background: transparent; border: none; color: #fff; cursor: pointer; font-size: 16px; }
.mobile-wa-fab__body { padding: 14px; background: #ECE5DD; }
.mobile-wa-fab__bubble { background: #fff; padding: 9px 11px; border-radius: 0 12px 12px 12px; font-size: 13px; color: #111; display: inline-block; max-width: 85%; }
.mobile-wa-fab__service-label { margin-top: 12px; font-size: 10px; color: #666; letter-spacing: 0.08em; text-transform: uppercase; }
.mobile-wa-fab__services { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.mobile-wa-fab__service-btn { border: 1px solid #25D366; background: #fff; color: #075E54; padding: 6px 10px; border-radius: 999px; font-size: 12px; cursor: pointer; }

/* ============================================
   SNACK MODAL — DESKTOP
   ============================================ */
.snack-modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(15, 23, 25, 0.65);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}

.snack-modal {
  background: var(--cream); color: var(--ink);
  max-width: 900px; width: 100%; max-height: 88vh;
  overflow: hidden; border-radius: var(--radius);
  display: grid; grid-template-columns: 1.1fr 1fr;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  position: relative;
}

.snack-modal__close { position: absolute; top: 16px; right: 16px; z-index: 2; width: 40px; height: 40px; border-radius: 999px; border: none; background: rgba(255,255,255,0.85); color: #111; cursor: pointer; font-size: 18px; display: flex; align-items: center; justify-content: center; }

.snack-modal__img { min-height: 420px; background-size: cover; background-position: center; }

.snack-modal__body { padding: 44px 40px 36px; display: flex; flex-direction: column; gap: 14px; }

.snack-modal__name { margin: 0; font-family: var(--display-font); font-size: 52px; line-height: 0.95; font-weight: 700; letter-spacing: -0.04em; }
.snack-modal__desc { font-size: 16px; line-height: 1.6; margin: 6px 0 0; color: var(--ink-soft); font-weight: 400; }

.snack-modal__avail { padding: 20px 0; border-top: 1px solid var(--divider); border-bottom: 1px solid var(--divider); margin-top: 8px; }
.snack-modal__avail-label { font-size: 14px; font-weight: 600; }
.snack-modal__avail-text { font-size: 16px; margin-top: 4px; font-weight: 400; line-height: 1.5; color: var(--ink-soft); }

.snack-modal__cta { margin-top: 8px; padding: 16px 24px; background: var(--accent); color: var(--cream); border: none; border-radius: 999px; font-family: var(--body-font); font-size: 14px; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; }

/* ============================================
   SNACK SHEET — MOBILE
   ============================================ */
.snack-sheet-backdrop { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: flex-end; }

.snack-sheet-overlay { position: absolute; inset: 0; background: rgba(15, 23, 25, 0.6); backdrop-filter: blur(6px); }

.snack-sheet { position: relative; width: 100%; max-height: 92vh; background: var(--cream); color: var(--ink); border-radius: 24px 24px 0 0; overflow: auto; box-shadow: 0 -20px 50px rgba(0,0,0,0.3); }

.snack-sheet__handle { height: 4px; width: 44px; background: rgba(61, 40, 23, 0.25); border-radius: 2px; margin: 12px auto 6px; }

.snack-sheet__close { position: absolute; top: 18px; right: 18px; z-index: 2; width: 38px; height: 38px; border-radius: 999px; border: none; background: rgba(255,255,255,0.9); color: #111; cursor: pointer; font-size: 16px; display: flex; align-items: center; justify-content: center; }

.snack-sheet__img { height: 260px; background-size: cover; background-position: center; margin: 8px 18px 0; border-radius: 16px; }

.snack-sheet__body { padding: 22px 22px 28px; }

.snack-sheet__name { margin: 0; font-family: var(--display-font); font-size: 40px; line-height: 0.95; font-weight: 700; letter-spacing: -0.04em; }
.snack-sheet__desc { font-size: 15px; line-height: 1.6; margin: 12px 0 0; color: var(--ink-soft); font-weight: 400; }

.snack-sheet__avail { padding: 18px 0; margin-top: 18px; border-top: 1px solid var(--divider); border-bottom: 1px solid var(--divider); }
.snack-sheet__avail-label { font-size: 13px; font-weight: 600; }
.snack-sheet__avail-text { font-size: 14.5px; margin-top: 4px; font-weight: 400; line-height: 1.5; color: var(--ink-soft); }

.snack-sheet__cta { margin-top: 18px; padding: 15px 22px; background: var(--accent); color: var(--cream); border: none; border-radius: 999px; font-family: var(--body-font); font-size: 14px; font-weight: 600; cursor: pointer; text-decoration: none; display: flex; align-items: center; justify-content: center; gap: 10px; }

/* ============================================
   WHATSAPP QUOTER
   ============================================ */
@keyframes bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-5px); opacity: 1; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes fabPop {
  from { opacity: 0; transform: scale(0.6); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50%       { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
}

.wa-panel { animation: slideUp 0.35s cubic-bezier(0.2, 0.8, 0.2, 1) both; }
.wa-fab   { animation: fabPop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) both; }
.wa-msg   { animation: fadeUp 0.22s ease both; }
.wa-tray  { animation: fadeUp 0.2s ease both; }

.wa-chat::-webkit-scrollbar         { width: 3px; }
.wa-chat::-webkit-scrollbar-thumb   { background: rgba(0,0,0,0.12); border-radius: 2px; }
.wa-products::-webkit-scrollbar      { width: 3px; }
.wa-products::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.1); border-radius: 2px; }

.product-btn:hover  { background: #e8f5e9 !important; border-color: #25D366 !important; }
.qty-btn:hover      { background: #0a7a72 !important; }
.action-btn:hover   { opacity: 0.88; }

@media (max-width: 500px) {
  .wa-wrap {
    bottom: 0 !important; right: 0 !important; left: 0 !important;
    width: 100% !important;
    border-radius: 20px 20px 0 0 !important;
    max-height: 93dvh !important;
  }
  .wa-fab-pos { bottom: 16px !important; right: 16px !important; }
}

.snack-sheet__cta { margin-top: 18px; padding: 15px 22px; background: var(--accent); color: var(--cream); border: none; border-radius: 999px; font-family: var(--body-font); font-size: 14px; font-weight: 600; cursor: pointer; text-decoration: none; display: flex; align-items: center; justify-content: center; gap: 10px; }
