html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", sans-serif;
  background: var(--white);
  color: var(--dark);
}
:root {
  --gold: #c9a84c;
  --gold-light: #e2c06a;
  --dark: #1a1a1a;
  --dark2: #111111;
  --dark3: #222222;
  --card-bg: #2a2a2a;
  --white: #ffffff;
  --gray: #888888;
  --light-bg: #f5f4f0;
  --text-light: #cccccc;
}
.container {
  max-width: 1640px;
  margin: 0 auto;
  padding: 0 16px;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;

  background: linear-gradient(
    90deg,
    rgba(31, 28, 24, 0.92) 0%,
    rgba(69, 33, 28, 0.9) 18%,
    rgba(39, 31, 25, 0.92) 36%,
    rgba(78, 35, 28, 0.9) 52%,
    rgba(36, 28, 22, 0.94) 70%,
    rgba(83, 39, 24, 0.9) 100%
  );
  background-image: url("./../img/bg2.png");
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border-bottom: 1px solid rgb(0 0 0 / 60%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28), inset 0 -1px 0 rgba(201, 168, 76, 0.12);
}

header > * {
  position: relative;
  z-index: 2;
}
.header-inner {
  display: flex;
  padding: 32px 0;
  gap: 5px;
  align-items: center;
  justify-content: space-between;
}

.nav-header ul {
  display: flex;
  gap: 16px;
  align-items: center;
}
.nav-header li a {
  display: block;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #ccc;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;

  border-radius: 8px;
  transition: all 0.25s ease;
}

/* Hover */
.nav-header li a:hover {
  color: #c9a84c;
  background: rgba(212, 175, 55, 0.12);
}

/* Active */
.nav-header li a.active {
  color: #c9a84c;
  background: rgba(212, 175, 55, 0.12);
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.05);
}
.logo {
  width: 128px;
}

.logo img {
  width: 128px;
  height: 49px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-contact-info {
  display: flex;
  flex-direction: column;
}
.header-contact span {
  font-size: 11px;
  font-weight: 600;
  color: #bdbdbd;
}
.header-phone {
  font-size: 14px;
  font-weight: 600;
  color: #f5f0eb;
  text-decoration: none;
  transition: color 0.2s;
}
.header-phone:hover {
  color: var(--gold);
}
.hero {
  position: relative;
  padding: 229px 0;
  min-height: 600px;

  background: url("./../img/hero.png") center center / cover no-repeat;

  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  cursor: grab;
  touch-action: pan-y;
}

/* Слайди-фони */
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.2s ease-in-out, transform 6s ease-out;
  z-index: 0;
}
.hero:active {
  cursor: grabbing;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-slide {
  transition: opacity 1.2s ease-in-out, transform 6s ease-out;
  transition: opacity 1s ease, transform 8s ease;
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 8, 2, 0.82) 0%, rgba(10, 8, 2, 0.45) 55%, rgba(10, 8, 2, 0.1) 100%);
}

/* Контент поверх слайдів */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 229px 0;
}

/* Пагінація + стрілка */
.hero-pagination {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.hero-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.hero-dot {
  width: 28px;
  height: 2.5px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
  border: none;
  padding: 0;
}
.hero-slider {
  cursor: grab;
  user-select: none;
}

.hero-slider:active {
  cursor: grabbing;
}
.hero-dot.active {
  background: #c9a84c;
  width: 42px;
}

.hero-arrow-down {
  animation: heroArrowBounce 2s infinite;
  cursor: pointer;
  padding: 10px;
  border-radius: 4px;
  background: rgba(201, 168, 76, 0.1);
}
.hero-arrow-down:hover {
  background: rgba(179, 159, 104, 0.308);
  transform: translateY(-1px);
}
@keyframes heroArrowBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}
/* Основна темна плашка зліва */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgb(8 5 2 / 95%) 0%,
    rgb(26 16 6 / 98%) 22%,
    rgb(8 5 2 / 75%) 38%,
    rgba(8, 5, 2, 0.45) 55%,
    rgba(8, 5, 2, 0.15) 75%,
    transparent 100%
  );
}

/* Віньєтка + затемнення по краях */
/* .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;

  background: radial-gradient(circle at center, transparent 35%, rgba(0, 0, 0, 0.25) 70%, rgba(0, 0, 0, 0.8) 100%),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0) 25%,
      rgba(0, 0, 0, 0) 75%,
      rgba(0, 0, 0, 0.55) 100%
    );
} */

/* контент поверх */
.hero-content {
  position: relative;
  z-index: 10;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1640px;
  margin: 0 auto;
  padding: 0 16px;
  padding-top: 64px;
  width: 100%;
}

.hero-title {
  font-size: 60px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 52px;
}
.hero-title .gold {
  color: var(--gold);
}
.header-carts {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-cart {
  display: flex;
  padding: 10px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  border-radius: 4px;
  background: rgba(201, 168, 76, 0.1);
}
.header-cart:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--gold);
}

.btn-consult {
  background: #c9a84c;
  color: #4a3c28;
  border: none;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  display: flex;
  width: 270px;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.btn-consult:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-primary {
  width: 234px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}
.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 16px;
}
.btn-secondary {
  color: #c9a84c;
  padding: 13px 0;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 173px !important;
  background: rgba(201, 168, 76, 0.1);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
}

.hero-link {
  display: flex;
  align-items: center;
  gap: 4px;
  color: rgb(201 168 76 / 49%);
  margin-bottom: 52px;
}
.hero-subtitle {
  font-size: 17px;
  color: #bdbdbd;
  margin-bottom: 8px;
  font-weight: 600;
  margin-bottom: 52px;
}

.btn-primary {
  width: 234px !important;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.45);
}

.hero-features {
  display: flex;
  gap: 36px;
}
.hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  color: #aaa;
  font-weight: 500;
}

.hero-feature .icon svg {
  width: 14px;
  height: 14px;
}
.hero-feature span {
  line-height: 1.3;
  display: block;
  font-size: 11px;
  color: #f5f0eb;
  font-weight: 600;
}

.hero-badge {
  position: absolute;
  top: 80px;
  right: 50px;

  width: 120px;

  clip-path: polygon(0 0, 100% 0, 100% 78%, 50% 100%, 0 78%);

  background: rgba(10, 10, 10, 0.45);
  backdrop-filter: blur(10px);

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 20;
}

.hero-badge::before {
  content: "";
  position: absolute;
  inset: 8px;

  clip-path: polygon(0 0, 100% 0, 100% 78%, 50% 100%, 0 78%);

  background: linear-gradient(180deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.02));

  pointer-events: none;
}

.hero-badge__inner {
  position: relative;
  z-index: 2;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge__title {
  color: #c9a84c;
  font-size: 38px;
  font-weight: 600;
}

.hero-badge__subtitle {
  color: rgba(212, 175, 55, 0.85);
  font-size: 12px;
  margin-top: 4px;
  font-weight: 600;
}

.hero-badge__chair {
  width: 82px;
  height: 82px;
  position: absolute;
  top: 20px;
  color: rgba(212, 175, 55, 0.12);
}
.hero-badge {
}
.hero-badge__title,
.hero-badge__subtitle {
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.25);
}
@keyframes badgePop {
  from {
    transform: scale(0) rotate(-30deg);
  }
  to {
    transform: scale(1) rotate(0);
    opacity: 1;
  }
}
.hero-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero-title {
  font-size: 60px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 52px;
}
.hero-title .gold {
  color: var(--gold);
}

@keyframes fadeUp {
  from {
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── WHY SECTION ─── */
.why-section {
  background: var(--white);
  padding: 120px 0 172px 0;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 52px;
}
.section-heading .icon-wrap {
  padding: 13px 11px;
  background: #4a3c2818;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.section-heading h2 {
  font-size: 28px;
  font-weight: 700;
  color: #4a3c28;
  letter-spacing: 0.3px;
}
.why-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.why-card {
  border: 2px solid #4a3c28;
  border-radius: 4px;
  padding: 52px;
  max-width: 365px;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  cursor: default;
  background: var(--white);
  position: relative;
}
.card-icon-romb {
  position: absolute;
  bottom: -6px;
  left: 46%;
}
/* .why-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.12);
} */

.why-card .card-icon {
  padding: 10px;
  width: 92px;
  height: 92px;
  background: #4a3c28;
  border-radius: 4px;
  display: flex;

  align-items: center;
  margin-bottom: 20px;
  margin-bottom: 20px;
}
.why-card .card-icon img {
  margin: 0 auto;
}

.why-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #4a3c28;
}
.why-card p {
  font-size: 14px;
  color: #4a3c28b3;
  line-height: 1.2;
  font-weight: 600;
}

/* ─── POPULAR SECTION ─── */

.product-body {
  padding: 28px 24px 32px 24px;
}
.popular {
  position: relative;
  padding: 120px 0 172px 0;
  background: url("./../img/bg2.png") center center / cover no-repeat;
  overflow: hidden;
}

.popular::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;

  background: linear-gradient(180deg, rgba(8, 6, 4, 0.65) 0%, rgba(8, 6, 4, 0.55) 30%, rgba(8, 6, 4, 0.75) 100%);
  backdrop-filter: blur(8px);
}

.popular::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;

  background: radial-gradient(ellipse at center, transparent 20%, rgba(0, 0, 0, 0.35) 60%, rgba(0, 0, 0, 0.75) 100%);
}
.popular > * {
  position: relative;
  z-index: 5;
}
/* Весь контент поверх оверлеїв */
.popular .container {
  position: relative;
  z-index: 5;
}
.popular-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 52px;
}

.popular-title {
  display: flex;
  align-items: center;
  gap: 28px;
}

.popular-icon {
  padding: 8px;
  background: rgba(201, 168, 76, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  border-radius: 4px;
}

.popular-title h2 {
  color: #f5f0eb;
  font-size: 29px;
  font-weight: 700;
}

.popular-link {
  color: var(--gold);
  text-decoration: none;
  font-size: 14px;
  width: 249px !important;
  padding: 8px 0;
  display: flex;
  align-items: baseline;
  border-radius: 4px;
  justify-content: center;
}

.products-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.products-grid2 {
  justify-content: center;
}
.product-card {
  position: relative;

  background: linear-gradient(180deg, rgba(25, 20, 15, 0.96), rgba(12, 9, 6, 0.98));
  max-width: 386px;
  border: 2px solid rgb(201 168 76 / 32%);

  transition: 0.35s ease;

  border-radius: 2px;
}
.product-card.active,
.product-card:hover {
  border-color: var(--gold);

  box-shadow: 0 0 0 1px rgba(201, 168, 76, 0.15), 0 0 30px rgba(201, 168, 76, 0.12);
}
.product-card.active::after,
.product-card:hover::after {
  content: "";

  position: absolute;

  width: 8px;
  height: 8px;

  background: var(--gold);

  left: 50%;
  bottom: -4px;

  transform: translateX(-50%) rotate(45deg);
}
.product-badge {
  position: absolute;

  top: 14px;
  left: 14px;

  z-index: 5;

  background: rgba(201, 168, 76, 0.12);

  color: var(--gold);

  padding: 6px 12px;

  border-radius: 30px;
}
.product-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-body {
  padding: 18px;
}

.product-body h3 {
  color: #f5f0eb;

  font-size: 17px;

  line-height: 1.45;

  margin-bottom: 29px;

  font-weight: 600;
}
.product-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.product-tags span {
  background: rgb(201 168 76 / 11%);

  color: var(--gold);

  padding: 6px 12px;
  font-weight: 600;
  border-radius: 30px;

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

  align-items: center;

  gap: 12px;

  margin-bottom: 20px;
}

.current-price {
  color: var(--gold);
  font-weight: bold;
  font-size: 26px;
  padding: 10px 20px;
  font-weight: 700;
  background: rgb(201 168 76 / 11%);
  border-radius: 4px;
  border: 1px solid rgba(201, 168, 76, 0.15);
}

.old-price {
  color: rgba(201, 168, 76, 0.342);
  font-size: 17px;
  font-weight: 600;
  text-decoration: line-through;
}
.product-info {
  display: flex;

  flex-direction: column;

  gap: 6px;

  font-size: 11px;
  font-weight: 600;
  margin-bottom: 20px;
}
.product-info span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(201, 168, 76, 0.452);
}

.product-btn {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 9px;
  text-align: center;
  justify-content: center;
  text-decoration: none;
  background: var(--gold);
  padding: 10px 0;
  color: #4a3c28;

  font-weight: bold;

  border-radius: 4px;
  font-size: 14px;

  transition: 0.3s;
}

