:root {
  --bg: #efe5d3;
  --surface: #f7f0e3;
  --surface-strong: #fffaf1;
  --anchor-offset: 138px;
  --olive-950: #182013;
  --olive-900: #1f2d18;
  --olive-800: #2d4022;
  --olive-700: #40582d;
  --olive-600: #61763c;
  --gold-500: #c99944;
  --gold-400: #ddb468;
  --gold-300: #ecd29e;
  --brown-900: #2d2117;
  --brown-700: #5d4a38;
  --brown-500: #85705d;
  --line: rgba(90, 62, 38, 0.12);
  --shadow-soft: 0 24px 70px rgba(49, 39, 27, 0.08);
  --shadow-hero: 0 32px 100px rgba(25, 30, 18, 0.32);
  --radius-xl: 38px;
  --radius-lg: 28px;
  --radius-md: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset);
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  overscroll-behavior-x: none;
}

:where(section, article, aside, div)[id] {
  scroll-margin-top: var(--anchor-offset);
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(255, 249, 238, 0.9), transparent 32%),
    linear-gradient(180deg, #f3ebdd 0%, #ece0ca 100%);
  color: var(--brown-900);
  font-family: "Manrope", sans-serif;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  overscroll-behavior-x: none;
}

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

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

h1,
h2,
h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: -0.05em;
}

p {
  margin: 0;
}

.page-shell {
  width: min(1380px, calc(100% - 48px));
  margin: 2px auto 24px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 84px;
  padding: 8px 20px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(251, 246, 236, 0.82);
  box-shadow: 0 16px 40px rgba(57, 45, 29, 0.08);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.topbar-menu {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.topbar-menu[hidden] {
  display: none !important;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 300px;
  height: 100%;
}

.brand-link {
  display: flex;
  align-items: center;
  height: 100%;
}

.brand-lockup {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand img {
  width: 280px;
  height: 72px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
  margin: 0;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 104px;
  height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(116, 81, 45, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  cursor: pointer;
}

.menu-toggle-icon {
  display: inline-flex;
  flex-direction: column;
}

.menu-toggle-icon span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #2d2117;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle-icon span + span {
  margin-top: 4px;
}

.menu-toggle-label {
  font-size: 0.88rem;
  font-weight: 800;
  color: #2d2117;
}

.topbar.is-menu-open .menu-toggle-icon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.topbar.is-menu-open .menu-toggle-icon span:nth-child(2) {
  opacity: 0;
}

.topbar.is-menu-open .menu-toggle-icon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  min-width: 0;
}

.main-nav a {
  position: relative;
  padding-bottom: 6px;
  font-size: 0.92rem;
  font-weight: 800;
  color: rgba(45, 33, 23, 0.68);
  white-space: nowrap;
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--brown-900);
}

.main-nav a.active::after,
.main-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-500), #7b6b36);
}

.topbar-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.login-pill,
.social-pill,
.cart-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.login-pill {
  border: 1px solid rgba(116, 81, 45, 0.12);
  background: rgba(255, 255, 255, 0.76);
  color: #2d2117;
  min-width: 112px;
  min-height: 46px;
  padding: 0 24px;
  font-size: 0.96rem;
}

.cart-pill,
.topbar-actions .cart-pill,
.topbar-actions .login-pill {
  min-width: 146px;
}

.social-pill {
  border: 1px solid rgba(116, 81, 45, 0.12);
  background: rgba(255, 255, 255, 0.76);
  color: #2d2117;
  width: 42px;
  min-width: 42px;
  padding: 0;
}

.login-pill:hover,
.social-pill:hover,
.cart-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(61, 45, 28, 0.12);
}

.login-pill:focus,
.login-pill:focus-visible,
.social-pill:focus,
.social-pill:focus-visible,
.cart-pill:focus,
.cart-pill:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(54, 88, 38, 0.14);
}

.social-pill-instagram {
  color: #5a2746;
}

.social-pill-whatsapp {
  color: #1f6b38;
}

.social-pill-phone {
  color: #6c4d1f;
}

