:root {
  --bg: #fbf8f2;
  --bg-soft: #f4efe4;
  --card: rgba(255, 255, 255, 0.9);
  --card-strong: #ffffff;
  --text: #221d17;
  --muted: #6f665a;
  --stroke: rgba(98, 80, 48, 0.14);
  --accent: #d4af37;
  --accent-soft: #f5d76e;
  --shadow: 0 18px 45px rgba(151, 124, 72, 0.12);
  --shadow-soft: 0 12px 28px rgba(151, 124, 72, 0.1);

  --font-h1: 44px;
  --font-h2: 30px;
  --font-h3: 22px;
  --font-h4: 18px;
  --font-body-lg: 18px;
  --font-body: 16px;
  --font-small: 14px;
  --font-xs: 13px;
  --font-nav: 15px;
  --font-button: 14px;
  --font-price: 22px;

  --space-8: 8px;
  --space-12: 12px;
  --space-16: 16px;
  --space-20: 20px;
  --space-24: 24px;
  --space-32: 32px;
  --space-40: 40px;
  --space-48: 48px;
  --space-56: 56px;
  --space-64: 64px;

  --radius-10: 10px;
  --radius-14: 14px;
  --radius-18: 18px;
  --radius-24: 24px;
  --radius-pill: 999px;

  --page-max: 1240px;
  --page-padding-x: 20px;
  --page-padding-bottom: 64px;
  --section-gap: 48px;
  --grid-gap: 24px;
  --card-gap: 16px;
  --card-padding: 20px;
  --hero-padding: 32px;
  --hero-gap: 24px;

  --product-card-image-h: 300px;
  --product-hero-media-h: 420px;
  --teaser-media-h: 320px;
  --teaser-slide-h: 360px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: var(--font-body);
  line-height: 1.65;
  background:
    radial-gradient(circle at top left, rgba(233, 201, 119, 0.28), transparent 24%),
    linear-gradient(180deg, #fffdf8 0%, #fbf8f2 100%);
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Space Grotesk", "Manrope", system-ui, sans-serif;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

h1 {
  font-size: var(--font-h1);
}

h2 {
  font-size: var(--font-h2);
}

h3 {
  font-size: var(--font-h3);
}

h4 {
  font-size: var(--font-h4);
}

p,
li {
  margin: 0;
  color: var(--muted);
  font-size: var(--font-body);
  line-height: 1.7;
}

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

a[href^="mailto:"] {
  color: #4c4034;
  font-weight: 800;
}

a[href^="mailto:"]:hover {
  color: #9a7427;
}

.page {
  width: min(var(--page-max), calc(100vw - (var(--page-padding-x) * 2)));
  margin: var(--space-24) auto var(--page-padding-bottom);
  display: flex;
  flex-direction: column;
  gap: var(--space-20);
}

.page-main {
  display: flex;
  flex-direction: column;
  gap: var(--space-20);
}

.brand-logo {
  display: block;
  width: 180px;
  height: auto;
}

nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-16);
  width: 100%;
  padding: var(--space-12) var(--space-16);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-18);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  flex-wrap: nowrap;
}

nav .links {
  display: flex;
  align-items: center;
  gap: var(--space-16);
  flex-wrap: wrap;
}

nav a,
.nav-dropdown-toggle {
  color: #56483a;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: var(--font-nav);
  font-weight: 600;
  line-height: 1.2;
}

nav a:hover,
.nav-dropdown-toggle:hover {
  color: #9a7427;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: var(--space-8);
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}

.nav-dropdown-toggle::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 160ms ease;
}

.nav-dropdown.open .nav-dropdown-toggle::after,
.nav-dropdown:focus-within .nav-dropdown-toggle::after {
  transform: rotate(225deg) translateY(-1px);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + var(--space-12));
  left: 0;
  z-index: 20;
  min-width: 220px;
  display: none;
  flex-direction: column;
  gap: var(--space-8);
  padding: var(--space-12);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-14);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.nav-dropdown.open .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: flex;
}

.nav-dropdown-menu a {
  padding: var(--space-12);
  border-radius: var(--radius-10);
  background: rgba(244, 239, 228, 0.72);
  color: #4b3d2b;
  font-size: var(--font-small);
}