.product-btn:hover {
  filter: brightness(1.08);
}
.compare-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.product-card.product-card--compare {
  position: relative;
  max-width: none;
  overflow: visible;
  border: 1px solid rgba(201, 168, 76, 0.38);
  border-radius: 4px;
  background: linear-gradient(180deg, #17120ca3 0%, #090604d1 100%);
  height: 100%;
  min-height: 720px; /* можеш під себе змінити */
}

.product-card.product-card--compare:hover,
.product-card.product-card--compare.active {
  border-color: rgba(201, 168, 76, 0.55);
  box-shadow: 0 0 28px rgba(201, 168, 76, 0.08);
}

.product-card.product-card--compare::after {
  display: none;
}
.product-card.product-card--compare {
  display: flex;
  flex-direction: column;
}

.product-body.product-body--compare {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-compare__bottom {
  margin-top: auto;
}
/* select */
.product-compare__item {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 540px;
}

.product-compare__select {
  position: relative;
  z-index: 30;
  margin-bottom: 18px;
}

.product-compare__select-btn {
  width: 100%;
  height: 38px;
  padding: 0 22px;

  border: none;
  border-radius: 999px;

  background: rgba(201, 168, 76, 0.1);
  color: #d4b24a;

  font-size: 13px;
  font-weight: 600;

  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-compare__select.is-open .product-compare__arrow {
  transform: rotate(-180deg);
}
.product-compare__arrow {
  transform: rotate(-1deg);
  transition: 0.25s ease;
}
.product-compare__dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);

  padding: 8px;

  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 10px;

  background: #19120b;

  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);

  transition: 0.25s ease;
}

.product-compare__select.is-open .product-compare__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.product-compare__dropdown button {
  width: 100%;
  padding: 10px 12px;

  border: none;
  border-radius: 7px;

  background: transparent;
  color: rgba(245, 230, 185, 0.75);

  font-size: 13px;
  text-align: left;

  cursor: pointer;
}

.product-compare__dropdown button:hover {
  background: rgba(201, 168, 76, 0.12);
  color: #d4b24a;
}

/* image */
.product-image.product-image--compare {
  border: 1px solid rgba(201, 168, 76, 0.22);
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05), transparent 45%),
    linear-gradient(180deg, #2a241c 0%, #18110b 100%);
}

/* body */
.product-body.product-body--compare {
  padding: 28px 24px 32px;
  /* background: radial-gradient(circle at 85% 10%, rgba(201, 168, 76, 0.08), transparent 35%),
    linear-gradient(180deg, #160e08 0%, #090604 100%); */
  min-height: 205px;
}

/* rating */
.product-compare__rating {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
}

.product-compare__stars {
  color: #d9b543;
  font-size: 17px;
  letter-spacing: 2px;
  line-height: 1;
}

.product-compare__rating span {
  color: rgba(235, 226, 205, 0.7);
  font-size: 14px;
  font-weight: 600;
}

/* tags */
.product-tags.product-tags--compare {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.product-tags.product-tags--compare button {
  padding: 6px 12px;
  border-radius: 50px;
  background: #f5f0eb1c;
  color: rgba(235, 226, 205, 0.58);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

.product-tags.product-tags--compare button.active {
  background: rgba(201, 168, 76, 0.13);
  color: #d4b24a;
}

/* characteristics */
/* характеристики */
.product-compare__chars {
  position: relative;
  margin-bottom: 28px;
  padding: 28px 0 26px;
  min-height: 220px;
}

/* верхня і нижня риска */
.product-compare__chars::before,
.product-compare__chars::after {
  content: "";
  position: absolute;
  left: -26px;
  right: -26px;
  height: 1px;
  background: rgba(201, 168, 76, 0.18);
}

.product-compare__chars::before {
  top: 0;
}

.product-compare__chars::after {
  bottom: 0;
}

.product-compare__chars-head {
  width: 100%;

  padding: 9px 20px;

  border: none;
  border-radius: 50px;

  background: linear-gradient(90deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.06));

  color: #c9a84c;
  font-size: 14px;
  font-weight: 600;

  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-compare__chars-arrow {
  transform: rotate(-180deg);
  transition: 0.25s ease;
}

.product-compare__chars.is-hidden .product-compare__chars-arrow {
  transform: rotate(-1deg);
}

/* список */
.product-compare__chars-list {
  height: 112px;
  max-height: 112px;

  margin: 16px 20px 0 0;
  padding: 0 20px;

  list-style: none;
  counter-reset: char-counter;

  overflow-y: auto;
  overflow-x: hidden;

  transition: 0.3s ease;

  /* Firefox */
  scrollbar-width: thin;
  scrollbar-color: #d6b64a #1a120b;
}

.product-compare__chars.is-hidden .product-compare__chars-list {
  height: 0;
  max-height: 0;
  margin-top: 0;
  opacity: 0;
  overflow: hidden;
}

.product-compare__chars-list li {
  counter-increment: char-counter;

  display: flex;
  align-items: flex-start;
  gap: 10px;

  margin-bottom: 12px;

  color: #f5f0eb88;

  font-size: 13px;
  line-height: 1.25;
  font-weight: 600;
}

.product-compare__chars-list li:last-child {
  margin-bottom: 0;
}

.product-compare__chars-list li::before {
  content: counter(char-counter, decimal-leading-zero) ".";

  color: #f5f0eb88;
  font-size: 13px;
  font-weight: 700;

  flex-shrink: 0;
}
/* Chrome, Edge, Safari */
.product-compare__chars-list::-webkit-scrollbar {
  width: 4px;
}

.product-compare__chars-list::-webkit-scrollbar-track {
  background: #1a120b;
  border-radius: 999px;
}

.product-compare__chars-list::-webkit-scrollbar-thumb {
  background: #d6b64a;
  border-radius: 999px;
  border: none;
}

.product-compare__chars-list::-webkit-scrollbar-thumb:hover {
  background: #e0c45b;
}

/* прибирає стрілки зверху і знизу */
.product-compare__chars-list::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}

/* прибирає лишні куски */
.product-compare__chars-list::-webkit-scrollbar-corner {
  background: transparent;
}
/* price */
.product-price.product-price--compare {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

/* .current-price.current-price--compare {
  padding: 12px 18px;
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 3px;
  background: rgba(201, 168, 76, 0.11);
  color: #d8b84c;
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
}

.old-price.old-price--compare {
  color: rgba(201, 168, 76, 0.45);
  font-size: 15px;
  font-weight: 600;
  text-decoration: line-through;
} */

.product-btn.product-btn--compare.is-added {
  background: #6d5a25;
  color: #f4e3a0;
}

.product-compare__more {
  width: 100%;
  margin-top: 14px;
  border-radius: 4px;
  padding: 13px 0;
  background: #c9a84c1f;
  color: #c9a84c;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;

  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
}

.product-compare__more span {
  width: 6px;
  height: 6px;
  border-right: 2px solid #d4b24a;
  border-bottom: 2px solid #d4b24a;
  transform: rotate(-45deg);
}

.map-section {
  position: relative;
  width: 100%;
  border-radius: 2px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 52px;
}

/* це саме полотно карти */
.map-inner {
  position: relative;
}

/* картинка карти */
.map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* блок на карті тепер стоїть статично */
.map-content {
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: flex-start;
  text-decoration: none;
  gap: 12px;
}

/* якщо ромб має бути як місто Riga */
.map-icon-romb {
  margin-top: 12px;
}

.map-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* адреса */
.address-box {
  display: flex;
  align-items: center;
  gap: 10px;

  border: 2px solid #4a3c28;
  border-radius: 999px;
  padding: 7px 16px;

  font-size: 14px;
  text-decoration: none;
  font-weight: 600;
  color: #4a3c28;

  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  white-space: nowrap;
  backdrop-filter: blur(6px);

  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.address-box .pin,
.address-box .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.address-box .pin img,
.address-box .arrow img {
  display: block;
  transition: filter 0.3s ease, transform 0.3s ease;
}

/* hover ефект */
.address-box:hover {
  background: #4a3c28;
  color: #fff;
  border-color: #4a3c28;
  transform: scale(1.04);
  box-shadow: 0 8px 18px rgba(74, 60, 40, 0.35);
}

/* робить svg/img іконки білими */
.address-box:hover .pin img,
.address-box:hover .arrow img {
  filter: brightness(0) invert(1);
}

/* легкий рух стрілки */
.address-box:hover .arrow img {
  transform: translateY(2px);
}

.pin {
  color: #fff;
  border-radius: 50%;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.arrow {
}

/* Google Reviews */
.review-box {
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 7px;
  border: 2px solid #4b3f34;
  border-radius: 14px;
  padding: 3px 12px;
  font-size: 12px;

  white-space: nowrap;
  backdrop-filter: blur(6px);
}
.review-box span {
  color: #4a3c28d8;
  font-weight: 600;
}
.showroom {
  padding: 120px 0 172px 0;
}
.test-drive__top {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  margin-bottom: 52px;
}
.heading-badge {
  background: rgba(235, 231, 225, 0.432);
  color: #7d6f62;

  padding: 6px 28px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
}

.test-drive__select-wrap {
  position: relative;
  flex: 1;
  border: 1px solid #4a3c28;
  border-radius: 3px;
  display: flex;
  align-items: center;
  background: #fff;
}

.test-drive__check {
  position: absolute;
  left: 22px;
  line-height: 13px;
  text-align: center;
  border-radius: 1px;
  z-index: 2;
  border-radius: 4px;
  pointer-events: none;
}

.test-drive__select {
  width: 100%;
  height: 100%;
  padding: 0 48px 0 48px;
  border: none;
  outline: none;
  background: transparent;
  color: #82786d;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.test-drive__select option {
  color: #4a3c28;
  background: #fff;
  font-size: 14px;
}

.test-drive__arrow {
  position: absolute;
  right: 24px;
  color: #4a3c28;
  font-size: 12px;
  pointer-events: none;
}

.test-drive__route {
  width: 192px;
  padding: 12px 0px;
  border-radius: 4px;
  width: 240px;
  background: #4a3c2818;
  color: #4a3c28;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  transition: background 0.2s;
}
.test-drive__route:hover {
  background: #4a3c2825;
}
.test-drive__car {
  font-size: 13px;
  color: #4a3c28;
}
.test-drive {
}
.test-drive__select {
  flex: 1;
  border: 1px solid #4a3c28;
  border-radius: 3px;
  display: flex;
  align-items: center;
  padding: 10px 45px;
  gap: 13px;
  color: #82786d;
  font-size: 14px;
  font-weight: 600;
}

.test-drive__arrow {
  margin-left: auto;
  color: #4a3c28;
  font-size: 12px;
}

.test-drive__car {
  font-size: 13px;
  color: #4a3c28;
}

/* .test-drive__content {
        margin-top: 43px;
      } */

.test-drive__content p {
  margin: 0;
  color: #82786d;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.45;
  margin-bottom: 52px;
}

.test-drive__buttons {
  margin-top: 42px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 2px solid #4a3c2818;
  padding-bottom: 52px;
}

.test-drive__btn {
  padding: 12px 0;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.test-drive__btn--dark {
  width: 289px;
  background: #4a3c28;
  color: #fff;
  box-shadow: 0 4px 12px rgba(74, 60, 40, 0.25);
}

.test-drive__btn--light {
  min-width: 279px;
  background: #4a3c2818;
  color: #4a3c28;
}

.test-drive__icon {
  font-size: 15px;
  line-height: 1;
}

.showroom-grid {
  padding-top: 52px;
  justify-content: space-between;
}
.showroom-card {
  padding: 44px;
  display: flex;
  align-items: center;
  width: 381px;
  gap: 20px;
}

.showroom-card .card-icon {
  margin-bottom: 0;
}

/* =========================
   COMFORT HERO ADAPTIVE
========================= */
.comfort-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  cursor: grab;
  height: 800px;
  touch-action: pan-y;
  background: #111;
}
.comfort-hero::before {
  background: unset !important;
}
.comfort-hero__slide::after {
  background: linear-gradient(to right, rgb(10 8 2 / 82%) 0%, rgb(10 8 2 / 28%) 55%, rgb(10 8 2 / 75%) 100%) !important;
}

.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 52px;
}
.reviews-title {
  display: flex;
  align-items: center;
  gap: 28px;
}
.reviews-title .icon-wrap {
  padding: 13px 16px;
  background: #4a3c2818;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.purchase-process {
  padding: 0;
  color: #5a3529;
  padding-bottom: 172px;
}

.purchase-process__container {
  width: min(100%, 1280px);
  margin: 0 auto;
}

.purchase-process__head {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 40px;
}

.purchase-process__head-icon {
  width: 44px;
  height: 44px;
  border-radius: 3px;
  background: #eed3d0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #633927;
}

.purchase-process__head-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.purchase-process__title {
  margin: 0;
  color: #5a3529;
  font-size: 25px;
  line-height: 1.2;
  font-weight: 900;
}

.purchase-process__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 38px;
}

.purchase-step {
  position: relative;
  height: 128px;
  background: #e1dfdc6b;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4a3c28;
  border-radius: 4px;
  border-bottom: 4px solid #4a3c28;
}

.purchase-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -28px;
  width: 15px;
  height: 1px;
  border-top: 2px dashed #4a3c28;
  transform: translateY(-50%);
}

.purchase-step__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: inherit;
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
}

.purchase-step__inner svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 auto;
}

