:root {
  --blue: #2c6bf2;
  --blue-dark: #1b4fc4;
  --sky: #8ed4f2;
  --sky-soft: #c3e5f8;
  --sky-pale: #e4f3fc;
  --pink: #f2437e;
  --yellow: #ffc42e;
  --green: #19a85b;
  --orange: #f4622a;
  --cream: #fff6e5;
  --ink: #0f1a2b;
  --ink-soft: #52607a;
  --white: #ffffff;
  --line: #dfe6f2;
  --radius-xl: 40px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --shell: 1240px;
  --shadow-card: 0 18px 40px rgba(15, 26, 43, 0.1);
  --shadow-lift: 0 26px 56px rgba(15, 26, 43, 0.18);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --font-head: 'Fredoka', 'Trebuchet MS', sans-serif;
  --font-body: 'Nunito', 'Segoe UI', system-ui, sans-serif;
  --font-accent: 'Instrument Serif', Georgia, serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

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

a { color: inherit; }

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; }

em {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  color: var(--blue);
}

.shell {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 20px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--ink);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 15px;
  border: none;
  border-radius: 999px;
  padding: 14px 26px;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.22);
  transform: scale(0);
  border-radius: 999px;
  transition: transform 0.4s var(--ease);
}
.btn:hover::after { transform: scale(1.4); }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.btn > * { position: relative; z-index: 1; }

.btn--dark { background: var(--ink); color: var(--white); }
.btn--blue { background: var(--blue); color: var(--white); }
.btn--ghost { background: rgba(255, 255, 255, 0.65); color: var(--ink); }
.btn--ghost-light { background: transparent; color: var(--white); box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.7); }
.btn--sm { padding: 11px 20px; font-size: 14px; }
.btn--full { width: 100%; }
.btn__dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--yellow);
}

.kicker {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(28px, 4.4vw, 46px);
}

.section-head {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 44px;
}
.section-head p { color: var(--ink-soft); }

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  padding: 14px 0;
  transition: padding 0.3s var(--ease), background 0.3s var(--ease);
}
.site-header.is-stuck {
  padding: 8px 0;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 24px rgba(15, 26, 43, 0.08);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--white);
  border-radius: 999px;
  padding: 8px 12px 8px 24px;
  box-shadow: 0 8px 26px rgba(15, 26, 43, 0.1);
  position: relative;
}

.navbar__group {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 26px;
  flex: 1;
}
.navbar__group--right { justify-content: flex-end; }
.navbar__group a {
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  position: relative;
  padding-bottom: 3px;
}
.navbar__group a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.navbar__group a:hover::after { transform: scaleX(1); }

.brandmark {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 0.92;
  font-family: var(--font-head);
  font-weight: 700;
  padding: 0 8px;
  flex-shrink: 0;
}
.brandmark__top {
  font-size: 21px;
  color: var(--blue);
  letter-spacing: -0.02em;
}
.brandmark__bottom {
  font-size: 15px;
  color: var(--pink);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.navbar__tools {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-button {
  position: relative;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: var(--sky-pale);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}
.cart-button:hover { background: var(--sky-soft); transform: translateY(-2px); }
.cart-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cart-button__count {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 22px;
  height: 22px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  display: grid;
  place-items: center;
}
.cart-button__count.is-active { background: var(--pink); }
.cart-button__count.is-bumped { animation: bump 0.4s var(--ease); }
@keyframes bump {
  0% { transform: scale(1); }
  45% { transform: scale(1.4); }
  100% { transform: scale(1); }
}

.burger {
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: var(--ink);
  cursor: pointer;
  display: grid;
  place-content: center;
  gap: 5px;
}
.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  margin-top: 10px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 14px 20px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}
.mobile-menu a {
  padding: 12px 0;
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid var(--line);
}
.mobile-menu a:last-child { border-bottom: none; }

.hero { padding: 10px 0 60px; }

.hero__panel {
  position: relative;
  background: linear-gradient(180deg, var(--sky) 0%, #a8ddf5 100%);
  border-radius: var(--radius-xl);
  padding: clamp(48px, 7vw, 92px) clamp(22px, 5vw, 80px) clamp(56px, 7vw, 96px);
  text-align: center;
  overflow: hidden;
}
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  pointer-events: none;
}
.hero__blob--a {
  width: 340px; height: 340px;
  background: var(--white);
  top: -90px; left: -60px;
  animation: drift 18s ease-in-out infinite alternate;
}
.hero__blob--b {
  width: 300px; height: 300px;
  background: #ffe9a8;
  bottom: -110px; right: -40px;
  animation: drift 22s ease-in-out infinite alternate-reverse;
}
@keyframes drift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(40px, 30px, 0); }
}

