
:root {
  --purple: #5b138f;
  --purple-2: #7c27ad;
  --purple-dark: #260538;
  --pink: #f442aa;
  --pink-soft: #ffd8ed;
  --yellow: #efff28;
  --cream: #fff9ef;
  --white: #ffffff;
  --ink: #24102b;
  --muted: #735d77;
  --line: rgba(38, 5, 56, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 108px; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }

.loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 20px;
  background:
    radial-gradient(circle at 20% 20%, rgba(244,66,170,.35), transparent 24%),
    radial-gradient(circle at 82% 74%, rgba(239,255,40,.16), transparent 23%),
    var(--purple-dark);
  color: white;
  transition: opacity .55s ease, visibility .55s ease;
}
.loader--hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader__snack {
  position: relative;
  width: 158px;
  height: 82px;
  border: 5px solid #6b350d;
  border-radius: 50% 45% 45% 48%;
  background:
    linear-gradient(transparent 58%, rgba(121,61,6,.2) 58%),
    repeating-linear-gradient(140deg, #ffd44e 0 8px, #ed9823 8px 14px);
  box-shadow: inset 0 -8px rgba(120,57,7,.22), 0 16px 0 rgba(16,2,25,.26);
  transform: rotate(-7deg);
  animation: snackBounce .46s ease-in-out infinite alternate;
}
.loader__snack::before {
  content: "";
  position: absolute;
  inset: 8px 20px 9px 26px;
  border: 3px solid rgba(255,247,176,.58);
  border-radius: inherit;
}
.loader__bite {
  position: absolute;
  right: -10px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--purple-dark);
  opacity: 0;
}
.loader__bite--one { top: -8px; animation: bite 3s .35s forwards; }
.loader__bite--two { top: 21px; animation: bite 3s 1.1s forwards; }
.loader__bite--three { bottom: -9px; animation: bite 3s 1.85s forwards; }
.loader__words { display: grid; gap: 5px; text-align: center; }
.loader__words strong { font-size: 21px; letter-spacing: -.03em; }
.loader__words span { color: rgba(255,255,255,.65); font-size: 13px; }
.loader__bar { width: 190px; height: 6px; overflow: hidden; border: 1px solid rgba(255,255,255,.38); border-radius: 99px; }
.loader__bar span { display: block; width: 100%; height: 100%; background: var(--yellow); transform-origin: left; animation: loadBar 3s linear forwards; }
@keyframes bite { 12%, 100% { opacity: 1; } }
@keyframes snackBounce { to { transform: translateY(-9px) rotate(3deg); } }
@keyframes loadBar { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.site-header {
  position: fixed;
  z-index: 50;
  top: 16px;
  left: 50%;
  width: min(1320px, calc(100% - 48px));
  height: 86px;
  padding: 0 14px 0 18px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 25px;
  background: rgba(53, 8, 76, .78);
  color: white;
  box-shadow: 0 14px 42px rgba(38,5,56,.2);
  backdrop-filter: blur(16px);
}
.brand img { width: 70px; height: 70px; object-fit: contain; }
.nav { display: flex; align-items: center; gap: 36px; font-size: 14px; font-weight: 800; }
.nav a:not(.nav__order) { position: relative; }
.nav a:not(.nav__order)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--yellow); transition: right .25s ease; }
.nav a:not(.nav__order):hover::after { right: 0; }
.nav__order { padding: 14px 18px; background: white; color: var(--purple-dark); border-radius: 16px; }
.nav__order span { margin-left: 12px; color: var(--pink); }
.menu-button { display: none; }

