:root {
  --bg-yellow: #ffe44d;
  --blue: #2f78ff;
  --green: #27c07d;
  --ink: #101010;
  --paper: #ffffff;
  --soft: rgba(0, 0, 0, 0.08);
  --shadow: 0 14px 0 rgba(0, 0, 0, 0.12), 0 20px 30px rgba(0, 0, 0, 0.18);
  --stroke: 3px solid var(--ink);
  --radius: 22px;
  --radius-sm: 16px;
  --max: 1120px;
  --cloud-stroke: 2px solid rgba(0, 0, 0, 0.14);
}

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

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Fredoka", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: #f6fbff;
  overflow-x: hidden;
}

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

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

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

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

.skip {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 10px 14px;
  background: var(--paper);
  border: var(--stroke);
  border-radius: 999px;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

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

/* Topbar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 2px solid rgba(0, 0, 0, 0.08);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Nunito", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
}

.brand__mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: var(--stroke);
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff, #e7f7ff);
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.12);
  transform: rotate(-6deg);
}

.nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  padding: 8px 12px;
  border-radius: 999px;
  border: 2px solid rgba(0, 0, 0, 0.14);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.1);
  transition: transform 140ms ease, box-shadow 140ms ease;
  font-weight: 700;
}

.nav a:hover {
  transform: translateY(-2px) rotate(-1deg);
  box-shadow: 0 10px 0 rgba(0, 0, 0, 0.12);
}

/* Hero */
.hero {
  position: relative;
  background: var(--bg-yellow);
  border-bottom: 6px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px;
  padding: 54px 0 44px;
  position: relative;
  z-index: 2;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: var(--stroke);
  background: var(--paper);
  box-shadow: 0 10px 0 rgba(0, 0, 0, 0.12);
  transform: rotate(-2deg);
  font-weight: 700;
}

.hero__title {
  font-size: clamp(40px, 5vw, 74px);
  margin: 14px 0 8px;
  line-height: 0.95;
  letter-spacing: -0.5px;
  text-shadow: 0 3px 0 rgba(255, 255, 255, 0.65);
}

.hero__sub {
  font-size: clamp(16px, 2vw, 20px);
  max-width: 38ch;
  margin: 0 0 16px;
  font-weight: 600;
}

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 18px;
}

.btn {
  border: var(--stroke);
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 800;
  cursor: pointer;
  background: var(--paper);
  box-shadow: 0 10px 0 rgba(0, 0, 0, 0.14);
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.btn:active {
  transform: translateY(3px);
  box-shadow: 0 7px 0 rgba(0, 0, 0, 0.14);
}

.btn--primary {
  background: linear-gradient(180deg, #ffffff, #d9ffef);
  border-color: var(--ink);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.85);
}

.btn:hover {
  transform: translateY(-2px) rotate(-1deg);
  box-shadow: 0 14px 0 rgba(0, 0, 0, 0.16);
}

.hero__mini {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 6px;
}

.mini-badge {
  background: rgba(255, 255, 255, 0.85);
  border: 2px dashed rgba(0, 0, 0, 0.35);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
  transform: rotate(-2deg);
}

.hero__stage {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
}

.hero__stage::before {
  content: "";
  position: absolute;
  inset: 14% 6% 12% 6%;
  background:
    radial-gradient(circle at 30% 35%, rgba(255, 255, 255, 0.95), transparent 55%),
    radial-gradient(circle at 70% 45%, rgba(255, 255, 255, 0.9), transparent 58%),
    radial-gradient(circle at 45% 70%, rgba(231, 247, 255, 0.6), transparent 62%);
  filter: blur(10px);
  border-radius: 999px;
  opacity: 0.9;
  z-index: 0;
}

.hero__stage > * {
  position: relative;
  z-index: 1;
}

.product {
  position: relative;
  width: min(440px, 92%);
  border-radius: 28px;
  border: var(--stroke);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: rotate(2deg);
}

.product__img {
  width: 100%;
  height: auto;
  transform: translateZ(0);
}

.product--trio {
  min-height: 520px;
  display: block;
  background:
    radial-gradient(circle at 50% 15%, rgba(255, 255, 255, 0.82), transparent 55%),
    rgba(255, 255, 255, 0.92);
}

.product--trio .product__img {
  position: absolute;
  width: 46%;
  max-width: 230px;
  filter: drop-shadow(0 18px 18px rgba(0, 0, 0, 0.2));
}

.product__img--left {
  left: 6%;
  bottom: 4%;
  transform: rotate(-9deg);
}

.product__img--center {
  left: 50%;
  bottom: 2%;
  transform: translateX(-50%) rotate(-1deg) scale(1.08);
  z-index: 2;
}

.product__img--right {
  right: 6%;
  bottom: 4%;
  transform: rotate(9deg);
}

.product::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.55), transparent 45%);
  pointer-events: none;
}