.nav-dropdown-menu a:hover {
  background: rgba(233, 201, 119, 0.14);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  padding: 0;
  border: 1px solid var(--stroke);
  border-radius: var(--radius-14);
  background: #fffaf0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: var(--radius-pill);
  background: #5d4a33;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-8);
  color: var(--muted);
  font-size: var(--font-small);
}

.breadcrumbs a {
  color: var(--muted);
}

.breadcrumbs a:hover {
  color: var(--accent-soft);
}

.breadcrumbs span[aria-current="page"] {
  color: var(--text);
}

.card {
  display: grid;
  gap: var(--card-gap);
  padding: var(--card-padding);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-18);
  background: var(--card);
  box-shadow: var(--shadow);
}

.hero,
.banner,
.review-card,
.buy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--hero-gap);
}

.hero,
.banner,
.review-card,
.hero-card,
.content-card {
  padding: var(--hero-padding);
  border-radius: var(--radius-24);
}

.hero-title,
.title {
  font-size: var(--font-h1);
  line-height: 1.08;
}

.hero-sub,
.subtitle {
  max-width: 600px;
  font-size: var(--font-body);
  line-height: 1.68;
}

.hero-card {
  display: grid;
  gap: var(--space-12);
  text-align: center;
  justify-items: center;
}

.quick-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-12);
  margin-bottom: var(--space-24);
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.quick-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 var(--space-16);
  border: 1px solid rgba(98, 80, 48, 0.14);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.78);
  color: #5d4d3a;
  font-size: var(--font-nav);
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  white-space: nowrap;
  transition: color 180ms ease, transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.quick-nav-link:hover {
  color: #8e691d;
  background: rgba(233, 201, 119, 0.14);
  border-color: rgba(199, 154, 53, 0.24);
  transform: translateY(-1px);
}

.quick-nav-link[aria-current="page"],
.quick-nav-link.active {
  color: #5f4717;
  background: linear-gradient(120deg, #fff5dc, #f7e4b2);
  border-color: rgba(199, 154, 53, 0.28);
}

.btn,
.btn-secondary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 var(--space-20);
  border-radius: var(--radius-14);
  border: 1px solid transparent;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: var(--font-button);
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.btn {
  background: linear-gradient(120deg, #f1d28d, #ffe9b9);
  color: #4f3a11;
  box-shadow: var(--shadow-soft);
  border-color: rgba(199, 154, 53, 0.28);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  border-color: var(--stroke);
}

.btn-ghost {
  background: transparent;
  color: #5f5549;
  border-color: rgba(98, 80, 48, 0.12);
}

.btn:hover,
.btn-secondary:hover,
.btn-ghost:hover {
  transform: translateY(-1px);
}

.btn-secondary:hover {
  background: #fff9eb;
  border-color: rgba(199, 154, 53, 0.26);
}

.btn-ghost:hover {
  color: #8e691d;
  background: rgba(233, 201, 119, 0.08);
  border-color: rgba(199, 154, 53, 0.16);
}

.badge,
.pill,
.product-discount,
.teaser-kicker {
  display: inline-flex;
  align-items: center;
  gap: var(--space-8);
  width: fit-content;
  border-radius: var(--radius-pill);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: var(--font-xs);
  font-weight: 700;
}

.badge {
  padding: 10px 14px;
  color: #8e691d;
  background: rgba(199, 154, 53, 0.12);
  border: 1px solid rgba(199, 154, 53, 0.16);
}

.pill {
  padding: 8px 12px;
  background: rgba(244, 239, 228, 0.82);
  color: var(--muted);
  font-weight: 600;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--grid-gap);
  align-items: stretch;
  width: 100%;
}

.product-card {
  display: grid;
  grid-template-rows: 1fr var(--product-card-image-h) auto;
  gap: var(--space-20);
  min-height: 100%;
  padding: 22px;
  border-radius: var(--radius-24);
  border: 1px solid rgba(98, 80, 48, 0.12);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 36px rgba(151, 124, 72, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(199, 154, 53, 0.24);
  box-shadow: 0 20px 40px rgba(151, 124, 72, 0.12);
}

.product-copy {
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-content: stretch;
  gap: var(--space-12);
  height: 100%;
  min-height: 0;
}

.product-title {
  margin: 0;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: var(--font-h3);
  line-height: 1.16;
  min-height: calc(1.16em * 2);
}

.product-desc {
  font-size: var(--font-body);
  line-height: 1.68;
}

.product-price-row,
.price-row,
.cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.product-price-row,
.price-row {
  gap: var(--space-12);
  margin-top: auto;
}

.cta-row {
  gap: var(--space-12);
  margin-top: var(--space-20);
}

.product-price,
.price {
  color: var(--accent);
  font-size: var(--font-price);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.product-old-price {
  color: rgba(88, 74, 53, 0.5);
  text-decoration: line-through;
  font-size: var(--font-small);
}

.product-discount {
  padding: 6px 10px;
  color: #8e691d;
  border: 1px solid rgba(199, 154, 53, 0.18);
  background: rgba(199, 154, 53, 0.1);
}

.product-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--product-card-image-h);
  height: var(--product-card-image-h);
  padding: 0;
  border: none;
  background: transparent;
  overflow: visible;
}

.product-img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.product-actions {
  display: flex;
  align-items: end;
  margin-top: auto;
}

.seo-grid,
.grid {
  display: grid;
  gap: var(--grid-gap);
}

.seo-grid {
  grid-template-columns: 1.2fr 0.8fr;
}

.cols-3 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

section {
  margin-top: var(--section-gap);
}

.slideshow,
.hero-img,
.review-media {
  position: relative;
  min-height: var(--product-hero-media-h);
}

.slideshow {
  min-height: var(--product-hero-media-h);
}

.hero-media {
  display: grid;
  gap: var(--space-12);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
}

.slide img,
.hero-img img,
.review-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  padding: 0;
  background: transparent;
}

