:root {
  --ink: #2f2c28;
  --muted: #716d67;
  --line: rgba(91, 76, 58, .18);
  --paper: #fffaf2;
  --warm: #f2eadf;
  --gold: #bd8940;
  --gold-dark: #a8752d;
  --white: #fff;
  --shadow: 0 24px 70px rgba(72, 58, 42, .16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: relative;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  min-height: 82px;
  padding: 0 clamp(24px, 3.5vw, 58px);
  background: rgba(255, 252, 247, .92);
  border-bottom: 1px solid rgba(91, 76, 58, .1);
  backdrop-filter: blur(18px);
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: 172px;
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  left: 8px;
  width: 116px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  content: "";
}

.brand-mark::before {
  top: -8px;
  transform: rotate(4deg);
}

.brand-mark::after {
  bottom: -10px;
  transform: rotate(13deg);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 3vw, 48px);
  font-size: 16px;
  font-weight: 500;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
  content: "";
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.icon-link {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
}

.header-action-button {
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.action-count,
.bag-link .action-count {
  position: absolute;
  top: -9px;
  right: -10px;
  display: grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 5px;
  color: var(--white);
  background: var(--gold);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.action-count[hidden] {
  display: none;
}

.icon-link svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.bag-link span {
  position: absolute;
  top: -9px;
  right: -10px;
  display: grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 5px;
  color: var(--white);
  background: var(--gold);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  overflow: hidden;
  background: #eee2d2;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 250, 242, .95) 0%, rgba(255, 250, 242, .78) 32%, rgba(255, 250, 242, .15) 58%, rgba(255, 250, 242, 0) 100%),
    linear-gradient(180deg, rgba(255, 250, 242, .1), rgba(255, 250, 242, .25));
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(740px, calc(100% - 48px));
  padding: clamp(66px, 8vh, 104px) 0 190px clamp(24px, 7vw, 118px);
}

.button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero h1 {
  max-width: 690px;
  margin: 0 0 24px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(56px, 6.3vw, 74px);
  font-weight: 600;
  line-height: .96;
  letter-spacing: 0;
}

.hero p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(19px, 1.55vw, 24px);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 46px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 72px;
  padding: 0 34px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 19px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

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

.button-primary {
  color: var(--white);
  background: linear-gradient(180deg, #c9964b, #b98233);
  box-shadow: 0 16px 34px rgba(162, 111, 43, .22);
}

.button-outline {
  color: var(--ink);
  background: rgba(255, 250, 242, .58);
  border-color: rgba(189, 137, 64, .72);
}

.feature-panel {
  position: absolute;
  z-index: 3;
  left: clamp(20px, 6.8vw, 116px);
  right: clamp(20px, 6.8vw, 116px);
  bottom: 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 132px;
  padding: 28px 34px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(255, 255, 255, .74);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.feature-panel article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  align-items: center;
  min-width: 0;
  padding: 0 30px;
  border-right: 1px solid var(--line);
}

.feature-panel article:first-child {
  padding-left: 0;
}

.feature-panel article:last-child {
  padding-right: 0;
  border-right: 0;
}

.feature-panel svg {
  width: 54px;
  height: 54px;
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.feature-panel h2 {
  margin: 0 0 4px;
  font-size: 19px;
  line-height: 1.25;
}

.feature-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.messages {
  position: fixed;
  z-index: 50;
  top: 96px;
  right: 24px;
  display: grid;
  gap: 10px;
}

.message {
  max-width: 360px;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.site-footer {
  padding: 56px clamp(24px, 7vw, 118px) 28px;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, .94), rgba(244, 235, 222, .98)),
    var(--warm);
  border-top: 1px solid rgba(91, 76, 58, .14);
}

.footer-topline {
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr) auto;
  align-items: center;
  gap: 34px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.footer-brand {
  min-width: 178px;
  font-size: 38px;
}

.footer-topline p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.footer-topline .button {
  min-height: 56px;
  padding-inline: 28px;
  font-size: 17px;
  white-space: nowrap;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.25fr 1fr;
  gap: 42px;
  padding: 38px 0;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-column h2 {
  margin: 0 0 8px;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gold-dark);
}

.footer-column a,
.footer-column p,
.footer-bottom {
  color: var(--muted);
}

.footer-column a {
  transition: color .18s ease;
}

.footer-column a:hover {
  color: var(--gold-dark);
}

.footer-column p {
  margin: 0;
  line-height: 1.65;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.footer-socials a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--gold-dark);
  border: 1px solid rgba(189, 137, 64, .34);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.section-strip,
.contact-strip,
.catalog-page,
.product-detail {
  padding: 72px clamp(24px, 7vw, 118px);
}

.section-strip,
.contact-strip {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.section-strip span,
.contact-strip span,
.page-heading span,
.product-info span {
  color: var(--gold-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
}

.section-strip h2,
.page-heading h1,
.product-info h1 {
  margin: 8px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 4.5vw, 66px);
  line-height: 1;
}

.section-strip p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.home-catalog {
  padding: 72px clamp(24px, 7vw, 106px) 86px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, .9), rgba(255, 250, 242, 0) 34%),
    var(--paper);
}

.home-catalog-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.home-catalog-head h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(52px, 5.2vw, 72px);
  font-weight: 600;
  line-height: .95;
  letter-spacing: 0;
}

.home-catalog-head p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 20px;
  font-weight: 500;
}

.catalog-all-link,
.details-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-dark);
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
}

.catalog-all-link {
  margin-top: 22px;
}

.catalog-all-link svg,
.details-link svg,
.catalog-more svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.catalog-filters button {
  min-width: 128px;
  height: 42px;
  padding: 0 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, .5);
  border: 1px solid rgba(189, 137, 64, .46);
  border-radius: 999px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}

.catalog-filters button:hover,
.catalog-filters button.is-active {
  color: var(--gold-dark);
  background: rgba(255, 247, 236, .9);
  border-color: var(--gold);
}

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

.home-product-card {
  min-width: 0;
  padding: 12px;
  background: rgba(255, 255, 255, .6);
  border: 1px solid rgba(91, 76, 58, .12);
  border-radius: var(--radius);
  box-shadow: 0 20px 52px rgba(72, 58, 42, .06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.home-product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(189, 137, 64, .38);
  box-shadow: 0 24px 64px rgba(72, 58, 42, .12);
}

.home-product-card[hidden] {
  display: none;
}

.home-product-card a,
.home-product-body {
  display: grid;
}

.home-product-card figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: var(--warm);
}

.home-product-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.04 / 1;
  object-fit: cover;
  transition: transform .28s ease;
}

.product-image-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1.04 / 1;
  min-height: 180px;
  color: rgba(117, 111, 102, .78);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .58), rgba(255, 250, 242, .9)),
    repeating-linear-gradient(45deg, rgba(189, 137, 64, .08) 0 8px, transparent 8px 16px);
  border: 1px dashed rgba(189, 137, 64, .35);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
}

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

.home-product-card figcaption {
  position: absolute;
  top: 14px;
  right: 14px;
  min-width: 62px;
  padding: 8px 12px;
  color: var(--gold-dark);
  background: rgba(255, 250, 242, .93);
  border: 1px solid rgba(189, 137, 64, .3);
  border-radius: 6px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}

.home-product-body {
  gap: 12px;
  padding: 20px 12px 10px;
}

.home-product-body h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(24px, 2vw, 31px);
  font-weight: 600;
  line-height: 1.05;
}

.home-product-body p {
  min-height: 52px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.home-product-price {
  display: flex;
  align-items: baseline;
  gap: 20px;
}

.home-product-price strong {
  font-size: 24px;
  line-height: 1;
}

.home-product-price span {
  color: rgba(113, 109, 103, .55);
  font-size: 19px;
  text-decoration: line-through;
}

.home-product-variants {
  width: fit-content;
  padding: 5px 10px;
  color: var(--gold-dark);
  background: rgba(255, 247, 236, .72);
  border: 1px solid rgba(189, 137, 64, .18);
  border-radius: 5px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.details-link {
  margin-top: 2px;
}

.catalog-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: min(346px, 100%);
  height: 60px;
  margin: 38px auto 0;
  color: var(--ink);
  background: rgba(255, 255, 255, .36);
  border: 1px solid var(--gold);
  border-radius: 6px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
}

.catalog-more[hidden] {
  display: none;
}

.catalog-store {
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 255, 255, .85), rgba(255, 250, 242, 0) 36%),
    var(--paper);
}

.catalog-store-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 42px;
  align-items: end;
}

.catalog-store-head span {
  color: var(--gold-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
}

.catalog-store-head h1 {
  margin: 10px 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(54px, 5vw, 76px);
  font-weight: 600;
  line-height: .95;
}

.catalog-store-head p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
}

.catalog-store-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 32px;
  margin-top: 42px;
}

.catalog-filter-toggle {
  display: none;
}

.catalog-filter-panel {
  position: sticky;
  top: 104px;
  align-self: start;
  display: grid;
  gap: 24px;
  max-height: calc(100vh - 128px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 24px;
  background: rgba(255, 255, 255, .62);
  border: 1px solid rgba(91, 76, 58, .14);
  border-radius: var(--radius);
  box-shadow: 0 20px 56px rgba(72, 58, 42, .07);
  scrollbar-width: thin;
  scrollbar-color: rgba(189, 137, 64, .55) rgba(189, 137, 64, .12);
}

.catalog-filter-panel::-webkit-scrollbar {
  width: 6px;
}

.catalog-filter-panel::-webkit-scrollbar-track {
  background: rgba(189, 137, 64, .1);
  border-radius: 999px;
}

.catalog-filter-panel::-webkit-scrollbar-thumb {
  background: rgba(189, 137, 64, .58);
  border-radius: 999px;
}

.filter-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.filter-panel-head h2 {
  margin: 0;
  font-size: 22px;
}

.filter-panel-head button {
  color: var(--gold-dark);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 700;
}

.filter-group {
  display: grid;
  gap: 12px;
}

.filter-group h3 {
  margin: 0;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
}

.filter-group button,
.filter-group label,
.filter-link,
.filter-muted {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  color: var(--ink);
  background: rgba(255, 250, 242, .5);
  border: 1px solid rgba(189, 137, 64, .2);
  border-radius: 6px;
  cursor: pointer;
  text-align: left;
  font-weight: 600;
}

.filter-group button.is-active,
.filter-group button:hover,
.filter-link.is-active,
.filter-link:hover {
  color: var(--white);
  background: var(--gold);
  border-color: var(--gold);
}

.filter-muted {
  color: var(--muted);
  cursor: default;
  font-weight: 500;
}

.filter-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0 10px 0 0;
  accent-color: var(--gold);
}

.price-range {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.price-range input,
.catalog-toolbar select {
  width: 100%;
  height: 42px;
  padding: 0 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, .76);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.catalog-results {
  min-width: 0;
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 58px;
  margin-bottom: 18px;
  padding: 0 18px;
  background: rgba(255, 255, 255, .42);
  border: 1px solid rgba(91, 76, 58, .12);
  border-radius: var(--radius);
}

.catalog-toolbar p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.catalog-toolbar label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

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

.catalog-product-card {
  background: rgba(255, 255, 255, .72);
}

.catalog-store .catalog-product-grid {
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
}

.catalog-store .catalog-product-card {
  position: relative;
  padding: 10px;
  background: rgba(255, 255, 255, .66);
  border-color: rgba(91, 76, 58, .1);
  border-radius: 10px;
  box-shadow: 0 14px 36px rgba(72, 58, 42, .045);
}

.catalog-store .catalog-product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(72, 58, 42, .09);
}

.catalog-store .catalog-product-card figure {
  border-radius: 8px;
}

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

.catalog-store .catalog-product-card figcaption {
  display: none;
}

.catalog-store .catalog-product-card .home-product-body {
  gap: 9px;
  padding: 16px 10px 8px;
}

