:root {
  --wine: #820024;
  --wine-dark: #5f001a;
  --cream: #f6f1eb;
  --paper: #fcfaf7;
  --ink: #211b19;
  --muted: #746b67;
  --line: rgba(33, 27, 25, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Manrope, sans-serif;
  -webkit-font-smoothing: antialiased;
}
button, a { color: inherit; font: inherit; }
button { cursor: pointer; }
a { text-decoration: none; }

.announcement {
  background: var(--wine);
  color: white;
  font-size: 11px;
  letter-spacing: .16em;
  padding: 9px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  z-index: 21;
}
.site-header {
  align-items: center;
  background: #5c0018;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: 76px;
  padding: 0 4vw;
  position: sticky;
  top: 0;
  z-index: 20;
}
.brand-logo { height: 62px; justify-self: center; overflow: hidden; width: 310px; }
.brand-logo img { height: 100%; object-fit: contain; width: 100%; }
.wordmark { font-size: 30px; font-weight: 400; letter-spacing: .24em; }
.desktop-nav { color: white; display: flex; gap: 28px; font-size: 13px; }
.desktop-nav a:hover { opacity: .7; }
.cart-button, .icon-button {
  background: none;
  border: 0;
  justify-self: end;
}
.site-header .cart-button, .site-header .icon-button { color: white; }
.cart-count {
  background: var(--wine);
  border-radius: 50%;
  color: white;
  display: inline-grid;
  font-size: 10px;
  height: 19px;
  margin-left: 5px;
  place-items: center;
  width: 19px;
}
.menu-button { display: none; justify-self: start; }

.hero {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  min-height: calc(100vh - 107px);
}
.hero-copy {
  align-self: center;
  padding: 8vw;
}
.eyebrow {
  color: var(--wine);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  margin: 0 0 20px;
  text-transform: uppercase;
}
h1, h2 {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  margin: 0;
}
h1 { font-size: clamp(50px, 6vw, 92px); line-height: .98; letter-spacing: -.04em; }
h1 em { color: var(--wine); font-weight: 500; }
.hero-text { color: var(--muted); line-height: 1.7; margin: 34px 0; max-width: 460px; }
.primary-button, .secondary-button {
  align-items: center;
  border: 1px solid var(--wine);
  display: inline-flex;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
}
.primary-button { background: var(--wine); color: white; }
.primary-button:hover { background: var(--wine-dark); }
.secondary-button { background: transparent; color: var(--wine); }
.hero-visual {
  align-items: flex-end;
  background:
    radial-gradient(circle at 58% 33%, rgba(255,255,255,.22), transparent 24%),
    linear-gradient(145deg, #b95c71 0%, var(--wine) 52%, #31000e 100%);
  color: rgba(255,255,255,.86);
  display: flex;
  font-family: "Playfair Display", serif;
  font-size: clamp(54px, 8vw, 130px);
  font-style: italic;
  justify-content: flex-end;
  line-height: .72;
  overflow: hidden;
  padding: 5vw;
  text-align: right;
}

.drop-hero {
  background: var(--ink);
  color: white;
  min-height: calc(100vh - 107px);
  overflow: hidden;
  position: relative;
}
.drop-hero-video {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}
.drop-hero-video-bg {
  filter: blur(24px);
  object-fit: cover;
  opacity: .72;
  transform: scale(1.08);
}
.drop-hero-video-main {
  height: 82%;
  inset: 50% auto auto 50%;
  object-fit: contain;
  object-position: center;
  transform: translate(-50%, -50%);
  width: 82%;
  z-index: 1;
}
.drop-hero-shade {
  background:
    linear-gradient(90deg, rgba(18, 3, 8, .68), rgba(18, 3, 8, .18) 48%, rgba(18, 3, 8, .36)),
    linear-gradient(0deg, rgba(18, 3, 8, .58), rgba(18, 3, 8, .04) 58%);
  inset: 0;
  position: absolute;
  z-index: 2;
}
.drop-hero-content {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  inset: auto auto 8vw 6vw;
  max-width: min(720px, 88vw);
  position: absolute;
  z-index: 3;
}
.drop-hero-content p {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .24em;
  margin: 0 0 20px;
  text-transform: uppercase;
}
.drop-hero-content h1 {
  color: white;
  font-family: Manrope, sans-serif;
  font-size: clamp(58px, 10vw, 150px);
  font-weight: 600;
  letter-spacing: -.06em;
  line-height: .82;
  text-transform: uppercase;
}
.drop-hero-link {
  border: 1px solid rgba(255,255,255,.72);
  color: white;
  display: inline-flex;
  font-size: 12px;
  letter-spacing: .14em;
  margin-top: 30px;
  min-height: 52px;
  padding: 0 26px;
  align-items: center;
  text-transform: uppercase;
}
.drop-hero-link:hover {
  background: white;
  color: var(--ink);
}

.benefits {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 4vw;
}
.benefits div { border-right: 1px solid var(--line); padding: 30px; }
.benefits div:last-child { border: 0; }
.benefits strong, .benefits span { display: block; }
.benefits strong { font-size: 13px; margin-bottom: 7px; }
.benefits span { color: var(--muted); font-size: 11px; }

.catalog-section { min-height: 75vh; padding: 28px 4vw 110px; }
.section-heading {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 52px;
}
h2 { font-size: clamp(38px, 4vw, 60px); line-height: 1.08; }
.catalog-layout {
  align-items: start;
  display: grid;
  gap: clamp(36px, 5vw, 80px);
  grid-template-columns: 190px minmax(0, 1fr);
}
.catalog-sidebar {
  position: sticky;
  top: 110px;
}
.catalog-sidebar-title {
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  margin: 0 0 14px;
  text-transform: uppercase;
}
.categories-title { margin-top: 38px; }
.gender-filters { display: flex; flex-direction: column; gap: 4px; }
.gender-filter {
  background: transparent;
  border: 0;
  color: var(--muted);
  font-size: 14px;
  padding: 7px 0;
  text-align: left;
}
.gender-filter.active, .gender-filter:hover { color: var(--ink); font-weight: 600; }
.subcategory-filters {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.subcategory-filter {
  background: transparent;
  border: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  padding: 7px 0;
  text-align: left;
}
.subcategory-filter.active, .subcategory-filter:hover { color: var(--ink); font-weight: 600; }
.catalog-results-label {
  color: var(--wine-dark);
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  margin: 0 0 30px;
}
.catalog-results-label[hidden] { display: none; }
.product-grid { display: grid; gap: 18px; grid-template-columns: repeat(3, 1fr); }
.product-card { cursor: pointer; outline: 0; position: relative; }
.product-card:focus .product-image { outline: 1px solid var(--wine); outline-offset: 3px; }
.product-image {
  aspect-ratio: 3 / 4;
  background: linear-gradient(145deg, var(--tone-a), var(--tone-b));
  overflow: hidden;
  position: relative;
}
.product-image img, .cart-thumb img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.product-image::after {
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 48% 48% 30% 30%;
  content: "";
  height: 64%;
  left: 25%;
  position: absolute;
  top: 17%;
  transform: rotate(var(--rotate));
  width: 50%;
}
.product-image.has-photo::after { display: none; }
.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  left: 10px;
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 2;
}
.product-tag {
  background: var(--paper);
  font-size: 10px;
  letter-spacing: .1em;
  padding: 7px 10px;
  text-transform: uppercase;
}
.product-info { align-items: start; display: flex; gap: 14px; justify-content: space-between; padding: 13px 2px 24px; }
.product-info h3 { font-size: 13px; font-weight: 500; line-height: 1.4; margin: 0; }
.product-price { font-size: 13px; font-weight: 600; white-space: nowrap; }
.catalog-empty {
  color: var(--muted);
  font-size: 13px;
  grid-column: 1 / -1;
  margin: 0;
}
.photo-reviews {
  margin: 34px auto 0;
  max-width: 1040px;
}
.photo-reviews[hidden] { display: none; }
.photo-reviews h2 {
  color: var(--ink);
  font-family: Manrope, sans-serif;
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.15;
  margin: 0 0 22px;
  text-align: center;
}
.photo-reviews-row {
  display: grid;
  gap: 12px;
  grid-auto-columns: minmax(118px, 160px);
  grid-auto-flow: column;
  overflow-x: auto;
  padding: 0 0 8px;
  scrollbar-width: thin;
}
.photo-review-item {
  aspect-ratio: 4 / 5;
  background: var(--cream);
  margin: 0;
  overflow: hidden;
}
.photo-review-item img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.product-modal {
  background: var(--paper);
  box-shadow: 0 30px 90px rgba(10,3,5,.28);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 420px);
  left: 50%;
  max-height: 88vh;
  max-width: 980px;
  opacity: 0;
  overflow: auto;
  pointer-events: none;
  position: fixed;
  top: 50%;
  transform: translate(-50%, -46%);
  transition: .25s;
  visibility: hidden;
  width: calc(100% - 48px);
  z-index: 60;
}
.product-modal.open { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%); visibility: visible; }
.product-modal-close {
  background: rgba(252,250,247,.9);
  border: 1px solid rgba(33,27,25,.1);
  font-size: 25px;
  height: 40px;
  position: absolute;
  right: 16px;
  top: 16px;
  width: 40px;
  z-index: 2;
}
.product-modal-media {
  background:
    linear-gradient(145deg, rgba(255,255,255,.28), rgba(255,255,255,0)),
    linear-gradient(145deg, var(--tone-a), var(--tone-b));
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 0;
}
.product-gallery-main {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 0;
  overflow: hidden;
  padding: 18px;
}
.product-gallery-main img {
  height: 100%;
  max-height: 66vh;
  object-fit: contain;
  width: 100%;
}
.product-gallery-thumbs {
  background: rgba(252,250,247,.94);
  display: flex;
  gap: 7px;
  overflow-x: auto;
  padding: 9px;
}
.product-gallery-thumbs:empty { display: none; }
.product-gallery-thumbs button {
  background: transparent;
  border: 1px solid transparent;
  flex: 0 0 50px;
  height: 62px;
  padding: 0;
}
.product-gallery-thumbs button.selected { border-color: var(--wine); }
.product-gallery-thumbs img { height: 100%; object-fit: cover; width: 100%; }
.product-modal-content { align-self: center; padding: 36px 34px; }
.product-modal-tag { color: var(--wine); font-size: 10px; letter-spacing: .14em; margin: 0 44px 10px 0; text-transform: uppercase; }
.product-modal-title { font-family: Manrope, sans-serif; font-size: clamp(23px, 2.4vw, 34px); font-weight: 600; line-height: 1.12; margin: 0 0 12px; }
.product-modal-price { display: block; font-size: 17px; margin-bottom: 18px; }
.product-modal-description { color: var(--muted); font-size: 13px; line-height: 1.6; margin: 0 0 22px; }
.product-option { margin: 16px 0; }
.product-option > span { color: var(--muted); display: block; font-size: 10px; font-weight: 700; letter-spacing: .1em; margin-bottom: 8px; text-transform: uppercase; }
.product-option-values { display: flex; flex-wrap: wrap; gap: 8px; }
.product-sizes {
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 4px;
}
.product-sizes button { flex: 0 0 auto; min-width: 46px; }
.product-option-values button {
  background: transparent;
  border: 1px solid var(--line);
  min-height: 38px;
  padding: 0 13px;
}
.product-option-values button.selected { background: var(--ink); color: white; }
.product-modal-add { margin-top: 14px; min-height: 48px; width: 100%; }