.purchase-step--active {
  background: #633927;
  color: #ffffff;
  box-shadow: none;
  border-radius: 3px;
  border: none;
}

.purchase-step--active .purchase-step__inner {
  color: #f5f0eb;
}
.purchase-step__inner img {
  filter: brightness(0) saturate(100%) invert(23%) sepia(13%) saturate(895%) hue-rotate(2deg) brightness(92%)
    contrast(86%);
  opacity: 0.75;
}
.purchase-step--active .purchase-step__inner img {
  filter: brightness(0) invert(1);
}
@media (max-width: 1024px) {
  .purchase-process__steps {
    gap: 22px;
  }

  .purchase-step:not(:last-child)::after {
    right: -19px;
    width: 14px;
  }
}

@media (max-width: 768px) {
  .purchase-process__head {
    gap: 14px;
    margin-bottom: 28px;
  }

  .purchase-process__title {
    font-size: 22px;
  }

  .purchase-process__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .purchase-step {
    height: 86px;
  }

  .purchase-step:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .purchase-process__steps {
    grid-template-columns: 1fr;
  }

  .purchase-step {
    height: 78px;
  }

  .purchase-process__title {
    font-size: 20px;
  }
}
.reviews-link {
  color: #4a3c28;
  text-decoration: none;
  font-size: 14px;
  width: 249px !important;
  padding: 8px 0;
  display: flex;
  align-items: baseline;
  border-radius: 4px;
  justify-content: center;
  background: #4a3c2818;
}
.reviews-link:hover {
  color: #4a3c28;
  background: #4d463d56;
}
.reviews {
  padding: 120px 0 172px 0;
}
.reviews__top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  margin-bottom: 48px;
}

.reviews__title-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
}

.reviews__icon {
  width: 52px;
  height: 48px;
  border-radius: 4px;
  background: #f0eeee;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviews__icon img {
  width: 27px;
  height: 27px;
  object-fit: contain;
}

.reviews__title {
  margin: 0;
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
  color: #4b3b2d;
}

.reviews__badges {
  display: flex;
  align-items: center;
  gap: 25px;
}

.reviews__badge {
  padding: 9px 28px;
  border-radius: 999px;
  background: #4a3c2818;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font-size: 14px;
  font-weight: 600;
  color: #4a3c28a8;
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.3s ease-in;
}
.reviews__badge:hover {
  background: #5c585259;
}
.reviews__badge span {
  font-size: 10px;
  color: #7d746d;
}

.reviews__all {
  width: 230px;
  height: 30px;
  border-radius: 4px;
  background: #f0eeee;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  text-decoration: none;
  color: #4b3b2d;
  font-size: 11px;
  font-weight: 700;
}

.reviews__all span {
  font-size: 15px;
  line-height: 1;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.review-card {
  position: relative;
  min-height: 398px;
  padding: 52px;
  border: 2px solid #4d3b2c;
  border-radius: 3px;
  background: #ffffff;
}

.review-card__content {
  display: grid;
  grid-template-columns: 315px 1fr;
  gap: 48px;
  align-items: start;
}

.review-card__profile {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.review-card__avatar {
  position: relative;
  z-index: 2;
  width: 140px;
  height: 140px;
  flex: 0 0 126px;
  border-radius: 50%;
  border: 3px solid #d7ae2f;
  object-fit: cover;
}

.review-card__user {
  width: 219px;
  margin-left: -57px;
  padding: 25px 20px 25px 38px;
  background: #4a3c280c;
  border-radius: 2px;
}
.review-card__users {
  margin-left: 47px;
}
.review-card__users h3 {
  margin: 0 0 16px;
  font-size: 17px;
  line-height: 1;
  font-weight: 600;
  color: #4a3c28;
}

.review-card__users p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  color: #756b63;
}

.review-card__stars {
  font-size: 17px;
  letter-spacing: 3px;
  color: #d6aa2f;
  white-space: nowrap;
}

.review-card__product {
  width: 165px;
  padding: 9px 23px;
  border-radius: 4px;
  background: #faf9f8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4a3c28;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 24px;
}

.review-card__text {
  font-size: 14px;
  line-height: 1.22;
  font-weight: 600;
  color: #716960;
  margin-bottom: 24px;
}

.review-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.review-card__meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  border-radius: 50px;
  padding: 5px 10px;
  line-height: 1;
  font-weight: 600;
  color: #777069;
  background-color: #faf9f8;
  white-space: nowrap;
}

.review-card__meta img {
  width: 11px;
  height: 11px;
  object-fit: contain;
}

.review-card__video {
  position: relative;
  width: 100%;
  height: 334px;
  margin-left: auto;
  border-radius: 6px;
  overflow: hidden;
  margin-top: -10px;
  background: #2d251d;
}
.review-card__video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.review-card__video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgb(10 8 2 / 89%) 0%, rgb(10 8 2 / 48%) 55%, rgb(10 8 2 / 89%) 100%) !important;
}

.review-card__play {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;

  width: 141px;
  height: 40px;

  transform: translate(-50%, -50%);

  border: 2px solid #c9a84c8f;
  border-radius: 50px;

  background: rgba(42, 33, 22, 0.55);
  backdrop-filter: blur(2px);

  color: #d1a93a;
  font-size: 14px;
  line-height: 1;
  font-weight: bold;

  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 0 15px 0 18px;
  box-shadow: inset 0 0 18px rgba(198, 161, 58, 0.08);
}

.review-card__play span {
  display: block;

  width: 0;
  height: 0;

  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 21px solid #d1a93a;

  flex-shrink: 0;
}

.review-card__play:hover {
  background: rgba(42, 33, 22, 0.7);
  border-color: #d1a93a;
}
.review-card__more {
  position: absolute;
  left: 50%;
  bottom: -7px;
  transform: translateX(-50%);
  padding: 0 18px;
  border: none;
  background: #ffffff;
  color: #4a3c28;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
}

.review-card__more::before {
  right: 100%;
}

.review-card__more::after {
  left: 100%;
}

.review-card__more span {
  font-size: 9px;
}
.featured-chair {
  padding: 0;
  min-height: 600px;
  background: url("./../img/hero.png") center center / cover no-repeat;
  background-repeat: no-repeat;
  position: relative;
  padding: 120px 0 172px 0;
}

.featured-chair__inner {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.featured-chair_block {
  margin-left: 82px;
  max-width: 606px;
}
/* затемнення */
.featured-chair__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    90deg,
    rgb(8 5 2) 0%,
    rgb(24 15 6 / 98%) 22%,
    rgba(8, 5, 2, 0.5) 48%,
    rgb(37 22 7 / 38%) 78%,
    rgb(8 5 2 / 75%) 100%
  );
}

/* контент */
.featured-chair__content {
  position: relative;
  z-index: 3;
}

.featured-chair__top {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 52px;
}

.featured-chair__badge {
  width: 48px;
  height: 48px;
  border-radius: 4px;
  background: rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.featured-chair__badge img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.featured-chair__title-wrap {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.featured-chair__title {
  margin: 0;
  color: #f5f0eb;
  font-size: 28px;
  line-height: 1;
  font-weight: bold;
}
.featured-compare {
  margin-bottom: 0 !important;
}

.featured-chair__rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.featured-chair__stars {
  color: #d6b64a;
  font-size: 17px;
  line-height: 1;
  letter-spacing: 2px;
}

.featured-chair__rating span {
  color: rgba(245, 240, 235, 0.72);
  font-size: 12px;
  font-weight: 500;
}

.featured-chair__text {
  margin-bottom: 52px;
}

.featured-chair__text p {
  margin: 0 0 16px;
  color: rgba(245, 240, 235, 0.62);
  font-size: 17px;
  line-height: 1.45;
  font-weight: 400;
}

.featured-chair__text p:last-child {
  margin-bottom: 0;
}

.featured-chair__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}

.featured-chair__tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(201, 168, 76, 0.1);
  color: #d6b64a;
  font-size: 14px;
  font-weight: 600;
}

.featured-chair__price {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}

.featured-chair__current-price {
  min-width: 138px;
  height: 54px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 168, 76, 0.22);
  border-radius: 3px;
  background: rgba(201, 168, 76, 0.08);
  color: #d6b64a;
  font-size: 23px;
  line-height: 1;
  font-weight: 800;
}

.featured-chair__old-price {
  color: rgba(201, 168, 76, 0.45);
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  text-decoration: line-through;
}

.featured-chair__buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.featured-chair__btn {
  width: unset;
  padding: 10px 28px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: 0.3s ease;
}

.featured-chair__btn img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.featured-chair__btn--gold {
  background: linear-gradient(180deg, #e0c45a 0%, #cda52f 100%);
  color: #3f2f18;
}

.featured-chair__btn--gold:hover {
  filter: brightness(1.08);
}

.featured-chair__btn--dark {
  background: rgba(201, 168, 76, 0.1);
  color: #d6b64a;
  padding: 11px 28px;
}

.featured-chair__btn--dark:hover {
  background: rgba(201, 168, 76, 0.16);
}

/* кнопка паузи справа */
.featured-chair__pause {
  position: relative;

  z-index: 4;

  padding: 11px 25px !important;
  height: 32px;
  border: 2px solid #c9a84c8f;
  border-radius: 50px;
  background: rgba(42, 33, 22, 0.55);
  backdrop-filter: blur(2px);
  color: #d1a93a;
  font-size: 14px;
  line-height: 1;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 15px 0 18px;
  box-shadow: inset 0 0 18px rgba(198, 161, 58, 0.08);

  cursor: pointer;
}

.featured-chair__pause span {
  position: relative;
  width: 8px;
  height: 10px;
  display: block;
}

.featured-chair__pause span::before,
.featured-chair__pause span::after {
  content: "";
  position: absolute;
  top: 0;
  width: 2px;
  height: 10px;
  border-radius: 2px;
  background: #d6b64a;
}

.featured-chair__pause span::before {
  left: 1px;
}

.chair-functions {
  padding: 120px 0 172px;
}

.chair-functions__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

.chair-functions__head {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 40px;
}

.chair-functions__head-icon {
  width: 42px;
  height: 42px;
  border-radius: 3px;
  background: #ece8e2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chair-functions__head-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.chair-functions__title {
  margin: 0;
  color: #5d4a35;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.1;
}
.chair-functions__bloks {
  display: flex;
  justify-content: center;
}
.chair-functions__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.chair-functions__card {
  position: relative;
  height: 236px;
  width: 100%;
  border-radius: 3px;
  background: #221a14;
}

.chair-functions__card-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.chair-functions__card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chair-functions__card-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgb(15 10 6 / 78%) 0%, rgb(15 10 6 / 67%) 45%, rgba(15, 10, 6, 0.55) 100%),
    rgba(23, 15, 8, 0.2);
}

.chair-functions__card-content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 18px;
  height: 100%;

  padding: 0 52px;
}

.chair-functions__card-icon {
  width: 92px;
  height: 92px;
  border-radius: 4px;
  background: rgb(255 255 255 / 18%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  backdrop-filter: blur(6px);
}

.chair-functions__card-icon img {
  /* width: 40px;
  height: 40px;
  object-fit: contain; */
}

.chair-functions__card-text {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.18;
  font-weight: 700;
}

.chair-functions__card-btn {
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  z-index: 4;

  padding: 9px 20px;

  border-radius: 50px;
  background: #ffffff;
  color: #4a3c28;
  text-decoration: none;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;

  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.chair-functions__card-btn span {
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #5a4936;
}

.chair-functions__brand {
  position: relative;
  height: 236px;
  width: 100%;
  border: 2px solid #4a3c28;
  border-radius: 3px;
}

.chair-functions__brand-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chair-functions__brand-inner img {
  max-width: 160px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.chair-functions__brand::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 7px;
  height: 7px;
  background: #4a3c28;
  transform: translateX(-50%) rotate(45deg);
}

/* hover */
.chair-functions__card:hover .chair-functions__card-overlay {
  background: linear-gradient(90deg, rgba(15, 10, 6, 0.62) 0%, rgba(15, 10, 6, 0.3) 45%, rgba(15, 10, 6, 0.48) 100%),
    rgba(23, 15, 8, 0.16);
}

.chair-functions__card:hover .chair-functions__card-btn {
  background: #f3efe9;
}
.featured-chair-buy {
  background: url("./../img/bg4.png") center center / cover no-repeat;
}
.featured-chair-buy__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    269deg,
    rgb(8 5 2) 0%,
    rgb(24 15 6 / 98%) 22%,
    rgba(8, 5, 2, 0.5) 48%,
    rgb(37 22 7 / 38%) 78%,
    rgb(8 5 2 / 75%) 100%
  );
}
.featured-chair-buy__text {
  width: 100%;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  background: rgba(201, 168, 76, 0.1);
  color: #c9a84c;
  padding: 11px 28px;
  transition: 0.3s ease;
  margin-bottom: 64px;
}
.chair-buy_features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-bottom: 52px;
}
.featured-chair__btn--dark2 {
  background-color: #c9a84c;
  color: #4a3c28;
}
.functions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 43px;
}
.functions-card {
  display: flex;
  align-items: flex-start;
  padding: 52px;
  max-width: 490px;
  gap: 20px;
}
.featured-chair-play {
  background: url("./../img/bg5.png") center center / cover no-repeat;
}
.featured-chair-play__overlay {
  background: linear-gradient(90deg, rgb(15 10 6 / 78%) 0%, rgb(15 10 6 / 67%) 45%, rgba(15, 10, 6, 0.55) 100%),
    rgba(23, 15, 8, 0.2);
}
.faq-section {
  padding: 120px 0 172px;
  background: #f7f7f6;
}