.catalog-store .catalog-product-card h3 {
  display: -webkit-box;
  min-height: 58px;
  overflow: hidden;
  font-size: clamp(25px, 1.8vw, 30px);
  line-height: 1;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.catalog-store .catalog-product-card p {
  display: -webkit-box;
  min-height: 44px;
  overflow: hidden;
  color: #756f66;
  font-size: 15px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.catalog-store .catalog-product-card .home-product-price {
  gap: 12px;
  margin-top: 2px;
}

.catalog-store .catalog-product-card .home-product-price strong {
  font-size: 22px;
  letter-spacing: .01em;
}

.catalog-store .catalog-product-card .home-product-price span {
  font-size: 16px;
}

.catalog-store .catalog-product-card .home-product-variants {
  padding: 4px 9px;
  font-size: 12px;
}

.catalog-store .catalog-product-card .details-link {
  gap: 9px;
  margin-top: 1px;
  font-size: 16px;
}

.catalog-store .catalog-product-card .details-link svg {
  width: 19px;
  height: 19px;
}

.catalog-empty {
  grid-column: 1 / -1;
  min-height: 220px;
  padding: 38px;
  background: rgba(255, 255, 255, .58);
  border: 1px dashed rgba(189, 137, 64, .38);
  border-radius: 10px;
}

.catalog-empty h3 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  font-weight: 600;
}

.catalog-empty p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.custom-sewing {
  scroll-margin-top: 92px;
  padding: 64px clamp(24px, 5.8vw, 96px) 68px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .42), rgba(255, 250, 242, .62)),
    var(--paper);
}

.custom-sewing-grid {
  display: grid;
  grid-template-columns: minmax(500px, .96fr) minmax(540px, 1.04fr);
  gap: clamp(36px, 4.2vw, 58px);
  align-items: center;
}

.custom-feature-grid svg {
  flex: 0 0 auto;
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.custom-sewing-copy h2 {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(48px, 4.5vw, 66px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.custom-sewing-copy > p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 21px);
  font-weight: 500;
  line-height: 1.48;
}

.custom-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 34px;
}

.custom-feature-grid article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  min-height: 104px;
  padding: 0 24px 24px 0;
  border-bottom: 1px solid var(--line);
}

.custom-feature-grid article:nth-child(even) {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.custom-feature-grid article:nth-child(n + 3) {
  align-items: end;
  padding-top: 24px;
  padding-bottom: 0;
  border-bottom: 0;
}

.custom-feature-grid svg {
  width: 50px;
  height: 50px;
  stroke-width: 1.45;
}

.custom-feature-grid h3 {
  margin: 0 0 7px;
  font-size: 18px;
  line-height: 1.2;
}

.custom-feature-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.custom-actions {
  display: grid;
  grid-template-columns: minmax(0, 278px) minmax(0, 306px);
  gap: 18px;
  margin-top: 36px;
}

.custom-actions .button {
  min-height: 64px;
}

.custom-sewing-media {
  position: relative;
  padding: 8px;
  background: rgba(255, 255, 255, .5);
  border: 1px solid rgba(91, 76, 58, .13);
  border-radius: 10px;
  box-shadow: 0 22px 68px rgba(72, 58, 42, .1);
}

.custom-sewing-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1.28 / 1;
  max-height: 560px;
  object-fit: cover;
  border-radius: 8px;
}

.media-stat {
  position: absolute;
  bottom: 32px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 88px;
  padding: 0 22px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(91, 76, 58, .08);
  border-radius: 12px;
  box-shadow: 0 20px 48px rgba(72, 58, 42, .14);
}

.media-stat-time {
  left: 7%;
  width: min(330px, 43%);
}

.media-stat-love {
  right: 7%;
  width: min(292px, 36%);
}

.media-stat svg {
  width: 46px;
  height: 46px;
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.media-stat strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(30px, 2.8vw, 40px);
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.media-stat-love strong {
  font-family: "Manrope", sans-serif;
  font-size: clamp(17px, 1.15vw, 20px);
  font-weight: 700;
  line-height: 1.2;
}

.media-stat span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.25;
}

.callback-section,
.projects-section,
.work-steps,
.reviews-section,
.contacts-section {
  position: relative;
  overflow: hidden;
  padding: 76px clamp(24px, 7vw, 118px);
  background: var(--paper);
}

.section-center-head {
  display: grid;
  justify-items: center;
  max-width: 850px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-center-head h2,
.section-split-head h2,
.work-steps h2,
.reviews-section h2,
.contacts-info h2 {
  margin: 26px 0 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(56px, 5.6vw, 78px);
  font-weight: 600;
  line-height: .95;
}

.section-center-head p,
.section-split-head p,
.steps-lead,
.reviews-lead,
.contacts-info > p {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.callback-form {
  display: grid;
  gap: 24px;
  width: min(750px, 100%);
  margin: 0 auto;
  padding: 36px 44px;
  background: rgba(255, 255, 255, .42);
  border: 1px solid rgba(91, 76, 58, .14);
  border-radius: 18px;
}

.callback-section {
  padding-top: 54px;
  padding-bottom: 58px;
}

.callback-section .section-center-head {
  max-width: 720px;
  margin-bottom: 30px;
}

.callback-section .section-center-head h2 {
  margin: 0 0 10px;
  font-size: clamp(42px, 4.2vw, 58px);
  line-height: 1;
}

.callback-section .section-center-head p {
  font-size: 17px;
  line-height: 1.45;
}

.callback-section .callback-form {
  gap: 16px;
  width: min(620px, 100%);
  padding: 26px 32px;
  border-radius: 14px;
}

.callback-section .phone-field input {
  height: 56px;
  padding-left: 60px;
  font-size: 16px;
}

.callback-section .phone-field svg {
  left: 22px;
  width: 22px;
  height: 22px;
}

.callback-section .consent-line {
  gap: 10px;
  font-size: 14px;
}

.callback-section .consent-line input {
  width: 18px;
  height: 18px;
}

.callback-section .button {
  min-height: 58px;
  font-size: 16px;
}

.callback-section .callback-note {
  font-size: 14px;
}

.phone-field {
  position: relative;
}

.phone-field svg {
  position: absolute;
  left: 26px;
  top: 50%;
  width: 25px;
  height: 25px;
  transform: translateY(-50%);
  fill: none;
  stroke: var(--muted);
  stroke-width: 1.8;
}

.phone-field input {
  width: 100%;
  height: 70px;
  padding: 0 24px 0 78px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(189, 137, 64, .24);
  border-radius: 6px;
  font-size: 18px;
}

.consent-line {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 16px;
}

.consent-line input {
  width: 22px;
  height: 22px;
  accent-color: var(--gold);
}

.consent-line a,
.quality-line b {
  color: var(--gold-dark);
  text-decoration: underline;
}

.callback-note {
  margin: 0;
  color: var(--muted);
  text-align: center;
  font-size: 16px;
}

.callback-benefits,
.project-cta,
.review-stats,
.map-benefits {
  display: grid;
  gap: 0;
  margin-top: 40px;
  background: rgba(255, 255, 255, .5);
  border: 1px solid rgba(189, 137, 64, .22);
  border-radius: var(--radius);
}

.callback-benefits {
  grid-template-columns: repeat(3, 1fr);
  padding: 26px 42px;
}

.callback-section .callback-benefits {
  width: min(1180px, 100%);
  margin: 28px auto 0;
  padding: 20px 34px;
}

.callback-benefits article,
.project-cta > *,
.review-stats > *,
.map-benefits article {
  min-width: 0;
}

.callback-benefits article {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 24px;
  padding: 0 34px;
  border-right: 1px solid var(--line);
}

.callback-section .callback-benefits article {
  grid-template-columns: 52px 1fr;
  gap: 22px;
  padding: 0 34px;
}

.callback-benefits article:last-child {
  border-right: 0;
}

.callback-benefits svg,
.project-cta svg,
.steps-grid svg,
.steps-cta svg,
.review-stats svg,
.contact-card svg {
  width: 52px;
  height: 52px;
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.callback-section .callback-benefits svg {
  width: 44px;
  height: 44px;
}

.callback-benefits h3,
.project-cta h3,
.steps-grid h3,
.steps-cta h3,
.map-benefits h3,
.contact-card h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.callback-section .callback-benefits h3 {
  margin-bottom: 4px;
  font-size: 16px;
}

.callback-benefits p,
.project-cta p,
.steps-grid p,
.steps-cta p,
.map-benefits p,
.contact-card p {
  margin: 0;
  color: var(--muted);
}

.callback-section .callback-benefits p {
  font-size: 15px;
  line-height: 1.4;
}

.section-split-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.section-split-head > div {
  max-width: 760px;
}

.project-grid,
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.project-grid article,
.reviews-grid article {
  overflow: hidden;
  background: rgba(255, 255, 255, .62);
  border: 1px solid rgba(91, 76, 58, .13);
  border-radius: var(--radius);
}

.project-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 1.46 / 1;
  object-fit: cover;
}

.project-grid article > div {
  padding: 20px 24px 24px;
}

.project-grid span {
  color: var(--gold-dark);
  font-weight: 700;
}

.project-grid h3 {
  margin: 14px 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  line-height: 1.05;
}

.project-grid p {
  margin: 8px 0;
  color: var(--muted);
}

.project-cta,
.review-stats {
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 24px 34px;
}

.work-steps {
  margin: 18px 18px 0;
  padding: 84px clamp(48px, 5.6vw, 88px) 42px;
  background:
    linear-gradient(90deg, rgba(255, 250, 242, .98) 0%, rgba(255, 250, 242, .92) 42%, rgba(255, 250, 242, .42) 68%, rgba(255, 250, 242, .24) 100%),
    var(--paper);
  border-radius: 16px;
}

.steps-bg,
.reviews-bg,
.contacts-decor {
  position: absolute;
  pointer-events: none;
  object-fit: cover;
}

.steps-bg {
  top: 0;
  right: 0;
  width: 54%;
  height: 420px;
  opacity: .88;
  border-radius: 0 16px 0 0;
  mask-image: linear-gradient(90deg, transparent, black 34%);
}

.work-steps h2 {
  max-width: 650px;
  margin: 0 0 18px;
  font-size: clamp(56px, 4.8vw, 76px);
  line-height: .98;
}

.steps-lead,
.reviews-lead {
  max-width: 680px;
}

.work-steps .steps-lead {
  max-width: 620px;
  font-size: 18px;
  line-height: 1.5;
}

.steps-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin: 76px 4.6% 26px;
}

.steps-line::before {
  position: absolute;
  top: 31px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, rgba(189, 137, 64, .18), rgba(189, 137, 64, .75), rgba(189, 137, 64, .18));
  content: "";
}

.steps-line span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 0 auto;
  color: var(--gold-dark);
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(189, 137, 64, .24);
  border-radius: 999px;
  font-size: 18px;
  font-weight: 700;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.steps-grid article {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 168px;
  padding: 0 24px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.steps-grid article:last-child {
  border-right: 0;
}

.steps-grid h3 {
  margin-top: 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  line-height: 1.05;
}

.steps-grid p {
  max-width: 230px;
  font-size: 15px;
  line-height: 1.45;
}

.steps-grid svg {
  width: 46px;
  height: 46px;
}

.steps-cta {
  display: grid;
  grid-template-columns: 345px repeat(3, minmax(0, 1fr)) 270px;
  align-items: center;
  gap: 0;
  margin-top: 42px;
  padding: 0 28px 0 0;
  background: rgba(255, 255, 255, .52);
  border: 1px solid rgba(189, 137, 64, .22);
  border-radius: var(--radius);
}

.steps-cta img {
  width: 100%;
  height: 156px;
  object-fit: cover;
  border-radius: var(--radius) 0 0 var(--radius);
}

.steps-cta > div {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 96px;
  padding: 0 28px;
  border-right: 1px solid var(--line);
}

.steps-cta > div h3 {
  margin-bottom: 5px;
  font-size: 16px;
}

.steps-cta > div p {
  font-size: 14px;
  line-height: 1.4;
}

.steps-cta > div svg {
  width: 46px;
  height: 46px;
}

.steps-cta .button {
  justify-self: end;
  width: min(246px, 100%);
  min-height: 62px;
}

.steps-cta .button svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.reviews-section {
  padding-top: 74px;
  padding-bottom: 54px;
  background: linear-gradient(180deg, rgba(255, 250, 242, .98), rgba(255, 250, 242, .94));
}

.reviews-bg {
  top: 0;
  right: 0;
  width: 52%;
  height: 330px;
  opacity: .85;
  mask-image: linear-gradient(90deg, transparent, black 30%);
}

.reviews-section h2 {
  margin: 0 0 18px;
  font-size: clamp(52px, 4.7vw, 72px);
  line-height: .98;
}

.reviews-lead {
  max-width: 670px;
  font-size: 18px;
  line-height: 1.5;
}

.reviews-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.reviews-grid article {
  position: relative;
  min-height: 284px;
  padding: 22px 22px 20px;
  border-radius: 8px;
}

.reviews-grid article::after {
  position: absolute;
  top: 12px;
  right: 20px;
  color: rgba(189, 137, 64, .16);
  content: "“";
  font-family: "Cormorant Garamond", serif;
  font-size: 62px;
}

.reviews-grid span {
  display: block;
  color: var(--gold-dark);
  font-size: 19px;
  letter-spacing: .08em;
}

.reviews-grid p {
  min-height: 98px;
  margin: 22px 0 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.48;
}

.reviews-grid footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviews-grid img {
  width: 92px;
  height: 72px;
  object-fit: cover;
  border-radius: 6px;
}

.reviews-grid footer em {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--gold-dark);
  border: 1px solid rgba(189, 137, 64, .34);
  border-radius: 999px;
  font-style: normal;
}