.hero {
  position: relative;
  min-height: 850px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  background: var(--purple);
  color: white;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  left: -9%;
  bottom: -45%;
  width: 620px;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(255,255,255,.025), 0 0 0 120px rgba(255,255,255,.02);
}
.hero__cloud { position: absolute; z-index: 2; width: 105px; height: 34px; border-radius: 60px; background: linear-gradient(180deg,#fff,#f5bddd); filter: drop-shadow(0 10px 14px rgba(47,2,67,.18)); opacity: .76; }
.hero__cloud::before, .hero__cloud::after { content: ""; position: absolute; bottom: 8px; border-radius: 50%; background: inherit; }
.hero__cloud::before { left: 15px; width: 45px; height: 45px; }
.hero__cloud::after { right: 12px; width: 55px; height: 57px; }
.hero__cloud--one { top: 145px; left: 42%; transform: scale(.65) rotate(-6deg); }
.hero__cloud--two { bottom: 65px; left: 3%; transform: scale(.45) rotate(5deg); }
.hero__copy {
  position: relative;
  z-index: 3;
  align-self: center;
  width: min(710px, calc(100% - 48px));
  margin-left: max(24px, calc((100vw - 1320px) / 2));
  padding: 160px 48px 76px 0;
}
.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 10px 15px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 99px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .11em;
}
.eyebrow span { color: var(--yellow); }
.hero h1 {
  margin: 30px 0 22px;
  font-size: clamp(68px, 7.1vw, 120px);
  line-height: .82;
  letter-spacing: -.075em;
  font-weight: 950;
}
.hero h1 em, .intro h2 em, .why-us h2 em, .section-heading h2 em, .order h2 em, .visit h2 em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -.06em;
}
.hero h1 em { color: var(--yellow); }
.hero__lead { max-width: 590px; color: rgba(255,255,255,.78); font-size: clamp(17px, 1.4vw, 20px); line-height: 1.65; }
.hero__actions { display: flex; align-items: center; gap: 30px; margin-top: 35px; }
.button { display: inline-flex; align-items: center; justify-content: space-between; min-width: 190px; padding: 17px 21px; border: 0; border-radius: 99px; font-weight: 900; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-3px); }
.button--yellow { background: var(--yellow); color: var(--purple-dark); box-shadow: 0 8px 0 var(--purple-dark); }
.button--pink { width: 100%; background: var(--pink); color: white; box-shadow: 0 8px 0 var(--purple-dark); }
.button span { margin-left: 18px; }
.text-link { font-weight: 800; border-bottom: 1px solid rgba(255,255,255,.46); padding-bottom: 5px; }
.text-link span { color: var(--yellow); margin-left: 10px; }
.hero__meta { display: flex; gap: 50px; margin-top: 56px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.22); }
.hero__meta div { display: grid; gap: 6px; }
.hero__meta strong { font-size: 14px; }
.hero__meta small { color: rgba(255,255,255,.57); font-size: 12px; }

.hero__visual { position: relative; min-height: 850px; overflow: hidden; background: var(--pink); }
.hero__photo { position: absolute; inset: 0; background-image: url('/hero-risol.webp'); background-size: cover; background-position: center 46%; filter: saturate(1.08) contrast(1.02); transform: scale(1.01); }
.hero__photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(91,19,143,.16), transparent 28%), linear-gradient(180deg, rgba(38,5,56,.06), transparent 25%); }
.sticker { position: absolute; z-index: 3; display: grid; place-content: center; width: 122px; height: 122px; border-radius: 50%; background: var(--yellow); color: var(--purple); text-align: center; font-size: 15px; line-height: 1.05; font-weight: 950; transform: rotate(9deg); box-shadow: 8px 9px 0 var(--purple-dark); }
.sticker--top { top: 145px; right: 7%; }
.hero__bubble { position: absolute; z-index: 3; left: 7%; bottom: 72px; padding: 18px 22px; background: white; color: var(--purple-dark); font-size: 18px; line-height: 1.25; transform: rotate(-3deg); border: 2px solid var(--purple-dark); box-shadow: 7px 7px 0 var(--purple-dark); }
.hero__bubble strong { color: var(--pink); }
.hero__rating { position: absolute; z-index: 3; right: 7%; bottom: 82px; display: grid; gap: 3px; width: 105px; padding: 13px; background: rgba(38,5,56,.86); color: white; border-radius: 18px; text-align: center; backdrop-filter: blur(8px); }
.hero__rating b { font-size: 26px; }
.hero__rating span { color: var(--yellow); font-size: 11px; letter-spacing: .05em; }
.hero__rating small { color: rgba(255,255,255,.56); font-size: 9px; text-transform: uppercase; }
.spark { position: absolute; z-index: 3; color: var(--yellow); font-size: 48px; text-shadow: 3px 3px 0 var(--purple-dark); }
.spark--one { top: 41%; left: 6%; }
.spark--two { right: 4%; bottom: 34%; font-size: 31px; }

