:root {
  --bg: #020913;
  --bg-soft: #061423;
  --panel: rgba(5, 19, 31, 0.84);
  --panel-solid: #071624;
  --gold: #e6a12b;
  --gold-light: #ffc66a;
  --red: #d70d12;
  --line: rgba(255, 198, 106, 0.22);
  --text: #f6f1e8;
  --muted: #c7c9cc;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--sans);
  background:
    radial-gradient(circle at 18% 0%, rgba(24, 63, 88, 0.34), transparent 34rem),
    linear-gradient(180deg, #010711 0%, #03111d 45%, #02070e 100%);
}

body.is-locked {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(1, 8, 16, 0.88);
  backdrop-filter: blur(16px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 86px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 220px;
}

.brand__mark {
  width: 55px;
  height: 55px;
  flex-shrink: 0;
  overflow: hidden;
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand__text {
  display: grid;
  gap: 2px;
  text-transform: uppercase;
}

.brand__name {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 700;
  line-height: 0.9;
}

.brand__caption {
  max-width: 170px;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.35;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 40px);
  font-size: 14px;
  font-weight: 700;
}

.nav__link {
  position: relative;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.88);
  text-transform: uppercase;
}

.nav__link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--gold-light);
}

.nav__link:hover::after,
.nav__link.is-active::after {
  transform: scaleX(1);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header__phone {
  display: grid;
  gap: 3px;
  text-align: right;
}

.header__phone span {
  font-size: 16px;
  font-weight: 600;
}

.header__phone small {
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
}

.cart-button,
.menu-toggle {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 2px solid rgb(255 198 106);
  border-radius: 50%;
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.cart-button {
  position: relative;
}

.cart-button i {
  font-size: 16px;
}

.cart-button__count {
  position: absolute;
  top: -9px;
  right: -9px;
  display: grid;
  place-items: center;
  min-width: 21px;
  height: 21px;
  padding: 0 5px;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  background: var(--red);
}

.menu-toggle {
  display: none;
  gap: 4px;
}

.menu-toggle i {
  font-size: 16px;
  line-height: 1;
  display: block;
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: #030421;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: #030421 url(../images/hero-bg.webp) center right / auto 100% no-repeat;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 720px;
  padding-top: 92px;
}

.hero__copy {
  width: min(570px, 100%);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h2 {
  font-family: var(--serif);
}

h1 {
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 55px);
  font-weight: 700;
  line-height: 0.92;
  text-transform: uppercase;
}

.hero__lead {
  max-width: 520px;
  margin-bottom: 28px;
  color: #fff;
  font-size: 18px;
  line-height: 1.65;
}

.hero__features {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 0 0 34px;
  list-style: none;
}

.hero__features li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #f2f0ec;
  font-size: 15px;
  line-height: 1.45;
  margin-left: 20px;
}

.hero__features i {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 18px;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 5px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  border-color: rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, #f61b20, #b8070b);
  box-shadow: 0 12px 30px rgba(215, 13, 18, 0.28);
}

.button--ghost,
.button--outline {
  border-color: #ff9f35;
  background: rgba(2, 9, 19, 0.55);
}

.button--ghost {
  color: var(--gold-light);
}

.stats {
  position: relative;
  z-index: 3;
  background: #041627;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  padding: 46px 0 42px;
}

.stat {
  display: grid;
  justify-items: center;
  gap: 12px;
  min-height: 132px;
  padding: 0 18px;
  text-align: center;
}

.stat i {
  color: var(--gold-light);
  font-size: 36px;
  line-height: 1;
}

.stat strong {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
}

.stat span {
  max-width: 260px;
  color: #c9ccda;
  font-size: 13px;
  line-height: 1.65;
}

.section {
  padding: 50px 0;
}

.section__heading {
  display: grid;
  grid-template-columns: 90px auto 90px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 65px;
}

.section__heading span {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.section__heading span:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section__heading h2,
.services h2,
.consult h2,
.contacts h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 700;
  text-transform: uppercase;
}

.section__heading h2 {
  color: var(--gold-light);
  font-size: clamp(30px, 4vw, 35px);
}

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

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 198, 106, 0.18);
  border-radius: 7px;
  background: var(--dark2, #0e1c28);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.24);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  border-color: rgba(255, 198, 106, 0.56);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.38);
  transform: translateY(-6px);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: var(--dark2, #0e1c28);
  transition: transform 0.35s ease;
}

.product-card:hover img {
  transform: scale(1.04);
}

.product-card__body {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 12px;
  flex: 1;
  padding: 18px 16px 16px;
  border-top: 1px solid rgba(255, 198, 106, 0.18);
  text-align: left;
}

.product-card__category {
  color: rgba(255, 198, 106, 0.72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0;
  color: #fff;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.25;
}

.product-card__footer {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 10px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 198, 106, 0.16);
}

.product-card__footer strong {
  color: #ffc66a;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
}

.add-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  min-height: 36px;
  padding: 0 16px;
  border: 0;
  border-radius: 4px;
  color: #090908;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  text-transform: none;
  background: #ffc66a;
  cursor: pointer;
}