.faq-wrapper {
  max-width: 1557px;
  margin: 0 auto;
}

.faq-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}

.faq-head__icon {
  width: 34px;
  height: 34px;
  border-radius: 3px;
  background: #eeece8;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
}

.faq-head__icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.faq-title {
  margin: 0;

  color: #514231;
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
}

.faq-list {
  width: 100%;
  max-width: 1431px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #4a3c28;
  background: transparent;
  border-radius: 4px;
}

.faq-item + .faq-item {
  margin-top: 10px;
}

.faq-item__btn {
  width: 100%;
  min-height: 28px;

  padding: 13px 24px;

  border: none;
  background: transparent;

  display: flex;
  align-items: baseline;
  gap: 16px;
  cursor: pointer;
  text-align: left;

  color: #4f4131;
}

.faq-item__number {
  /* margin-right: 12px; */

  color: #4a3c28;
  font-size: 17px;
  line-height: 1;
  font-weight: 800;

  flex-shrink: 0;
}

.faq-item__question {
  color: #4a3c28;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 600;

  flex: 1;
}

.faq-item__arrow {
  width: 0;
  height: 0;

  margin-left: 12px;

  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #4d3f2f;

  transition: transform 0.25s ease;

  flex-shrink: 0;
}

.faq-item.is-open .faq-item__arrow {
  transform: rotate(180deg);
}

.faq-item__content {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease, opacity 0.25s ease;
  opacity: 0;
}

.faq-item__text {
  padding: 10px 42px 14px 68px;

  color: rgba(77, 63, 47, 0.78);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 600;
}

.faq-item.is-open .faq-item__content {
  height: 86px; /* фіксована висота відповіді */
  opacity: 1;
}
.featured-chair-garante__text {
  padding: 9px 24px;
  width: unset;
}
.faq-item:hover {
  border-color: #514231;
}

.faq-item:hover .faq-item__question,
.faq-item:hover .faq-item__number {
  color: #3f3326;
}
.chair-comand_features {
  grid-template-columns: repeat(2, 1fr);
  max-width: 317px;
}
.faq-item {
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item__btn,
.faq-item__number,
.faq-item__question,
.faq-item__text,
.faq-item__arrow {
  transition: color 0.3s ease, border-color 0.3s ease, transform 0.25s ease;
}

/* hover + active */
.faq-item:hover,
.faq-item.is-open {
  background: #4a3c28;
  border-color: #4a3c28;
  /* transform: scale(1.01); */
  box-shadow: 0 8px 18px rgba(74, 60, 40, 0.28);
}

/* текст білий при hover + active */
.faq-item:hover .faq-item__number,
.faq-item:hover .faq-item__question,
.faq-item.is-open .faq-item__number,
.faq-item.is-open .faq-item__question {
  color: #fff;
}

/* відповідь теж світла коли active */
.faq-item.is-open .faq-item__text {
  color: rgba(255, 255, 255, 0.82);
}

/* стрілка біла при hover + active */
.faq-item:hover .faq-item__arrow,
.faq-item.is-open .faq-item__arrow {
  border-top-color: #fff;
}

/* стрілка вверх коли відкрито */
.faq-item.is-open .faq-item__arrow {
  transform: rotate(180deg);
}
.featured-chair-command {
  background: url("./../img/bg6.png") center center / cover no-repeat;
}

.consult-help {
  position: relative;
  overflow: hidden;
  padding: 120px 0 172px 0;
  background: url(./../img/bg2.png) center center / cover no-repeat;
}

.consult-help__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.consult-help__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.consult-help__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    359deg,
    rgb(20 13 8) 0%,
    rgb(9 6 4 / 96%) 28%,
    rgb(16 11 7 / 91%) 55%,
    rgb(45 29 18 / 85%) 100%
  );
}

.consult-help__container {
  position: relative;
  z-index: 3;
  max-width: 1334px;
  margin: 0 auto;
  padding: 0 18px;

  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 70px;
}

.consult-help__content {
  padding-top: 68px;
}

.consult-help__head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 40px;
}
.choose {
  color: #d2ad44;
}
.consult-help__icon {
  width: 48px;
  height: 48px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.consult-help__icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.consult-help__title {
  margin: 0;
  color: #f2eee9;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 700;
}

.consult-help__title span {
  color: #d2ad44;
}

.consult-help__text {
  margin-bottom: 34px;
}

.consult-help__text p {
  margin: 0 0 22px;
  color: rgba(242, 238, 233, 0.58);
  font-size: 16px;
  line-height: 1.3;
  font-weight: 500;
}

.consult-help__text p:last-child {
  margin-bottom: 0;
}

.consult-help__note {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border-radius: 3px;
  background: rgba(201, 168, 76, 0.1);
  color: #d2ad44;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
}

.consult-help__note img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

/* form box */
.consult-help__form-box {
  position: relative;
  width: 100%;
  max-width: 544px;
  border: 1px solid rgba(201, 168, 76, 0.55);
  border-radius: 2px;
  padding: 60px 52px;
  background: rgba(18, 12, 7, 0.36);
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.18);
}

.consult-help__form-box::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 7px;
  height: 7px;
  background: #c9a84c;
  transform: translateX(-50%) rotate(45deg);
}

.consult-help__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.consult-help__field {
  position: relative;
  display: flex;
  align-items: flex-start;
  min-height: 39px;
  background: rgba(201, 168, 76, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

.consult-help__field-icon {
  position: absolute;
  left: 19px;
  top: 17px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.consult-help__field-icon img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.consult-help__field input,
.consult-help__field textarea {
  width: 100%;
  border: none;
  background: transparent;
  outline: none;
  color: #c9a84c81;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  padding-left: 37px;
}

.consult-help__field input {
  padding: 15px 48px;
}

.consult-help__field textarea {
  min-height: 88px;
  resize: none;

  padding-top: 15px;
  padding-left: 48px;
  padding-right: 48px;
  padding-bottom: 15px;

  line-height: 1.25;

  font-size: 14px;
  font-weight: 600;
  color: #f3efe9;
  font-family: inherit;
}

.consult-help__field textarea::placeholder {
  color: #c9a84c81;
  font-size: 14px;
  font-weight: 600;
}

.consult-help__field input::placeholder,
.consult-help__field textarea::placeholder {
  color: #c9a84c81;
  font-weight: 600;
  font-size: 14px;
}
.consult-help__field input,
.consult-help__field textarea {
  font-size: 14px;
  font-weight: 600;
  color: #f3efe9;
  font-family: inherit;
}

.consult-help__field input::placeholder,
.consult-help__field textarea::placeholder {
  color: #c9a84c81;
  font-size: 14px;
  font-weight: 600;
}
.consult-help__field--textarea {
  min-height: 56px;
}

.consult-help__submit {
  margin-top: 2px;
  width: 100%;
  height: 39px;
  border: none;
  border-radius: 3px;
  background: linear-gradient(180deg, #dfc15a 0%, #cfaa3b 100%);
  color: #4a3821;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  transition: 0.25s ease;
}

.consult-help__submit:hover {
  filter: brightness(1.06);
}

.consult-help__submit img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.consult-help__policy {
  margin-top: 3px;
  color: rgba(201, 168, 76, 0.52);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 500;
}
.site-footer-custom {
  padding: 72px 0;
  border-top: 1px solid rgba(74, 60, 40, 0.14);
}

.site-footer-custom__container {
  width: 100%;
  max-width: 1110px;
  margin: 0 auto;
  padding: 0 16px;
}

.site-footer-custom__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
}

.site-footer-custom__logo {
  display: inline-block;
  margin-bottom: 42px;
}

.site-footer-custom__logo img {
  width: 108px;
  height: auto;
  display: block;
}

.site-footer-custom__desc {
  margin: 0;
  color: #6a5b4b;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 500;
}

.site-footer-custom__cols {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1.1fr 1fr 1fr;
  gap: 50px;
}

.site-footer-custom__col h4 {
  margin: 0 0 16px;
  color: #4a3c28;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.site-footer-custom__col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer-custom__col ul li {
  margin-bottom: 16px;
}

.site-footer-custom__col ul li:last-child {
  margin-bottom: 0;
}

.site-footer-custom__col a {
  color: rgba(107, 93, 77, 0.651);
  text-decoration: none;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 600;
  transition: 0.25s ease;
}

.site-footer-custom__col a:hover {
  color: #4a3c28;
}

.site-footer-custom__socials a,
.site-footer-custom__contacts a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site-footer-custom__socials img,
.site-footer-custom__contacts img {
}

.site-footer-custom__line {
  width: 100%;
  height: 1px;
  margin: 30px 0 36px;
  background: rgba(74, 60, 40, 0.14);
}

.site-footer-custom__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.site-footer-custom__bottom-left {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.site-footer-custom__copy {
  color: #6b5d4d;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 600;
}

.site-footer-custom__badges {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.site-footer-custom__badge {
  padding: 7px 15px;
  border-radius: 30px;
  background: #f0efed;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #6b5d4d;
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
}

.site-footer-custom__badge img {
}

.site-footer-custom__payments {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.site-footer-custom__payments img {
}

.site-footer-custom__brand {
  max-width: 346px;
}
/* адаптив */
.nav-header-mob {
  display: none;
}
.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 5px;
  padding: 8px;
  border: 1.5px solid #e0d5b5;
  border-radius: 6px;
  background: none;
  cursor: pointer;
  z-index: 210; /* вище меню, щоб завжди було доступне */
  position: relative;
  transition: border-color 0.2s;
}
.reviews-titles {
  display: flex;
  gap: 28px;
  align-items: center;
}
.catalog-filters {
  padding-bottom: 52px;
  width: 100%;
}

.catalog-filters__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.catalog-price {
  display: flex;
  align-items: center;
  gap: 15px;
}

.catalog-price__label {
  color: #c9a84c;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.catalog-price__value {
  padding: 13px 28px;

  border: none;
  border-radius: 4px;
  background: #c9a84c34;

  color: #c9a84c;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  transition: 0.25s ease;
}

.catalog-price__value:hover {
  background: #43331f;
  border-color: rgba(205, 169, 74, 0.55);
}

.catalog-selects {
  display: flex;
  align-items: center;
  gap: 13px;
}

.catalog-select {
  padding: 13px 32px;

  border: none;
  border-radius: 4px;
  background: #c9a84c34;

  color: #c9a84c;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  cursor: pointer;
  transition: 0.25s ease;
}
.popular-catalog {
  padding-top: 170px !important;
}
.popular-blog {
  padding-bottom: 172px;
}
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 12px;

  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

.breadcrumbs__link {
  color: rgba(184, 143, 43, 0.45);
  text-decoration: none;
  transition: color 0.25s ease;
}
.products-grid-cataloge {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.popular-header-cataloge {
  flex-direction: column;
  align-items: baseline;
  margin-bottom: 120px;
}

.breadcrumbs__link:hover {
  color: #b88f2b;
}

.breadcrumbs__separator {
  color: rgba(184, 143, 43, 0.35);
}

.breadcrumbs__current {
  color: #c99b2f;
}
.popular-catalog-title {
  margin-bottom: 24px;
}
.catalog-select--small {
  min-width: 118px;
}

.catalog-select:hover {
  background: #43331f;
  border-color: rgba(205, 169, 74, 0.55);
}

.catalog-select__icon {
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.catalog-select__arrow {
  width: 9px;
  height: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 2px;
}
.catalog-pagination {
  width: 100%;
  padding: 48px 0 38px;

  display: flex;
  justify-content: end;
  align-items: center;
  gap: 20px;
}

.catalog-pagination__item {
  width: 88px;
  height: 54px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid transparent;
  border-radius: 5px;

  background: #21190d;

  color: rgba(201, 160, 51, 0.45);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;

  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.catalog-pagination__item:hover {
  color: #d6ad38;
  border-color: rgba(201, 160, 51, 0.45);
  background: #281f11;
}

.catalog-pagination__item.active {
  color: #d6ad38;
  border-color: rgba(201, 160, 51, 0.65);
  background: rgba(36, 27, 14, 0.95);
}

.catalog-pagination__item.active:hover {
  transform: none;
}

/* PRODUCT */

.product-single__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 14, 10, 0.96) 0%, rgba(70, 24, 17, 0.88) 45%, rgba(26, 18, 13, 0.96) 100%),
    url("./img/product-bg.jpg") center / cover no-repeat;
  opacity: 1;
}

.product-single__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(30, 12, 8, 0.45);
  pointer-events: none;
}

.product-single__container {
  position: relative;
  z-index: 10;
  width: min(100%, 1640px);
  margin: 0 auto;
  padding: 0 24px;
}
.pr-chair__tags {
  margin-bottom: 0;
}
.product-single__head {
  margin-bottom: 70px;
}
.pr-meta-block {
  display: flex;
  justify-content: space-between;
}
.product-tags__rating {
  margin-bottom: 0;
}
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  font-size: 12px;
  color: rgba(214, 151, 58, 0.55);
}

.breadcrumbs a {
  color: rgba(214, 151, 58, 0.55);
  text-decoration: none;
}
.breadcrumbs-cart {
  margin-bottom: 120px;
}
.breadcrumbs-cart a {
  color: #4a3c28a8 !important;
}
.breadcrumbs-cart span {
  color: #4a3c28a8 !important;
}
.breadcrumbs-cart span:last-child {
  color: #4a3c28 !important;
}

.breadcrumbs span:last-child {
  color: #e2a03d;
}
.product-price-cart p:first-child {
  color: #4a3c28;
  background-color: #fff;
}
.product-price-cart p:last-child {
  color: #4a3c28be;
}
.cart-item__info .product-info {
  margin-bottom: 0;
}
.cart-summary__promo {
  width: 100%;

  margin-bottom: 52px;
  padding: 13px 32px;

  border: 0;
  border-radius: 5px;
  background: #ffffff;

  display: flex;
  align-items: center;
  gap: 15px;

  color: #4a3c28be;
}

.cart-summary__promo svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  fill: #4a3c28be;
}

.cart-summary__promo input {
  width: 100%;
  height: 100%;

  border: 0;
  outline: none;
  background: transparent;

  color: #4a3c28;
  font-size: 14px;
  font-weight: 800;
}

.cart-summary__promo input::placeholder {
  color: #4a3c28be;
  opacity: 1;
}

.cart-summary__promo:focus-within {
  box-shadow: 0 0 0 2px rgba(74, 60, 40, 0.18);
}
.cart-item__info .product-info span {
  color: #4a3c28be;
}
.cart-item__info .product-info img {
  filter: brightness(0) saturate(100%) invert(23%) sepia(13%) saturate(895%) hue-rotate(2deg) brightness(92%)
    contrast(86%);
  opacity: 0.75;
}
.product-single h1 {
  max-width: 780px;
  margin: 0;
  font-size: 26px;
  line-height: 1.25;
  font-weight: 700;
  color: #f7efe6;
}

.product-single__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
  align-items: start;
}

/* ── TOP GRID ── */
.product-top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: start;
  margin-bottom: 120px;
}

