:root {
  --bg: #f6f3ec;
  --bg-elevated: #ffffff;
  --bg-soft: #ebe6db;
  --bg-dark: #1c2a22;
  --bg-dark-2: #24352b;
  --text: #1a2420;
  --text-muted: #5c6b63;
  --text-on-dark: #f3f0e8;
  --text-on-dark-muted: #b7c4bc;
  --primary: #2f5d45;
  --primary-hover: #244a37;
  --primary-soft: #dceadf;
  --accent: #c4a35a;
  --accent-soft: #f3e8cc;
  --wood: #8b5e3c;
  --border: rgba(28, 42, 34, 0.1);
  --shadow: 0 6px 20px rgba(28, 42, 34, 0.07);
  --shadow-lg: 0 12px 32px rgba(28, 42, 34, 0.1);
  --radius: 6px;
  --radius-sm: 4px;
  --radius-pill: 4px;
  --container: 1320px;
  --header-h: 92px;
  --font: "Segoe UI", "Century Gothic", "Trebuchet MS", system-ui, sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: 5rem 0;
}

.section-sm {
  padding: 3.5rem 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.85rem;
}

.eyebrow::before {
  content: "";
  width: 1.5rem;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

h1, h2, h3, h4 {
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.85rem;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.lead {
  font-size: 1.1rem;
  line-height: 1.7;
}

.muted {
  color: var(--text-muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0.9rem 1.55rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-weight: 750;
  font-size: 0.98rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
    color 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  white-space: nowrap;
}

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

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(47, 93, 69, 0.25);
}

.btn-primary:hover {
  background: var(--primary-hover);
}

.btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-soft);
}

.btn-accent {
  background: var(--accent);
  color: #1a1a1a;
}

.btn-accent:hover {
  filter: brightness(0.96);
}

.btn-sm {
  min-height: 46px;
  padding: 0.7rem 1.2rem;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.btn-block {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(246, 243, 236, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 8px 24px rgba(28, 42, 34, 0.06);
  background: rgba(246, 243, 236, 0.95);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 1.25rem;
}

.logo img {
  height: 52px;
  width: auto;
}

.logo span {
  color: var(--primary);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav a {
  padding: 0.7rem 1.05rem;
  border-radius: var(--radius-pill);
  color: var(--text-muted);
  font-weight: 750;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--primary);
  background: var(--primary-soft);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-phone {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.2;
  font-size: 0.92rem;
}

.header-phone a {
  font-weight: 800;
  color: var(--text);
  letter-spacing: 0.02em;
}

.header-phone span {
  color: var(--text-muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--text-on-dark);
  background: var(--bg-dark);
}

.hero-bg {
  position: absolute;
  inset: -8%;
  background: url("/img/shutterstock_1389172076-scaled.jpg") center/cover no-repeat;
  transform-origin: 55% 45%;
  animation: heroKenBurns 28s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(20, 32, 26, 0.9) 0%, rgba(28, 42, 34, 0.74) 48%, rgba(28, 42, 34, 0.42) 100%),
    linear-gradient(180deg, rgba(20, 32, 26, 0.25) 0%, transparent 35%, rgba(14, 22, 18, 0.45) 100%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  opacity: 0.55;
  mix-blend-mode: screen;
}

.hero-glow-a {
  width: min(48vw, 420px);
  height: min(48vw, 420px);
  left: -8%;
  top: 12%;
  background: radial-gradient(circle, rgba(196, 163, 90, 0.45) 0%, transparent 70%);
  animation: heroFloatA 12s ease-in-out infinite alternate;
}

.hero-glow-b {
  width: min(42vw, 360px);
  height: min(42vw, 360px);
  right: 4%;
  bottom: 8%;
  background: radial-gradient(circle, rgba(47, 93, 69, 0.55) 0%, transparent 70%);
  animation: heroFloatB 14s ease-in-out infinite alternate;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-particles span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(243, 232, 204, 0.55);
  box-shadow: 0 0 12px rgba(196, 163, 90, 0.45);
  animation: heroParticle 14s linear infinite;
  opacity: 0;
}

.hero-particles span:nth-child(1) { left: 12%; bottom: -10px; animation-delay: 0s; animation-duration: 16s; width: 4px; height: 4px; }
.hero-particles span:nth-child(2) { left: 28%; bottom: -10px; animation-delay: 2.2s; animation-duration: 18s; }
.hero-particles span:nth-child(3) { left: 45%; bottom: -10px; animation-delay: 4.5s; animation-duration: 15s; width: 5px; height: 5px; }
.hero-particles span:nth-child(4) { left: 62%; bottom: -10px; animation-delay: 1.1s; animation-duration: 19s; }
.hero-particles span:nth-child(5) { left: 78%; bottom: -10px; animation-delay: 6s; animation-duration: 17s; width: 4px; height: 4px; }
.hero-particles span:nth-child(6) { left: 88%; bottom: -10px; animation-delay: 3.4s; animation-duration: 20s; }

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 5rem 0 5.5rem;
  max-width: 760px;
}

.hero-eyebrow {
  color: var(--accent);
}

.hero h1 {
  margin-bottom: 1.1rem;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.hero .lead {
  color: var(--text-on-dark-muted);
  max-width: 560px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.hero-actions .btn-primary {
  box-shadow: 0 10px 28px rgba(47, 93, 69, 0.35);
  animation: heroBtnPulse 3.2s ease-in-out infinite;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.95rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.85rem;
  color: var(--text-on-dark);
  backdrop-filter: blur(8px);
  transition: transform 0.25s var(--ease), background 0.25s ease, border-color 0.25s ease;
}

.badge:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(196, 163, 90, 0.45);
}

.badge strong {
  color: var(--accent);
}

.hero-reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: heroRise 0.9s var(--ease) forwards;
}

.hero-reveal-1 { animation-delay: 0.12s; }
.hero-reveal-2 { animation-delay: 0.28s; }
.hero-reveal-3 { animation-delay: 0.44s; }
.hero-reveal-4 { animation-delay: 0.6s; }
.hero-reveal-5 { animation-delay: 0.76s; }

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  z-index: 2;
  width: 24px;
  height: 38px;
  margin-left: -12px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 14px;
  display: grid;
  place-items: start center;
  padding-top: 7px;
  opacity: 0.8;
}

.hero-scroll span {
  width: 4px;
  height: 8px;
  border-radius: 4px;
  background: var(--accent);
  animation: heroScrollDot 1.6s ease-in-out infinite;
}

@keyframes heroKenBurns {
  0% { transform: scale(1.05) translate3d(0, 0, 0); }
  100% { transform: scale(1.14) translate3d(-2.5%, -1.5%, 0); }
}

@keyframes heroFloatA {
  0% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.4; }
  100% { transform: translate3d(8%, 10%, 0) scale(1.15); opacity: 0.65; }
}

