:root {
  --cream: #fff9f3;
  --cream-deep: #f8efe5;
  --paper: #fffdf9;
  --ink: #2a1d22;
  --muted: #76666c;
  --berry: #7c294b;
  --berry-dark: #5e1937;
  --rose: #eaa0b0;
  --rose-soft: #f8dce2;
  --sage: #899b7a;
  --sage-soft: #e6ecdd;
  --gold: #d2a154;
  --line: rgba(70, 39, 49, 0.13);
  --shadow: 0 24px 70px rgba(73, 42, 52, 0.12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  min-width: 0;
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.42;
  background-image: radial-gradient(rgba(88, 49, 61, 0.09) 0.65px, transparent 0.65px);
  background-size: 7px 7px;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.hero-grid > *,
.section-heading > *,
.product-title-row > *,
.flavor-area > *,
.order-layout > *,
.form-row > * {
  min-width: 0;
}

.section {
  padding: 112px 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: white;
  background: var(--berry);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(255, 249, 243, 0.84);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(61, 32, 41, 0.06);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand > span:last-child {
  min-width: 0;
  display: grid;
  line-height: 1.1;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.brand small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-mark {
  width: 42px;
  aspect-ratio: 1;
  position: relative;
  display: grid;
  place-items: center;
  border: 1px solid rgba(124, 41, 75, 0.18);
  background: var(--rose-soft);
  border-radius: 50%;
  overflow: hidden;
}

.brand-mark img {
  width: 91%;
  height: 91%;
  display: block;
  object-fit: contain;
  transform: translateY(-1px);
  filter: sepia(.18) saturate(1.2) hue-rotate(294deg) brightness(1.04) drop-shadow(0 3px 3px rgba(95, 36, 59, .18));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #493a3f;
  font-size: 14px;
  font-weight: 650;
}

.sr-only {
  width: 1px;
  height: 1px;
  position: absolute;
  overflow: hidden;
  padding: 0;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.language-picker {
  width: 72px;
  height: 40px;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--berry);
  border: 1px solid rgba(124, 41, 75, 0.2);
  background: rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.language-picker:hover,
.language-picker:focus-within {
  border-color: rgba(124, 41, 75, 0.48);
  background: white;
}

.language-picker > svg {
  width: 16px;
  height: 16px;
  position: absolute;
  left: 11px;
  z-index: 1;
  pointer-events: none;
  stroke-width: 1.7;
}

.language-picker::after {
  width: 6px;
  height: 6px;
  position: absolute;
  right: 11px;
  content: "";
  pointer-events: none;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.language-picker select {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  padding: 0 22px 0 31px;
  color: var(--berry);
  border: 0;
  outline: 0;
  background: transparent;
  border-radius: inherit;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  appearance: none;
}

.site-nav a:not(.nav-cta) {
  position: relative;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1.5px;
  content: "";
  background: var(--berry);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 12px 19px;
  color: white;
  background: var(--berry);
  border-radius: 999px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.nav-cta:hover {
  background: var(--berry-dark);
  transform: translateY(-1px);
}

.menu-button {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  padding: 11px;
  border: 0;
  background: transparent;
}

.menu-button span {
  width: 22px;
  height: 2px;
  display: block;
  margin: 4px 0;
  background: var(--ink);
  border-radius: 99px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding-top: 76px;
  background:
    radial-gradient(circle at 84% 18%, rgba(236, 179, 191, 0.34), transparent 28%),
    radial-gradient(circle at 9% 86%, rgba(211, 218, 198, 0.4), transparent 24%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(440px, 0.95fr);
  align-items: center;
  gap: 74px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--berry);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 24px;
  height: 1.5px;
  display: inline-block;
  background: currentColor;
}

.eyebrow b,
.field > span b,
.payment-options b {
  font: inherit;
}

.hero h1,
.section-heading h2,
.flavor-intro h2,
.order-info h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.97;
}

.hero h1 {
  max-width: 730px;
  font-size: clamp(60px, 6.25vw, 92px);
  overflow-wrap: anywhere;
}

.hero h1 em {
  display: block;
  color: var(--berry);
  font-weight: 500;
}

.hero-lead {
  max-width: 610px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 36px;
}

.button {
  max-width: 100%;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button svg {
  width: 20px;
  height: 20px;
}

.button-primary {
  color: white;
  background: var(--berry);
  box-shadow: 0 12px 28px rgba(124, 41, 75, 0.2);
}

.button-primary:hover {
  background: var(--berry-dark);
  box-shadow: 0 14px 34px rgba(124, 41, 75, 0.25);
  transform: translateY(-2px);
}

.text-link {
  border-bottom: 1px solid currentColor;
  color: var(--berry);
  font-size: 14px;
  font-weight: 750;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 23px;
  margin: 42px 0 0;
  padding: 0;
  color: #5d4e53;
  font-size: 12px;
  font-weight: 650;
  list-style: none;
}

.hero-facts li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-facts svg {
  width: 18px;
  height: 18px;
  padding: 3px;
  color: var(--berry);
  background: var(--rose-soft);
  border-radius: 50%;
  stroke-width: 2.4;
}

.hero-art {
  min-height: 590px;
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero-photo-frame {
  width: min(100%, 500px);
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  border: 10px solid rgba(255, 253, 249, .78);
  border-radius: 38px;
  background: var(--rose-soft);
  box-shadow: 0 30px 75px rgba(73, 42, 52, .2);
  transform: rotate(2deg);
}

.hero-photo-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.maker-signature {
  position: absolute;
  right: 28px;
  bottom: 22px;
  z-index: 3;
  max-width: 390px;
  margin: 0;
  padding: 10px 18px;
  color: var(--berry-dark);
  background: rgba(255, 253, 249, .92);
  border: 1px solid rgba(124, 41, 75, .13);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(73, 42, 52, .12);
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  line-height: 1.25;
  text-align: center;
}

.hero-art::before {
  width: 430px;
  height: 430px;
  position: absolute;
  z-index: -2;
  content: "";
  border-radius: 50% 44% 47% 53%;
  background: linear-gradient(145deg, #efd0d6, #f6e5e2);
  transform: rotate(10deg);
  box-shadow: inset 20px -24px 60px rgba(128, 62, 84, 0.08);
}

.hero-art::after {
  width: 390px;
  height: 80px;
  position: absolute;
  bottom: 65px;
  z-index: -1;
  content: "";
  background: rgba(84, 44, 56, 0.16);
  filter: blur(28px);
  border-radius: 50%;
}

.art-blob {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
}

.art-blob-one {
  width: 74px;
  height: 74px;
  top: 90px;
  right: 3px;
  background: var(--sage-soft);
}

.art-blob-two {
  width: 42px;
  height: 42px;
  bottom: 89px;
  left: 12px;
  background: #ead7bd;
}

.hero-card {
  width: 370px;
  height: 390px;
  position: relative;
  margin-top: 36px;
  transform: rotate(-5deg);
}

.box-lid,
.box-base {
  position: absolute;
  border-radius: 12px;
  box-shadow: 0 28px 50px rgba(82, 42, 53, 0.17);
}

.box-lid {
  width: 290px;
  height: 242px;
  top: -68px;
  right: -24px;
  z-index: 1;
  display: grid;
  place-items: center;
  border: 2px solid rgba(110, 68, 81, 0.1);
  background: #f9efe3;
  transform: rotate(18deg);
}

.lid-line {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(124, 41, 75, 0.15);
  border-radius: 7px;
}

.lid-logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lid-logo i {
  width: 35px;
  height: 42px;
  display: block;
  margin: -4px;
  background: linear-gradient(140deg, #fff, #f4cbd4);
  border-radius: 48%;
  box-shadow: inset -5px -4px 8px rgba(133, 64, 85, 0.11);
}

.lid-logo i:first-child { transform: rotate(-25deg); }
.lid-logo i:last-of-type { transform: rotate(25deg); }
.lid-logo b {
  position: absolute;
  top: 54px;
  width: 180px;
  color: var(--berry);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-align: center;
}

.box-base {
  width: 330px;
  height: 300px;
  right: 43px;
  bottom: 2px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 23px;
  border: 13px solid #c99478;
  background: #8b5d4a;
  transform: rotate(5deg);
}

.marshmallow {
  width: 100%;
  aspect-ratio: 1;
  position: relative;
  place-self: center;
  border-radius: 49% 46% 48% 50%;
  background: radial-gradient(circle at 35% 27%, #fffdfc 0 5%, transparent 6%),
    repeating-radial-gradient(ellipse at center, transparent 0 8px, rgba(145, 77, 98, 0.06) 9px 10px),
    linear-gradient(145deg, #fff9f8, #edbdc9);
  box-shadow: inset -8px -8px 14px rgba(121, 60, 78, 0.12), 2px 8px 10px rgba(69, 37, 47, 0.16);
}

.mm-2, .mm-5 { background-color: #b35874; filter: hue-rotate(315deg) saturate(1.2); }
.mm-3 { background-color: #f6d3b2; filter: sepia(0.2); }
.mm-4 { background-color: #d8b7cb; filter: hue-rotate(30deg); }
.mm-6 { background-color: #cab8d2; filter: hue-rotate(55deg); }

.art-note {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  background: rgba(255, 253, 249, 0.93);
  border: 1px solid rgba(124, 41, 75, 0.1);
  box-shadow: 0 17px 40px rgba(75, 40, 50, 0.12);
  backdrop-filter: blur(10px);
}

.art-note-top {
  top: 24px;
  right: 8px;
  left: auto;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 18px;
  transform: rotate(5deg);
}

.art-note-top span { color: var(--gold); font-size: 17px; }
.art-note-top strong { color: var(--berry); font-family: Georgia, serif; font-size: 24px; }
.art-note-top small { color: var(--muted); font-size: 11px; }

.art-note-bottom {
  right: -6px;
  bottom: 92px;
  gap: 11px;
  padding: 12px 17px;
  border-radius: 17px;
  transform: rotate(6deg);
}

.art-note-bottom div { display: grid; line-height: 1.1; }
.art-note-bottom small { color: var(--muted); font-size: 9px; text-transform: uppercase; }
.art-note-bottom strong { margin-top: 3px; font-family: Georgia, serif; font-size: 20px; }
.berry-dot { width: 26px; height: 26px; background: var(--berry); border: 5px solid var(--rose-soft); border-radius: 50%; }

.catalog-section {
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 48px;
}

.section-heading h2,
.flavor-intro h2,
.order-info h2 {
  font-size: clamp(44px, 5vw, 68px);
}

.section-heading > p {
  max-width: 470px;
  margin: 0 0 5px;
  color: var(--muted);
  line-height: 1.7;
}

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

.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.product-card-featured {
  border-color: rgba(124, 41, 75, 0.34);
}

.featured-label {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  padding: 7px 10px;
  color: white;
  background: var(--berry);
  border-radius: 99px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-visual {
  height: 230px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.visual-mini { background: #f8e7dd; }
.visual-medium { background: #d9c6be; }
.visual-large { background: #aa9f8f; }

.product-visual > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  transition: transform .35s ease;
}

.product-card:hover .product-visual > img {
  transform: scale(1.025);
}

.product-badge {
  position: absolute;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  padding: 6px 10px;
  color: #59474d;
  background: rgba(255,255,255,.72);
  border-radius: 99px;
  backdrop-filter: blur(8px);
  font-family: Georgia, serif;
  font-size: 11px;
  font-style: italic;
}

.product-content {
  padding: 27px 28px 29px;
}

.product-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.product-title-row p {
  margin: 0 0 2px;
  color: var(--berry);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-title-row h3 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 500;
}

.product-title-row > strong {
  font-family: Georgia, serif;
  font-size: 27px;
  font-weight: 500;
}

.product-meta {
  margin: 10px 0 0;
  color: #9a858c;
  font-size: 12px;
}

.product-description {
  min-height: 48px;
  margin: 18px 0 23px;
  color: var(--muted);
  font-size: 13px;
}

.button-secondary {
  width: 100%;
  color: var(--berry);
  background: transparent;
  border-color: rgba(124, 41, 75, 0.26);
}

.button-secondary:hover {
  color: white;
  background: var(--berry);
  border-color: var(--berry);
}

.real-box-showcase {
  display: grid;
  grid-template-columns: minmax(300px, .82fr) minmax(0, 1.18fr);
  align-items: stretch;
  overflow: hidden;
  margin: 96px 0 0;
  border: 1px solid var(--line);
  background: var(--cream-deep);
  border-radius: 30px;
  box-shadow: 0 22px 55px rgba(73, 42, 52, .09);
}

.showcase-photo {
  min-height: 520px;
  overflow: hidden;
}

.showcase-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 54%;
}

.real-box-showcase figcaption {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 58px 64px;
}

.real-box-showcase h2 {
  max-width: 600px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 4.4vw, 60px);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1.02;
}

.real-box-showcase figcaption > p:not(.eyebrow) {
  max-width: 540px;
  margin: 26px 0 28px;
  color: var(--muted);
  line-height: 1.7;
}

.product-photo-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.product-photo-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--cream-deep);
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(73, 42, 52, .08);
}

.product-photo-gallery img {
  width: 100%;
  height: auto;
  display: block;
}

.flavor-area {
  display: grid;
  grid-template-columns: 0.72fr 1.8fr;
  gap: 60px;
  margin-top: 128px;
  scroll-margin-top: 110px;
}

.flavor-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.flavor-intro h2 {
  font-size: clamp(44px, 4.6vw, 64px);
}

.flavor-intro > p:not(.eyebrow) {
  max-width: 340px;
  margin: 28px 0 0;
  color: var(--muted);
}

.flavor-counter {
  width: fit-content;
  margin-top: 25px;
  padding: 8px 13px;
  color: var(--berry);
  background: var(--rose-soft);
  border-radius: 99px;
  font-size: 12px;
  font-weight: 650;
}

.flavor-menu-photo {
  width: min(100%, 300px);
  height: auto;
  display: block;
  margin-top: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(73, 42, 52, .12);
}

.flavor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.flavor-card {
  min-height: 148px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  padding: 24px;
  color: var(--ink);
  border: 1px solid transparent;
  background: #f7eee8;
  border-radius: 18px;
  cursor: pointer;
  text-align: left;
  transition: min-height .22s ease, transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.flavor-card[aria-expanded="true"] {
  min-height: 224px;
  border-color: rgba(124, 41, 75, .28);
  box-shadow: 0 16px 35px rgba(67, 37, 46, .08);
}

.flavor-card::after {
  position: absolute;
  right: 21px;
  bottom: 19px;
  z-index: 3;
  content: "+";
  color: var(--berry);
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  transition: transform .2s ease;
}

.flavor-card[aria-expanded="true"]::after {
  transform: rotate(45deg);
}

.flavor-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 35px rgba(67, 37, 46, 0.08);
}

.flavor-card:disabled {
  opacity: 1;
  cursor: default;
}

.flavor-card:disabled:hover {
  transform: none;
  box-shadow: none;
}

.flavor-card[aria-pressed="true"] {
  border-color: var(--berry);
  box-shadow: inset 0 0 0 1px var(--berry);
}

.flavor-number {
  color: rgba(42, 29, 34, 0.45);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}

.flavor-card strong {
  position: relative;
  z-index: 2;
  margin-top: auto;
  font-family: Georgia, serif;
  font-size: 21px;
  font-weight: 500;
  padding-right: 28px;
}

.flavor-card small {
  max-width: 210px;
  position: relative;
  z-index: 2;
  margin-top: 5px;
  color: rgba(42, 29, 34, .62);
  font-size: 11px;
}

.flavor-illustration {
  width: 104px;
  height: 104px;
  position: absolute;
  top: 10px;
  right: 12px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transform: rotate(4deg);
}

.flavor-illustration img {
  width: 108px;
  height: 108px;
  display: block;
  object-fit: contain;
  filter: var(--zefir-tone, none) drop-shadow(0 10px 7px rgba(56, 26, 37, .3));
}

.zefir-appleVanilla { --zefir-tone: sepia(.06) saturate(.64) brightness(1.08); }
.zefir-appleBuckthorn { --zefir-tone: sepia(.42) saturate(1.32) hue-rotate(347deg) brightness(1.04); }
.zefir-apricot { --zefir-tone: sepia(.38) saturate(1.25) hue-rotate(326deg) brightness(1.04); }
.zefir-pineapple { --zefir-tone: sepia(.5) saturate(1.48) hue-rotate(352deg) brightness(1.08); }
.zefir-orange { --zefir-tone: sepia(.55) saturate(1.58) hue-rotate(328deg) brightness(1.02); }
.zefir-strawberry { --zefir-tone: sepia(.48) saturate(1.28) hue-rotate(292deg) brightness(1.01); }
.zefir-raspberry { --zefir-tone: sepia(.54) saturate(1.48) hue-rotate(292deg) brightness(.96); }
.zefir-blackcurrant { --zefir-tone: sepia(.42) saturate(1.38) hue-rotate(226deg) brightness(.9); }
.zefir-cherryChocolate { --zefir-tone: sepia(.48) saturate(1.12) hue-rotate(304deg) brightness(.84); }
.zefir-blueberry { --zefir-tone: sepia(.3) saturate(1.1) hue-rotate(196deg) brightness(.96); }
.zefir-peach { --zefir-tone: sepia(.36) saturate(1.12) hue-rotate(309deg) brightness(1.06); }
.zefir-chocolate { --zefir-tone: sepia(.68) saturate(.95) hue-rotate(338deg) brightness(.73); }
.zefir-berryMix { --zefir-tone: sepia(.42) saturate(1.15) hue-rotate(224deg) brightness(.9); }
.zefir-passionfruitPeach { --zefir-tone: sepia(.5) saturate(1.42) hue-rotate(332deg) brightness(1.01); }
.zefir-pear { --zefir-tone: sepia(.28) saturate(.92) hue-rotate(28deg) brightness(1.04); }

.flavor-check {
  width: 26px;
  height: 26px;
  position: absolute;
  top: 16px;
  left: 49px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--berry);
  border-radius: 50%;
  font-size: 13px;
  opacity: 0;
  transform: scale(.7);
  transition: opacity .18s ease, transform .18s ease;
}

.flavor-card .flavor-check { display: none; }
.flavor-apple { background: #e7eddd; }
.flavor-apple .flavor-illustration { background: #d5e0c7; }
.flavor-currant { background: #e8dce5; }
.flavor-currant .flavor-illustration { background: #d8c5d5; }
.flavor-raspberry { background: #f3dce1; }
.flavor-raspberry .flavor-illustration { background: #e8c3ce; }
.flavor-strawberry { background: #f5e1db; }
.flavor-strawberry .flavor-illustration { background: #eec9c2; }
.flavor-buckthorn { background: #f3e5cb; }
.flavor-buckthorn .flavor-illustration { background: #ead39f; }
.flavor-cherry { background: #ead9d8; }
.flavor-cherry .flavor-illustration { background: #d9bbb9; }
.flavor-mix { background: #e9e0e8; }
.flavor-mix .flavor-illustration { background: #d5c4d5; }
.flavor-blueberry { background: #dde1ec; }
.flavor-blueberry .flavor-illustration { background: #c6cede; }
.flavor-apricot { background: #f5e3d0; }
.flavor-apricot .flavor-illustration { background: #edc79f; }
.flavor-pineapple { background: #f2edce; }
.flavor-pineapple .flavor-illustration { background: #e4d999; }
.flavor-orange { background: #f6e1ca; }
.flavor-orange .flavor-illustration { background: #efc28c; }
.flavor-peach { background: #f5ded7; }
.flavor-peach .flavor-illustration { background: #ecc1b5; }
.flavor-chocolate { background: #e9ddd5; }
.flavor-chocolate .flavor-illustration { background: #d5b8aa; }
.flavor-passion { background: #f0dfd5; }
.flavor-passion .flavor-illustration { background: #dec0ae; }
.flavor-pear { background: #e9edda; }
.flavor-pear .flavor-illustration { background: #d8dfb9; }

.flavor-card .flavor-illustration {
  background: radial-gradient(circle at 42% 35%, rgba(255,255,255,.98) 0, rgba(255,253,249,.86) 58%, rgba(124,41,75,.11) 100%);
  border: 1px solid rgba(124,41,75,.16);
  box-shadow: 0 11px 24px rgba(72,38,49,.14), inset 0 0 0 4px rgba(255,255,255,.24);
}

.product-info-section {
  background: #fffaf6;
}

.product-info-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.product-info-heading .eyebrow {
  margin-bottom: 20px;
}

.product-info-heading h2 {
  max-width: 740px;
  margin: 0;
  font-size: clamp(43px, 5.2vw, 70px);
}

.product-info-heading > p:not(.eyebrow) {
  max-width: 650px;
  margin: 25px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.product-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 18px;
}

.product-info-card {
  min-height: 190px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: start;
  gap: 22px;
  padding: 32px;
  border: 1px solid var(--line);
  background: white;
  border-radius: 25px;
  box-shadow: 0 16px 38px rgba(73,42,52,.06);
}

.product-info-card-wide {
  grid-column: span 2;
}

.product-info-card-highlight {
  color: white;
  background: var(--berry-dark);
  border-color: transparent;
}

.info-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--berry);
  background: var(--rose-soft);
  border: 1px solid rgba(124,41,75,.12);
  border-radius: 18px;
  font-family: Georgia, serif;
  font-size: 15px;
  font-weight: 700;
}

.product-info-card-highlight .info-icon {
  color: white;
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.16);
}

.product-info-card h3 {
  margin: 4px 0 13px;
  font-family: Georgia, serif;
  font-size: 26px;
  font-weight: 500;
}

.product-info-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.product-info-card-highlight p {
  color: rgba(255,255,255,.72);
}

.product-info-card small {
  display: block;
  margin-top: 15px;
  color: #927d84;
  font-size: 11px;
  line-height: 1.55;
}

.product-info-card strong {
  color: var(--berry-dark);
}

.product-info-card-highlight strong {
  color: white;
}

.product-info-contact a {
  display: inline-block;
  margin-top: 12px;
  color: var(--berry);
  border-bottom: 1px solid rgba(124,41,75,.28);
  font-weight: 750;
}

.order-section {
  color: white;
  background: var(--berry-dark);
  background-image:
    radial-gradient(circle at 6% 90%, rgba(229, 158, 176, .14), transparent 26%),
    radial-gradient(circle at 94% 6%, rgba(255, 231, 214, .1), transparent 26%);
}

.order-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: start;
  gap: 78px;
}

.eyebrow-light { color: #e9b7c5; }

.order-info {
  position: sticky;
  top: 120px;
}

.order-info h2 {
  color: #fff9f5;
}

.order-lead {
  max-width: 450px;
  margin: 29px 0 0;
  color: rgba(255,255,255,.68);
  line-height: 1.7;
}

.info-steps {
  display: grid;
  gap: 0;
  margin-top: 43px;
}

.info-steps article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.13);
}

.info-steps article > span {
  color: #e3adba;
  font-family: Georgia, serif;
  font-size: 13px;
  font-style: italic;
}

.info-steps h3 {
  margin: 0;
  font-size: 14px;
}

.info-steps p {
  margin: 5px 0 0;
  color: rgba(255,255,255,.58);
  font-size: 12px;
}

.care-note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  border-radius: 16px;
}

.care-note svg {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  color: #e9b7c5;
}

.care-note p {
  margin: 0;
  color: rgba(255,255,255,.62);
  font-size: 11px;
}

.care-note strong { color: white; font-size: 13px; }

.application-card {
  scroll-margin-top: 105px;
  padding: 38px;
  color: var(--ink);
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: 0 35px 80px rgba(33, 10, 21, .28);
}

.form-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 29px;
}

.form-heading p,
.result-kicker {
  margin: 0 0 5px;
  color: var(--berry);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.form-heading h2 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -.03em;
}

.form-step {
  padding: 7px 10px;
  color: var(--muted);
  background: var(--cream-deep);
  border-radius: 99px;
  font-size: 10px;
}

#order-form {
  display: grid;
  gap: 19px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-row:first-child {
  grid-template-columns: 1.45fr .75fr;
}

.field {
  display: grid;
  gap: 7px;
}

.field > span,
.flavor-fieldset legend,
.payment-fieldset legend {
  color: #55464b;
  font-size: 11px;
  font-weight: 750;
}

.field > span small,
.flavor-fieldset legend small {
  color: #a28d94;
  font-weight: 500;
}

.field input,
.field select,
.field textarea,
.quantity-control {
  width: 100%;
  color: var(--ink);
  border: 1px solid var(--line);
  outline: none;
  background: #fff;
  border-radius: 12px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.field input,
.field select {
  height: 50px;
  padding: 0 14px;
}

.field textarea {
  resize: vertical;
  min-height: 86px;
  padding: 13px 14px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--berry);
  box-shadow: 0 0 0 3px rgba(124, 41, 75, .09);
}

.field input.invalid {
  border-color: #b33b47;
}

.field-error {
  min-height: 0;
  margin: 0;
  color: #a62d3b;
  font-size: 10px;
}

.field-hint {
  margin: -2px 2px 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.45;
}

.quantity-control {
  height: 50px;
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  overflow: hidden;
}

.quantity-control button {
  height: 100%;
  padding: 0;
  color: var(--berry);
  border: 0;
  background: var(--cream-deep);
  cursor: pointer;
  font-size: 20px;
}

.quantity-control input {
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 0;
  text-align: center;
  -moz-appearance: textfield;
}

.quantity-control input::-webkit-outer-spin-button,
.quantity-control input::-webkit-inner-spin-button { margin: 0; -webkit-appearance: none; }

.cart-fieldset,
.flavor-fieldset,
.payment-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.cart-fieldset legend,
.flavor-fieldset legend,
.payment-fieldset legend {
  margin-bottom: 9px;
}

.cart-fieldset legend {
  color: #55464b;
  font-size: 11px;
  font-weight: 750;
}

.cart-lines {
  display: grid;
  gap: 8px;
}

.cart-line {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 142px;
  align-items: center;
  gap: 16px;
  padding: 11px 12px 11px 15px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 14px;
}

.cart-line label {
  min-width: 0;
  display: grid;
  gap: 3px;
  cursor: pointer;
}

.cart-line label strong {
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 16px;
  font-weight: 500;
}

.cart-line label small {
  overflow: hidden;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cart-line .quantity-control {
  height: 44px;
  grid-template-columns: 38px 1fr 38px;
}

.cart-line .quantity-control input {
  height: 42px;
}

.form-flavors {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.fieldset-help {
  margin: -2px 0 10px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.box-flavor-groups {
  display: grid;
  gap: 9px;
}

.box-flavor-group {
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.72);
  border-radius: 14px;
}

.box-flavor-group summary {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 14px;
  cursor: pointer;
  list-style: none;
}

.box-flavor-group summary::-webkit-details-marker { display: none; }

.box-flavor-group summary::after {
  content: "⌄";
  flex: 0 0 auto;
  color: var(--berry);
  font-size: 15px;
  transition: transform .18s ease;
}

.box-flavor-group[open] summary::after { transform: rotate(180deg); }

.box-flavor-group summary strong {
  min-width: 0;
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 14px;
  font-weight: 500;
}

.box-flavor-group summary span {
  margin-left: auto;
  padding: 5px 8px;
  color: #8c6f79;
  background: var(--cream-deep);
  border-radius: 99px;
  font-size: 8px;
  font-weight: 750;
  white-space: nowrap;
}

.box-flavor-group.complete {
  border-color: rgba(38,113,88,.32);
}

.box-flavor-group.complete summary span {
  color: #267158;
  background: #e8f4ee;
}

.box-flavor-group.incomplete summary span {
  color: #9c3c56;
  background: var(--rose-soft);
}

.box-flavor-group > p {
  margin: 0;
  padding: 0 14px 9px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.45;
}

.box-flavor-group .form-flavors {
  padding: 0 14px 14px;
}

.form-flavors label,
.payment-options label {
  cursor: pointer;
}

.form-flavors input,
.payment-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.form-flavors span {
  min-height: 54px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 9px;
  color: #68575d;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  font-size: 9px;
  font-weight: 650;
  transition: color .18s ease, background .18s ease, border-color .18s ease;
}

.form-flavors span img {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  object-fit: contain;
  filter: var(--zefir-tone, none) drop-shadow(0 4px 5px rgba(75, 42, 49, .2));
}

.form-flavors span b {
  min-width: 0;
  font-size: inherit;
  line-height: 1.25;
}

.form-flavors input:checked + span {
  color: var(--berry);
  border-color: var(--berry);
  background: #fff3f6;
  box-shadow: inset 0 0 0 1px var(--berry), 0 6px 15px rgba(124, 41, 75, .09);
}

.form-flavors input:checked + span::after {
  content: "✓";
  width: 18px;
  height: 18px;
  position: absolute;
  top: 5px;
  right: 5px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--berry);
  border-radius: 50%;
  font-size: 10px;
}

.form-flavors input:focus-visible + span,
.payment-options input:focus-visible + span {
  outline: 3px solid rgba(124, 41, 75, .2);
  outline-offset: 2px;
}

.box-flavor-preview {
  margin: 0 14px 14px;
  padding: 11px 12px 13px;
  border: 1px solid rgba(142, 104, 78, .17);
  background: linear-gradient(145deg, #fffdf8, #f6eadc);
  border-radius: 14px;
}

.box-flavor-preview > strong {
  display: block;
  margin-bottom: 8px;
  color: #765f66;
  font-size: 9px;
  letter-spacing: .04em;
}

.box-flavor-tray {
  min-height: 78px;
  display: grid;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px;
  border: 6px solid #f9f5ee;
  background: #c99d81;
  border-radius: 10px;
  box-shadow: inset 0 0 0 1px rgba(88, 48, 37, .13), 0 5px 12px rgba(74, 46, 39, .09);
}

.box-flavor-tray[data-product="mini"] { grid-template-columns: repeat(3, 46px); }
.box-flavor-tray[data-product="medium"],
.box-flavor-tray[data-product="large"] { grid-template-columns: repeat(4, 46px); }

.box-flavor-tray img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: var(--zefir-tone, none) drop-shadow(0 5px 4px rgba(57, 28, 34, .24));
}

.box-flavor-tray.empty {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  background: repeating-linear-gradient(135deg, #f2e3d5, #f2e3d5 10px, #ead6c5 10px, #ead6c5 20px);
}

.box-flavor-tray.empty p {
  max-width: 280px;
  margin: 0 auto;
  padding: 8px;
  color: #745f66;
  font-size: 9px;
  line-height: 1.45;
  text-align: center;
}

.payment-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.payment-options span {
  height: 49px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  color: #6a5a60;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  transition: border-color .18s ease, background .18s ease;
}

.payment-options i {
  width: 26px;
  height: 21px;
  display: grid;
  place-items: center;
  color: white;
  background: #54474b;
  border-radius: 5px;
  font-size: 10px;
  font-style: normal;
}

.payment-options input:checked + span {
  border-color: var(--berry);
  background: var(--rose-soft);
  box-shadow: inset 0 0 0 1px var(--berry);
}

.payment-options input:checked + span i { background: var(--berry); }

.payment-method-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin: 18px 0 4px;
  padding: 4px;
  background: var(--cream-deep);
  border-radius: 13px;
}

.payment-method-switch button {
  min-height: 42px;
  padding: 8px 12px;
  color: #745e66;
  border: 0;
  background: transparent;
  border-radius: 10px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 750;
}

.payment-method-switch button.active {
  color: white;
  background: var(--berry);
  box-shadow: 0 7px 18px rgba(94,25,55,.18);
}

.payment-method-switch button:focus-visible {
  outline: 3px solid rgba(124, 41, 75, .2);
  outline-offset: 2px;
}

.payment-method-switch button:disabled {
  cursor: default;
  opacity: .72;
}

.payment-gateway-note {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  padding: 15px;
  border: 1px solid rgba(124, 41, 75, .18);
  background: linear-gradient(135deg, #fff, var(--rose-soft));
  border-radius: 14px;
}

.payment-gateway-brands {
  width: 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.payment-gateway-brands span {
  min-height: 23px;
  display: grid;
  place-items: center;
  padding: 3px 5px;
  color: white;
  background: #123e8a;
  border-radius: 5px;
  font-size: 7px;
  font-weight: 850;
  letter-spacing: -.02em;
}

.payment-gateway-brands span:first-child {
  grid-column: span 2;
  color: #173b80;
  background: #ffc439;
  font-size: 9px;
}

.payment-gateway-brands span:last-child { background: #e4513f; }

.payment-gateway-note strong {
  display: block;
  color: var(--ink);
  font-size: 12px;
}

.payment-gateway-note p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
}

.payment-gateway-note > small {
  grid-column: 1 / -1;
  justify-self: start;
  padding: 6px 9px;
  color: #705425;
  background: #fff4cc;
  border-radius: 99px;
  font-size: 8px;
  font-weight: 750;
}

.order-total {
  display: grid;
  gap: 7px;
  margin-top: 2px;
  padding: 16px 18px;
  background: var(--cream-deep);
  border-radius: 14px;
  font-size: 11px;
}

.order-total > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
}

.order-total strong { color: var(--ink); }

.order-total .grand-total {
  margin-top: 6px;
  padding-top: 10px;
  color: var(--ink);
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.order-total .grand-total strong {
  color: var(--berry);
  font-family: Georgia, serif;
  font-size: 21px;
  font-weight: 500;
}

.delivery-hint {
  margin: 2px 0 1px;
  color: #8f7a82;
  font-size: 9px;
  line-height: 1.45;
}

.submit-button { width: 100%; }

.privacy-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: -5px 0 0;
  color: #938087;
  font-size: 9px;
  text-align: center;
}

.privacy-note svg { width: 14px; height: 14px; flex: 0 0 auto; }

.privacy-note a {
  color: var(--berry);
  border-bottom: 1px solid rgba(124,41,75,.28);
  font-weight: 700;
}

.withdrawal-note {
  margin: 4px 0 0;
  padding: 13px 15px;
  border: 1px solid rgba(124,41,75,.16);
  border-radius: 16px;
  background: #fff9f4;
  color: #6f5e64;
  font-size: 10px;
  line-height: 1.55;
  text-align: left;
}

.withdrawal-note strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 11px;
}

.withdrawal-note a {
  display: inline-block;
  margin-left: 3px;
  color: var(--berry);
  border-bottom: 1px solid rgba(124,41,75,.28);
  font-weight: 800;
}

.order-result {
  padding: 42px 0 4px;
  scroll-margin-top: 92px;
  text-align: center;
}

.success-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  color: white;
  background: var(--sage);
  border: 8px solid var(--sage-soft);
  border-radius: 50%;
  font-size: 22px;
  font-weight: 800;
}

.payment-icon {
  color: var(--berry-dark);
  background: #ffc439;
  border-color: #fff0b7;
  font-family: Georgia, serif;
}

.payment-icon.completed {
  color: white;
  background: var(--sage);
  border-color: var(--sage-soft);
  font-family: inherit;
}

.sandbox-badge {
  display: inline-flex;
  margin: 0 auto 14px;
  padding: 6px 10px;
  color: #725316;
  background: #fff1bd;
  border-radius: 99px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sandbox-badge.live-badge {
  color: #245f4c;
  background: #e2f3eb;
}

.order-result h3 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -.03em;
}

.order-result > p:not(.result-kicker, .copy-status) {
  margin: 10px 0 22px;
  color: var(--muted);
  font-size: 13px;
}

.order-result pre {
  max-height: 290px;
  overflow: auto;
  margin: 0;
  padding: 18px;
  color: #57454b;
  border: 1px solid var(--line);
  background: var(--cream);
  border-radius: 14px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  line-height: 1.65;
  text-align: left;
  white-space: pre-wrap;
}

.order-summary-details {
  margin-top: 17px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.58);
  border-radius: 14px;
  text-align: left;
}

.order-summary-details h4 {
  margin: 0;
  padding: 13px 15px;
  color: var(--berry);
  font-size: 10px;
  font-weight: 750;
}

.order-summary-details pre {
  max-height: none;
  overflow: visible;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0 0 14px 14px;
}

.paypal-status {
  min-height: 18px;
  margin: 16px 0 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
}

.paypal-status.error { color: #a62d3b; }
.paypal-status.success { color: #267158; }

.notification-status {
  margin: 0 0 12px;
  padding: 11px 13px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 10px;
  line-height: 1.5;
  text-align: left;
}

.notification-status.success {
  color: #24664f;
  border-color: #c9e4d8;
  background: #edf8f2;
}

.notification-status.warning {
  color: #7c5d27;
  border-color: #ead8ad;
  background: #fff9e9;
}

.paypal-button-container {
  min-height: 48px;
  position: relative;
  z-index: 1;
  margin-top: 8px;
}

.manual-fallback {
  margin-top: 18px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.62);
  border-radius: 13px;
  text-align: left;
}

.manual-fallback summary {
  color: var(--muted);
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
}

.manual-fallback .order-send-actions { margin-top: 12px; }

.order-send-actions,
.result-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.result-actions {
  margin-top: 10px;
}

.button-whatsapp {
  color: white;
  background: #176b4a;
  border-color: #176b4a;
  box-shadow: 0 10px 22px rgba(23,107,74,.2);
}

.button-whatsapp:hover {
  color: white;
  background: #11573c;
  border-color: #11573c;
}

.button-email {
  color: white;
  background: var(--berry);
  border-color: var(--berry);
}

.button-email:hover {
  color: white;
  background: var(--berry-dark);
  border-color: var(--berry-dark);
}

.button-ghost {
  color: var(--berry);
  border-color: var(--line);
  background: transparent;
}

.copy-status {
  min-height: 18px;
  margin: 10px 0 0;
  color: var(--sage);
  font-size: 11px;
  font-weight: 700;
}

.site-footer {
  padding: 42px 0;
  background: #2d1821;
  color: white;
}

.footer-inner {
  display: grid;
  gap: 26px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.35fr auto;
  align-items: center;
  gap: 30px;
}

.brand-footer .brand-mark { background: rgba(248, 220, 226, .12); border-color: rgba(255,255,255,.14); }
.brand-footer .brand-mark img { filter: sepia(.18) saturate(1.15) hue-rotate(294deg) brightness(1.14) drop-shadow(0 3px 3px rgba(0,0,0,.24)); }
.brand-footer small { color: rgba(255,255,255,.48); }

.footer-contact {
  display: grid;
  gap: 5px;
  color: rgba(255,255,255,.58);
  font-size: 11px;
  line-height: 1.5;
}

.footer-contact strong {
  color: white;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-contact a,
.footer-cta {
  color: #e8b5c2;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 4px;
}

.footer-socials a {
  padding: 5px 9px;
  color: #f7dce3;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 99px;
  text-decoration: none;
}

.footer-socials a:hover {
  color: white;
  background: rgba(255,255,255,.14);
}

.footer-cta {
  font-size: 11px;
  font-weight: 700;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.11);
}

.footer-legal a {
  color: rgba(255,255,255,.62);
  font-size: 11px;
}

.footer-legal a:hover {
  color: white;
}

.cookie-banner {
  width: min(680px, calc(100% - 32px));
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 22px;
  color: white;
  background: rgba(45,24,33,.97);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  box-shadow: 0 22px 58px rgba(35,14,23,.36);
  backdrop-filter: blur(14px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 500;
}

.cookie-banner p {
  margin: 8px 0 7px;
  color: rgba(255,255,255,.68);
  font-size: 11px;
  line-height: 1.55;
}

.cookie-banner a {
  color: #efbdc8;
  font-size: 11px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner .button {
  min-height: 44px;
  padding-inline: 20px;
  white-space: nowrap;
}

.mobile-order-button {
  display: none;
  transition: opacity .22s ease, transform .22s ease;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  .section { padding: 90px 0; }
  .hero-grid { grid-template-columns: 1fr .8fr; gap: 35px; }
  .hero-art { min-height: 510px; }
  .product-grid { gap: 14px; }
  .product-content { padding: 23px 20px 24px; }
  .product-description { min-height: 62px; }
  .flavor-area { grid-template-columns: .7fr 1.6fr; gap: 32px; }
  .order-layout { gap: 42px; }
  .application-card { padding: 30px; }
  .real-box-showcase figcaption { padding: 48px; }
}

@media (max-width: 820px) {
  .header-inner { min-height: 72px; }
  .menu-button { display: block; }
  .site-nav {
    position: absolute;
    top: 72px;
    right: 20px;
    left: 20px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    background: rgba(255, 253, 249, .98);
    border-radius: 18px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease;
  }
  .site-nav.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .site-nav a { padding: 13px 15px; }
  .site-nav .language-picker {
    width: calc(100% - 16px);
    margin: 8px;
  }
  .site-nav a:not(.nav-cta)::after { display: none; }
  .nav-cta { margin-top: 5px; text-align: center; }
  .menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .hero { min-height: auto; padding-top: 60px; }
  .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .hero-copy { text-align: center; }
  .eyebrow { justify-content: center; }
  .hero h1 { margin-inline: auto; }
  .hero-lead { margin-inline: auto; }
  .hero-actions, .hero-facts { justify-content: center; }
  .hero-art { width: 100%; max-width: 520px; min-width: 0; min-height: auto; margin: 38px auto 0; }
  .hero-photo-frame { transform: rotate(1deg); }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card { display: grid; grid-template-columns: .8fr 1.2fr; }
  .product-visual { height: 100%; min-height: 280px; }
  .product-description { min-height: 0; }
  .real-box-showcase { grid-template-columns: 1fr; margin-top: 76px; }
  .showcase-photo { min-height: 500px; max-height: 620px; }
  .real-box-showcase figcaption { padding: 44px; }
  .flavor-area { grid-template-columns: 1fr; margin-top: 95px; }
  .flavor-intro { position: static; text-align: center; }
  .flavor-intro .eyebrow { justify-content: center; }
  .flavor-intro > p:not(.eyebrow) { margin-inline: auto; }
  .flavor-counter { margin-inline: auto; }
  .flavor-menu-photo { width: min(100%, 360px); margin-inline: auto; }
  .product-info-grid { grid-template-columns: 1fr; }
  .product-info-card-wide { grid-column: auto; }
  .footer-main { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .footer-legal { justify-content: center; }
  .order-layout { grid-template-columns: 1fr; }
  .order-info { position: static; }
  .order-info h2, .order-lead { max-width: 650px; }
  .info-steps { grid-template-columns: repeat(3, 1fr); gap: 15px; }
  .info-steps article { grid-template-columns: 1fr; }
  .care-note { max-width: 450px; }
}

@media (max-width: 600px) {
  .maker-signature {
    right: 50%;
    bottom: 7px;
    width: max-content;
    max-width: calc(100% - 36px);
    padding: 8px 14px;
    font-size: 13px;
    transform: translateX(50%);
  }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 68px 0; }
  .header-inner { gap: 14px; }
  .site-header .brand small { display: none; }
  .site-header .brand strong { font-size: clamp(15px, 4.4vw, 17px); white-space: nowrap; }
  .hero { padding-top: 44px; }
  .hero-copy { width: 100%; min-width: 0; }
  .hero .eyebrow { align-items: flex-start; font-size: 10px; letter-spacing: .11em; line-height: 1.45; }
  .hero .eyebrow span { flex: 0 0 24px; margin-top: 7px; }
  .hero .eyebrow b { min-width: 0; }
  .hero h1 { font-size: clamp(44px, 12.4vw, 58px); line-height: 1; }
  .hero-lead { margin-top: 22px; font-size: 15px; line-height: 1.62; }
  .hero-actions { flex-direction: column; gap: 17px; margin-top: 29px; }
  .hero-actions .button { width: 100%; }
  .hero-facts { gap: 10px 16px; margin-top: 30px; }
  .hero-facts li { min-width: 0; }
  .hero-art { width: 100%; min-height: auto; margin: 34px auto 0; }
  .hero-photo-frame { border-width: 7px; border-radius: 27px; }
  .art-note-top { top: 14px; right: 4px; left: auto; transform: rotate(4deg) scale(.92); transform-origin: top right; }
  .section-heading { text-align: center; }
  .section-heading .eyebrow { justify-content: center; }
  .section-heading h2, .flavor-intro h2, .order-info h2 { font-size: clamp(37px, 11.2vw, 43px); overflow-wrap: anywhere; }
  .section-heading > p { font-size: 14px; }
  .product-card { display: block; }
  .product-visual { height: 215px; min-height: 0; }
  .product-content { padding: 24px; }
  .product-title-row { flex-wrap: wrap; }
  .product-title-row > strong { flex: 0 0 auto; }
  .real-box-showcase { margin-top: 62px; border-radius: 24px; }
  .showcase-photo { min-height: 410px; max-height: 480px; }
  .real-box-showcase figcaption { padding: 32px 24px 36px; text-align: center; align-items: center; }
  .real-box-showcase figcaption .eyebrow { justify-content: center; }
  .real-box-showcase h2 { font-size: clamp(34px, 10vw, 42px); overflow-wrap: anywhere; }
  .real-box-showcase figcaption > p:not(.eyebrow) { font-size: 14px; }
  .product-photo-gallery { grid-template-columns: 1fr; gap: 14px; margin-top: 14px; }
  .product-photo-gallery figure { border-radius: 20px; }
  .flavor-area { margin-top: 82px; }
  .flavor-grid { grid-template-columns: 1fr; }
  .flavor-card {
    min-height: 76px;
    justify-content: center;
    padding: 14px 52px 14px 18px;
  }
  .flavor-card:not([aria-expanded="true"]) .flavor-illustration { display: none; }
  .flavor-card:not([aria-expanded="true"]) strong {
    margin-top: 4px;
    padding-right: 0;
    font-size: 19px;
  }
  .flavor-card:not([aria-expanded="true"])::after {
    right: 20px;
    bottom: 50%;
    transform: translateY(50%);
  }
  .flavor-card[aria-expanded="true"] {
    min-height: 190px;
    justify-content: flex-start;
    padding: 24px;
  }
  .flavor-card[aria-expanded="true"]::after {
    right: 21px;
    bottom: 19px;
    transform: rotate(45deg);
  }
  .order-info { text-align: center; }
  .order-info .eyebrow { justify-content: center; }
  .order-lead { font-size: 14px; }
  .info-steps { grid-template-columns: 1fr; margin-top: 30px; text-align: left; }
  .info-steps article { grid-template-columns: 40px 1fr; }
  .care-note { text-align: left; }
  .application-card { margin-inline: 0; padding: 26px 19px; border-radius: 24px; }
  .form-flavors { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form-heading { flex-wrap: wrap; }
  .form-heading h2 { font-size: 27px; }
  .form-row, .form-row:first-child { grid-template-columns: 1fr; }
  .form-row:not(:first-child) { gap: 19px; }
  .order-send-actions, .result-actions { grid-template-columns: 1fr; }
  .payment-gateway-note { grid-template-columns: 64px minmax(0, 1fr); }
  .payment-gateway-brands { width: 64px; }
  .product-info-heading { text-align: center; }
  .product-info-heading .eyebrow { justify-content: center; }
  .product-info-heading h2 { font-size: clamp(37px, 11vw, 45px); }
  .product-info-card { grid-template-columns: 48px minmax(0, 1fr); gap: 16px; padding: 25px 22px; border-radius: 21px; }
  .info-icon { width: 48px; height: 48px; border-radius: 15px; font-size: 13px; }
  .product-info-card h3 { font-size: 23px; }
  .site-footer { padding-bottom: 100px; }
  .cookie-banner {
    width: calc(100% - 24px);
    right: 12px;
    bottom: 82px;
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 19px;
    border-radius: 20px;
  }
  .cookie-banner .button { width: 100%; }
  .mobile-order-button {
    height: 58px;
    position: fixed;
    right: max(12px, env(safe-area-inset-right));
    bottom: max(10px, env(safe-area-inset-bottom));
    left: max(12px, env(safe-area-inset-left));
    z-index: 45;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 21px;
    color: white;
    background: rgba(94, 25, 55, .95);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 99px;
    box-shadow: 0 15px 40px rgba(37, 13, 23, .32);
    backdrop-filter: blur(12px);
    font-size: 13px;
    font-weight: 750;
  }
  .mobile-order-button strong { color: #efc0ca; font-family: Georgia, serif; font-size: 15px; }
  .mobile-order-button.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 24px));
  }
}

@media (max-width: 480px) {
  .payment-options { grid-template-columns: 1fr; }
  .quantity-field { width: 100%; }
  .cart-line { grid-template-columns: minmax(0, 1fr) 118px; gap: 10px; padding-left: 12px; }
  .cart-line label small { white-space: normal; }
  .cart-line .quantity-control { grid-template-columns: 34px 1fr 34px; }
}

@media (max-width: 390px) {
  .hero-art { margin-top: 30px; }
}

@media (max-width: 360px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .brand { gap: 8px; }
  .brand-mark { width: 38px; }
  .site-header .brand strong { font-size: 15px; }
  .hero h1 { font-size: clamp(40px, 12.5vw, 45px); }
  .hero-lead { font-size: 14px; }
  .mobile-order-button { padding-inline: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

:focus-visible {
  outline: 3px solid rgba(124, 41, 75, .38);
  outline-offset: 3px;
}

.helper-launcher {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 52;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 50px;
  padding: 8px 18px 8px 9px;
  color: #fff;
  background: #6f1d42;
  border: 0;
  border-radius: 99px;
  box-shadow: 0 14px 36px rgba(62, 17, 37, .28);
  cursor: pointer;
  font: inherit;
}
.helper-launcher > span, .helper-avatar {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #6f1d42;
  background: #f8d8e1;
  border-radius: 50%;
  font-weight: 850;
}
.helper-panel {
  position: fixed;
  right: 24px;
  bottom: 86px;
  z-index: 53;
  width: min(390px, calc(100vw - 32px));
  max-height: min(650px, calc(100dvh - 120px));
  overflow: hidden;
  color: #321d26;
  background: #fffaf6;
  border: 1px solid rgba(111, 29, 66, .16);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(46, 15, 29, .28);
}
.helper-panel:not([hidden]) { display: grid; grid-template-rows: auto minmax(140px, 1fr) auto auto auto; }
.helper-header { display: flex; align-items: center; gap: 11px; padding: 16px; background: #f8e8ec; }
.helper-header div { display: grid; gap: 2px; min-width: 0; }
.helper-header small { color: #745f68; font-size: 12px; }
.helper-close { margin-left: auto; padding: 2px 8px; color: #512538; background: transparent; border: 0; font-size: 30px; line-height: 1; cursor: pointer; }
.helper-messages { display: flex; flex-direction: column; gap: 9px; overflow-y: auto; padding: 16px; }
.helper-message { max-width: 88%; padding: 10px 13px; border-radius: 16px; font-size: 14px; line-height: 1.45; white-space: pre-line; }
.helper-message.assistant { align-self: flex-start; background: #f2e8e2; border-bottom-left-radius: 5px; }
.helper-message.user { align-self: flex-end; color: #fff; background: #7c294b; border-bottom-right-radius: 5px; }
.helper-message a { display: inline-block; margin-top: 7px; color: #762447; font-weight: 750; text-decoration: underline; }
.helper-quick { display: flex; gap: 7px; overflow-x: auto; padding: 0 16px 12px; scrollbar-width: thin; }
.helper-quick button { flex: 0 0 auto; padding: 8px 11px; color: #68203f; background: #fff; border: 1px solid #dcbac7; border-radius: 99px; cursor: pointer; font: 700 12px/1.2 inherit; }
.helper-form { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px; padding: 12px 16px; border-top: 1px solid #eadbd4; }
.helper-form input { min-width: 0; height: 42px; padding: 0 13px; border: 1px solid #d7c3ca; border-radius: 12px; font: inherit; }
.helper-form button { padding: 0 14px; color: #fff; background: #7c294b; border: 0; border-radius: 12px; font-weight: 750; cursor: pointer; }
.helper-note { margin: 0; padding: 0 16px 13px; color: #88747c; font-size: 11px; text-align: center; }

@media (max-width: 760px) {
  .helper-launcher { right: 14px; bottom: 82px; min-height: 44px; padding: 6px 14px 6px 7px; }
  .helper-launcher > span { width: 31px; height: 31px; }
  .helper-panel { right: 10px; bottom: 136px; width: calc(100vw - 20px); max-height: calc(100dvh - 158px); border-radius: 20px; }
}
