:root {
  --ink: #243033;
  --muted: #647276;
  --paper: #fffaf4;
  --surface: #ffffff;
  --line: #eadfd4;
  --coral: #ef6f5e;
  --coral-dark: #bf4238;
  --mint: #6fb9a7;
  --blue: #5b8ec7;
  --yellow: #f0bc45;
  --shadow: 0 22px 55px rgba(55, 42, 32, 0.13);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.8), rgba(255, 250, 244, 1) 520px),
    var(--paper);
}

main {
  flex: 1 0 auto;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  box-sizing: border-box;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - 40px, 1180px);
  margin: 14px auto 0;
  padding: 10px 22px;
  border: 1px solid rgba(234, 223, 212, 0.78);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 48px rgba(55, 42, 32, 0.1);
}

.brand,
.site-footer span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 0;
  background: none;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.brand-mark img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
  border: 0;
  background: transparent;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-name {
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 900;
  line-height: 1.02;
  color: #17272a;
  letter-spacing: 0.01em;
  text-shadow: 0 8px 22px rgba(239, 111, 94, 0.13);
}

.brand-subtitle {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.1;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  color: var(--muted);
  font-size: 15px;
}

nav a:hover {
  color: var(--ink);
  text-shadow: 0 0 18px rgba(111, 185, 167, 0.34);
}

.header-action,
.primary-button,
.ghost-button,
.cart-panel a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 750;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  padding: 3px;
  border: 1px solid rgba(36, 48, 51, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
}

.language-button {
  min-width: 38px;
  min-height: 34px;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.language-button.is-active {
  color: #fff;
  background: var(--mint);
  box-shadow: 0 5px 14px rgba(111, 185, 167, 0.28);
}

.header-action,
.primary-button {
  color: #fff;
  background: var(--coral);
  box-shadow: 0 12px 22px rgba(239, 111, 94, 0.23);
}

.header-action {
  padding: 0 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-action:hover,
.primary-button:hover,
.ghost-button:hover {
  transform: translateY(-1px);
}

.primary-button {
  border: 0;
  padding: 0 22px;
  cursor: pointer;
}

.ghost-button {
  padding: 0 20px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(36, 48, 51, 0.15);
}

.hero {
  position: relative;
  min-height: var(--home-hero-visual-height, 273px);
  margin-top: -78px;
  padding-top: 78px;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 72% 48%, rgba(255, 255, 255, 0.04), rgba(255, 250, 244, 0.24) 28%, rgba(255, 250, 244, 0.84) 68%),
    linear-gradient(90deg, rgba(255, 250, 244, 0.98) 0%, rgba(255, 250, 244, 0.88) 33%, rgba(255, 250, 244, 0.22) 68%, rgba(255, 250, 244, 0.08) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 1;
  height: clamp(84px, 10vw, 150px);
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 250, 244, 0), rgba(255, 250, 244, 0.72) 58%, var(--paper) 100%);
}

.hero-showcase {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.74), rgba(255, 236, 221, 0.42) 18%, rgba(255, 255, 255, 0.86) 36%, rgba(255, 219, 192, 0.48) 52%, rgba(255, 255, 255, 0.82) 70%, rgba(255, 244, 235, 0.64)),
    radial-gradient(circle at 73% 46%, rgba(255, 255, 255, 0.86), transparent 25%),
    radial-gradient(circle at 83% 18%, rgba(255, 210, 174, 0.22), transparent 29%),
    linear-gradient(120deg, #fffdf9 0%, #fff7ef 55%, #f8fffc 100%);
  background-size: 280% 280%, 100% 100%, 100% 100%, 100% 100%;
  animation: peachLight 9s ease-in-out infinite;
}

.hero-showcase::before,
.hero-showcase::after {
  content: "";
  position: absolute;
  inset: -18%;
  background:
    radial-gradient(ellipse at 72% 45%, rgba(255, 255, 255, 0.7), transparent 18%),
    repeating-radial-gradient(ellipse at 72% 45%, rgba(255, 255, 255, 0.32) 0 2px, transparent 2px 28px);
  opacity: 0.55;
  z-index: 0;
  transform: rotate(-9deg);
  animation: whiteWave 8s ease-in-out infinite;
  pointer-events: none;
}

.hero-showcase::after {
  opacity: 0.28;
  transform: rotate(7deg) scale(1.08);
  animation-delay: -3.5s;
}