.ticker { position: relative; z-index: 4; overflow: hidden; background: var(--yellow); border-block: 2px solid var(--purple-dark); color: var(--purple-dark); transform: rotate(-.7deg) scale(1.01); }
.ticker div { display: flex; width: max-content; align-items: center; gap: 28px; padding: 15px 0; animation: ticker 24s linear infinite; }
.ticker span { font-size: 16px; font-weight: 950; letter-spacing: .04em; }
.ticker b { color: var(--pink); }
@keyframes ticker { to { transform: translateX(-50%); } }

.intro { max-width: 1320px; margin: 0 auto; padding: 130px 32px 72px; display: grid; grid-template-columns: .33fr 1fr; gap: 40px; }
.section-kicker { margin: 8px 0; color: var(--purple); font-size: 12px; font-weight: 950; letter-spacing: .15em; }
.section-kicker--light { color: var(--yellow); }
.intro h2, .section-heading h2 { margin: 0; font-size: clamp(52px, 6vw, 90px); line-height: .94; letter-spacing: -.065em; }
.intro h2 em, .section-heading h2 em { color: var(--pink); }
.intro div > p { max-width: 650px; margin: 28px 0 0; font-size: 18px; line-height: 1.7; color: var(--muted); }

.products { max-width: 1320px; margin: 0 auto; padding: 0 32px 130px; }
.product-filter { display: flex; gap: 10px; margin-bottom: 28px; }
.product-filter button { padding: 11px 17px; border: 1px solid var(--purple-dark); border-radius: 99px; background: transparent; font-size: 13px; font-weight: 850; cursor: pointer; }
.product-filter button.active { background: var(--purple-dark); color: white; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.product-card { min-width: 0; }
.product-card__image { position: relative; aspect-ratio: .77; overflow: hidden; border: 2px solid var(--purple-dark); border-radius: 28px; background: #eddecf; box-shadow: 7px 7px 0 var(--purple-dark); }
.product-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s cubic-bezier(.2,.8,.2,1); }
.product-card:hover img { transform: scale(1.055); }
.product-card__image > span { position: absolute; top: 14px; left: 14px; padding: 8px 10px; border: 1px solid var(--purple-dark); border-radius: 99px; background: var(--yellow); color: var(--purple-dark); font-size: 10px; font-weight: 950; letter-spacing: .06em; transform: rotate(-3deg); }
.product-card__body { display: flex; justify-content: space-between; gap: 12px; padding: 21px 6px 0; }
.product-card__body > div > p { margin: 0 0 8px; color: var(--pink); font-size: 10px; font-weight: 950; letter-spacing: .08em; }
.product-card__body h3 { margin: 0; font-size: 22px; line-height: 1.06; letter-spacing: -.04em; }
.product-card__price { display: inline-block; margin-top: 10px; padding: 7px 11px; border-radius: 99px; background: var(--yellow); color: var(--purple-dark); font-size: 14px; line-height: 1; font-weight: 950; box-shadow: 3px 3px 0 var(--purple-dark); }
.product-card__body > div > span { display: block; margin-top: 8px; color: var(--muted); font-size: 13px; line-height: 1.45; }
.product-card__body > a { flex: 0 0 42px; display: grid; place-content: center; width: 42px; height: 42px; border-radius: 50%; background: var(--pink); color: white; font-weight: 900; }
.frozen-callout { margin-top: 70px; display: grid; grid-template-columns: auto 1.1fr 1.35fr auto; align-items: center; gap: 28px; padding: 28px; border: 2px solid var(--purple-dark); border-radius: 28px; background: var(--pink-soft); box-shadow: 9px 9px 0 var(--purple-dark); }
.snowflake { display: grid; place-content: center; width: 82px; height: 82px; border-radius: 22px; background: var(--purple); color: white; font-size: 38px; transform: rotate(-5deg); }
.frozen-callout div > span { color: var(--pink); font-size: 10px; font-weight: 950; letter-spacing: .1em; }
.frozen-callout h3 { margin: 6px 0 0; font-size: 26px; letter-spacing: -.04em; }
.frozen-callout p { margin: 0; color: var(--muted); line-height: 1.6; }
.frozen-callout > a { padding: 13px 17px; border-radius: 99px; background: var(--purple-dark); color: white; font-size: 13px; font-weight: 850; white-space: nowrap; }
.frozen-callout > a span { color: var(--yellow); margin-left: 10px; }

.why-us { padding: 128px max(32px, calc((100vw - 1320px) / 2)); background: var(--purple-dark); color: white; }
.why-us__title { display: grid; grid-template-columns: .35fr 1fr; gap: 30px; align-items: start; }
.why-us h2 { margin: 0; font-size: clamp(52px, 6.2vw, 92px); line-height: .93; letter-spacing: -.065em; }
.why-us h2 em { color: var(--yellow); }
.benefit-grid { margin-top: 70px; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.25); }
.benefit-grid article { padding: 28px 26px 12px 0; border-right: 1px solid rgba(255,255,255,.18); }
.benefit-grid article + article { padding-left: 26px; }
.benefit-grid article:last-child { border: 0; }
.benefit-grid article > span { color: var(--pink); font-size: 12px; font-weight: 900; }
.benefit-grid h3 { margin: 34px 0 14px; font-size: 22px; letter-spacing: -.04em; }
.benefit-grid p { margin: 0; color: rgba(255,255,255,.58); font-size: 14px; line-height: 1.65; }