.hero__eyebrow {
  position: relative;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--ink);
  opacity: 0.75;
}
.hero__title {
  position: relative;
  font-size: clamp(34px, 6.4vw, 66px);
  font-weight: 600;
  color: var(--white);
  text-shadow: 0 6px 18px rgba(15, 26, 43, 0.18);
  margin-bottom: 20px;
}
.hero__title em { color: var(--cream); }
.hero__text {
  position: relative;
  max-width: 560px;
  margin: 0 auto 28px;
  color: #12405c;
  font-weight: 600;
}
.hero__actions {
  position: relative;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__arrow {
  position: absolute;
  width: 110px;
  height: 74px;
  fill: none;
  stroke: var(--white);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.85;
  display: none;
}
.hero__arrow--left { left: 6%; bottom: 20%; }
.hero__arrow--right { right: 6%; bottom: 20%; }

.hero__scroll {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--blue);
  display: grid;
  place-items: center;
  margin: -26px auto 0;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-card);
  animation: bob 2.6s ease-in-out infinite;
}
.hero__scroll svg {
  width: 22px; height: 22px;
  fill: none; stroke: var(--white);
  stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.about { padding: 60px 0 70px; }
.about__head {
  display: grid;
  gap: 20px;
  margin-bottom: 40px;
}
.about__lead { color: var(--ink-soft); margin: 0; }

.about__cards {
  display: grid;
  gap: 18px;
}
.pillar {
  border-radius: var(--radius-lg);
  padding: 28px 26px 30px;
  color: var(--white);
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.pillar::before {
  content: '';
  position: absolute;
  width: 190px; height: 190px;
  border-radius: 50%;
  border: 22px solid rgba(255, 255, 255, 0.22);
  top: -60px; right: -50px;
}
.pillar__icon {
  position: absolute;
  top: 24px; left: 26px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 22px;
}
.pillar h3 { font-size: 24px; margin-bottom: 8px; }
.pillar p { margin: 0; font-size: 15px; opacity: 0.94; }
.pillar--blue { background: var(--blue); }
.pillar--pink { background: var(--pink); }
.pillar--yellow { background: var(--yellow); color: var(--ink); }
.pillar--yellow .pillar__icon { background: var(--ink); color: var(--yellow); }

.why { padding: 20px 0 80px; }
.why__grid { display: grid; gap: 40px; align-items: center; }
.why__text p { color: var(--ink-soft); margin-bottom: 24px; }
.why__text .section-title { margin-bottom: 18px; }

.why__media { position: relative; }
.why__media img {
  border-radius: var(--radius-lg);
  width: 100%;
  box-shadow: var(--shadow-card);
}
.chip {
  position: absolute;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  color: var(--white);
  box-shadow: var(--shadow-card);
  white-space: nowrap;
}
.chip--blue { background: var(--blue); top: 10%; left: -6px; }
.chip--pink { background: var(--pink); top: 46%; right: -6px; }
.chip--green { background: var(--green); bottom: 10%; left: 12%; }

.checker {
  height: 54px;
  background-image:
    linear-gradient(45deg, var(--sky-soft) 25%, transparent 25%, transparent 75%, var(--sky-soft) 75%),
    linear-gradient(45deg, var(--sky-soft) 25%, transparent 25%, transparent 75%, var(--sky-soft) 75%);
  background-size: 36px 36px;
  background-position: 0 0, 18px 18px;
  background-color: var(--white);
}

.catalogue {
  padding: 60px 0 80px;
  background: linear-gradient(180deg, var(--sky-pale) 0%, var(--sky-soft) 100%);
}

.product-grid {
  display: grid;
  gap: 22px;
}

.product {
  border-radius: var(--radius-lg);
  padding: 16px;
  position: relative;
  color: var(--white);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.product:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.product--blue { background: var(--blue); }
.product--pink { background: var(--pink); }
.product--yellow { background: var(--yellow); color: var(--ink); }
.product--green { background: var(--green); }
.product--orange { background: var(--orange); }

.product__media {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  aspect-ratio: 1 / 1;
}
.product__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.product:hover .product__media img { transform: scale(1.06); }

.product__price {
  position: absolute;
  top: 28px;
  right: 28px;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 17px;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-card);
}

.product__body {
  padding: 18px 8px 6px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product__body h3 { font-size: 21px; margin-bottom: 8px; }
.product__body > p { font-size: 14px; opacity: 0.95; margin-bottom: 14px; }

.spec {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  font-size: 12.5px;
  line-height: 1.45;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}
.product--yellow .spec { border-top-color: rgba(15, 26, 43, 0.2); }
.spec li {
  display: flex;
  gap: 8px;
  justify-content: space-between;
  padding: 4px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.product--yellow .spec li { border-bottom-color: rgba(15, 26, 43, 0.12); }
.spec span {
  font-weight: 800;
  opacity: 0.8;
  flex-shrink: 0;
}
.spec li { text-align: right; }
.spec span { text-align: left; }

.warn {
  font-size: 12px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.92);
  color: #8a2214;
  border-radius: var(--radius-sm);
  padding: 9px 12px;
  margin: 0 0 14px;
}

.btn--add {
  margin-top: auto;
  background: var(--white);
  color: var(--ink);
}
.product--yellow .btn--add { background: var(--ink); color: var(--white); }

.ages { padding: 70px 0 80px; background: var(--sky-soft); }
.age-grid { display: grid; gap: 18px; }
.age-card {
  border-radius: var(--radius-lg);
  padding: 14px 14px 22px;
  text-decoration: none;
  color: var(--white);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.age-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.age-card--pink { background: var(--pink); }
.age-card--yellow { background: var(--yellow); color: var(--ink); }
.age-card--green { background: var(--green); }
.age-card--blue { background: var(--blue); }
.age-card__media {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--white);
  margin-bottom: 16px;
}
.age-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.age-card:hover .age-card__media img { transform: scale(1.06); }
.age-card h3 { font-size: 22px; padding: 0 8px; margin-bottom: 6px; }
.age-card p { font-size: 14px; padding: 0 8px; margin: 0; opacity: 0.95; }

.types { padding: 70px 0 80px; }
.type-grid { display: grid; gap: 18px; }
.type-card { margin: 0; }
.type-card img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 2 / 3;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.type-card { overflow: hidden; border-radius: var(--radius-lg); }
.type-card:hover img { transform: scale(1.05); }
.type-card figcaption {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 8px 4px;
}
.type-card strong { font-family: var(--font-head); font-weight: 600; font-size: 19px; }
.type-card span { font-size: 14px; color: var(--ink-soft); }

.gifting { padding: 40px 0 80px; }
.gifting__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 28px;
}
.tag {
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  color: var(--white);
}
.tag--yellow { background: var(--yellow); color: var(--ink); }
.tag--blue { background: var(--blue); }
.tag--pink { background: var(--pink); }
.tag--green { background: var(--green); }
.tag--orange { background: var(--orange); }

.gifting__media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  margin-bottom: 34px;
}
.gifting__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 26, 43, 0) 55%, rgba(15, 26, 43, 0.35) 100%);
}
.gifting__media img { width: 100%; }