.sticker {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: var(--stroke);
  background: var(--paper);
  border-radius: 999px;
  box-shadow: 0 10px 0 rgba(0, 0, 0, 0.12);
  font-weight: 900;
  transform: translate(var(--x), var(--y)) rotate(var(--r));
}

.sticker__icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  background: linear-gradient(180deg, #ffffff, #f0faff);
}

.egg-sticker {
  top: 12%;
  left: 6%;
}

.fruit-sticker {
  top: 18%;
  right: 8%;
}

.cloud-sticker {
  bottom: 14%;
  left: 14%;
}

/* Clouds */
.cloud {
  position: absolute;
  width: 190px;
  height: 72px;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.55) 48%, transparent 72%),
    linear-gradient(180deg, #ffffff 0%, #f8fdff 44%, #ecf8ff 100%);
  border: var(--cloud-stroke);
  border-radius: 999px;
  box-shadow: 0 16px 30px rgba(48, 84, 112, 0.16);
  filter: saturate(1.05) blur(0.2px);
}

.cloud::before,
.cloud::after {
  content: "";
  position: absolute;
  background:
    radial-gradient(circle at 40% 26%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.5) 48%, transparent 72%),
    linear-gradient(180deg, #ffffff 0%, #f8fdff 45%, #ecf8ff 100%);
  border: var(--cloud-stroke);
  border-radius: 999px;
}

.cloud::before {
  width: 92px;
  height: 92px;
  left: 18px;
  top: -44px;
}

.cloud::after {
  width: 116px;
  height: 116px;
  left: 78px;
  top: -70px;
}

.cloud::after {
  box-shadow: inset 0 -10px 0 rgba(255, 255, 255, 0.58);
}

.cloud {
  box-shadow:
    inset 0 14px 22px rgba(255, 255, 255, 0.94),
    inset 0 -12px 22px rgba(35, 114, 152, 0.07),
    0 16px 26px rgba(35, 114, 152, 0.18);
}

.cloud-sticker {
  backdrop-filter: blur(1px);
}

.cloud--1 {
  top: 44px;
  left: 6%;
  transform: rotate(-4deg);
  opacity: 0.95;
}

.cloud--2 {
  top: 100px;
  right: 5%;
  width: 240px;
  transform: rotate(3deg);
  opacity: 0.95;
}

.cloud--3 {
  bottom: 28px;
  left: 16%;
  width: 260px;
  transform: rotate(2deg);
  opacity: 0.95;
}

.sparkle {
  position: absolute;
  width: 18px;
  height: 18px;
  background: white;
  border: 2px solid rgba(0, 0, 0, 0.2);
  transform: rotate(45deg);
  box-shadow: 0 10px 0 rgba(0, 0, 0, 0.08);
  opacity: 0.9;
  animation: twinkle 1.6s ease-in-out infinite;
}

.sparkle--1 {
  top: 58px;
  left: 42%;
}
.sparkle--2 {
  top: 160px;
  left: 10%;
  animation-delay: 0.3s;
}
.sparkle--3 {
  bottom: 90px;
  right: 12%;
  animation-delay: 0.55s;
}

@keyframes twinkle {
  0%,
  100% {
    transform: rotate(45deg) scale(0.9);
    opacity: 0.75;
  }
  50% {
    transform: rotate(45deg) scale(1.05);
    opacity: 1;
  }
}

/* Sections */
.section {
  padding: 64px 0;
  background: transparent;
}

.section__head {
  margin-bottom: 18px;
}

.section__title {
  font-size: clamp(28px, 3vw, 44px);
  margin: 0 0 8px;
  letter-spacing: -0.3px;
}

.section__sub {
  margin: 0;
  font-weight: 650;
  opacity: 0.9;
}

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

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

.product-tile {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 10px;
}

.product-tile__buy {
  width: 100%;
  text-align: center;
  transform: rotate(-1deg);
}

.product-tile__buy:hover {
  transform: translateY(-2px) rotate(-2deg);
}

