:root {
  font-size: clamp(0.85px, 0.12345679vw, 1.77778px);
  --navy: #073780;
  --blue: #008fee;
  --pink: #ff386c;
  --green: #00b187;
  --cream: #fff8e8;
  --line: #dbe5f0;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #eff8fc;
  font-family: NotoThai, "Tahoma", sans-serif;
  color: var(--navy);
  font-size: 10rem;
  line-height: 1.4;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}
button,
a,
input,
select,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}
button,
summary {
  cursor: pointer;
}
button {
  border: 0;
}
button:disabled {
  cursor: default;
  opacity: 1;
}
button:disabled:active {
  transform: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3,
p,
ul,
ol,
blockquote {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.2;
  font-weight: 800;
}
h2 {
  font-size: 17rem;
}
h3 {
  font-size: 12rem;
}
ul,
ol {
  padding-left: 17rem;
}
fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}
legend {
  padding: 0;
}
svg {
  display: inline-block;
  flex: none;
  vertical-align: middle;
}
.icon {
  width: 18rem;
  height: 18rem;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3rem solid #ffad00;
  outline-offset: 3rem;
}
[hidden] {
  display: none !important;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}
.skip-link {
  position: fixed;
  z-index: 200;
  left: 12px;
  top: -100px;
  background: #fff;
  padding: 12px;
  font-size: 16px;
}
.skip-link:focus {
  top: 8px;
}
.site-shell {
  max-width: 1440px;
  margin: auto;
  position: relative;
  overflow: clip;
  background: #fff7e7 url("assets/world.png") center 250rem/100% auto no-repeat;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7rem;
  border: 1rem solid #ff6594;
  background: linear-gradient(180deg, #ff6694, #ff2761);
  border-radius: 9rem;
  color: #fff;
  font-size: 12rem;
  font-weight: 700;
  min-height: 28rem;
  padding: 4rem 14rem;
  box-shadow:
    inset 0 1rem 1rem #ffffff80,
    0 3rem 5rem #c67b4026;
  white-space: nowrap;
  transition:
    filter 0.16s,
    transform 0.16s;
}
.btn:hover {
  filter: brightness(1.05);
}
.btn:active {
  transform: translateY(1rem);
}
.btn .icon {
  width: 16rem;
  height: 16rem;
}
.btn.outline {
  background: #fff;
  color: var(--navy);
  border-color: #bddcf3;
  box-shadow: none;
}
.btn.green {
  background: linear-gradient(#10d984, #00b467);
  border-color: #18cc87;
}
.btn.slate {
  background: linear-gradient(#a2bedb, #688bad);
  border-color: #a0bcd8;
}
.btn.tiny {
  font-size: 8rem;
  min-height: 21rem;
  border-radius: 5rem;
  padding: 3rem 7rem;
  gap: 4rem;
}
.btn.tiny .icon {
  width: 12rem;
  height: 12rem;
}
.btn.large {
  min-height: 44rem;
  padding: 10rem 24rem;
  font-size: 16rem;
}
.line-symbol {
  display: inline-grid;
  place-items: center;
  flex: none;
  width: 20rem;
  height: 20rem;
  background: #fff;
  color: #00b458;
  font-size: 6rem;
  font-weight: 800;
  border-radius: 50%;
  position: relative;
}
.line-symbol:after {
  content: "";
  position: absolute;
  bottom: -2rem;
  left: 5rem;
  border-top: 6rem solid #fff;
  border-right: 4rem solid transparent;
  transform: rotate(15deg);
}
.site-header {
  position: relative;
  z-index: 50;
  margin: 0 auto;
  width: 626rem;
  height: 42rem;
  display: flex;
  align-items: center;
  gap: 10rem;
  padding: 4rem 10rem;
  background: #fff;
  border-radius: 0 0 13rem 13rem;
  box-shadow: 0 2rem 12rem #225b8c15;
  font-size: 8rem;
  font-weight: 700;
}
.brand {
  width: 127rem;
  flex: none;
  height: 36rem;
  display: flex;
  align-items: center;
}
.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 12rem;
  white-space: nowrap;
}
.main-nav > a {
  padding: 10rem 0;
}
.nav-menu {
  position: relative;
}
.nav-menu > summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 3rem;
  white-space: nowrap;
}
.nav-menu > summary::-webkit-details-marker {
  display: none;
}
.nav-menu > summary .icon {
  width: 9rem;
  height: 9rem;
}
.nav-menu > div {
  position: absolute;
  z-index: 55;
  top: 20rem;
  left: -10rem;
  min-width: 125rem;
  background: #fff;
  border: 1rem solid var(--line);
  box-shadow: 0 7rem 22rem #183b6520;
  border-radius: 9rem;
  overflow: hidden;
  padding: 6rem;
}
.nav-menu > div > a {
  display: block;
  padding: 8rem;
  border-radius: 5rem;
  font-size: 10rem;
}
.nav-menu > div > a:hover {
  background: #e9f7ff;
}
.nav-search {
  display: flex;
  align-items: center;
  gap: 5rem;
  border: 1rem solid #d0deed;
  border-radius: 20rem;
  padding: 4rem 8rem;
  margin-left: auto;
  width: 110rem;
  flex: none;
}
.nav-search .icon {
  width: 11rem;
  height: 11rem;
}
.nav-search input {
  border: 0;
  outline: 0 !important;
  min-width: 0;
  width: 100%;
  padding: 0;
  font-size: 7.5rem;
  background: none;
}
.my-coins {
  display: flex;
  align-items: center;
  gap: 4rem;
  white-space: nowrap;
}
.my-coins .icon {
  color: #ffb000;
  fill: #ffdf70;
  width: 16rem;
  height: 16rem;
}
.cart-link {
  position: relative;
  flex: none;
}
.cart-link .icon {
  width: 21rem;
  height: 21rem;
  stroke-width: 2.3;
}
.cart-link span {
  position: absolute;
  right: -3rem;
  top: -5rem;
  background: #ff336b;
  color: #fff;
  border-radius: 50%;
  font-size: 6rem;
  min-width: 11rem;
  height: 11rem;
  display: grid;
  place-items: center;
}
.login-link {
  white-space: nowrap;
}
.mobile-menu {
  display: none;
}
.home .site-header {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}
.hero {
  height: 310rem;
  position: relative;
  overflow: hidden;
  background: #b8e9fa;
}
.hero-art {
  position: absolute;
  inset: 18rem 0 -18rem;
  background: url("assets/hero.png") center top/100% 100% no-repeat;
}
.hero-finder {
  position: absolute;
  left: 111rem;
  top: 67rem;
  width: 255rem;
  text-align: center;
}
.hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10rem;
  font-size: 10rem;
  font-weight: 800;
  color: #fa3f6c;
  white-space: nowrap;
  height: 26rem;
}
.hero-badges > span:last-child {
  background: #ffebe9;
  border-radius: 8rem;
  padding: 3rem 8rem;
}
.new-badge {
  display: inline-block;
  color: #fff;
  background: #ff3c68;
  box-shadow: 1rem 2rem 0 #f5947f;
  padding: 5rem 8rem;
  transform: rotate(-10deg);
  border-radius: 4rem;
  font-size: 12rem;
}
.hero h1 {
  font-size: 24rem;
  letter-spacing: -1rem;
  white-space: nowrap;
  line-height: 1.15;
  margin-top: 3rem;
}
.hero h1 span {
  color: #fd3f70;
}
.hero-subjects {
  font-size: 14rem;
  line-height: 1.2;
  color: #009c71;
  font-weight: 800;
  letter-spacing: 1rem;
}
.hero-description {
  font-size: 8rem;
  font-weight: 700;
  margin: 4rem -4rem 6rem;
  white-space: nowrap;
}
.hero fieldset {
  margin: 5rem 0;
  text-align: left;
}
.hero legend {
  font-size: 9rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 7rem;
}
.hero legend b {
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
  background: #008fea;
  color: #fff;
  display: inline-grid;
  place-items: center;
  font-size: 10rem;
}
.pill-options {
  display: flex;
  gap: 5rem;
  margin: 2rem 0 0 23rem;
}
.pill-options label {
  flex: 1;
  position: relative;
}
.pill-options input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}
.pill-options span {
  display: grid;
  place-items: center;
  border: 1rem solid #ccd4dd;
  border-radius: 5rem;
  padding: 3rem 2rem;
  background: #fff;
  font-size: 7.5rem;
  font-weight: 700;
  white-space: nowrap;
  transition: 0.18s;
}
.pill-options input:checked + span {
  background: linear-gradient(#19adff, #0083dc);
  color: #fff;
  border-color: #008eef;
  box-shadow: 0 2rem 4rem #0c9bdb35;
}
.pill-options input:focus-visible + span {
  outline: 3rem solid #ffad00;
}
.finder-submit {
  margin: 3rem 0 7rem 20rem;
  width: 194rem;
  min-height: 27rem;
  font-size: 11rem;
}
.hero-benefits {
  display: flex;
  justify-content: center;
  gap: 17rem;
  font-size: 6.5rem;
  font-weight: 700;
}
.hero-benefits span {
  display: flex;
  gap: 4rem;
  align-items: center;
}
.hero-benefits .icon {
  width: 15rem;
  height: 15rem;
  stroke-width: 2;
}
.home-sections {
  width: 650rem;
  margin: 0 auto;
  position: relative;
}
.daily-section {
  height: 225rem;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 47rem;
  padding: 0 19rem;
}
.reward-background {
  position: absolute;
  top: 0;
  left: -80rem;
  width: 810rem;
  height: 225rem;
  background: url("assets/rewards.png") center/100% 100% no-repeat;
  pointer-events: none;
}
.daily-gift,
.daily-checkin {
  position: relative;
  min-width: 0;
  padding: 0 3rem;
}
.daily-section h2 {
  color: #fff;
  font-size: 15rem;
  height: 33rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  text-shadow: 0 1rem 2rem #a25b26;
}
.daily-section h2 .icon {
  width: 24rem;
  height: 24rem;
  color: #ffe070;
}
.gift-note {
  font-size: 9rem;
  color: #ff275f;
  font-weight: 800;
  text-align: right;
  padding: 0 4rem;
  height: 17rem;
  border-radius: 8rem;
  background: #fff6f3;
}
.gift-note span {
  font-size: 8rem;
  font-weight: 500;
}
.gift-content {
  display: grid;
  grid-template-columns: 128rem 1fr;
  gap: 12rem;
  align-items: center;
}
.product-image {
  display: block;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.product-image > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.daily-image {
  height: 142rem;
  border-radius: 5rem;
  box-shadow: 0 1rem 5rem #9e794327;
}
.gift-content h3 {
  font-size: 12rem;
  margin: 3rem 0 5rem;
}
.gift-tags {
  display: flex;
  gap: 7rem;
  margin: 5rem 0;
}
.gift-tags span {
  padding: 2rem 7rem;
  border-radius: 5rem;
  background: #d2f9e8;
  color: #008c74;
  font-size: 9rem;
}
.gift-tags span:first-child {
  background: #049be6;
  color: #fff;
}
.gift-content p {
  font-size: 8rem;
  margin: 5rem 0;
}
.gift-content .btn {
  width: 100%;
  margin-top: 7rem;
  font-size: 12rem;
  min-height: 31rem;
}
.daily-checkin h2 {
  justify-content: flex-start;
  padding-left: 5rem;
}
.coin-balance {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  position: absolute;
  right: 1rem;
  top: 37rem;
  background: #fff7e2;
  box-shadow: 0 2rem 5rem #ae785521;
  border: 1rem solid #f7d7a7;
  border-radius: 18rem;
  padding: 4rem 9rem;
  font-size: 9rem;
  font-weight: 700;
}
.coin-balance b {
  color: #f05b39;
}
.coin-balance .icon {
  color: #ffb62c;
  fill: #ffda6c;
  width: 17rem;
  height: 17rem;
}
.checkin-intro {
  display: flex;
  align-items: center;
  gap: 6rem;
  height: 44rem;
  font-size: 9rem;
  font-weight: 700;
  margin: 12rem 0 0;
}
.checkin-intro .mascot {
  width: 46rem;
  height: 41rem;
  flex: none;
}
.checkin-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: #fff;
  border: 1rem solid #eac7ac;
  border-radius: 7rem;
  margin: 3rem 0 5rem;
  padding: 7rem 2rem;
  box-shadow: 0 2rem 4rem #b7794721;
}
.checkin-days > div {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  border-right: 1rem solid #efdfc7;
  font-size: 7rem;
}
.checkin-days > div:last-child {
  border: 0;
}
.checkin-days .icon {
  width: 17rem;
  height: 17rem;
  color: #ffad00;
  fill: #ffe5a7;
}
.checkin-days b {
  font-size: 10rem;
  color: #f75745;
}
.daily-checkin > .btn {
  min-height: 26rem;
  width: 100%;
  font-size: 11rem;
}
.checkin-help {
  display: block;
  text-align: center;
  font-size: 8rem;
  font-weight: 700;
  margin-top: 3rem;
}
.checkin-help .icon {
  width: 10rem;
  height: 10rem;
}
.section-title {
  display: flex;
  align-items: center;
  gap: 12rem;
  min-height: 26rem;
}
.section-title h2 {
  font-size: 17rem;
}
.section-title p {
  font-size: 9rem;
  font-weight: 600;
}
.subject-section {
  height: 215rem;
  position: relative;
}
.subject-section:before,
.age-section:before {
  content: "";
  position: absolute;
  inset: 0 -14rem auto;
  height: 43rem;
  background: #ffffffdf;
  border-radius: 40% 36% 0 0;
  z-index: 0;
}
.section-title {
  position: relative;
  z-index: 2;
}
.subject-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5rem;
}
.subject-portal {
  height: 185rem;
  position: relative;
  --accent: #ff386c;
  isolation: isolate;
}
.portal-art {
  position: absolute;
  inset: -13rem -5rem -2rem;
  overflow: hidden;
  z-index: -1;
}
.portal-art img {
  position: absolute;
  max-width: none;
  width: 400%;
  height: 257rem;
  top: -23rem;
  left: calc(var(--i) * -100%);
}
.subject-portal h3 {
  font-size: 17rem;
  text-align: center;
  padding-top: 14rem;
  color: var(--accent);
}
.portal-copy {
  display: grid;
  grid-template-columns: 85rem 1fr;
  gap: 5rem;
  padding: 8rem 9rem 0;
  height: 122rem;
  align-items: center;
}
.subject-image-blank {
  height: 105rem;
  background: #fff;
  border-radius: 3rem;
  box-shadow: 1rem 2rem 4rem #56748d19;
}
.portal-copy ul {
  list-style: none;
  padding: 0;
  font-size: 7rem;
  line-height: 1.7;
}
.portal-copy li:before {
  content: "";
  display: inline-block;
  width: 3rem;
  height: 3rem;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 3rem;
  vertical-align: middle;
}
.subject-portal > .btn {
  display: flex;
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 3rem;
  padding: 4rem 5rem;
  font-size: 10rem;
  min-height: 26rem;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--accent), white 25%),
    var(--accent)
  );
  border-color: color-mix(in srgb, var(--accent), white 25%);
}
.portal-english {
  --accent: #009cef;
}
.portal-chinese {
  --accent: #00ae83;
}
.portal-math {
  --accent: #ff9823;
}
.age-section {
  height: 123rem;
  position: relative;
}
.age-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding-right: 30rem;
}
.age-choice {
  position: relative;
  display: block;
  height: 96rem;
  --age: #ff6627;
}
.age-art {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 78rem;
  height: 94rem;
  overflow: hidden;
}
.age-art img {
  position: absolute;
  width: 500%;
  height: 102rem;
  max-width: none;
  top: 0;
  left: calc(var(--i) * -100%);
}
.age-label {
  position: absolute;
  left: 67rem;
  top: 15rem;
  background: #ffffffd9;
  border-radius: 9rem;
  min-width: 45rem;
  text-align: center;
  padding: 3rem 4rem;
  box-shadow: 0 2rem 4rem #7363470d;
  z-index: -0;
}
.age-label b {
  display: block;
  font-size: 12rem;
  color: var(--age);
}
.age-label small {
  display: block;
  font-size: 8rem;
  font-weight: 700;
  color: var(--age);
}
.age-2 {
  --age: #0879ed;
}
.age-3 {
  --age: #5e38bc;
}
.age-4 {
  --age: #0089a7;
}
.wood-sign {
  display: block;
  padding: 10rem 6rem;
  text-align: center;
  background: linear-gradient(105deg, #ffdda3, #ffecc7 45%, #edc490);
  border: 2rem solid #c48e57;
  box-shadow: 2rem 3rem 0 #a9723c;
  border-radius: 6rem;
  color: #774a2b;
  font-size: 11rem;
  font-weight: 600;
  line-height: 1.5;
  transform: rotate(-7deg);
}
.age-sign {
  position: absolute;
  right: -48rem;
  top: 35rem;
  width: 63rem;
  z-index: 4;
}
.discovery-section {
  height: 177rem;
  display: grid;
  grid-template-columns: 315rem 133rem 190rem;
  gap: 6rem;
  padding: 3rem 0 5rem;
  position: relative;
}
.assessment-card {
  position: relative;
  padding: 8rem 7rem;
  background: linear-gradient(115deg, #effaff, #d3ecff);
  border-radius: 15rem;
  isolation: isolate;
  overflow: visible;
}
.assessment-card h2 {
  font-size: 15rem;
  white-space: nowrap;
}
.assessment-card > p {
  font-size: 8rem;
  margin: 3rem 0;
}
.assessment-benefits {
  list-style: none;
  counter-reset: quiz;
  padding: 0;
  position: relative;
  z-index: 1;
  width: 182rem;
  margin: 5rem 0;
}
.assessment-benefits li {
  counter-increment: quiz;
  position: relative;
  padding-left: 24rem;
  margin: 4rem 0;
  font-size: 8rem;
  line-height: 1.3;
}
.assessment-benefits li:before {
  content: counter(quiz);
  position: absolute;
  left: 0;
  top: 0;
  width: 19rem;
  height: 19rem;
  display: grid;
  place-items: center;
  background: #ff7952;
  color: #fff;
  border-radius: 50%;
  font-size: 12rem;
  box-shadow: inset 0 1rem 2rem #fff8;
}
.assessment-benefits span {
  display: block;
}
.assessment-card > .btn {
  font-size: 11rem;
  width: 158rem;
  min-height: 26rem;
  position: relative;
  z-index: 3;
}
.mascot {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}
.mascot img {
  position: absolute;
  max-width: none;
  width: 200%;
  height: 200%;
  left: 0;
  top: 0;
}
.pose-1 img {
  left: -100%;
}
.pose-2 img {
  top: -100%;
}
.pose-3 img {
  left: -100%;
  top: -100%;
}
.assessment-card > .mascot {
  position: absolute;
  right: -7rem;
  bottom: -1rem;
  width: 142rem;
  height: 137rem;
  z-index: 2;
}
.speech-bubble {
  position: absolute;
  right: -8rem;
  top: 9rem;
  transform: rotate(-13deg);
  background: #fff;
  padding: 5rem 9rem;
  border-radius: 45%;
  font-size: 9rem;
  font-weight: 800;
  z-index: 3;
  box-shadow: 0 2rem 4rem #20479a13;
}
.difficulty-card {
  margin-top: 20rem;
  border: 7rem solid #decbb8;
  background: #fff;
  border-radius: 12rem;
  box-shadow:
    inset 0 0 0 3rem #f1e8dd,
    0 3rem 2rem #9079602b;
  padding: 19rem 5rem 8rem;
  text-align: center;
}
.difficulty-card h3 {
  font-size: 12rem;
}
.rating-stars {
  display: flex;
  justify-content: center;
  margin: 10rem 0;
  color: #ffbd1f;
  filter: drop-shadow(0 1rem 0 #ca892f);
}
.rating-stars .icon {
  width: 24rem;
  height: 24rem;
}
.rating-stars .muted {
  color: #d2cbc6;
  filter: none;
}
.difficulty-links {
  display: flex;
  justify-content: center;
  gap: 5rem;
}
.difficulty-links a {
  background: #fff;
  border: 1rem solid #bad6ee;
  border-radius: 5rem;
  min-width: 28rem;
  padding: 4rem;
  font-size: 12rem;
  font-weight: 800;
}
.games-card {
  position: relative;
  background: #fff;
  border: 2rem solid #f0e0c6;
  border-radius: 12rem;
  padding: 7rem 8rem;
}
.games-card h2 {
  font-size: 13rem;
  white-space: nowrap;
}
.games-card h2 .icon {
  width: 15rem;
  height: 15rem;
  color: #6777ab;
}
.games-card p {
  font-size: 7rem;
  margin: 3rem 0;
}
.games-card > img {
  width: 100%;
  height: 79rem;
  object-fit: cover;
  border-radius: 8rem;
}
.games-card > .btn {
  display: flex;
  margin-top: 4rem;
  font-size: 11rem;
  min-height: 26rem;
  padding: 3rem;
}
.game-sign {
  position: absolute;
  right: -50rem;
  top: 54rem;
  font-size: 9rem;
  z-index: 4;
  width: 58rem;
}
.popular-section {
  position: relative;
  padding-top: 7rem;
  min-height: 428rem;
}
.product-heading {
  gap: 8rem;
  margin-bottom: 8rem;
  min-height: 28rem;
  background: #fff8;
  border-radius: 8rem;
}
.product-heading h2 {
  display: flex;
  align-items: center;
  gap: 7rem;
  white-space: nowrap;
}
.product-heading h2 > .icon {
  color: #ffb92b;
  stroke: #e88c16;
  width: 25rem;
  height: 25rem;
}
.product-heading p {
  font-size: 8rem;
}
.product-tabs {
  margin-left: auto;
  display: flex;
  gap: 2rem;
  background: #fff;
  border-radius: 20rem;
  padding: 2rem;
}
.product-tabs button {
  padding: 4rem 8rem;
  border-radius: 18rem;
  background: transparent;
  font-size: 7rem;
  font-weight: 700;
  white-space: nowrap;
}
.product-tabs button.active {
  background: linear-gradient(#ff7891, #ff3661);
  color: #fff;
  box-shadow: 0 2rem 5rem #fc648659;
}
.round-link {
  display: grid;
  place-items: center;
  background: #fff;
  width: 23rem;
  height: 23rem;
  border: 1rem solid #e8dcca;
  border-radius: 50%;
}
.round-link .icon {
  width: 15rem;
  height: 15rem;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10rem;
}
.product-card {
  z-index: 1;
  min-width: 0;
  background: #fff;
  border: 1rem solid #eed9c0;
  border-radius: 8rem;
  overflow: visible;
  position: relative;
  box-shadow:
    0 3rem 0 #c5935c,
    0 6rem 7rem #75432432;
  transition: transform 0.15s;
}
.product-card:hover {
  transform: translateY(-2rem);
}
.product-card > .product-image {
  height: 94rem;
  border-radius: 8rem 8rem 0 0;
  border-bottom: 1rem solid #f3f1ed;
}
.discount {
  position: absolute;
  top: -2rem;
  left: -3rem;
  background: #ff3e69;
  color: #fff;
  padding: 3rem 8rem;
  border-radius: 12rem 4rem 10rem 4rem;
  transform: rotate(-9deg);
  font-size: 9rem;
  font-weight: 800;
  box-shadow: 0 2rem 0 #edb286;
  z-index: 2;
}
.product-info {
  padding: 5rem 8rem 5rem;
}
.product-card h3 {
  font-size: 10rem;
  line-height: 1.1;
  min-height: 23rem;
  margin-bottom: 4rem;
}
.product-tags {
  display: flex;
  gap: 4rem;
  align-items: center;
  white-space: nowrap;
}
.product-tags > span {
  background: #e5f2fa;
  border-radius: 9rem;
  padding: 1rem 6rem;
  font-size: 7rem;
  font-weight: 700;
}
.product-tags > .tag {
  color: #fff;
  background: #ff6587;
}
.product-tags > .subject-english {
  background: #08a7ea;
}
.product-tags > .subject-math {
  background: #42bb85;
}
.product-tags > .subject-chinese {
  background: #ee4d8d;
}
.product-tags > .subject-all {
  background: #619edf;
}
.product-price {
  display: flex;
  align-items: baseline;
  gap: 13rem;
  min-height: 22rem;
  padding-top: 2rem;
}
.product-price del {
  color: #a6a19d;
  font-size: 11rem;
}
.product-price strong {
  font-size: 15rem;
  line-height: 1.2;
  color: #f73363;
}
.product-price strong small {
  font-size: 11rem;
}
.product-price:not(:has(del)) strong {
  color: var(--navy);
}
.product-actions {
  display: flex;
  gap: 5rem;
}
.product-actions > .btn {
  flex: 1;
  min-width: 0;
}
.product-actions > .btn:first-child {
  flex: 0.8;
}
.home-products {
  row-gap: 12rem;
  position: relative;
}
.home-products:before,
.home-products:after {
  content: "";
  position: absolute;
  left: -13rem;
  right: -13rem;
  height: 12rem;
  background: linear-gradient(#fbd5a3, #cf9055 78%, #fff0);
  border-radius: 3rem;
  z-index: 0;
  pointer-events: none;
}
.home-products:before {
  top: calc(50% - 2rem);
}
.home-products:after {
  bottom: -10rem;
}
.product-sign-left {
  position: absolute;
  left: -73rem;
  top: 172rem;
  width: 59rem;
  font-size: 11rem;
}
.product-sign-right {
  position: absolute;
  right: -64rem;
  top: 223rem;
  width: 48rem;
  transform: rotate(5deg);
  font-size: 13rem;
}
.membership-referral {
  height: 136rem;
  display: grid;
  grid-template-columns: 366rem 1fr;
  gap: 9rem;
  position: relative;
  padding-top: 7rem;
}
.membership-card {
  background: #fff9ee;
  border: 3rem solid #f3e4c8;
  box-shadow: 0 2rem 3rem #bb8b4538;
  border-radius: 15rem;
  display: flex;
  position: relative;
  align-items: center;
  padding: 5rem 6rem 5rem 83rem;
  gap: 7rem;
}
.membership-card > .mascot {
  position: absolute;
  left: -12rem;
  bottom: -2rem;
  width: 106rem;
  height: 121rem;
}
.membership-copy h2 {
  font-size: 14rem;
}
.membership-copy > p {
  font-size: 8rem;
}
.membership-copy ul {
  font-size: 7rem;
  list-style: none;
  padding: 4rem 0 0;
  line-height: 1.8;
}
.membership-copy li:before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 8rem;
  height: 8rem;
  border: 1rem solid #ffc854;
  color: #ffbe1a;
  border-radius: 50%;
  margin-right: 4rem;
  font-size: 5rem;
}
.member-price {
  margin-left: auto;
  flex: none;
  border-left: 2rem solid #e8dcc7;
  padding: 8rem 7rem;
  background: #fff9f1;
  border-radius: 12rem;
  text-align: center;
  width: 130rem;
  height: 104rem;
}
.member-price strong {
  font-size: 17rem;
  color: #ff355f;
}
.member-price small {
  font-size: 10rem;
}
.member-price p {
  font-size: 9rem;
  line-height: 1.2;
  margin: 5rem 0;
}
.member-price .btn {
  width: 100%;
  font-size: 11rem;
  padding: 5rem;
  min-height: 28rem;
}
.referral-card {
  position: relative;
  background: #fff url("assets/referral.png") center/cover;
  border: 3rem solid #f0e0c8;
  border-radius: 14rem;
  box-shadow: 0 2rem 3rem #bb8b4538;
  padding: 4rem 10rem;
}
.referral-card h2 {
  font-size: 15rem;
  display: flex;
  gap: 10rem;
  align-items: center;
}
.referral-card h2 .icon {
  width: 26rem;
  height: 26rem;
  color: #ff4783;
  fill: #ffe296;
}
.referral-card p {
  font-size: 12rem;
  font-weight: 700;
  padding: 3rem 0;
}
.referral-card strong {
  color: #ff386c;
  font-size: 15rem;
}
.referral-card small {
  display: block;
  font-size: 8rem;
}
.referral-card > .btn {
  margin-top: 1rem;
  font-size: 10rem;
  min-height: 24rem;
  padding: 3rem 13rem;
}
.ease-section {
  display: grid;
  grid-template-columns: 400rem 1fr;
  gap: 12rem;
  height: 65rem;
  padding-top: 6rem;
  background: #fff9;
  border-radius: 10rem;
}
.ease-section h2 {
  font-size: 13rem;
  margin-bottom: 3rem;
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
}
.benefit-grid > div {
  display: flex;
  align-items: center;
  gap: 5rem;
  border: 1rem solid #ebe1d6;
  border-radius: 7rem;
  background: #fff;
  padding: 5rem 6rem;
  font-size: 6.5rem;
  font-weight: 700;
}
.benefit-grid .icon {
  width: 22rem;
  height: 22rem;
  color: #009ded;
  stroke-width: 2.3;
}
.benefit-grid > div:first-child .icon {
  color: #ff426f;
  fill: #ffdd72;
}
.benefit-grid > div:nth-child(2) .icon {
  color: #28b783;
  fill: #ffc945;
}
.benefit-grid > div:last-child .icon {
  color: #ffab1b;
  fill: #ffe39c;
  stroke: #ed9b00;
}
.buy-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}
.buy-steps > a {
  display: flex;
  gap: 5rem;
  background: #fff;
  border: 1rem solid #ebe1d6;
  border-radius: 7rem;
  padding: 5rem 4rem;
  font-size: 7rem;
  font-weight: 800;
}
.buy-steps b {
  display: grid;
  place-items: center;
  flex: none;
  width: 17rem;
  height: 17rem;
  background: #02b384;
  border-radius: 50%;
  color: #fff;
  font-size: 13rem;
}
.buy-steps small {
  display: block;
  font-size: 6rem;
}
.reviews-section {
  height: 87rem;
  position: relative;
}
.reviews-section > h2 {
  font-size: 14rem;
  margin: 3rem 0;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10rem;
}
.reviews-grid article {
  display: flex;
  align-items: center;
  gap: 8rem;
  background: #ffffffed;
  border: 1rem solid #eee5d9;
  border-radius: 12rem;
  padding: 6rem 9rem;
  height: 64rem;
  box-shadow: 0 2rem 4rem #9275450c;
}
.avatar {
  display: block;
  position: relative;
  overflow: hidden;
  width: 54rem;
  height: 54rem;
  border: 2rem solid #fff;
  border-radius: 50%;
  flex: none;
}
.avatar img {
  position: absolute;
  width: 300%;
  height: 100%;
  max-width: none;
  left: calc(var(--i) * -100%);
  object-fit: fill;
}
.reviews-grid blockquote {
  font-size: 7rem;
  line-height: 1.5;
  min-height: 26rem;
}
.review-stars {
  color: #ffb200;
  display: inline-flex;
}
.review-stars .icon {
  width: 10rem;
  height: 10rem;
}
.reviews-grid small {
  display: block;
  font-size: 6rem;
  text-align: right;
  margin-top: -11rem;
  padding-left: 55rem;
}
.review-sign {
  position: absolute;
  right: -64rem;
  top: 6rem;
  width: 51rem;
  font-size: 12rem;
}
.faq-section {
  position: relative;
}
.faq-section > h2 {
  font-size: 14rem;
  margin: 1rem 0 4rem;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
}
.faq-grid details {
  background: #fff;
  border: 1rem solid #d8e8f1;
  border-radius: 5rem;
  align-self: start;
}
.faq-grid details:nth-last-child(-n + 2) {
  grid-column: span 2;
}
.faq-grid summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 5rem;
  font-size: 7rem;
  font-weight: 600;
  min-height: 20rem;
  padding: 4rem 6rem;
}
.faq-grid summary::-webkit-details-marker {
  display: none;
}
.faq-grid summary .icon {
  width: 9rem;
  height: 9rem;
  flex: none;
}
.faq-grid summary .icon:last-child {
  margin-left: auto;
}
.faq-grid details[open] summary .icon:last-child {
  transform: rotate(180deg);
}
.faq-grid details p {
  padding: 5rem 8rem 9rem;
  font-size: 9rem;
  line-height: 1.6;
  border-top: 1rem solid #edf4fa;
}
.home .faq-section {
  min-height: 60rem;
  padding-top: 2rem;
}
.site-footer {
  width: 100%;
  position: relative;
  min-height: 122rem;
  padding: 10rem 80rem 8rem;
  background: linear-gradient(160deg, #e1f8ffea, #fff7e9e0 70%);
  border-radius: 24% 20% 0 0 /12% 12% 0 0;
  margin-top: 6rem;
}
.footer-content {
  display: grid;
  grid-template-columns: 190rem 77rem 66rem 119rem 1fr;
  gap: 6rem;
  position: relative;
  min-height: 80rem;
}
.footer-content h3 {
  font-size: 8rem;
  margin: 3rem 0;
}
.footer-content > div > a:not(.btn) {
  display: block;
  font-size: 7rem;
  line-height: 1.6;
}
.footer-brand img {
  width: 162rem;
  height: 42rem;
  object-fit: contain;
  object-position: left center;
}
.footer-brand p {
  font-size: 7rem;
  line-height: 1.6;
  margin-left: 34rem;
}
.footer-social {
  padding-right: 65rem;
}
.footer-social .btn {
  font-size: 10rem;
  min-height: 26rem;
  min-width: 111rem;
  padding: 3rem 7rem;
}
.social-icons {
  display: flex;
  gap: 14rem;
  margin: 7rem;
}
.social-icons a {
  display: grid;
  place-items: center;
  color: #078bfd;
  font-size: 18rem;
  font-family: Arial, sans-serif;
  font-weight: 800;
  width: 17rem;
  height: 17rem;
}
.social-icons a:nth-child(2) {
  color: red;
}
.social-icons a:last-child {
  color: #ff3679;
}
.social-icons .icon {
  width: 17rem;
  height: 17rem;
}
.footer-social em {
  display: block;
  white-space: nowrap;
  font-size: 7rem;
  margin-left: -62rem;
}
.footer-mascot {
  position: absolute;
  width: 90rem;
  height: 93rem;
  right: -31rem;
  top: -15rem;
}
.copyright {
  font-size: 7rem;
  margin-top: 7rem;
}
/* Complete secondary pages. All titles, forms and descriptions remain native HTML. */
body:not(.home) .site-shell {
  background-position: center top;
}
.inner-main {
  width: 650rem;
  margin: 28rem auto 45rem;
  min-height: 540rem;
}
.page-intro {
  padding: 22rem 26rem;
  margin-bottom: 22rem;
  border-radius: 20rem;
  background: #fffdf6ef;
  box-shadow: 0 4rem 10rem #75442413;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 7rem;
  font-size: 11rem;
  color: #456b9c;
  margin-bottom: 13rem;
}
.breadcrumb .icon {
  width: 11rem;
  height: 11rem;
}
.page-intro h1 {
  font-size: 30rem;
  margin: 4rem 0 9rem;
}
.page-intro p {
  font-size: 13rem;
  color: #48678c;
}
.content-panel {
  background: #fffdf9ef;
  border: 1rem solid #ead9be;
  box-shadow: 0 4rem 12rem #5b3a1812;
  border-radius: 16rem;
  padding: 22rem;
  margin-bottom: 20rem;
}
.content-panel h2 {
  font-size: 21rem;
  margin-bottom: 12rem;
}
.content-panel h3 {
  font-size: 15rem;
  margin: 16rem 0 9rem;
}
.content-panel p {
  font-size: 13rem;
  line-height: 1.7;
}
.catalog-filters {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr auto;
  gap: 10rem;
  background: #fffdf9;
  border: 1rem solid #ead9be;
  border-radius: 14rem;
  padding: 17rem;
  align-items: end;
  margin-bottom: 15rem;
}
.catalog-filters label,
.backend-form label {
  display: flex;
  flex-direction: column;
  gap: 6rem;
  font-size: 12rem;
  font-weight: 700;
}
.catalog-filters input,
.catalog-filters select,
.backend-form input,
.backend-form select,
.backend-form textarea {
  background: #fff;
  border: 1rem solid #c7d9e9;
  border-radius: 7rem;
  padding: 10rem;
  font-size: 12rem;
  width: 100%;
  min-width: 0;
  min-height: 38rem;
  outline: 0;
}
.input-with-icon {
  position: relative;
}
.input-with-icon > .icon {
  position: absolute;
  left: 9rem;
  top: 12rem;
  width: 15rem;
  height: 15rem;
}
.input-with-icon > input {
  padding-left: 29rem;
}
.catalog-filters .btn {
  min-height: 38rem;
}
.clear-filter {
  font-size: 11rem;
  color: #4774aa;
  grid-column: 1/-1;
}
.catalog-count {
  font-size: 13rem;
  margin: 8rem 0 15rem;
  background: #fff9;
  border-radius: 8rem;
  padding: 5rem 10rem;
  display: inline-block;
}
.catalog-products {
  gap: 15rem;
}
.catalog-products .product-card > .product-image,
.related .product-card > .product-image {
  height: 130rem;
}
.empty-results {
  text-align: center;
  padding: 45rem;
}
.empty-results > .icon {
  width: 48rem;
  height: 48rem;
  color: #97b9df;
  margin-bottom: 15rem;
}
.empty-results .btn {
  margin-top: 18rem;
}
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26rem;
  background: #fffdf9;
  border: 1rem solid #ead9be;
  border-radius: 17rem;
  padding: 22rem;
  margin-bottom: 20rem;
}
.detail-image {
  min-height: 350rem;
  border: 1rem solid #e9e5de;
  border-radius: 12rem;
  background: #fff;
}
.detail-copy h1 {
  font-size: 27rem;
  margin: 12rem 0;
}
.detail-copy > p {
  font-size: 13rem;
  line-height: 1.7;
}
.detail-copy > .tag {
  display: inline-block;
  border-radius: 10rem;
  background: #e2f6ff;
  padding: 5rem 10rem;
  font-size: 11rem;
}
.detail-facts {
  display: flex;
  flex-direction: column;
  gap: 10rem;
  margin: 17rem 0;
  font-size: 13rem;
}
.detail-facts > span {
  display: flex;
  align-items: center;
  gap: 8rem;
}
.detail-facts .icon {
  color: #00a6e7;
}
.detail-price {
  display: flex;
  gap: 13rem;
  align-items: baseline;
  margin: 15rem 0;
}
.detail-price del {
  color: #8b8b8b;
  font-size: 15rem;
}
.detail-price strong {
  color: #ff386c;
  font-size: 29rem;
}
.connection-note {
  font-size: 10rem !important;
  color: #778ba5;
  margin-top: 12rem;
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 5rem;
}
.connection-note .icon {
  width: 12rem;
  height: 12rem;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 5rem;
  font-weight: 700;
  font-size: 12rem;
  margin-top: 15rem;
}
.text-link .icon {
  width: 14rem;
  height: 14rem;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 14rem 0;
}
.check-list li {
  position: relative;
  padding-left: 22rem;
  margin: 10rem 0;
  font-size: 13rem;
}
.check-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
  width: 16rem;
  height: 16rem;
  display: grid;
  place-items: center;
  background: #00ba81;
  color: #fff;
  font-size: 10rem;
}
.sample-pages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15rem;
}
.sample-pages > div {
  aspect-ratio: 1/1.414;
  background: #fff;
  border: 1rem solid #e7e4db;
  border-radius: 5rem;
}
.related > h2 {
  margin: 20rem 0 16rem;
  font-size: 21rem;
}
.free-feature {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 25rem;
  align-items: center;
}
.free-feature .detail-image {
  min-height: 300rem;
}
.tag {
  display: inline-block;
  border-radius: 8rem;
  padding: 3rem 8rem;
  font-size: 11rem;
  background: #e9f6ff;
  font-weight: 700;
}
.plain-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20rem;
}
.plain-steps > div {
  position: relative;
  background: #f2faff;
  border-radius: 12rem;
  padding: 18rem 13rem;
}
.plain-steps > div > b {
  display: inline-grid;
  place-items: center;
  background: #00b28e;
  color: #fff;
  border-radius: 50%;
  width: 29rem;
  height: 29rem;
  font-size: 15rem;
}
.plain-steps h3 {
  margin: 10rem 0;
  font-size: 16rem;
}
.plain-steps p {
  font-size: 12rem;
}
.plain-steps .icon {
  width: 28rem;
  height: 28rem;
  float: right;
  color: #0699e7;
}
.member-detail {
  display: grid;
  grid-template-columns: 150rem 1fr 165rem;
  align-items: center;
  gap: 14rem;
}
.member-detail > .mascot {
  width: 150rem;
  height: 165rem;
}
.member-detail h2 {
  font-size: 18rem;
}
.member-detail .check-list li {
  font-size: 12rem;
}
.plan-panel {
  background: #fff0d8;
  border: 2rem solid #ffc365;
  border-radius: 15rem;
  padding: 15rem;
  text-align: center;
}
.plan-panel h3 {
  font-size: 14rem;
  margin: 0 0 12rem;
}
.plan-panel strong {
  display: block;
  color: #fa3b68;
  font-size: 29rem;
  white-space: nowrap;
}
.plan-panel strong small {
  font-size: 11rem;
}
.plan-panel .btn {
  display: flex;
  margin: 15rem 0 4rem;
}
.assessment-detail {
  display: grid;
  grid-template-columns: 205rem 1fr;
  gap: 30rem;
  align-items: center;
}
.assessment-detail > .mascot {
  width: 205rem;
  height: 215rem;
}
.backend-form {
  display: flex;
  flex-direction: column;
  gap: 13rem;
  margin-top: 18rem;
}
.backend-form .btn {
  min-height: 38rem;
}
.backend-form textarea {
  resize: vertical;
}
.age-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9rem;
}
.account-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20rem;
}
.account-preview h2 {
  font-size: 19rem;
  display: flex;
  align-items: center;
  gap: 7rem;
}
.account-preview h2 .icon {
  color: #ffb01c;
}
.balance-zero {
  display: block;
  font-size: 37rem;
  margin: 10rem 0;
  color: #ffaf00;
}
.balance-zero small {
  font-size: 17rem;
}
.account-preview .btn {
  margin-top: 15rem;
}
.cart-empty {
  text-align: center;
  padding: 70rem 30rem;
}
.cart-empty > .icon {
  width: 76rem;
  height: 76rem;
  color: #74bbef;
  margin-bottom: 20rem;
}
.cart-empty .btn {
  margin-top: 22rem;
  min-height: 38rem;
}
.contact-brand {
  text-align: center;
}
.contact-brand > .mascot {
  width: 170rem;
  height: 150rem;
  margin: auto;
}
.contact-brand h2 {
  font-size: 25rem;
}
.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 13rem;
  margin-top: 22rem;
}
.contact-channels > div {
  background: #edf9ff;
  border: 1rem solid #d9eefa;
  border-radius: 10rem;
  padding: 12rem;
  display: grid;
  grid-template-columns: 29rem 1fr;
  text-align: left;
  gap: 3rem 9rem;
  font-size: 12rem;
}
.contact-channels .line-symbol {
  background: #00bd62;
  color: #fff;
  width: 27rem;
  height: 27rem;
  font-size: 8rem;
  grid-row: span 2;
}
.contact-channels > .icon {
  grid-row: span 2;
}
.contact-channels small {
  grid-column: 2;
  font-size: 10rem;
  color: #778ba5;
}
.inner-main .faq-section {
  background: #ffffffea;
  border-radius: 16rem;
  padding: 20rem;
}
.inner-main .faq-section > h2 {
  font-size: 21rem;
  margin-bottom: 15rem;
}
.inner-main .faq-grid {
  grid-template-columns: 1fr 1fr;
  gap: 10rem;
}
.inner-main .faq-grid details:nth-last-child(-n + 2) {
  grid-column: auto;
}
.inner-main .faq-grid summary {
  font-size: 11rem;
  min-height: 42rem;
  padding: 8rem;
}
.inner-main .faq-grid summary .icon {
  width: 13rem;
  height: 13rem;
}
.inner-main .faq-grid details p {
  font-size: 12rem;
}
.prose h2 {
  margin-top: 28rem;
}
.notice {
  background: #fff0d7;
  border: 1rem solid #f5cc91;
  padding: 12rem;
  border-radius: 8rem;
}
@media (min-width: 1441px) {
  .site-shell {
    box-shadow: 0 0 80px #487a9125;
  }
}
@media (max-width: 760px) {
  :root {
    font-size: 1px;
  }
  body {
    font-size: 14rem;
  }
  .site-shell {
    background-size: 900rem auto;
    background-position: center 520rem;
  }
  .site-header {
    width: calc(100% - 20rem);
    height: 66rem;
    padding: 9rem 12rem;
    gap: 15rem;
    border-radius: 0 0 16rem 16rem;
    flex-wrap: nowrap;
  }
  .home .site-header {
    position: relative;
    left: 0;
    transform: none;
  }
  .brand {
    width: 141rem;
    height: 44rem;
  }
  .mobile-menu {
    display: grid;
    place-items: center;
    background: #e8f6ff;
    border-radius: 9rem;
    width: 38rem;
    height: 38rem;
    order: 7;
    margin-left: auto;
  }
  .mobile-menu .icon {
    width: 24rem;
    height: 24rem;
  }
  .cart-link .icon {
    width: 26rem;
    height: 26rem;
  }
  .cart-link span {
    width: 15rem;
    height: 15rem;
    font-size: 9rem;
  }
  .cart-link {
    margin-left: auto;
  }
  .login-link {
    font-size: 11rem;
  }
  .my-coins,
  .nav-search {
    display: none;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 70rem;
    left: 0;
    right: 0;
    background: #fff;
    border: 1rem solid #e0ebf4;
    border-radius: 15rem;
    padding: 16rem;
    font-size: 15rem;
    box-shadow: 0 14rem 24rem #174c8125;
    align-items: stretch;
    white-space: normal;
  }
  .main-nav.is-open {
    display: flex;
    flex-direction: column;
    gap: 6rem;
  }
  .main-nav > a {
    padding: 12rem;
  }
  .nav-menu > summary {
    padding: 12rem;
    justify-content: space-between;
  }
  .nav-menu > summary .icon {
    width: 16rem;
    height: 16rem;
  }
  .nav-menu > div {
    position: static;
    box-shadow: none;
    border: 0;
    background: #eff9ff;
    padding: 7rem;
    min-width: 0;
  }
  .nav-menu > div > a {
    font-size: 14rem;
    padding: 10rem;
  }
  .hero {
    height: auto;
    padding-top: 18rem;
    padding-bottom: 280rem;
    background: #e8f6ff;
  }
  .hero-art {
    inset: auto 0 0;
    height: 300rem;
    background-size: auto 100%;
    background-position: right bottom;
  }
  .hero-finder {
    position: relative;
    left: auto;
    top: auto;
    width: calc(100% - 32rem);
    max-width: 440rem;
    margin: auto;
    background: #fffdf2;
    border: 1rem solid #f3e1b9;
    border-radius: 15rem;
    box-shadow: 0 5rem 0 #e5bc81;
    padding: 15rem 18rem 17rem;
    z-index: 2;
  }
  .hero-badges {
    height: auto;
    font-size: 11rem;
    gap: 9rem;
    justify-content: flex-start;
  }
  .hero-badges > span:last-child {
    padding: 4rem 5rem;
  }
  .new-badge {
    font-size: 13rem;
  }
  .hero h1 {
    font-size: 27rem;
    letter-spacing: -1.2rem;
    white-space: normal;
    line-height: 1.25;
    margin: 13rem 0 2rem;
  }
  .hero-subjects {
    font-size: 16rem;
    letter-spacing: 1rem;
  }
  .hero-description {
    white-space: normal;
    font-size: 11rem;
    margin: 9rem 0;
    line-height: 1.65;
  }
  .hero fieldset {
    margin: 13rem 0;
  }
  .hero legend {
    font-size: 14rem;
    gap: 8rem;
  }
  .hero legend b {
    width: 21rem;
    height: 21rem;
    font-size: 13rem;
  }
  .pill-options {
    margin: 7rem 0 0;
    gap: 6rem;
  }
  .pill-options span {
    font-size: 11rem;
    min-height: 38rem;
    padding: 6rem 2rem;
  }
  .age-options span {
    font-size: 12rem;
  }
  .finder-submit {
    width: 100%;
    margin: 5rem 0 14rem;
    min-height: 44rem;
    font-size: 16rem;
  }
  .hero-benefits {
    font-size: 8rem;
    gap: 14rem;
  }
  .hero-benefits .icon {
    width: 19rem;
    height: 19rem;
  }
  .home-sections {
    width: calc(100% - 28rem);
    max-width: 680rem;
  }
  .daily-section {
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    padding: 15rem 2rem;
    gap: 18rem;
  }
  .reward-background {
    display: none;
  }
  .daily-gift,
  .daily-checkin {
    background: #fff9ed;
    border: 7rem solid #e3b078;
    border-radius: 20rem;
    padding: 10rem 13rem 16rem;
    box-shadow: 0 4rem 0 #b87c45;
  }
  .daily-section h2 {
    font-size: 20rem;
    height: auto;
    min-height: 40rem;
    border-radius: 12rem;
    margin: -13rem -17rem 10rem;
    color: #fff;
    background: linear-gradient(#ff7b9b, #ff4c75);
    text-shadow: 0 1rem 1rem #b53955;
  }
  .daily-section h2 .icon {
    width: 25rem;
    height: 25rem;
  }
  .gift-note {
    height: auto;
    font-size: 12rem;
    text-align: center;
    margin-bottom: 10rem;
  }
  .gift-note span {
    font-size: 10rem;
  }
  .gift-content {
    grid-template-columns: 1fr 1fr;
    gap: 13rem;
  }
  .daily-image {
    height: 188rem;
  }
  .gift-content h3 {
    font-size: 17rem;
  }
  .gift-tags span {
    font-size: 12rem;
  }
  .gift-content p {
    font-size: 11rem;
  }
  .gift-content .btn {
    min-height: 44rem;
    font-size: 15rem;
  }
  .daily-checkin h2 {
    justify-content: center;
    background: linear-gradient(#d1a06b, #b07c45);
    padding-left: 0;
  }
  .coin-balance {
    position: static;
    font-size: 13rem;
    padding: 7rem;
    display: flex;
    width: max-content;
    margin-left: auto;
  }
  .coin-balance .icon {
    width: 22rem;
    height: 22rem;
  }
  .checkin-intro {
    height: 65rem;
    font-size: 13rem;
    margin: 4rem 0;
  }
  .checkin-intro .mascot {
    width: 70rem;
    height: 60rem;
  }
  .checkin-days {
    padding: 10rem 1rem;
    margin: 7rem 0 12rem;
  }
  .checkin-days > div {
    font-size: 9rem;
    gap: 7rem;
  }
  .checkin-days .icon {
    width: 22rem;
    height: 22rem;
  }
  .checkin-days b {
    font-size: 13rem;
  }
  .daily-checkin > .btn {
    font-size: 16rem;
    min-height: 44rem;
  }
  .checkin-help {
    font-size: 11rem;
    margin-top: 10rem;
  }
  .section-title {
    display: block;
    margin: 10rem 3rem;
  }
  .section-title h2 {
    font-size: 23rem;
  }
  .section-title p {
    font-size: 12rem;
    margin-top: 5rem;
  }
  .subject-section {
    height: auto;
    margin-top: 15rem;
  }
  .subject-section:before,
  .age-section:before {
    display: none;
  }
  .subject-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12rem 6rem;
  }
  .subject-portal {
    height: 220rem;
  }
  .portal-art {
    inset: -10rem -2rem 0;
  }
  .portal-art img {
    height: 303rem;
    top: -27rem;
  }
  .subject-portal h3 {
    font-size: 22rem;
    padding-top: 14rem;
  }
  .portal-copy {
    height: 147rem;
    padding: 6rem 8rem 0;
    grid-template-columns: 1.1fr 1fr;
    gap: 6rem;
  }
  .subject-image-blank {
    height: 111rem;
  }
  .portal-copy ul {
    font-size: 9rem;
  }
  .subject-portal > .btn {
    font-size: 13rem;
    min-height: 38rem;
    left: 0;
    right: 0;
    bottom: 3rem;
    padding: 5rem;
  }
  .subject-portal > .btn .icon {
    width: 16rem;
    height: 16rem;
  }
  .age-section {
    height: auto;
    margin-top: 20rem;
  }
  .age-grid {
    padding: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10rem;
  }
  .age-choice {
    height: 131rem;
    background: #ffffffc4;
    border: 1rem solid #e8dccc;
    border-radius: 15rem;
    overflow: hidden;
  }
  .age-choice:last-child {
    grid-column: 1/-1;
    width: 50%;
    justify-self: center;
  }
  .age-art {
    width: 102rem;
    height: 127rem;
    left: -4rem;
  }
  .age-art img {
    height: 134rem;
  }
  .age-label {
    left: 87rem;
    top: 32rem;
    min-width: 62rem;
    background: #fff;
    border-radius: 12rem;
    padding: 7rem 4rem;
  }
  .age-label b {
    font-size: 16rem;
  }
  .age-label small {
    font-size: 10rem;
  }
  .wood-sign {
    display: none;
  }
  .discovery-section {
    height: auto;
    grid-template-columns: 1fr 130rem;
    gap: 10rem;
    margin-top: 25rem;
    padding: 0;
  }
  .assessment-card {
    grid-column: 1/-1;
    min-height: 247rem;
    padding: 18rem 14rem;
    border: 2rem solid #fff;
    border-radius: 19rem;
  }
  .assessment-card h2 {
    font-size: 21rem;
    white-space: normal;
  }
  .assessment-card > p {
    font-size: 11rem;
    width: 85%;
    line-height: 1.5;
    margin: 6rem 0;
  }
  .assessment-benefits {
    width: 64%;
    margin: 12rem 0;
  }
  .assessment-benefits li {
    font-size: 11rem;
    margin: 11rem 0;
    padding-left: 29rem;
  }
  .assessment-benefits li:before {
    width: 23rem;
    height: 23rem;
    font-size: 14rem;
  }
  .assessment-card > .btn {
    font-size: 14rem;
    min-height: 40rem;
    width: 58%;
  }
  .assessment-card > .mascot {
    width: 146rem;
    height: 159rem;
    right: -4rem;
    bottom: 7rem;
  }
  .speech-bubble {
    font-size: 10rem;
    top: 72rem;
    right: 4rem;
  }
  .difficulty-card {
    grid-column: 2;
    grid-row: 2;
    margin: 0;
    padding: 22rem 6rem;
    height: 212rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .difficulty-card h3 {
    font-size: 17rem;
  }
  .rating-stars .icon {
    width: 23rem;
    height: 23rem;
  }
  .difficulty-links {
    gap: 4rem;
  }
  .difficulty-links a {
    font-size: 16rem;
    min-width: 29rem;
    min-height: 35rem;
  }
  .games-card {
    grid-column: 1;
    grid-row: 2;
    padding: 11rem 10rem;
    min-width: 0;
  }
  .games-card h2 {
    font-size: 17rem;
    white-space: normal;
  }
  .games-card h2 .icon {
    display: none;
  }
  .games-card p {
    font-size: 10rem;
    margin: 7rem 0;
  }
  .games-card > img {
    height: 90rem;
  }
  .games-card > .btn {
    min-height: 37rem;
    font-size: 12rem;
    padding: 5rem;
  }
  .popular-section {
    padding-top: 18rem;
    min-height: 0;
  }
  .product-heading {
    display: flex;
    flex-wrap: wrap;
    gap: 6rem;
    margin: 10rem 0;
    padding: 8rem 3rem;
  }
  .product-heading h2 {
    font-size: 23rem;
  }
  .product-heading p {
    font-size: 10rem;
    flex: 1;
  }
  .product-tabs {
    width: 100%;
    order: 3;
    justify-content: space-between;
    gap: 3rem;
    padding: 4rem;
  }
  .product-tabs button {
    font-size: 11rem;
    padding: 9rem 8rem;
    min-height: 38rem;
  }
  .round-link {
    width: 29rem;
    height: 29rem;
  }
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 17rem 11rem;
  }
  .product-card {
    border-radius: 10rem;
  }
  .product-card > .product-image {
    height: 145rem;
  }
  .product-info {
    padding: 9rem 8rem 10rem;
  }
  .product-card h3 {
    font-size: 13rem;
    min-height: 35rem;
    line-height: 1.3;
    margin-bottom: 7rem;
  }
  .product-tags {
    gap: 3rem;
    flex-wrap: wrap;
  }
  .product-tags > span {
    font-size: 9rem;
    padding: 2rem 5rem;
  }
  .product-price {
    min-height: 29rem;
    padding-top: 6rem;
    gap: 9rem;
  }
  .product-price del {
    font-size: 12rem;
  }
  .product-price strong {
    font-size: 20rem;
  }
  .product-price strong small {
    font-size: 12rem;
  }
  .product-actions {
    flex-wrap: wrap;
    gap: 6rem;
    margin-top: 4rem;
  }
  .product-actions > .btn {
    flex: 1 0 100%;
    font-size: 12rem;
    min-height: 35rem;
    border-radius: 7rem;
  }
  .product-actions > .btn .icon {
    width: 15rem;
    height: 15rem;
  }
  .discount {
    font-size: 11rem;
    padding: 4rem 9rem;
  }
  .home-products:before {
    display: none;
  }
  .home-products:after {
    height: 10rem;
    bottom: -9rem;
    left: -4rem;
    right: -4rem;
  }
  .membership-referral {
    height: auto;
    grid-template-columns: 1fr;
    gap: 15rem;
    margin-top: 27rem;
    padding: 0;
  }
  .membership-card {
    min-height: 231rem;
    display: grid;
    grid-template-columns: 1fr 140rem;
    padding: 17rem 11rem 14rem 101rem;
    gap: 10rem;
  }
  .membership-card > .mascot {
    width: 140rem;
    height: 143rem;
    bottom: 43rem;
    left: -10rem;
  }
  .membership-copy {
    grid-column: 1/-1;
    padding-left: 13rem;
  }
  .membership-copy h2 {
    font-size: 23rem;
  }
  .membership-copy > p {
    font-size: 11rem;
  }
  .membership-copy ul {
    font-size: 10rem;
    padding-top: 8rem;
    line-height: 1.9;
  }
  .membership-copy li:before {
    width: 10rem;
    height: 10rem;
    font-size: 8rem;
  }
  .member-price {
    grid-column: 1/-1;
    width: auto;
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 8rem;
    border: 0;
    margin: 0 0 0 -88rem;
    gap: 5rem;
  }
  .member-price strong {
    font-size: 22rem;
  }
  .member-price small {
    font-size: 12rem;
  }
  .member-price p {
    display: none;
  }
  .member-price .btn {
    min-height: 39rem;
    font-size: 14rem;
  }
  .referral-card {
    height: 190rem;
    padding: 11rem 16rem;
    background-position: center;
  }
  .referral-card h2 {
    font-size: 22rem;
  }
  .referral-card h2 .icon {
    width: 34rem;
    height: 34rem;
  }
  .referral-card p {
    font-size: 17rem;
    margin: 4rem 0;
  }
  .referral-card strong {
    font-size: 21rem;
  }
  .referral-card small {
    font-size: 11rem;
  }
  .referral-card > .btn {
    min-height: 38rem;
    font-size: 13rem;
    margin-top: 6rem;
  }
  .ease-section {
    height: auto;
    grid-template-columns: 1fr;
    gap: 15rem;
    padding: 20rem 0 10rem;
    background: transparent;
  }
  .ease-section h2 {
    font-size: 20rem;
    margin-bottom: 9rem;
  }
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 7rem;
  }
  .benefit-grid > div {
    font-size: 11rem;
    min-height: 60rem;
    padding: 9rem;
    gap: 8rem;
  }
  .benefit-grid .icon {
    width: 29rem;
    height: 29rem;
  }
  .buy-steps {
    gap: 7rem;
  }
  .buy-steps > a {
    font-size: 11rem;
    padding: 12rem 7rem;
    min-height: 60rem;
  }
  .buy-steps b {
    width: 22rem;
    height: 22rem;
    font-size: 15rem;
  }
  .buy-steps small {
    font-size: 9rem;
  }
  .reviews-section {
    height: auto;
    padding-top: 13rem;
  }
  .reviews-section > h2 {
    font-size: 21rem;
    margin: 5rem 0 12rem;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 9rem;
  }
  .reviews-grid article {
    height: auto;
    min-height: 101rem;
    padding: 13rem;
    gap: 16rem;
  }
  .avatar {
    width: 70rem;
    height: 70rem;
  }
  .reviews-grid blockquote {
    font-size: 13rem;
    min-height: 0;
  }
  .review-stars {
    margin-top: 8rem;
  }
  .review-stars .icon {
    width: 14rem;
    height: 14rem;
  }
  .reviews-grid small {
    font-size: 10rem;
    margin-top: 0;
    padding: 0;
    text-align: left;
  }
  .home .faq-section {
    padding: 22rem 0 8rem;
  }
  .faq-section > h2 {
    font-size: 21rem;
    margin-bottom: 12rem;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 8rem;
  }
  .faq-grid details:nth-last-child(-n + 2) {
    grid-column: auto;
  }
  .faq-grid summary {
    font-size: 12rem;
    min-height: 46rem;
    padding: 10rem;
  }
  .faq-grid summary .icon {
    width: 14rem;
    height: 14rem;
  }
  .faq-grid details p {
    font-size: 13rem;
    padding: 12rem;
  }
  .site-footer {
    margin-top: 23rem;
    padding: 22rem 23rem 15rem;
    min-height: 0;
    border-radius: 35rem 35rem 0 0;
  }
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 20rem 18rem;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-brand img {
    width: 210rem;
    height: 58rem;
  }
  .footer-brand p {
    margin: 8rem 0 0;
    font-size: 11rem;
    line-height: 1.7;
  }
  .footer-content h3 {
    font-size: 13rem;
    margin-bottom: 8rem;
  }
  .footer-content > div > a:not(.btn) {
    font-size: 12rem;
    line-height: 2;
  }
  .footer-social {
    padding: 0;
  }
  .footer-social .btn {
    font-size: 12rem;
    min-height: 39rem;
  }
  .social-icons {
    gap: 17rem;
    margin: 12rem 4rem;
  }
  .social-icons a,
  .social-icons .icon {
    font-size: 23rem;
    width: 24rem;
    height: 24rem;
  }
  .footer-social em {
    white-space: normal;
    font-size: 10rem;
    margin: 0;
  }
  .footer-mascot {
    width: 92rem;
    height: 100rem;
    right: -8rem;
    top: -15rem;
  }
  .copyright {
    font-size: 10rem;
    margin-top: 20rem;
  }
  .inner-main {
    width: calc(100% - 30rem);
    margin: 22rem auto 30rem;
    min-height: 500rem;
  }
  .page-intro {
    padding: 20rem;
    margin-bottom: 17rem;
  }
  .breadcrumb {
    font-size: 12rem;
    margin-bottom: 12rem;
  }
  .page-intro h1 {
    font-size: 28rem;
    line-height: 1.3;
    margin: 5rem 0 10rem;
  }
  .page-intro p {
    font-size: 14rem;
  }
  .content-panel {
    padding: 20rem;
    margin-bottom: 17rem;
    border-radius: 16rem;
  }
  .content-panel h2 {
    font-size: 22rem;
    line-height: 1.35;
  }
  .content-panel h3 {
    font-size: 17rem;
  }
  .content-panel p {
    font-size: 14rem;
  }
  .catalog-filters {
    grid-template-columns: 1fr 1fr;
    gap: 12rem;
    padding: 17rem;
  }
  .catalog-filters > label:first-child {
    grid-column: 1/-1;
  }
  .catalog-filters label,
  .backend-form label {
    font-size: 13rem;
  }
  .catalog-filters input,
  .catalog-filters select,
  .backend-form input,
  .backend-form select,
  .backend-form textarea {
    font-size: 16rem;
    min-height: 46rem;
    padding: 10rem;
  }
  .catalog-filters .input-with-icon input {
    padding-left: 31rem;
  }
  .input-with-icon > .icon {
    top: 15rem;
    width: 17rem;
    height: 17rem;
  }
  .catalog-filters .btn {
    min-height: 44rem;
    font-size: 15rem;
  }
  .clear-filter {
    grid-column: auto;
    padding: 10rem;
    font-size: 13rem;
  }
  .catalog-count {
    font-size: 14rem;
  }
  .catalog-products {
    gap: 17rem 11rem;
  }
  .catalog-products .product-card > .product-image,
  .related .product-card > .product-image {
    height: 150rem;
  }
  .empty-results {
    padding: 35rem 18rem;
  }
  .product-detail {
    grid-template-columns: 1fr;
    gap: 20rem;
    padding: 16rem;
  }
  .detail-image {
    min-height: 350rem;
  }
  .detail-copy h1 {
    font-size: 26rem;
  }
  .detail-copy > p {
    font-size: 14rem;
  }
  .detail-facts {
    font-size: 14rem;
  }
  .detail-price strong {
    font-size: 31rem;
  }
  .btn.large {
    font-size: 17rem;
    min-height: 46rem;
    width: 100%;
  }
  .connection-note {
    font-size: 11rem !important;
  }
  .text-link {
    font-size: 14rem;
  }
  .check-list li {
    font-size: 14rem;
    line-height: 1.6;
  }
  .sample-pages {
    gap: 8rem;
  }
  .free-feature {
    grid-template-columns: 1fr;
    gap: 20rem;
  }
  .free-feature .detail-image {
    min-height: 330rem;
  }
  .plain-steps {
    grid-template-columns: 1fr;
    gap: 12rem;
  }
  .plain-steps > div {
    padding: 17rem;
  }
  .plain-steps h3 {
    font-size: 18rem;
  }
  .plain-steps p {
    font-size: 14rem;
  }
  .member-detail {
    grid-template-columns: 1fr;
    gap: 15rem;
    text-align: center;
  }
  .member-detail > .mascot {
    width: 190rem;
    height: 190rem;
    margin: auto;
  }
  .member-detail h2 {
    font-size: 22rem;
  }
  .member-detail .check-list {
    text-align: left;
    margin: 17rem auto;
    max-width: 270rem;
  }
  .member-detail .check-list li {
    font-size: 14rem;
  }
  .plan-panel {
    padding: 22rem;
  }
  .plan-panel h3 {
    font-size: 18rem;
  }
  .plan-panel strong {
    font-size: 40rem;
  }
  .plan-panel strong small {
    font-size: 15rem;
  }
  .plan-panel .btn {
    font-size: 17rem;
    min-height: 46rem;
    justify-content: center;
  }
  .assessment-detail {
    grid-template-columns: 1fr;
    gap: 15rem;
  }
  .assessment-detail > .mascot {
    width: 185rem;
    height: 195rem;
    margin: auto;
  }
  .backend-form {
    gap: 15rem;
  }
  .backend-form .btn {
    min-height: 46rem;
    font-size: 16rem;
  }
  .age-links {
    flex-direction: column;
  }
  .age-links > .btn {
    min-height: 45rem;
    font-size: 14rem;
  }
  .account-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .account-preview h2 {
    font-size: 22rem;
  }
  .account-preview .btn {
    font-size: 14rem;
    min-height: 44rem;
  }
  .cart-empty {
    padding: 45rem 22rem;
  }
  .cart-empty > .icon {
    width: 66rem;
    height: 66rem;
  }
  .cart-empty .btn {
    min-height: 46rem;
    font-size: 16rem;
  }
  .contact-brand > .mascot {
    width: 185rem;
    height: 170rem;
  }
  .contact-channels > div {
    font-size: 14rem;
    grid-template-columns: 34rem 1fr;
    padding: 15rem;
  }
  .contact-channels small {
    font-size: 12rem;
  }
  .contact-channels .line-symbol {
    width: 31rem;
    height: 31rem;
    font-size: 9rem;
  }
  .inner-main .faq-section {
    padding: 18rem;
  }
  .inner-main .faq-grid {
    grid-template-columns: 1fr;
  }
  .inner-main .faq-grid summary {
    font-size: 13rem;
    min-height: 48rem;
  }
  .inner-main .faq-grid details p {
    font-size: 14rem;
  }
}
@media (max-width: 359px) {
  .site-header {
    gap: 9rem;
  }
  .brand {
    width: 118rem;
  }
  .hero-finder {
    padding: 14rem 12rem;
  }
  .hero h1 {
    font-size: 25rem;
  }
  .hero-badges {
    font-size: 9rem;
  }
  .login-link {
    font-size: 10rem;
  }
  .discovery-section {
    grid-template-columns: 1fr 115rem;
  }
  .product-tabs button {
    font-size: 10rem;
    padding: 8rem 6rem;
  }
  .product-info {
    padding: 8rem 6rem;
  }
  .age-label {
    left: 73rem;
  }
  .age-art {
    width: 89rem;
  }
  .age-label b {
    font-size: 14rem;
  }
}
@media (min-width: 761px) {
  .brand {
    width: 132rem;
    height: 41rem;
  }
  .hero h1 {
    font-size: 25rem;
  }
  .daily-section h2 {
    transform: translateY(11rem);
  }
  .discovery-section {
    height: 172rem;
  }
  .home-products .product-card > .product-image {
    height: 91rem;
  }
  .popular-section {
    min-height: 422rem;
  }
  .home .faq-grid summary {
    font-size: 6.6rem;
    line-height: 1.2;
    padding: 3rem 6rem;
  }
  .home .faq-section {
    min-height: 58rem;
  }
  .home .site-footer {
    min-height: 114rem;
  }
}
@media (max-width: 760px) {
  .subject-portal h3 {
    padding-top: 23rem;
    white-space: nowrap;
  }
  /* ชื่อวิชายาว ต้องเล็กลงให้อยู่ในป้ายบนซุ้ม */
  .portal-thai h3,
  .portal-english h3 {
    font-size: 17rem;
    padding-top: 26rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
    animation: none !important;
  }
}

/* ดาวรีวิว + ขายแล้ว (ตัวเลขจริงจากหลังบ้าน) */
.product-stats { display: flex; flex-wrap: wrap; align-items: center; gap: 3rem 8rem; margin-top: 4rem; font-size: 7rem; color: #6b5a44; }
.product-stats .rate { color: #f5a300; white-space: nowrap; }
.product-stats .rate b { color: #073780; }
.product-stats .rate small { color: #8a7a66; font-size: inherit; }
.product-stats .sold { white-space: nowrap; }
.detail-copy .product-stats { font-size: 11rem; margin: 8rem 0 0; }
@media (max-width: 760px) {
  .product-stats { font-size: 11rem; }
  .detail-copy .product-stats { font-size: 14rem; }
}