.services {
  background: linear-gradient(180deg, rgba(2, 12, 22, 0.4), rgba(6, 22, 35, 0.72));
}

.contacts__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.contacts__content p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

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

.service-item {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 240px;
  padding: 24px;
  border: 1px solid rgba(255, 198, 106, 0.18);
  border-radius: 7px;
  background: var(--dark2, #0e1c28);
}

.service-item strong {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 198, 106, 0.34);
  border-radius: 50%;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1;
}

.service-item h3 {
  margin: 0;
  color: #fff;
  font-size: 20px;
  line-height: 1.25;
}

.service-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.consult {
  padding: 70px 0;
  background: #041627;
}

.consult__inner {
  position: relative;
  display: grid;
  grid-template-columns: 100px 1fr auto 220px;
  gap: 28px;
  align-items: center;
  overflow: hidden;
  min-height: 162px;
  padding: 32px 36px;
  border: 1px solid rgba(255, 198, 106, 0.16);
  border-radius: 7px;
  background:
    linear-gradient(90deg, rgba(5, 24, 42, 0.93), rgba(3, 14, 26, 0.92)),
    ;
  box-shadow: var(--shadow);
}

.consult__icon {
  display: grid;
  place-items: center;
  width: 100px;
  height: 100px;
  color: #ff9f35;
}

.consult__icon img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  filter: invert(67%) sepia(66%) saturate(985%) hue-rotate(333deg) brightness(103%) contrast(101%);
}

.consult h2 {
  margin-bottom: 10px;
  font-size: clamp(27px, 3vw, 27px);
}

.consult p,
.consult__points {
  margin: 0;
  color: #e8e9ea;
  line-height: 1.6;
}

.consult__points {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
  font-size: 14px;
}

.consult__points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.consult__points i {
  flex: 0 0 18px;
  margin-top: 4px;
  color: #ff993c;
  font-size: 15px;
  text-align: center;
}

.contacts {
  display: none;
  padding-top: 8px;
  padding-bottom: 90px;
}

.contact-lines {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  color: #fff;
  font-weight: 700;
}

.contact-lines a:hover {
  color: var(--gold-light);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(255, 198, 106, 0.18);
  border-radius: 7px;
  background: rgba(1, 8, 15, 0.72);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 5px;
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
  outline: 0;
}

.contact-form input {
  height: 52px;
  padding: 0 16px;
}

.contact-form textarea {
  resize: vertical;
  padding: 14px 16px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 198, 106, 0.62);
}

.form-note {
  min-height: 20px;
  margin: 0;
  color: var(--gold-light);
  font-size: 13px;
}

.cart-panel {
  position: fixed;
  z-index: 90;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(390px, 100%);
  height: 100vh;
  padding: 24px;
  background: #06111d;
  box-shadow: -22px 0 80px rgba(0, 0, 0, 0.5);
  transform: translateX(105%);
  transition: transform 0.25s ease;
}

