:root {
  --bg: #f9f4f0;
  --accent: #422b20;
  --surface: #fdf9f6;
  --border: rgba(66, 43, 32, 0.18);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", Arial, sans-serif;
  background: var(--bg);
  color: var(--accent);
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

section[id],
footer[id] {
  scroll-margin-top: 76px;
}

.menu-open {
  overflow: hidden;
}

.cart-open {
  overflow: hidden;
}

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}

.brand-logo {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.9;
}

.brand-text {
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.cart-btn,
.menu-btn {
  border: 0;
  background: transparent;
  color: var(--accent);
  width: 38px;
  height: 38px;
  padding: 0;
  display: grid;
  place-content: center;
}

.cart-btn svg {
  width: 22px;
  height: 22px;
}

.cart-btn {
  position: relative;
}

.cart-count {
  position: absolute;
  top: 2px;
  right: 1px;
  min-width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--accent);
  color: #f9f4f0;
  font-size: 10px;
  line-height: 16px;
  text-align: center;
  font-weight: 600;
}

.menu-btn {
  gap: 5px;
}

.menu-btn span {
  width: 22px;
  height: 2px;
  border-radius: 3px;
  background: var(--accent);
  transition: 0.22s ease;
}

.menu-open .menu-btn span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-btn span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-btn span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(84vw, 360px);
  z-index: 32;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 18px 18px 24px;
  background: #f8f2ed;
  border-left: 1px solid var(--border);
  box-shadow: -10px 0 30px rgba(39, 24, 15, 0.12);
  transform: translateX(105%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.32s;
}

.menu-open .mobile-menu {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(66, 43, 32, 0.1);
}

.mobile-menu-head span {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: 0.7;
}

.menu-close {
  width: 34px;
  height: 34px;
  border: 0;
  padding: 0;
  background: transparent;
  position: relative;
  color: var(--accent);
}

