
:root {
  --navy: #102a43;
  --cream: #fff9ef;
  --mint: #79e0c2;
  --coral: #ff6f61;
  --coral-dark: #f25549;
  --yellow: #ffd85a;
  --white: #ffffff;
  --border: #dcebe5;
  --shadow: 0 18px 48px rgba(16, 42, 67, 0.1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--navy);
  font-family: Nunito, Arial, sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--mint);
  outline-offset: 4px;
}

.site-header {
  width: min(1320px, calc(100% - 64px));
  min-height: 88px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  position: relative;
  z-index: 10;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
}
.brand-mark {
  width: 52px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #9b7200;
  background: var(--mint);
  border-radius: 10px 10px 5px 5px;
  box-shadow: 0 6px 12px rgba(16, 42, 67, 0.18);
  transform: rotate(6deg);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 82%, 0 100%);
}
nav {
  display: flex;
  align-items: center;
  gap: 42px;
  font-size: 1.05rem;
  font-weight: 700;
}
nav a { position: relative; }
nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -8px;
  height: 3px;
  background: var(--coral);
  border-radius: 999px;
  transition: left 180ms ease, right 180ms ease;
}
nav a:hover::after { left: 0; right: 0; }
.search-button {
  justify-self: end;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: var(--white);
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 8px 24px rgba(16, 42, 67, 0.12);
  transform: rotate(-20deg);
}

.hero {
  width: min(1320px, calc(100% - 64px));
  min-height: 650px;
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: 46% 54%;
  align-items: center;
  position: relative;
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: var(--mint);
  opacity: 0.42;
  z-index: -1;
}
.hero::before {
  width: 260px;
  height: 140px;
  right: -110px;
  top: -120px;
  transform: rotate(18deg);
}
.hero::after {
  width: 190px;
  height: 90px;
  left: 42%;
  bottom: 60px;
  transform: rotate(-30deg);
}
.hero-copy {
  padding: 24px 0 70px;
  position: relative;
  z-index: 2;
}
.eyebrow {
  display: block;
  margin-bottom: 14px;
  color: #0b806b;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 650px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 5.2vw, 5.15rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 950;
}
.hero-intro {
  max-width: 590px;
  margin-bottom: 28px;
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  line-height: 1.58;
  font-weight: 600;
}
.primary-button, .secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  min-height: 56px;
  padding: 0 30px;
  border-radius: 19px;
  font-size: 1.08rem;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.primary-button {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(255, 111, 97, 0.3);
}
.primary-button:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(255, 111, 97, 0.34);
}
.secondary-button { background: var(--navy); color: var(--white); }
.secondary-button:hover { transform: translateY(-2px); }
.affiliate-badge {
  width: fit-content;
  margin: 18px 0 0;
  padding: 8px 15px;
  border: 1px solid #b9ded2;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  color: #38586c;
  font-size: 0.86rem;
  font-weight: 700;
}
.affiliate-badge span {
  display: inline-grid;
  place-items: center;
  width: 21px;
  height: 21px;
  margin-right: 6px;
  border: 2px solid #15937d;
  border-radius: 50%;
  color: #15937d;
  font-size: 0.7rem;
}
.hero-art {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-art img {
  width: 100%;
  max-width: 850px;
  height: auto;
  display: block;
  border-radius: 38px;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 24px 30px rgba(16, 42, 67, 0.11));
  animation: heroIn 500ms cubic-bezier(.2,.8,.2,1) both;
}