.cart-panel.is-open {
  transform: translateX(0);
}

.cart-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-panel__head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 34px;
}

.cart-panel__head button {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: #fff;
  font-size: 26px;
  line-height: 1;
  background: #10171d;
  cursor: pointer;
}

.cart-panel__items {
  display: grid;
  gap: 12px;
  padding: 22px 0;
  overflow: auto;
}

.cart-panel__empty {
  color: var(--muted);
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(255, 198, 106, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
}

.cart-item strong {
  font-size: 14px;
}

.cart-item button {
  border: 0;
  color: var(--gold-light);
  background: #10171d;
  cursor: pointer;
}

.cart-panel__order {
  margin-top: auto;
}

.cart-page {
  min-height: 70vh;
  padding-top: 112px;
  background:
    radial-gradient(circle at 50% 0%, rgba(4, 22, 39, 0.72), transparent 36rem),
    #020912;
}

.inner-page {
  min-height: 70vh;
  padding-top: 112px;
  background:
    radial-gradient(circle at 50% 0%, rgba(4, 22, 39, 0.72), transparent 36rem),
    #020912;
}

.contacts-page {
  padding: 50px 0;
}

.section__heading h1 {
  margin: 0;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 42px);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 34px;
}

.contact-card {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 16px;
  min-height: 225px;
  padding: 28px 24px;
  border: 1px solid rgba(255, 198, 106, 0.18);
  border-radius: 8px;
  background: var(--dark2, #0e1c28);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  text-align: center;
}

.contact-card > i {
  color: #d7b446;
  font-size: 34px;
}

.contact-card > span {
  margin: 0 0 4px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
}

.contact-card a,
.contact-card p {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
}

.contact-card p {
  max-width: 260px;
  font-size: 15px;
}

.contacts-page__content {
  padding: 2px 0 0;
}

.contacts-page__form {
  width: min(720px, 100%);
  margin: 0 auto 42px;
}

.contacts-page__content p,
.contacts-page__content li {
  color: #d7dce8;
  font-size: 16px;
  line-height: 1.72;
}

.contacts-page__content p {
  margin-bottom: 18px;
}

.contacts-page__content p:last-child {
  margin-bottom: 0;
}

.contacts-page__content h2 {
  margin: 22px 0 14px;
  color: #d7dce8;
  font-size: 16px;
  font-weight: 600;
}

.contacts-page__content ul {
  display: grid;
  gap: 10px;
  padding-left: 34px;
  margin: 0 0 24px;
}

.contacts-page__content li::marker {
  color: #d7b446;
}

.cart-section {
  padding: 50px 0;
}

.cart-title {
  margin-bottom: 65px;
}

.cart-page__list {
  overflow: hidden;
  border: 1px solid rgba(255, 198, 106, 0.22);
  border-radius: 8px;
  background: #1b1b2a;
}

.cart-row {
  display: grid;
  grid-template-columns: 78px 1fr auto 130px 42px;
  gap: 18px;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 198, 106, 0.18);
}

.cart-row:last-child {
  border-bottom: 0;
}

.cart-row img {
  width: 78px;
  height: 78px;
  border: 1px solid rgba(255, 198, 106, 0.28);
  border-radius: 7px;
  object-fit: cover;
  background: #0b0d14;
}

.cart-row__info h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
}

.cart-row__info p {
  margin: 0;
  color: #d8dae2;
  font-size: 13px;
}

.cart-row__controls {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
  font-weight: 700;
}

.cart-row__controls button,
.cart-row__delete {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 198, 106, 0.32);
  border-radius: 4px;
  color: #fff;
  background: transparent;
  cursor: pointer;
}

.cart-row__delete {
  width: 34px;
  height: 34px;
}

.cart-row__delete i {
  font-size: 15px;
}

.cart-row strong {
  color: #ffc66a;
  font-size: 18px;
  font-weight: 600;
  text-align: right;
  white-space: nowrap;
}