.slide-nav,
.teaser-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(8, 12, 18, 0.62);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  z-index: 2;
  backdrop-filter: blur(6px);
}

.slide-nav.prev,
.teaser-nav.prev {
  left: 16px;
}

.slide-nav.next,
.teaser-nav.next {
  right: 16px;
}

.slide-dots,
.teaser-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-8);
  z-index: 2;
}

.slide-dots {
  bottom: 16px;
}

.slide-dot,
.teaser-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.34);
  cursor: pointer;
}

.slide-dot.active,
.teaser-dot.active {
  background: var(--accent-soft);
}

.hero-facts {
  position: static;
  display: grid;
  gap: var(--space-8);
  width: 100%;
  padding: var(--space-12);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-10);
  background: rgba(255, 255, 255, 0.88);
  font-size: var(--font-small);
}

.specs-card {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: var(--grid-gap);
}

.alert {
  display: none;
  padding: var(--space-12);
  margin-bottom: var(--space-12);
  border-radius: var(--radius-10);
  font-size: var(--font-small);
}

.alert-error {
  color: #ffb5b5;
  background: rgba(255, 142, 142, 0.12);
  border: 1px solid rgba(255, 142, 142, 0.35);
}

.swatches {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-12);
  margin-top: var(--space-16);
  align-items: flex-start;
}

.swatch {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  min-width: 0;
  padding: 10px 12px;
  border-radius: var(--radius-14);
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
  text-align: center;
  flex: 0 0 auto;
  line-height: 1.1;
}

.swatch:hover,
.swatch.active {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.42);
  background: rgba(212, 175, 55, 0.08);
}

.swatch span {
  font-size: var(--font-small);
  color: var(--text);
  white-space: nowrap;
}

.dot {
  width: 16px;
  height: 16px;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(255, 255, 255, 0.14);
  flex: 0 0 auto;
}

.teaser-section {
  margin-top: var(--section-gap);
}

.teaser-head {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-bottom: var(--space-20);
}

.teaser-title {
  font-size: var(--font-h2);
}

.teaser-carousel {
  position: relative;
  padding-top: var(--space-8);
}

.teaser-slides {
  position: relative;
  min-height: var(--teaser-slide-h);
}

.teaser-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.teaser-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.teaser-link {
  display: block;
  height: 100%;
}