.social-pill svg,
.footer-icon svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.cart-pill {
  background: linear-gradient(180deg, #d8ae61, #bd8c35);
  color: #24170f;
  box-shadow: 0 16px 30px rgba(195, 145, 47, 0.28);
}

.cart-pill-muted {
  background: linear-gradient(180deg, #324f25, #20351a);
  color: #fff;
  box-shadow: none;
}

main {
  display: grid;
  gap: 32px;
  margin-top: 10px;
}

.page-shell,
.topbar,
.topbar-menu,
.main-nav,
.topbar-actions,
.hero,
.hero-copy,
.hero-visual,
.hero-highlights,
.combo-grid-main,
.combo-grid-light,
.journey-grid,
.flavor-grid,
.benefit-grid,
.flavor-highlight-card,
.flavor-highlight-copy,
.combo-builder,
.builder-panel,
.summary-card,
.summary-info-card,
.checkout-layout,
.checkout-main,
.checkout-grid,
.auth-layout,
.account-grid,
.account-hero,
.account-hero > div,
.account-side-card,
.account-current-order,
.account-history-item,
.site-footer,
.footer-brand,
.footer-contact,
.summary-actions {
  min-width: 0;
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  min-height: auto;
  padding: 42px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 85% 16%, rgba(219, 180, 103, 0.22), transparent 20%),
    radial-gradient(circle at 18% 30%, rgba(255, 255, 255, 0.08), transparent 16%),
    linear-gradient(135deg, #1c2516 0%, #2d4022 44%, #4c5f2d 70%, #86662f 120%);
  color: #fff;
  box-shadow: var(--shadow-hero);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}

.eyebrow,
.section-heading span,
.benefit-panel span,
.closing-cta span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  color: #f0d294;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero h1 {
  max-width: 14ch;
  margin-top: 26px;
  font-size: clamp(4.2rem, 6vw, 5.7rem);
  line-height: 0.9;
  color: #fff5e6;
}

.hero p {
  max-width: 760px;
  margin-top: 22px;
  font-size: 1.12rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.82);
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-top: 30px;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  border: 0;
  outline: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.btn-primary {
  color: #23170f;
  background: linear-gradient(180deg, #e0b868, #c9922f);
  border: 1px solid rgba(160, 112, 30, 0.14);
  box-shadow: 0 18px 36px rgba(198, 145, 47, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(198, 145, 47, 0.34);
  filter: saturate(1.02);
}

.btn-primary:focus,
.btn-primary:focus-visible,
.btn-secondary:focus,
.btn-secondary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(54, 88, 38, 0.14);
}

.btn-secondary {
  color: #203016;
  background: linear-gradient(180deg, #f3dfb0, #d6b06a);
  border: 1px solid rgba(124, 84, 25, 0.22);
  box-shadow: 0 18px 30px rgba(78, 58, 24, 0.22);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(78, 58, 24, 0.28);
  filter: saturate(1.02);
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.hero-highlights article {
  padding: 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.hero-highlights strong {
  display: block;
  font-size: 1.04rem;
  font-weight: 800;
  color: #fff;
}

.hero-highlights span {
  display: block;
  margin-top: 10px;
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

.hero-visual {
  position: relative;
  display: grid;
  align-items: center;
  min-width: 0;
}

.hero-price-card {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  z-index: 2;
  width: auto;
  padding: 12px 18px;
  border-radius: 18px;
  background: rgba(255, 249, 238, 0.96);
  color: #2c2117;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
}

.hero-price-card strong {
  display: block;
  font-size: 1rem;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero-image-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 610px;
  padding: 18px;
  border: 1px solid rgba(226, 202, 146, 0.4);
  border-radius: 40px;
  background: linear-gradient(180deg, rgba(255, 249, 238, 0.12), rgba(255, 255, 255, 0.04));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(10px);
}

.hero-image-card img {
  width: 100%;
  height: 574px;
  border-radius: 32px;
  object-fit: cover;
}

.hero-image-caption {
  position: absolute;
  right: 34px;
  bottom: 34px;
  left: 34px;
  padding: 24px 26px;
  border-radius: 28px;
  background: rgba(14, 20, 11, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.hero-image-caption span {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #f0d294;
}

.hero-image-caption strong {
  display: block;
  margin-top: 12px;
  font-size: 2rem;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: #fff;
}

.section-heading {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.section-heading.left {
  margin: 0;
  text-align: left;
}

.section-heading span,
.benefit-panel span,
.closing-cta span {
  color: #5b732f;
  background: #efe3c9;
}

.section-heading h2,
.closing-cta h2 {
  margin-top: 18px;
  font-size: clamp(2.8rem, 4vw, 4.2rem);
  line-height: 0.96;
  color: #2f2419;
}

.section-heading p,
.benefit-panel p,
.closing-cta p {
  margin-top: 18px;
  font-size: 1rem;
  line-height: 1.9;
  color: #6e6150;
}

.combos-section,
.journey-section,
.flavors-section {
  padding: 42px;
  border: 1px solid rgba(116, 81, 45, 0.1);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 251, 244, 0.98), rgba(245, 236, 218, 0.96));
  box-shadow: var(--shadow-soft);
}

.flavor-highlight-strip {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.flavor-highlight-card {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(219, 180, 103, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(255, 251, 244, 0.98), rgba(245, 236, 218, 0.96));
  border: 1px solid rgba(116, 81, 45, 0.1);
  box-shadow: 0 24px 60px rgba(49, 39, 27, 0.08);
}

.flavor-highlight-card img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.flavor-highlight-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 34px;
}

.flavor-highlight-copy span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: #efe3c9;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6f5b2a;
}

.flavor-highlight-copy h3 {
  margin-top: 18px;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 0.95;
}

.flavor-highlight-copy p {
  max-width: 54ch;
  margin-top: 16px;
  line-height: 1.85;
  color: #5f5243;
}

.flavor-highlight-copy .flavor-action {
  margin-top: 24px;
  align-self: flex-start;
}

.combo-grid {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}

.combo-grid-main {
  grid-template-columns: repeat(3, 1fr);
}

.combo-grid-light {
  grid-template-columns: repeat(3, 1fr);
}

.combo-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 30px;
  height: 100%;
}

.combo-card-featured,
.combo-card-highlight {
  display: flex;
  flex-direction: column;
  padding: 20px;
  min-height: 220px;
}

.combo-card-featured {
  background: linear-gradient(180deg, rgba(255, 252, 246, 1), rgba(245, 236, 219, 0.96));
  border: 1px solid rgba(116, 81, 45, 0.1);
}

.combo-card-highlight {
  background: linear-gradient(180deg, #2f4922, #182714);
  border: 1px solid rgba(214, 176, 102, 0.26);
  color: #fff;
  box-shadow: 0 26px 70px rgba(35, 50, 23, 0.24);
}

.combo-badge {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: #eee0c0;
  color: #785c2a;
}

.combo-card-highlight .combo-badge {
  background: linear-gradient(180deg, #e0b86a, #cb9534);
  color: #23170f;
}

.combo-card h3 {
  margin-top: 16px;
  font-family: "Manrope", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  min-height: 0;
  white-space: normal;
  text-wrap: balance;
}

.combo-title-main,
.combo-title-weight {
  display: block;
}

.combo-title-weight {
  margin-top: 6px;
}

.combo-card-light strong {
  display: flex;
  flex-direction: column;
  line-height: 1.02;
}

.combo-card p {
  margin-top: 12px;
  font-size: 0.94rem;
  line-height: 1.6;
  color: #6a5d4d;
  flex: 1;
  min-height: 0;
}

.combo-card-highlight p {
  color: rgba(255, 255, 255, 0.76);
}

.combo-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
}

.combo-footer small {
  display: block;
  margin-bottom: 8px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8b7a64;
}

.combo-card-highlight .combo-footer small {
  color: rgba(255, 255, 255, 0.5);
}

.combo-footer strong {
  font-size: 1.42rem;
  line-height: 1;
  color: #305024;
}

.combo-card-highlight .combo-footer strong {
  color: #f0cd79;
}

.combo-footer a,
.combo-card-featured .combo-footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, #2f4a22, #1b2b15);
  font-size: 0.82rem;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
  box-shadow: 0 12px 24px rgba(35, 50, 23, 0.18);
}

.combo-card-highlight .combo-footer a {
  color: #23170f;
  background: linear-gradient(180deg, #e0b86a, #cb9534);
  box-shadow: 0 12px 24px rgba(203, 149, 52, 0.22);
}

.combo-card-light {
  padding: 20px;
  border: 1px solid rgba(116, 81, 45, 0.1);
  background: rgba(255, 255, 255, 0.72);
}

.combo-card-light span,
.combo-card-light strong,
.combo-card-light em {
  display: block;
}

.combo-card-light strong {
  margin-top: 0;
  font-size: 1.52rem;
  line-height: 1.02;
  min-height: 0;
  white-space: normal;
  text-wrap: balance;
}

.combo-card-light p {
  margin-top: 12px;
  line-height: 1.6;
  color: #6d6150;
  min-height: 0;
}

.combo-card-light em {
  margin-top: 12px;
  font-style: normal;
  font-size: 1.55rem;
  font-weight: 800;
  color: #305024;
}

.combo-card-light-action {
  display: flex;
  flex-direction: column;
  min-height: 210px;
}

.promo-home-section[hidden] {
  display: none !important;
}

.combo-card-promo {
  background:
    radial-gradient(circle at top right, rgba(219, 180, 103, 0.2), transparent 28%),
    linear-gradient(180deg, rgba(255, 250, 241, 0.98), rgba(246, 236, 215, 0.95));
  border-color: rgba(158, 118, 49, 0.16);
  box-shadow: 0 20px 44px rgba(91, 68, 31, 0.1);
}

.combo-card-promo .combo-badge {
  margin-bottom: 14px;
}

.promo-flavor-strip[hidden] {
  display: none !important;
}

.promo-flavor-strip {
  display: grid;
  gap: 20px;
  margin: 26px 0 30px;
  padding: 24px;
  border: 1px solid rgba(158, 118, 49, 0.14);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(219, 180, 103, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(255, 251, 244, 0.98), rgba(247, 236, 216, 0.96));
  box-shadow: 0 20px 54px rgba(78, 60, 32, 0.08);
}

.promo-flavor-strip__heading span {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: #efe3c9;
  color: #6f5b2a;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.promo-flavor-strip__heading strong {
  display: block;
  margin-top: 16px;
  font-size: clamp(1.7rem, 2.7vw, 2.5rem);
  line-height: 1;
  color: #2f2419;
}

.promo-flavor-strip__heading p {
  margin-top: 12px;
  max-width: 62ch;
  line-height: 1.8;
  color: #645745;
}

.promo-flavor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.promo-flavor-card {
  position: relative;
}

.promo-flavor-card__media {
  position: relative;
}

.promo-flavor-card__media img {
  width: 100%;
  height: 230px;
  display: block;
  object-fit: cover;
}

.promo-flavor-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(43, 79, 31, 0.94);
  color: #f8f1dc;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(25, 43, 19, 0.2);
}

.promo-flavor-card__copy {
  position: relative;
}

.promo-flavor-card__copy .flavor-action {
  margin-top: 16px;
}

.combo-light-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 12px;
}

.combo-light-footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, #2f4a22, #1b2b15);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.journey-card {
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid rgba(116, 81, 45, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  min-height: 250px;
}

.journey-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f0e1c0;
  font-size: 0.92rem;
  font-weight: 800;
  color: #77592b;
}

.journey-card h3 {
  margin-top: 18px;
  font-family: "Manrope", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.journey-card p {
  margin-top: 14px;
  line-height: 1.85;
  color: #6e6150;
  flex: 1;
}

.flavor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 30px;
}

.flavor-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(116, 81, 45, 0.1);
  border-radius: 30px;
  background: #fffdf8;
  box-shadow: 0 18px 46px rgba(49, 39, 27, 0.06);
  height: 100%;
}

.flavor-card img {
  width: 100%;
  height: 280px;
  padding: 0;
  object-fit: contain;
  object-position: center center;
  transform: none;
  transform-origin: center;
  background: transparent;
  display: block;
}

.flavor-copy {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px;
  min-height: 0;
}

.flavor-copy span {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: #efe3c9;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6f5b2a;
}

.flavor-copy h3 {
  margin-top: 14px;
  font-family: "Manrope", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  min-height: 0;
}

.flavor-copy p {
  margin-top: 14px;
  line-height: 1.85;
  color: #5f5243;
  min-height: 0;
}

.flavor-copy small {
  display: block;
  margin-top: 14px;
  font-size: 0.88rem;
  line-height: 1.7;
  color: #85705d;
  padding-top: 14px;
  min-height: 0;
}

.flavor-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  min-height: 46px;
  margin-top: auto;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #2f4a22, #1b2b15);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.flavor-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(46, 64, 28, 0.18);
}

.benefits-section {
  display: grid;
  gap: 18px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.benefit-panel {
  padding: 24px;
  border: 1px solid rgba(116, 81, 45, 0.1);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 251, 244, 0.98), rgba(245, 236, 218, 0.96));
  box-shadow: var(--shadow-soft);
}

.benefit-panel-soft {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.benefit-panel-dark {
  background: linear-gradient(135deg, #21361a 0%, #172613 48%, #74552a 130%);
  color: #fff;
  box-shadow: 0 28px 90px rgba(27, 38, 18, 0.26);
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
}

.benefit-panel-dark-slim h2 {
  max-width: none;
}

.benefit-panel-dark span {
  color: #f0d294;
  background: rgba(255, 255, 255, 0.08);
}

.benefit-panel-dark h2 {
  margin-top: 18px;
  max-width: none;
  font-size: 1.95rem;
  line-height: 1.14;
  color: #fff7e6;
  white-space: nowrap;
}

.benefit-panel-dark p {
  margin-top: 18px;
  max-width: none;
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.76);
  white-space: nowrap;
}

.benefit-panel strong {
  display: block;
  max-width: none;
  font-size: 1.15rem;
  line-height: 1.2;
  color: #2f2419;
  min-height: 2.4em;
}

.benefit-panel p {
  margin-top: 12px;
  max-width: none;
  font-size: 0.96rem;
  line-height: 1.7;
  flex: 1;
}

.closing-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 24px 28px;
  border: 1px solid rgba(116, 81, 45, 0.1);
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255, 251, 244, 0.98), rgba(245, 236, 218, 0.96));
  box-shadow: var(--shadow-soft);
}

.closing-cta > div {
  max-width: 920px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.closing-cta h2 {
  max-width: none;
  font-size: clamp(1.4rem, 1.75vw, 2rem);
  line-height: 1.08;
  white-space: nowrap;
}

.closing-cta .btn-primary {
  flex-shrink: 0;
  min-width: 190px;
  justify-self: end;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1fr;
  gap: 24px;
  align-items: center;
  padding: 28px 32px;
  border: 1px solid rgba(116, 81, 45, 0.1);
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255, 251, 244, 0.98), rgba(245, 236, 218, 0.96));
  box-shadow: var(--shadow-soft);
}

.footer-stack {
  display: grid;
  gap: 10px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-brand img {
  width: 140px;
  height: auto;
  object-fit: contain;
}

.footer-brand p {
  max-width: 34ch;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #6b5d4c;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.94rem;
  font-weight: 800;
  color: #3b3025;
}

.footer-contact {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-dev-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  margin-top: 0;
  padding: 14px 20px;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255, 251, 244, 0.92), rgba(244, 235, 216, 0.92));
  border: 1px solid rgba(116, 81, 45, 0.1);
  box-shadow: var(--shadow-soft);
  color: #2d2117;
}

.footer-dev-copy {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 1 1 auto;
}

.footer-dev-copy.footer-dev-copy-column {
  display: grid;
  gap: 6px;
  align-items: start;
}

.footer-dev-copy p {
  max-width: none;
  font-size: 0.96rem;
  line-height: 1.55;
  color: #6b5d4c;
  margin: 0;
  text-align: left;
}

.footer-dev-title {
  font-size: 1.08rem;
  line-height: 1.2;
  color: #4c6430;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.footer-dev-title-prefix {
  color: #6f8750;
  font-size: 0.92em;
  font-weight: 700;
  margin-right: 0.28em;
}

.footer-dev-description {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #6b5d4c;
}

.footer-dev-meta {
  display: grid;
  gap: 2px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #7a6a56;
}

.footer-dev-meta a {
  color: inherit;
  text-decoration: none;
}

.footer-dev-meta a:hover {
  color: #4c6430;
}

.footer-dev-copy p strong {
  font-size: 1rem;
  line-height: inherit;
  color: #4c6430;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.footer-dev-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  width: min(100%, 390px);
  justify-content: center;
  align-items: center;
  flex: 0 0 auto;
  margin-left: 2px;
}