.cart-row__delete {
  border-color: rgba(255, 30, 46, 0.68);
  color: #ff5b67;
}

.cart-page__empty {
  padding: 38px 24px;
  text-align: center;
}

.cart-page__empty h2 {
  margin-bottom: 10px;
  color: #fff;
  font-family: var(--serif);
  font-size: 30px;
}

.cart-page__empty p {
  margin-bottom: 0;
  color: var(--muted);
}

.cart-page__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 36px;
}

.cart-page__summary > strong {
  color: #d7b446;
  font-size: 24px;
  font-weight: 600;
  white-space: nowrap;
}

.cart-page__actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.button--cart {
  color: #090908;
  background: #d3b044;
}

.overlay {
  position: fixed;
  z-index: 80;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.footer {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: 70px 0 36px;
  background: #010711;
}

.footer__flag {
  position: absolute;
  inset: 0;
  background: url(../images/flag-wave-photo.webp) center bottom / cover no-repeat;
}

.footer__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.95fr 1.55fr;
  gap: 40px;
  align-items: start;
  padding: 32px 36px;
  border: 1px solid rgba(255, 198, 106, 0.16);
  border-radius: 7px;
  background: linear-gradient(90deg, rgba(5, 24, 42, 0.93), rgba(3, 14, 26, 0.92));
  box-shadow: var(--shadow);
}

.brand--footer {
  margin-bottom: 18px;
}

.footer p {
  max-width: 390px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.footer__info {
  display: grid;
  gap: 13px;
}

.footer__info h2 {
  margin: 0 0 4px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
}

.footer__info a,
.footer__info span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #f2f0ec;
  font-size: 14px;
  line-height: 1.55;
}

.footer__info-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 28px;
}

.footer__info-main {
  display: grid;
  gap: 13px;
}

.footer__info i {
  width: 17px;
  margin-top: 3px;
  color: var(--gold-light);
  text-align: center;
}

.footer__info a {
  font-weight: 700;
}

.footer__info a span {
  display: inline;
  color: var(--gold-light);
  font-weight: 600;
}