.articles { max-width: 1320px; margin: 0 auto; padding: 130px 32px; }
.section-heading { display: grid; grid-template-columns: 1fr .45fr; gap: 60px; align-items: end; }
.section-heading > p { margin: 0 0 8px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.article-grid { margin-top: 60px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 23px; }
.article-card__image { position: relative; aspect-ratio: .82; overflow: hidden; border: 2px solid var(--purple-dark); border-radius: 25px; background: var(--pink-soft); box-shadow: 7px 7px 0 var(--purple-dark); }
.article-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.article-card:hover img { transform: scale(1.045); }
.article-card__image span { position: absolute; right: 15px; bottom: 15px; display: grid; place-content: center; width: 46px; height: 46px; border-radius: 50%; background: var(--yellow); color: var(--purple-dark); font-weight: 950; }
.article-card p { margin: 24px 0 9px; color: var(--pink); font-size: 11px; font-weight: 950; text-transform: uppercase; letter-spacing: .1em; }
.article-card h3 { max-width: 90%; margin: 0; font-size: 25px; line-height: 1.18; letter-spacing: -.045em; }
.article-card__link { display: inline-block; margin-top: 20px; border-bottom: 1px solid var(--purple-dark); font-size: 13px; font-weight: 850; }

.order { padding: 130px max(32px, calc((100vw - 1320px) / 2)); display: grid; grid-template-columns: 1fr .8fr; gap: 80px; background: var(--purple); color: white; }
.order__copy h2 { margin: 18px 0 28px; font-size: clamp(56px, 6vw, 92px); line-height: .92; letter-spacing: -.07em; }
.order__copy h2 em { color: var(--yellow); }
.order__copy > p { max-width: 610px; color: rgba(255,255,255,.7); font-size: 17px; line-height: 1.7; }
.order-types { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 9px; }
.order-types button { padding: 11px 15px; border: 1px solid rgba(255,255,255,.38); border-radius: 99px; background: transparent; color: white; font-size: 13px; font-weight: 800; cursor: pointer; }
.order-types button.active { border-color: var(--yellow); background: var(--yellow); color: var(--purple-dark); }
.order__facts { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 40px; color: rgba(255,255,255,.72); font-size: 12px; }
.order__facts b { margin-right: 6px; color: var(--yellow); }
.order-form { align-self: start; padding: 30px; border: 2px solid var(--purple-dark); border-radius: 28px; background: var(--cream); color: var(--ink); box-shadow: 11px 11px 0 var(--purple-dark); }
.order-form__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 34px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.order-form__top span { color: var(--purple); font-size: 11px; font-weight: 950; text-transform: uppercase; letter-spacing: .12em; }
.order-form__top b { display: grid; place-content: center; width: 36px; height: 36px; border-radius: 50%; background: var(--pink); color: white; }
.order-form label { display: block; margin: 0 0 8px; font-size: 12px; font-weight: 850; }
.order-form input { width: 100%; margin-bottom: 20px; padding: 15px 16px; border: 1px solid var(--line); border-radius: 14px; outline: 0; background: white; color: var(--ink); }
.order-form input:focus { border-color: var(--pink); box-shadow: 0 0 0 3px rgba(244,66,170,.13); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.form-choice { display: flex; justify-content: space-between; gap: 15px; margin: 0 0 24px; padding: 14px 16px; border-radius: 14px; background: var(--pink-soft); font-size: 12px; }
.form-choice span { color: var(--muted); }
.form-choice strong { color: var(--purple); }
.order-form small { display: block; margin: 18px 0 0; color: var(--muted); text-align: center; font-size: 10px; }

.visit { position: relative; padding: 135px 24px; overflow: hidden; background: var(--pink); color: var(--purple-dark); text-align: center; }
.visit::before, .visit::after { content: ""; position: absolute; width: 330px; height: 105px; border-radius: 99px; background: linear-gradient(180deg,#fff,#f8c7e3); opacity: .62; filter: blur(.3px); }
.visit::before { left: -90px; top: 78px; transform: rotate(-5deg); }
.visit::after { right: -110px; bottom: 70px; transform: scale(.75) rotate(7deg); }
.visit__eyebrow { font-size: 11px; font-weight: 950; letter-spacing: .13em; }
.visit__eyebrow span { font-size: 20px; }
.visit h2 { position: relative; z-index: 1; margin: 22px 0; font-size: clamp(64px, 8vw, 118px); line-height: .82; letter-spacing: -.075em; }
.visit h2 em { color: var(--yellow); text-shadow: 3px 3px 0 var(--purple-dark); }
.visit > p { position: relative; z-index: 1; font-weight: 800; }
.visit__actions { position: relative; z-index: 1; margin-top: 35px; display: flex; align-items: center; justify-content: center; gap: 28px; }
.visit__actions > a:last-child { padding-bottom: 4px; border-bottom: 1px solid var(--purple-dark); font-weight: 900; }

footer { padding: 74px max(32px, calc((100vw - 1320px) / 2)) 28px; display: grid; grid-template-columns: 1.5fr .45fr .55fr; gap: 55px; background: var(--purple-dark); color: white; }
.footer__brand img { width: 104px; }
.footer__brand p { margin: 22px 0 0; color: rgba(255,255,255,.65); font-size: 20px; line-height: 1.35; }
.footer__brand em { color: var(--yellow); font-family: Georgia, serif; }
footer > div:not(.footer__brand) { display: flex; flex-direction: column; gap: 13px; }
footer > div > span { margin-bottom: 8px; color: var(--pink); font-size: 10px; font-weight: 950; letter-spacing: .12em; }
footer > div > a { color: rgba(255,255,255,.72); font-size: 14px; }
footer > div > a:hover { color: var(--yellow); }
footer > small { grid-column: 1 / -1; margin-top: 50px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.4); font-size: 10px; }

.whatsapp-float { position: fixed; z-index: 40; right: 22px; bottom: 22px; display: flex; align-items: center; gap: 10px; padding: 8px 15px 8px 8px; border: 2px solid var(--purple-dark); border-radius: 99px; background: var(--yellow); color: var(--purple-dark); box-shadow: 5px 5px 0 var(--purple-dark); }
.whatsapp-float span { display: grid; place-content: center; width: 35px; height: 35px; border-radius: 50%; background: var(--purple); color: white; font-size: 11px; font-weight: 950; }
.whatsapp-float b { font-size: 12px; }

@media (max-width: 1050px) {
  .hero { grid-template-columns: .95fr 1.05fr; }
  .hero h1 { font-size: clamp(67px, 8.5vw, 94px); }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 42px 20px; }
  .frozen-callout { grid-template-columns: auto 1fr 1.4fr; }
  .frozen-callout > a { grid-column: 2 / -1; width: max-content; }
  .order { gap: 45px; }
}

@media (max-width: 800px) {
  html { scroll-padding-top: 92px; }
  .site-header { top: 10px; width: calc(100% - 24px); height: 72px; border-radius: 20px; }
  .brand img { width: 58px; height: 58px; }
  .menu-button { display: grid; gap: 6px; padding: 12px; background: transparent; border: 0; cursor: pointer; }
  .menu-button span { display: block; width: 25px; height: 2px; background: white; }
  .nav { position: absolute; top: 80px; right: 0; left: 0; display: grid; gap: 0; padding: 14px; background: var(--cream); color: var(--purple-dark); border: 2px solid var(--purple-dark); border-radius: 19px; box-shadow: 7px 7px 0 var(--yellow); opacity: 0; transform: translateY(-8px); pointer-events: none; transition: .2s ease; }
  .nav--open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav a { padding: 14px; }
  .nav__order { border-radius: 13px; background: var(--pink); color: white; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__copy { width: auto; margin: 0; padding: 132px 22px 60px; }
  .hero h1 { font-size: clamp(63px, 18vw, 92px); }
  .hero__lead { font-size: 16px; }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .hero__meta { gap: 28px; }
  .hero__visual { min-height: 610px; }
  .sticker--top { top: 50px; right: 8%; }
  .hero__bubble { left: 6%; bottom: 42px; }
  .hero__rating { right: 6%; bottom: 46px; }
  .hero__cloud--one { display: none; }

  .intro { grid-template-columns: 1fr; padding: 98px 22px 55px; gap: 18px; }
  .products { padding: 0 22px 95px; }
  .product-filter { overflow-x: auto; padding-bottom: 5px; }
  .product-filter button { white-space: nowrap; }
  .frozen-callout { grid-template-columns: auto 1fr; padding: 22px; }
  .frozen-callout p { grid-column: 1 / -1; }
  .frozen-callout > a { grid-column: 1 / -1; }
  .snowflake { width: 66px; height: 66px; }

  .why-us { padding: 96px 22px; }
  .why-us__title { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .benefit-grid article { border-bottom: 1px solid rgba(255,255,255,.18); }
  .benefit-grid article:nth-child(2) { border-right: 0; }
  .benefit-grid article:nth-child(3) { padding-left: 0; border-bottom: 0; }
  .benefit-grid article:nth-child(4) { border-bottom: 0; }

  .articles { padding: 96px 22px; }
  .section-heading { grid-template-columns: 1fr; gap: 25px; }
  .article-grid { grid-template-columns: 1fr; gap: 55px; }
  .article-card h3 { max-width: 100%; }
  .order { grid-template-columns: 1fr; gap: 50px; padding: 96px 22px; }
  .visit { padding: 105px 22px; }
  .visit__actions { flex-direction: column; }
  footer { grid-template-columns: 1fr 1fr; padding: 65px 22px 28px; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 520px) {
  .hero__meta { display: grid; grid-template-columns: 1fr 1fr; }
  .hero__visual { min-height: 520px; }
  .hero__photo { background-position: center 42%; }
  .sticker { width: 96px; height: 96px; font-size: 12px; }
  .hero__bubble { font-size: 14px; padding: 14px 16px; }
  .hero__rating { width: 82px; padding: 9px; }
  .hero__rating b { font-size: 21px; }
  .product-grid { grid-template-columns: 1fr; gap: 48px; }
  .product-card__image { aspect-ratio: .82; }
  .frozen-callout { display: flex; flex-direction: column; align-items: flex-start; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-grid article, .benefit-grid article + article, .benefit-grid article:nth-child(3) { padding: 25px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .benefit-grid article:last-child { border-bottom: 0; }
  .benefit-grid h3 { margin-top: 18px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .order-form { padding: 22px; }
  footer { gap: 45px 28px; }
  .whatsapp-float b { display: none; }
  .whatsapp-float { padding-right: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .loader__snack, .loader__bite, .loader__bar span, .ticker div { animation: none; }
  *, *::before, *::after { transition-duration: .001ms !important; }
}