.menu-close span {
  position: absolute;
  top: 16px;
  left: 7px;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.menu-close span:first-child {
  transform: rotate(45deg);
}

.menu-close span:last-child {
  transform: rotate(-45deg);
}

.mobile-menu-links {
  display: grid;
  gap: 12px;
  padding-top: 2px;
}

.mobile-menu-links a {
  color: var(--accent);
  text-decoration: none;
  font-size: clamp(20px, 6vw, 26px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid rgba(66, 43, 32, 0.08);
}

.mobile-menu-meta {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(66, 43, 32, 0.1);
  display: grid;
  gap: 6px;
}

.mobile-menu-meta a {
  color: var(--accent);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.mobile-menu-meta p {
  margin: 2px 0 0;
  font-size: 12px;
  opacity: 0.68;
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 31;
  border: 0;
  background: rgba(38, 22, 13, 0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.menu-open .menu-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 42;
  width: min(86vw, 380px);
  background: #f8f2ed;
  border-left: 1px solid var(--border);
  box-shadow: -10px 0 30px rgba(39, 24, 15, 0.12);
  transform: translateX(105%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.32s;
  display: flex;
  flex-direction: column;
}

.cart-open .cart-drawer {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 41;
  border: 0;
  background: rgba(38, 22, 13, 0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.cart-open .cart-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(66, 43, 32, 0.12);
}

.cart-head h2 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.01em;
}

.cart-close {
  width: 32px;
  height: 32px;
  border: 0;
  padding: 0;
  background: transparent;
  position: relative;
}

.cart-close span {
  position: absolute;
  top: 15px;
  left: 6px;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
}

.cart-close span:first-child {
  transform: rotate(45deg);
}

.cart-close span:last-child {
  transform: rotate(-45deg);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 10px 12px;
}

.cart-empty {
  margin: 6px 0;
  font-size: 14px;
  color: rgba(66, 43, 32, 0.68);
}

.cart-item {
  padding: 10px;
  border: 1px solid rgba(66, 43, 32, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.48);
}

.cart-item + .cart-item {
  margin-top: 8px;
}

.cart-item-title {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
}

.cart-item-meta {
  margin: 0 0 8px;
  font-size: 12px;
  color: rgba(66, 43, 32, 0.72);
}

.cart-variant-select {
  width: 100%;
  min-height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(66, 43, 32, 0.24);
  background: #fffcfa;
  color: var(--accent);
  font-size: 12px;
  font-weight: 500;
  padding: 0 30px 0 9px;
  margin: 0 0 8px;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5 10 12.5 15 7.5' stroke='%23422b20' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 8px) center;
  background-size: 16px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.cart-variant-select:hover {
  border-color: rgba(66, 43, 32, 0.38);
}

.cart-variant-select:focus,
.cart-variant-select:focus-visible {
  outline: none;
  border-color: rgba(66, 43, 32, 0.58);
  box-shadow: 0 0 0 2px rgba(66, 43, 32, 0.14);
}

.cart-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.cart-item-price {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
}

.cart-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(66, 43, 32, 0.2);
  border-radius: 999px;
  overflow: hidden;
}

.cart-qty button {
  width: 26px;
  height: 26px;
  border: 0;
  background: transparent;
  color: var(--accent);
  font-size: 16px;
  line-height: 1;
}

.cart-qty span {
  min-width: 24px;
  text-align: center;
  font-size: 13px;
}

.cart-remove {
  border: 0;
  background: transparent;
  color: rgba(66, 43, 32, 0.64);
  font-size: 12px;
  text-decoration: underline;
  padding: 0;
}

.cart-footer {
  border-top: 1px solid rgba(66, 43, 32, 0.12);
  padding: 12px;
}

.cart-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 14px;
  color: rgba(66, 43, 32, 0.76);
}

.cart-total-row strong {
  font-size: 18px;
  color: var(--accent);
  letter-spacing: -0.01em;
}

.order-form {
  display: grid;
  gap: 8px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(66, 43, 32, 0.1);
}

.order-form label {
  display: grid;
  gap: 4px;
  font-size: 12px;
  color: rgba(66, 43, 32, 0.76);
}

.order-form input,
.order-form select {
  min-height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(66, 43, 32, 0.22);
  background: #fffcfa;
  padding: 0 10px;
  color: var(--accent);
  font-size: 13px;
}

.order-submit {
  width: 100%;
  min-height: 40px;
  border-radius: 999px;
  border: 0;
  background: var(--accent);
  color: #f9f4f0;
  font-size: 13px;
  font-weight: 600;
  margin-top: 4px;
  position: relative;
  transition: opacity 0.2s ease;
}

.order-submit.is-loading {
  opacity: 0.86;
  pointer-events: none;
}

.order-submit.is-loading::after {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(249, 244, 240, 0.45);
  border-top-color: #f9f4f0;
  position: absolute;
  right: 14px;
  top: 50%;
  margin-top: -7px;
  animation: order-spin 0.8s linear infinite;
}

@keyframes order-spin {
  to {
    transform: rotate(360deg);
  }
}

.hero {
  position: relative;
  min-height: 660px;
  border-bottom: 1px solid var(--border);
  background: #ece6e2;
}

.hero picture {
  display: block;
}

.hero-image {
  width: 100%;
  height: 660px;
  object-fit: cover;
  object-position: center bottom;
  display: block;
}

.hero-content {
  position: absolute;
 top: 40px;
left: 40px;
right: 40px;
  padding: 0;
}

.hero-content h1 {
  margin: 0;
 font-size: 24px;
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.hero-content p {
  margin: 16px 0 0;
  font-size: 16px;
 
  line-height: 1.24;
  font-weight: 500;
}

.benefits {
  padding: 38px 16px 32px;
}

.benefits h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.benefits-subtitle {
  margin: 14px 0 22px;
  font-size: clamp(16px, 4.4vw, 22px);
  line-height: 1.3;
  opacity: 0.88;
}

.benefit-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.benefit-card {
  position: relative;
  background: linear-gradient(180deg, #fefbf9 0%, #fcf7f3 100%);
  border: 1px solid rgba(66, 43, 32, 0.1);
  border-radius: 20px;
  padding: 18px 16px 16px;
  box-shadow: 0 8px 20px rgba(66, 43, 32, 0.05);
}

.icon-wrap {
  width: 40px;
  height: 40px;
  display: grid;
  place-content: center;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
}

.icon-wrap svg {
  width: 20px;
  height: 20px;
}

.benefit-card h3 {
  margin: 16px 0 8px;
  font-size: 22px;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.benefit-card p {
  margin: 0;
  font-size: clamp(15px, 4vw, 18px);
  line-height: 1.4;
  opacity: 0.92;
}

.catalog-section {
  padding: 8px 16px 30px;
}

.catalog-pill {
  width: 100%;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #f9f4f0;
  min-height: 56px;
  padding: 4px 5px 4px 16px;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 8px;
  text-align: left;
}

.catalog-label {
  font-size: clamp(19px, 5.4vw, 24px);
  line-height: 1;
  letter-spacing: -0.015em;
  font-weight: 500;
}

.catalog-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #f7f2ee;
  color: var(--accent);
  display: grid;
  place-content: center;
}

.catalog-arrow svg {
  width: 18px;
  height: 18px;
}

.sizes-section {
  padding: 2px 16px 22px;
}

.sizes-card {
  border: 1px solid rgba(66, 43, 32, 0.12);
  border-radius: 14px;
  background: #f8f4f1;
  overflow: hidden;
}

.sizes-head {
  padding: 14px 14px 10px;
  border-bottom: 1px solid rgba(66, 43, 32, 0.1);
}

.sizes-eyebrow {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(66, 43, 32, 0.58);
}

.sizes-head h2 {
  margin: 0;
  font-size: clamp(22px, 5.8vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--accent);
}

.sizes-table-wrap {
  overflow-x: visible;
}

.sizes-table {
  width: 100%;
  min-width: 0;
  border-collapse: collapse;
  table-layout: fixed;
}

.sizes-table th,
.sizes-table td {
  padding: 8px 6px;
  text-align: left;
  border-bottom: 1px solid rgba(66, 43, 32, 0.08);
  color: rgba(66, 43, 32, 0.86);
  font-size: 10px;
  line-height: 1.2;
  white-space: nowrap;
}

.sizes-table th {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(66, 43, 32, 0.62);
  background: rgba(255, 255, 255, 0.48);
}

.sizes-table th:nth-child(1),
.sizes-table td:nth-child(1) {
  width: 24%;
}

.sizes-table th:nth-child(2),
.sizes-table td:nth-child(2) {
  width: 19%;
}

.sizes-table th:nth-child(3),
.sizes-table td:nth-child(3) {
  width: 19%;
}

.sizes-table th:nth-child(4),
.sizes-table td:nth-child(4) {
  width: 38%;
}

.sizes-table tbody tr:last-child td {
  border-bottom: 0;
}

.sizes-table td:first-child {
  font-weight: 600;
  color: var(--accent);
}

.sizes-prices {
  padding: 10px 12px 12px;
  border-top: 1px solid rgba(66, 43, 32, 0.1);
}

.sizes-prices h3 {
  margin: 0 0 7px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(66, 43, 32, 0.62);
}

.sizes-prices p {
  margin: 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
  line-height: 1.35;
  color: rgba(66, 43, 32, 0.84);
}

.sizes-prices p + p {
  margin-top: 4px;
}

.sizes-prices strong {
  color: var(--accent);
  font-weight: 700;
  white-space: nowrap;
}

.material-section {
  padding: 2px 22px 34px;
}

.material-section h2 {
  margin: 0 0 15px;
 font-size: 24px;
line-height: 1.04;
letter-spacing: -0.02em;
  color: var(--accent);
}

.material-section p {
  margin: 0;
 font-size: clamp(15px, 4vw, 18px);
line-height: 1.4;
opacity: 0.92;
  color: rgba(66, 43, 32, 0.88);
}

.reviews-section {
  padding: 0 16px 36px;
}

.reviews-section h2 {
  margin: 0 0 14px;
  text-align: center;
  font-size: clamp(30px, 8.2vw, 42px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--accent);
}

.reviews-carousel {
  position: relative;
  overflow: hidden;
  padding: 0 22px;
}

.reviews-track {
  display: flex;
  gap: 10px;
  transition: transform 0.4s ease;
}

.review-card {
  flex: 0 0 calc((100% - 10px) / 2);
}

.review-poster {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: #ece5df;
  aspect-ratio: 3 / 4;
}

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

.review-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(249, 244, 240, 0.9);
  color: var(--accent);
  display: grid;
  place-content: center;
}

.review-play svg {
  width: 18px;
  height: 18px;
}

.review-poster iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.review-play-overlay {
  position: absolute;
  inset: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: grid;
  place-content: center;
}

.review-poster.is-playing .review-play-overlay {
  display: none;
}

.review-name {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.3;
  color: rgba(66, 43, 32, 0.86);
}

.leader-section {
  padding: 8px 16px 48px;
}

.leader-head {
  position: relative;
  padding: 16px 14px 14px;
 
 
  
  overflow: hidden;
}

.leader-head::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(66, 43, 32, 0) 0%, rgba(66, 43, 32, 0.46) 50%, rgba(66, 43, 32, 0) 100%);
}

.leader-eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(66, 43, 32, 0.58);
}

.leader-intro {
  margin: 0;
  font-size: 22px;
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--accent);
}

.leader-benefits {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.leader-benefit-card {
  border: 1px solid rgba(66, 43, 32, 0.12);
  border-radius: 14px;
  padding: 14px;
  background: #f8f4f1;
}

.leader-benefit-card h3 {
  margin: 0 0 6px;
  font-size: clamp(18px, 4.8vw, 22px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--accent);
}

.leader-benefit-card p {
  margin: 0;
  font-size: clamp(14px, 4vw, 16px);
  line-height: 1.4;
  color: rgba(66, 43, 32, 0.82);
}

.leader-benefit-card p + p {
  margin-top: 4px;
}

.reviews-nav {
  position: absolute;
  top: 43%;
  transform: translateY(-50%);
  z-index: 3;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: rgba(249, 244, 240, 0.92);
  color: var(--accent);
  display: grid;
  place-content: center;
  padding: 0;
  font-size: 18px;
  line-height: 1;
}

.reviews-nav.prev {
  left: 0;
}

.reviews-nav.next {
  right: 0;
}

.products-section {
  padding: 4px 16px 38px;
}

.products-grid {
  display: grid;
  gap: 14px;
}

.products-empty {
  margin: 0;
  font-size: 16px;
  opacity: 0.75;
}

.product-card {
  background: #f7f2ee;
  border: 1px solid rgba(66, 43, 32, 0.1);
  border-radius: 14px;
  padding: 12px;
}

.product-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.product-track {
  display: flex;
  transition: transform 0.28s ease;
}

.product-slide {
  min-width: 100%;
}

.product-image {
  width: 100%;
  display: block;
  height: 330px;
  object-fit: cover;
  border-radius: 8px;
}

.product-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(247, 242, 238, 0.9);
  color: var(--accent);
  display: grid;
  place-content: center;
  font-size: 22px;
  line-height: 1;
  padding: 0;
}

.product-nav.prev {
  left: 8px;
}

.product-nav.next {
  right: 8px;
}

.product-dots {
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.product-dot {
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 50%;
  background: rgba(66, 43, 32, 0.28);
  padding: 0;
}

.product-dot.is-active {
  background: var(--accent);
}

.product-carousel.is-static .product-nav,
.product-carousel.is-static .product-dots {
  display: none;
}

.product-title {
  margin: 12px 0 10px;
  font-size: 16px;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--accent);
}

.product-line {
  margin: 0 0 6px;
 font-size: 14px;
  line-height: 1.35;
  letter-spacing: 0;
  color: rgba(66, 43, 32, 0.72);
}

.product-line strong {
  color: var(--accent);
  font-weight: 600;
}

.product-size-label {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  opacity: 0.9;
}

.product-size-select {
  width: 100%;
  margin-top: 6px;
  min-height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(66, 43, 32, 0.24);
  background: #fffcfa;
  padding: 0 44px 0 14px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--accent);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5 10 12.5 15 7.5' stroke='%23422b20' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 14px) center;
  background-size: 18px 18px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.product-size-select:hover {
  border-color: rgba(66, 43, 32, 0.38);
  background-color: #fffdfa;
}

.product-size-select:focus,
.product-size-select:focus-visible {
  outline: none;
  border-color: rgba(66, 43, 32, 0.58);
  box-shadow: 0 0 0 3px rgba(66, 43, 32, 0.14);
}

.product-price {
  margin: 16px 0 15px;
  text-align: center;
 font-size: 24px;

  line-height: 1;
  letter-spacing: -0.01em;
  font-weight: 700;
  color: var(--accent);
}

.product-btn {
  width: 100%;
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #f9f4f0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
}

.site-footer {
  margin-top: 4px;
  padding: 18px 16px 26px;
  border-top: 1px solid rgba(66, 43, 32, 0.16);
  background: #f8f3ef;
}

.site-footer h2 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--accent);
}