.card {
  background: var(--paper);
  border: var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 18px 16px;
  position: relative;
  overflow: hidden;
  transform: rotate(-0.6deg);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-tile:nth-child(1) .card {
  background: linear-gradient(180deg, #fffef5, #fff4c9 92%);
}

.product-tile:nth-child(2) .card {
  background: linear-gradient(180deg, #f1fcff, #dff4ff 92%);
}

.product-tile:nth-child(3) .card {
  background: linear-gradient(180deg, #f4fff1, #e4f9da 92%);
}

.card:hover {
  transform: translateY(-4px) rotate(1.2deg) scale(1.02);
  box-shadow: 0 16px 0 rgba(0, 0, 0, 0.14), 0 26px 34px rgba(0, 0, 0, 0.2);
}

.card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border: 2px solid rgba(0, 0, 0, 0.22);
  border-radius: 999px;
  font-weight: 900;
  transform: rotate(-2deg);
  background: #e7f7ff;
}

.tag--blue {
  background: #e7f7ff;
}
.tag--green {
  background: #eafff4;
}
.tag--yellow {
  background: #fff6bf;
}

.wiggle {
  font-size: 28px;
  display: inline-block;
  transform-origin: 50% 100%;
  animation: wiggle 2.2s ease-in-out infinite;
}

@keyframes wiggle {
  0%,
  100% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(6deg);
  }
}

.card__title {
  margin: 10px 0 8px;
  font-size: 22px;
}

.card__meta {
  margin: 0 0 8px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.card__meta span {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 2px solid rgba(0, 0, 0, 0.16);
  background: rgba(255, 255, 255, 0.92);
  font-weight: 900;
  font-size: 14px;
  line-height: 1;
}

.card__desc {
  margin: 0 0 14px;
  font-weight: 600;
  opacity: 0.9;
  line-height: 1.35;
}

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

.buy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 2px dashed rgba(0, 0, 0, 0.35);
  background: #ffffff;
  font-weight: 900;
  transform: rotate(-2deg);
}

/* Combo */
.section--combo {
  position: relative;
  background: linear-gradient(180deg, #d6f8ff, #fffef1);
  border-top: 6px solid rgba(0, 0, 0, 0.08);
  border-bottom: 6px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.combo {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 22px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  font-weight: 650;
}

.list a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.bullet {
  display: inline-block;
  margin-right: 8px;
  transform: rotate(-6deg);
}

.combo__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.reaction-bar {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.reaction-btn {
  width: 44px;
  height: 44px;
  border: var(--stroke);
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff, #eff8ff);
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.12);
  font-size: 22px;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.reaction-btn:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 11px 0 rgba(0, 0, 0, 0.14);
}

.reaction-btn:active {
  transform: translateY(2px) scale(0.98);
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.12);
}

.reaction-summary {
  margin-top: 10px;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: var(--stroke);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.12);
  font-weight: 800;
}

.reaction-summary__total strong {
  font-size: 20px;
  color: #2f78ff;
}

.badge {
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.9), transparent 42%),
    linear-gradient(160deg, #ffd9f3, #f8c7ef 55%, #f3b9ea);
  border: var(--stroke);
  box-shadow: 0 14px 0 rgba(0, 0, 0, 0.13), 0 24px 34px rgba(0, 0, 0, 0.2);
  border-radius: 24px;
  padding: 18px 20px;
  position: relative;
  transform: rotate(-2deg);
  width: min(380px, 100%);
}

.badge--burst {
  clip-path: none;
}

.badge::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 2px dashed rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  pointer-events: none;
}

.badge__cap {
  font-weight: 1000;
  letter-spacing: 1px;
  background: rgba(255, 255, 255, 0.85);
  border: 2px solid rgba(0, 0, 0, 0.2);
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  transform: rotate(2deg);
}