.hero-piece {
  position: absolute;
  display: block;
  z-index: 1;
  width: clamp(132px, 10vw, 168px);
  margin: 0;
  padding: 8px 8px 12px;
  border: 1px solid rgba(234, 223, 212, 0.8);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 48px rgba(55, 42, 32, 0.14);
  transition: transform 0.28s ease, filter 0.28s ease, box-shadow 0.28s ease;
  animation: floatToy var(--float-speed, 6s) ease-in-out infinite;
  pointer-events: auto;
}

.hero-piece img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 0;
  border-radius: 10px;
  box-shadow: none;
}

.hero-stars {
  display: block;
  margin-top: 7px;
  color: #f0bc45;
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 1;
}

.hero-piece figcaption {
  position: static;
  width: auto;
  margin-top: 7px;
  padding-right: 18px;
  color: #3b3230;
  font-size: clamp(10px, 0.82vw, 12px);
  font-weight: 800;
  line-height: 1.18;
  text-align: left;
  text-shadow: none;
}

.hero-piece:hover {
  z-index: 40;
  filter: saturate(1.1) contrast(1.04);
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(55, 42, 32, 0.2);
  animation-duration: 2.4s;
}

.piece-longneck { --float-speed: 6.5s; right: 40%; top: 22%; animation-delay: -0.2s; }
.piece-hamster-center { --float-speed: 4.8s; right: 40%; top: 61%; z-index: 3; animation-delay: -1.6s; }
.piece-witch { --float-speed: 5.4s; right: 19%; top: 20%; width: clamp(230px, 20vw, 320px); z-index: 4; animation-delay: -1.4s; }
.piece-heart { --float-speed: 7.2s; right: 5%; top: 20%; animation-delay: -2.2s; }
.piece-round-chick { --float-speed: 5.2s; right: 8%; top: 60%; animation-delay: -3.5s; }

.hero-managed-piece {
  left: var(--hero-x);
  right: auto;
  top: var(--hero-y);
  z-index: var(--hero-z);
  width: var(--hero-w);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
  padding: 36px 0 26px;
}

.hero-signature {
  max-width: 10ch;
  margin: 0 0 14px;
  font-family: "Brush Script MT", "Segoe Script", Georgia, serif;
  font-size: clamp(50px, 8.2vw, 96px);
  font-weight: 500;
  line-height: 0.86;
  color: #3a2b22;
  letter-spacing: 0;
  text-transform: none;
  -webkit-text-stroke: 0.9px #f3b94b;
  paint-order: stroke fill;
  text-shadow:
    0 1px 0 rgba(255, 238, 168, 0.95),
    0 0 10px rgba(255, 194, 91, 0.72),
    0 0 24px rgba(255, 174, 80, 0.38),
    0 14px 34px rgba(91, 52, 16, 0.18);
}

.hero-quality {
  position: relative;
  display: inline-flex;
  isolation: isolate;
  margin: 0;
  padding: 11px 16px;
  border: 1px solid rgba(36, 48, 51, 0.14);
  border-radius: 999px;
  color: #253235;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.9), rgba(255, 237, 222, 0.88)),
    rgba(255, 255, 255, 0.72);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 850;
  box-shadow: 0 15px 32px rgba(55, 42, 32, 0.1);
}

.hero-quality::before,
.hero-quality::after {
  content: "";
  position: absolute;
  inset: -10px;
  z-index: -1;
  border: 1px solid rgba(239, 111, 94, 0.28);
  border-radius: inherit;
  opacity: 0;
  animation: heartbeatWave 2.8s ease-out infinite;
}

.hero-quality::after {
  animation-delay: 0.85s;
  border-color: rgba(111, 185, 167, 0.24);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral-dark);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 11ch;
  margin-bottom: 18px;
  font-size: clamp(42px, 7.2vw, 76px);
  line-height: 0.96;
  letter-spacing: 0;
}

.faq-page h1,
.reviews-page h1 {
  max-width: 13ch;
  font-size: clamp(34px, 4.8vw, 54px);
  line-height: 1;
}

.catalog-page .catalog-page-title {
  max-width: none;
  margin-bottom: 22px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 19px;
  line-height: 1.2;
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 28px;
  color: #435154;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.58;
}

.catalog-section,
.process-section,
.reviews-section,
.order-section,
.faq-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.section-heading p,
.steps p,
.reviews p,
.order-section p,
.faq-section p,
.product-card p {
  color: var(--muted);
  line-height: 1.55;
}

.catalog-section,
.process-section,
.reviews-section,
.order-section,
.faq-section {
  padding: 44px 0;
}

.section-heading {
  max-width: 660px;
  margin-bottom: 26px;
}