@keyframes heroFloatB {
  0% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.35; }
  100% { transform: translate3d(-10%, -8%, 0) scale(1.2); opacity: 0.6; }
}

@keyframes heroParticle {
  0% { transform: translate3d(0, 0, 0); opacity: 0; }
  12% { opacity: 0.75; }
  80% { opacity: 0.35; }
  100% { transform: translate3d(12px, -110vh, 0); opacity: 0; }
}

@keyframes heroRise {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroBtnPulse {
  0%, 100% { box-shadow: 0 10px 28px rgba(47, 93, 69, 0.32); }
  50% { box-shadow: 0 12px 36px rgba(196, 163, 90, 0.28), 0 0 0 6px rgba(196, 163, 90, 0.08); }
}

@keyframes heroScrollDot {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(12px); opacity: 0.15; }
  100% { transform: translateY(0); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg,
  .hero-glow,
  .hero-particles span,
  .hero-actions .btn-primary,
  .hero-scroll span,
  .hero-reveal {
    animation: none !important;
  }
  .hero-reveal {
    opacity: 1;
    transform: none;
  }
  .hero-bg {
    transform: scale(1.05);
  }
}

.motto {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 1.25rem 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: clamp(0.85rem, 2vw, 1rem);
}

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

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

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

.card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.card-body {
  padding: 1.5rem;
}

.feature-card {
  padding: 1.75rem;
  height: 100%;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

.feature-card h3 {
  margin-bottom: 0.5rem;
}

.feature-card p {
  margin: 0;
  font-size: 0.96rem;
}

.apply-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.apply-card {
  position: relative;
  min-height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: #fff;
  box-shadow: var(--shadow);
}

.apply-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(14, 22, 18, 0.85) 100%);
}

.apply-card.outdoor {
  background:
    linear-gradient(180deg, transparent 15%, rgba(14, 22, 18, 0.8) 100%),
    url("/img/shutterstock_1389172076-scaled.jpg") center/cover;
}

.apply-card.indoor {
  background:
    linear-gradient(180deg, transparent 15%, rgba(14, 22, 18, 0.8) 100%),
    url("/img/50-501-1.jpg") center/cover;
}

.apply-content {
  position: relative;
  z-index: 1;
  padding: 1.75rem;
}

.apply-content span {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 0.4rem;
}