.footer__info a:hover {
  color: var(--gold-light);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.product-card.reveal.is-visible:hover {
  transform: translateY(-6px);
}

@media (max-width: 1020px) {
  .header__phone {
    display: none;
  }

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

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

  .consult__inner {
    grid-template-columns: 70px 1fr;
  }

  .consult__inner .button,
  .consult__points {
    grid-column: 2;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 74px;
    overflow: visible;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: #010810;
    backdrop-filter: none;
    transition: none;
    transform: translate3d(0, 0, 0);
  }

  .site-header.is-scrolled,
  .site-header.is-open {
    height: 74px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: #010810;
    backdrop-filter: none;
    transition: none;
    transform: translate3d(0, 0, 0);
  }

  .header__inner {
    height: 74px;
    min-height: 0;
    overflow: visible;
  }

  .brand {
    min-width: auto;
    height: 55px;
  }

  .brand__caption {
    display: none;
  }

  .brand__name {
    font-size: 31px;
  }

  .brand__mark {
    display: block;
    flex: 0 0 47px;
    width: 47px;
    height: 47px;
  }

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

  .menu-toggle {
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
  }

  .nav {
    position: fixed;
    top: 74px;
    right: 14px;
    left: 14px;
    display: grid;
    gap: 0;
    padding: 14px;
    border: 1px solid rgba(255, 198, 106, 0.18);
    border-radius: 7px;
    background: rgba(4, 13, 22, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

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

  .nav__link {
    padding: 14px 8px;
  }

  .hero,
  .hero__content {
    min-height: 1110px;
  }

  .hero__bg {
    background:
      linear-gradient(180deg, rgba(3, 4, 33, 0) 0%, rgba(3, 4, 33, 0.18) 30%, rgba(3, 4, 33, 0.86) 64%, #030421 100%),
      url(../images/hero-bg.webp) calc(86% + 50px) top / auto 52% no-repeat,
      #030421;
  }

  .hero__content {
    align-items: flex-end;
    padding-top: 610px;
    padding-bottom: 46px;
  }

  .hero__copy {
    width: 100%;
  }

  .hero__lead {
    font-size: 16px;
  }

  .cart-page {
    padding-top: 74px;
  }

  .inner-page {
    padding-top: 74px;
  }

  .contact-card-grid {
    grid-template-columns: 1fr;
  }

  .cart-row {
    grid-template-columns: 72px 1fr;
    gap: 14px;
  }

  .cart-row__controls,
  .cart-row > strong,
  .cart-row__delete {
    grid-column: 2;
  }

  .cart-row > strong {
    text-align: left;
  }

  .cart-page__summary {
    align-items: stretch;
    flex-direction: column;
  }

  .cart-page__actions {
    flex-direction: column;
  }

  .stats__grid,
  .contacts__grid,
  .footer__inner {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 620px) {
  .section {
    padding: 54px 0;
  }

  .section__heading {
    grid-template-columns: 42px auto 42px;
    gap: 12px;
  }

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

  .product-card img {
    aspect-ratio: 1 / 1;
  }

  .stats__grid {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 34px 0;
  }

  .stat {
    min-height: auto;
    padding: 0 8px;
  }

  .hero__buttons,
  .hero__buttons .button,
  .cart-page__actions .button,
  .contact-form .button,
  .consult__inner .button {
    width: 100%;
  }

  .service-item {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .service-item strong {
    grid-row: auto;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .consult__inner {
    grid-template-columns: 1fr;
    padding: 26px 20px;
  }

  .consult__icon {
    justify-self: center;
  }

  .consult__inner .button,
  .consult__points {
    grid-column: auto;
  }

  .contact-form {
    padding: 22px 18px;
  }
}

/* ══════════════════════════════════════════
   КОРЗИНА — кнопки qty
   ══════════════════════════════════════════ */
.qty-minus,
.qty-plus {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 198, 106, 0.32);
  border-radius: 4px;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  background: transparent;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}

.qty-minus:hover,
.qty-plus:hover {
  border-color: var(--gold-light);
  background: rgba(255, 198, 106, 0.08);
}

/* Ссылки внутри карточек продуктов */
.product-card h3 a {
  color: #fff;
  text-decoration: none;
}

.product-card h3 a:hover {
  color: var(--gold-light);
}

/* Ссылки в корзине */
.cart-row__info h2 a {
  color: #fff;
  text-decoration: none;
}

.cart-row__info h2 a:hover {
  color: var(--gold-light);
}

/* Section h1 (inner pages) */
.section__heading h1 {
  margin: 0;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 42px);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════
   КАРТОЧКА ТОВАРА (product.php)
   ══════════════════════════════════════════ */

/* Хлебные крошки */
.breadcrumb {
  padding: 18px 0 0;
  margin-bottom: 50px;
  font-size: 13px;
  color: var(--muted);
}
.breadcrumb a { color: var(--muted); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb i { margin: 0 7px; font-size: 9px; }
.breadcrumb span { color: var(--gold-light); }

/* Двухколоночный layout */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding: 40px 0 72px;
}

/* Галерея */
.product-gallery-main {
  overflow: hidden;
  border: 1px solid rgba(255, 198, 106, 0.18);
  border-radius: 8px;
  background: #0c0c14;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .35s ease;
}

.product-gallery-main img:hover { transform: scale(1.04); }

.product-thumbnails {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.thumb {
  width: 72px; height: 72px;
  border: 1px solid rgba(255, 198, 106, 0.18);
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  background: #0c0c14;
  transition: border-color .2s;
}

.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb:hover, .thumb.active { border-color: var(--gold-light); }

/* Инфо-блок */
.product-info-cat {
  display: inline-block;
  color: rgba(255, 198, 106, 0.8);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.product-info-title {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 20px;
  text-transform: none;
}

.product-info-price {
  font-size: 34px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 24px;
  font-family: var(--sans);
}

.product-info-price.is-request {
  font-size: 22px;
  color: var(--muted);
}

.promo-badge-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(215, 13, 18, 0.15);
  border: 1px solid rgba(215, 13, 18, 0.35);
  color: #ff6b6b;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.product-info-desc {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 198, 106, 0.12);
}

.product-qty-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.product-qty-row label {
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
}

.qty-input {
  width: 64px;
  height: 44px;
  text-align: center;
  border: 1px solid rgba(255, 198, 106, 0.3);
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.05);
  outline: 0;
}

.qty-input:focus { border-color: var(--gold-light); }

.product-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Похожие товары */
.related-section {
  padding: 0 0 72px;
}

@media (max-width: 820px) {
  .product-detail {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 0 54px;
  }
}

/* ══════════════════════════════════════════════
   CHECKOUT
══════════════════════════════════════════════ */
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 28px;
  align-items: start;
  margin-top: 0;
}

/* ── Состав заказа ── */
.checkout-summary {
  background: var(--dark2, #0e1c28);
  border: 1px solid rgba(255, 198, 106, 0.22);
  border-radius: 12px;
  overflow: hidden;
}

.checkout-summary__header {
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255, 198, 106, 0.14);
  color: var(--gold-light, #ffc66a);
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkout-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.checkout-item img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  background: var(--dark3, #06111d);
  border-radius: 6px;
  padding: 4px;
  flex-shrink: 0;
}

.checkout-item__info { flex: 1; min-width: 0; }

.checkout-item__name {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.checkout-item__qty {
  font-size: 12px;
  color: var(--muted, #c7c9cc);
  margin-top: 2px;
}

.checkout-item__price {
  font-weight: 700;
  color: var(--gold-light, #ffc66a);
  font-size: 14px;
  white-space: nowrap;
  flex-shrink: 0;
}

.checkout-summary__total {
  padding: 16px 24px;
  text-align: right;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold-light, #ffc66a);
  border-top: 1px solid rgba(255, 198, 106, 0.14);
}

.checkout-summary__back {
  padding: 0 24px 20px;
}

/* ── Форма ── */
.checkout-form {
  background: var(--dark2, #0e1c28);
  border: 1px solid rgba(255, 198, 106, 0.22);
  border-radius: 12px;
  padding: 28px 32px 32px;
}

.checkout-form__header {
  color: var(--gold-light, #ffc66a);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkout-field {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.checkout-field label {
  font-size: 13px;
  color: var(--muted, #c7c9cc);
  font-weight: 500;
}

.checkout-field__req {
  color: var(--red, #d70d12);
}

.checkout-field input,
.checkout-field textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #fff;
  outline: none;
  transition: border-color .2s;
  box-sizing: border-box;
}

.checkout-field input {
  height: 52px;
  padding: 0 16px;
}

.checkout-field textarea {
  resize: vertical;
  padding: 14px 16px;
  min-height: 96px;
}

.checkout-field input:focus,
.checkout-field textarea:focus {
  border-color: rgba(255, 198, 106, 0.62);
}

/* ── Ошибки ── */
.checkout-errors {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}

.checkout-error {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(215, 13, 18, 0.1);
  border: 1px solid rgba(215, 13, 18, 0.38);
  border-radius: 8px;
  color: #ff8085;
  padding: 12px 16px;
  font-size: 14px;
}

/* ── Успех ── */
.checkout-success {
  text-align: center;
  padding: 64px 24px;
  background: var(--dark2, #0e1c28);
  border: 1px solid rgba(255, 198, 106, 0.22);
  border-radius: 12px;
  margin-top: 40px;
}

.checkout-success i {
  font-size: 56px;
  color: var(--gold-light, #ffc66a);
  margin-bottom: 20px;
  display: block;
}

.checkout-success h2 {
  margin-bottom: 12px;
  color: #fff;
}

.checkout-success p {
  color: var(--muted, #c7c9cc);
  line-height: 1.7;
}

/* ── Адаптив ── */
@media (max-width: 860px) {
  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .checkout-form {
    padding: 22px 20px 24px;
  }
}
