﻿:root {
  --warm-honey-beige: #e9cba3;
  --soft-oat-cream: #f4ede3;
  --powder-blue: #6f8fb8;
  --gentle-slate-grey: #8e949b;
  --warm-blush: #e8afa3;
  --soft-caramel: #c79a6b;
  --muted-cloud-grey: #d8d6d2;
  --deep-charcoal: #2f2f2f;
  --line: #dfddd8;
  --page-width: 1040px;
  --header-height: 82px;
  --section-gap: 2.25rem;
  --header-nav-gap: 2rem;
  --selection-underline-width: 2ch;
  --selection-underline-thickness: 3px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--deep-charcoal);
  font-family: "Manrope", "Segoe UI", sans-serif;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  backdrop-filter: blur(12px);
}

.header-inner {
  width: min(calc(100% - 3rem), var(--page-width));
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-title,
h1,
h2,
h3,
.cta-button,
.book-title {
  font-family: "Nunito", "Arial Rounded MT Bold", sans-serif;
}

.site-title {
  font-size: clamp(1.65rem, 2.7vw, 2.25rem);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--header-nav-gap);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--header-nav-gap);
}

.nav-link,
.menu-link {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.nav-link-active {
  color: var(--powder-blue);
  position: relative;
}

.nav-link-active::after {
  content: "";
  position: absolute;
  left: 0;
  width: var(--selection-underline-width);
  bottom: -0.55rem;
  height: var(--selection-underline-thickness);
  background: var(--powder-blue);
}

.menu-wrap {
  display: flex;
  align-items: center;
  position: relative;
}

.menu-toggle {
  width: 2.8rem;
  height: 2.8rem;
  padding: 0;
  border: 0;
  background: transparent;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.32rem;
  line-height: 0;
  cursor: pointer;
}

.menu-toggle span {
  width: 1.5rem;
  height: 1.5px;
  margin: 0 auto;
  background: var(--gentle-slate-grey);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-wrap.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-wrap.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-wrap.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.menu-panel {
  position: absolute;
  top: calc(100% + 0.9rem);
  right: 0;
  min-width: 180px;
  padding: 1rem 0;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 30px rgba(47, 47, 47, 0.08);
}

.menu-link {
  display: block;
  padding: 0.5rem 1.1rem;
}

.menu-link-active {
  color: var(--warm-blush);
}

.page,
.site-footer {
  width: min(calc(100% - 3rem), var(--page-width));
  margin: 0 auto;
}

.page {
  padding-top: 1.85rem;
}

.hero {
  padding-top: 3.6rem;
  padding-bottom: var(--section-gap);
}

.feature-section,
.story-section,
.how-section,
.footer-block {
  padding: 0 0 var(--section-gap);
}

h1 {
  margin: 0;
  max-width: 8.5ch;
  font-size: clamp(3.3rem, 7.2vw, 5.5rem);
  line-height: 1;
  letter-spacing: 0.015em;
  font-weight: 800;
}

.hero-rule {
  width: 92px;
  height: 4px;
  margin: 2rem 0 1.8rem;
  background: var(--powder-blue);
}

.hero-copy,
.steps-list,
.story-section p,
.contact-grid a,
.policy-list a {
  font-size: clamp(1.35rem, 2.8vw, 1.65rem);
  line-height: 1.65;
  letter-spacing: 0.018em;
}

.hero-copy {
  max-width: 18ch;
  margin: 0 0 var(--section-gap);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 292px;
  min-height: 78px;
  padding: 1rem 2rem;
  background: #ffffff;
  border: 4px solid var(--powder-blue);
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: background 0.2s ease, transform 0.2s ease;
}

.cta-button:hover,
.cta-button:focus-visible {
  background: #f7fbff;
  transform: translateY(-1px);
}

.section-divider {
  width: 100%;
  height: 1px;
  background: var(--line);
  margin-bottom: var(--section-gap);
}

h2 {
  margin: 0 0 var(--section-gap);
  font-size: clamp(1.85rem, 3vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: 0.02em;
  font-weight: 800;
}

.book-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 540px;
}

.book-card {
  display: grid;
  gap: 0.8rem;
}

.book-cover {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  padding: 0;
  display: grid;
  align-content: start;
  justify-items: center;
  border: 1px solid #f0e8e2;
  background: #f8f0ee;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.book-cover:hover,
.book-cover:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(47, 47, 47, 0.08);
}

.book-cover-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.book-title {
  position: relative;
  z-index: 2;
  margin-top: 0.1rem;
  text-align: center;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  line-height: 1.32;
  font-weight: 800;
  letter-spacing: 0.025em;
}

.book-illustration {
  position: absolute;
  left: 50%;
  bottom: 1.2rem;
  transform: translateX(-50%);
}

.book-illustration-potty {
  width: 62%;
  height: 58%;
  background:
    radial-gradient(circle at 62% 18%, #f4d8b1 0 14%, transparent 14.5%),
    radial-gradient(circle at 57% 18%, #d1b28f 0 2.7%, transparent 3%),
    radial-gradient(circle at 67% 18%, #d1b28f 0 2.7%, transparent 3%),
    linear-gradient(#f1ddc6 0 0) 59% 29% / 18% 20% no-repeat,
    linear-gradient(#eed9bf 0 0) 59% 47% / 26% 21% no-repeat,
    linear-gradient(#6c88b0 0 0) 55% 70% / 12% 16% no-repeat,
    linear-gradient(#6c88b0 0 0) 67% 70% / 12% 16% no-repeat,
    linear-gradient(#c4cad6 0 0) 22% 78% / 38% 8% no-repeat,
    linear-gradient(#d7dbe3 0 0) 24% 58% / 34% 22% no-repeat,
    linear-gradient(#f6f6f4 0 0) 30% 47% / 20% 18% no-repeat;
  background-repeat: no-repeat;
}

.book-illustration-calm {
  width: 62%;
  height: 56%;
  background:
    radial-gradient(circle at 50% 17%, #8a5a3c 0 13%, transparent 13.5%),
    radial-gradient(circle at 50% 19%, #f0d4b9 0 9%, transparent 9.5%),
    radial-gradient(circle at 42% 18%, #8a5a3c 0 5.5%, transparent 6%),
    radial-gradient(circle at 58% 18%, #8a5a3c 0 5.5%, transparent 6%),
    radial-gradient(circle at 50% 46%, #f0d4b9 0 18%, transparent 18.5%),
    linear-gradient(#f8efe9 0 0) 50% 44% / 20% 16% no-repeat,
    linear-gradient(#7f9fca 0 0) 38% 67% / 22% 10% no-repeat,
    linear-gradient(#7f9fca 0 0) 62% 67% / 22% 10% no-repeat,
    radial-gradient(circle at 50% 22%, #8fd0bb 0 4.5%, transparent 5%);
  background-repeat: no-repeat;
}

.book-imprint {
  position: absolute;
  left: 50%;
  bottom: 0.8rem;
  transform: translateX(-50%);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.book-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: clamp(1rem, 1.9vw, 1.35rem);
  letter-spacing: 0.02em;
}

.book-link-arrow {
  position: relative;
  display: inline-block;
  width: 1.5rem;
  height: 0.8rem;
  flex: 0 0 auto;
}

.book-link-arrow::before,
.book-link-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.book-link-arrow::before {
  width: 1.1rem;
  height: 2px;
  background: currentColor;
}

.book-link-arrow::after {
  width: 0.52rem;
  height: 0.52rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.story-section p {
  max-width: 34ch;
  margin: 0 0 0.6rem;
}

.steps-list {
  margin: 0 0 var(--section-gap);
  padding-left: 0;
  list-style: none;
}

.footer-block {
  padding-bottom: var(--section-gap);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

h3 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.55rem, 2.5vw, 1.9rem);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.policy-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
  align-items: center;
}

.policy-list a {
  padding: 0.2rem 0;
}

.copyright {
  margin: 4.5rem 0 6rem;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.7;
}

@media (max-width: 820px) {
  :root {
    --header-height: 72px;
  }

  .header-inner,
  .page,
  .site-footer {
    width: min(calc(100% - 1.6rem), var(--page-width));
  }

  .site-nav {
    gap: var(--header-nav-gap);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .shop-item {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .cart-layout {
    grid-template-columns: 1fr;
  }

  .account-layout {
    grid-template-columns: 1fr;
  }

  .about-layout,
  .reviews-grid,
  .about-values {
    grid-template-columns: 1fr;
  }

  .shop-copy p {
    max-width: 14ch;
    font-size: clamp(1.5rem, 5vw, 2.2rem);
  }

  .option-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .product-config-layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .option-input-wrap {
    max-width: none;
  }

  .character-stage-sticky {
    position: static;
  }

  .character-photo {
    width: min(100%, 360px);
  }

  .cta-button {
    min-width: 240px;
    min-height: 68px;
  }
}

@media (max-width: 620px) {
  .header-inner {
    gap: 0.8rem;
  }

  .site-nav {
    display: flex;
    gap: 0.9rem;
  }

  .site-title {
    font-size: 1.12rem;
    letter-spacing: 0.01em;
  }

  .nav-link {
    font-size: 0.92rem;
    letter-spacing: 0.02em;
  }

  .header-actions {
    gap: 0.9rem;
  }

  .menu-toggle {
    width: 2.2rem;
    height: 2.2rem;
  }

  .menu-toggle span {
    width: 1.2rem;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .book-grid {
    gap: 0.9rem;
    max-width: none;
  }

  .book-card {
    gap: 0.55rem;
  }

  .book-link {
    gap: 0.35rem;
    font-size: 0.96rem;
  }

  .book-link-arrow {
    width: 1.25rem;
    height: 0.72rem;
  }

  .book-link-arrow::before {
    width: 0.9rem;
  }

  h2 {
    margin-top: 2.2rem;
  }

  .hero-copy,
  .steps-list,
  .story-section p,
  .contact-grid a,
  .policy-list a {
    font-size: 1.05rem;
    line-height: 1.8;
  }

  .menu-panel {
    min-width: 160px;
  }

  .copyright {
    margin-bottom: 4rem;
    font-size: 1rem;
  }

  .shop-section {
    padding-top: 2.4rem;
  }

  .shop-title {
    margin-bottom: 2.1rem;
    font-size: 2.35rem;
  }

  .shop-cover {
    max-width: 210px;
  }

  .cart-section {
    padding-top: 2.4rem;
  }

  .cart-card {
    padding: 1.15rem;
  }

  .account-section {
    padding-top: 2.4rem;
  }

  .faq-section {
    padding-top: 2.4rem;
  }

  .about-section,
  .reviews-section {
    padding-top: 2.4rem;
  }

  .account-card {
    padding: 1.15rem;
  }

  .about-card,
  .review-card {
    padding: 1.15rem;
  }

  .cart-item {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .cart-item-price {
    grid-column: 2;
  }

  .account-list-item {
    display: grid;
    gap: 0.45rem;
  }

  .character-photo {
    width: min(100%, 260px);
  }

  .product-page {
    padding-top: 2.5rem;
  }

  .character-section {
    padding-bottom: 3rem;
  }

  .option-values-two,
  .option-values-three,
  .option-values-four {
    grid-template-columns: repeat(2, minmax(110px, 1fr));
  }

  .option-values-swatches,
  .option-values-swatch-grid {
    grid-template-columns: repeat(3, minmax(56px, 72px));
    gap: 1rem 1.4rem;
  }

  .swatch-button {
    width: 64px;
    height: 48px;
  }
}


.shop-page {
  min-height: calc(100vh - 180px);
}

.shop-section {
  padding-top: 3.5rem;
}

.shop-title {
  max-width: none;
  margin-bottom: 2.75rem;
  font-size: clamp(3rem, 5.2vw, 4.1rem);
  letter-spacing: 0.02em;
}

.shop-list {
  display: grid;
  gap: 2.7rem;
}

.shop-item {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: start;
  align-items: start;
  gap: 0.9rem;
}

.shop-cover-wrap {
  display: grid;
  gap: 0.8rem;
}

.shop-cover {
  max-width: 252px;
  aspect-ratio: 1 / 1;
}

.shop-link {
  width: fit-content;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.shop-copy {
  padding-top: 0;
  max-width: 252px;
}

.shop-copy p {
  max-width: none;
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.5;
  font-weight: 400;
}

.shop-footer .copyright {
  margin-top: 6rem;
  margin-bottom: 2rem;
  line-height: 1.4;
}

.shop-cover-placeholder {
  background: transparent;
  border: 0;
}

.shop-thumbnail-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background: #f3ecdf;
}

.cart-page {
  min-height: calc(100vh - 180px);
}

.cart-section {
  padding-top: 3rem;
  padding-bottom: 2rem;
}

.cart-title {
  max-width: none;
  font-size: clamp(2.6rem, 4.8vw, 3.7rem);
  letter-spacing: 0.02em;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.9fr);
  gap: 2rem;
  align-items: start;
}

.cart-card {
  border: 1px solid var(--line);
  padding: 1.5rem;
  background: #ffffff;
}

.cart-card-title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  font-weight: 800;
}

.cart-item {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: start;
}

.cart-item-thumb {
  width: 104px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f8f0ee;
  border: 1px solid #f0e8e2;
}

.cart-item-copy {
  display: grid;
  gap: 0.35rem;
}

.cart-item-title {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 800;
}

.cart-item-meta,
.cart-item-empty p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.cart-item-price {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.4;
  white-space: nowrap;
}

.cart-inline-link,
.cart-secondary-link {
  color: var(--powder-blue);
}

.cart-summary {
  display: grid;
  gap: 1rem;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1rem;
  line-height: 1.6;
}

.cart-summary-total {
  font-weight: 700;
}

.cart-checkout-button {
  width: 100%;
  min-width: 0;
  margin-top: 0.5rem;
}

.cart-secondary-link {
  width: fit-content;
  font-size: 1rem;
  line-height: 1.5;
}

.account-page {
  min-height: calc(100vh - 180px);
}

.account-section {
  padding-top: 3rem;
  padding-bottom: 2rem;
}

.account-title {
  max-width: none;
  font-size: clamp(2.6rem, 4.8vw, 3.7rem);
  letter-spacing: 0.02em;
}

.account-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: start;
}

.account-card {
  border: 1px solid var(--line);
  padding: 1.5rem;
  background: #ffffff;
}

.account-card-title {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  font-weight: 800;
}

.account-copy,
.account-secondary-copy,
.account-item-meta,
.account-detail-value,
.account-item-status {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.account-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.account-field {
  display: grid;
  gap: 0.45rem;
}

.account-label,
.account-detail-label {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
  color: rgba(47, 47, 47, 0.74);
}

.account-input {
  min-height: 3.3rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(111, 143, 184, 0.4);
  background: #ffffff;
  font: inherit;
  color: var(--deep-charcoal);
}

.account-input::placeholder {
  color: rgba(47, 47, 47, 0.5);
}

.account-input:focus {
  outline: none;
  border-color: var(--powder-blue);
  box-shadow: 0 0 0 2px rgba(111, 143, 184, 0.12);
}

.account-button {
  min-width: 0;
  width: 100%;
  margin-top: 0.35rem;
}

.account-list {
  display: grid;
  gap: 1rem;
}

.account-list-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
}

.account-item-title {
  margin: 0 0 0.25rem;
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 800;
}

.account-detail-grid {
  display: grid;
  gap: 1.25rem;
}

.faq-page {
  min-height: calc(100vh - 180px);
}

.faq-section {
  padding-top: 3rem;
  padding-bottom: 2rem;
}

.faq-title {
  max-width: none;
  font-size: clamp(2.6rem, 4.8vw, 3.7rem);
  letter-spacing: 0.02em;
}

.faq-list {
  display: grid;
  gap: 0.95rem;
  max-width: 780px;
}

.faq-item {
  border: 1px solid var(--line);
  background: #ffffff;
  padding: 0;
}

.faq-question {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 1.2rem 3.4rem 1.2rem 1.25rem;
  font-family: "Nunito", "Arial Rounded MT Bold", sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  line-height: 1.3;
  font-weight: 700;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--powder-blue);
}

.faq-item[open] .faq-question::after {
  content: "-";
}

.faq-answer {
  margin: 0;
  padding: 0 1.25rem 1.25rem;
  max-width: 52ch;
  font-size: 1.05rem;
  line-height: 1.75;
}

.about-page,
.reviews-page {
  min-height: calc(100vh - 180px);
}

.about-section,
.reviews-section {
  padding-top: 3rem;
  padding-bottom: 2rem;
}

.about-title,
.reviews-title {
  max-width: none;
  font-size: clamp(2.6rem, 4.8vw, 3.7rem);
  letter-spacing: 0.02em;
}

.about-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.about-card,
.review-card {
  border: 1px solid var(--line);
  padding: 1.5rem;
  background: #ffffff;
}

.about-card-wide {
  grid-column: 1 / -1;
}

.about-card-title {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  font-weight: 800;
}

.about-copy {
  margin: 0 0 1rem;
  max-width: 50ch;
  font-size: 1rem;
  line-height: 1.75;
}

.about-copy:last-child {
  margin-bottom: 0;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.about-value-title {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  line-height: 1.3;
  font-weight: 800;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.review-quote {
  margin: 0 0 1rem;
  font-size: 1.08rem;
  line-height: 1.8;
}

.review-author {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.5;
  color: rgba(47, 47, 47, 0.74);
}

.product-page {
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.product-header {
  padding-bottom: 2rem;
}

.product-title {
  max-width: none;
  font-size: clamp(2.4rem, 4vw, 3.1rem);
  letter-spacing: 0.02em;
}

.product-rule {
  font-size: clamp(2.4rem, 4vw, 3.1rem);
  width: var(--selection-underline-width);
  height: var(--selection-underline-thickness);
  margin-top: 0.9rem;
  margin-bottom: 2.3rem;
  background: var(--powder-blue);
}

.product-subtitle {
  margin: 0 0 2.75rem;
  max-width: none;
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 800;
}

.language-section {
  display: grid;
  justify-items: start;
  gap: 2rem;
  padding: 1.1rem 0 3rem;
}

.language-title {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 800;
}

.character-section {
  padding: 1.4rem 0 4rem;
}

.product-config-layout {
  display: grid;
  grid-template-columns: minmax(260px, 420px) minmax(260px, 1fr);
  gap: 3rem;
  align-items: start;
}

.character-stage {
  display: grid;
  justify-items: center;
  gap: 2.1rem;
  margin-bottom: 3rem;
}

.character-stage-left {
  justify-items: start;
}

.character-stage-sticky {
  position: sticky;
  top: calc(var(--header-height) + 1rem);
  z-index: 1;
  background: #ffffff;
}

.character-photo {
  display: block;
  width: min(100%, 420px);
  aspect-ratio: 1 / 1.06;
  object-fit: cover;
  object-position: center 16%;
}

.character-art {
  width: min(100%, 460px);
  aspect-ratio: 0.63;
  border: 1px solid #f0e8e2;
  background:
    radial-gradient(circle at 50% 8%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.45) 26%, transparent 64%),
    linear-gradient(180deg, #f7eeef 0%, #f9f1ea 100%);
  position: relative;
  overflow: hidden;
}

.character-art::before,
.character-art::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.child-art::before {
  top: 13%;
  width: 44%;
  height: 24%;
  border-radius: 45% 45% 42% 42%;
  background:
    radial-gradient(circle at 30% 38%, #7d4a2b 0 8%, transparent 8.5%),
    radial-gradient(circle at 70% 38%, #7d4a2b 0 8%, transparent 8.5%),
    radial-gradient(circle at 50% 58%, #f1d8bf 0 52%, transparent 52.5%),
    radial-gradient(circle at 24% 30%, #7b4729 0 19%, transparent 19.5%),
    radial-gradient(circle at 76% 30%, #7b4729 0 19%, transparent 19.5%),
    radial-gradient(circle at 50% 10%, #8b532f 0 38%, transparent 38.5%);
}

.child-art::after {
  bottom: 4%;
  width: 58%;
  height: 64%;
  background:
    radial-gradient(circle at 50% 9%, #8a4f2f 0 16%, transparent 16.5%),
    radial-gradient(circle at 50% 15%, #f1d8bf 0 11%, transparent 11.5%),
    linear-gradient(#f9eee7 0 0) 50% 32% / 34% 22% no-repeat,
    linear-gradient(#7fa0cf 0 0) 50% 67% / 34% 26% no-repeat,
    linear-gradient(#f1d8bf 0 0) 36% 48% / 10% 18% no-repeat,
    linear-gradient(#f1d8bf 0 0) 64% 48% / 10% 18% no-repeat,
    linear-gradient(#f1d8bf 0 0) 44% 89% / 8% 9% no-repeat,
    linear-gradient(#f1d8bf 0 0) 56% 89% / 8% 9% no-repeat;
  background-repeat: no-repeat;
}

.adult-art::before {
  top: 11%;
  width: 42%;
  height: 23%;
  border-radius: 46% 46% 42% 42%;
  background:
    radial-gradient(circle at 32% 40%, #7d4a2b 0 8%, transparent 8.5%),
    radial-gradient(circle at 68% 40%, #7d4a2b 0 8%, transparent 8.5%),
    radial-gradient(circle at 50% 59%, #f1d8bf 0 52%, transparent 52.5%),
    radial-gradient(circle at 25% 26%, #7b4729 0 21%, transparent 21.5%),
    radial-gradient(circle at 75% 26%, #7b4729 0 21%, transparent 21.5%),
    radial-gradient(circle at 50% 12%, #8b532f 0 40%, transparent 40.5%);
}

.adult-art::after {
  bottom: 5%;
  width: 56%;
  height: 66%;
  background:
    radial-gradient(circle at 50% 9%, #8a4f2f 0 16%, transparent 16.5%),
    radial-gradient(circle at 50% 15%, #f1d8bf 0 11%, transparent 11.5%),
    linear-gradient(#f8ece6 0 0) 50% 31% / 34% 20% no-repeat,
    linear-gradient(#7fa0cf 0 0) 50% 66% / 34% 28% no-repeat,
    linear-gradient(#f1d8bf 0 0) 36% 47% / 10% 19% no-repeat,
    linear-gradient(#f1d8bf 0 0) 64% 47% / 10% 19% no-repeat,
    linear-gradient(#f1d8bf 0 0) 44% 90% / 8% 8% no-repeat,
    linear-gradient(#f1d8bf 0 0) 56% 90% / 8% 8% no-repeat;
  background-repeat: no-repeat;
}

.teacher-art::after {
  background:
    radial-gradient(circle at 50% 9%, #8a4f2f 0 16%, transparent 16.5%),
    radial-gradient(circle at 50% 15%, #f1d8bf 0 11%, transparent 11.5%),
    linear-gradient(#f6ebe5 0 0) 50% 31% / 34% 20% no-repeat,
    linear-gradient(#8fabc8 0 0) 50% 66% / 34% 28% no-repeat,
    linear-gradient(#f1d8bf 0 0) 36% 47% / 10% 19% no-repeat,
    linear-gradient(#f1d8bf 0 0) 64% 47% / 10% 19% no-repeat,
    linear-gradient(#f1d8bf 0 0) 44% 90% / 8% 8% no-repeat,
    linear-gradient(#f1d8bf 0 0) 56% 90% / 8% 8% no-repeat;
}

.character-name {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
}

.option-grid {
  display: grid;
  gap: 2.35rem;
}

.option-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  align-items: start;
}

.option-label {
  margin: 0;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.02em;
}

.option-label-stack {
  line-height: 1.45;
}

.option-values {
  display: grid;
  align-items: start;
  gap: 1.4rem 2rem;
}

.option-values-two {
  grid-template-columns: repeat(2, minmax(120px, 120px));
}

.option-values-three {
  grid-template-columns: repeat(3, minmax(120px, 120px));
}

.option-values-four {
  grid-template-columns: repeat(4, minmax(120px, 120px));
}

.option-values-swatches {
  grid-template-columns: repeat(3, minmax(64px, 84px));
  gap: 1.6rem 2.2rem;
}

.option-values-swatch-grid {
  grid-template-columns: repeat(3, minmax(64px, 84px));
  gap: 1.6rem 2.2rem;
}

.choice-button,
.swatch-button {
  position: relative;
  min-height: 2.8rem;
  padding: 0.2rem 0.3rem 0.55rem;
  border: 0;
  background: transparent;
  color: var(--deep-charcoal);
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  line-height: 1.25;
  letter-spacing: 0.02em;
  text-align: left;
  cursor: pointer;
  border-radius: 0;
  transition: color 0.2s ease;
}

.choice-button.choice-active,
.swatch-button.choice-active {
  color: var(--powder-blue);
  background: transparent;
  box-shadow: none;
}

.choice-underline::after {
  content: "";
  position: absolute;
  left: 0.3rem;
  width: var(--selection-underline-width);
  bottom: 0;
  height: var(--selection-underline-thickness);
  background: var(--powder-blue);
  opacity: 0.92;
}

.swatch-button {
  width: 56px;
  height: 56px;
  display: inline-grid;
  place-items: center;
  padding: 4px;
  background: #ffffff;
  border: 2px solid transparent;
}

.swatch {
  display: block;
  width: 100%;
  height: 100%;
}

.swatch-skin-1 {
  background: #fee3b9;
}

.swatch-skin-2 {
  background: #efb073;
}

.swatch-skin-3 {
  background: #7b4226;
}

.swatch-dummy-pink {
  background: #e8bdd6;
}

.swatch-dummy-blue {
  background: #8eaacc;
}

.swatch-dummy-green {
  background: #5d8f74;
}

.swatch-dummy-purple {
  background: #754a8b;
}

.swatch-dummy-white {
  background: #ececec;
}

.swatch-dummy-yellow {
  background: #ffe09a;
}

.option-input-wrap {
  max-width: 640px;
}

.option-hint {
  margin: 0 0 0.85rem;
  max-width: 28ch;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: rgba(47, 47, 47, 0.82);
}

.text-option {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--deep-charcoal);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.55;
  letter-spacing: 0.02em;
  font-style: italic;
}

.text-entry {
  min-height: 3.6rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(111, 143, 184, 0.45);
  background: #ffffff;
  font-size: clamp(1.1rem, 1.7vw, 1.3rem);
  line-height: 1.3;
  font-style: normal;
}

.text-option::placeholder {
  color: rgba(47, 47, 47, 0.55);
  opacity: 1;
}

.text-option:focus {
  outline: none;
}

.text-entry:focus {
  border-color: var(--powder-blue);
  box-shadow: 0 0 0 2px rgba(111, 143, 184, 0.12);
}

.product-footer .copyright {
  margin-top: 2rem;
  margin-bottom: 2rem;
  line-height: 1.4;
}

.swatch-button.choice-active {
  border: 2px solid rgba(111, 143, 184, 0.9);
}