.footer-phone {
  display: inline-block;
  margin: 0 0 8px;
  text-decoration: none;
  color: var(--accent);
  font-size: 18px;
  font-weight: 600;
}

.site-footer p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(66, 43, 32, 0.84);
}

.site-footer p + p {
  margin-top: 3px;
}

@media (max-width: 360px) {
  .hero {
    min-height: 620px;
  }

  .hero-image {
    height: 620px;
  }

  .mobile-menu {
    width: 88vw;
  }

  .catalog-pill {
    min-height: 54px;
    padding-left: 14px;
    gap: 8px;
  }

  .catalog-label {
    font-size: 18px;
  }

  .catalog-arrow {
    width: 42px;
    height: 42px;
  }

  .sizes-head {
    padding: 12px 12px 9px;
  }

  .sizes-head h2 {
    font-size: 21px;
  }

  .sizes-table th,
  .sizes-table td {
    padding: 7px 5px;
    font-size: 9px;
  }

  .sizes-table th {
    font-size: 7px;
  }

  .sizes-prices {
    padding: 9px 10px 11px;
  }

  .sizes-prices p {
    font-size: 11px;
  }

  .material-section h2 {
    font-size: 23px;
  }

  .material-section p {
    font-size: 16px;
  }

  .reviews-section h2 {
    font-size: 28px;
  }

  .review-name {
    font-size: 13px;
  }

  .leader-intro {
    font-size: 21px;
  }

  .leader-benefit-card {
    padding: 12px;
  }

  .leader-benefit-card h3 {
    font-size: 17px;
  }

  .leader-benefit-card p {
    font-size: 14px;
  }

  .product-image {
    height: 240px;
  }

  .product-size-select {
    min-height: 44px;
    font-size: 17px;
  }

  .product-btn {
    min-height: 50px;
  }

  .site-footer h2 {
    font-size: 19px;
  }

  .footer-phone {
    font-size: 17px;
  }
}