.footer-dev-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  min-height: 42px;
  padding: 0 16px;
  appearance: none;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(239, 227, 201, 0.92), rgba(232, 216, 183, 0.92));
  border: 1px solid rgba(116, 81, 45, 0.14);
  color: #5f503f;
  font-size: 0.9rem;
  font-weight: 800;
  font-family: "Manrope", sans-serif;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.footer-dev-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(116, 81, 45, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #2d2117;
}

.combo-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 38px;
  border: 1px solid rgba(116, 81, 45, 0.1);
  border-radius: 40px;
  background:
    radial-gradient(circle at 85% 18%, rgba(217, 179, 103, 0.16), transparent 20%),
    linear-gradient(135deg, #f7f0e2 0%, #f2e7d2 100%);
  box-shadow: var(--shadow-soft);
}

.combo-hero .eyebrow {
  color: #b4934d;
  background: #f4ebcf;
  border: 1px solid rgba(180, 147, 77, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.combo-hero-copy h1 {
  margin-top: 18px;
  font-size: clamp(2.8rem, 4vw, 4.2rem);
  line-height: 0.96;
  max-width: 15ch;
}

.combo-hero-copy,
.combo-hero-visual,
.builder-main,
.builder-sidebar,
.checkout-main,
.auth-showcase,
.auth-panel,
.account-hero > div,
.account-side-card,
.account-current-order {
  min-width: 0;
}

.combo-hero-copy p {
  max-width: 820px;
  margin-top: 18px;
  font-size: 1.02rem;
  line-height: 1.9;
  color: #665947;
}

.combo-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.illustrative-note {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(248, 240, 223, 0.9);
  border: 1px solid rgba(116, 81, 45, 0.09);
  color: #6d5c48;
  line-height: 1.6;
  font-size: 0.95rem;
}

.illustrative-note-inline {
  margin-top: 0;
  margin-bottom: 20px;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  min-height: 132px;
  padding: 18px 14px;
  border: 1px solid rgba(116, 81, 45, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
  text-align: center;
}

.progress-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #efe0c0;
  font-size: 0.84rem;
  font-weight: 800;
  color: #735528;
}

.progress-step strong {
  font-size: 0.84rem;
  line-height: 1.4;
  max-width: 10ch;
  min-height: 3em;
}

.progress-step.active {
  background: linear-gradient(180deg, #fffaf0, #f5e8ce);
  border-color: rgba(201, 153, 68, 0.24);
}

.combo-hero-visual {
  position: relative;
  min-height: 460px;
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(135deg, #21361a, #75562a);
  box-shadow: 0 22px 60px rgba(27, 38, 18, 0.22);
}

.combo-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.combo-hero-badge {
  position: absolute;
  right: 22px;
  top: 22px;
  width: 250px;
  padding: 18px 18px 20px;
  border-radius: 28px;
  background: rgba(44, 63, 28, 0.88);
  color: #fff;
  backdrop-filter: blur(12px);
}

.combo-hero-badge span,
.combo-hero-badge strong,
.combo-hero-badge em {
  display: block;
}

.combo-hero-badge span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #efcb79;
}

.combo-hero-badge strong {
  margin-top: 10px;
  font-size: 1.45rem;
  line-height: 1.02;
}

.combo-hero-badge em {
  margin-top: 14px;
  font-style: normal;
  font-size: 1.75rem;
  font-weight: 800;
  color: #efcb79;
}

.combo-builder {
  display: grid;
  grid-template-columns: 1.12fr 0.5fr;
  gap: 24px;
}

.builder-main {
  display: grid;
  gap: 24px;
}

.builder-panel,
.summary-card,
.summary-info-card {
  padding: 32px;
  border: 1px solid rgba(116, 81, 45, 0.1);
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255, 251, 244, 0.98), rgba(245, 236, 218, 0.96));
  box-shadow: var(--shadow-soft);
}

.builder-panel-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.builder-supporting-text {
  max-width: 58ch;
  margin-top: 12px;
  font-size: 0.98rem;
  line-height: 1.8;
  color: #6b5d4c;
}

.builder-filters {
  display: flex;
  gap: 10px;
}

.filter-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 136px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(116, 81, 45, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  color: #5b4e3d;
  white-space: nowrap;
}

.filter-pill.active {
  background: linear-gradient(180deg, #2f4a22, #1b2b15);
  color: #fff;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
  box-shadow: 0 12px 24px rgba(35, 50, 23, 0.18);
}

.combo-footer a:hover,
.combo-light-footer a:hover {
  transform: translateY(-2px);
  filter: saturate(1.05);
}

.selector-grid {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.selector-grid-three {
  grid-template-columns: repeat(3, 1fr);
}

.selector-grid-two {
  grid-template-columns: repeat(2, 1fr);
}

.selector-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px;
  border: 1px solid rgba(116, 81, 45, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  text-align: left;
  cursor: pointer;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.selector-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(61, 45, 28, 0.08);
}

.selector-card small,
.selector-card strong,
.selector-card em {
  display: block;
}

.selector-card small {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8a754f;
}

.selector-card strong {
  margin-top: 12px;
  font-family: "Manrope", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.95;
  color: #2d2117;
  min-height: 1.95em;
}

.selector-card em {
  margin-top: 12px;
  font-style: normal;
  font-size: 1.08rem;
  line-height: 1.5;
  color: #6f6252;
  flex: 1;
}

.selector-card.is-selected {
  background: linear-gradient(180deg, #2f4a22, #1b2b15);
  border-color: rgba(214, 176, 102, 0.28);
}

.selector-card.is-selected small,
.selector-card.is-selected em {
  color: rgba(255, 255, 255, 0.72);
}

.selector-card.is-selected strong {
  color: #f7edd7;
}

.selector-card-light strong {
  color: #305024;
}

.flavor-builder-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.builder-flavor-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(116, 81, 45, 0.1);
  border-radius: 30px;
  background: #fffdf9;
  box-shadow: 0 14px 36px rgba(49, 39, 27, 0.06);
}

.builder-flavor-card img {
  width: 100%;
  height: 230px;
  padding: 0;
  object-fit: contain;
  object-position: center center;
  transform: none;
  transform-origin: center;
  background: transparent;
  display: block;
}

.builder-flavor-copy {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px;
  min-height: 0;
}

.builder-flavor-copy span {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: #f1e3c7;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7a5a2d;
}

.builder-flavor-copy h3 {
  margin-top: 14px;
  font-family: "Manrope", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.98;
  min-height: 0;
}

.builder-flavor-copy p {
  margin-top: 12px;
  line-height: 1.8;
  color: #655947;
  min-height: 0;
}

.builder-flavor-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 18px;
}

.builder-flavor-footer small,
.builder-flavor-footer strong {
  display: block;
}

.builder-flavor-footer small {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8a775f;
}

.builder-flavor-footer strong {
  margin-top: 6px;
  font-size: 1.25rem;
  color: #2d2117;
}

.builder-flavor-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.builder-flavor-footer button {
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #2f4a22, #1b2b15);
  color: #fff;
  font-weight: 800;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.builder-flavor-stepper {
  flex-wrap: nowrap;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(47, 74, 34, 0.08);
}

.builder-stepper-button {
  min-width: 46px;
  padding: 0;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
  font-size: 16px;
}

.builder-stepper-button-minus {
  background: rgba(255, 245, 241, 0.96) !important;
  color: #8f4138 !important;
  border: 1px solid rgba(143, 65, 56, 0.12) !important;
}

.builder-stepper-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 46px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: #2d2117;
  font-size: 1rem;
  font-weight: 800;
}

.builder-flavor-card.is-selected {
  box-shadow: 0 0 0 2px rgba(54, 88, 38, 0.16);
}

.builder-flavor-footer button.is-disabled,
.builder-flavor-footer button:disabled {
  cursor: not-allowed;
  opacity: 0.54;
}

.builder-sidebar {
  display: grid;
  gap: 24px;
  align-content: start;
}

.summary-card span,
.summary-card h2,
.summary-card p {
  display: block;
}

.summary-card span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7c6231;
}

.summary-card h2 {
  margin-top: 12px;
  font-family: "Manrope", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.92;
}

.summary-card p {
  margin-top: 14px;
  line-height: 1.8;
  color: #6b5d4c;
}

.summary-items {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.summary-empty {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px dashed rgba(116, 81, 45, 0.18);
  color: #736554;
  line-height: 1.75;
}

.summary-item {
  display: grid;
  grid-template-columns: 68px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(116, 81, 45, 0.08);
}

.summary-item img {
  width: 68px;
  height: 68px;
  border-radius: 16px;
  object-fit: cover;
}

.summary-item strong,
.summary-item small,
.summary-item em {
  display: block;
}

.summary-item strong {
  font-size: 0.95rem;
}

.summary-item small {
  margin-top: 6px;
  color: #796c5a;
}

.summary-remove {
  margin-top: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #7b5c2f;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

.summary-item em {
  font-style: normal;
  font-weight: 800;
  color: #305024;
}

.summary-meta {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px dashed rgba(116, 81, 45, 0.18);
}

.summary-meta div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #6b5d4c;
}

.summary-meta strong {
  color: #2d2117;
}

.summary-total strong {
  font-size: 1.9rem;
  color: #305024;
}

.summary-button {
  width: 100%;
  margin-top: 24px;
}

.summary-actions {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.summary-actions .summary-button {
  margin-top: 0;
}

.summary-actions .btn-secondary.summary-button {
  border-color: rgba(117, 82, 46, 0.14);
  background: rgba(248, 240, 223, 0.96);
  color: #3b2d21;
  box-shadow: none;
}

.summary-actions .btn-secondary.summary-button:hover {
  background: rgba(239, 227, 201, 0.98);
  border-color: rgba(117, 82, 46, 0.18);
}

.summary-actions .btn-secondary.summary-button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.summary-info-card strong {
  display: block;
  font-size: 1.2rem;
  color: #2d2117;
}

.summary-info-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: #685b49;
  line-height: 1.85;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1.06fr 0.5fr;
  gap: 24px;
}

.checkout-main {
  display: grid;
  gap: 24px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.checkout-field.full {
  grid-column: 1 / -1;
}

.checkout-field label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7b694e;
}

.mock-input {
  display: flex;
  align-items: center;
  min-height: 60px;
  padding: 0 18px;
  border: 1px solid rgba(116, 81, 45, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  color: #2d2117;
  font-weight: 600;
}

.checkout-field select {
  width: 100%;
  min-height: 60px;
  padding: 0 18px;
  border: 1px solid rgba(116, 81, 45, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  color: #2d2117;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

.checkout-field select,
.form-field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 52px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M4.5 6.75L9 11.25L13.5 6.75' stroke='%232d2117' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 18px 18px;
  cursor: pointer;
}

.delivery-choice-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.delivery-choice {
  min-height: 60px;
  padding: 0 18px;
  border: 1px solid rgba(116, 81, 45, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  color: #2d2117;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.delivery-choice.is-selected {
  border-color: rgba(47, 74, 34, 0.22);
  background: linear-gradient(180deg, #2f4a22, #1f3317);
  color: #fff;
}

.schedule-builder {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.schedule-group {
  display: grid;
  gap: 12px;
}

.schedule-label {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7b694e;
}

.schedule-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.schedule-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(116, 81, 45, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #4f4336;
  font-size: 0.98rem;
  font-weight: 800;
  text-align: center;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.schedule-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(61, 45, 28, 0.08);
}

.schedule-pill.is-selected {
  background: linear-gradient(180deg, #2f4a22, #1b2b15);
  border-color: rgba(214, 176, 102, 0.28);
  color: #f7edd7;
}

.schedule-helper {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(116, 81, 45, 0.08);
  color: #6b5d4c;
  line-height: 1.75;
}

.saved-address-card {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(116, 81, 45, 0.1);
}

.saved-address-card.is-hidden {
  display: none;
}

.saved-address-eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7a6438;
}

.saved-address-card strong {
  font-size: 1.1rem;
  color: #2d2117;
}

.saved-address-card small {
  color: #716351;
}

.checkout-entry-panel.is-hidden,
.checkout-account-panel.is-hidden,
.checkout-address-panel.is-hidden {
  display: none;
}

.saved-address-button {
  justify-self: start;
  min-height: 42px;
  margin-top: 6px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #2f4a22, #1b2b15);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.address-change-panel {
  display: none;
  gap: 16px;
  margin-top: 18px;
}

.address-change-panel.is-visible {
  display: grid;
}

.auth-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 24px;
}

.auth-showcase {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 82% 18%, rgba(217, 179, 103, 0.16), transparent 18%),
    linear-gradient(135deg, #21361a 0%, #172613 48%, #74552a 130%);
  color: #fff;
  box-shadow: 0 28px 90px rgba(27, 38, 18, 0.26);
}

.auth-showcase h1 {
  margin-top: 18px;
  max-width: 12ch;
  font-size: clamp(3rem, 4.5vw, 4.4rem);
  line-height: 0.94;
  color: #fff6e6;
}

.auth-showcase p {
  max-width: 48ch;
  margin-top: 20px;
  font-size: 1.02rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.78);
}

.auth-benefits {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.auth-benefits article {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.auth-benefits strong,
.auth-benefits span {
  display: block;
}

.auth-benefits strong {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
}

.auth-benefits span {
  margin-top: 8px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

.auth-panel {
  display: flex;
  flex-direction: column;
}

.auth-tabs {
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  width: 100%;
  padding: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
}

.auth-tab {
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #604e3a;
  font-size: 0.98rem;
  font-weight: 800;
  cursor: pointer;
}

.auth-tab.is-selected {
  background: linear-gradient(180deg, #2f4a22, #1b2b15);
  color: #fff;
}

.auth-content {
  display: none;
  margin-top: 26px;
}

.auth-content.is-visible {
  display: block;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.form-grid.single {
  grid-template-columns: 1fr;
}

.form-field {
  display: grid;
  gap: 10px;
  align-content: start;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field span {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7b694e;
}

.form-help {
  margin-top: -2px;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #7b6950;
}

.form-field input,
.form-field select {
  width: 100%;
  box-sizing: border-box;
  min-height: 60px;
  padding: 0 18px;
  border: 1px solid rgba(116, 81, 45, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  color: #2d2117;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

.form-field select {
  line-height: 1;
}

.login-stage .form-field input,
.login-stage .form-field select {
  font-size: 16px;
}

.auth-actions {
  display: flex;
  gap: 14px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.auth-actions-login {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.checkout-entry-actions {
  align-items: center;
}

.checkout-entry-actions .btn-primary,
.checkout-entry-actions .btn-secondary {
  min-width: 220px;
  justify-content: center;
}

.auth-secondary-link-wrap {
  margin-top: 18px;
}

.auth-secondary-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: #2f4a22;
  font-family: "Manrope", sans-serif;
  font-size: 0.96rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.auth-feedback {
  margin-top: 18px;
}

.auth-feedback[hidden] {
  display: none;
}

.auth-feedback[data-tone="warning"] {
  background: rgba(249, 236, 221, 0.96);
  border-color: rgba(163, 101, 45, 0.16);
  color: #7a5230;
}

.auth-feedback[data-tone="success"] {
  background: rgba(236, 243, 229, 0.96);
  border-color: rgba(76, 100, 48, 0.14);
  color: #3f5f25;
}

.auth-address-panel {
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px dashed rgba(116, 81, 45, 0.16);
}

.auth-submit,
.auth-whatsapp {
  min-width: 210px;
}

.auth-actions-login .auth-submit,
.auth-actions-login .auth-whatsapp {
  min-width: 0;
  width: 100%;
  justify-content: center;
}

.auth-whatsapp {
  color: #3e3124;
  background: rgba(244, 236, 221, 0.96);
  border: 1px solid rgba(116, 81, 45, 0.12);
}

.auth-whatsapp:hover {
  color: #2d2117;
  background: rgba(239, 227, 201, 0.96);
}

.login-stage {
  display: grid;
}

.login-footer {
  margin-top: 28px;
}

@media (min-width: 981px) {
  .auth-register-grid {
    align-items: start;
  }

  .register-password-field {
    align-self: start;
    margin-top: -6px;
  }

  .register-password-field input {
    min-height: 60px;
    height: 60px;
  }
}

.payment-note,
.summary-inline-note {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(116, 81, 45, 0.08);
  background: rgba(255, 255, 255, 0.68);
  color: #6b5d4c;
  line-height: 1.75;
}

.installment-panel {
  display: none;
  gap: 16px;
  margin-top: 18px;
}

.installment-panel.is-visible {
  display: grid;
}

.installment-pills .schedule-pill {
  min-width: 170px;
}

.summary-row-hidden {
  display: none !important;
}

.account-stage {
  display: grid;
  gap: 24px;
}

.account-hero {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 36px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 84% 18%, rgba(217, 179, 103, 0.18), transparent 16%),
    linear-gradient(135deg, #21361a 0%, #172613 48%, #74552a 130%);
  color: #fff;
  box-shadow: 0 28px 90px rgba(27, 38, 18, 0.22);
}

.account-hero h1 {
  margin-top: 16px;
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  line-height: 0.96;
  color: #fff7e8;
}

.account-hero p {
  max-width: 72ch;
  margin-top: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
}

.account-hero-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: min(520px, 100%);
}

.account-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr;
  gap: 24px;
}

.account-orders-section {
  display: grid;
  gap: 24px;
  margin-top: 10px;
  padding: 28px;
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(255, 251, 242, 0.96), rgba(247, 239, 220, 0.9)),
    rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(116, 81, 45, 0.08);
  box-shadow: 0 22px 48px rgba(77, 57, 31, 0.08);
}

.account-order-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.account-order-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(116, 81, 45, 0.1);
  background: rgba(255, 255, 255, 0.72);
  color: #6c5a46;
  font-weight: 700;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.account-order-filter.is-active {
  background: linear-gradient(180deg, #2f4a22, #1b2b15);
  border-color: rgba(27, 43, 21, 0.16);
  color: #fff4df;
}

.account-order-filter:hover {
  background: rgba(247, 239, 219, 0.92);
  border-color: rgba(117, 82, 46, 0.16);
  transform: translateY(-1px);
}

.account-order-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.account-notice {
  display: grid;
  gap: 6px;
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(232, 244, 218, 0.94);
  border: 1px solid rgba(72, 108, 47, 0.14);
}

.account-notice strong {
  color: #29401c;
}

.account-notice span {
  color: #4e6242;
}

.account-notice.is-hidden {
  display: none;
}

.account-meta-card,
.account-address-box {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(116, 81, 45, 0.08);
}

.account-meta-card span,
.account-address-box span {
  color: #736350;
}

.account-meta-card strong,
.account-address-box strong {
  color: #2d2117;
  font-size: 1.08rem;
}

.order-progress {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.order-progress-step {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 12px;
  border-radius: 20px;
  border: 1px solid rgba(116, 81, 45, 0.08);
  background: rgba(255, 255, 255, 0.74);
  color: #736350;
  font-weight: 700;
  text-align: center;
}

.order-progress-step.is-complete {
  background: rgba(235, 245, 225, 0.95);
  color: #2f4d23;
}

.order-progress-step.is-active {
  background: linear-gradient(180deg, #2f4a22, #1b2b15);
  color: #fff6e6;
}

.account-flavor-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.account-flavor-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(248, 240, 223, 0.96);
  color: #5a4a36;
  font-weight: 800;
}

.account-side-card {
  display: grid;
  align-content: start;
}

.account-side-actions {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.account-side-actions .btn-secondary {
  color: #3b2d21;
  background: rgba(248, 240, 223, 0.96);
  border: 1px solid rgba(117, 82, 46, 0.12);
  box-shadow: none;
}

.account-side-actions .btn-secondary:hover {
  background: rgba(239, 227, 201, 0.98);
  border-color: rgba(117, 82, 46, 0.18);
}

.account-notification-card {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(116, 81, 45, 0.1);
  background:
    linear-gradient(145deg, rgba(255, 250, 239, 0.98), rgba(247, 239, 219, 0.9)),
    rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 38px rgba(78, 57, 31, 0.08);
}

.account-notification-card[data-tone="success"] {
  border-color: rgba(72, 126, 77, 0.18);
  background:
    linear-gradient(145deg, rgba(243, 251, 241, 0.98), rgba(229, 244, 225, 0.92)),
    rgba(255, 255, 255, 0.8);
}

.account-notification-card[data-tone="error"] {
  border-color: rgba(176, 88, 74, 0.18);
  background:
    linear-gradient(145deg, rgba(255, 245, 242, 0.98), rgba(250, 232, 225, 0.92)),
    rgba(255, 255, 255, 0.8);
}

.account-notification-card__brand {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
}

.account-notification-card__logo {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 12px 24px rgba(55, 40, 21, 0.14);
}

.account-notification-card__eyebrow {
  display: inline-block;
  color: #8d7656;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.account-notification-card__title {
  margin: 4px 0 0;
  color: #2f2318;
  font-size: 1.05rem;
  line-height: 1.2;
}

.account-notification-card__body {
  margin: 0;
  color: #6b5d4c;
  line-height: 1.7;
}

.account-hero-actions .btn-primary,
.account-hero-actions .btn-secondary {
  width: 100%;
  justify-content: center;
}

.account-edit-panel[hidden] {
  display: none;
}

.account-edit-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.account-edit-actions .btn-primary,
.account-edit-actions .btn-secondary {
  min-width: 200px;
}

#account-edit-city {
  width: 100%;
  min-height: 60px;
  box-sizing: border-box;
  border-radius: 20px;
  border: 1px solid rgba(116, 81, 45, 0.1);
  background-color: rgba(255, 255, 255, 0.82);
  -webkit-appearance: none;
  appearance: none;
  padding: 0 52px 0 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M4.5 6.75L9 11.25L13.5 6.75' stroke='%232d2117' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 18px 18px;
}

.account-history-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.account-history-item {
  display: grid;
  grid-template-columns: 1.2fr auto auto;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(116, 81, 45, 0.08);
  background: rgba(255, 255, 255, 0.76);
}

.account-history-item strong,
.account-history-item span {
  display: block;
}

.account-history-item strong {
  color: #2d2117;
}

.account-history-item span {
  margin-top: 6px;
  color: #736350;
}

.account-repeat {
  min-width: 170px;
  text-align: center;
}

.account-empty-state {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(116, 81, 45, 0.08);
  color: #736350;
}

@media (max-width: 1240px) {
  .page-shell {
    width: min(calc(100% - 32px), 1180px);
  }

  .hero,
  .combo-hero,
  .combo-grid-main,
  .combo-grid-light,
  .journey-grid,
  .flavor-grid,
  .benefits-section,
  .benefit-grid,
  .auth-layout,
  .account-grid,
  .account-order-meta,
  .site-footer,
  .combo-builder,
  .checkout-layout,
  .selector-grid-three,
  .selector-grid-two,
  .flavor-builder-grid,
  .combo-progress,
  .checkout-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .hero-price-card {
    position: static;
    margin-bottom: 20px;
  }

  .hero-image-card {
    min-height: auto;
  }

  .hero-image-card img {
    height: 460px;
  }

  .combo-hero-visual {
    min-height: 420px;
  }

  .closing-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .order-progress {
    grid-template-columns: 1fr;
  }

  .account-history-item {
    grid-template-columns: 1fr;
  }

  .site-footer {
    justify-items: center;
    text-align: center;
  }

  .footer-stack {
    gap: 12px;
  }

  .footer-brand,
  .footer-links,
  .footer-contact {
    justify-content: center;
    text-align: center;
  }

  .footer-brand {
    flex-direction: column;
  }

  .footer-contact {
    width: 100%;
    justify-content: center;
    margin-inline: auto;
  }

  .footer-dev-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-dev-copy {
    justify-content: center;
  }

  .footer-dev-copy p {
    text-align: center;
  }

  .login-stage .auth-layout {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }

  .login-stage .auth-panel {
    order: 2 !important;
  }

  .login-stage .auth-showcase {
    order: 1 !important;
  }

  .flavor-highlight-card {
    grid-template-columns: 1fr;
  }

  .flavor-highlight-card img {
    min-height: 240px;
  }

  .summary-actions,
  .account-hero-actions {
    width: 100%;
  }
}

@media (max-width: 980px) {
  :root {
    --anchor-offset: 102px;
  }

  .page-shell {
    width: min(calc(100% - 24px), 100%);
    margin-top: 12px;
  }

  .account-orders-section {
    padding: 22px 16px;
    border-radius: 28px;
  }

  .topbar {
    grid-template-columns: minmax(0, 1fr) auto;
    position: sticky;
    align-items: center;
    min-height: 78px;
    padding: 14px 14px 16px;
    gap: 10px 12px;
    border-radius: 28px;
    overflow: visible;
    background: rgba(248, 243, 235, 0.96);
    box-shadow: 0 16px 34px rgba(57, 45, 29, 0.08);
  }

  .brand,
  .brand-link,
  .brand-lockup {
    min-width: 0;
    width: 100%;
    justify-content: flex-start;
  }

  .brand img {
    width: 170px;
    height: 52px;
  }

  .topbar > .main-nav,
  .topbar > .topbar-actions {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
  }

  .topbar.is-menu-open > .main-nav {
    display: grid;
  }

  .topbar.is-menu-open > .topbar-actions {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex !important;
    position: absolute;
    top: 14px;
    right: 14px;
    justify-self: auto;
    min-width: 110px;
    height: 46px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 18px rgba(57, 45, 29, 0.06);
    z-index: 3;
  }

  .topbar-menu {
    display: none;
    grid-template-columns: 1fr;
    grid-column: 1 / -1;
    gap: 14px;
    width: 100%;
    padding-top: 58px;
    min-width: 0;
  }

  .topbar.is-menu-open .topbar-menu {
    display: grid;
  }

  body.login-keyboard-open .topbar {
    top: 8px;
  }

  .login-stage.is-keyboard-open .auth-showcase,
  body.login-keyboard-open .site-footer,
  body.login-keyboard-open .footer-dev-card {
    display: none;
  }

  .login-stage.is-keyboard-open .auth-panel {
    margin-top: 0;
  }

  .login-stage.is-keyboard-open .auth-content {
    margin-top: 18px;
  }

  .login-stage.is-keyboard-open .auth-address-panel {
    margin-top: 18px;
    padding-top: 18px;
  }

  .main-nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
  }

  .main-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid rgba(116, 81, 45, 0.09);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
    text-align: center;
    font-size: 0.95rem;
    padding-bottom: 0;
  }

  .main-nav a.active::after,
  .main-nav a:hover::after {
    display: none;
  }

  .topbar-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    width: 100%;
    min-width: 0;
  }

  .social-pill {
    width: 40px;
    min-width: 40px;
    min-height: 40px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 16px rgba(57, 45, 29, 0.05);
  }

  .login-pill {
    order: 2;
    flex: 1 1 100%;
    min-width: 100%;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
  }

  .topbar.is-menu-open {
    border-radius: 30px;
  }

  .hero,
  .combo-hero {
    padding: 22px;
    gap: 18px;
  }


  .hero-copy,
  .combo-hero-copy {
    align-items: center;
    text-align: center;
  }

  .hero h1,
  .hero p,
  .benefit-panel-dark h2,
  .benefit-panel-dark p,
  .closing-cta h2 {
    white-space: normal;
  }

  .hero h1 {
    max-width: none;
    margin-inline: auto;
    font-size: clamp(2.4rem, 7vw, 4rem);
  }

  .hero p {
    max-width: none;
    margin-inline: auto;
  }

  .hero-cta {
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
  }

  .hero-highlights {
    width: 100%;
  }

  .hero-visual,
  .combo-hero-visual {
    width: 100%;
  }

  .hero-visual {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 18px;
    align-items: stretch;
  }

  .hero-price-card {
    position: static;
    align-self: stretch;
    width: 100%;
    margin: 0;
    padding: 18px 20px 20px;
    border-radius: 28px;
  }

  .hero-price-card span {
    font-size: 0.68rem;
  }

  .hero-price-card strong {
    font-size: 1.45rem;
  }

  .hero-price-card em {
    font-size: 1.9rem;
  }

  .hero-image-card {
    min-height: auto;
    padding: 12px;
    border-radius: 34px;
  }

  .hero-image-card img {
    height: 320px;
  }

  .hero-image-caption {
    position: static;
    margin-top: 0;
    padding: 18px 20px;
    border-radius: 28px;
    background: rgba(255, 249, 238, 0.96);
    border: 1px solid rgba(226, 202, 146, 0.34);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.1);
    backdrop-filter: none;
  }

  .hero-image-caption span {
    color: #7a5f2e;
  }

  .hero-image-caption strong {
    font-size: 1.4rem;
    line-height: 1.12;
    color: #2c2117;
  }

  .combo-hero-badge {
    right: 16px;
    left: 16px;
    top: 16px;
    width: auto;
  }

  .flavor-builder-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .summary-actions .summary-button,
  .account-hero-actions .btn-primary,
  .account-hero-actions .btn-secondary,
  .auth-actions .btn-primary,
  .auth-actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .combo-footer,
  .combo-light-footer,
  .summary-meta div {
    align-items: stretch;
  }

  .combo-footer a,
  .combo-light-footer a {
    width: 100%;
  }

}

@media (min-width: 1201px) {
  .hero h1 {
    max-width: none;
    font-size: clamp(3.3rem, 4.6vw, 5.1rem);
    white-space: nowrap;
  }

  .hero p {
    max-width: none;
    white-space: nowrap;
  }

  .hero-cta {
    justify-content: center;
  }

  .combo-hero-copy h1 {
    max-width: none;
    font-size: clamp(2.8rem, 4vw, 4.2rem);
    white-space: normal;
    text-wrap: balance;
  }

  .combo-hero-copy p {
    max-width: none;
    white-space: nowrap;
  }
}

@media (min-width: 561px) and (max-width: 980px) {
  .brand {
    min-width: 190px;
  }

  .brand img {
    width: 150px;
    height: 46px;
  }

  .section-heading h2,
  .closing-cta h2 {
    font-size: 2.55rem;
    line-height: 0.98;
    text-wrap: balance;
  }

  .benefit-panel-dark h2 {
    font-size: 2.1rem;
    line-height: 1.02;
  }

  .combos-section,
  .journey-section,
  .flavors-section {
    padding: 28px;
  }

  .hero-visual {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    align-content: start;
  }

  .hero-image-card {
    padding: 12px;
    border-radius: 30px;
  }

  .hero-image-card img {
    height: 320px;
    border-radius: 24px;
    object-fit: cover;
    object-position: center center;
    background: transparent;
  }

  .hero-image-caption {
    position: static;
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: 14px 16px;
    border-radius: 22px;
    background: rgba(255, 249, 238, 0.96);
    border: 1px solid rgba(226, 202, 146, 0.28);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
    backdrop-filter: none;
  }

  .hero-image-caption span {
    color: #7a5f2e;
  }

  .hero-image-caption strong {
    font-size: 1.08rem;
    line-height: 1.14;
    color: #2c2117;
  }

  .combo-hero {
    grid-template-columns: 1fr;
  }

  .combo-hero-copy {
    text-align: center;
    align-items: center;
  }

  .combo-hero-visual {
    display: none;
  }

  .combo-grid-main,
  .combo-grid-light {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 20px;
  }

  .journey-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 20px;
    align-items: stretch;
  }

  .flavor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 22px;
  }

  .promo-flavor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flavor-highlight-card {
    grid-template-columns: 1fr;
  }

  .flavor-highlight-card img {
    min-height: 240px;
  }

  .flavor-highlight-copy {
    padding: 24px;
  }

  .combo-card-featured,
  .combo-card-highlight {
    padding: 26px;
    min-height: auto;
  }

  .combo-card-light,
  .journey-card {
    padding: 22px;
    min-height: auto;
  }

  .combo-card h3 {
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    font-size: 1.12rem;
    line-height: 1.02;
    white-space: normal;
  }

  .combo-card-featured h3,
  .combo-card-highlight h3 {
    font-size: 1.48rem;
    line-height: 0.98;
  }

  .combo-title-main,
  .combo-title-weight {
    display: block;
  }

  .combo-title-main {
    white-space: normal;
  }

  .combo-title-weight {
    margin-top: 6px;
  }

  .combo-card p {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .combo-card-light strong,
  .combo-card-light .combo-title-main {
    font-size: 1.38rem;
    line-height: 1.02;
    min-height: 0;
    white-space: normal;
  }

  .combo-card-light .combo-title-weight {
    font-size: 1.18rem;
    line-height: 1.02;
  }

  .combo-card-light p,
  .journey-card p {
    min-height: 0;
    margin-top: 10px;
    font-size: 0.92rem;
    line-height: 1.52;
  }

  .combo-card-light em,
  .combo-footer strong {
    font-size: 1.3rem;
  }

  .combo-footer,
  .combo-light-footer {
    margin-top: 14px;
    padding-top: 10px;
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
  }

  .combo-footer > div,
  .combo-light-footer > div {
    width: 100%;
  }

  .combo-footer a,
  .combo-light-footer a {
    min-height: 40px;
    min-width: 100%;
    padding: 0 10px;
    font-size: 0.86rem;
  }

  .combo-card-light-action {
    min-height: auto;
  }

  .journey-card h3 {
    font-size: 1.32rem;
    line-height: 1.08;
  }

  .progress-step {
    min-height: 0;
    gap: 12px;
    padding: 18px 16px;
    align-items: flex-start;
    text-align: left;
  }

  .progress-step span {
    width: 54px;
    min-width: 54px;
    height: 54px;
    font-size: 1.2rem;
  }

  .progress-step strong {
    max-width: none;
    min-height: 0;
    font-size: 0.98rem;
    line-height: 1.22;
  }

  .flavor-card {
    border-radius: 24px;
  }

  .flavor-card img {
    height: 220px;
    padding: 0;
  }

  .flavor-copy {
    padding: 20px;
    min-height: auto;
  }

  .flavor-copy h3 {
    font-size: 1.7rem;
    line-height: 1;
    min-height: 0;
  }

  .flavor-copy p,
  .flavor-copy small {
    min-height: 0;
    margin-top: 10px;
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .flavor-copy small {
    padding-top: 10px;
  }

  .flavor-action {
    min-height: 40px;
    margin-top: 14px;
    padding: 0 16px;
    font-size: 0.84rem;
  }

  .selector-grid-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .selector-grid-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .selector-card {
    padding: 20px;
    min-height: auto;
  }

  .selector-card strong {
    font-size: 1.7rem;
    line-height: 0.98;
    min-height: 0;
  }

  .selector-card small,
  .selector-card em {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .site-footer {
    padding: 28px 30px;
    gap: 22px;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .footer-brand,
  .footer-links,
  .footer-contact {
    justify-content: center;
    text-align: center;
  }

  .footer-brand {
    flex-direction: column;
    gap: 10px;
  }

  .footer-brand p {
    white-space: normal;
    font-size: 0.98rem;
    line-height: 1.65;
    max-width: 34ch;
  }

  .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px 28px;
  }

  .footer-links a {
    font-size: 0.98rem;
  }

  .footer-contact {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    justify-self: center;
    align-self: center;
    place-self: center;
    margin-inline: auto;
    gap: 12px;
  }

  .footer-contact .footer-icon {
    flex: 0 0 42px;
  }

  .footer-dev-card {
    width: 100%;
    margin-top: 0;
    padding: 12px 16px;
    border-radius: 24px;
  }

  .footer-dev-card strong {
    font-size: 0.94rem;
    line-height: 1.45;
    text-align: center;
  }

  .footer-dev-actions {
    width: 100%;
    justify-content: center;
  }

  .footer-dev-copy p {
    font-size: 0.92rem;
  }

  .footer-dev-link {
    min-width: 0;
    flex: 0 1 auto;
  }

  .closing-cta {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
    justify-items: center;
  }

  .closing-cta > div {
    max-width: none;
    width: 100%;
  }

  .closing-cta span {
    margin-inline: auto;
  }

  .closing-cta .btn-primary {
    min-width: 0;
    width: auto;
    min-height: 48px;
    padding: 0 24px;
    justify-self: center;
  }

  .combo-builder {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .builder-panel,
  .summary-card,
  .summary-info-card {
    padding: 24px;
    border-radius: 28px;
  }

  .builder-panel-header {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .builder-filters {
    flex-wrap: wrap;
  }

  .filter-pill {
    min-width: 0;
    flex: 1 1 calc(33.333% - 8px);
    font-size: 0.82rem;
  }

  .summary-card h2 {
    font-size: 2.35rem;
    line-height: 0.95;
  }

  .summary-card p,
  .summary-empty,
  .summary-meta div,
  .saved-address-card small,
  .payment-note,
  .summary-inline-note,
  .schedule-helper {
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .summary-item strong {
    font-size: 0.88rem;
    line-height: 1.2;
  }

  .summary-item small,
  .summary-item em {
    font-size: 0.82rem;
    line-height: 1.4;
  }

  .flavor-builder-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .builder-flavor-card img {
    height: 220px;
    padding: 0;
    transform: none;
  }

  .builder-flavor-copy {
    padding: 18px;
  }

  .builder-flavor-copy h3 {
    font-size: 1.42rem;
    line-height: 1;
    min-height: 0;
  }

  .builder-flavor-copy p,
  .builder-flavor-copy small {
    min-height: 0;
    font-size: 0.9rem;
    line-height: 1.52;
  }

  .builder-flavor-footer {
    align-items: stretch;
    gap: 12px;
  }

  .builder-flavor-footer strong {
    font-size: 1.08rem;
  }

  .builder-flavor-footer button {
    min-height: 42px;
    font-size: 0.82rem;
  }

  .builder-flavor-stepper {
    justify-content: center;
  }
}

@media (min-width: 981px) and (max-width: 1200px) {
  .topbar {
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    padding: 10px 16px;
  }

  .brand {
    min-width: 180px;
  }

  .brand img {
    width: 150px;
    height: 48px;
  }

  .main-nav {
    gap: 16px;
  }

  .main-nav a {
    font-size: 0.84rem;
  }

  .topbar-actions {
    gap: 8px;
  }

  .social-pill {
    width: 38px;
    min-width: 38px;
    min-height: 38px;
  }

  .login-pill {
    min-width: 92px;
    min-height: 42px;
    padding: 0 18px;
    font-size: 0.9rem;
  }

  .flavor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .promo-flavor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flavor-card img {
    height: 250px;
    padding: 0;
  }

  .promo-flavor-card__media img {
    height: 220px;
  }

  .flavor-copy {
    padding: 20px;
  }

  .flavor-copy h3 {
    font-size: 1.7rem;
  }

  .flavor-copy p,
  .flavor-copy small {
    margin-top: 10px;
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .flavor-builder-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .builder-flavor-card img {
    height: 250px;
    padding: 0;
  }

  .builder-flavor-copy {
    padding: 20px;
  }

  .builder-flavor-copy h3 {
    font-size: 1.6rem;
  }

  .builder-flavor-copy p,
  .builder-flavor-copy small {
    font-size: 0.92rem;
    line-height: 1.55;
  }
}

@media (min-width: 768px) and (max-width: 1200px) and (orientation: portrait) {
  .hero h1 {
    max-width: none;
    width: 100%;
    font-size: clamp(2.6rem, 4.8vw, 3.5rem);
    line-height: 1;
    white-space: normal;
    text-wrap: pretty;
  }

  .hero p {
    max-width: none;
    white-space: normal;
  }

  .combo-hero-copy h1 {
    max-width: none;
    width: 100%;
    font-size: clamp(2.3rem, 4.1vw, 3.05rem);
    line-height: 1.02;
    white-space: normal;
    text-wrap: pretty;
  }

  .combo-hero-copy p {
    max-width: none;
    width: 100%;
    white-space: normal;
    text-wrap: pretty;
  }

  .auth-showcase h1 {
    max-width: none;
    width: 100%;
    font-size: clamp(2.3rem, 4.1vw, 3.05rem);
    line-height: 1.02;
    white-space: normal;
    text-wrap: pretty;
  }

  .auth-showcase p {
    max-width: none;
    width: 100%;
    white-space: normal;
    text-wrap: pretty;
  }
}

@media (max-width: 860px) {
  :root {
    --anchor-offset: 112px;
  }

  .page-shell {
    width: min(calc(100% - 20px), 100%);
    margin-top: 0;
  }

  .login-stage .auth-layout {
    display: flex;
    flex-direction: column;
  }

  .login-stage .auth-showcase {
    order: 1 !important;
  }

  .login-stage .auth-panel {
    order: 2 !important;
  }

  .site-footer {
    justify-items: center;
  }

  .footer-contact {
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-inline: auto;
  }

  .topbar-actions {
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-inline: auto;
    justify-self: center;
    place-self: center;
  }

  .topbar-actions .social-pill {
    align-self: center;
  }

  .topbar {
    border-radius: 24px;
    padding: 6px 10px 8px;
  }

  .benefit-panel-dark {
    align-items: stretch;
  }

  .benefit-panel-dark h2,
  .benefit-panel-dark p,
  .closing-cta h2 {
    white-space: normal;
  }

  .hero-cta {
    flex-wrap: wrap;
  }

  .hero,
  .combos-section,
  .journey-section,
  .flavors-section,
  .benefit-panel,
  .closing-cta {
    padding: 24px;
  }

  .hero,
  .combo-hero {
    gap: 22px;
  }

  .hero-copy {
    align-items: center;
    text-align: center;
  }

  .hero .eyebrow {
    margin-inline: auto;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.6rem, 12vw, 3.8rem);
    line-height: 0.94;
  }

  .hero p {
    max-width: none;
    margin-inline: auto;
    font-size: 1rem;
  }

  .hero-cta {
    flex-direction: column;
    justify-content: center;
    width: 100%;
  }

  .hero-cta .btn-primary,
  .hero-cta .btn-secondary,
  .summary-actions .summary-button {
    min-width: 0;
    width: 100%;
  }

  .flavor-highlight-copy {
    padding: 22px;
  }

  .flavor-highlight-copy h3 {
    font-size: 2rem;
  }

  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-highlights article {
    text-align: center;
  }

  .hero-visual {
    width: 100%;
  }

  .hero-price-card {
    position: static;
    width: 100%;
    margin-bottom: 14px;
  }

  .hero-image-card {
    min-height: auto;
    padding: 12px;
  }

  .combo-hero {
    padding: 24px;
  }

  .combo-hero-copy {
    text-align: center;
  }

  .combo-hero-copy .eyebrow {
    margin-inline: auto;
  }

  .combo-hero-copy h1 {
    font-size: clamp(2.2rem, 4.6vw, 3rem);
    line-height: 0.98;
    max-width: none;
    width: 100%;
    margin-inline: auto;
    text-wrap: pretty;
  }

  .combo-hero-copy p {
    max-width: none;
    width: 100%;
    margin-inline: auto;
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .combo-progress {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .progress-step {
    min-height: 112px;
  }

  .builder-panel,
  .summary-card,
  .summary-info-card {
    padding: 24px;
    border-radius: 28px;
  }

  .builder-panel-header {
    flex-direction: column;
    align-items: stretch;
  }

  .builder-filters {
    flex-wrap: wrap;
  }

  .filter-pill {
    min-width: 0;
    flex: 1 1 calc(50% - 8px);
  }

  .selector-card strong {
    font-size: 1.7rem;
  }

  .selector-card em {
    font-size: 1.08rem;
    line-height: 1.5;
  }

  .builder-flavor-card {
    min-width: 0;
  }

  .builder-flavor-card img {
    height: 220px;
    transform: none;
  }

  .builder-flavor-copy {
    padding: 18px;
    min-height: auto;
  }

  .builder-flavor-copy h3 {
    font-size: 1.75rem;
    min-height: auto;
  }

  .builder-flavor-copy p,
  .builder-flavor-copy small {
    min-height: auto;
  }

  .builder-flavor-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .combo-footer,
  .combo-light-footer,
  .summary-meta div,
  .account-history-item {
    flex-direction: column;
    align-items: stretch;
  }

  .combo-footer > div,
  .combo-light-footer > div {
    width: 100%;
  }

  .builder-flavor-stepper {
    justify-content: center;
  }

  .summary-card h2 {
    font-size: 2.3rem;
  }

  .checkout-layout,
  .combo-builder,
  .auth-layout,
  .account-grid,
  .site-footer {
    gap: 18px;
  }

  .section-heading h2,
  .closing-cta h2,
  .benefit-panel-dark h2,
  .combo-card h3,
  .journey-card h3,
  .flavor-copy h3 {
    font-size: 2.4rem;
  }

  .benefit-panel-dark {
    min-height: auto;
  }

  .benefit-panel-soft {
    min-height: auto;
  }

  .footer-brand,
  .footer-contact {
    justify-content: flex-start;
  }

  .footer-dev-card {
    flex-direction: column;
    align-items: center;
  }

  .footer-dev-copy {
    justify-content: center;
  }

  .footer-dev-copy p {
    text-align: center;
  }

  .footer-dev-actions {
    width: min(100%, 390px);
  }

  .hero-image-card img {
    height: 260px;
  }

  .hero-image-caption {
    right: 18px;
    bottom: 18px;
    left: 18px;
    padding: 18px 18px;
  }

  .flavor-card img {
    height: 240px;
    padding: 0;
    object-fit: cover;
    object-position: center center;
    background: transparent;
  }

  .builder-flavor-card img {
    height: 240px;
    padding: 0;
    object-fit: cover;
    object-position: center center;
    background: transparent;
  }

  .schedule-pill,
  .installment-pills .schedule-pill {
    min-width: calc(50% - 6px);
    flex: 1 1 calc(50% - 6px);
  }

  .account-hero {
    padding: 26px 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .account-hero h1,
  .auth-showcase h1 {
    max-width: none;
    font-size: 2.8rem;
  }

  .account-hero-actions,
  .auth-actions {
    width: 100%;
  }

  .account-hero-actions {
    grid-template-columns: 1fr;
  }

  .account-hero-actions .btn-primary,
  .account-hero-actions .btn-secondary,
  .auth-actions .btn-primary,
  .auth-actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .summary-meta .summary-total strong {
    font-size: 1.6rem;
  }
}

@media (min-width: 561px) and (max-width: 860px) {
  .section-heading h2,
  .closing-cta h2 {
    font-size: 1.82rem;
    line-height: 1.02;
  }

  .journey-card h3 {
    font-size: 0.98rem;
    line-height: 1.12;
  }

  .journey-card p {
    font-size: 0.76rem;
    line-height: 1.4;
  }

  .combo-card-featured h3,
  .combo-card-highlight h3 {
    font-size: 1.12rem;
    line-height: 1;
  }

  .combo-card p {
    font-size: 0.76rem;
    line-height: 1.4;
  }

  .combo-card-light .combo-title-main,
  .combo-card-light strong {
    font-size: 0.98rem;
    line-height: 1.06;
  }

  .combo-card-light .combo-title-weight {
    font-size: 0.86rem;
    line-height: 1.06;
  }

  .combo-card-light p {
    font-size: 0.72rem;
    line-height: 1.38;
  }

  .combo-card-light em,
  .combo-footer strong {
    font-size: 0.96rem;
  }

  .combo-footer a,
  .combo-light-footer a {
    font-size: 0.72rem;
    min-height: 36px;
  }

  .progress-step {
    padding: 16px 14px;
  }

  .progress-step span {
    width: 46px;
    min-width: 46px;
    height: 46px;
    font-size: 1rem;
  }

  .progress-step strong {
    font-size: 0.88rem;
    line-height: 1.16;
  }

  .site-footer {
    gap: 18px;
  }

  .footer-brand p {
    font-size: 0.84rem;
    line-height: 1.55;
  }

  .footer-links a {
    font-size: 0.84rem;
  }

  .footer-contact {
    justify-content: center;
    justify-self: center;
    align-self: center;
    place-self: center;
    margin-inline: auto;
  }
}

@media (max-width: 560px) {
  :root {
    --anchor-offset: 88px;
  }

  html,
  body {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
    touch-action: pan-y;
  }

  .page-shell {
    width: min(calc(100% - 14px), 100%);
    max-width: 100%;
    overflow-x: clip;
    margin: 0 auto 16px;
  }

  .login-stage .auth-layout {
    display: flex;
    flex-direction: column;
  }

  .login-stage .auth-showcase {
    order: 1 !important;
  }

  .login-stage .auth-panel {
    order: 2 !important;
  }

  .topbar,
  .hero,
  .combo-hero,
  .combos-section,
  .journey-section,
  .flavors-section,
  .benefit-panel,
  .closing-cta,
  .site-footer,
  .checkout-layout,
  .combo-builder,
  .auth-layout,
  .account-grid {
    max-width: 100%;
  }

  .topbar {
    top: 0;
    min-height: 66px;
    padding: 8px 10px 10px;
    border-radius: 24px;
  }

  .brand img {
    width: 138px;
    height: 44px;
  }

  .topbar > .main-nav,
  .topbar > .topbar-actions {
    display: none;
  }

  .topbar.is-menu-open > .main-nav {
    display: grid;
  }

  .topbar.is-menu-open > .topbar-actions {
    display: flex;
  }

  .menu-toggle {
    top: 8px;
    right: 10px;
    min-width: 108px;
    height: 44px;
    padding: 0 14px;
    border-radius: 14px;
  }

  .menu-toggle-label {
    font-size: 0.86rem;
  }

  .topbar-menu {
    gap: 12px;
    padding: 48px 2px 2px;
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    width: 100%;
  }

  .main-nav {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .main-nav a {
    min-height: 42px;
    padding: 0 14px;
    border-radius: 14px;
    font-size: 0.92rem;
    justify-content: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.86);
    width: 100%;
  }

  .topbar-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 12px;
    width: 100%;
    align-items: center;
    padding-top: 2px;
    min-width: 0;
  }

  .social-pill {
    width: 38px;
    min-width: 38px;
    height: 38px;
    min-height: 38px;
    justify-self: center;
    order: 1;
  }

  .login-pill {
    order: 2;
    flex: 1 1 100%;
    min-width: 0;
    max-width: none;
    min-height: 42px;
    padding: 0 16px;
    font-size: 0.96rem;
    width: 100%;
  }

  .hero,
  .combos-section,
  .journey-section,
  .flavors-section,
  .benefit-panel,
  .closing-cta {
    padding: 16px;
  }

  .hero {
    gap: 18px;
  }

  .hero-visual {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 10vw, 2.55rem);
    line-height: 0.98;
  }

  .hero p {
    font-size: 0.88rem;
    line-height: 1.6;
  }

  .hero-highlights article {
    padding: 14px;
    border-radius: 22px;
  }

  .hero-highlights strong,
  .hero-highlights span {
    text-align: center;
  }

  .hero-highlights strong {
    font-size: 0.94rem;
  }

  .hero-highlights span {
    margin-top: 8px;
    font-size: 0.84rem;
    line-height: 1.55;
  }

  .hero-price-card {
    order: 1;
    width: 100%;
    padding: 14px 14px 16px;
    border-radius: 22px;
  }

  .hero-price-card span {
    font-size: 0.62rem;
  }

  .hero-price-card strong {
    margin-top: 8px;
    font-size: 1.15rem;
  }

  .hero-price-card em {
    margin-top: 10px;
    font-size: 1.42rem;
  }

  .hero-image-card img {
    height: 210px;
  }

  .hero-image-card {
    order: 2;
    gap: 0;
    padding: 8px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    align-content: stretch;
    overflow: hidden;
  }

  .hero-image-card img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1.22 / 1;
    border-radius: 18px;
    object-fit: cover;
    object-position: center center;
    filter: none !important;
  }

  .hero-price-card {
    text-align: left;
    position: static;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 9px 12px;
    border-radius: 14px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  }

  .hero-price-card strong {
    margin-top: 0;
    text-align: left;
    font-size: 0.92rem;
    line-height: 1.1;
  }

  .hero-image-caption {
    position: static !important;
    left: auto;
    right: auto;
    bottom: auto;
    top: auto;
    order: 3;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 12px 14px;
    border-radius: 18px;
    background: rgba(255, 249, 238, 0.96);
    border: 1px solid rgba(226, 202, 146, 0.28);
    backdrop-filter: none;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  }

  .hero-image-caption span {
    font-size: 0.58rem;
    color: #7a5f2e;
  }

  .hero-image-caption strong {
    margin-top: 6px;
    font-size: 1rem;
    line-height: 1.16;
    color: #2c2117;
  }

  .combo-hero {
    padding: 18px;
    gap: 16px;
  }

  .combo-hero-copy {
    align-items: center;
    text-align: center;
  }

  .combo-hero-copy h1 {
    font-size: clamp(1.62rem, 8.2vw, 2.22rem);
    line-height: 0.98;
  }

  .combo-hero-copy p {
    font-size: 0.88rem;
    line-height: 1.6;
  }

  .combo-hero-visual {
    display: grid;
    gap: 12px;
    min-height: auto;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }

  .combo-hero-visual img {
    height: 220px;
    border-radius: 24px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.08);
    padding: 10px;
  }

  .combo-progress {
    grid-template-columns: 1fr;
  }

  .combo-hero-badge {
    position: static;
    width: 100%;
    padding: 14px 16px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 249, 238, 0.98), rgba(240, 226, 194, 0.94));
    color: #2c2117;
    backdrop-filter: none;
  }

  .combo-hero-badge span {
    font-size: 0.62rem;
    color: #86632a;
  }

  .combo-hero-badge strong {
    margin-top: 8px;
    font-size: 1.15rem;
    color: #2d2117;
  }

  .combo-hero-badge em {
    margin-top: 10px;
    font-size: 1.42rem;
    color: #305024;
  }

  .flavor-builder-grid {
    grid-template-columns: 1fr;
  }

  .progress-step {
    min-height: auto;
    padding: 16px 14px;
  }

  .builder-panel,
  .summary-card,
  .summary-info-card {
    padding: 18px;
    border-radius: 24px;
  }

  .section-heading h2,
  .closing-cta h2,
  .benefit-panel-dark h2,
  .combo-card h3,
  .journey-card h3,
  .flavor-copy h3 {
    font-size: 1.9rem;
    line-height: 1.02;
  }

  .section-heading p,
  .benefit-panel p,
  .closing-cta p,
  .combo-card p,
  .journey-card p,
  .flavor-copy p,
  .flavor-copy small {
    font-size: 0.88rem;
    line-height: 1.58;
  }

  .summary-card h2 {
    font-size: 2rem;
    line-height: 0.98;
  }

  .summary-card p,
  .summary-empty,
  .summary-meta div,
  .saved-address-card small,
  .payment-note,
  .summary-inline-note,
  .schedule-helper {
    font-size: 0.88rem;
    line-height: 1.58;
  }

  .checkout-field label,
  .form-field span,
  .schedule-label {
    font-size: 0.72rem;
  }

  .mock-input,
  .form-field input,
  .form-field select {
    min-height: 52px;
    font-size: 0.92rem;
  }
  .schedule-pill {
    min-width: calc(50% - 6px);
    min-height: 46px;
    font-size: 0.88rem;
  }

  .combo-card-featured,
  .combo-card-highlight,
  .combo-card-light {
    padding: 18px;
    min-height: auto;
    border-radius: 24px;
  }

  .combo-badge,
  .combo-card-light span {
    font-size: 0.62rem;
    padding: 7px 12px;
  }

  .combo-card h3 {
    margin-top: 12px;
    min-height: 0;
  }

  .combo-card-light strong,
  .combo-card-light .combo-title-main {
    font-size: 1.52rem;
    line-height: 1.02;
    min-height: 0;
    white-space: normal;
  }

  .combo-card-light .combo-title-weight {
    margin-top: 6px;
    font-size: 1.28rem;
    line-height: 1.02;
  }

  .combo-card p,
  .combo-card-light p {
    margin-top: 10px;
    min-height: 0;
  }

  .combo-footer,
  .combo-light-footer {
    margin-top: 14px;
    padding-top: 10px;
    gap: 10px;
    align-items: center;
  }

  .combo-footer small {
    margin-bottom: 4px;
    font-size: 0.6rem;
  }

  .combo-footer strong,
  .combo-card-light em {
    font-size: 1.45rem;
  }

  .combo-footer a,
  .combo-light-footer a {
    min-height: 40px;
    min-width: 0;
    width: 100%;
    padding: 0 14px;
    font-size: 0.82rem;
    text-align: center;
    align-self: center;
  }

  .combo-card-light-action {
    min-height: auto;
  }

  .flavor-card {
    border-radius: 24px;
  }

  .promo-flavor-strip {
    padding: 18px;
    border-radius: 24px;
  }

  .promo-flavor-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .promo-flavor-card {
    border-radius: 22px;
  }

  .promo-flavor-card__media img {
    height: 210px;
  }

  .promo-flavor-card__badge {
    top: 12px;
    left: 12px;
    font-size: 0.64rem;
    letter-spacing: 0.1em;
  }

  .promo-flavor-card__copy {
    padding: 18px;
  }

  .promo-flavor-card__copy strong {
    font-size: 1.08rem;
  }

  .promo-flavor-card__copy p {
    margin-top: 10px;
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .flavor-copy {
    padding: 18px;
    min-height: auto;
  }

  .flavor-copy span {
    font-size: 0.62rem;
    padding: 7px 10px;
  }

  .flavor-copy h3 {
    margin-top: 12px;
    min-height: 0;
  }

  .flavor-copy p {
    margin-top: 10px;
    min-height: 0;
  }

  .flavor-copy small {
    margin-top: 10px;
    padding-top: 10px;
    min-height: 0;
  }

  .flavor-action {
    min-height: 40px;
    margin-top: 14px;
    padding: 0 16px;
    font-size: 0.84rem;
  }

  .closing-cta {
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: stretch;
    text-align: left;
  }

  .closing-cta > div {
    max-width: none;
    order: 1;
  }

  .closing-cta span {
    margin-bottom: 4px;
  }

  .closing-cta h2 {
    margin-top: 10px;
    white-space: normal;
    font-size: 1.52rem;
    line-height: 1.08;
  }

  .closing-cta .btn-primary {
    order: 2;
    width: 100%;
    min-width: 0;
    justify-self: stretch;
  }

  .site-footer {
    padding: 18px 16px;
    border-radius: 24px;
    text-align: center;
  }

  .footer-brand,
  .footer-links,
  .footer-contact {
    justify-content: center;
    text-align: center;
  }

  .footer-brand {
    flex-direction: column;
    gap: 10px;
  }

  .footer-brand p {
    font-size: 0.84rem;
    line-height: 1.6;
  }

  .footer-links a {
    font-size: 0.84rem;
  }

  .footer-contact {
    gap: 12px;
  }

  .footer-dev-card {
    margin-top: 0;
    padding: 12px 14px;
  }

  .footer-dev-actions {
    width: 100%;
    max-width: 320px;
    gap: 6px;
  }

  .footer-dev-link {
    min-height: 30px;
    padding: 0 8px;
    font-size: 0.64rem;
    gap: 5px;
  }

  .auth-showcase,
  .account-hero {
    padding: 20px 18px;
    border-radius: 24px;
    text-align: center;
  }

  .auth-showcase,
  .account-hero > div {
    align-items: center;
  }

  .auth-showcase .eyebrow,
  .account-hero .eyebrow {
    margin-inline: auto;
  }

  .auth-showcase h1,
  .account-hero h1 {
    margin-top: 12px;
    font-size: 2rem;
    line-height: 0.98;
    max-width: none;
  }

  .auth-showcase p,
  .account-hero p {
    margin-top: 12px;
    font-size: 0.88rem;
    line-height: 1.58;
    max-width: none;
  }

  .auth-benefits {
    margin-top: 18px;
  }

  .auth-benefits article {
    padding: 14px 16px;
    border-radius: 18px;
    text-align: center;
  }

  .auth-benefits strong {
    font-size: 0.92rem;
  }

  .auth-benefits span {
    font-size: 0.84rem;
    line-height: 1.55;
  }

  .auth-tabs {
    padding: 8px;
    gap: 8px;
  }

  .auth-tab {
    min-height: 46px;
    font-size: 0.9rem;
  }

  .auth-content {
    margin-top: 18px;
  }

  .auth-actions {
    gap: 10px;
    margin-top: 18px;
  }

  .auth-actions-login {
    grid-template-columns: 1fr;
  }

  .summary-meta {
    margin-top: 18px;
    padding-top: 18px;
  }

  .summary-meta div,
  .account-history-item {
    gap: 8px;
  }

  .account-hero {
    align-items: center;
  }

  .account-hero-actions {
    gap: 10px;
  }

  .account-meta-card strong,
  .account-address-box strong {
    font-size: 0.98rem;
  }

  .account-meta-card span,
  .account-address-box span,
  .account-history-item span,
  .account-empty-state {
    font-size: 0.84rem;
    line-height: 1.5;
  }

  .order-progress-step {
    min-height: 56px;
    font-size: 0.82rem;
  }

  .filter-pill,
  .schedule-pill,
  .installment-pills .schedule-pill {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .selector-card {
    padding: 18px;
  }

  .selector-card strong {
    font-size: 1.5rem;
  }

  .builder-flavor-card img {
    height: 200px;
  }

  .builder-flavor-copy h3 {
    font-size: 1.5rem;
  }

  .summary-card h2 {
    font-size: 2rem;
  }
}

/* Keep card photos edge-to-edge across desktop, tablet, and mobile. */
.flavor-card > img,
.builder-flavor-card > img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: transparent !important;
}

@media (min-width: 981px) {
  .account-notification-card,
  #account-actions-feedback,
  #account-client-id-note,
  #account-client-note {
    display: none !important;
  }
}