/* ══════════════ GALLERY ══════════════ */
.gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.g-main {
  position: relative;
  width: 100%;

  /* однакова пропорція для всіх картинок */
  aspect-ratio: 12 / 10;

  /* максимальна висота на великих екранах */
  height: 540px;

  border-radius: 4px;
  overflow: hidden;
  background: var(--surface2);

  border: 1px solid #c9a84c;

  box-shadow: inset 0 0 0 1px rgba(255, 190, 75, 0.12), 0 0 18px rgba(205, 145, 48, 0.18),
    0 10px 28px rgba(205, 145, 48, 0.28);
}

.g-main img {
  width: 100%;
  height: 100%;

  /* головне: всі фото заповнюють однаковий блок */
  object-fit: cover;
  object-position: center;

  display: block;
  transition: opacity 0.25s ease;
}
@media (max-width: 768px) {
  .g-main img {
    object-position: center center;
  }
  .site-footer-custom__logo {
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .g-main {
    height: 260px;
  }

  .g-main img {
    object-position: center center;
  }
}
@media (max-width: 768px) {
  .g-main {
    max-height: none;
  }
}

@media (max-width: 480px) {
  .g-main {
    aspect-ratio: 1.3 / 1;
  }
}
/* Нижня золота лінія */
.g-main::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  background: #c9a84c;
  box-shadow: 0 -5px 18px rgba(255, 194, 79, 0.55), 0 0 22px rgba(255, 194, 79, 0.45);
  z-index: 3;
  pointer-events: none;
}
.g-badges {
  position: absolute;
  top: 28px;
  left: 28px;
  display: flex;
  gap: 8px;
  z-index: 4;
}
.g-badge {
  background: rgba(201, 168, 76, 0.12);
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 15px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.g-badge img {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* thumbnails strip — drag / swipe */
.g-strip-outer {
  position: relative;
  overflow: hidden;
  padding: 0;
}

/* fade справа */
.g-strip-outer::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 48px;
  height: 100%;
  background: linear-gradient(to right, transparent, var(--bg));
  pointer-events: none;
  z-index: 5;
}

.g-strip {
  display: flex;
  gap: 24px;

  overflow-x: auto;
  overflow-y: hidden;

  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;

  user-select: none;
  touch-action: pan-x;

  transform: none !important;
  transition: none !important;

  scrollbar-width: none;
  -ms-overflow-style: none;
}

.g-strip::-webkit-scrollbar {
  display: none;
}

.g-strip.dragging {
  scroll-behavior: auto;
}

.g-thumb {
  flex: 0 0 auto;
  scroll-snap-align: start;
  cursor: pointer;
}

.g-thumb img {
  pointer-events: none;
}
.cart {
  min-height: 100vh;
  padding: 48px 0 70px;
  border-top: 5px solid #2f251e;
  color: #5a3529;
}

.cart__container {
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
}

.cart__header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.cart__icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5a3529;
}

.cart__icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.cart__title {
  margin: 0;
  font-size: 25px;
  line-height: 1.2;
  font-weight: 800;
  color: #5a3529;
}

.cart__count {
  min-width: 34px;
  height: 28px;
  padding: 0 10px;
  border-radius: 30px;
  background: #edd0cc;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #8b6257;
  font-size: 13px;
  font-weight: 800;
}

.cart__breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 86px;
  color: #70483d;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
}

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

.cart__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 345px;
  gap: 52px;
  align-items: flex-start;
  padding-bottom: 120px;
}

.cart__products {
  display: flex;
  flex-direction: column;
  gap: 38px;
}

.cart-item {
  position: relative;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 81px;
  align-items: center;
  border-radius: 4px;
  background: #e1dfdc6b;
  border-right: 4px solid #4a3c28be;
}

.cart-item__photo {
  width: 320px;
  height: 300px;
  background: #4a211d;
  overflow: hidden;
}

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

.cart-item__content {
  padding: 26px 52px;
}

.cart-item__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 26px;
}

.cart-item__name {
  max-width: 420px;
  margin: 0;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 900;
  color: #4a3c28;
}

.cart-item__number {
  font-size: 17px;
  font-weight: 900;
  color: #4a3c28be;
}

.cart-item__prices {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-bottom: 25px;
}

.cart-item__price {
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
  color: #4b2b22;
}

.cart-item__old-price {
  position: relative;
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  color: #7d584e;
}

.cart-item__old-price::after {
  content: "";
  position: absolute;
  left: -3px;
  right: -3px;
  top: 50%;
  height: 1px;
  background: #7d584e;
}

.cart-item__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 700;
  color: #4a3c28be;
}

.cart-item__line {
  width: 100%;
  height: 1px;
  margin: 24px 0;
  background: rgba(90, 53, 41, 0.24);
}

.cart-item__bottom {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cart-item__qty {
  /* padding: 12px 28px; */
  width: 113px;
  height: 44px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
}

.cart-item__qty button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #4a3c28be;
  font-size: 16px;
  line-height: 1;
  font-weight: 900;
  cursor: pointer;
}

.cart-item__qty span {
  color: #4a3c28;
  font-size: 14px;
  font-weight: 900;
}

.cart-item__delete {
  border: 0;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cart-item__delete svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.cart-item__info {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #6f483e;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 700;
}

.cart-item__info span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.cart-item__info svg {
  width: 10px;
  height: 10px;
  fill: currentColor;
  flex: 0 0 auto;
}

.cart__clear {
  display: flex;
  align-self: flex-end;
  padding: 14px 28px;

  border: 0;
  border-radius: 4px;
  background: #4a3c2818;
  color: #4a3c28;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.cart__clear span {
  margin-left: 10px;
  font-size: 18px;
  margin-top: 2px;
  line-height: 1;
}

.cart-summary {
  background: #e1dfdc6b;
  padding: 40px 36px 32px;
  border-bottom: 4px solid #4a3c28be;
  margin-bottom: 24px;
  border-radius: 4px;
}

.cart-summary__title {
  margin: 0 0 52px;
  color: #4a3c28;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 900;
}

.cart-summary__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(90, 53, 41, 0.22);
}

.cart-summary__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #4a3c28be;
  font-size: 14px;
  font-weight: 900;
}

.cart-summary__row strong {
  font-size: 14px;
  font-weight: 900;
  color: #4a3c28be;
}

.cart-summary__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 15px 0 52px;
}

.cart-summary__total span,
.cart-summary__total strong {
  color: #4a3c28;
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
}

.cart-summary__order {
  width: 100%;
  padding: 13px 0;
  margin-bottom: 14px;
  border: 0;
  border-radius: 4px;
  background: #4a3c28;
  color: #f5f0eb;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  gap: 8px;
  transition: all 0.3s ease-in;
}
.cart-summary__order:hover {
  background: #4a3c2898;
}
.cart-summary__order svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.cart-summary__note {
  margin: 0 0 36px;
  color: #4a3c28be;
  font-size: 11px;
  line-height: 1.3;
  font-weight: 700;
}

.cart-summary__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cart-summary__badges span {
  padding: 6px 12px;
  border-radius: 40px;
  background: #4a3c2818;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4a3c28be;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.cart-summary__badges svg {
  width: 11px;
  height: 11px;
  fill: currentColor;
  flex: 0 0 auto;
}

@media (max-width: 1024px) {
}

@media (max-width: 768px) {
  .cart__title {
    font-size: 22px;
  }

  .cart__breadcrumbs {
    margin-bottom: 42px;
  }

  .cart {
    padding-bottom: 30px;
  }

  .cart-item {
    grid-template-columns: repeat(1, 1fr);
    gap: 11px;
    border-right: none;
    border-bottom: 4px solid #4a3c28be;
  }
  .cart-item__content {
    padding: 26px 17px;
  }
  .purchase-process {
    padding-bottom: 60px;
  }
  .breadcrumbs-cart {
    margin-bottom: 50px;
  }
  .cart__body {
    padding-bottom: 30px;
  }
  .cart-item__top {
    margin-bottom: 18px;
  }

  .cart-item__prices {
    gap: 18px;
    margin-bottom: 18px;
  }

  .cart-item__price {
    font-size: 20px;
  }

  .cart-item__old-price {
    font-size: 13px;
  }

  .cart-item__bottom {
    flex-wrap: wrap;
  }

  .cart-item__info {
    width: 100%;
    margin-left: 0;
  }
  .cart-item__photo {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 560px) {
  .cart__header {
    gap: 12px;
  }
  .featured-chair-buy__text {
    margin-bottom: 20px;
  }
  .cart__title {
    font-size: 19px;
  }

  .cart__count {
    height: 25px;
    min-width: 30px;
    font-size: 12px;
  }

  .cart-item {
    grid-template-columns: 1fr;
    padding-right: 0;
    padding-bottom: 28px;
  }

  .cart-item::after {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 2px;
  }

  .cart__clear {
    justify-content: space-between;
    width: 100%;
    margin-right: 0;
  }

  .cart-summary {
    padding: 30px 22px 28px;
  }

  .cart-summary__title {
    margin-bottom: 35px;
  }

  .cart-summary__total span,
  .cart-summary__total strong {
    font-size: 21px;
  }
}
/* адаптив */
@media (max-width: 768px) {
  .g-strip {
    gap: 16px;
  }

  .g-strip-outer::after {
    width: 32px;
  }
  .g-badge {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .g-strip {
    gap: 12px;
  }
  .g-badge {
    font-size: 10px;
  }
  .g-strip-outer::after {
    width: 24px;
  }
}

.g-thumb {
  flex: 0 0 calc((100% - 3 * var(--gap)) / 3.6);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.g-thumb-img {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  opacity: 0.55;
  width: 252px;
  height: 184px;
  background: var(--surface2);
  transition: border-color 0.2s, opacity 0.2s;
}
.g-thumb-img::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #c9a84c;
  z-index: 3;
  pointer-events: none;
}
.g-thumb-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.g-thumb.active .g-thumb-img {
  opacity: 1;
}
.g-thumb.active .g-thumb-img::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 95px;
  background: linear-gradient(
    to top,
    rgba(210, 145, 45, 0.32) 0%,
    rgba(210, 145, 45, 0.18) 35%,
    rgba(210, 145, 45, 0.06) 70%,
    rgba(210, 145, 45, 0) 100%
  );
  z-index: 2;
  pointer-events: none;
}
.g-thumb.active .g-thumb-img::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: #c9a84c;
  box-shadow: 0 -5px 18px rgba(255, 194, 79, 0.55), 0 0 22px rgba(255, 194, 79, 0.45);
  z-index: 3;
  pointer-events: none;
}
.g-thumb:hover .g-thumb-img {
  opacity: 0.82;
}
.g-num {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-faint);
  padding-left: 2px;
  transition: color 0.2s;
}
.g-thumb.active .g-num {
  color: var(--gold);
}

