/* Каталог моделей — в стиле существующего сайта */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', sans-serif;
  background: #F5F3F0;
  color: #1E2A2F;
  line-height: 1.5;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header — как на остальных страницах сайта */
.header {
  background: rgba(11,42,37,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(200,162,122,0.15);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  width: 100%;
}
.header-inner {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.logo {
  flex: 0 1 auto;
  min-width: 0;
  max-width: 100%;
}
.logo a {
  font-size: clamp(1rem, 2.8vw, 1.6rem);
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  white-space: nowrap;
  transition: transform 0.3s ease;
}
.logo a:hover { transform: scale(1.02); }
.logo span {
  color: #C8A27A;
  text-shadow: 0 0 15px rgba(200,162,122,0.4);
}
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav > a,
.nav .dropdown > a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav > a::after,
.nav .dropdown > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #C8A27A;
  transition: width 0.3s ease;
  border-radius: 2px;
}
.nav > a:hover,
.nav .dropdown > a:hover,
.nav > a.is-active { color: #C8A27A; }
.nav > a:hover::after,
.nav .dropdown > a:hover::after,
.nav > a.is-active::after { width: 100%; }
.dropdown { position: relative; }
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: -10px;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  min-width: 240px;
  border-radius: 20px;
  padding: 12px 0;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  border: 1px solid rgba(200,162,122,0.2);
  z-index: 50;
}
.dropdown:hover .dropdown-content { display: block; }
.dropdown-content a {
  color: #1E2A2F !important;
  padding: 12px 24px;
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s;
  white-space: nowrap;
}
.dropdown-content a::after { display: none !important; }
.dropdown-content a:hover {
  background: rgba(200,162,122,0.1);
  color: #C8A27A !important;
  padding-left: 28px;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header-phone {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.header-phone i {
  color: #C8A27A;
  margin-right: 6px;
}
.header .btn-order {
  background: linear-gradient(135deg, #C8A27A, #B07E50);
  color: #1E2A2F;
  padding: 10px 28px;
  border-radius: 40px;
  border: none;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(200,162,122,0.3);
  transition: all 0.3s ease;
  white-space: nowrap;
  width: auto;
  min-width: 0;
}
.header .btn-order:hover {
  background: linear-gradient(135deg, #DDB591, #C8A27A);
  transform: translateY(-2px) scale(1.03);
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  line-height: 1;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 0 24px 20px;
  background: rgba(11,42,37,0.98);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu.active { display: flex; }
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 12px;
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu-title {
  color: #C8A27A;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 12px;
}
.mobile-menu a {
  color: #fff;
  text-decoration: none;
  padding: 10px 0;
  font-weight: 500;
}
.mobile-menu-footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu-footer .btn-order {
  background: linear-gradient(135deg, #C8A27A, #B07E50);
  color: #1E2A2F;
  padding: 10px 28px;
  border-radius: 40px;
  border: none;
  font-weight: 700;
  cursor: pointer;
}
body.menu-open { overflow: hidden; }
@media (max-width: 1200px) {
  .nav { gap: 20px; }
  .nav > a, .nav .dropdown > a { font-size: 0.85rem; }
}
@media (max-width: 1024px) {
  .nav { display: none; }
  .header .btn-order { display: none; }
  .menu-toggle { display: block; }
  .header-inner { flex-wrap: nowrap; gap: 10px; }
  .header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(11,42,37,0.96);
  }
}

/* Hero / page head */
.page-hero {
  background: linear-gradient(135deg, #0B2A25 0%, #1A4A41 100%);
  color: #fff;
  padding: 44px 0 40px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 10% 20%;
  background: #C8A27A;
  filter: blur(90px);
  opacity: 0.18;
  pointer-events: none;
}
.page-hero .container {
  position: relative;
  z-index: 1;
  max-width: 1120px;
}
.breadcrumb {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 14px;
}
.breadcrumb a { color: #C8A27A; }
.breadcrumb span { margin: 0 8px; opacity: 0.5; }
.page-hero h1 {
  font-size: clamp(1.75rem, 3.6vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
  line-height: 1.15;
}
.page-hero p {
  max-width: 720px;
  color: rgba(255,255,255,0.78);
  font-size: 1.02rem;
  line-height: 1.55;
}
.page-hero__short {
  color: rgba(255,255,255,0.78);
  font-size: clamp(0.85rem, 0.55rem + 1.1vw, 1.02rem);
  line-height: 1.45;
  white-space: nowrap;
  margin: 0;
}
@media (max-width: 900px) {
  .page-hero {
    padding: 28px 0 26px;
  }
  .page-hero::before {
    filter: blur(40px);
    opacity: 0.12;
  }
  .page-hero__short {
    white-space: normal;
    font-size: 0.95rem;
    line-height: 1.4;
  }
  .breadcrumb {
    font-size: 0.78rem;
    overflow-wrap: anywhere;
  }
}

/* Category filters */
/* Catalog listing + filters */
.catalog-section {
  padding: 40px 0 80px;
  background: #F5F3F0;
}
.catalog-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: start;
}
@media (max-width: 900px) {
  .catalog-layout { grid-template-columns: 1fr; gap: 20px; }
}

.catalog-filters {
  background: #fff;
  border: 1px solid rgba(11, 42, 37, 0.08);
  border-radius: 20px;
  padding: 22px 20px;
  box-shadow: 0 8px 24px rgba(11, 42, 37, 0.05);
  position: sticky;
  top: 88px;
}
@media (max-width: 900px) {
  .catalog-filters { position: static; }
}
.catalog-filters__title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #C8A27A;
  margin-bottom: 12px;
}
.catalog-filters__group {
  margin-bottom: 22px;
}
.catalog-filters__group:last-child { margin-bottom: 0; }
.catalog-filters__label {
  font-size: 0.92rem;
  font-weight: 800;
  color: #1E2A2F;
  margin-bottom: 10px;
}
.filter-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.filter-list button,
.filter-list a {
  width: 100%;
  text-align: left;
  appearance: none;
  border: none;
  background: transparent;
  color: #1E2A2F;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.filter-list button:hover,
.filter-list a:hover,
.filter-list button.active,
.filter-list a.active {
  background: rgba(11, 42, 37, 0.06);
  color: #0B2A25;
}
.filter-list button.active,
.filter-list a.active {
  background: #0B2A25;
  color: #fff;
}
.filter-count {
  font-size: 0.78rem;
  font-weight: 700;
  color: #6B7A7F;
  background: rgba(11,42,37,0.06);
  border-radius: 999px;
  padding: 2px 8px;
}
.filter-list button.active .filter-count,
.filter-list a.active .filter-count {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
}

.filter-select {
  width: 100%;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid rgba(11,42,37,0.12);
  background: #F5F3F0;
  font: inherit;
  font-weight: 600;
  color: #1E2A2F;
}
.filter-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1E2A2F;
  cursor: pointer;
  padding: 6px 0;
}
.filter-reset {
  display: inline-flex;
  margin-top: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(11,42,37,0.12);
  background: transparent;
  font: inherit;
  font-weight: 700;
  color: #0B2A25;
  cursor: pointer;
  width: 100%;
  justify-content: center;
}
.filter-reset:hover { background: rgba(11,42,37,0.04); }

.catalog-main__toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.catalog-main__count {
  font-size: 0.92rem;
  color: #6B7A7F;
  font-weight: 600;
}
.catalog-main__count strong { color: #1E2A2F; }

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 1100px) { .catalog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .catalog-grid { grid-template-columns: 1fr; } }

.catalog-empty {
  display: none;
  padding: 40px 24px;
  text-align: center;
  color: #6B7A7F;
  background: #fff;
  border-radius: 16px;
  border: 1px dashed rgba(11,42,37,0.15);
}
.catalog-empty.is-visible { display: block; }

.product-card[hidden] { display: none !important; }

.product-card {
  background: #fff;
  border: 1px solid rgba(11,42,37,0.08);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 6px 20px rgba(11,42,37,0.04);
  content-visibility: auto;
  contain-intrinsic-size: auto 440px;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(11,42,37,0.1);
}
@media (hover: none) {
  .product-card:hover {
    transform: none;
    box-shadow: 0 6px 20px rgba(11,42,37,0.04);
  }
  .product-gallery__main:hover img { transform: none; }
}
.product-card__img {
  aspect-ratio: 16 / 9;
  background: #E8E4DF;
  overflow: hidden;
}
.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}
.product-card__cat {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #C8A27A;
}
.product-card__body h2 {
  font-size: 1.35rem;
  font-weight: 800;
}
.product-card__short {
  color: #6B7A7F;
  font-size: 0.92rem;
  flex: 1;
}
.product-card__price {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0B2A25;
  margin-top: 8px;
}
.product-card__price span {
  font-size: 0.8rem;
  font-weight: 600;
  color: #6B7A7F;
}
.btn-card {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 60px;
  background: rgba(43,168,74,0.15);
  border: 1px solid rgba(43,168,74,0.35);
  color: #0B2A25;
  font-weight: 800;
  transition: background 0.25s ease;
}
.btn-card:hover { background: rgba(43,168,74,0.3); }

/* Product page — как в аккуратном интернет-каталоге */
.product-page {
  padding: 40px 0 72px;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(200,162,122,0.08), transparent 55%),
    #F5F3F0;
}

.product-page > .container {
  max-width: 1120px;
}

.product-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: stretch;
  margin-bottom: 32px;
}
@media (max-width: 960px) {
  .product-top {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 24px;
  }
}

.product-gallery {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(11, 42, 37, 0.08);
  box-shadow: 0 8px 28px rgba(11, 42, 37, 0.06);
  display: flex;
  flex-direction: column;
}
.product-gallery__main {
  aspect-ratio: 16 / 9;
  background: #E8E4DF;
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  cursor: zoom-in;
  overflow: hidden;
}
.product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.product-gallery__main picture {
  display: block;
  width: 100%;
  height: 100%;
}
.product-gallery__main:hover img {
  transform: scale(1.03);
}
.product-gallery__zoom-hint {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(11, 42, 37, 0.72);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  pointer-events: none;
  border: 1px solid rgba(200, 162, 122, 0.45);
}
.product-thumbs {
  display: flex;
  gap: 10px;
  padding: 14px 16px 16px;
  overflow-x: auto;
  background: #fff;
  scrollbar-width: thin;
}
.product-thumbs button {
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  background: #E8E4DF;
  flex: 0 0 auto;
  width: 96px;
  aspect-ratio: 16 / 9;
  transition: border-color 0.2s ease, opacity 0.2s ease;
  opacity: 0.72;
}
.product-thumbs button:hover { opacity: 1; }
.product-thumbs button.active {
  border-color: #C8A27A;
  opacity: 1;
}
.product-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-panel {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(11, 42, 37, 0.08);
  box-shadow: 0 8px 28px rgba(11, 42, 37, 0.06);
  padding: 28px 28px 24px;
  height: 100%;
}
@media (max-width: 960px) {
  .product-panel { padding: 22px 20px; }
}

.price-now {
  font-size: clamp(1.55rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: #0B2A25;
  letter-spacing: -0.02em;
  padding-bottom: 14px;
  margin-bottom: 2px;
  border-bottom: 1px solid rgba(11, 42, 37, 0.08);
}
.price-now small {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #6B7A7F;
  margin-top: 6px;
  letter-spacing: 0;
}

.specs-list {
  list-style: none;
  display: grid;
  gap: 0;
  padding: 4px 0 0;
  background: transparent;
  border-radius: 0;
  border: none;
  flex: 1;
}
.specs-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  font-size: 0.88rem;
  line-height: 1.25;
  border-bottom: 1px solid rgba(11, 42, 37, 0.07);
  padding: 6px 0;
}
.specs-list li:last-child { border-bottom: none; }
.specs-list .label { color: #6B7A7F; flex-shrink: 0; }
.specs-list .value { font-weight: 700; text-align: right; color: #1E2A2F; }

.product-panel__link {
  color: #6B7A7F;
  font-size: 0.88rem;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(11, 42, 37, 0.08);
  line-height: 1.5;
}
.product-panel__link a {
  color: #0B2A25;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.product-panel__calc {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 18px;
  padding: 16px 22px;
  border-radius: 14px;
  background: linear-gradient(135deg, #C8A27A, #B07E50);
  color: #fff !important;
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  text-decoration: none !important;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(176, 126, 80, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.product-panel__calc:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 14px 28px rgba(176, 126, 80, 0.45);
  color: #fff !important;
}
@media (max-width: 480px) {
  .product-panel__calc {
    font-size: 0.92rem;
    padding: 14px 12px;
  }
}

.order-box {
  background: linear-gradient(145deg, #0B2A25 0%, #163D36 48%, #1A4A41 100%);
  color: #fff;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid rgba(200, 162, 122, 0.18);
  box-shadow: 0 16px 40px rgba(11, 42, 37, 0.18);
}
.order-box--wide {
  width: 100%;
  padding: 36px 40px 32px;
}
.order-box__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.order-box h2 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.order-box .hint {
  color: rgba(255,255,255,0.68);
  font-size: 0.94rem;
  max-width: 540px;
  line-height: 1.55;
}
.order-box__total {
  flex-shrink: 0;
  text-align: right;
  font-size: 1.75rem;
  font-weight: 800;
  color: #C8A27A;
  line-height: 1.15;
  padding: 12px 18px;
  background: rgba(255,255,255,0.06);
  border-radius: 14px;
  border: 1px solid rgba(200,162,122,0.25);
}
.order-box__total small {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}
@media (max-width: 700px) {
  .order-box--wide { padding: 24px 18px 20px; }
  .order-box__head { flex-direction: column; gap: 16px; margin-bottom: 22px; padding-bottom: 18px; }
  .order-box__total { text-align: left; align-self: stretch; }
}

.order-config {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px 28px;
  margin-bottom: 12px;
}
@media (max-width: 900px) {
  .order-config { grid-template-columns: 1fr; gap: 16px; }
}

.field-group { margin-bottom: 20px; }
.field-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #C8A27A;
  margin-bottom: 10px;
}
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip-row[hidden] { display: none !important; }
.chip {
  appearance: none;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.06);
  color: #fff;
  border-radius: 999px;
  padding: 10px 15px;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.chip.active, .chip:hover {
  background: rgba(200,162,122,0.28);
  border-color: #C8A27A;
  color: #fff;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 32px;
  background: rgba(0,0,0,0.12);
  border-radius: 14px;
  padding: 4px 18px;
  border: 1px solid rgba(255,255,255,0.06);
}
@media (max-width: 800px) {
  .options-grid { grid-template-columns: 1fr; padding: 4px 14px; }
}
.option-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.9rem;
}
.options-grid .option-row:nth-last-child(-n+2) { border-bottom: none; }
@media (max-width: 800px) {
  .options-grid .option-row:nth-last-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .options-grid .option-row:last-child { border-bottom: none; }
}
.option-row label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  min-width: 0;
}
.option-row .option-thumb {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 10px;
  background: rgba(237, 230, 221, 0.2);
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.25s ease;
}
.option-row:hover .option-thumb {
  transform: scale(1.08);
}
@media (max-width: 480px) {
  .option-row .option-thumb {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }
}
.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.qty-control button {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  color: #fff;
  cursor: pointer;
}

.order-contacts {
  display: grid;
  grid-template-columns: 1fr 1fr 1.35fr;
  gap: 18px;
  margin-top: 4px;
  margin-bottom: 4px;
}
@media (max-width: 900px) {
  .order-contacts { grid-template-columns: 1fr; gap: 14px; }
}
.order-box input[type="text"],
.order-box input[type="tel"],
.order-box textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font: inherit;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.order-box input:focus,
.order-box textarea:focus {
  outline: none;
  border-color: rgba(200,162,122,0.55);
  background: rgba(255,255,255,0.11);
}
.order-box textarea { resize: vertical; min-height: 52px; }
.order-box input::placeholder,
.order-box textarea::placeholder { color: rgba(255,255,255,0.42); }

.order-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 700px) {
  .order-submit-row { flex-direction: column; align-items: stretch; gap: 16px; }
}
.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.68);
  margin: 0;
  flex: 1;
  line-height: 1.45;
}
.consent a { color: #C8A27A; text-decoration: underline; }
.order-box .btn-order,
#productOrderForm .btn-order {
  width: auto;
  min-width: 240px;
  padding: 16px 28px;
  border-radius: 60px;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(43,168,74,0.4);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
  box-shadow: none;
}
@media (max-width: 700px) {
  .order-box .btn-order,
  #productOrderForm .btn-order { width: 100%; min-width: 0; }
}
.order-box .btn-order:hover,
#productOrderForm .btn-order:hover {
  background: rgba(43,168,74,0.58);
  transform: translateY(-2px);
}
.order-status {
  margin-top: 14px;
  font-size: 0.9rem;
  min-height: 1.2em;
}
.order-status.ok { color: #8dffb0; }
.order-status.err { color: #ffb4b4; }

.seo-block {
  padding: 8px 0 64px;
  background: #F5F3F0;
}
.seo-block > .container,
.related > .container {
  max-width: 1120px;
}
.seo-panel {
  background: #fff;
  border-radius: 20px;
  padding: 32px 36px;
  border: 1px solid rgba(11, 42, 37, 0.08);
  box-shadow: 0 6px 22px rgba(11, 42, 37, 0.04);
}
@media (max-width: 700px) {
  .seo-panel { padding: 24px 20px; }
}
.seo-panel h2 {
  font-size: 1.35rem;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.seo-panel p { color: #6B7A7F; margin-bottom: 14px; line-height: 1.7; }
.seo-panel a { color: #0B2A25; font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.seo-links {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(11, 42, 37, 0.08);
}
.seo-links h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #1E2A2F;
}
.seo-links ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.seo-links li a {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(11, 42, 37, 0.05);
  border: 1px solid rgba(11, 42, 37, 0.1);
  color: #0B2A25;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}
.seo-links li a:hover {
  background: #0B2A25;
  color: #fff;
  border-color: #0B2A25;
}
.seo-links--models { margin-top: 18px; }

.related {
  padding: 0 0 80px;
  background: #F5F3F0;
}
.related h2 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

/* Footer */
.footer {
  background: #071B18;
  color: #fff;
  padding: 64px 0 32px;
  border-top: 1px solid rgba(200,162,122,0.1);
}
.footer-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h4 { color: #C8A27A; margin-bottom: 16px; }
.footer-col p, .footer-col li { color: #A0A3BD; font-size: 0.9rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a:hover { color: #C8A27A; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: #A0A3BD;
  font-size: 0.85rem;
}
.footer-bottom a:hover { color: #C8A27A; }

/* Modal — как на остальных страницах */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(7,27,24,0.85);
  backdrop-filter: blur(12px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}
.modal-overlay.active { display: flex; opacity: 1; }
.modal-content {
  background: linear-gradient(135deg, #1A3A35 0%, #0F2A25 100%);
  border-radius: 32px;
  padding: 48px 40px;
  max-width: 500px;
  width: 100%;
  position: relative;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}
@media (max-width: 480px) { .modal-content { padding: 32px 24px; } }
.modal-close-order {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}
.modal-content .form-group { margin-bottom: 14px; }
.modal-content input,
.modal-content textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font: inherit;
  box-sizing: border-box;
}
.modal-content textarea { resize: vertical; }
.checkbox-group {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

/* Photo lightbox */
.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(7, 27, 24, 0.92);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 64px;
}
.photo-lightbox[hidden] { display: none !important; }
.photo-lightbox img {
  max-width: min(1200px, 92vw);
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}
.photo-lightbox__close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  padding: 8px 12px;
}
.photo-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 2;
}
.photo-lightbox__prev { left: 16px; }
.photo-lightbox__next { right: 16px; }
.photo-lightbox__nav:hover,
.photo-lightbox__close:hover { background: rgba(200,162,122,0.35); }
@media (max-width: 700px) {
  .photo-lightbox { padding: 56px 12px 24px; }
  .photo-lightbox__nav { width: 40px; height: 40px; }
}