.teaser-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(260px, 0.95fr);
  align-items: stretch;
  gap: var(--space-20);
  min-height: var(--teaser-slide-h);
  height: 100%;
  padding: var(--card-padding);
  border-radius: var(--radius-24);
  border: 1px solid rgba(98, 80, 48, 0.12);
  background: radial-gradient(circle at top left, rgba(233, 201, 119, 0.18), transparent 32%), rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 48px rgba(151, 124, 72, 0.12);
}

.teaser-copy {
  display: grid;
  align-content: center;
  gap: var(--space-12);
  min-width: 0;
}

.teaser-name {
  font-size: var(--font-h2);
  line-height: 1.05;
}

.teaser-price {
  color: var(--accent);
  font-size: var(--font-price);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.teaser-desc {
  color: #6f665a;
  font-size: var(--font-body);
  line-height: 1.65;
  max-width: 34ch;
}

.teaser-cta {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 var(--space-20);
  border-radius: var(--radius-14);
  background: linear-gradient(120deg, #f1d28d, #ffe9b9);
  color: #4f3a11;
  font-size: var(--font-button);
  font-weight: 700;
}

.teaser-media {
  position: relative;
  min-width: 0;
  min-height: var(--teaser-media-h);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  overflow: visible;
  border: none;
  background: transparent;
  padding: 0;
}

.teaser-media::after {
  content: none;
}

.teaser-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.teaser-media-label {
  display: none;
}

.teaser-media-label span {
  color: rgba(79, 67, 54, 0.82);
  font-size: var(--font-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.teaser-media-label strong {
  color: #2f2418;
  font-size: var(--font-small);
  line-height: 1.15;
}

.teaser-dots {
  bottom: -24px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--space-12);
}

.spec-table td {
  padding: 10px 0;
  border-bottom: 1px solid var(--stroke);
  color: var(--muted);
  vertical-align: top;
}

.spec-table td:first-child {
  width: 42%;
  color: var(--text);
}

.faq {
  border: 1px solid var(--stroke);
  border-radius: var(--radius-18);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--stroke);
  background: var(--card);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-btn {
  width: 100%;
  padding: var(--space-16);
  border: none;
  background: none;
  color: var(--text);
  text-align: left;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: var(--font-body);
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 var(--space-16);
  transition: max-height 220ms ease;
}

.faq-content p {
  padding: 0 0 var(--space-16);
}

.faq-item.active .faq-content {
  max-height: 240px;
}

.faq-item.active .faq-btn span {
  transform: rotate(45deg);
}

.prose {
  display: grid;
  gap: var(--space-16);
}

.prose p,
.prose li {
  line-height: 1.75;
}

.prose ul {
  margin: 0 0 0 20px;
  padding: 0;
  display: grid;
  gap: var(--space-8);
}

.prose a {
  color: var(--accent-soft);
}

footer {
  margin-top: clamp(48px, 6vw, 72px);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-12);
  text-align: center;
  color: #f1ebe3;
  font-size: 14px;
  font-weight: 500;
}

footer p,
footer div,
footer span,
footer li {
  color: #f1ebe3;
}

footer a {
  color: #fbf6ef;
  font-weight: 600;
}

footer a[href^="mailto:"] {
  color: inherit;
  font-weight: inherit;
}

footer a:hover {
  color: #9a7427;
}

body.light-theme {
  color: #221d17;
  background:
    radial-gradient(circle at top left, rgba(233, 201, 119, 0.28), transparent 24%),
    linear-gradient(180deg, #fffdf8 0%, #fbf8f2 100%);
}

body.light-theme:not(.light-home) footer,
body.light-theme:not(.light-home) footer p,
body.light-theme:not(.light-home) footer div,
body.light-theme:not(.light-home) footer span,
body.light-theme:not(.light-home) footer li,
body.light-theme:not(.light-home) footer a,
body.light-theme:not(.light-home) footer a[href^="mailto:"] {
  color: #6f665a;
}

.light-theme .page {
  gap: 24px;
}

.light-theme .brand-logo {
  width: 216px;
}

.light-theme nav,
.light-theme .card,
.light-theme .hero,
.light-theme .banner,
.light-theme .review-card,
.light-theme .hero-card,
.light-theme .content-card,
.light-theme .search-card,
.light-theme .result-card,
.light-theme .meta-item,
.light-theme .timeline-body,
.light-theme .hero-facts {
  background: #fffaf0;
  border-color: rgba(98, 80, 48, 0.14);
  box-shadow: 0 18px 45px rgba(151, 124, 72, 0.12);
}

.light-theme nav a,
.light-theme .nav-dropdown-toggle,
.light-theme .meta-value,
.light-theme .teaser-media-label strong {
  color: #56483a;
}

.light-theme nav a:hover,
.light-theme .nav-dropdown-toggle:hover,
.light-theme footer a:hover,
.light-theme a[href^="mailto:"]:hover {
  color: #9a7427;
}

.light-theme .nav-dropdown-menu,
.light-theme nav .links {
  background: rgba(255, 255, 255, 0.97);
  border-color: rgba(98, 80, 48, 0.14);
  box-shadow: 0 18px 45px rgba(151, 124, 72, 0.12);
}

.light-theme .nav-dropdown-menu a,
.light-theme .nav-dropdown-toggle {
  color: #433628;
}

.light-theme .nav-dropdown-menu a,
.light-theme .track-input,
.light-theme .status-box,
.light-theme .meta-item,
.light-theme .timeline-body {
  background: rgba(244, 239, 228, 0.72);
}

.light-theme .menu-toggle {
  background: #fffaf0;
  border-color: rgba(98, 80, 48, 0.14);
}

.light-theme .menu-toggle span {
  background: #5d4a33;
}

@media (min-width: 721px) {
  .light-theme nav {
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .light-theme nav .links {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    margin-top: 0;
    width: auto;
  }

  .light-theme nav .links a,
  .light-theme nav .links .nav-dropdown-toggle {
    background: transparent;
    border: none;
    box-shadow: none;
    padding-left: 0;
    padding-right: 0;
    min-height: auto;
  }
}

.light-theme .breadcrumbs,
.light-theme .breadcrumbs a,
.light-theme footer,
.light-theme footer a,
.light-theme p,
.light-theme li,
.light-theme .hero-sub,
.light-theme .subtitle,
.light-theme .product-desc,
.light-theme .teaser-desc,
.light-theme .timeline-location,
.light-theme .meta-label {
  color: #6f665a;
}

.light-theme .breadcrumbs span[aria-current="page"],
.light-theme h1,
.light-theme h2,
.light-theme h3,
.light-theme h4,
.light-theme .product-title,
.light-theme .title,
.light-theme .teaser-name {
  color: #221d17;
}

.light-theme .quick-nav {
  background: transparent;
  border: none;
  box-shadow: none;
}

.light-theme .quick-nav-link,
.light-theme .btn-secondary,
.light-theme .btn-ghost {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(98, 80, 48, 0.14);
  color: #5d4d3a;
  box-shadow: none;
}

.light-theme .quick-nav-link:hover,
.light-theme .btn-secondary:hover,
.light-theme .btn-ghost:hover {
  color: #8e691d;
  background: rgba(233, 201, 119, 0.14);
  border-color: rgba(199, 154, 53, 0.24);
}

.light-theme .quick-nav-link[aria-current="page"],
.light-theme .quick-nav-link.active {
  color: #5f4717;
  background: linear-gradient(120deg, #fff5dc, #f7e4b2);
  border-color: rgba(199, 154, 53, 0.28);
}

.light-theme .btn,
.light-theme .teaser-cta {
  background: linear-gradient(120deg, #f1d28d, #ffe9b9);
  color: #4f3a11;
  border-color: rgba(199, 154, 53, 0.28);
  box-shadow: 0 12px 28px rgba(151, 124, 72, 0.1);
}

.light-theme .badge,
.light-theme .tag,
.light-theme .status-pill {
  color: #8e691d;
  background: rgba(199, 154, 53, 0.12);
  border-color: rgba(199, 154, 53, 0.18);
}

.light-theme .pill {
  background: rgba(244, 239, 228, 0.82);
  color: #6f665a;
}

.light-theme .product-price,
.light-theme .price,
.light-theme .teaser-price,
.light-theme .timeline-time {
  color: #573e2e;
}

.light-theme .product-old-price,
.light-theme .old-price {
  color: rgba(88, 74, 53, 0.5);
}

.light-theme .product-discount {
  color: #8e691d;
  border-color: rgba(199, 154, 53, 0.18);
  background: rgba(199, 154, 53, 0.1);
}

.light-theme .product-card,
.light-theme .teaser-card,
.light-theme .seo-grid .card {
  border-color: rgba(98, 80, 48, 0.12);
  background: linear-gradient(180deg, #ffffff 0%, #fffdf8 68%, #f7ede1 100%);
  box-shadow: 0 18px 36px rgba(151, 124, 72, 0.1);
}

.light-theme .product-card:hover,
.light-theme .teaser-card:hover,
.light-theme .seo-grid .card:hover {
  border-color: rgba(199, 154, 53, 0.24);
  box-shadow: 0 20px 40px rgba(151, 124, 72, 0.12);
}

.light-theme .product-actions .btn {
  background: rgba(255, 255, 255, 0.8);
  color: #4d3b22;
  border-color: rgba(98, 80, 48, 0.16);
  box-shadow: none;
}

.light-theme .product-actions .btn:hover {
  color: #8e691d;
  border-color: rgba(199, 154, 53, 0.26);
  background: #fff9eb;
}

.light-theme .product-media,
.light-theme .teaser-media,
.light-theme .slideshow,
.light-theme .hero-img,
.light-theme .review-media,
.light-theme .color-preview {
  background: transparent;
}

.light-theme .teaser-media::after {
  content: none !important;
  background: none !important;
}

.light-theme .teaser-media-label {
  display: none !important;
}

.light-theme .teaser-media img {
  padding-bottom: 0 !important;
}

.light-theme .slide-nav,
.light-theme .teaser-nav {
  border-color: rgba(98, 80, 48, 0.16);
  background: rgba(255, 255, 255, 0.88);
  color: #4f4336;
  backdrop-filter: blur(6px);
}

.light-theme .slide-dot,
.light-theme .teaser-dot {
  background: rgba(98, 80, 48, 0.22);
}

.light-theme .slide-dot.active,
.light-theme .teaser-dot.active {
  background: #c79a35;
}

.light-theme .teaser-media-label span {
  color: rgba(79, 67, 54, 0.82);
}

.light-theme .progress-step::after {
  background: rgba(98, 80, 48, 0.16);
}

.light-theme .progress-dot {
  border-color: rgba(98, 80, 48, 0.14);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.light-theme .progress-step.is-active .progress-dot,
.light-theme .progress-step.is-complete .progress-dot,
.light-theme .timeline-dot {
  background: linear-gradient(120deg, #f1d28d, #ffe9b9);
  border-color: rgba(199, 154, 53, 0.28);
}

.light-theme .status-box.error {
  border-color: rgba(188, 94, 94, 0.2);
  background: rgba(255, 231, 231, 0.88);
  color: #a24f4f;
}

.light-theme .status-box.empty {
  border-color: rgba(199, 154, 53, 0.18);
  background: rgba(255, 246, 221, 0.88);
  color: #8e691d;
}

@media (max-width: 1120px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .hero,
  .banner,
  .review-card,
  .buy-grid,
  .seo-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  :root {
    --font-h1: 28px;
    --font-h2: 24px;
    --font-h3: 18px;
    --font-h4: 16px;
    --font-body-lg: 16px;
    --font-body: 14px;
    --font-small: 13px;
    --font-xs: 12px;
    --font-nav: 14px;
    --font-button: 13px;
    --font-price: 18px;

    --page-padding-x: 14px;
    --page-padding-bottom: 40px;
    --section-gap: 32px;
    --grid-gap: 16px;
    --card-gap: 12px;
    --card-padding: 16px;
    --hero-padding: 20px;
    --hero-gap: 20px;

    --product-card-image-h: 240px;
    --product-hero-media-h: 260px;
    --teaser-media-h: 240px;
    --teaser-slide-h: 470px;
  }

  .page {
    margin-top: var(--space-16);
    width: min(var(--page-max), calc(100vw - (var(--page-padding-x) * 2)));
  }

  nav {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  nav .links {
    display: none;
    width: 100%;
    margin-top: var(--space-12);
    flex-direction: column;
    gap: var(--space-8);
    padding: var(--space-12);
    border: 1px solid var(--stroke);
    border-radius: var(--radius-18);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 16px 36px rgba(151, 124, 72, 0.14);
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  nav .links.open {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }

  nav .links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    border-radius: var(--radius-10);
    background: rgba(244, 239, 228, 0.72);
    color: #433628;
    font-size: var(--font-nav);
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle {
    width: 100%;
    min-height: 44px;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: var(--radius-10);
    background: rgba(244, 239, 228, 0.72);
    color: #433628;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: var(--space-8);
    padding: var(--space-8);
    background: rgba(255, 255, 255, 0.02);
    box-shadow: none;
  }

  .nav-dropdown-menu a {
    min-height: 44px;
    padding: 10px 12px;
  }

  .brand-logo {
    width: 150px;
  }

  .quick-nav {
    justify-content: flex-start;
    gap: var(--space-8);
  }

  .page-main > .hero-card {
    gap: var(--space-8);
  }

  .page-main > .hero-card .hero-title {
    font-size: 25px;
    line-height: 1.05;
  }

  .page-main > .hero-card .hero-sub {
    max-width: 34ch;
    font-size: 13px;
    line-height: 1.55;
  }

  .page-main > .quick-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 10px;
  }

  .page-main > .hero-card + .quick-nav {
    margin-top: 12px;
  }

  .page-main > .quick-nav .quick-nav-link {
    width: 100%;
    min-height: 42px;
    padding: 10px var(--space-12);
    white-space: normal;
    line-height: 1.2;
    text-wrap: balance;
  }

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

  .seo-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    grid-template-rows: 118px auto auto;
    padding: 8px;
    gap: 6px;
    border-radius: 20px;
  }

  .quick-nav-link {
    min-height: 42px;
    padding: 10px 12px;
    font-size: var(--font-small);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: none;
  }

  .btn,
  .btn-secondary,
  .btn-ghost {
    min-height: 44px;
  }

  .product-media {
    order: -1;
    min-height: 118px;
    height: 118px;
    align-items: center;
    justify-content: center;
  }

  .product-media .product-img {
    width: 82%;
    height: 82%;
    margin: 0 auto;
  }

  .product-copy {
    grid-template-rows: minmax(72px, 72px) auto;
    gap: 4px;
  }

  .product-title {
    font-size: 14px;
    line-height: 1.1;
    margin-bottom: 0;
    min-height: 72px;
  }

  .product-desc {
    display: none;
  }

  .product-price {
    font-size: 14px;
  }

  .product-price-row {
    margin-top: 0;
    gap: 6px;
    min-height: 20px;
  }

  .product-old-price,
  .product-discount {
    display: none;
  }

  .product-actions {
    margin-top: 0;
  }

  .product-card .product-actions .btn {
    width: 100%;
    min-height: 32px;
    padding: 4px 2px;
    font-size: 12px;
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: none;
  }

  .product-card .product-actions .btn:hover,
  .product-card .product-actions .btn:active {
    color: var(--accent-soft);
  }

  .slideshow,
  .hero-img,
  .review-media {
    min-height: var(--product-hero-media-h);
  }

  .teaser-slides {
    min-height: var(--teaser-slide-h);
  }

  .teaser-card {
    min-height: var(--teaser-slide-h);
    grid-template-columns: 1fr;
    gap: var(--space-16);
    border-radius: 22px;
  }

  .teaser-copy {
    order: 2;
    align-content: start;
  }

  .teaser-desc {
    max-width: none;
  }

  .teaser-cta {
    width: 100%;
    margin-top: auto;
  }

  .teaser-media {
    order: 1;
    min-height: var(--teaser-media-h);
  }

  .teaser-media img {
    padding-bottom: 0;
  }

  .teaser-carousel .teaser-nav,
  .teaser-slides .teaser-nav {
    top: 146px;
    bottom: auto;
    transform: translateY(-50%);
  }

  .cta-row .btn,
  .cta-row .btn-secondary,
  .cta-row .btn-ghost {
    width: 100%;
  }
}