.g-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.58);
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  color: #fff;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 10px;
  font-family: "Montserrat", sans-serif;
  display: flex;
  align-items: center;
  gap: 4px;
  pointer-events: none;
  white-space: nowrap;
}
.g-play svg {
  width: 10px;
  height: 10px;
  fill: #fff;
}
.g-dur {
  position: absolute;
  bottom: 4px;
  left: 5px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 3px;
}
.g-dur-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red-dot);
}

/* ══════════════ RIGHT PANEL ══════════════ */
.pr-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 4px;
  max-width: 718px;
}

.pr-tags-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 52px;
}
.pr-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.pr-tag {
  background: var(--gold-faint);
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  font-size: 11px;
  font-weight: 500;
  padding: 3px 11px;
  border-radius: 20px;
  cursor: default;
  transition: background 0.18s;
}
.pr-tag:hover {
  background: rgba(200, 132, 30, 0.22);
}

.pr-rating {
  display: flex;
  align-items: center;
  gap: 5px;
}
.pr-stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
}
.pr-stars svg {
  width: 14px;
  height: 14px;
  fill: var(--gold);
}
.pr-rating-num {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
}
.pr-rating-cnt {
  font-size: 12px;
  color: var(--text-faint);
}

.pr-info-grid {
  display: flex;
  gap: 24px;
  border-top: 1px solid rgba(201, 168, 76, 0.247);
  border-bottom: 1px solid rgba(201, 168, 76, 0.247);
  padding: 52px 0;
  margin-bottom: 52px;
}
.pr-info-grid .pr-info-card .hero-feature span {
  color: var(--gold);
}
.pr-info-card {
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--gold-dim);
  border-radius: 8px;

  padding: 26px 17px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 160px;
}
.pr-info-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}
.pr-info-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}
.pr-info-label {
  font-size: 10px;
  color: var(--text-faint);
  line-height: 1.3;
}
.pr-info-val {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

.pr-price-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.pr-price {
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--gold-dim);
  padding: 7px 16px;
  border-radius: 8px;
  letter-spacing: 0.5px;
}
.pr-old-price {
  font-size: 15px;
  color: var(--text-faint);
  text-decoration: line-through;
}

.pr-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pr-meta-item {
  font-size: 11px;
  color: var(--text-faint);
  display: flex;
  align-items: center;
  gap: 6px;
}
.pr-meta-item svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  color: var(--gold);
}

.pr-btns {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.btn-cart {
  width: 100%;
  background: var(--gold);
  border: none;
  color: #fff8ee;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 20px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.18s, transform 0.12s;
  letter-spacing: 0.3px;
}
.btn-cart:hover {
  background: #a86c12;
}
.btn-cart:active {
  transform: scale(0.98);
}
.btn-cart svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.pr-actions {
  display: flex;
  gap: 8px;
}
.pr-action-btn {
  flex: 1;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 28px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: background 0.18s;
  white-space: nowrap;
}
.pr-action-btn:hover {
  background: rgba(201, 168, 76, 0.356);
}
.pr-action-btn svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}
.product-wrap {
  border-bottom: 1px solid #c9a84c59;
  padding-bottom: 120px;
}
/* ── DIVIDER ── */
.divider {
  border: none;
  border-top: 1px solid rgba(200, 132, 30, 0.15);
  margin: 28px 0;
}
.inbank-box {
  width: 100%;
  padding-top: 120px;

  color: #f7e9df;
  overflow: hidden;
  position: relative;
}

.inbank-box > * {
  position: relative;
  z-index: 2;
}

.inbank-box__head {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 58px;
}
.inbank-box__head .popular-catalog-title {
  margin-bottom: 0;
}

.inbank-box__icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184, 99, 35, 0.28);
  color: #d89b36;
}

.inbank-box__head h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  color: #fff2e8;
  white-space: nowrap;
}

.inbank-box__badges {
  display: flex;
  align-items: center;
  gap: 18px;
}

.inbank-box__badges a {
  background: rgba(201, 168, 76, 0.1);
  color: #c9a84c;
}

.inbank-box__badges span {
  min-height: 30px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(112, 50, 21, 0.55);
  color: #dba13b;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.inbank-box__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin-bottom: 48px;
}

.inbank-card {
  height: 112px;
  padding: 0 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  background: rgba(201, 168, 76, 0.1);
  border-bottom: 4px solid #c9a84c;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.inbank-card label {
  font-size: 13px;
  font-weight: 700;
  color: #c9a84c;
  white-space: nowrap;
}

.inbank-card__value,
.inbank-card__select {
  height: 38px;
  min-width: 104px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(217, 154, 52, 0.212);
  border-radius: 3px;
  color: #c9a84c;
  font-size: 13px;
  font-weight: 600;
}

.inbank-card__select {
  gap: 10px;
  cursor: pointer;
  font-family: inherit;
}

.inbank-box__bottom {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #b06f25;
  font-size: 12px;
  font-weight: 600;
}

.inbank-result {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.inbank-result span {
  color: #c9a84c;
}

.inbank-result strong {
  min-height: 28px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: rgba(201, 168, 76, 0.1);
  color: #c9a84c;
  font-size: 14px;
  font-weight: 700;
}

.inbank-divider {
  width: 1px;
  height: 22px;
  background: rgba(217, 155, 52, 0.16);
}

.inbank-box__bottom p {
  margin: 0;
  color: #c9a84c;
  font-size: 11px;
  font-weight: 600;
}
.product-specs {
  width: 100%;
  padding: 72px 0 90px;
  color: #6b3a2b;
}

.product-specs__tabs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(107, 58, 43, 0.12);
}

.product-specs__tab {
  padding: 10px 32px;
  border: none;
  border-radius: 4px;
  background: #4a3c2818;
  color: #4a3c28;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.product-specs__tab span {
  font-size: 13px;
  line-height: 1;
}

.product-specs__tab.active,
.product-specs__tab:hover {
  background: #4a3c28;
  color: #fff;
}
.product-specs__tab.active img,
.product-specs__tab:hover img {
  filter: brightness(0) invert(1);
}
.product-specs__tab img {
  filter: brightness(0) saturate(100%) invert(23%) sepia(13%) saturate(909%) hue-rotate(6deg) brightness(89%)
    contrast(86%);
}
.product-specs__content {
  padding-top: 52px;
}

.product-specs__top {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-bottom: 58px;
}
.specs__badges a {
  color: #4a3c28;
}
.product-specs__title {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-shrink: 0;
}

.product-specs__icon {
  width: 38px;
  height: 38px;
  background: rgba(107, 58, 43, 0.13);
  color: #673929;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

.product-specs__title h2 {
  margin: 0;
  color: #6b3a2b;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 800;
}

.product-specs__badges {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.product-specs__badge {
  min-height: 28px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(107, 58, 43, 0.07);
  color: #6b3a2b;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.product-specs__grid {
  display: grid;
  grid-template-columns: 430px 430px;
  justify-content: space-between;
  gap: 80px;
  max-width: 1333px;
}

.product-specs__left,
.product-specs__right {
  width: 100%;
}

.product-specs__right {
  padding-top: 2px;
}

.spec-block {
  margin-bottom: 52px;
}

.spec-block:last-child {
  margin-bottom: 0;
}

.spec-block__title {
  width: fit-content;
  padding: 6px 28px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: #4a3c2818;
  color: #4a3c28;
  display: block;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
}

.spec-block p {
  margin: 0 0 15px;
  color: #4a3c28bd;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 500;
  margin-left: 28px;
}

.spec-block p:last-child {
  margin-bottom: 0;
}
/* 
.spec-block b {
  color: #6b3a2b;
  font-weight: 700;
} */

.spec-block ol {
  margin: 0;
  padding-left: 22px;
}
.breadcrumbs-article {
  margin-bottom: 52px !important;
}
.spec-block li {
  margin-bottom: 16px;
  color: rgba(107, 58, 43, 0.88);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 500;
}

.spec-block li:last-child {
  margin-bottom: 0;
}
.reviews-titles-cart {
  font-size: 28px;
  font-weight: 700;
  color: #4a3c28;
  letter-spacing: 0.3px;
}
.reviews-titles-carts {
  margin-bottom: 24px;
}
.reviews-titles-article {
  max-width: 1000px;
  margin-bottom: 52px;
}
.article-tags .cart-summary__badges span {
  font-size: 12px;
  padding: 6px 12px;
  gap: 11px;
}
.article-tags {
  margin-bottom: 52px;
}
@media (max-width: 992px) {
  .product-specs__tabs {
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 24px;
  }

  .product-specs__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    margin-bottom: 42px;
  }

  .product-specs__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
}

@media (max-width: 576px) {
  .product-specs {
    padding: 45px 0 60px;
  }

  .product-specs__content {
    padding-top: 38px;
  }

  .product-specs__title {
    gap: 16px;
  }

  .product-specs__title h2 {
    font-size: 24px;
  }

  .product-specs__badges {
    width: 100%;
  }

  .product-specs__badge {
    width: 100%;
    white-space: normal;
  }

  .spec-block {
    margin-bottom: 36px;
  }

  .spec-block p,
  .spec-block li {
    font-size: 12px;
  }
}
/* Адаптив */
@media (max-width: 1200px) {
  .inbank-box {
    padding: 36px 24px 26px;
  }

  .inbank-box__head {
    flex-wrap: wrap;
    margin-bottom: 36px;
  }

  .inbank-box__cards {
    gap: 18px;
  }

  .inbank-card {
    padding: 0 24px;
  }
}

@media (max-width: 900px) {
  .inbank-card {
    justify-content: space-between;
  }

  .inbank-box__bottom {
    flex-wrap: wrap;
    gap: 16px;
  }

  .inbank-divider {
    display: none;
  }
}

@media (max-width: 576px) {
  .inbank-box {
    padding: 28px 16px 24px;
  }

  .inbank-box__head {
    gap: 14px;
  }

  .inbank-box__head h3 {
    font-size: 19px;
    white-space: normal;
  }

  .inbank-box__badges {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .inbank-card {
    height: auto;
    min-height: 96px;
    padding: 22px 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .inbank-card__value,
  .inbank-card__select {
    width: 100%;
    justify-content: space-between;
  }

  .inbank-result {
    width: 100%;
    justify-content: space-between;
  }
}
/* адаптив */
@media (max-width: 992px) {
  .catalog-filters__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }

  .catalog-price {
    justify-content: center;
  }
  .product-specs__tab {
    width: 230px;
  }
  .catalog-selects {
    justify-content: center;
    flex-wrap: wrap;
  }
  .reviews-titles-product {
    flex-direction: column;
    align-items: baseline;
  }
}
.article-section {
  position: relative;
  width: 100%;
  padding: 120px 0 172px;
}

.article-block {
  position: relative;
  z-index: 2;
  max-width: 974px;
  min-height: 462px;
  margin: 0 auto;
}

.article-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 10px 50px 28px 50px;
}

.article-icon {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  background: rgba(106, 61, 46, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-icon svg {
  width: 23px;
  height: 23px;
  fill: #6a3d2e;
}

.article-icon svg path:last-child {
  fill: none;
  stroke: #f8dedb;
  stroke-width: 1.6;
}

.article-head h2 {
  margin: 0;
  max-width: 720px;
  font-size: 22px;
  line-height: 1.16;
  font-weight: 800;
  color: #5a3428;
  letter-spacing: -0.2px;
}

.article-content {
  border-top: 1px solid rgba(74, 60, 40, 0.14);
  padding-top: 52px;
}

.article-tags {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}

.article-tags span,
.article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 20px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(106, 61, 46, 0.08);
  color: rgba(90, 52, 40, 0.72);
  font-size: 9px;
  line-height: 1;
  font-weight: 700;
}

.article-tags svg,
.article-meta svg {
  width: 11px;
  height: 11px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.article-tags svg path:first-child {
  fill: currentColor;
  stroke: none;
}

.article-text p {
  margin: 0 0 16px 0;
  font-size: 17px;
  line-height: 1.18;
  font-weight: 600;
  color: #4a3c28be;
}
.article-text p:last-child {
  margin-bottom: 52px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 31px;
}

.article-meta span {
  min-height: 23px;
  padding: 5px 11px;
  font-size: 9px;
}

.article-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 37px;
}

.article-btn {
  padding: 13px 30px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  transition: 0.25s ease;
}

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

.article-btn--dark {
  min-width: 190px;
  background: #4a3c28;
  color: #ffffff;
}

.article-btn--light {
  min-width: 150px;
  background: rgba(106, 61, 46, 0.08);
  color: #633722;
}

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

.article-btn--dark:hover {
  background: #4f2b1b;
}

.article-btn--light:hover {
  background: rgba(106, 61, 46, 0.14);
}
.breadcrumbs-blog {
  border-bottom: 1px solid rgba(74, 60, 40, 0.14);
  padding-bottom: 52px;
  margin-bottom: 52px;
}
.blog-block {
  max-width: 1556px;
  margin: 0 auto;
}
.article-blogs {
  margin-top: 20px;
  margin-bottom: 0 !important;
}
.blog-page {
  position: relative;
  min-height: 100vh;
  padding: 17px 0 48px;
  overflow: hidden;
}

.blog-bg-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent 74px, rgba(105, 61, 46, 0.12) 75px, transparent 76px),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent calc(25% - 9px),
      rgba(255, 255, 255, 0.95) calc(25% - 9px),
      rgba(255, 255, 255, 0.95) calc(25% + 9px),
      transparent calc(25% + 9px),
      transparent 25%
    );
}