.shop-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  grid-template-areas: "products filters";
  gap: 24px;
  align-items: stretch;
}

.filters {
  position: relative;
  grid-area: filters;
  min-height: 100%;
}

.filters-sticky {
  position: sticky;
  top: 88px;
  display: grid;
  height: max-content;
  max-height: calc(100vh - 110px);
  overflow-y: auto;
  overscroll-behavior: contain;
  gap: 18px;
  align-items: stretch;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 35px rgba(55, 42, 32, 0.07);
  opacity: 0;
  transition: opacity 120ms ease;
}

.filters-sticky.is-ready {
  opacity: 1;
}

.filters-sticky h3 {
  margin: 0;
}

.filter-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 0;
}

.filter-button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  cursor: pointer;
}

.filter-button.is-active {
  color: #fff;
  border-color: var(--mint);
  background: var(--mint);
}

.checkbox-line {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.checkbox-line input {
  width: 18px;
  height: 18px;
  accent-color: var(--coral);
}

.cart-panel {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 16px;
  border-radius: 8px;
  background: #f4faf8;
  border: 1px solid #cde8df;
}

.cart-label {
  color: var(--muted);
  font-size: 13px;
}

.cart-panel strong {
  font-size: 20px;
}

.mini-cart-list {
  display: grid;
  gap: 5px;
  max-height: 150px;
  overflow-y: auto;
  padding-right: 4px;
  color: #435154;
  font-size: 13px;
  line-height: 1.3;
  scrollbar-color: var(--mint) rgba(205, 232, 223, 0.5);
}

.mini-cart-list:empty {
  display: none;
}

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

.mini-cart-item span:first-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mini-cart-item span:last-child {
  color: var(--ink);
  font-weight: 800;
}

.cart-panel a {
  margin-top: 6px;
  color: #fff;
  background: var(--mint);
}

.product-grid {
  grid-area: products;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.catalog-more {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.catalog-more-button[hidden] {
  display: none;
}

.secondary-button.catalog-more-button {
  min-width: 220px;
  min-height: 48px;
  border: 1px solid rgba(239, 111, 94, 0.28);
  border-radius: 999px;
  color: #fff;
  background: var(--coral);
  box-shadow: 0 14px 30px rgba(239, 111, 94, 0.22);
  font-weight: 850;
  cursor: pointer;
}

.secondary-button.catalog-more-button:hover {
  transform: translateY(-1px);
}

.product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 24px rgba(55, 42, 32, 0.06);
}

.product-gallery {
  position: relative;
  overflow: hidden;
}

.gallery-track {
  display: flex;
  transform: translateX(calc(var(--slide) * -100%));
  transition: transform 0.42s cubic-bezier(0.2, 0.85, 0.24, 1);
}

.product-main-image {
  flex: 0 0 100%;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #f8f1e9;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: inline-flex;
  width: 34px;
  height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 8px;
  color: #243033;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(55, 42, 32, 0.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 28px;
  font-weight: 600;
  line-height: 0;
  transform: translateY(-50%);
  cursor: pointer;
}

.gallery-nav span {
  display: block;
  line-height: 1;
  transform: translateY(-1px);
}

.gallery-prev {
  left: 10px;
}

.gallery-next {
  right: 10px;
}

.gallery-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.gallery-dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 1px 6px rgba(55, 42, 32, 0.28);
  cursor: pointer;
}

.gallery-dot.is-active {
  width: 22px;
  border-radius: 999px;
  background: var(--mint);
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 11px;
}

.tag {
  padding: 5px 8px;
  border-radius: 999px;
  background: #fff5d9;
  color: #8b6311;
  font-size: 12px;
  font-weight: 750;
}

.tag.ready {
  background: #e4f4ef;
  color: #287766;
}

.tag.accent {
  color: #7e5744;
  background: #fff0e5;
}

.tag.sale {
  color: #b63c35;
  background: #ffe4de;
}

.product-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.product-title-row h3 {
  min-width: 0;
  margin-bottom: 0;
  font-size: 17px;
  line-height: 1.18;
}

.product-title-row h3 a {
  color: inherit;
  text-decoration: none;
}

.product-title-row h3 a:hover {
  color: var(--coral-dark);
}

.product-price-line,
.detail-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  color: var(--ink);
  font-weight: 850;
}

.product-price-line {
  align-items: center;
}

.product-price-line {
  margin: -2px 0 9px;
}

.product-price-line small,
.detail-price small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.discount-time {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 5px;
}