.gifting__facts { display: grid; gap: 16px; }
.fact {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
}
.fact strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 30px;
  color: var(--blue);
  margin-bottom: 6px;
}
.fact span { font-size: 14px; color: var(--ink-soft); }

.reviews { padding: 70px 0 80px; background: var(--cream); }
.review-grid { display: grid; gap: 18px; }
.review {
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.review:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.review h3 { font-size: 19px; margin-bottom: 10px; }
.review p { font-size: 14.5px; margin-bottom: 16px; }
.review footer { display: flex; flex-direction: column; gap: 2px; }
.review__name { font-weight: 800; font-size: 14px; }
.review__meta { font-size: 13px; opacity: 0.75; }
.review__mark {
  display: block;
  font-family: var(--font-accent);
  font-size: 64px;
  line-height: 0.6;
  color: var(--pink);
  margin-bottom: 18px;
}
.review__text { font-family: var(--font-head); font-size: 22px; line-height: 1.25; }
.review__emoji { font-size: 30px; display: block; margin-bottom: 10px; }
.review--cream { background: var(--white); }
.review--yellow { background: var(--yellow); color: var(--ink); }
.review--orange { background: var(--orange); color: var(--white); }
.review--green { background: var(--green); color: var(--white); }
.review--blue { background: var(--blue); color: var(--white); }
.review--pink { background: var(--pink); color: var(--white); }
.review--pink .review__mark { color: var(--yellow); }

.cta {
  background: var(--blue);
  color: var(--white);
  text-align: center;
  padding: 60px 0;
}
.cta__title {
  font-size: clamp(24px, 4.4vw, 42px);
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}
.cta__text { max-width: 520px; margin: 0 auto 24px; opacity: 0.92; }
.cta__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.site-footer {
  background: var(--sky-pale);
  padding: 56px 0 24px;
}
.footer__grid { display: grid; gap: 34px; }
.brandmark--footer { align-items: flex-start; margin-bottom: 16px; }
.footer__brand p { font-size: 14px; color: var(--ink-soft); }
.footer__legal { font-size: 13px; }
.footer__col h3 { font-size: 17px; margin-bottom: 14px; }
.footer__col ul { list-style: none; margin: 0 0 16px; padding: 0; display: grid; gap: 9px; }
.footer__col a { text-decoration: none; font-size: 14px; }
.footer__col a:hover { text-decoration: underline; }
.footer__col li { font-size: 14px; word-break: break-word; }

.footer__bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  margin-top: 34px;
  padding-top: 18px;
  font-size: 13px;
  color: var(--ink-soft);
}
.footer__bar p { margin: 0; }