.blog-container {
  position: relative;
  z-index: 2;
  max-width: 672px;
  margin: 0 auto;
}

/* top */

.blog-top {
  margin-bottom: 47px;
}

.blog-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.blog-title__icon {
  width: 25px;
  height: 25px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #633722;
}

.blog-title__icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.blog-title h1 {
  margin: 0;
  font-size: 17px;
  line-height: 1;
  font-weight: 800;
  color: #5b3529;
}

.breadcrumbs a {
  text-decoration: none;
}

/* search */

.blog-search {
  width: 100%;
  margin-bottom: 52px;
  padding: 12px 30px;
  display: flex;
  align-items: center;
  gap: 13px;
  border-radius: 4px;
  background: #4a3c2815;
}

.blog-search svg {
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  fill: none;
  stroke: #633722;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.blog-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  color: #4a3c28a4;
}

.blog-search input::placeholder {
  color: rgba(90, 52, 40, 0.6);
}

/* tabs */

.blog-tabs {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  overflow-x: auto;
  scrollbar-width: none;
}

.blog-tabs::-webkit-scrollbar {
  display: none;
}

.blog-tab {
  flex: 0 0 auto;
  padding: 13px 30px;
  border: 0;
  border-radius: 4px;
  background: #4a3c2815;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  color: #4a3c28;
  cursor: pointer;
  transition: 0.25s ease;
}

.blog-tab.active,
.blog-tab:hover {
  background: #4a3c28;
  color: #f5f0eb;
}

.blog-tab.active img,
.blog-tab:hover img {
  filter: brightness(0) invert(1);
}
.blog-tab img {
  filter: brightness(0) saturate(100%) invert(23%) sepia(13%) saturate(909%) hue-rotate(6deg) brightness(89%)
    contrast(86%);
}
/* cards */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 72px 52px;
}

.blog-card {
  min-width: 0;
}

.blog-card__img {
  position: relative;
  display: block;
  width: 100%;
  height: 377px;
  overflow: hidden;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  background: #000;
}

.blog-card__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 8, 2, 0.486) 0%,
    rgba(10, 8, 2, 0.062) 55%,
    rgb(10 8 2 / 75%) 100%
  ) !important;
  pointer-events: none;
}

.blog-card__img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: 0.35s ease;
}

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

.blog-card__body {
  min-height: 58px;
  padding: 24px 20px 40px;
  background: #4a3c2815;
  border-radius: 4px;
  border-bottom: 4px solid #4a3c28be;
}

.blog-card__body h3 {
  margin: 0 0 20px;
  font-size: 17px;
  line-height: 1.15;
  font-weight: 900;
  color: #4a3c28;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-card__body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 600;
  color: #4a3c28a9;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 11px;
  flex-wrap: wrap;
}

.blog-card__meta span {
  height: 16px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(106, 61, 46, 0.08);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 6.3px;
  line-height: 1;
  font-weight: 800;
  color: rgba(90, 52, 40, 0.72);
}

.blog-card__meta svg {
  width: 8px;
  height: 8px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.whatsapp-fixed {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 9999;

  padding: 19px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;

  background: radial-gradient(
      circle at 35% 30%,
      rgba(255, 233, 226, 0.55) 0%,
      rgba(255, 233, 226, 0.15) 28%,
      transparent 50%
    ),
    linear-gradient(145deg, #3f3f3f 0%, #3f3f3f 100%);

  box-shadow: 0 14px 28px rgba(64, 32, 18, 0.45), inset 0 1px 1px rgba(255, 255, 255, 0.35);

  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: whatsappPulse 2.4s ease-in-out infinite;
}

.whatsapp-fixed::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.08);
  opacity: 0;
  transform: scale(1);
  animation: whatsappRing 2.4s ease-in-out infinite;
}

.whatsapp-fixed:hover {
  transform: scale(1.09);
  box-shadow: 0 18px 36px rgba(64, 32, 18, 0.55), inset 0 1px 1px rgba(255, 255, 255, 0.4);
}

.whatsapp-fixed__icon {
  position: relative;
  z-index: 2;

  width: 50px;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-fixed__icon svg {
  width: 50px;
  height: 50px;
  fill: #fff;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(50, 25, 15, 0.2));
}

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.035);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes whatsappRing {
  0% {
    opacity: 0.35;
    transform: scale(1);
  }

  70% {
    opacity: 0;
    transform: scale(1.24);
  }

  100% {
    opacity: 0;
    transform: scale(1.24);
  }
}

@media (max-width: 576px) {
  .whatsapp-fixed {
    right: 18px;
    bottom: 18px;
    width: 76px;
    height: 76px;
  }

  .whatsapp-fixed__icon,
  .whatsapp-fixed__icon svg {
    width: 42px;
    height: 42px;
  }
}
/* adaptive */

@media (max-width: 900px) {
  .blog-container {
    max-width: calc(100% - 40px);
  }
}

@media (max-width: 768px) {
  .blog-page {
    padding-top: 20px;
  }

  .blog-bg-grid {
    background: linear-gradient(to bottom, transparent 74px, rgba(105, 61, 46, 0.12) 75px, transparent 76px);
  }

  .blog-top {
    margin-bottom: 34px;
  }

  .blog-tabs {
    gap: 10px;
    margin-bottom: 24px;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 18px;
  }

  .blog-card__img {
    height: 210px;
  }

  .blog-card__body h3 {
    font-size: 14px;
  }

  .blog-card__body p {
    font-size: 13px;
  }

  .blog-card__meta span {
    height: 22px;
    font-size: 9px;
  }
}

@media (max-width: 560px) {
  .blog-container {
    max-width: calc(100% - 30px);
  }

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

  .blog-card__img {
    height: 240px;
  }

  .blog-title h1 {
    font-size: 22px;
  }
}
/* adaptive */
@media (max-width: 768px) {
  .article-grid {
    background: linear-gradient(to bottom, transparent 72px, rgba(105, 61, 46, 0.12) 73px, transparent 74px);
  }

  .article-head {
    padding: 18px 20px 26px;
  }

  .article-head h2 {
    font-size: 20px;
  }

  .article-content {
    padding-top: 36px;
  }

  .article-tags {
    margin-bottom: 28px;
  }

  .article-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .article-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .article-head {
    gap: 12px;
  }

  .article-tags {
    gap: 8px;
  }
}
@media (max-width: 768px) {
  .catalog-filters {
    padding: 28px 0;
  }

  .catalog-filters__inner {
    padding: 0 20px;
  }

  .catalog-price {
    width: 100%;
    display: grid;
    grid-template-columns: auto 1fr 1fr;
    gap: 10px;
  }
  .article-section {
    padding: 60px 0;
  }
  .reviews-titles-cart {
    font-size: 22px;
    gap: 14px;
    margin-bottom: 26px;
  }
  .catalog-price__value {
    width: 100%;
  }

  .catalog-selects {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .catalog-select,
  .catalog-select--small {
    width: 100%;
    min-width: 0;
    justify-content: space-between;
  }
}
@media (max-width: 1579px) {
}
@media (max-width: 1495px) {
  .nav-header ul {
    gap: 5px;
  }
  .nav-header li a {
    font-size: 13px;
  }
  .header-contact span {
    font-size: 10px;
  }
  .header-phone {
    font-size: 13px;
  }
  .btn-consult {
    padding: 12px;
    width: 100%;
  }
  .review-card__content {
    gap: 20px;
  }
}
@media (max-width: 1410px) {
  .pr-meta-block {
    flex-direction: column;
  }
  .pr-info-grid {
    margin-bottom: 36px;
    padding: 36px 0;
  }
  .pr-tags-row {
    margin-bottom: 36px;
  }
}
@media (max-width: 1359px) {
  .header-right {
    flex-direction: column;
    gap: 5px;
  }
  .pr-info-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .pr-info-flex {
    display: flex;
    justify-content: center;
  }
  .header-contact {
    order: 2;
  }
  .reviews__grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .chair-functions__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .why-card {
    padding: 38px;
  }
  .current-price {
    font-size: 19px;
  }
}
@media (max-width: 1280px) {
  .address-box {
    font-size: 12px;
  }
  .address-box .pin img {
    width: 12px;
  }
  .map-content {
    top: 49%;
  }
}
@media (max-width: 1200px) {
  .nav-header li a {
    font-size: 12px;
  }
  .btn-consult {
    font-size: 13px;
  }
  .product-body h3 {
    font-size: 16px;
  }
  .blog-grid {
    gap: 72px 15px;
  }
  .products-grid2 {
    display: flex !important;
  }
  .showroom-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .logo img {
    width: 110px;
    height: 44px;
  }
  .header-carts {
    gap: 5px;
  }
  .why-grid {
    flex-wrap: wrap;
  }
  .mob-flex {
    display: flex;
    justify-content: center;
  }
  .products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1180px) {
  .cart__body {
    grid-template-columns: repeat(1, 1fr);
    gap: 39px;
  }
}
@media (max-width: 1150px) {
  .product-compare__item {
    width: 100%;
  }

  .g-main {
    height: clamp(240px, 58vw, 420px);
    aspect-ratio: 16 / 10;
  }
  .product-top {
    margin-bottom: 60px;
  }
  .g-thumb-img {
    width: 210px;
    height: 152px;
  }
  .functions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 17px;
  }
  .pr-right {
    order: 1;
    width: 100%;
    max-width: 100%;
  }
  .gallery {
    order: 2;
  }
  .product-top {
    flex-direction: column;
  }
  .pr-info-flex {
    display: block;
  }
  .pr-info-grid {
  }
  .gallery {
    margin: 0 auto;
  }
  .g-main {
    /* max-width: 740px;
    aspect-ratio: unset; */
  }
}
@media (max-width: 1100px) {
  .site-footer-custom__top {
    flex-direction: column;
    gap: 34px;
  }
  .blog-card__img {
    height: 268px;
  }
  .site-footer-custom__cols {
    gap: 28px !important;
  }

  .reviews-header {
    flex-direction: column;
    align-items: baseline;
  }
  .nav-header ul {
    flex-wrap: wrap;
  }
  .header-inner {
    gap: 16px;
  }
  .btn-consult {
    width: 230px;
  }
  .site-footer-custom__brand {
    max-width: 100%;
    flex: unset;
  }

  .site-footer-custom__cols {
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

  .site-footer-custom__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer-custom__payments {
    margin-top: 4px;
  }
}
@media (max-width: 1024px) {
  .hero-title {
    font-size: 48px;
  }
  .map-content {
    top: 48%;
  }
  .chair-functions__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .featured-chair_block {
    margin-left: 0;
  }
  .featured-chair {
    padding: 50px 0 80px 0;
  }
  .featured-chair_block {
    margin-left: 0 !important;
  }
}
@media (max-width: 991px) {
  /* .featured-chair__inner {
    min-height: 620px;
  } */
  .inbank-box__cards {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 15px;
  }
  .featured-chair__content {
    max-width: 100%;
  }

  .featured-chair__bg img {
    object-position: center;
  }
  .featured-chair-buy__text {
    margin-bottom: 30px;
  }
}
@media (max-width: 900px) {
  .site-footer-custom {
    padding: 34px 0 36px;
  }
  .header-right {
    align-items: end;
  }
  .address-box {
    font-size: 10px;

    padding: 4px 9px;
  }

  .review-box .stars img {
    width: 60px;
  }
  .review-box {
    font-size: 10px;
  }
  .map-content {
    top: 47%;
  }
  /*.header-contact {
  order: unset;
} */
  .site-footer-custom__cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 20px;
  }

  .site-footer-custom__line {
    margin: 26px 0 26px;
  }

  .site-footer-custom__bottom-left {
    gap: 14px;
  }
  /* ── Burger button ── */

  .burger-btn:hover {
    border-color: #c9a84c;
  }

  .burger-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: #c9a84c;
    border-radius: 2px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s, width 0.3s;
    transform-origin: center;
  }
  .burger-btn.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger-btn.open span:nth-child(2) {
    opacity: 0;
    width: 0;
  }
  .burger-btn.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* ── Fullscreen mobile nav ── */
  .nav-header-mob {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    background: #1a1409;
    z-index: 190;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 90px 20px 40px;
    box-sizing: border-box;

    overflow-y: auto;
    overflow-x: hidden;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);

    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;

    pointer-events: none;
  }

  .nav-header-mob.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  /* Золота лінія під хедером */

  /* Логотип всередині меню */
  .mob-logo {
    position: absolute;
    top: 33px;
    left: 0;
    right: 0;
    height: 72px;
    display: flex;
    align-items: center;
    padding: 0 24px;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #c9a84c;
    font-family: Georgia, serif;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.3s ease 0.1s;
  }
  .nav-header-mob.visible .mob-logo {
    opacity: 1;
  }

  /* Список пунктів */
  .nav-header-mob ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
    max-width: 480px;
    margin-top: -100px;
  }
  .nav-header-mob ul li {
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  .nav-header-mob.visible ul li {
    opacity: 1;
    transform: translateY(0);
  }
  .nav-header-mob.visible ul li:nth-child(1) {
    transition-delay: 0.08s;
  }
  .nav-header-mob.visible ul li:nth-child(2) {
    transition-delay: 0.14s;
  }
  .nav-header-mob.visible ul li:nth-child(3) {
    transition-delay: 0.2s;
  }
  .nav-header-mob.visible ul li:nth-child(4) {
    transition-delay: 0.26s;
  }
  .nav-header-mob.visible ul li:nth-child(5) {
    transition-delay: 0.32s;
  }
  .nav-header-mob.visible ul li:nth-child(6) {
    transition-delay: 0.38s;
  }

  .nav-header-mob ul li a {
    display: block;
    padding: 8px 20px;
    font-size: 20px;
    font-weight: 500;
    color: #ccc;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    border-radius: 8px;
    transition: all 0.25s ease;
  }

  .nav-header-mob ul li a:hover {
    color: #fff;
  }
  .nav-header-mob ul li a.active {
    color: #c9a84c;
  }
  .nav-header-mob ul li a:hover::after,
  .nav-header-mob ul li a.active::after {
    width: 40px;
  }

  .nav-header {
    display: none;
  }
  .burger-btn {
    display: flex;
    order: 3;
  }
  .mob-footer {
    display: none;
  }
  /* ── Breakpoint 900px ── */
}
.section-heading__title {
  display: flex;
  gap: 28px;
  align-items: center;
}
@media (max-width: 798px) {
  .why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 0 auto;
  }
  .functions-card {
    padding: 32px;
  }
  .showroom-card {
    width: 100%;
  }
}
.map-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.map-img {
  display: block;
  width: 100%;
}