.discount-time svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.price-stack {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}

.old-price {
  color: #9f8e82;
  text-decoration: line-through;
  font-weight: 750;
}

.product-size {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  gap: 5px;
  padding: 6px 8px;
  border: 1px solid #cde8df;
  border-radius: 8px;
  background: #f4faf8;
  color: #287766;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.product-size svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.product-card p {
  margin-bottom: 18px;
  font-size: 15px;
}

.product-actions {
  display: grid;
  gap: 9px;
  margin-top: auto;
}

.buy-button,
.master-button {
  display: inline-flex;
  width: 100%;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 8px;
  padding: 0 12px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
}

.buy-button {
  color: #fff;
  background: var(--blue);
}

.master-button {
  color: #253235;
  background: #fff5d9;
  border: 1px solid #efd489;
}

.buy-button svg,
.master-button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.buy-button.is-added {
  background: var(--mint);
}

.buy-button.is-disabled,
.master-button.is-disabled {
  color: #7d8587;
  background: #eef0ef;
  border-color: #d7dddd;
  cursor: not-allowed;
  box-shadow: none;
}

.masterclass-page {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 56px 0;
}

.product-page {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 56px 0;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 30px;
  align-items: start;
}

.detail-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.detail-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 6px solid #fff;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.detail-gallery img:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 4 / 3;
}

.detail-copy {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
}

.detail-copy h1 {
  margin-bottom: 0;
  max-width: 22ch;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.02;
}

.detail-tags {
  margin-bottom: 0;
}

.detail-price strong {
  font-size: 30px;
}

.detail-size {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.detail-panel {
  display: grid;
  gap: 10px;
  margin-top: 8px;
  padding: 18px;
  border: 1px solid #cde8df;
  border-radius: 10px;
  background: #f4faf8;
}

.detail-panel h2,
.detail-panel p {
  margin: 0;
}

.detail-panel h2 {
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.08;
}

.muted-panel {
  border-color: var(--line);
  background: #fff9f1;
}

.masterclass-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 34px;
  align-items: center;
}

.masterclass-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.masterclass-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.masterclass-copy {
  display: grid;
  gap: 16px;
}

.masterclass-copy h1 {
  max-width: 12ch;
  font-size: clamp(34px, 4.6vw, 52px);
  line-height: 1;
}

.masterclass-copy h2 {
  margin: 0;
  font-size: 22px;
}

.masterclass-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.masterclass-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.masterclass-facts span {
  padding: 9px 12px;
  border-radius: 8px;
  background: #f4faf8;
  color: #287766;
  font-weight: 750;
}

.master-buy {
  min-height: 50px;
}

.masterclass-empty {
  display: grid;
  gap: 16px;
  justify-items: start;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.steps article {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 30px rgba(55, 42, 32, 0.07);
}

.steps article img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 18px;
  background: #f8f1e9;
}

.steps span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--yellow);
  font-weight: 850;
  box-shadow: 0 9px 20px rgba(240, 188, 69, 0.26);
}

.reviews-section {
  position: relative;
  min-height: calc(var(--home-reviews-visual-height, 559px) + 100px);
  overflow: visible;
  padding-top: 20px;
}

.reviews-spotlight {
  position: relative;
  min-height: var(--home-reviews-visual-height, 559px);
  margin-top: 0;
  overflow: visible;
  background: transparent;
}

.reviews-spotlight::before {
  content: "";
  position: absolute;
  inset: -18px -8vw -54px;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 48% 46%, rgba(255, 255, 255, 0.86), rgba(255, 251, 246, 0.44) 34%, transparent 66%),
    radial-gradient(circle at 67% 40%, rgba(226, 246, 239, 0.3), transparent 44%),
    radial-gradient(circle at 30% 62%, rgba(255, 226, 205, 0.24), transparent 46%);
}

.reviews-spotlight-center {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 10;
  display: grid;
  box-sizing: border-box;
  width: min(86%, var(--review-center-width, 294px));
  height: var(--review-center-height, 330px);
  min-height: 0;
  gap: clamp(10px, 2vw, 18px);
  align-content: center;
  justify-items: center;
  padding: clamp(18px, 2.4vw, 32px) clamp(16px, 2.6vw, 28px);
  border: 1px solid rgba(234, 223, 212, 0.9);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 249, 242, 0.9)),
    radial-gradient(circle at 50% 0%, rgba(255, 226, 205, 0.55), transparent 46%);
  box-shadow:
    0 28px 70px rgba(55, 42, 32, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  text-align: center;
  transform: translate(-50%, -50%);
}