.reviews-grid footer svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.reviews-grid b {
  font-size: 14px;
  white-space: nowrap;
}

.review-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr)) 260px;
  align-items: center;
  gap: 0;
  margin-top: 30px;
  padding: 22px 30px;
}

.review-stats article {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 28px;
  border-right: 1px solid var(--line);
}

.review-stats article:first-child {
  padding-left: 0;
}

.review-stats strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  font-weight: 600;
  line-height: 1;
}

.review-stats p {
  font-size: 14px;
  line-height: 1.35;
}

.review-stats .button {
  justify-self: end;
  width: min(224px, 100%);
  min-height: 58px;
  font-size: 15px;
}

.quality-line {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.contacts-section {
  display: grid;
  grid-template-columns: minmax(420px, .88fr) minmax(520px, 1.12fr);
  gap: 62px;
}

.contacts-decor {
  left: 0;
  bottom: 0;
  width: 170px;
  height: 100%;
  opacity: .72;
}

.contacts-info,
.map-side {
  position: relative;
  z-index: 1;
}

.contact-card {
  display: grid;
  gap: 0;
  margin-top: 28px;
  padding: 28px;
  background: rgba(255, 255, 255, .62);
  border: 1px solid rgba(91, 76, 58, .13);
  border-radius: var(--radius);
}

.contact-card article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.social-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding: 22px 0;
}

.social-row span {
  width: 100%;
  font-weight: 700;
}

.social-row a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--gold-dark);
  border: 1px solid rgba(189, 137, 64, .36);
  border-radius: 999px;
  font-weight: 800;
}

.contact-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.map-card {
  position: relative;
  padding: 8px;
  background: rgba(255, 255, 255, .55);
  border: 1px solid rgba(91, 76, 58, .13);
  border-radius: var(--radius);
}

.map-card img,
.map-card iframe {
  display: block;
  width: 100%;
  aspect-ratio: 1.33 / 1;
  object-fit: cover;
  border: 0;
  border-radius: 6px;
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 48%;
  padding: 18px 26px;
  background: rgba(255, 255, 255, .94);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: translate(-50%, -20%);
  font-weight: 800;
}

.map-pin span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 500;
}

.map-benefits {
  grid-template-columns: 1fr 1fr;
  padding: 26px 34px;
}

.map-benefits article:first-child {
  border-right: 1px solid var(--line);
  padding-right: 34px;
}

.map-benefits article:last-child {
  padding-left: 34px;
}

.lead-dialog {
  width: min(520px, calc(100% - 32px));
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
}

.lead-dialog::backdrop {
  background: rgba(31, 27, 22, .42);
  backdrop-filter: blur(3px);
}

.lead-form {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 34px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.lead-form h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  line-height: 1;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.lead-form input,
.lead-form textarea,
.search-form input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  outline: 0;
}

.lead-form input,
.search-form input {
  height: 52px;
  padding: 0 16px;
}

.lead-form textarea {
  resize: vertical;
  padding: 13px 16px;
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
}

.page-heading {
  display: grid;
  gap: 22px;
  max-width: 860px;
}

.search-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.search-form .button {
  min-height: 52px;
  font-size: 16px;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 36px;
  margin-top: 44px;
}

.category-list {
  display: grid;
  align-content: start;
  gap: 10px;
}

.category-list a,
.category-list span {
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, .48);
}

.category-list .is-active {
  color: var(--white);
  background: var(--gold);
  border-color: var(--gold);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px;
}

.product-card,
.empty-state {
  min-height: 250px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
}

.product-card h2,
.empty-state h2 {
  margin: 18px 0 8px;
  font-size: 20px;
}

.product-card p,
.empty-state p,
.product-info p {
  color: var(--muted);
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(320px, 540px) 1fr;
  gap: 54px;
  align-items: center;
}

.product-photo {
  min-height: 520px;
  background: var(--warm);
  border-radius: var(--radius);
  overflow: hidden;
}

.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-placeholder {
  display: grid;
  place-items: center;
  min-height: 520px;
  font-family: "Cormorant Garamond", serif;
  font-size: 56px;
  color: var(--gold-dark);
}

.product-info strong {
  display: block;
  margin: 26px 0;
  font-size: 32px;
}

.product-page {
  padding: 18px clamp(18px, 5vw, 86px) 54px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, .9), rgba(255, 250, 242, 0) 38%),
    var(--paper);
}

.product-card-page {
  display: grid;
  grid-template-columns: minmax(390px, .94fr) minmax(440px, 1.06fr);
  gap: 34px;
  max-width: 1500px;
  margin: 0 auto;
  padding: 26px;
  background: rgba(255, 255, 255, .55);
  border: 1px solid rgba(91, 76, 58, .12);
  border-radius: 16px;
  box-shadow: 0 22px 70px rgba(72, 58, 42, .08);
}

.product-gallery {
  display: grid;
  align-content: start;
  gap: 12px;
}

.product-main-img,
.product-thumbs img {
  display: block;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.product-main-img {
  aspect-ratio: 1.23 / 1;
  max-height: 520px;
}

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

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

.product-buybox {
  padding: 4px 0;
}

.product-buybox h1 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(44px, 4vw, 58px);
  font-weight: 600;
  line-height: .95;
}

.product-buybox > p {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 28px;
  margin-top: 22px;
}

.product-price-row strong {
  font-size: clamp(34px, 3.5vw, 42px);
  line-height: 1;
}

.product-price-row span {
  color: rgba(113, 109, 103, .55);
  font-size: 21px;
  text-decoration: line-through;
}

.product-rating-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
}

.product-rating-row .stars {
  color: var(--gold-dark);
  letter-spacing: .12em;
}

.product-rating-row b {
  color: var(--muted);
}

.product-rating-row em {
  margin-left: auto;
  padding: 7px 14px;
  color: var(--gold-dark);
  background: rgba(255, 247, 236, .7);
  border: 1px solid rgba(189, 137, 64, .22);
  border-radius: 999px;
  font-style: normal;
  font-weight: 700;
}

.product-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 20px 0 18px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, .46);
  border: 1px solid rgba(91, 76, 58, .13);
  border-radius: 8px;
}

.product-specs div {
  padding: 0 12px;
  border-right: 1px solid var(--line);
}

.product-specs div:first-child {
  padding-left: 0;
}

.product-specs div:last-child {
  padding-right: 0;
  border-right: 0;
}

.product-specs dt {
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 700;
}

.product-specs dd {
  margin: 0;
  font-size: 14px;
}

.product-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.product-options label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 700;
}

.product-options select {
  width: 100%;
  height: 40px;
  padding: 0 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(91, 76, 58, .16);
  border-radius: 6px;
  font-size: 14px;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1.06fr;
  gap: 12px;
  margin-top: 16px;
}

.product-actions .button {
  min-height: 46px;
  font-size: 14px;
  white-space: nowrap;
}

.designer-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.designer-note svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.product-info-panel {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.1fr;
  gap: 0;
  max-width: 1500px;
  margin: 6px auto 0;
  padding: 24px 28px;
  background: rgba(255, 255, 255, .52);
  border: 1px solid rgba(189, 137, 64, .22);
  border-radius: 16px;
}

.product-info-panel article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 0 28px;
  border-right: 1px solid var(--line);
}

.product-info-panel article:first-child {
  padding-left: 0;
}

.product-info-panel article:last-child {
  padding-right: 0;
  border-right: 0;
}

.product-info-panel svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.product-info-panel h2 {
  margin: 0 0 7px;
  font-size: 18px;
}