.apply-content h3 {
  margin: 0;
  font-size: 1.6rem;
}

.line-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.line-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.line-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: linear-gradient(160deg, #faf8f3, #ebe7dc);
  padding: 0.55rem 0.65rem;
  transform: scale(1.02);
}

.line-card .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.line-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.line-card p {
  font-size: 0.92rem;
  flex: 1;
}

.line-card .btn {
  margin-top: 1rem;
  align-self: flex-start;
}

.about-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.about-visual {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 380px;
  background:
    linear-gradient(140deg, rgba(47, 93, 69, 0.25), rgba(28, 42, 34, 0.15)),
    url("/img/50-501-1.jpg") center/cover;
}

.about-panel {
  background: var(--bg-elevated);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.stat {
  text-align: center;
  padding: 1rem 0.5rem;
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
}

.stat strong {
  display: block;
  font-size: 1.5rem;
  color: var(--primary);
  line-height: 1.1;
}

.stat span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.cta-band {
  background:
    radial-gradient(circle at 20% 20%, rgba(196, 163, 90, 0.18), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(47, 93, 69, 0.35), transparent 45%),
    var(--bg-dark);
  color: var(--text-on-dark);
  border-radius: calc(var(--radius) + 6px);
  padding: 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-band h2 {
  margin-bottom: 0.5rem;
}

.cta-band p {
  color: var(--text-on-dark-muted);
  margin: 0;
  max-width: 480px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.page-hero {
  padding: 3.5rem 0 2rem;
  background:
    linear-gradient(180deg, var(--primary-soft), transparent);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  margin-bottom: 0.5rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

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

.breadcrumbs span {
  opacity: 0.5;
}

.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.75rem;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-btn {
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text-muted);
  border-radius: var(--radius-pill);
  padding: 0.55rem 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.search-input {
  min-width: min(100%, 280px);
  height: 44px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  padding: 0 1.1rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(47, 93, 69, 0.12);
}

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

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  min-width: 0;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-card-image {
  aspect-ratio: 0.95;
  min-height: 280px;
  background: linear-gradient(160deg, #faf8f3, #ebe7dc);
  display: grid;
  place-items: center;
  padding: 0.45rem 0.55rem;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.06);
}

.product-card-body {
  padding: 1.2rem 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.55rem;
}

.product-cat {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

.product-card h3 {
  font-size: 1.02rem;
  margin: 0;
  line-height: 1.35;
}

.product-card-volumes {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.product-card p {
  font-size: 0.9rem;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.product-card .btn {
  margin-top: 0.6rem;
  align-self: flex-start;
}

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
}

.product-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2.5rem;
  align-items: start;
}

.product-gallery {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.product-gallery-main {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, #faf8f3, #ebe7dc);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  overflow: hidden;
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
}

.product-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.product-thumbs button {
  width: 68px;
  height: 68px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  background: var(--bg-soft);
  padding: 0.35rem;
  cursor: pointer;
  overflow: hidden;
}

.product-thumbs button.active,
.product-thumbs button:hover {
  border-color: var(--primary);
}

.product-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-info .product-cat {
  margin-bottom: 0.5rem;
  display: inline-block;
}

.product-info h1 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  margin-bottom: 1rem;
}

.highlights {
  display: grid;
  gap: 0.55rem;
  margin: 1.25rem 0 1.5rem;
}

.highlights li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  color: var(--text);
  font-size: 0.95rem;
}

.highlights li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 800;
  flex-shrink: 0;
}

.volume-block {
  margin: 0 0 1.5rem;
  padding: 1.15rem 1.25rem 1.25rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
}

.volume-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.volume-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.volume-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.65rem 1.15rem;
  background: var(--primary-soft);
  color: var(--primary-hover);
  border: 1px solid rgba(47, 93, 69, 0.2);
  border-radius: var(--radius-sm);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.volume-chip--single {
  font-size: 1.2rem;
  min-height: 52px;
  padding: 0.75rem 1.4rem;
}

.product-info > .volume-chip {
  margin-bottom: 1rem;
}

.buy-box {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin: 1.5rem 0;
  box-shadow: var(--shadow);
}

.buy-box h3 {
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
}

.buy-box > p {
  margin-bottom: 1rem;
  font-size: 0.92rem;
}

.buy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.tabs {
  margin-top: 2.5rem;
}

.tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.25rem;
}

.tab-btn {
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-weight: 700;
  padding: 0.85rem 1rem;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}

.tab-btn.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.tab-panel {
  display: none;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.tab-panel.active {
  display: block;
}

.tab-panel h3 {
  margin-top: 1.25rem;
}

.tab-panel h3:first-child {
  margin-top: 0;
}

.tab-panel ul {
  list-style: none;
  display: grid;
  gap: 0.45rem;
  margin: 0.75rem 0 1rem;
}

.tab-panel ul li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--text-muted);
}

.tab-panel ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.tab-panel p {
  white-space: pre-line;
}

.details-table {
  width: 100%;
  border-collapse: collapse;
}

.details-table th,
.details-table td {
  text-align: left;
  padding: 0.85rem 0.5rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.details-table th {
  width: 35%;
  color: var(--text);
  font-weight: 700;
}

.details-table td {
  color: var(--text-muted);
}

.content-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  box-shadow: none;
}

.content-card + .content-card {
  margin-top: 1rem;
}

.content-card h2 {
  margin-bottom: 0.75rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.25rem;
  align-items: start;
}

.contact-strict {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.contact-strict-head {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
  color: var(--text);
}

.contact-strict-head h2 {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
  color: var(--text);
  letter-spacing: 0;
}

.contact-strict-head p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.contact-table {
  width: 100%;
  border-collapse: collapse;
}

.contact-table th,
.contact-table td {
  text-align: left;
  padding: 1.05rem 1.5rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  font-size: 0.98rem;
}

.contact-table tr:last-child th,
.contact-table tr:last-child td {
  border-bottom: none;
}

.contact-table th {
  width: 34%;
  font-weight: 700;
  color: var(--text);
  background: var(--bg-soft);
  letter-spacing: 0.02em;
}

.contact-table td {
  color: var(--text);
  font-weight: 600;
}

.contact-table a {
  color: var(--text);
  font-weight: 700;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.contact-table a:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.contact-strict-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding: 1.15rem 1.5rem 1.35rem;
  border-top: 1px solid var(--border);
  background: #faf9f6;
}

.contact-side .content-card {
  box-shadow: none;
  border-radius: var(--radius);
}

.contact-side h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.82rem;
}

.contact-side p {
  font-size: 0.92rem;
  margin-bottom: 0.85rem;
}

.contact-list {
  display: grid;
  gap: 0;
  border: 1px solid var(--border);
}

.contact-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg-elevated);
  border-radius: 0;
}

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