.reviews-spotlight-center::before {
  content: "♡";
  display: inline-flex;
  width: clamp(34px, 15%, 46px);
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(239, 111, 94, 0.18);
  border-radius: 50%;
  color: #ef6f5e;
  background: rgba(255, 244, 237, 0.92);
  font-size: clamp(20px, 7.5vw, 26px);
  line-height: 0;
  box-shadow: 0 12px 28px rgba(239, 111, 94, 0.12);
}

.reviews-spotlight-center p {
  width: 100%;
  max-width: 100%;
  margin: 0;
  color: var(--ink);
  font-size: clamp(19px, 2.15vw, 32px);
  font-weight: 920;
  line-height: 1.08;
  text-align: center;
  overflow-wrap: anywhere;
}

.reviews-spotlight-center a {
  display: inline-flex;
  min-height: clamp(48px, 18%, 58px);
  align-items: center;
  justify-content: center;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0 clamp(20px, 12%, 36px);
  border-radius: 999px;
  color: #fff;
  background: #050505;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.12;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.14);
  transition: none;
}

.reviews-floating-cards {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.review-float-card {
  position: absolute;
  left: var(--review-x);
  top: var(--review-y);
  z-index: var(--review-z);
  display: grid;
  width: var(--review-w);
  margin: 0;
  padding: 8px 8px 12px;
  border: 1px solid rgba(234, 223, 212, 0.86);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(55, 42, 32, 0.12);
  transform: translate(-50%, -50%);
  transform-origin: 50% 50%;
  transform-style: preserve-3d;
  animation: floatToy var(--float-speed, 6s) ease-in-out infinite;
}

.review-float-card.is-maxwell {
  animation: maxwellReview 1.55s linear infinite;
}

.review-float-card.is-sway {
  animation: reviewSway 4.4s ease-in-out infinite;
}

.review-float-card.is-pulse {
  animation: reviewPulse 3.2s ease-in-out infinite;
}

.review-float-card.is-pendulum {
  animation: reviewPendulum 3.7s ease-in-out infinite;
}

.review-float-card.is-jelly {
  animation: reviewJelly 2.9s ease-in-out infinite;
}

.review-float-card.is-orbit {
  animation: reviewOrbit 5.2s ease-in-out infinite;
}

.review-float-card.is-bounce {
  animation: reviewBounce 3s cubic-bezier(0.34, 1.56, 0.64, 1) infinite;
}

.review-float-card.is-tilt-drift {
  animation: reviewTiltDrift 4.8s ease-in-out infinite;
}

.review-float-card.is-spark {
  animation: reviewSpark 3.6s ease-in-out infinite;
}

.review-float-card.is-zoom {
  animation: reviewZoom 4s ease-in-out infinite;
}

.review-float-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
}

.review-float-card span {
  display: flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  color: #f0bc45;
  font-size: 17px;
  letter-spacing: 1px;
  line-height: 1;
}

.reviews {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 360px);
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 2px 2px 16px;
  scroll-snap-type: inline mandatory;
  scrollbar-color: var(--mint) rgba(234, 223, 212, 0.7);
}

.reviews article {
  display: grid;
  grid-template-rows: 190px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 30px rgba(55, 42, 32, 0.07);
  scroll-snap-align: start;
}

.reviews article img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #f8f1e9;
}