.map-content {
  position: absolute;
  z-index: 5;
}

@media (max-width: 768px) {
  .map-inner {
    height: clamp(520px, 120vw, 720px);
  }
  .featured-chair__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
      90deg,
      rgb(8 5 2) 0%,
      rgb(24 15 6) 22%,
      rgb(8 5 2 / 76%) 48%,
      rgb(37 22 7 / 70%) 78%,
      rgb(8 5 2 / 75%) 100%
    );
  }
  .catalog-pagination {
    justify-content: center;
  }
  .featured-chair__inner {
    flex-direction: column;
    align-items: baseline;
    gap: 50px;
  }
  .featured-chair__pause {
    margin: 0 auto;
    order: 2;
  }
  /* .featured-chair__inner {
        min-height: 550px ;
    } */
  .reviews-title {
    flex-direction: column;
    align-items: baseline;
  }

  .map-img {
    user-select: none;
    pointer-events: none;
  }

  .address-box,
  .review-box {
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  .map-content {
    transform: translate(-50%, -50%) scale(0.9) !important;
  }
  .product-specs__tabs {
    justify-content: center;
  }
  .g-main {
    height: clamp(226px, 45vw, 420px);
    aspect-ratio: 14 / 10;
  }
  .g-thumb-img {
    width: 175px;
    height: 125px;
  }
}
@media (max-width: 392px) {
  .pr-info-grid {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
}
@media (max-width: 375px) {
  .map-content {
    transform: translate(-50%, -50%) scale(0.82) !important;
  }
  .review-card__user {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .faq-section {
    padding: 28px 0;
  }
  .heading-badge {
    font-size: 12px;
  }
  .popular-header {
    margin-bottom: 30px;
  }
  .map-img {
    width: unset;
    object-fit: scale-down;
    height: unset;
  }
  .address-box,
  .review-box {
  }
  .map-content {
    top: 50%;
    left: 112%;
  }
  .test-drive__content p {
    font-size: 15px;
    margin-bottom: 36px;
  }
  .test-drive__top {
    margin-bottom: 36px;
  }
  .test-drive__select-wrap {
    width: 100%;
  }
  .showroom-grid {
    padding-top: 36px;
  }
  .test-drive__buttons {
    padding-bottom: 36px;
  }
  .map-section {
    padding-bottom: 36px;
  }
  .test-drive__top {
    flex-direction: column;
    align-items: baseline;
  }
  .hero-title {
    font-size: 38px;
    margin-bottom: 36px;
  }
  .why-section {
    padding: 50px 0 80px 0;
  }
  .product-top {
    margin-bottom: 52px;
  }
  .reviews {
    padding: 50px 0 80px 0;
  }
  .chair-functions {
    padding: 50px 0 80px 0;
  }
  .showroom {
    padding: 50px 0 80px 0;
  }
  .section-heading {
    flex-direction: column;
    align-items: baseline;
  }
  .section-heading h2 {
    font-size: 22px;
  }
  .popular-title h2 {
    font-size: 22px;
  }
  .featured-chair__title-wrap {
    font-size: 22px;
  }
  .featured-chair__title {
    font-size: 22px;
  }
  .popular-title {
    gap: 16px;
  }
  .popular {
    padding: 50px 0 80px 0;
  }
  .hero-subtitle {
    font-size: 15px;
    margin-bottom: 36px;
  }
  .hero-link {
    font-size: 15px;
    margin-bottom: 36px;
  }
  .popular-blog {
    padding-bottom: 60px;
  }
}
@media (max-width: 709px) {
  .chair-functions__grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .functions-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 17px;
  }
}
@media (max-width: 650px) {
  .site-footer-custom__cols {
    grid-template-columns: 1fr;
  }
  .inbank-box__badges {
    flex-direction: column;
    align-items: baseline;
  }
  .product-wrap {
    padding-bottom: 60px;
  }
  .blog-search {
    margin-bottom: 30px;
  }
  .inbank-box__badges a {
    width: 100%;
  }
  .g-badges {
    flex-direction: column;
  }
  .products-grid2 {
    flex-direction: column;
  }

  .faq-item.is-open .faq-item__content {
    height: 120px;
  }
  .breadcrumbs-blog {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
  .showroom-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .test-drive__buttons {
    flex-direction: column;
  }
  .test-drive__buttons a {
    width: 100%;
  }
  .why-card {
    padding: 29px;
  }

  .popular-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .section-heading {
    gap: 16px;
    margin-bottom: 25px;
  }
  .products-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .site-footer-custom__payments {
    gap: 12px;
    flex-wrap: wrap;
  }
  .hero-badge {
    display: none;
  }
  .site-footer-custom__payments img {
  }
}
@media (max-width: 560px) {
  .hero-actions {
    flex-direction: column;
  }
  .blog-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .chair-buy_features {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-actions a {
    width: 100% !important;
  }
  .hero-features {
    flex-wrap: wrap;
    justify-content: center;
  }
  .why-grid {
    display: flex;
    justify-content: center;
  }
}
/* responsive */
@media (max-width: 991px) {
  .consult-help {
    padding: 46px 0;
  }

  .consult-help__container {
    flex-direction: column;
    gap: 36px;
  }

  .consult-help__content {
    max-width: 100%;
    padding-top: 0;
  }

  .consult-help__form-box {
    max-width: 100%;
    width: 100%;
  }
}
/* adaptive */

@media (max-width: 491px) {
  .consult-help {
    padding: 34px 0;
  }
  .faq-item.is-open .faq-item__content {
    height: 200px;
  }
  .test-drive__select {
    font-size: 12px;
  }
  .hero-content {
    padding-top: 0;
  }
  .header-right {
    display: none;
  }
  .hero-title {
    font-size: 30px;
  }
  .consult-help__container {
    padding: 0 14px;
  }

  .consult-help__head {
    margin-bottom: 24px;
  }
  /* Нижня частина: кнопка + телефон */
  .mob-footer {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    align-items: baseline;
    gap: 18px;
    width: 100%;
    max-width: 360px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s ease 0.44s, transform 0.4s ease 0.44s;
  }
  .mob-footer .header-carts {
    gap: 10px;
  }
  .nav-header-mob.visible .mob-footer {
    opacity: 1;
    transform: translateY(0);
  }
  .mob-footer .btn-consult {
    width: 100%;
    justify-content: center;
    padding: 15px;
    font-size: 0.85rem;
    border-radius: 8px;
  }
  .mob-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.82rem;
    text-align: center;
  }
  .mob-phone strong {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
  }
  .consult-help__title {
    font-size: 20px;
  }

  .consult-help__text p {
    font-size: 14px;
  }

  .consult-help__form-box {
    padding: 22px 16px 20px;
  }

  .consult-help__policy {
    font-size: 8px;
  }
}

@media (max-width: 600px) {
  /* .chair-functions__card,
  .chair-functions__brand {
    height: 170px;
  } */
}
/* адаптив */
@media (max-width: 1200px) {
  .featured-chair__content {
  }

  .site-footer-custom__cols {
    gap: 14px;
  }
}

@media (max-width: 576px) {
  .featured-chair__top {
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
  }

  .featured-chair__badge {
    width: 42px;
    height: 42px;
  }

  .featured-chair__title-wrap {
    gap: 10px;
  }

  .featured-chair__text p {
    font-size: 15px;
  }

  .featured-chair__price {
    flex-wrap: wrap;
    gap: 12px;
  }

  .featured-chair__current-price {
    font-size: 20px;
  }

  .featured-chair__buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .featured-chair__btn {
    width: 100%;
  }
}
/* adaptive */
@media (max-width: 1200px) {
  .reviews__grid {
    grid-template-columns: 1fr;
  }

  .review-card__video {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .container {
  }

  .reviews__top {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .reviews__badges {
    flex-wrap: wrap;
    gap: 12px;
  }

  .reviews__title {
    font-size: 23px;
  }

  .review-card {
    padding: 28px 18px 35px;
  }

  .review-card__content {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .review-card__video {
    width: 100%;
    height: 260px;
  }

  .review-card__more::before,
  .review-card__more::after {
    width: 60px;
  }
}
/* Планшети */
@media (max-width: 1024px) {
  .comfort-hero {
    height: 420px;
    min-height: 420px;
  }

  .comfort-hero__slide {
    background-position: center center;
  }

  .comfort-hero__pagination {
    bottom: 20px;
  }
}

/* Мобільні великі */
@media (max-width: 768px) {
  .comfort-hero {
    height: 360px;
    min-height: 360px;
  }

  .comfort-hero__slide {
    background-position: center center;
  }

  .comfort-hero__slide::after {
    background: linear-gradient(to bottom, rgba(10, 8, 2, 0.05) 0%, rgba(10, 8, 2, 0.2) 45%, rgba(10, 8, 2, 0.85) 100%),
      linear-gradient(to right, rgba(10, 8, 2, 0.55) 0%, rgba(10, 8, 2, 0.2) 45%, rgba(10, 8, 2, 0.35) 100%);
  }

  .comfort-hero__pagination {
    bottom: 18px;
  }

  .comfort-hero__dot {
    width: 12px;
    height: 2.5px;
  }

  .comfort-hero__dot.active {
  }
}

/* Мобільні маленькі */
@media (max-width: 480px) {
  .comfort-hero {
    height: 300px;
    min-height: 300px;
  }
  .pr-actions {
    flex-wrap: wrap;
  }
  .address-box {
    font-size: 9px;
  }
  .comfort-hero__slide {
    background-size: cover;
    background-position: center center;
  }

  .comfort-hero__pagination {
    bottom: 16px;
    gap: 18px;
  }
  .map-content {
    left: 71% !important;
    top: 54% !important;
  }

  .comfort-hero__dots {
    gap: 5px;
  }

  .comfort-hero__dot {
    height: 2.5px;
  }

  .comfort-hero__dot.active {
    width: 22px;
  }
}

/* Дуже маленькі екрани */
@media (max-width: 360px) {
  .comfort-hero {
    height: 270px;
    min-height: 270px;
  }
  .faq-item.is-open .faq-item__content {
    height: 220px;
  }

  .review-card {
    padding: 28px 13px 35px;
  }
  .chair-functions__card {
    max-width: 300px;
  }
  .comfort-hero__pagination {
    bottom: 14px;
  }
}