.made-to-order {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  padding: 7vw 8vw;
}
.editorial-card { border-left: 1px solid var(--wine); padding-left: 36px; }
.made-copy { align-self: end; color: var(--muted); line-height: 1.75; padding-left: 8vw; }
.made-copy a { color: var(--wine); display: inline-block; margin-top: 20px; }
.steps { padding: 110px 8vw; text-align: center; }
.steps-grid { display: grid; gap: 30px; grid-template-columns: repeat(4, 1fr); margin-top: 60px; text-align: left; }
.steps article { border-top: 1px solid var(--line); padding-top: 22px; }
.steps article > span { color: var(--wine); font-family: "Playfair Display"; font-size: 28px; }
.steps h3 { font-size: 15px; margin: 40px 0 12px; }
.steps p { color: var(--muted); font-size: 12px; line-height: 1.65; }

footer { background: var(--ink); color: white; padding: 70px 5vw 30px; text-align: center; }
.footer-logo { display: inline-block; height: 70px; margin-bottom: 14px; width: min(260px, 72vw); }
.footer-logo img { filter: brightness(0) invert(1); height: 100%; object-fit: contain; width: 100%; }
footer p, footer small { color: rgba(255,255,255,.55); }
.footer-contact {
  background: linear-gradient(145deg, rgba(255,255,255,.095), rgba(255,255,255,.045));
  border: 1px solid rgba(255,255,255,.14);
  margin: 28px auto 26px;
  max-width: 820px;
  padding: 24px;
}
.footer-contact > span {
  color: rgba(255,255,255,.58);
  display: block;
  font-size: 10px;
  letter-spacing: .16em;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.footer-contact h2 {
  color: white;
  font-family: Manrope, sans-serif;
  font-size: clamp(18px, 2.2vw, 25px);
  font-weight: 500;
  line-height: 1.28;
  margin: 0 auto 20px;
  max-width: 640px;
}
.footer-contact-actions {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.contact-button {
  align-items: center;
  background: white;
  color: var(--ink);
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  min-height: 62px;
  padding: 12px 14px;
  text-align: left;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.contact-icon {
  background: var(--ink);
  border-radius: 999px;
  flex: 0 0 auto;
  color: white;
  fill: none;
  height: 34px;
  padding: 7px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  width: 34px;
}
.contact-icon circle,
.contact-icon rect,
.contact-icon path {
  vector-effect: non-scaling-stroke;
}
.contact-telegram .contact-icon {
  background: #229ed9;
  fill: #229ed9;
}
.contact-telegram .contact-icon path:first-child {
  fill: white;
  stroke: white;
}
.contact-viber .contact-icon {
  background: #7360f2;
}
.contact-instagram .contact-icon {
  background: radial-gradient(circle at 30% 105%, #feda75 0 22%, #fa7e1e 36%, #d62976 58%, #962fbf 78%, #4f5bd5 100%);
}
.contact-button span { display: block; font-size: 13px; font-weight: 700; line-height: 1.15; }
.contact-button small { color: rgba(10,3,5,.58); display: block; font-size: 10px; line-height: 1.25; margin-top: 2px; }
.contact-button:hover {
  background: var(--wine);
  color: white;
  transform: translateY(-2px);
}
.contact-button:hover .contact-icon { background: white; color: var(--wine); }
.contact-telegram:hover .contact-icon,
.contact-instagram:hover .contact-icon,
.contact-viber:hover .contact-icon { fill: none; }
.contact-telegram:hover .contact-icon path:first-child {
  fill: var(--wine);
  stroke: var(--wine);
}
.contact-button:hover small { color: rgba(255,255,255,.72); }
.contact-button-disabled {
  opacity: .58;
}
.contact-button-disabled:hover {
  background: white;
  color: var(--ink);
  transform: none;
}
.contact-button-disabled:hover small { color: rgba(10,3,5,.58); }
.footer-links { display: flex; gap: 28px; justify-content: center; margin: 24px 0 48px; font-size: 12px; }

.legal-back-link {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  text-decoration: none;
}
.legal-page {
  background: var(--paper);
}
.legal-hero {
  background: var(--cream);
  padding: 90px 8vw 70px;
  text-align: center;
}
.legal-hero h1 {
  font-size: clamp(42px, 7vw, 86px);
  line-height: .98;
  margin: 12px auto 20px;
  max-width: 880px;
}
.legal-hero p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
  margin: 0 auto;
  max-width: 760px;
}
.legal-content {
  background: white;
  box-shadow: 0 24px 80px rgba(20, 0, 6, .08);
  line-height: 1.8;
  margin: -34px auto 90px;
  max-width: 980px;
  padding: clamp(28px, 6vw, 76px);
}
.legal-content h2 {
  border-top: 1px solid var(--line);
  font-family: "Playfair Display", serif;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.15;
  margin: 42px 0 18px;
  padding-top: 32px;
}
.legal-content h2:first-child {
  border-top: 0;
  margin-top: 0;
  padding-top: 0;
}
.legal-content p,
.legal-content li {
  color: rgba(10,3,5,.72);
  font-size: 15px;
}
.legal-content ul {
  margin: 8px 0 18px;
  padding-left: 24px;
}
.legal-content strong {
  color: var(--ink);
}

.drawer {
  background: var(--paper);
  bottom: 0;
  max-width: 460px;
  padding: 30px;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(105%);
  transition: transform .3s ease;
  width: 92%;
  z-index: 50;
}
.drawer.open { transform: none; }
.drawer-close, .cart-close { background: none; border: 0; font-size: 32px; }
.menu-drawer { display: flex; flex-direction: column; gap: 26px; font-family: "Playfair Display"; font-size: 28px; }
.menu-drawer .drawer-close { align-self: end; }
.drawer-header { align-items: center; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; padding-bottom: 18px; }
.drawer-header h2 { font-size: 32px; }
.overlay { background: rgba(10,3,5,.42); inset: 0; opacity: 0; pointer-events: none; position: fixed; transition: .3s; z-index: 40; }
.overlay.active { opacity: 1; pointer-events: auto; }
.cart-empty { padding: 80px 0; text-align: center; }
.cart-items { max-height: calc(100vh - 260px); overflow: auto; }
.cart-item { border-bottom: 1px solid var(--line); display: grid; gap: 14px; grid-template-columns: 74px 1fr auto; padding: 18px 0; }
.cart-thumb { background: linear-gradient(145deg, var(--tone-a), var(--tone-b)); min-height: 94px; }
.cart-thumb { overflow: hidden; }
.cart-item h4 { font-size: 13px; margin: 6px 0; }
.cart-item p { color: var(--muted); font-size: 11px; margin: 0; }
.cart-item-price { align-items: center; display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.cart-item-price s { color: var(--muted); font-size: 11px; }
.cart-item-price span { background: var(--wine); color: white; font-size: 9px; padding: 3px 5px; }
.remove-item { background: none; border: 0; color: var(--muted); }
.cart-summary { border-top: 1px solid var(--line); bottom: 0; left: 30px; padding: 22px 0 30px; position: absolute; right: 30px; }
.cart-summary > div { display: flex; justify-content: space-between; margin-bottom: 18px; }
.cart-discount-row { color: var(--wine); }
.cart-summary .primary-button { width: 100%; }
.cart-summary small { color: var(--muted); display: block; font-size: 10px; margin-top: 12px; text-align: center; }
.checkout-modal {
  background: var(--paper);
  bottom: 0;
  max-width: 560px;
  overflow-y: auto;
  padding: 34px;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(105%);
  transition: transform .3s ease;
  width: 100%;
  z-index: 55;
}
.checkout-modal.open { transform: none; }
.checkout-header { align-items: start; display: flex; justify-content: space-between; margin-bottom: 32px; }
.checkout-header h2 { font-size: 34px; margin: 6px 0 0; }
.checkout-close { background: none; border: 0; font-size: 28px; }
.checkout-form { display: grid; gap: 18px; }
.checkout-form label { color: var(--muted); display: grid; font-size: 11px; gap: 8px; }
.checkout-form input, .checkout-form textarea {
  background: white;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  padding: 13px 14px;
  width: 100%;
}
.checkout-payment {
  border: 1px solid var(--line);
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 16px;
}
.checkout-payment legend {
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  padding: 0 8px;
}
.checkout-payment label {
  align-items: flex-start;
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  display: grid;
  gap: 12px;
  grid-template-columns: 18px minmax(0, 1fr);
  padding: 13px;
}
.checkout-payment input {
  accent-color: var(--wine);
  margin-top: 2px;
  padding: 0;
  width: 18px;
}
.checkout-payment strong {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
}
.checkout-payment small {
  color: var(--muted);
  display: block;
  font-size: 10px;
  line-height: 1.45;
  text-align: left;
}
.checkout-form textarea { resize: vertical; }
.checkout-form small { color: var(--muted); font-size: 10px; line-height: 1.5; text-align: center; }
.checkout-error { color: #a40022; font-size: 12px; margin: 0; }
.checkout-submit:disabled { cursor: wait; opacity: .65; }

@media (max-width: 900px) {
  .site-header { height: 64px; padding: 0 18px; }
  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .wordmark { font-size: 22px; }
  .brand-logo { height: 54px; width: 210px; }
  .cart-button { font-size: 0; }
  .cart-count { font-size: 10px; }
  .drop-hero { min-height: calc(100vh - 93px); }
  .drop-hero-video-main { height: 74%; object-position: center; width: 88%; }
  .drop-hero-content { inset: auto 20px 48px; max-width: calc(100% - 40px); }
  .drop-hero-content h1 { font-size: clamp(52px, 18vw, 96px); }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { padding: 80px 24px 60px; }
  .hero-visual { aspect-ratio: 4 / 5; }
  .benefits { grid-template-columns: 1fr 1fr; padding: 0; }
  .benefits div:nth-child(2) { border-right: 0; }
  .benefits div { border-bottom: 1px solid var(--line); padding: 22px 18px; }
  .catalog-section { padding: 24px 18px 80px; }
  .section-heading { align-items: start; flex-direction: column; gap: 28px; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .made-to-order { grid-template-columns: 1fr; padding: 80px 24px; }
  .made-copy { padding: 50px 0 0; }
  .steps { padding: 80px 24px; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .catalog-layout { display: block; }
  .catalog-sidebar { margin-bottom: 32px; position: static; }
  .catalog-sidebar-title { margin-bottom: 10px; }
  .categories-title { margin-top: 24px; }
  .gender-filters, .subcategory-filters {
    flex-direction: row;
    gap: 20px;
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: 10px;
  }
  .gender-filter, .subcategory-filter { flex: 0 0 auto; white-space: nowrap; }
}

@media (max-width: 540px) {
  h1 { font-size: 48px; }
  .hero-visual { font-size: 64px; }
  .benefits { grid-template-columns: 1fr; }
  .benefits div { border-right: 0; }
  .product-grid { gap: 10px; }
  .product-info { display: block; }
  .product-price { display: block; margin-top: 8px; }
  .product-modal { display: block; inset: auto 0 0; max-height: 94vh; transform: translateY(100%); width: 100%; }
  .product-modal.open { transform: none; }
  .product-modal-media { min-height: 0; }
  .product-gallery-main { height: min(48vh, 430px); padding: 12px; }
  .product-gallery-main img { max-height: 44vh; }
  .product-gallery-thumbs { padding: 8px 12px; }
  .product-gallery-thumbs button { flex-basis: 46px; height: 56px; }
  .product-modal-content { padding: 22px 18px 28px; }
  .product-modal-title { font-size: 22px; }
  .product-modal-description { margin-bottom: 18px; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-contact { margin: 24px auto; padding: 20px 14px; }
  .footer-contact h2 { font-size: 18px; margin-bottom: 16px; }
  .footer-contact-actions { grid-template-columns: 1fr; }
  .contact-button { min-height: 58px; padding: 11px 13px; }
  .footer-links { align-items: center; flex-direction: column; gap: 14px; }
}