.quick-links {
  width: min(1320px, calc(100% - 64px));
  margin: -38px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 3;
}
.quick-card {
  min-height: 178px;
  display: grid;
  grid-template-columns: 112px 1fr 46px;
  align-items: center;
  gap: 18px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #f0e4d4;
  border-radius: 28px;
  box-shadow: 0 12px 26px rgba(16, 42, 67, 0.08);
  font-size: 1.35rem;
  font-weight: 950;
  line-height: 1.1;
  transition: transform 200ms cubic-bezier(.2,.8,.2,1), box-shadow 200ms ease;
}
.quick-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.quick-icon {
  width: 108px;
  height: 108px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 3.4rem;
}
.quick-icon.mint { background: #c8f1e5; }
.quick-icon.yellow { background: #ffedac; }
.quick-icon.coral { background: #ffd1cb; }
.quick-card b {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #bdf0df;
  transition: transform 180ms ease;
}
.quick-card:hover b { transform: translateX(3px); }

.section-shell {
  width: min(1180px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}
.intro-section {
  padding: 140px 0 110px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: start;
}
h2 {
  margin-bottom: 0;
  font-size: clamp(2.25rem, 4.2vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  font-weight: 950;
}
.intro-text { padding-top: 28px; }
.intro-text p, .section-heading > p, .kids-grid > div > p {
  color: #496276;
  font-size: 1.08rem;
  line-height: 1.75;
}
.product-section, .gift-section { padding: 30px 0 120px; }
.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 48px;
}
.section-heading > p { margin-bottom: 4px; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  display: flex;
  flex-direction: column;
  min-height: 540px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 30px;
  box-shadow: 0 12px 30px rgba(16, 42, 67, 0.06);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.product-visual {
  min-height: 210px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 22px;
  font-size: 6rem;
}
.product-visual.frog { background: #d5f5e9; }
.product-visual.cat { background: #fff0b9; }
.product-visual.dragon { background: #ffd8d3; }
.product-kicker {
  color: #0b806b;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.product-card h3 {
  margin: 8px 0 12px;
  font-size: 1.7rem;
  line-height: 1.1;
  font-weight: 950;
}
.product-card p { color: #5b6f80; line-height: 1.65; }
.product-link {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid #e5eee9;
  font-weight: 900;
}
.product-link:hover { color: #d9493c; }
.price-note { margin: 20px 0 0; color: #70808e; font-size: 0.84rem; }

.kids-section, .guide-section { padding: 110px 0; background: #dff6ef; }
.kids-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: center;
}
.kids-illustration {
  min-height: 460px;
  display: grid;
  place-items: center;
  position: relative;
  background: var(--yellow);
  border-radius: 44% 56% 55% 45% / 45% 44% 56% 55%;
  font-size: 9rem;
}
.kids-illustration i, .kids-illustration b { position: absolute; font-style: normal; }
.kids-illustration i { left: 14%; top: 15%; color: #9e7600; font-size: 3rem; }
.kids-illustration b { right: 6%; bottom: 5%; font-size: 6rem; }
.kids-grid h2 { margin-bottom: 28px; }
.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
  font-weight: 800;
}
.check-list li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--white);
  color: #0e8a72;
}

.gift-section { padding-top: 130px; }
.occasion-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.occasion-grid article {
  padding: 30px;
  border: 1px solid #efdfcb;
  border-radius: 25px;
  background: rgba(255,255,255,.6);
}
.occasion-grid span { display: block; margin-bottom: 34px; font-size: 2.8rem; }
.occasion-grid h3 { margin-bottom: 10px; font-size: 1.25rem; font-weight: 950; }
.occasion-grid p { margin-bottom: 0; color: #66798a; line-height: 1.55; }

.guide-section { background: var(--navy); color: var(--white); }
.guide-section .eyebrow { color: var(--mint); }
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.guide-grid article {
  padding: 32px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 26px;
  background: rgba(255,255,255,.06);
}
.guide-grid article > span {
  color: var(--yellow);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: .15em;
}
.guide-grid h3 { margin: 42px 0 14px; font-size: 1.45rem; }
.guide-grid p { margin-bottom: 0; color: #c9d7e2; line-height: 1.7; }

.final-cta {
  margin-top: 100px;
  margin-bottom: 100px;
  padding: 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  background: var(--yellow);
  border-radius: 34px;
}
.final-cta h2 { max-width: 760px; font-size: clamp(2rem, 3.3vw, 3.3rem); }
.final-cta .eyebrow { color: #745500; }

footer {
  padding: 70px max(24px, calc((100% - 1180px) / 2)) 28px;
  background: #0c2236;
  color: var(--white);
}
.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  padding-bottom: 50px;
}
.footer-brand { font-size: 1.4rem; }
.footer-brand .brand-mark { width: 38px; height: 43px; font-size: 0.8rem; }
.footer-inner p { margin: 18px 0 0; color: #aebfcb; }
.footer-links {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 18px 48px;
  font-weight: 700;
}
.footer-links a:hover { color: var(--mint); }
.affiliate-disclosure {
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: #91a7b7;
  font-size: 0.82rem;
}

.consent-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  max-width: 900px;
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid #cfe8df;
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.98);
  box-shadow: 0 24px 65px rgba(16, 42, 67, 0.24);
}
.consent-banner[hidden] {
  display: none !important;
}
.consent-banner strong { display: block; margin-bottom: 5px; font-size: 1.02rem; }
.consent-banner p { margin: 0; color: #526a7d; font-size: 0.9rem; }
.consent-banner p a { text-decoration: underline; }
.consent-actions { display: flex; gap: 10px; flex-shrink: 0; }
.consent-actions button {
  min-height: 44px;
  padding: 0 20px;
  border: 0;
  border-radius: 14px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}
.decline-button { background: #eaf1ee; color: var(--navy); }
.accept-button { background: var(--coral); color: var(--white); }

.legal-page {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: 70px 0 110px;
}
.legal-page > a {
  display: inline-block;
  margin-bottom: 55px;
  color: #0b806b;
  font-weight: 900;
}
.legal-page h1 { font-size: clamp(3rem, 7vw, 5rem); }
.legal-card {
  padding: clamp(26px, 5vw, 54px);
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.legal-card h2 {
  margin: 40px 0 14px;
  font-size: 1.55rem;
  letter-spacing: -0.02em;
}
.legal-card p { color: #536b7d; line-height: 1.75; }

.article-header {
  border-bottom: 1px solid rgba(16, 42, 67, 0.08);
}
.article-shell {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 28px 0 0;
  color: #607587;
  font-size: 0.88rem;
  font-weight: 700;
}
.breadcrumbs a { color: #0b806b; }
.article-hero {
  min-height: 570px;
  padding: 60px 0 70px;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 70px;
  align-items: center;
}
.article-hero h1 {
  max-width: 780px;
  font-size: clamp(3rem, 6vw, 5.8rem);
}
.article-hero > div:first-child > p:not(.affiliate-badge) {
  max-width: 720px;
  margin-bottom: 28px;
  color: #496276;
  font-size: 1.2rem;
  line-height: 1.7;
}
.article-hero-icon {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 38% 62% 59% 41% / 42% 40% 60% 58%;
  background: linear-gradient(145deg, #c9f3e6, #79e0c2);
  box-shadow: var(--shadow);
  font-size: clamp(7rem, 15vw, 12rem);
}
.editorial-note {
  margin-bottom: 110px;
  padding: 25px 28px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  border: 1px solid #c7e7dc;
  border-radius: 22px;
  background: #eefaf6;
}
.editorial-note strong {
  font-size: 1.05rem;
  font-weight: 950;
}
.editorial-note p {
  margin: 0;
  color: #526a7d;
  line-height: 1.65;
}
.article-products { scroll-margin-top: 24px; }
.article-products > h2,
.faq-section > h2,
.related-section > h2 {
  max-width: 760px;
  margin-bottom: 42px;
}
.article-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.article-product-grid:has(> :only-child) {
  grid-template-columns: minmax(0, 560px);
}
.article-product-grid:has(> :nth-child(2):last-child) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.article-product-card {
  min-height: 650px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(16, 42, 67, .07);
}
.article-product-icon {
  min-height: 190px;
  margin-bottom: 24px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  font-size: 6rem;
}
.article-product-icon.tone-0 { background: #d4f4e9; }
.article-product-icon.tone-1 { background: #fff0b8; }
.article-product-icon.tone-2 { background: #ffd9d4; }
.article-product-card h3 {
  margin: 8px 0 14px;
  font-size: 1.48rem;
  line-height: 1.15;
  font-weight: 950;
}
.article-product-card p {
  color: #5b6f80;
  line-height: 1.65;
}
.article-product-card ul {
  margin: 8px 0 24px;
  padding: 0;
  display: grid;
  gap: 8px;
  list-style: none;
  color: #38586c;
  font-size: .9rem;
  font-weight: 800;
}
.article-product-card li::before {
  content: "✓";
  margin-right: 8px;
  color: #0b806b;
}
.article-buy-button {
  width: 100%;
  margin-top: auto;
  gap: 14px;
}
.article-content {
  max-width: 820px;
  margin: 120px auto;
}
.article-content section + section { margin-top: 90px; }
.article-content h2 {
  margin-bottom: 26px;
  font-size: clamp(2rem, 3.7vw, 3.25rem);
}
.article-content p {
  color: #496276;
  font-size: 1.08rem;
  line-height: 1.82;
}
.article-list {
  margin: 28px 0 0;
  padding: 26px 28px 26px 52px;
  display: grid;
  gap: 12px;
  border-radius: 22px;
  background: #eefaf6;
  color: #274b5f;
  font-weight: 800;
  line-height: 1.55;
}
.faq-section {
  margin: 0 0 110px;
  padding: 70px;
  border-radius: 34px;
  background: var(--navy);
  color: var(--white);
}
.faq-section .eyebrow { color: var(--mint); }
.faq-grid { display: grid; gap: 12px; }
.faq-grid details {
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 17px;
  background: rgba(255,255,255,.06);
}
.faq-grid summary {
  padding: 21px 24px;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 900;
}
.faq-grid p {
  margin: 0;
  padding: 0 24px 22px;
  color: #ccdae4;
  line-height: 1.7;
}
.related-section { margin-bottom: 120px; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.related-grid a {
  min-height: 180px;
  padding: 26px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: center;
  gap: 10px 20px;
  border: 1px solid #eadfce;
  border-radius: 24px;
  background: rgba(255,255,255,.6);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.related-grid a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.related-grid strong {
  font-size: 1.2rem;
  font-weight: 950;
}
.related-grid span {
  grid-column: 1;
  color: #637789;
  line-height: 1.5;
}
.related-grid b {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #bdf0df;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  nav { display: none; }
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { padding-bottom: 10px; }
  .hero-copy h1, .hero-intro, .affiliate-badge { margin-left: auto; margin-right: auto; }
  .hero-art img { width: min(100%, 720px); }
  .quick-links { margin-top: 0; grid-template-columns: 1fr; }
  .quick-card { min-height: 140px; }
  .intro-section, .section-heading, .kids-grid { grid-template-columns: 1fr; gap: 38px; }
  .product-grid, .guide-grid { grid-template-columns: 1fr 1fr; }
  .occasion-grid { grid-template-columns: 1fr 1fr; }
  .final-cta { align-items: flex-start; flex-direction: column; }
  .article-hero { grid-template-columns: 1fr; text-align: center; }
  .article-hero h1,
  .article-hero > div:first-child > p,
  .article-hero .affiliate-badge { margin-left: auto; margin-right: auto; }
  .article-hero-icon { width: min(420px, 80%); margin: 0 auto; }
  .article-product-grid { grid-template-columns: 1fr 1fr; }
  .related-grid { grid-template-columns: 1fr; }
}

@media (max-width: 650px) {
  .site-header, .hero, .quick-links { width: min(100% - 32px, 1320px); }
  .site-header { min-height: 76px; }
  .brand { font-size: 1.35rem; }
  .brand-mark { width: 42px; height: 48px; }
  .search-button { width: 44px; height: 44px; }
  .hero { margin-top: 20px; min-height: auto; }
  h1 { font-size: clamp(2.7rem, 13vw, 4rem); }
  .hero-copy { padding-top: 32px; }
  .hero-art { margin-top: 10px; }
  .quick-card {
    grid-template-columns: 82px 1fr 42px;
    min-height: 118px;
    padding: 18px;
    font-size: 1.15rem;
  }
  .quick-icon { width: 78px; height: 78px; font-size: 2.4rem; }
  .intro-section { padding: 100px 0 80px; }
  .product-grid, .guide-grid, .occasion-grid { grid-template-columns: 1fr; }
  .kids-section, .guide-section { padding: 80px 0; }
  .kids-illustration { min-height: 330px; font-size: 6rem; }
  .final-cta { margin-top: 60px; margin-bottom: 60px; padding: 36px 26px; }
  .footer-inner, .consent-banner { align-items: stretch; flex-direction: column; }
  .footer-links { grid-template-columns: 1fr; }
  .consent-banner { left: 12px; right: 12px; bottom: 12px; padding: 18px; gap: 18px; }
  .consent-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .article-shell { width: min(100% - 32px, 1120px); }
  .article-hero { padding-top: 42px; gap: 40px; }
  .article-hero h1 { font-size: clamp(2.8rem, 13vw, 4rem); }
  .article-hero-icon { width: 85%; }
  .editorial-note { grid-template-columns: 1fr; margin-bottom: 80px; }
  .article-product-grid,
  .article-product-grid:has(> :nth-child(2):last-child) { grid-template-columns: 1fr; }
  .article-product-card { min-height: 0; }
  .article-content { margin: 90px auto; }
  .article-content section + section { margin-top: 65px; }
  .faq-section { padding: 42px 24px; margin-left: -8px; margin-right: -8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