.contact-item .icon {
  display: none;
}

.contact-item strong {
  display: block;
  margin-bottom: 0;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.contact-item a {
  color: var(--text);
  font-weight: 700;
  font-size: 1.05rem;
}

.contact-item a:hover {
  color: var(--primary);
  text-decoration: none;
}

.site-footer {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  margin-top: 4rem;
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  color: var(--text-on-dark-muted);
  max-width: 320px;
  margin-top: 0.85rem;
}

.footer-brand .logo {
  color: #fff;
}

.footer-brand .logo span {
  color: var(--accent);
}

.footer-col h4 {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #fff;
}

.footer-col a,
.footer-col p {
  display: block;
  color: var(--text-on-dark-muted);
  margin-bottom: 0.55rem;
  font-size: 0.94rem;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--text-on-dark-muted);
  font-size: 0.88rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.hidden {
  display: none !important;
}

.text-center {
  text-align: center;
}

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

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

.product-card-body {
  padding: 1.2rem 1.35rem 1.4rem;
}

.product-card h3 {
  font-size: 1.08rem;
}

.about-page {
  max-width: 1100px;
}

.about-content-wrap {
  max-width: 860px;
  margin: 0 auto;
}

.about-hero-photo {
  margin: 0 0 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  max-height: 420px;
}

.about-hero-photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.about-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin: 1.25rem 0 1.75rem;
}

.about-photo {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(160deg, #faf8f3, #ebe7dc);
  aspect-ratio: 1;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-photo:nth-child(2) img,
.about-photo:nth-child(3) img,
.about-photo:nth-child(4) img {
  object-fit: contain;
  padding: 0.75rem;
}

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-split,
  .product-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .product-gallery {
    position: static;
  }
}

@media (max-width: 800px) {
  .nav-toggle { display: flex; }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: rgba(246, 243, 236, 0.98);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0.25rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 0.9rem 1rem;
  }

  .header-actions .btn {
    display: none;
  }

  .grid-2,
  .grid-3,
  .apply-grid,
  .product-grid,
  .related-grid,
  .stat-row {
    grid-template-columns: 1fr;
  }

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

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

  .cta-band {
    padding: 2rem;
  }

  .hero-inner {
    padding: 3.5rem 0 3rem;
  }
}

@media (min-width: 900px) {
  .header-phone {
    display: flex;
  }
}