@media (min-width: 1024px) {
  section[id],
  footer[id] {
    scroll-margin-top: 92px;
  }

  .header {
    padding: 16px 48px;
  }

  .brand {
    gap: 14px;
  }

  .brand-logo {
    font-size: 42px;
  }

  .brand-text {
    font-size: 13px;
    line-height: 1.25;
  }

  .header-actions {
    gap: 8px;
  }

  .cart-btn,
  .menu-btn {
    width: 44px;
    height: 44px;
  }

  .mobile-menu {
    width: min(34vw, 420px);
    padding: 26px 26px 30px;
  }

  .mobile-menu-links a {
    font-size: 30px;
  }

  .cart-drawer {
    width: min(36vw, 440px);
  }

  .hero {
    min-height: 760px;
  }

  .hero-image {
    height: 760px;
    object-position: center;
  }

  .hero-content {
    top: 112px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: min(92vw, 1120px);
    text-align: center;
  }

  .hero-content h1 {
    font-size: clamp(56px, 6vw, 84px);
    line-height: 0.95;
    letter-spacing: -0.03em;
  }

  .hero-content p {
    margin: 22px auto 0;
    max-width: 760px;
    font-size: clamp(20px, 2.1vw, 28px);
    line-height: 1.28;
  }

  .benefits {
    padding: 56px 48px 44px;
  }

  .benefits h2 {
    text-align: center;
    font-size: clamp(36px, 4vw, 52px);
  }

  .benefits-subtitle {
    margin: 14px auto 28px;
    text-align: center;
    font-size: clamp(20px, 2vw, 28px);
  }

  .benefit-row {
    max-width: 1240px;
    margin: 0 auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .benefit-card {
    padding: 22px 20px 18px;
    border-radius: 18px;
  }

  .benefit-card h3 {
    font-size: clamp(24px, 2.2vw, 30px);
  }

  .benefit-card p {
    font-size: clamp(16px, 1.15vw, 18px);
  }

  .catalog-section {
    padding: 10px 48px 38px;
  }

  .catalog-pill {
    max-width: 520px;
    margin: 0 auto;
    min-height: 62px;
    padding-left: 22px;
  }

  .catalog-label {
    font-size: clamp(24px, 2vw, 30px);
  }

  .catalog-arrow {
    width: 52px;
    height: 52px;
  }

  .products-section {
    padding: 8px 48px 56px;
  }

  .products-grid {
    max-width: 1240px;
    margin: 0 auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .product-card {
    border-radius: 16px;
    padding: 14px;
  }

  .product-image {
    height: 290px;
  }

  .sizes-section {
    padding: 8px 48px 44px;
  }

  .sizes-card {
    max-width: 1240px;
    margin: 0 auto;
    border-radius: 18px;
  }

  .sizes-head {
    padding: 18px 22px 14px;
  }

  .sizes-head h2 {
    font-size: clamp(30px, 3vw, 42px);
  }

  .sizes-table th,
  .sizes-table td {
    padding: 12px 14px;
    font-size: 14px;
    white-space: normal;
  }

  .sizes-table th {
    font-size: 10px;
  }

  .material-section {
    padding: 8px 48px 56px;
  }

  .material-section h2 {
    margin: 0 auto 16px;
    max-width: 1240px;
    font-size: clamp(34px, 3.2vw, 48px);
    text-align: center;
  }

  .material-section p {
    margin: 0 auto;
    max-width: 1080px;
    font-size: clamp(18px, 1.5vw, 24px);
    line-height: 1.45;
  }

  .reviews-section {
    padding: 0 48px 56px;
  }

  .reviews-section h2 {
    margin-bottom: 20px;
    font-size: clamp(40px, 4vw, 58px);
  }

  .reviews-carousel {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 34px;
  }

  .reviews-track {
    gap: 16px;
  }

  .review-card {
    flex: 0 0 calc((100% - 16px) / 2);
  }

  .review-name {
    margin-top: 10px;
    font-size: 16px;
  }

  .reviews-nav {
    width: 36px;
    height: 36px;
    font-size: 22px;
  }

  .leader-section {
    padding: 16px 48px 64px;
  }

  .leader-head {
    max-width: 1240px;
    margin: 0 auto;
    padding: 20px 0 18px;
  }

  .leader-intro {
    font-size: clamp(34px, 3.4vw, 50px);
    line-height: 1.06;
    max-width: 980px;
  }

  .leader-benefits {
    max-width: 1240px;
    margin: 18px auto 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .leader-benefit-card {
    border-radius: 16px;
    padding: 18px;
  }

  .leader-benefit-card h3 {
    font-size: clamp(20px, 2.1vw, 28px);
  }

  .leader-benefit-card p {
    font-size: 16px;
  }

  .site-footer {
    margin-top: 10px;
    padding: 24px 48px 34px;
  }

  .site-footer h2,
  .footer-phone,
  .site-footer p {
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
  }

  .site-footer h2 {
    font-size: 30px;
  }

  .footer-phone {
    display: block;
    font-size: 28px;
    margin-bottom: 10px;
  }

  .site-footer p {
    font-size: 16px;
  }
}

@media (min-width: 1440px) {
  .products-grid {
    max-width: 1480px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .product-image {
    height: 250px;
  }
}