.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 26, 43, 0.5);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  z-index: 100;
}
.cart-backdrop.is-open { opacity: 1; }

.cart {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(430px, 100%);
  background: var(--white);
  z-index: 110;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  box-shadow: -20px 0 50px rgba(15, 26, 43, 0.2);
}
.cart.is-open { transform: none; }

.cart__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 14px;
  border-bottom: 1px solid var(--line);
}
.cart__head h2 { font-size: 22px; }
.cart__close {
  width: 40px; height: 40px;
  border: none; border-radius: 50%;
  background: var(--sky-pale);
  cursor: pointer;
  display: grid; place-items: center;
}
.cart__close svg { width: 18px; height: 18px; fill: none; stroke: var(--ink); stroke-width: 2; stroke-linecap: round; }

.cart__body { flex: 1; overflow-y: auto; padding: 18px 20px; }
.cart__empty { color: var(--ink-soft); font-size: 15px; }
.cart__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }

.cart-line {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 14px;
}
.cart-line__info { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.cart-line__name { font-weight: 800; font-size: 15px; }
.cart-line__price { font-weight: 800; white-space: nowrap; }
.cart-line__controls { display: flex; align-items: center; gap: 10px; }
.qty {
  width: 32px; height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  font-size: 17px;
  line-height: 1;
}
.qty:hover { background: var(--sky-pale); }
.cart-line__qty { font-weight: 800; min-width: 20px; text-align: center; }
.cart-line__remove {
  margin-left: auto;
  border: none;
  background: none;
  color: var(--pink);
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  font-family: var(--font-body);
}
.cart-line__remove:hover { text-decoration: underline; }

.cart__foot { padding: 16px 20px 22px; border-top: 1px solid var(--line); }
.cart__total { display: flex; justify-content: space-between; margin-bottom: 14px; font-size: 17px; }
.cart__total strong { font-family: var(--font-head); font-size: 22px; }

.checkout, .confirm { padding: 20px; overflow-y: auto; flex: 1; }
.checkout h3, .confirm h3 { font-size: 21px; margin-bottom: 16px; }

.field { margin-bottom: 14px; }
.field label { display: block; font-weight: 800; font-size: 13.5px; margin-bottom: 6px; }
.field__opt { font-weight: 600; color: var(--ink-soft); }
.field input, .field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--white);
  color: var(--ink);
}
.field input:focus, .field textarea:focus { border-color: var(--blue); outline-offset: 1px; }
.field input.is-invalid, .field textarea.is-invalid { border-color: var(--pink); }
.field__error { color: #c31f52; font-size: 12.5px; font-weight: 700; margin: 5px 0 0; }
.field__error:empty { display: none; }
.field-row { display: grid; gap: 14px; }

.checkout__privacy { font-size: 12.5px; color: var(--ink-soft); }
.checkout__total {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  margin-bottom: 12px;
  font-size: 16px;
}
.checkout__total strong { font-family: var(--font-head); font-size: 21px; }
.checkout .btn--ghost { margin-top: 10px; background: var(--sky-pale); }

.confirm { text-align: center; }
.confirm__badge {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: grid; place-items: center;
  font-size: 30px;
  margin: 10px auto 18px;
}
.confirm__number, .confirm__sum { font-size: 16px; margin-bottom: 6px; }
.confirm__number strong, .confirm__sum strong { font-family: var(--font-head); }
.confirm p { color: var(--ink-soft); font-size: 14.5px; }
.confirm__privacy { font-size: 12.5px; }
.confirm .btn { margin-top: 14px; }

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 24px);
  background: var(--ink);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  z-index: 120;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  max-width: calc(100% - 32px);
  text-align: center;
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