.badge__price {
  margin-top: 8px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.badge__num {
  font-size: clamp(42px, 4.2vw, 64px);
  font-weight: 1000;
  letter-spacing: -1px;
  line-height: 0.95;
}

.badge__unit {
  font-weight: 900;
  font-size: 18px;
  opacity: 0.9;
}

.badge__note {
  margin-top: 8px;
  font-weight: 750;
  opacity: 0.95;
}

.combo__mini {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.mini-card {
  background: linear-gradient(180deg, #ffffff, #f2fbff);
  border: var(--stroke);
  border-radius: 18px;
  box-shadow: 0 12px 0 rgba(0, 0, 0, 0.12), 0 18px 28px rgba(0, 0, 0, 0.16);
  padding: 12px 14px;
  display: flex;
  gap: 10px;
  align-items: center;
  transform: rotate(1deg);
}

.combo__mini .mini-card:nth-child(2) {
  background: linear-gradient(180deg, #ffffff, #effdff);
}

.combo__mini .mini-card:nth-child(3) {
  background: linear-gradient(180deg, #ffffff, #eef4ff);
}

.mini-card__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  background: linear-gradient(180deg, #ffffff, #e7f7ff);
  font-size: 0;
  font-weight: 900;
  position: relative;
}

.mini-card__icon::before {
  content: "";
  width: 22px;
  height: 22px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.mini-card__icon--ig {
  background: linear-gradient(180deg, #ffd6ee, #e6e9ff);
}

.mini-card__icon--ig::before {
  background-image: url("https://cdn.simpleicons.org/instagram/8f2aa8");
}

.mini-card__icon--tt {
  background: linear-gradient(180deg, #cffaf7, #e8eeff);
}

.mini-card__icon--tt::before {
  background-image: url("https://cdn.simpleicons.org/tiktok/111111");
}

.mini-card__icon--fb {
  background: linear-gradient(180deg, #dbe9ff, #eaf4ff);
}

.mini-card__icon--fb::before {
  background-image: url("https://cdn.simpleicons.org/facebook/1877F2");
}

.mini-card__text strong {
  display: block;
  font-size: 16px;
}

.mini-card__text span {
  display: block;
  opacity: 0.85;
  font-weight: 650;
}

.mini-card__text a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Story */
.section--story {
  background: linear-gradient(180deg, #fffef1, #e8f8ff);
}

.story__paper {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  border: var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 18px 10px;
  overflow: hidden;
}

.story__clouds {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.85;
}

.cloud--paper-1 {
  top: 18px;
  left: 12px;
  width: 260px;
  transform: rotate(-2deg);
}

.cloud--paper-2 {
  bottom: 10px;
  right: 14px;
  width: 300px;
  transform: rotate(2deg);
}

/* Product cards (flavors) */
.flavor-card {
  padding-top: 14px;
}

.flavor-card__imgwrap {
  border: 2px solid rgba(0, 0, 0, 0.16);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(231, 247, 255, 0.55));
  box-shadow: 0 10px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 12px;
  transform: rotate(0.8deg);
}

.flavor-card__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 10px;
  filter: drop-shadow(0 16px 18px rgba(0, 0, 0, 0.16));
  transform: translateZ(0);
}

.story__line {
  margin: 0 0 12px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(8px);
}

.story__line.is-shown {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 420ms ease, transform 420ms ease;
}

/* Stats + reviews */
.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0 26px;
}

.stat {
  background: linear-gradient(180deg, #ffffff, #f5fbff);
  border: var(--stroke);
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 0 rgba(0, 0, 0, 0.12), 0 18px 26px rgba(0, 0, 0, 0.14);
  padding: 14px 14px 12px;
  transform: rotate(-1deg);
}

.stats .stat:nth-child(2) {
  background: linear-gradient(180deg, #ffffff, #eefcff);
}

.stats .stat:nth-child(3) {
  background: linear-gradient(180deg, #ffffff, #effff3);
}

.stat__num {
  font-size: 36px;
  font-weight: 1000;
  letter-spacing: -0.6px;
}

.stat__unit {
  font-size: 16px;
  margin-left: 4px;
  font-weight: 900;
  opacity: 0.85;
}

.stat__label {
  margin-top: 4px;
  font-weight: 800;
  opacity: 0.9;
}

.reviews__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.reviews__title {
  margin: 0;
  font-size: 22px;
}

.reviews__sub {
  margin: 0;
  font-weight: 650;
  opacity: 0.9;
}

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

.review {
  background: linear-gradient(180deg, #ffffff, #f8fdff);
  border: var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 14px 14px 12px;
  position: relative;
  overflow: hidden;
  transform: rotate(0.6deg);
}

.reviews__grid .review:nth-child(2n) {
  background: linear-gradient(180deg, #ffffff, #f2fbff);
}

.review::before {
  content: "";
  position: absolute;
  inset: -40px -40px auto auto;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at 40% 40%, rgba(47, 120, 255, 0.25), transparent 60%);
  transform: rotate(18deg);
}

.review__top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: start;
}

.review__name {
  font-weight: 1000;
}

.review__stars {
  font-weight: 1000;
  letter-spacing: 1px;
  color: #f5b301;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.12);
}

.review__text {
  margin: 8px 0 0;
  font-weight: 650;
  opacity: 0.9;
}

.review__time {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 800;
  opacity: 0.7;
}

/* Form */
.section--form {
  background: linear-gradient(180deg, #e8f8ff, #fffef1);
  border-top: 6px solid rgba(0, 0, 0, 0.08);
}

.form-wrap {
  background: rgba(255, 255, 255, 0.85);
  border: var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}

.form {
  display: grid;
  gap: 14px;
  margin-top: 12px;
}

.field__label {
  display: block;
  margin-bottom: 8px;
  font-weight: 900;
}

.input,
.textarea {
  width: 100%;
  border: var(--stroke);
  border-radius: 18px;
  padding: 12px 12px;
  font: inherit;
  background: var(--paper);
  box-shadow: 0 10px 0 rgba(0, 0, 0, 0.1);
  outline: none;
}

.input:focus,
.textarea:focus {
  box-shadow: 0 10px 0 rgba(0, 0, 0, 0.1), 0 0 0 6px rgba(47, 120, 255, 0.2);
}

.stars {
  display: inline-flex;
  gap: 6px;
  padding: 10px 12px;
  border-radius: 18px;
  border: var(--stroke);
  background: var(--paper);
  box-shadow: 0 10px 0 rgba(0, 0, 0, 0.1);
  flex-direction: row-reverse;
}

.star {
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.25);
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.08);
  transition: transform 120ms ease;
  user-select: none;
}

.star:hover {
  transform: translateY(-1px) rotate(-3deg);
}

/* Highlight stars by sibling selection (row-reverse trick) */
.stars input:checked ~ label {
  color: #f5b301;
}

.stars__hint {
  margin-top: 8px;
  font-weight: 800;
  opacity: 0.85;
}

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

/* Footer */
.footer {
  padding: 28px 0 44px;
  background: #f6fbff;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.footer__note {
  margin: 8px 0 0;
  font-weight: 650;
  opacity: 0.8;
}

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

.footer__links a {
  padding: 10px 12px;
  border-radius: 999px;
  border: 2px solid rgba(0, 0, 0, 0.14);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.1);
  font-weight: 800;
}

.brand--footer .brand__mark {
  transform: rotate(6deg);
}

/* Animations */
.float {
  animation: floating 6.5s ease-in-out infinite;
}
.float-slow {
  animation: floating 10s ease-in-out infinite;
}

@keyframes floating {
  0%,
  100% {
    transform: translateY(0) rotate(var(--r, 0deg));
  }
  50% {
    transform: translateY(-12px) rotate(var(--r, 0deg));
  }
}

.bounce {
  animation: bounce 2.8s ease-in-out infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translate(var(--x, 0), var(--y, 0)) rotate(var(--r, 0deg));
  }
  50% {
    transform: translate(var(--x, 0), calc(var(--y, 0) - 8px)) rotate(calc(var(--r, 0deg) + 1deg));
  }
}

.product--tilt {
  animation: productTilt 5.2s ease-in-out infinite;
  transform-origin: 50% 55%;
}

/* Cute egg burst on image click */
.egg-pop {
  position: fixed;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  background: radial-gradient(circle at 30% 25%, #fff9cf, #ffe370);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.18);
  pointer-events: none;
  z-index: 1200;
  display: grid;
  place-items: center;
  font-size: 22px;
  will-change: transform, opacity;
}

.egg-pop::after {
  content: "";
  width: 24px;
  height: 24px;
  background: url("https://cdn.jsdelivr.net/gh/twitter/twemoji@14.0.2/assets/svg/1f95a.svg")
    center / contain no-repeat;
}

@keyframes productTilt {
  0%,
  100% {
    transform: rotate(2deg);
  }
  50% {
    transform: rotate(-1.3deg);
  }
}

.pulse {
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: rotate(-3deg) scale(1);
  }
  50% {
    transform: rotate(-3deg) scale(1.04);
  }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(12px) rotate(-0.4deg);
  transition: opacity 520ms ease, transform 520ms ease;
  will-change: opacity, transform;
}

.reveal.is-in {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}

/* Confetti canvas */
.confetti {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 220ms ease;
}

.confetti.is-on {
  opacity: 1;
}

/* Responsive */
@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .hero__stage {
    min-height: 360px;
  }
  .product--trio {
    min-height: 460px;
  }
  .product--trio .product__img {
    width: 48%;
    max-width: 200px;
  }
  .combo {
    grid-template-columns: 1fr;
  }
  .grid--3 {
    grid-template-columns: 1fr;
  }
  .reviews__grid {
    grid-template-columns: 1fr;
  }
  .stats {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