.reviews article div {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.reviews strong {
  font-size: 18px;
}

.reviews p {
  margin-bottom: 0;
  font-size: 15px;
}

.reviews-link {
  display: inline-flex;
  margin-top: 18px;
  color: #287766;
  font-weight: 850;
}

.reviews-page {
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
  padding: 70px 0 90px;
}

.reviews-page .reviews {
  display: grid;
  grid-auto-flow: row;
  grid-auto-columns: initial;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  align-items: start;
  gap: 24px 18px;
  overflow: visible;
  padding: 14px 6px 34px;
  scroll-snap-type: none;
}

.reviews-page .review-page-card {
  grid-template-rows: auto 1fr;
  transform: translateY(var(--lift, 0)) rotate(var(--tilt, 0deg));
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.reviews-page .review-page-card:hover {
  z-index: 2;
  transform: translateY(calc(var(--lift, 0) - 8px)) rotate(0deg);
  box-shadow: 0 20px 44px rgba(55, 42, 32, 0.12);
}

.reviews-page .review-page-card img {
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.order-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: start;
  margin-bottom: 44px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.order-form {
  display: grid;
  gap: 14px;
}

.faq-page {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 76px 0 86px;
}

.faq-section {
  padding: 0;
}

.faq-section .section-heading {
  margin-bottom: 26px;
}

.faq-list {
  display: grid;
  gap: 14px;
  width: 100%;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 38px rgba(55, 42, 32, 0.07);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.faq-item.is-open {
  border-color: rgba(111, 185, 168, 0.42);
  box-shadow: 0 22px 48px rgba(55, 42, 32, 0.1);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  min-height: 68px;
  border: 0;
  padding: 18px 20px;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 16px;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.faq-question i {
  position: relative;
  display: inline-grid;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: #fff4eb;
  box-shadow: inset 0 0 0 1px rgba(238, 110, 98, 0.22);
  transition: transform 0.32s ease, background 0.32s ease;
}

.faq-question i::before {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--coral);
  border-bottom: 2px solid var(--coral);
  transform: translateY(-2px) rotate(45deg);
}

.faq-item.is-open .faq-question i {
  background: #eaf8f4;
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.faq-answer p {
  margin: 0;
  max-width: 980px;
  padding: 0 20px 22px;
  color: var(--muted);
}

.order-form label {
  display: grid;
  gap: 7px;
  color: #3f4b4e;
  font-weight: 750;
}

.order-form input,
.order-form textarea {
  width: 100%;
  border: 1px solid #d8cdc2;
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fffdf9;
  outline: none;
}

.order-form input:focus,
.order-form textarea:focus {
  border-color: var(--mint);
  box-shadow: 0 0 0 3px rgba(111, 185, 167, 0.18);
}

.order-cart {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid #cde8df;
  border-radius: 8px;
  background: #f4faf8;
}

.order-cart-heading,
.order-cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.order-cart-heading {
  color: var(--ink);
  font-weight: 850;
}

.order-cart-list {
  display: grid;
  gap: 8px;
}

.order-cart-empty {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.order-cart-item {
  min-width: 0;
  padding: 8px;
  border: 1px solid rgba(111, 185, 167, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.order-cart-item img {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  object-fit: cover;
  border-radius: 7px;
}

.order-cart-item div {
  display: grid;
  min-width: 0;
  flex: 1;
  gap: 3px;
}

.order-cart-item strong,
.order-cart-item span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.order-cart-item span {
  color: var(--muted);
  font-size: 13px;
}

.order-cart-remove {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(239, 111, 94, 0.24);
  border-radius: 8px;
  color: var(--coral-dark);
  background: #fff7f3;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.order-cart-remove:hover {
  color: #fff;
  background: var(--coral);
}

.order-submit {
  position: relative;
  overflow: hidden;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.order-submit:disabled {
  cursor: wait;
  opacity: 0.88;
}

.order-submit.is-loading {
  background: #c8745d;
}

.order-submit.is-success {
  border-color: #4f9f7f;
  background: #4f9f7f;
  box-shadow: 0 14px 32px rgba(79, 159, 127, 0.24);
}

.order-progress {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(111, 185, 167, 0.18);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.order-progress span {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #6fb9a7, #f2b79f, #6fb9a7);
  box-shadow: 0 0 16px rgba(111, 185, 167, 0.35);
  transform: translateX(-110%);
}

.order-progress.is-active {
  opacity: 1;
  transform: translateY(0);
}

.order-progress.is-active span {
  animation: order-progress-slide 1s ease-in-out infinite;
}

@keyframes order-progress-slide {
  0% {
    transform: translateX(-110%);
  }

  55% {
    transform: translateX(78%);
  }

  100% {
    transform: translateX(245%);
  }
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: #287766;
  font-weight: 750;
}

.site-footer {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: auto;
  padding: 28px clamp(18px, 4vw, 56px);
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: grid;
  justify-items: center;
  gap: 4px;
}

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

.social-links a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 14px;
  color: #fff;
  background: #253235;
  font-weight: 850;
  box-shadow: 0 10px 20px rgba(37, 50, 53, 0.14);
}

.social-links a:first-child {
  background: #2aabee;
}

.floating-cart-button {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  display: none;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fffdf9;
  background: #6fb9a7;
  box-shadow: 0 18px 42px rgba(55, 42, 32, 0.22);
}

.floating-cart-button svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-cart-button span {
  position: absolute;
  right: -2px;
  top: -4px;
  min-width: 23px;
  height: 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fffdf9;
  border-radius: 999px;
  color: #fffdf9;
  background: #ef6f5e;
  font-size: 12px;
  font-weight: 900;
}

@keyframes peachLight {
  0%,
  100% {
    background-position: 0% 50%, center, center, center;
  }
  50% {
    background-position: 100% 50%, center, center, center;
  }
}

@keyframes whiteWave {
  0%,
  100% {
    translate: -2% 0;
    scale: 1;
  }
  50% {
    translate: 3% -2%;
    scale: 1.05;
  }
}

@keyframes heartbeatWave {
  0% {
    opacity: 0.62;
    transform: scale(0.98);
  }
  42% {
    opacity: 0;
    transform: scale(1.14);
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}

@keyframes floatToy {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -9px;
  }
}

@keyframes maxwellReview {
  0% {
    transform: translate(-50%, -50%) perspective(780px) rotateY(0deg) scale(0.98);
  }
  25% {
    transform: translate(-50%, -50%) perspective(780px) rotateY(92deg) scale(1.05);
  }
  50% {
    transform: translate(-50%, -50%) perspective(780px) rotateY(180deg) scale(0.98);
  }
  75% {
    transform: translate(-50%, -50%) perspective(780px) rotateY(272deg) scale(1.05);
  }
  100% {
    transform: translate(-50%, -50%) perspective(780px) rotateY(360deg) scale(0.98);
  }
}

@keyframes reviewSway {
  0%, 100% {
    transform: translate(-50%, -50%) rotate(-5deg);
  }
  50% {
    transform: translate(-50%, calc(-50% - 10px)) rotate(6deg);
  }
}

@keyframes reviewPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(0.96);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.08);
  }
}

@keyframes reviewPendulum {
  0%, 100% {
    transform: translate(-50%, -50%) rotate(-11deg);
  }
  50% {
    transform: translate(-50%, -50%) rotate(11deg);
  }
}

@keyframes reviewJelly {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1, 1) rotate(0deg);
  }
  30% {
    transform: translate(-50%, -50%) scale(1.08, 0.92) rotate(-4deg);
  }
  60% {
    transform: translate(-50%, -50%) scale(0.94, 1.08) rotate(4deg);
  }
}

@keyframes reviewOrbit {
  0%, 100% {
    transform: translate(calc(-50% - 7px), -50%) rotate(-4deg);
  }
  25% {
    transform: translate(-50%, calc(-50% - 9px)) rotate(5deg);
  }
  50% {
    transform: translate(calc(-50% + 8px), -50%) rotate(2deg);
  }
  75% {
    transform: translate(-50%, calc(-50% + 8px)) rotate(-6deg);
  }
}

@keyframes reviewBounce {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
  45% {
    transform: translate(-50%, calc(-50% - 18px)) scale(1.04);
  }
  62% {
    transform: translate(-50%, calc(-50% + 2px)) scale(1.08, 0.92);
  }
}

@keyframes reviewTiltDrift {
  0%, 100% {
    transform: translate(-50%, -50%) rotate(-8deg);
  }
  50% {
    transform: translate(calc(-50% + 12px), calc(-50% - 10px)) rotate(8deg);
  }
}

@keyframes reviewSpark {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    filter: brightness(1) saturate(1);
  }
  45% {
    transform: translate(-50%, calc(-50% - 4px)) scale(1.04);
    filter: brightness(1.14) saturate(1.12);
  }
}

@keyframes reviewZoom {
  0%, 100% {
    transform: translate(-50%, -50%) scale(0.94) rotate(-2deg);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1) rotate(2deg);
  }
}

@media (max-width: 920px) {
  .site-header {
    position: relative;
    top: auto;
    align-items: flex-start;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: min(var(--home-hero-visual-height, 273px), 310px);
    align-items: end;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(255, 250, 244, 0.2) 0%, rgba(255, 250, 244, 0.74) 48%, rgba(255, 250, 244, 0.98) 100%),
      linear-gradient(90deg, rgba(255, 250, 244, 0.66), rgba(255, 250, 244, 0.22));
  }

  .hero-piece {
    opacity: 0.78;
    width: 120px;
  }

  .hero-piece figcaption {
    display: none;
  }

  .piece-tooth,
  .piece-capybara {
    display: none;
  }

  .piece-longneck { right: 58%; top: 10%; width: 112px; }
  .piece-heart { right: 4%; top: 8%; width: 116px; }
  .piece-hamster-center { right: 28%; top: 12%; width: 146px; }
  .piece-witch { right: 6%; top: 35%; width: 112px; }
  .piece-round-chick { right: 50%; top: 38%; width: 120px; }
  .hero-managed-piece {
    left: var(--hero-mobile-x);
    right: auto;
    top: var(--hero-mobile-y);
    z-index: var(--hero-mobile-z);
    width: var(--hero-mobile-w);
  }
  .piece-bunny,
  .piece-fox,
  .piece-dino,
  .piece-classic {
    display: none;
  }

  .hero > img {
    object-position: 56% center;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 auto;
    padding: 50px 0 26px;
  }

  .floating-cart-button.is-visible {
    display: inline-flex;
  }

  h1 {
    max-width: 12ch;
  }

  .shop-layout,
  .order-section {
    grid-template-columns: 1fr;
  }

  .shop-layout {
    grid-template-areas:
      "filters"
      "products";
  }

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

  .filters {
    min-height: auto;
  }

  .filters-sticky {
    position: static;
    max-height: none;
    overflow: visible;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .masterclass-hero {
    grid-template-columns: 1fr;
  }

  .product-detail {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand {
    font-size: 15px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-mark img {
    width: 34px;
    height: 34px;
  }

  .brand-name {
    font-size: 18px;
  }

  .header-action {
    min-height: 38px;
    padding: 0 12px;
    font-size: 14px;
  }

  .header-tools {
    gap: 7px;
  }

  .language-button {
    min-width: 33px;
    min-height: 32px;
    font-size: 12px;
  }

  .hero {
    min-height: min(var(--home-hero-visual-height, 273px), 294px);
  }

  .hero-content {
    padding: 46px 0 24px;
  }

  .hero-signature {
    max-width: min(100%, 8.8ch);
    font-size: clamp(42px, 14vw, 68px);
    -webkit-text-stroke-width: 0.7px;
    overflow-wrap: normal;
    text-shadow:
      0 1px 0 rgba(255, 238, 168, 0.92),
      0 0 8px rgba(255, 194, 91, 0.62),
      0 0 18px rgba(255, 174, 80, 0.32),
      0 10px 24px rgba(91, 52, 16, 0.18);
  }

  .reviews-spotlight {
    min-height: var(--home-reviews-mobile-visual-height, 676px);
  }

  .review-float-card {
    left: var(--review-mobile-x);
    top: var(--review-mobile-y);
    z-index: var(--review-mobile-z);
    width: var(--review-mobile-w);
  }

  .reviews-spotlight-center p {
    font-size: clamp(24px, 8vw, 34px);
  }

  .reviews-spotlight-center a {
    min-height: 50px;
    padding: 0 24px;
    font-size: 15px;
  }

  .hero-quality {
    max-width: 300px;
  }

  .catalog-section,
  .process-section,
  .reviews-section,
  .reviews-page,
  .order-section {
    width: min(100% - 28px, 1180px);
  }

  .filters-sticky {
    grid-template-columns: 1fr;
  }

  .reviews-page .reviews {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 10px;
    padding-inline: 0;
  }

  .reviews-page .review-page-card,
  .reviews-page .review-page-card:nth-child(n) {
    transform: none;
  }

  .reviews-page .review-page-card div {
    padding: 12px;
  }

  .reviews-page .review-page-card img {
    min-height: 0;
  }

  .reviews-page .review-page-card strong {
    font-size: 14px;
  }

  .reviews-page .review-page-card p {
    font-size: 13px;
    line-height: 1.45;
  }

  .steps {
    gap: 12px;
  }

  .steps article {
    padding: 12px;
  }

  .steps article img {
    margin-bottom: 12px;
  }

  .steps span {
    width: 32px;
    height: 32px;
    margin-bottom: 14px;
    font-size: 12px;
  }

  .steps h3 {
    font-size: 14px;
  }

  .steps p {
    font-size: 12px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .product-body {
    padding: 11px;
  }

  .product-meta {
    gap: 5px;
  }

  .tag {
    font-size: 10px;
  }

  .product-title-row {
    align-items: flex-start;
    gap: 7px;
  }

  .product-title-row h3 {
    font-size: 14px;
  }

  .product-size {
    padding: 5px 6px;
    font-size: 10px;
  }

  .product-card p {
    font-size: 12px;
  }

  .buy-button,
  .master-button {
    min-height: 36px;
    padding: 0 8px;
    font-size: 12px;
  }

  .gallery-nav {
    width: 28px;
    height: 36px;
    font-size: 24px;
  }

  .filter-group {
    grid-template-columns: 1fr;
  }

  .order-section {
    padding: 22px;
  }

  .masterclass-page {
    width: min(100% - 28px, 1120px);
    padding: 34px 0;
  }
}