@media (min-width: 640px) {
  .about__cards, .age-grid, .type-grid, .gifting__facts, .review-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .field-row { grid-template-columns: 1fr 1fr; }
  .hero__arrow { display: block; }
}

@media (min-width: 900px) {
  .navbar__group { display: flex; }
  .burger { display: none; }
  .mobile-menu { display: none; }
  .about__head { grid-template-columns: 1fr 1fr; align-items: end; gap: 40px; }
  .about__cards { grid-template-columns: repeat(3, 1fr); }
  .why__grid { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .age-grid, .type-grid { grid-template-columns: repeat(4, 1fr); }
  .gifting__facts { grid-template-columns: repeat(4, 1fr); }
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1.3fr; }
  .review-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(0, auto);
  }
  .review--tall { grid-row: span 2; display: flex; flex-direction: column; }
  .review--tall .review__text { flex: 1; }
}

@media (min-width: 1100px) {
  .product-grid { grid-template-columns: repeat(4, 1fr); }
}

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

.read-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left;
  z-index: 95;
}

.legal { padding: 30px 0 70px; }
.legal__head { max-width: 760px; margin-bottom: 34px; }
.legal__updated { font-size: 14px; color: var(--ink-soft); margin: 12px 0 0; }

.legal__toc {
  background: var(--sky-pale);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  margin-bottom: 40px;
}
.legal__toc h2 { font-size: 19px; margin-bottom: 14px; }
.legal__toc ol {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
  font-size: 14.5px;
}
.legal__toc a { text-decoration: none; }
.legal__toc a:hover { text-decoration: underline; }

.legal__body { max-width: 820px; }
.legal__body section { margin-bottom: 36px; scroll-margin-top: 110px; }
.legal__body h2 { font-size: 23px; margin-bottom: 14px; }
.legal__body p, .legal__body li { color: var(--ink-soft); }
.legal__body strong { color: var(--ink); }
.legal__body ul { padding-left: 20px; margin: 0 0 1em; display: grid; gap: 8px; }
.legal__body a { color: var(--blue); }

.legal__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  margin-bottom: 1em;
}
.legal__table th, .legal__table td {
  border: 1px solid var(--line);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
  color: var(--ink-soft);
}
.legal__table th { background: var(--sky-pale); color: var(--ink); font-family: var(--font-head); font-weight: 500; }

@media (min-width: 640px) {
  .legal__toc ol { grid-template-columns: repeat(2, 1fr); }
}