.product-info-panel p,
.product-info-panel ul {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.product-info-panel ul {
  display: grid;
  gap: 8px;
  padding-left: 18px;
}

@media (max-width: 1536px) {
  .site-header {
    gap: 24px;
    min-height: 76px;
    padding-inline: 36px;
  }

  .brand {
    min-width: 158px;
    font-size: 34px;
  }

  .main-nav {
    gap: clamp(18px, 2.2vw, 30px);
    font-size: 15px;
  }

  .header-actions {
    gap: 16px;
  }

  .hero {
    min-height: 690px;
  }

  .hero-copy {
    padding-top: 72px;
  }

  .hero-actions {
    margin-top: 30px;
  }

  .hero .button {
    min-height: 64px;
  }

  .feature-panel {
    min-height: 112px;
    padding: 22px 28px;
  }

  .feature-panel article {
    grid-template-columns: 48px 1fr;
    gap: 18px;
    padding-inline: 22px;
  }

  .feature-panel svg {
    width: 48px;
    height: 48px;
  }

  .feature-panel h2 {
    font-size: 17px;
  }

  .feature-panel p {
    font-size: 15px;
  }

  .home-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }

  .home-product-card {
    padding: 14px;
  }

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

  .site-footer {
    padding-inline: 56px;
  }

  .footer-topline {
    grid-template-columns: auto 1fr;
  }

  .footer-topline .button {
    grid-column: 1 / -1;
    width: min(320px, 100%);
  }

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

  .custom-sewing-grid {
    grid-template-columns: minmax(500px, .96fr) minmax(540px, 1.04fr);
    gap: 34px;
  }

  .custom-sewing-copy h2 {
    font-size: clamp(48px, 4vw, 58px);
  }

  .custom-sewing-copy > p {
    max-width: 620px;
    font-size: 18px;
  }

  .custom-feature-grid {
    margin-top: 30px;
  }

  .custom-feature-grid article {
    grid-template-columns: 48px 1fr;
    gap: 16px;
    min-height: 96px;
    padding-right: 20px;
    padding-bottom: 22px;
  }

  .custom-feature-grid article:nth-child(even) {
    padding-left: 20px;
  }

  .custom-feature-grid article:nth-child(n + 3) {
    padding-top: 22px;
  }

  .custom-feature-grid svg {
    width: 46px;
    height: 46px;
  }

  .custom-feature-grid h3 {
    font-size: 17px;
  }

  .custom-feature-grid p {
    font-size: 15px;
  }

  .custom-actions {
    margin-top: 30px;
  }

  .custom-actions .button {
    min-height: 58px;
    font-size: 16px;
  }

  .custom-sewing-media img {
    max-height: 510px;
  }

  .media-stat {
    bottom: 26px;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    min-height: 78px;
    padding: 0 18px;
    border-radius: 10px;
  }

  .media-stat svg {
    width: 40px;
    height: 40px;
  }

  .media-stat strong {
    font-size: 34px;
  }

  .media-stat-love strong {
    font-size: 17px;
  }

  .media-stat span {
    font-size: 15px;
  }

  .steps-cta {
    grid-template-columns: 260px repeat(3, minmax(0, 1fr)) 220px;
  }

  .steps-cta .button {
    grid-column: auto;
    width: min(210px, 100%);
    justify-self: end;
  }

  .steps-cta > div {
    grid-template-columns: 42px 1fr;
    gap: 14px;
    padding: 0 18px;
  }

  .steps-cta > div svg {
    width: 40px;
    height: 40px;
  }

  .contacts-section {
    grid-template-columns: minmax(390px, .9fr) minmax(500px, 1.1fr);
    gap: 42px;
  }

  .product-page {
    padding-top: 20px;
  }

  .product-card-page {
    grid-template-columns: minmax(360px, .92fr) minmax(420px, 1.08fr);
    gap: 30px;
    max-width: 1360px;
    padding: 24px;
  }

  .product-info-panel {
    max-width: 1360px;
  }

  .product-buybox h1 {
    font-size: clamp(42px, 3.7vw, 54px);
  }

  .product-main-img {
    max-height: 470px;
  }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 82px;
  }

  .main-nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 14px;
  }

  .hero {
    min-height: 860px;
  }

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

  .custom-sewing-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .catalog-store-head,
  .catalog-store-layout {
    grid-template-columns: 1fr;
  }

  .catalog-filter-panel {
    position: static;
    max-height: none;
    overflow: visible;
  }

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

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

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

  .product-info-panel article,
  .product-info-panel article:first-child,
  .product-info-panel article:last-child {
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .product-info-panel article:last-child {
    border-bottom: 0;
  }

  .custom-sewing-media {
    order: initial;
  }

  .media-stat {
    bottom: 28px;
    min-height: 96px;
    padding: 0 22px;
  }

  .media-stat-time {
    left: 28px;
  }

  .media-stat-love {
    right: 28px;
  }

  .callback-benefits,
  .contacts-section {
    grid-template-columns: 1fr;
  }

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

  .reviews-grid {
    gap: 16px;
  }

  .reviews-grid article {
    min-height: 260px;
  }

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

  .review-stats article,
  .review-stats article:first-child {
    padding: 0;
    border-right: 0;
  }

  .review-stats .button {
    grid-column: 1 / -1;
    justify-self: stretch;
    width: 100%;
  }

  .callback-benefits article {
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .callback-benefits article:last-child {
    border-bottom: 0;
  }

  .section-split-head,
  .project-cta,
  .review-stats,
  .steps-cta {
    grid-template-columns: 1fr;
    display: grid;
  }

  .project-cta,
  .review-stats,
  .steps-cta {
    padding: 24px;
  }

  .steps-bg,
  .reviews-bg {
    width: 60%;
    opacity: .36;
  }

  .work-steps {
    margin: 12px;
    padding: 54px 32px 36px;
  }

  .work-steps h2 {
    font-size: 52px;
  }

  .steps-line,
  .steps-grid {
    grid-template-columns: 1fr;
    margin-left: 0;
    margin-right: 0;
  }

  .steps-line {
    display: none;
  }

  .steps-grid article {
    justify-items: start;
    min-height: auto;
    padding: 22px 0;
    text-align: left;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .steps-grid article:last-child {
    border-bottom: 0;
  }

  .steps-cta img {
    height: 220px;
    border-radius: var(--radius);
  }

  .steps-cta > div {
    min-height: auto;
    padding: 0 0 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .steps-cta .button {
    justify-self: stretch;
    width: 100%;
  }

  .review-stats article {
    padding: 0 0 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .footer-topline,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-topline .button {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .map-benefits {
    grid-template-columns: 1fr;
  }

  .map-benefits article:first-child,
  .map-benefits article:last-child {
    padding: 18px 0;
    border-right: 0;
  }

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

  .feature-panel article:nth-child(2) {
    border-right: 0;
  }

  .feature-panel article:nth-child(n + 3) {
    padding-top: 20px;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: relative;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    min-height: auto;
    padding: 10px 18px 12px;
  }

  .brand {
    min-width: 0;
    font-size: 31px;
  }

  .brand-mark::before,
  .brand-mark::after {
    width: 94px;
  }

  .header-actions {
    gap: 8px;
  }

  .icon-link {
    width: 28px;
    height: 28px;
  }

  .icon-link svg {
    width: 22px;
    height: 22px;
  }

  .main-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px 8px;
    width: 100%;
    overflow: visible;
    padding: 4px 0 0;
    font-size: 13px;
    line-height: 1.25;
    text-align: center;
  }

  .main-nav a {
    display: grid;
    place-items: center;
    min-height: 34px;
    padding: 4px 2px;
    border: 1px solid rgba(189, 137, 64, .18);
    border-radius: 6px;
    background: rgba(255, 255, 255, .3);
  }

  .main-nav a::after {
    display: none;
  }

  .home-catalog {
    padding: 54px 18px 64px;
  }

  .home-catalog-head {
    display: grid;
    gap: 18px;
  }

  .home-catalog-head h2 {
    font-size: 48px;
  }

  .home-catalog-head p {
    font-size: 17px;
  }

  .catalog-all-link {
    margin-top: 0;
    white-space: normal;
  }

  .catalog-filters {
    gap: 10px;
    margin-top: 28px;
  }

  .catalog-filters button {
    min-width: auto;
    height: 40px;
    padding: 0 18px;
    font-size: 15px;
  }

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

  .home-product-body p {
    min-height: auto;
  }

  .custom-sewing {
    padding: 54px 18px 60px;
  }

  .callback-section,
  .projects-section,
  .work-steps,
  .reviews-section,
  .contacts-section {
    padding: 54px 18px;
  }

  .section-center-head h2,
  .section-split-head h2,
  .work-steps h2,
  .reviews-section h2,
  .contacts-info h2 {
    font-size: 50px;
  }

  .callback-form {
    padding: 24px 18px;
  }

  .callback-section .section-center-head {
    margin-bottom: 22px;
  }

  .callback-section .section-center-head h2 {
    font-size: 40px;
  }

  .callback-section .callback-form {
    padding: 20px 18px;
  }

  .phone-field input {
    height: 62px;
    padding-left: 58px;
  }

  .phone-field svg {
    left: 20px;
  }

  .callback-benefits {
    padding: 8px 20px;
  }

  .callback-section .callback-benefits {
    padding: 6px 18px;
  }

  .section-split-head .button {
    width: 100%;
  }

  .project-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  .reviews-grid article {
    min-height: auto;
  }

  .reviews-grid p {
    min-height: auto;
  }

  .review-stats {
    grid-template-columns: 1fr;
  }

  .project-grid article > div,
  .reviews-grid article {
    padding: 20px;
  }

  .project-cta,
  .review-stats,
  .steps-cta,
  .map-benefits {
    gap: 18px;
  }

  .work-steps {
    margin: 0;
    border-radius: 0;
  }

  .steps-bg,
  .reviews-bg,
  .contacts-decor {
    display: none;
  }

  .steps-grid {
    margin-top: 30px;
  }

  .steps-cta img {
    height: 180px;
  }

  .reviews-grid p {
    min-height: auto;
  }

  .review-stats article {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .contacts-section {
    gap: 32px;
  }

  .contact-card {
    padding: 18px;
  }

  .contact-card article {
    grid-template-columns: 44px 1fr;
    gap: 16px;
  }

  .contact-card svg {
    width: 42px;
    height: 42px;
  }

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

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

  .map-pin {
    width: min(260px, calc(100% - 32px));
    padding: 14px 18px;
  }

  .site-footer {
    padding: 42px 18px 24px;
  }

  .footer-topline,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    font-size: 34px;
  }

  .footer-topline {
    gap: 18px;
  }

  .footer-topline .button {
    width: 100%;
  }

  .footer-grid {
    gap: 26px;
    padding: 30px 0;
  }

  .catalog-store-head {
    gap: 24px;
  }

  .catalog-store-head h1 {
    font-size: 50px;
  }

  .catalog-store-layout {
    gap: 22px;
    margin-top: 28px;
  }

  .catalog-filter-panel {
    padding: 20px;
  }

  .filter-panel-head,
  .catalog-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .catalog-toolbar {
    padding: 16px;
  }

  .catalog-toolbar label {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
  }

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

  .product-page {
    padding: 22px 12px 44px;
  }

  .product-card-page {
    gap: 26px;
    padding: 14px;
    border-radius: 12px;
  }

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

  .product-thumbs {
    gap: 8px;
  }

  .product-buybox h1 {
    font-size: 44px;
  }

  .product-buybox > p {
    font-size: 16px;
  }

  .product-price-row {
    gap: 18px;
    flex-wrap: wrap;
  }

  .product-rating-row {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .product-rating-row em {
    margin-left: 0;
  }

  .product-specs,
  .product-options,
  .product-actions,
  .product-info-panel {
    grid-template-columns: 1fr;
  }

  .product-specs {
    margin-top: 20px;
    padding: 0 14px;
  }

  .product-specs div,
  .product-specs div:first-child,
  .product-specs div:last-child {
    padding: 12px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .product-specs div:last-child {
    border-bottom: 0;
  }

  .product-info-panel {
    padding: 8px 22px;
  }

  .custom-sewing-copy h2 {
    margin-top: 26px;
    font-size: 50px;
  }

  .custom-sewing-copy > p {
    font-size: 18px;
  }

  .custom-feature-grid {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .custom-feature-grid article,
  .custom-feature-grid article:nth-child(even),
  .custom-feature-grid article:nth-child(n + 3) {
    grid-template-columns: 48px 1fr;
    min-height: auto;
    padding: 18px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
    align-items: center;
  }

  .custom-feature-grid article:last-child {
    border-bottom: 0;
  }

  .custom-feature-grid svg {
    width: 46px;
    height: 46px;
  }

  .custom-actions {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 32px;
  }

  .custom-sewing-media {
    padding: 6px;
  }

  .custom-sewing-media img {
    aspect-ratio: 1.16 / .86;
  }

  .media-stat,
  .media-stat-time,
  .media-stat-love {
    position: static;
    width: 100%;
  }

  .media-stat {
    grid-template-columns: 46px 1fr;
    min-height: 84px;
    margin-top: 10px;
    padding: 14px 18px;
    gap: 14px;
    border-radius: 8px;
  }

  .media-stat svg {
    width: 42px;
    height: 42px;
  }

  .media-stat strong,
  .media-stat-love strong {
    font-size: 24px;
  }

  .media-stat span {
    margin-top: 4px;
    font-size: 15px;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(255, 250, 242, .96), rgba(255, 250, 242, .82) 48%, rgba(255, 250, 242, .3));
  }

  .hero-copy {
    width: 100%;
    padding: 42px 20px 24px;
  }

  .hero h1 {
    font-size: 44px;
    line-height: .98;
    margin-top: 0;
  }

  .hero p {
    font-size: 18px;
  }

  .button {
    width: 100%;
    min-height: 62px;
    padding: 0 20px;
    font-size: 17px;
  }

  .feature-panel {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    grid-template-columns: 1fr;
    margin: 0 16px 18px;
    padding: 18px;
  }

  .feature-panel article {
    grid-template-columns: 46px 1fr;
    gap: 16px;
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-panel article:last-child {
    border-bottom: 0;
  }

  .feature-panel svg {
    width: 44px;
    height: 44px;
  }

  .section-strip,
  .contact-strip {
    display: grid;
  }

  .catalog-layout,
  .product-detail,
  .search-form {
    grid-template-columns: 1fr;
  }

  .product-photo,
  .photo-placeholder {
    min-height: 360px;
  }
}

/* Horizontal catalog filter */
.catalog-store-layout {
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
}

.catalog-filter-panel {
  position: relative;
  top: auto;
  z-index: 8;
  max-height: none;
  padding: 13px;
  overflow: visible;
  border-radius: 12px;
}

.catalog-filter-form {
  display: flex !important;
  align-items: center;
  gap: 9px;
}

.catalog-filter-form > input[type="hidden"] {
  display: none;
}

.catalog-filter-form .filter-panel-head {
  flex: 0 0 auto;
  min-width: 130px;
  padding: 0 14px 0 4px;
  border-right: 1px solid rgba(91, 76, 58, .12);
}

.catalog-filter-form .filter-panel-head h2 {
  margin: 1px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  font-weight: 800;
}

.catalog-filter-form .filter-panel-head a {
  margin-left: 12px;
  white-space: nowrap;
}

.filter-dropdown {
  position: relative;
  flex: 1 1 auto;
  min-width: 145px;
}

.filter-dropdown summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  padding: 0 15px;
  color: #554e47;
  background: rgba(255, 255, 255, .68);
  border: 1px solid rgba(91, 76, 58, .13);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 750;
  list-style: none;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}

.filter-dropdown summary::-webkit-details-marker {
  display: none;
}

.filter-dropdown summary::after {
  content: "⌄";
  color: var(--gold-dark);
  font-size: 17px;
  line-height: 1;
  transition: transform .2s ease;
}

.filter-dropdown[open] summary {
  background: #fff;
  border-color: rgba(171, 116, 43, .45);
}

.filter-dropdown[open] summary::after {
  transform: rotate(180deg);
}

.filter-dropdown summary > span {
  display: grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  margin-left: auto;
  color: #fff;
  background: var(--gold-dark);
  border-radius: 999px;
  font-size: 11px;
}

.filter-popover {
  position: absolute;
  top: calc(100% + 9px);
  left: 0;
  z-index: 20;
  display: grid;
  gap: 5px;
  width: max-content;
  min-width: 250px;
  padding: 12px;
  background: #fffdf8;
  border: 1px solid rgba(91, 76, 58, .14);
  border-radius: 10px;
  box-shadow: 0 22px 55px rgba(61, 51, 39, .16);
}

.filter-color-popover {
  grid-template-columns: 1fr 1fr;
  min-width: 430px;
}

.filter-price-popover {
  min-width: 300px;
  padding: 16px;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 11px;
  color: #635b53;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 650;
  cursor: pointer;
}

.filter-option:hover {
  background: rgba(189, 137, 64, .08);
}

.filter-option input {
  width: 17px;
  height: 17px;
  margin: 0;
  accent-color: var(--gold-dark);
}

.catalog-filter-form .filter-submit {
  flex: 0 0 auto;
  width: auto;
  min-height: 48px;
  margin: 0;
  padding: 0 22px;
}

.catalog-store .catalog-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px 18px;
}

@media (max-width: 1380px) {
  .catalog-store .catalog-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .catalog-filter-form .filter-panel-head {
    display: none;
  }
}

@media (max-width: 980px) {
  .catalog-filter-form {
    flex-wrap: wrap;
  }

  .filter-dropdown {
    flex: 1 1 calc(50% - 8px);
  }

  .catalog-filter-form .filter-submit {
    flex: 1 1 100%;
  }

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

@media (max-width: 760px) {
  .catalog-filter-panel {
    display: none;
    padding: 10px;
  }

  .catalog-filter-panel.is-open {
    display: block;
  }

  .catalog-filter-form {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
  }

  .filter-dropdown {
    min-width: 0;
  }

  .filter-dropdown summary {
    min-height: 46px;
    padding: 0 11px;
    font-size: 12px;
  }

  .filter-popover,
  .filter-color-popover,
  .filter-price-popover {
    position: static;
    grid-template-columns: 1fr;
    width: auto;
    min-width: 0;
    margin-top: 7px;
    box-shadow: none;
  }

  .filter-dropdown[open],
  .catalog-filter-form .filter-submit {
    grid-column: 1 / -1;
  }
}

/* Left catalog filter: compact accordion, sticky while browsing. */
.catalog-store-layout {
  grid-template-columns: 292px minmax(0, 1fr);
  gap: clamp(26px, 3vw, 44px);
  align-items: start;
}

.catalog-filter-panel {
  position: sticky;
  top: 92px;
  z-index: 8;
  max-height: calc(100vh - 112px);
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  background: rgba(255, 253, 248, .9);
}

.catalog-filter-panel .catalog-filter-form {
  display: block !important;
}

.catalog-filter-form .filter-panel-head {
  display: flex;
  min-width: 0;
  padding: 21px 20px 17px;
  border-right: 0;
}

.catalog-filter-form .filter-panel-head h2 {
  margin-top: 3px;
  font-size: 25px;
}

.catalog-filter-form .filter-panel-head a {
  margin-left: auto;
}

.catalog-filter-panel .filter-dropdown {
  position: relative;
  min-width: 0;
  margin: 0;
  border-top: 1px solid rgba(91, 76, 58, .11);
}

.catalog-filter-panel .filter-dropdown summary {
  min-height: 58px;
  padding: 0 20px;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 14px;
  font-weight: 750;
}

.catalog-filter-panel .filter-dropdown[open] summary {
  color: #342f2a;
  background: rgba(189, 137, 64, .065);
  border-color: transparent;
}

.catalog-filter-panel .filter-popover,
.catalog-filter-panel .filter-color-popover,
.catalog-filter-panel .filter-price-popover {
  position: static;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  width: auto;
  min-width: 0;
  margin: 0;
  padding: 4px 14px 15px;
  background: rgba(189, 137, 64, .035);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.catalog-filter-panel .filter-option {
  min-height: 40px;
  padding: 0 8px;
  font-size: 13px;
}

.catalog-filter-panel .price-range {
  gap: 7px;
}

.catalog-filter-panel .price-range input {
  background: #fff;
}

.catalog-filter-panel .filter-submit {
  width: calc(100% - 32px);
  min-height: 52px;
  margin: 16px;
  padding: 0 12px;
}

.catalog-store .catalog-product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px 18px;
}

@media (max-width: 1180px) {
  .catalog-store-layout {
    grid-template-columns: 258px minmax(0, 1fr);
    gap: 24px;
  }

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

@media (max-width: 900px) and (min-width: 761px) {
  .catalog-store-layout {
    grid-template-columns: 240px minmax(0, 1fr);
  }

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

@media (max-width: 760px) {
  .catalog-store-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .catalog-filter-panel {
    position: relative;
    top: auto;
    display: none;
    max-height: none;
  }

  .catalog-filter-panel.is-open {
    display: block;
  }

  .catalog-filter-panel .catalog-filter-form {
    display: block !important;
  }

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

/* Adaptive QA pass: compact commerce-first layouts across phones and tablets. */
@media (min-width: 901px) and (max-width: 1180px) {
  .product-card-redesign {
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    gap: 30px;
    padding: 24px;
  }

  .product-card-redesign .product-main-img,
  .product-main-wrap .product-image-placeholder {
    min-height: 0;
    aspect-ratio: .9 / 1;
  }

  .product-thumbs-redesign {
    gap: 9px;
  }

  .product-buybox-redesign h1 {
    margin-top: 18px;
    font-size: clamp(27px, 3vw, 36px);
  }

  .product-title-row {
    gap: 12px;
  }

  .product-detail-favorite {
    width: 44px;
    margin-top: 16px;
    padding: 0;
    justify-content: center;
  }

  .product-detail-favorite span {
    display: none;
  }

  .product-choice-form {
    gap: 17px;
  }

  .color-swatches,
  .size-options {
    gap: 8px;
  }

  .color-swatch {
    width: 38px;
    height: 38px;
  }

  .color-swatch span {
    width: 26px;
    height: 26px;
  }

  .size-options a,
  .size-options span {
    min-width: 92px;
    height: 38px;
    padding-inline: 12px;
    font-size: 12px;
  }

  .product-price-redesign {
    margin-top: 20px;
  }

  .product-actions-redesign .button {
    min-height: 54px;
    padding-inline: 14px;
    font-size: 14px;
  }

  .product-service-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .product-service-row article,
  .product-service-row article:first-child,
  .product-service-row article:last-child {
    padding: 0;
    border-right: 0;
  }
}

@media (max-width: 900px) {
  .catalog-store-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .catalog-filter-panel {
    position: relative;
    top: auto;
    display: none;
    max-height: none;
  }

  .catalog-filter-panel.is-open {
    display: block;
  }

  .catalog-filter-toggle {
    display: flex;
  }

  .catalog-store .catalog-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 16px;
  }
}

.catalog-seo-text {
  width: min(1180px, 100%);
  margin: 54px auto 0;
  padding: 34px clamp(22px, 4vw, 46px);
  color: #514b44;
  background: rgba(255, 255, 255, .48);
  border: 1px solid rgba(91, 76, 58, .12);
  border-radius: 10px;
}

.catalog-seo-text h2 {
  max-width: 760px;
  margin: 0 0 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 3vw, 46px);
  font-weight: 600;
  line-height: 1;
}

.catalog-seo-text p {
  max-width: 980px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.catalog-seo-text p + p {
  margin-top: 10px;
}

.catalog-seo-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.catalog-seo-points span {
  padding: 8px 12px;
  color: var(--gold-dark);
  background: rgba(255, 247, 236, .72);
  border: 1px solid rgba(189, 137, 64, .22);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 760px) {
  .catalog-seo-text {
    margin-top: 34px;
    padding: 24px 18px;
  }

  .catalog-seo-text p {
    font-size: 15px;
    line-height: 1.65;
  }
}

@media (min-width: 761px) and (max-width: 900px) {
  .product-page-redesign {
    padding: 30px 24px 54px;
  }

  .product-card-redesign {
    gap: 26px;
    padding: 24px;
  }

  .product-card-redesign .product-main-img,
  .product-main-wrap .product-image-placeholder {
    min-height: 0;
    height: min(52vw, 440px);
    aspect-ratio: auto;
  }

  .product-thumbs-redesign img {
    max-height: 86px;
  }

  .product-buybox-redesign h1 {
    margin-top: 18px;
    font-size: 34px;
  }
}

@media (max-width: 760px) {
  .site-header {
    gap: 6px 10px;
    padding: 8px 12px 7px;
  }

  .brand {
    font-size: clamp(27px, 8vw, 31px);
  }

  .brand-mark::before,
  .brand-mark::after {
    width: 84px;
  }

  .header-actions {
    gap: 4px;
  }

  .icon-link {
    width: 27px;
    height: 27px;
  }

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

  .main-nav {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-start;
    gap: 6px;
    overflow-x: auto;
    padding: 3px 0 1px;
    scrollbar-width: none;
    white-space: nowrap;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .main-nav a {
    flex: 0 0 auto;
    padding: 7px 11px;
    background: rgba(255, 255, 255, .52);
    border: 1px solid rgba(91, 76, 58, .12);
    border-radius: 999px;
    font-size: 12px;
  }

  .main-nav a::after {
    display: none;
  }

  .product-page-redesign {
    padding: 10px 8px 36px;
  }

  .product-card-redesign {
    gap: 18px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .product-gallery-redesign {
    gap: 10px;
  }

  .product-main-wrap,
  .product-card-redesign .product-main-img {
    border-radius: 10px;
  }

  .product-card-redesign .product-main-img,
  .product-main-wrap .product-image-placeholder {
    min-height: 0;
    height: clamp(252px, 82vw, 342px);
    aspect-ratio: auto;
  }

  .gallery-arrow {
    width: 38px;
    height: 38px;
  }

  .gallery-arrow-prev {
    left: 10px;
  }

  .gallery-arrow-next {
    right: 10px;
  }

  .product-thumbs-redesign {
    gap: 7px;
  }

  .product-thumbs-redesign img {
    height: 48px;
    aspect-ratio: auto;
  }

  .product-buybox-redesign {
    padding: 0 8px;
  }

  .product-breadcrumbs {
    gap: 7px;
    font-size: 11px;
  }

  .product-breadcrumbs span:last-child,
  .product-breadcrumbs span:nth-last-child(2) {
    display: none;
  }

  .product-buybox-redesign h1 {
    margin: 16px 0 9px;
    font-size: clamp(27px, 8.2vw, 34px);
    line-height: 1.08;
  }

  .product-buybox-redesign > p {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .product-detail-favorite {
    margin-top: 14px;
  }

  .product-meta-row {
    gap: 8px;
    margin-top: 14px;
    font-size: 12px;
  }

  .product-divider {
    margin: 16px 0 18px;
  }

  .product-choice-form {
    gap: 18px;
  }

  .color-swatches,
  .size-options {
    gap: 8px;
  }

  .color-swatch {
    width: 38px;
    height: 38px;
  }

  .color-swatch span {
    width: 26px;
    height: 26px;
  }

  .size-options a,
  .size-options span {
    min-width: 0;
    height: 40px;
    padding-inline: 13px;
    font-size: 12px;
  }

  .product-price-redesign {
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-top: 20px;
  }

  .product-price-redesign strong {
    font-size: 29px;
  }

  .product-price-redesign span {
    font-size: 18px;
  }

  .product-saving-note {
    margin-bottom: 12px;
  }

  .product-actions-redesign {
    gap: 9px;
    margin-top: 14px;
  }

  .product-actions-redesign .button {
    min-height: 54px;
  }

  .product-service-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .product-service-row article {
    grid-template-columns: 20px 1fr;
    gap: 6px;
  }

  .product-service-row h2 {
    font-size: 10px;
  }

  .product-service-row p {
    display: none;
  }

  .product-info-grid {
    gap: 10px;
    margin-top: 4px;
  }

  .product-info-grid > * {
    padding: 22px 18px;
  }

  .catalog-store {
    padding-top: 18px;
  }

  .catalog-store-head {
    min-height: 0;
    gap: 18px;
    padding: 22px 20px;
    background-position: 60% center;
    border-radius: 14px;
  }

  .catalog-breadcrumbs {
    margin-bottom: 14px;
    font-size: 11px;
  }

  .catalog-store-head .catalog-kicker {
    margin-bottom: 7px;
  }

  .catalog-store-head h1 {
    font-size: clamp(36px, 12vw, 44px);
    line-height: 1.02;
  }

  .catalog-store-head .catalog-intro > p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .catalog-hero-benefits {
    flex-wrap: nowrap;
    margin-top: 16px;
    overflow-x: auto;
  }

  .catalog-hero-benefits span {
    flex: 0 0 auto;
    padding: 7px 10px;
    font-size: 10px;
  }

  .catalog-store-head .catalog-search {
    padding: 8px;
  }

  .catalog-store-head .catalog-search > label {
    margin-bottom: 6px;
    font-size: 10px;
  }

  .catalog-search input {
    height: 48px;
    padding-left: 42px;
    font-size: 13px;
  }

  .catalog-search .button {
    min-width: 72px;
    padding-inline: 12px;
    font-size: 13px;
  }

  .catalog-category-strip {
    padding: 16px 0 20px;
  }

  .catalog-category-strip a {
    padding: 9px 14px;
    font-size: 12px;
  }

  .catalog-toolbar {
    gap: 10px;
  }

  .catalog-store .catalog-product-grid {
    gap: 24px 12px;
  }
}

@media (max-width: 350px) {
  .site-header {
    padding-inline: 9px;
  }

  .brand {
    font-size: 26px;
  }

  .header-actions {
    gap: 1px;
  }

  .catalog-store .catalog-product-card h2 {
    font-size: 14px;
  }

  .catalog-store .catalog-product-card .home-product-price strong {
    font-size: 19px;
  }
}

/* Catalog hero and visual filter refinements. */
.catalog-store-head {
  position: relative;
  isolation: isolate;
  min-height: 410px;
  padding: clamp(34px, 4vw, 58px);
  overflow: hidden;
  color: #fff;
  background-image:
    linear-gradient(90deg, rgba(35, 30, 25, .84) 0%, rgba(35, 30, 25, .68) 40%, rgba(35, 30, 25, .18) 72%, rgba(35, 30, 25, .08) 100%),
    var(--catalog-hero-image);
  background-position: center;
  background-size: cover;
  border: 0;
  border-radius: 18px;
  box-shadow: 0 24px 64px rgba(61, 51, 39, .14);
}

.catalog-store-head::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(24, 20, 17, .22));
  content: "";
}

.catalog-intro {
  max-width: 720px;
}

.catalog-store-head h1 {
  max-width: 690px;
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 750;
  line-height: 1.03;
  letter-spacing: -.045em;
}

.catalog-store-head .catalog-breadcrumbs,
.catalog-store-head .catalog-breadcrumbs a,
.catalog-store-head .catalog-intro > p {
  color: rgba(255, 255, 255, .78);
}

.catalog-store-head .catalog-kicker {
  color: #e6c48e;
}

.catalog-store-head .catalog-intro > p {
  max-width: 650px;
  font-size: 17px;
  line-height: 1.55;
}

.catalog-hero-benefits {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.catalog-hero-benefits span {
  padding: 8px 12px;
  color: rgba(255, 255, 255, .9);
  background: rgba(255, 255, 255, .11);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 700;
}

.catalog-store-head .catalog-search {
  align-self: end;
  padding: 14px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 12px;
  backdrop-filter: blur(12px);
}

.catalog-store-head .catalog-search > label {
  color: rgba(255, 255, 255, .82);
}

.catalog-store-head .catalog-search input {
  background: rgba(255, 255, 255, .95);
  border-color: transparent;
}

.catalog-category-strip {
  padding-top: 26px;
}

.filter-option small,
.filter-color-option small {
  color: #9a9085;
  font-size: 10px;
  font-weight: 700;
}

.catalog-filter-panel .filter-color-popover {
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 12px;
}

.filter-color-option {
  position: relative;
  display: grid;
  overflow: hidden;
  color: #4d463f;
  background: #fff;
  border: 1px solid rgba(91, 76, 58, .12);
  border-radius: 8px;
  cursor: pointer;
}

.filter-color-option input {
  position: absolute;
  z-index: 2;
  top: 7px;
  right: 7px;
  width: 17px;
  height: 17px;
  margin: 0;
  accent-color: var(--gold-dark);
}

.filter-color-option img {
  display: block;
  width: 100%;
  height: 70px;
  object-fit: cover;
}

.filter-color-option > span {
  display: grid;
  gap: 2px;
  min-height: 48px;
  padding: 8px;
  font-size: 11px;
  font-weight: 750;
  line-height: 1.25;
}

.filter-color-option:has(input:checked) {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 1px var(--gold-dark);
}

.filter-size-popover > p {
  margin: 8px 2px 5px;
  color: #777067;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .catalog-store-head {
    min-height: 520px;
    padding: 28px 22px;
    background-position: 62% center;
  }

  .catalog-store-head h1 {
    font-size: 42px;
  }

  .catalog-store-head .catalog-search {
    align-self: stretch;
  }
}

@media (max-width: 460px) {
  .catalog-filter-form {
    grid-template-columns: 1fr;
  }

  .filter-dropdown,
  .filter-dropdown[open],
  .catalog-filter-form .filter-submit {
    grid-column: 1;
  }
}

/* Final work-steps layout override */
.work-steps {
  isolation: isolate;
  margin: 18px 18px 0;
  padding: 70px clamp(54px, 5.7vw, 96px) 38px;
  background:
    linear-gradient(90deg, rgba(255, 250, 242, .99) 0%, rgba(255, 250, 242, .94) 42%, rgba(255, 250, 242, .66) 63%, rgba(255, 250, 242, .42) 100%),
    var(--paper);
  border-radius: 16px;
}

.work-steps .steps-bg {
  z-index: -1;
  top: 0;
  right: 0;
  width: 53%;
  height: 330px;
  opacity: .72;
  border-radius: 0 16px 0 0;
  object-fit: cover;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 36%),
    linear-gradient(180deg, #000 0%, #000 68%, transparent 100%);
  mask-composite: intersect;
}

.work-steps h2 {
  max-width: 650px;
  margin: 0 0 16px;
  font-size: clamp(56px, 4.7vw, 76px);
  line-height: .98;
}

.work-steps .steps-lead {
  max-width: 640px;
  font-size: 18px;
  line-height: 1.48;
}

.work-steps .steps-line {
  position: relative;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 120px 5.5% 26px;
}

.work-steps .steps-line::before {
  top: 30px;
  left: 7%;
  right: 7%;
  background: linear-gradient(90deg, rgba(189, 137, 64, .16), rgba(189, 137, 64, .72), rgba(189, 137, 64, .16));
}

.work-steps .steps-line span {
  width: 60px;
  height: 60px;
  background: rgba(255, 250, 242, .92);
  font-size: 17px;
}

.work-steps .steps-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.work-steps .steps-grid article {
  min-height: 154px;
  padding: 0 24px;
}

.work-steps .steps-grid svg {
  width: 44px;
  height: 44px;
}

.work-steps .steps-grid h3 {
  margin: 16px 0 10px;
  font-size: 23px;
}

.work-steps .steps-grid p {
  max-width: 220px;
  font-size: 14px;
  line-height: 1.42;
}

.work-steps .steps-cta {
  grid-template-columns: 340px repeat(3, minmax(0, 1fr)) 260px;
  margin-top: 34px;
  overflow: hidden;
}

.work-steps .steps-cta img {
  height: 140px;
}

.work-steps .steps-cta > div {
  min-height: 86px;
  padding: 0 22px;
}

.work-steps .steps-cta > div svg {
  width: 42px;
  height: 42px;
}

.work-steps .steps-cta .button {
  justify-self: end;
  width: min(230px, 100%);
  min-height: 56px;
}

@media (max-width: 1180px) {
  .work-steps {
    margin: 12px;
    padding: 48px 28px 32px;
  }

  .work-steps .steps-bg {
    width: 62%;
    height: 260px;
    opacity: .28;
  }

  .work-steps h2 {
    font-size: 52px;
  }

  .work-steps .steps-line {
    display: none;
  }

  .work-steps .steps-grid {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .work-steps .steps-grid article {
    justify-items: start;
    min-height: auto;
    padding: 18px 0;
    text-align: left;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .work-steps .steps-cta {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .work-steps .steps-cta img {
    height: 190px;
    border-radius: 8px;
  }

  .work-steps .steps-cta > div {
    min-height: auto;
    padding: 0 0 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .work-steps .steps-cta .button {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .work-steps {
    margin: 0;
    padding: 46px 18px 30px;
    border-radius: 0;
  }

  .work-steps .steps-bg {
    display: none;
  }

  .work-steps h2 {
    font-size: 44px;
  }
}

/* Product detail redesign */
.product-page-redesign {
  padding: 56px clamp(18px, 5vw, 86px);
}

.product-card-redesign {
  grid-template-columns: minmax(520px, .98fr) minmax(480px, 1.02fr);
  gap: 54px;
  max-width: 1420px;
  padding: 32px;
  background: rgba(255, 255, 255, .58);
  border: 1px solid rgba(91, 76, 58, .12);
  border-radius: 14px;
  box-shadow: 0 22px 72px rgba(72, 58, 42, .07);
}

.product-gallery-redesign {
  gap: 26px;
}

.product-main-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.product-card-redesign .product-main-img {
  aspect-ratio: 1.06 / 1;
  max-height: none;
  min-height: 560px;
  object-fit: cover;
}

.product-main-wrap .product-image-placeholder {
  aspect-ratio: 1.06 / 1;
  min-height: 560px;
  border-radius: 12px;
}

.product-thumb-placeholder {
  display: grid;
  place-items: center;
  min-height: 92px;
  color: rgba(117, 111, 102, .78);
  border: 1px dashed rgba(189, 137, 64, .35);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
}

.product-sale-label {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 16px;
  color: var(--gold-dark);
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(189, 137, 64, .34);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(72, 58, 42, .09);
  font-size: 14px;
  font-weight: 700;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--ink);
  background: rgba(255, 255, 255, .92);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(72, 58, 42, .14);
  transform: translateY(-50%);
  cursor: pointer;
}

.gallery-arrow svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.gallery-arrow-prev {
  left: 18px;
}

.gallery-arrow-next {
  right: 18px;
}

.product-thumbs-redesign {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.product-thumbs-redesign img {
  aspect-ratio: 1 / .88;
  border: 2px solid transparent;
  border-radius: 8px;
}

.product-thumbs-redesign img.is-active {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(189, 137, 64, .14);
}

.product-buybox-redesign {
  display: grid;
  align-content: start;
  padding: 8px 0 0;
}

.product-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}

.product-breadcrumbs a {
  color: var(--muted);
}

.product-buybox-redesign h1 {
  margin: 28px 0 14px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(32px, 2.9vw, 44px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.product-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 22px;
}

.product-title-row h1 {
  min-width: 0;
}

.product-detail-favorite {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  margin-top: 27px;
  padding: 0 14px;
  color: var(--muted);
  background: rgba(255, 255, 255, .7);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.product-detail-favorite svg {
  width: 20px;
  height: 20px;
  fill: transparent;
  stroke: currentColor;
  stroke-width: 1.8;
}

.product-detail-favorite.is-active {
  color: #9d3f31;
  background: #fff6f3;
  border-color: rgba(157, 63, 49, .25);
}

.product-detail-favorite.is-active svg {
  fill: currentColor;
}

/* Persistent favorites and cart */
.shop-drawer {
  width: min(520px, 100%);
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0 0 0 auto;
  padding: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
}

.shop-drawer[open] {
  display: block;
  animation: drawer-in .24s ease-out;
}

.shop-drawer::backdrop {
  background: rgba(37, 31, 25, .42);
  backdrop-filter: blur(3px);
}

.shop-drawer-panel {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  height: 100%;
  background: #fffaf3;
  box-shadow: -24px 0 70px rgba(48, 38, 28, .18);
}

.shop-drawer-panel > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 28px 22px;
  border-bottom: 1px solid var(--line);
}

.shop-drawer-panel > header h2 {
  margin: 2px 0 0;
  font: 800 30px/1.15 "Manrope", sans-serif;
}

.drawer-kicker {
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.shop-drawer-panel > header button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  font-size: 27px;
}

.drawer-items {
  overflow-y: auto;
  padding: 8px 28px;
}

.drawer-product {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.drawer-product-media {
  display: grid;
  place-items: center;
  min-height: 124px;
  overflow: hidden;
  color: var(--gold-dark);
  background: var(--warm);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
}

.drawer-product-media img {
  width: 100%;
  height: 124px;
  object-fit: cover;
}

.drawer-product-body {
  display: grid;
  align-content: start;
  min-width: 0;
}

.drawer-product-title {
  overflow: hidden;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  text-overflow: ellipsis;
}

.drawer-product-body p {
  margin: 7px 0 10px;
  color: var(--muted);
  font-size: 12px;
}

.drawer-product-body > strong {
  font-size: 18px;
}

.drawer-product-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
}

.drawer-quantity {
  display: grid;
  grid-template-columns: repeat(3, 34px);
  height: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
}

.drawer-quantity button,
.drawer-quantity span {
  display: grid;
  place-items: center;
  padding: 0;
  background: #fff;
  border: 0;
}

.drawer-quantity button {
  cursor: pointer;
  font-size: 18px;
}

.drawer-remove,
.drawer-add-button {
  padding: 4px 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.drawer-add-button {
  color: var(--gold-dark);
}

.drawer-empty {
  align-self: center;
  max-width: 380px;
  margin: auto;
  padding: 42px 28px;
  text-align: center;
}

.drawer-empty[hidden] {
  display: none;
}

.drawer-empty > span {
  display: block;
  color: var(--gold);
  font-size: 52px;
}

.drawer-empty h3 {
  margin: 14px 0 8px;
  font-size: 22px;
}

.drawer-empty p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 14px;
}

.cart-summary {
  padding: 22px 28px 26px;
  background: #fff;
  border-top: 1px solid var(--line);
}

.cart-summary[hidden] {
  display: none;
}

.cart-summary > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
}

.cart-summary strong {
  font-size: 26px;
}

.cart-summary p {
  margin: 7px 0 16px;
  color: var(--muted);
  font-size: 12px;
}

.cart-summary .button {
  width: 100%;
  min-height: 56px;
}

@keyframes drawer-in {
  from { transform: translateX(34px); opacity: .6; }
  to { transform: translateX(0); opacity: 1; }
}

.product-buybox-redesign > p {
  max-width: 620px;
  font-size: 16px;
  line-height: 1.55;
}

.product-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 14px;
}

.product-rating-compact {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-rating-compact span {
  color: var(--gold-dark);
  font-size: 20px;
}

.product-rating-compact b {
  color: var(--ink);
}

.product-rating-compact em {
  font-style: normal;
}

.product-divider {
  height: 1px;
  margin: 24px 0 26px;
  background: var(--line);
}

.product-choice-form {
  display: grid;
  gap: 22px;
}

.product-choice-form fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.product-choice-form legend {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}

.color-swatches,
.size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.color-picker legend strong {
  text-transform: lowercase;
}

.color-swatch {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: #fff;
  border: 1px solid rgba(91, 76, 58, .13);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(59, 45, 30, .05);
  cursor: pointer;
  text-decoration: none;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.color-swatch span {
  width: 30px;
  height: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .36), transparent 54%),
    var(--swatch-color, #f7f3e9);
  border: 1px solid rgba(91, 76, 58, .12);
  border-radius: inherit;
  box-shadow: inset 0 1px 3px rgba(255, 255, 255, .68);
}

.color-swatch:hover {
  transform: translateY(-1px);
  border-color: rgba(189, 137, 64, .45);
  box-shadow: 0 12px 28px rgba(59, 45, 30, .08);
}

.color-swatch.is-active {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(189, 137, 64, .13), 0 12px 28px rgba(59, 45, 30, .08);
}

.color-swatch.is-active::after {
  content: "";
  position: absolute;
  right: 2px;
  bottom: 2px;
  width: 11px;
  height: 11px;
  background: var(--gold);
  border: 2px solid #fffaf2;
  border-radius: 999px;
}

.size-options a,
.size-options span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  height: 42px;
  padding: 0 20px;
  color: #6f675e;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(91, 76, 58, .12);
  border-radius: 7px;
  font: 700 14px/1 "Manrope", sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition: border-color .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.size-options a:hover {
  transform: translateY(-1px);
  color: var(--ink);
  border-color: rgba(189, 137, 64, .38);
  box-shadow: 0 10px 24px rgba(59, 45, 30, .06);
}

.size-options a.is-active {
  color: var(--ink);
  border-color: var(--gold);
  background: #fffaf2;
  box-shadow: inset 0 0 0 1px rgba(189, 137, 64, .14);
}

.color-swatches.is-collapsed .is-extra,
.size-options.is-collapsed .is-extra {
  display: none;
}

.size-options span {
  cursor: default;
}

.color-toggle,
.size-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-top: 12px;
  padding: 0 18px;
  color: #a66f25;
  background: rgba(255, 255, 255, .62);
  border: 1px solid rgba(189, 137, 64, .34);
  border-radius: 7px;
  font: 700 13px/1 "Manrope", sans-serif;
  cursor: pointer;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.color-toggle:hover,
.size-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(189, 137, 64, .58);
  box-shadow: 0 10px 24px rgba(59, 45, 30, .06);
}

.size-picker p {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.size-picker p span {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(91, 76, 58, .3);
  border-radius: 999px;
  font-size: 12px;
}

.quantity-stepper {
  display: inline-grid;
  grid-template-columns: 42px 46px 42px;
  align-items: center;
  height: 42px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(91, 76, 58, .14);
  border-radius: 8px;
}

.quantity-stepper button {
  height: 100%;
  padding: 0;
  background: transparent;
  border: 0;
  color: var(--muted);
  cursor: pointer;
  font-size: 22px;
}

.quantity-stepper button:disabled {
  opacity: .35;
  cursor: not-allowed;
}

.quantity-stepper span {
  text-align: center;
  font-weight: 600;
}

.stock-note {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.product-price-redesign {
  gap: 20px;
  margin-top: 28px;
}

.product-price-redesign strong {
  font-size: 32px;
}

.product-price-redesign span {
  font-size: 22px;
}

.product-price-redesign em {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 14px;
  color: var(--white);
  background: var(--gold);
  border-radius: 999px;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
}

.product-actions-redesign {
  grid-template-columns: 1.24fr 1fr;
  gap: 14px;
  margin-top: 24px;
}

.product-actions-redesign .button {
  min-height: 62px;
  font-size: 16px;
}

.product-actions-redesign .button svg {
  width: 19px;
  height: 19px;
}

.product-service-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 22px;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
}

.product-service-row article {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 9px;
  align-items: center;
  min-width: 0;
  padding: 0 12px;
  border-right: 1px solid var(--line);
}

.product-service-row article:first-child {
  padding-left: 0;
}

.product-service-row article:last-child {
  padding-right: 0;
  border-right: 0;
}

.product-service-row svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.product-service-row h2 {
  margin: 0 0 2px;
  font-size: 12px;
  line-height: 1.25;
}

.product-service-row p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.3;
}

.product-description-bottom {
  grid-column: 1 / -1;
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.product-description-bottom h2 {
  margin: 0 0 10px;
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 800;
}

.product-description-bottom p {
  max-width: 860px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

/* Catalog 2026: editorial, data-driven storefront */
.catalog-store {
  padding-top: 42px;
}

.catalog-store-head {
  align-items: end;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(91, 76, 58, .15);
}

.catalog-breadcrumbs {
  display: flex;
  gap: 9px;
  margin-bottom: 24px;
  color: #8b8277;
  font-size: 13px;
}

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

.catalog-kicker,
.filter-panel-head > div > span,
.catalog-empty > span,
.product-section-kicker {
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.catalog-store-head .catalog-kicker {
  display: block;
  margin-bottom: 10px;
}

.catalog-store-head h1 {
  max-width: 760px;
  font-size: clamp(50px, 5.2vw, 76px);
  letter-spacing: -.025em;
}

.catalog-intro > p {
  max-width: 690px;
}

.catalog-search {
  width: min(480px, 100%);
}

.catalog-search > label {
  display: block;
  margin-bottom: 9px;
  color: #746b61;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.catalog-search > div {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
}

.catalog-search svg {
  position: absolute;
  left: 17px;
  top: 50%;
  width: 20px;
  transform: translateY(-50%);
  fill: none;
  stroke: #867b6f;
  stroke-width: 1.7;
}

.catalog-search input {
  min-width: 0;
  padding-left: 48px;
  border-radius: 8px 0 0 8px;
}

.catalog-search .button {
  border-radius: 0 8px 8px 0;
}

.catalog-category-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 22px 0 30px;
}

.catalog-category-strip a {
  flex: 0 0 auto;
  padding: 11px 18px;
  color: #675f55;
  background: rgba(255, 255, 255, .48);
  border: 1px solid rgba(91, 76, 58, .13);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: .2s ease;
}

.catalog-category-strip a:hover,
.catalog-category-strip a.is-active {
  color: #fffaf2;
  background: #3e3a34;
  border-color: #3e3a34;
}

.catalog-store-layout {
  grid-template-columns: 278px minmax(0, 1fr);
  gap: clamp(26px, 3vw, 46px);
}

.catalog-filter-panel {
  top: 92px;
  padding: 0;
  overflow: hidden auto;
  background: rgba(255, 253, 248, .82);
  border-color: rgba(91, 76, 58, .14);
  border-radius: 12px;
  box-shadow: 0 18px 48px rgba(61, 51, 39, .055);
}

.catalog-filter-panel form {
  display: block;
}

.filter-panel-head {
  padding: 22px 22px 18px;
}

.filter-panel-head h2 {
  margin-top: 2px;
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 600;
}

.filter-panel-head a {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 700;
}

.filter-group {
  min-width: 0;
  margin: 0;
  padding: 20px 22px;
  border: 0;
  border-top: 1px solid rgba(91, 76, 58, .11);
}

.filter-group legend {
  float: left;
  width: 100%;
  margin-bottom: 15px;
  color: #423d37;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.filter-group legend + * {
  clear: both;
}

.filter-group > label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 10px 0;
  color: #696158;
  font-size: 14px;
  line-height: 1.35;
  cursor: pointer;
}

.filter-group input[type="checkbox"] {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: #a8732d;
}

.price-range {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.price-range label {
  position: relative;
}

.price-range label span {
  position: absolute;
  left: 11px;
  top: 50%;
  color: #9a9085;
  font-size: 12px;
  transform: translateY(-50%);
}

.price-range input {
  height: 44px;
  padding: 0 8px 0 30px;
  font-size: 13px;
}

.filter-submit {
  width: calc(100% - 44px);
  min-height: 50px;
  margin: 4px 22px 22px;
}

.catalog-toolbar {
  min-height: 62px;
  padding: 0 4px 12px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(91, 76, 58, .13);
  border-radius: 0;
}

.catalog-toolbar p strong {
  color: #3f3a34;
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
}

.catalog-toolbar form,
.catalog-toolbar label {
  display: flex;
  align-items: center;
  gap: 12px;
}

.catalog-toolbar select {
  width: auto;
  min-width: 190px;
  background-color: rgba(255, 253, 248, .8);
}

.catalog-store .catalog-product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px 18px;
}

.catalog-store .catalog-product-card {
  padding: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.catalog-store .catalog-product-card:hover {
  box-shadow: none;
}

.catalog-store .catalog-product-card figure {
  overflow: hidden;
  border-radius: 10px;
}

.catalog-store .catalog-product-card img {
  aspect-ratio: .88 / 1;
  transition: transform .55s cubic-bezier(.22, .61, .36, 1);
}

.catalog-store .catalog-product-card:hover img {
  transform: scale(1.035);
}

.product-card-labels {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.product-card-labels span {
  padding: 9px 13px;
  color: #fff;
  background: rgba(56, 51, 45, .88);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
}

.product-card-labels .is-sale {
  background: #a74532;
}

.product-card-labels .is-stock {
  color: #46563c;
  background: rgba(245, 246, 237, .92);
}

.catalog-store .catalog-product-card .home-product-body {
  gap: 8px;
  padding: 18px 3px 2px;
}

.product-card-color {
  overflow: hidden;
  color: #968b7f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.catalog-store .catalog-product-card h2 {
  display: -webkit-box;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  font-family: "Manrope", sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -.025em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.catalog-store .catalog-product-card p {
  min-height: 0;
  font-size: 15px;
  line-height: 1.55;
}

.catalog-store .catalog-product-card .home-product-price strong {
  font-size: 26px;
  line-height: 1.15;
}

.catalog-store .catalog-product-card .home-product-price span {
  font-size: 17px;
}

.product-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 13px;
  border-top: 1px solid rgba(91, 76, 58, .11);
  color: #81776c;
  font-size: 13px;
  font-weight: 700;
}

.product-card-foot .details-link {
  min-height: 0;
  padding: 0;
  color: var(--gold-dark);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 15px;
  font-weight: 800;
  transition: color .2s ease, gap .2s ease;
}

.catalog-product-card:hover .product-card-foot .details-link {
  gap: 13px;
  color: #8d5b1e;
  background: transparent;
  border-color: transparent;
}

.product-favorite {
  position: absolute;
  z-index: 3;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: #443e38;
  background: rgba(255, 253, 248, .92);
  border: 1px solid rgba(91, 76, 58, .13);
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(55, 45, 35, .12);
  cursor: pointer;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.product-favorite:hover {
  color: #a74532;
  transform: scale(1.06);
}

.product-favorite svg {
  width: 21px;
  height: 21px;
  fill: transparent;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: fill .2s ease;
}

.product-favorite.is-active {
  color: #fff;
  background: #a74532;
}

.product-favorite.is-active svg {
  fill: currentColor;
}

.catalog-empty .button {
  display: inline-flex;
  margin-top: 24px;
  text-decoration: none;
}

/* Product detail information */
.product-saving-note {
  margin: -4px 0 18px;
  color: #8b5b36;
  font-size: 13px;
  font-weight: 600;
}

.product-info-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.1fr .9fr .72fr;
  gap: 18px;
  margin-top: 18px;
}

.product-info-grid > * {
  min-width: 0;
  padding: clamp(26px, 3vw, 40px);
  background: rgba(255, 255, 255, .56);
  border: 1px solid rgba(91, 76, 58, .12);
  border-radius: 12px;
}

.product-info-grid h2 {
  margin: 8px 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(30px, 2.7vw, 40px);
  font-weight: 600;
  line-height: 1;
}

.product-info-grid .product-description-bottom {
  margin: 0;
}

.product-info-grid .product-description-bottom p,
.product-help-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.product-specs-card dl,
.product-specs-card dl div {
  margin: 0;
}

.product-specs-card dl div {
  display: grid;
  grid-template-columns: minmax(110px, .8fr) 1.2fr;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(91, 76, 58, .1);
  font-size: 13px;
}

.product-specs-card dl div:last-child {
  border-bottom: 0;
}

.product-specs-card dt {
  color: #8f8579;
}

.product-specs-card dd {
  margin: 0;
  color: #4a443e;
  font-weight: 700;
}

.product-help-card {
  color: #fffaf2;
  background: #423c35;
}

.product-help-card > span {
  color: #d7b77e;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.product-help-card p {
  color: rgba(255, 250, 242, .7);
}

.product-help-card .button {
  width: 100%;
  margin-top: 26px;
}

@media (max-width: 1180px) {
  .catalog-store .catalog-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .product-help-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .catalog-store {
    padding-top: 24px;
  }

  .catalog-store-head {
    align-items: stretch;
  }

  .catalog-breadcrumbs {
    margin-bottom: 16px;
  }

  .catalog-store-head h1 {
    font-size: 44px;
  }

  .catalog-category-strip {
    margin-right: -18px;
    padding-bottom: 20px;
  }

  .catalog-store-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    margin-top: 14px;
  }

  .catalog-filter-panel {
    display: none;
    max-height: none;
  }

  .catalog-filter-panel.is-open {
    display: block;
  }

  .catalog-filter-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 54px;
    padding: 0 18px;
    color: #403a34;
    background: rgba(255, 253, 248, .82);
    border: 1px solid rgba(91, 76, 58, .14);
    border-radius: 9px;
    font: 700 14px "Manrope", sans-serif;
  }

  .catalog-filter-toggle span {
    color: var(--gold-dark);
    font-size: 24px;
    font-weight: 400;
  }

  .catalog-toolbar {
    align-items: stretch;
  }

  .catalog-toolbar form,
  .catalog-toolbar label,
  .catalog-toolbar select {
    width: 100%;
  }

  .catalog-toolbar label {
    align-items: flex-start;
    flex-direction: column;
  }

  .catalog-store .catalog-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 10px;
  }

  .catalog-store .catalog-product-card h2 {
    min-height: 0;
    font-size: 16px;
    line-height: 1.4;
  }

  .catalog-store .catalog-product-card p,
  .product-card-color,
  .product-card-foot > span:first-child,
  .product-card-labels .is-stock {
    display: none;
  }

  .catalog-store .catalog-product-card .home-product-price {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .catalog-store .catalog-product-card .home-product-price strong {
    font-size: 21px;
  }

  .catalog-store .catalog-product-card .home-product-price span {
    font-size: 14px;
  }

  .product-card-foot {
    justify-content: flex-end;
    padding-top: 10px;
  }

  .product-card-foot .details-link {
    min-height: 0;
    padding: 0;
    font-size: 13px;
  }

  .product-favorite {
    top: 9px;
    right: 9px;
    width: 38px;
    height: 38px;
  }

  .product-favorite svg {
    width: 18px;
    height: 18px;
  }

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

  .product-help-card {
    grid-column: auto;
  }
}

@media (max-width: 1180px) {
  .product-card-redesign {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .product-card-redesign .product-main-img {
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  .product-page-redesign {
    padding: 22px 12px 40px;
  }

  .product-card-redesign {
    padding: 14px;
  }

  .product-card-redesign .product-main-img {
    min-height: 310px;
  }

  .product-thumbs-redesign {
    gap: 8px;
  }

  .product-buybox-redesign h1 {
    margin-top: 22px;
    font-size: clamp(30px, 8vw, 36px);
  }

  .product-title-row {
    gap: 10px;
  }

  .product-detail-favorite {
    width: 44px;
    padding: 0;
    justify-content: center;
  }

  .product-detail-favorite span {
    display: none;
  }

  .shop-drawer {
    width: 100%;
  }

  .shop-drawer-panel > header,
  .cart-summary {
    padding-inline: 18px;
  }

  .drawer-items {
    padding-inline: 18px;
  }

  .drawer-product {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 12px;
  }

  .drawer-product-media,
  .drawer-product-media img {
    min-height: 108px;
    height: 108px;
  }

  .product-meta-row,
  .product-actions-redesign,
  .product-service-row {
    grid-template-columns: 1fr;
  }

  .product-meta-row {
    display: grid;
  }

  .product-service-row {
    gap: 18px;
  }

  .product-service-row article,
  .product-service-row article:first-child,
  .product-service-row article:last-child {
    padding: 0;
    border-right: 0;
  }
}

/* Contacts compact alignment override */
.contacts-section {
  align-items: start;
  grid-template-columns: minmax(360px, .78fr) minmax(520px, 1.22fr);
  gap: clamp(28px, 4vw, 56px);
  padding-top: 44px;
  padding-bottom: 46px;
}

.contacts-info h2 {
  margin: 4px 0 12px;
  font-size: clamp(42px, 4vw, 58px);
}

.contacts-info > p {
  max-width: 520px;
  font-size: 17px;
  line-height: 1.45;
}

.contact-card {
  gap: 0;
  max-width: 560px;
  margin-top: 18px;
  padding: 20px 24px 22px;
  border-radius: 10px;
}

.contact-card article {
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  min-height: 74px;
  padding: 12px 0;
}

.contact-card article:first-child {
  padding-top: 0;
}

.contact-card svg {
  width: 38px;
  height: 38px;
}

.contact-card h3 {
  margin: 0 0 6px;
  font-size: 17px;
  line-height: 1.2;
}

.contact-card p {
  font-size: 14px;
  line-height: 1.38;
}

.social-row {
  gap: 9px;
  padding: 14px 0 16px;
}

.social-row span {
  margin-bottom: 2px;
  font-size: 15px;
}

.social-row a {
  width: 34px;
  height: 34px;
  font-size: 13px;
}

.contact-actions {
  gap: 12px;
}

.contact-actions .button {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.2;
}

@media (max-width: 1180px) {
  .contacts-section {
    grid-template-columns: 1fr;
  }

  .contact-card {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .contacts-section {
    padding: 42px 18px;
  }

  .contact-card {
    padding: 20px;
  }

  .contact-card article {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    min-height: auto;
  }

  .contact-card svg {
    width: 36px;
    height: 36px;
  }

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

/* Final catalog layout: persistent left filter and compact accordion sections. */
.catalog-store-layout {
  grid-template-columns: 292px minmax(0, 1fr);
  gap: clamp(26px, 3vw, 44px);
  align-items: start;
}

.catalog-filter-panel {
  position: sticky;
  top: 92px;
  z-index: 8;
  max-height: calc(100vh - 112px);
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
}

.catalog-filter-panel .catalog-filter-form {
  display: block !important;
}

.catalog-filter-panel .filter-dropdown {
  min-width: 0;
}

.catalog-filter-panel .filter-popover,
.catalog-filter-panel .filter-color-popover,
.catalog-filter-panel .filter-price-popover {
  position: static;
  grid-template-columns: 1fr;
  width: auto;
  min-width: 0;
  box-shadow: none;
}

.catalog-filter-panel .filter-submit {
  width: calc(100% - 32px);
  margin: 16px;
}

.catalog-store .catalog-product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px 18px;
}

@media (max-width: 1180px) {
  .catalog-store-layout {
    grid-template-columns: 258px minmax(0, 1fr);
    gap: 24px;
  }

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

@media (max-width: 900px) and (min-width: 761px) {
  .catalog-store-layout {
    grid-template-columns: 240px minmax(0, 1fr);
  }

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

@media (max-width: 760px) {
  .catalog-store-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .catalog-filter-panel {
    position: relative;
    top: auto;
    display: none;
    max-height: none;
  }

  .catalog-filter-panel.is-open {
    display: block;
  }

  .catalog-filter-panel .catalog-filter-form {
    display: block !important;
  }

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

/* Verified adaptive overrides; intentionally last in the cascade. */
@media (min-width: 901px) and (max-width: 1180px) {
  .product-card-redesign {
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    gap: 30px;
  }

  .product-card-redesign .product-main-img,
  .product-main-wrap .product-image-placeholder {
    min-height: 0;
    aspect-ratio: .9 / 1;
  }
}

@media (max-width: 900px) {
  .catalog-store-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .catalog-filter-panel {
    position: relative;
    top: auto;
    display: none;
    max-height: none;
  }

  .catalog-filter-panel.is-open {
    display: block;
  }

  .catalog-filter-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 54px;
    padding: 0 18px;
    color: #403a34;
    background: rgba(255, 253, 248, .82);
    border: 1px solid rgba(91, 76, 58, .14);
    border-radius: 9px;
    font: 700 14px "Manrope", sans-serif;
  }

  .catalog-filter-toggle span {
    color: var(--gold-dark);
    font-size: 24px;
  }

  .catalog-store .catalog-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 16px;
  }
}
