:root {
  --bg: #f5f3ef;
  --paper: #ffffff;
  --paper-soft: #f8f7f4;
  --ink: #191a1c;
  --muted: #6d6e72;
  --line: rgba(25, 26, 28, 0.11);
  --dark: #11171a;
  --dark-2: #192023;
  --red: #c8242e;
  --red-dark: #a81921;
  --green: #3c8b43;
  --blue: #3f78bd;
  --shadow: 0 24px 70px rgba(16, 18, 20, 0.1);
  --soft-shadow: 0 18px 45px rgba(16, 18, 20, 0.08);
  --radius: 24px;
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --header-offset: 77px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: calc(var(--header-offset) + 22px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.cart-open,
body.product-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(100% - 48px, 1390px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(18px);
}

.header-shell {
  width: min(100% - 36px, 1440px);
  min-height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto auto minmax(260px, 1fr) auto auto auto;
  gap: 20px;
  align-items: center;
}

.brand {
  color: inherit;
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
  line-height: 0.9;
}

.logo-brand img {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  object-fit: contain;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 0 rgba(25, 26, 28, 0.08);
}

.logo-brand span {
  display: grid;
  gap: 3px;
}

.logo-brand strong {
  display: block;
  color: var(--ink);
  font-size: 21px;
  font-weight: 900;
  letter-spacing: 0;
}

.logo-brand strong:last-child {
  font-size: 16px;
}

.logo-brand-dark strong {
  color: #fff;
}

.catalog-button,
.button,
.product-card__cart,
.newsletter button {
  border: 0;
  transition: transform 0.55s var(--ease), background 0.55s var(--ease), color 0.55s var(--ease), box-shadow 0.55s var(--ease);
}

.catalog-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  padding: 0 18px;
  color: #fff;
  background: var(--red);
  border-radius: 10px;
  font-weight: 800;
}

.catalog-button:hover,
.button:hover,
.product-card__cart:hover,
.newsletter button:hover {
  transform: translateY(-2px);
}

.catalog-button:active,
.button:active,
.product-card__cart:active,
.newsletter button:active {
  transform: translateY(1px) scale(0.985);
}

.hamburger {
  position: relative;
  width: 17px;
  height: 12px;
}

.hamburger span,
.menu-close span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.hamburger span:first-child {
  top: 1px;
}

.hamburger span:last-child {
  bottom: 1px;
}

.search-field {
  position: relative;
  display: block;
}

.search-field input {
  width: 100%;
  height: 46px;
  padding: 0 48px 0 20px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: none;
  transition: border 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.search-field input:focus {
  border-color: rgba(200, 36, 46, 0.42);
  box-shadow: 0 0 0 4px rgba(200, 36, 46, 0.08);
}

.search-field svg {
  position: absolute;
  right: 17px;
  top: 50%;
  width: 19px;
  height: 19px;
  transform: translateY(-50%);
  fill: none;
  stroke: #232323;
  stroke-width: 1.8;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 750;
  white-space: nowrap;
}

.desktop-nav a {
  color: #2f3032;
  transition: color 0.45s var(--ease);
}

.desktop-nav a:hover {
  color: var(--red);
}

.phone-block {
  display: grid;
  gap: 2px;
  white-space: nowrap;
}

.phone-block strong {
  font-size: 15px;
  font-weight: 900;
}

.phone-block span {
  color: var(--muted);
  font-size: 11px;
}

.header-actions {
  display: flex;
  gap: 10px;
}

.header-actions button {
  position: relative;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--ink);
  background: transparent;
  border: 0;
}

.header-actions svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.cart-action span {
  position: absolute;
  top: 1px;
  right: 1px;
  display: grid;
  place-items: center;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  color: #fff;
  background: var(--red);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
}

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

.hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: var(--dark);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 12, 14, 0.93) 0%, rgba(8, 12, 14, 0.72) 35%, rgba(8, 12, 14, 0.05) 74%),
    linear-gradient(0deg, rgba(8, 12, 14, 0.36), rgba(8, 12, 14, 0.12));
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  padding: 70px 0;
}

.hero-copy {
  width: min(100%, 680px);
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 22px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--red);
  background: rgba(200, 36, 46, 0.08);
  border-color: rgba(200, 36, 46, 0.13);
}

.hero h1 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.hero-lead {
  max-width: 530px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.38;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 24px;
  max-width: 620px;
  margin: 34px 0 36px;
}

.hero-facts span {
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 750;
}

.hero-facts svg {
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  fill: none;
  stroke: rgba(255, 255, 255, 0.78);
  stroke-width: 1.45;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 54px;
  padding: 8px 8px 8px 22px;
  border-radius: 12px;
  font-weight: 850;
}

.button span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  transition: transform 0.55s var(--ease), background 0.55s var(--ease);
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.button-primary {
  color: #fff;
  background: var(--red);
  box-shadow: 0 18px 36px rgba(200, 36, 46, 0.22);
}

.button-primary:hover {
  background: var(--red-dark);
}

.button-primary span {
  background: rgba(255, 255, 255, 0.16);
}

.button-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.button-ghost span {
  background: rgba(255, 255, 255, 0.12);
}

.button-dark {
  color: #fff;
  background: var(--dark);
}

.button-dark span {
  background: rgba(255, 255, 255, 0.1);
}

.button:hover span {
  transform: translateX(2px);
}

.section {
  padding: 74px 0;
}

.section-tight {
  padding: 54px 0;
}

.section-head,
.catalog-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.section-head h2,
.catalog-head h2,
.service-copy h2,
.interior-strip h2,
.salon-banner h2,
.newsletter h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.section-head a,
.catalog-head > a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.collection-card {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  border-radius: 18px;
  background: #ddd;
  box-shadow: var(--soft-shadow);
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}

.collection-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 12, 14, 0.03), rgba(10, 12, 14, 0.6));
}

.collection-card div {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  color: #fff;
}

.collection-card h3 {
  margin: 0;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.collection-card p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.catalog-head {
  align-items: flex-end;
  margin-bottom: 18px;
}

.catalog-title-block {
  display: grid;
  gap: 11px;
}

.catalog-kicker {
  width: max-content;
  margin: 0;
  padding: 7px 12px;
  color: rgba(25, 26, 28, 0.62);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(25, 26, 28, 0.08);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.catalog-tabs-shell {
  position: relative;
  margin-bottom: 28px;
  padding: 6px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72)),
    rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(25, 26, 28, 0.08);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(25, 26, 28, 0.06);
}

.catalog-tabs-shell::before,
.catalog-tabs-shell::after {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 6px;
  z-index: 1;
  width: 48px;
  pointer-events: none;
}

.catalog-tabs-shell::before {
  left: 6px;
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0));
}

.catalog-tabs-shell::after {
  right: 6px;
  background: linear-gradient(270deg, #fff, rgba(255, 255, 255, 0));
}

.catalog-tabs {
  position: relative;
  display: flex;
  gap: 7px;
  padding: 0 42px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

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

.tab {
  position: relative;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: max-content;
  height: 42px;
  padding: 0 15px 0 17px;
  color: rgba(25, 26, 28, 0.64);
  background: transparent;
  border: 0;
  border-radius: 999px;
  scroll-snap-align: start;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.01em;
  transition: color 0.42s var(--ease), background 0.42s var(--ease), box-shadow 0.42s var(--ease), transform 0.42s var(--ease);
}

.tab:hover {
  color: var(--ink);
  background: rgba(25, 26, 28, 0.045);
}

.tab.active {
  color: #fff;
  background: var(--dark);
  box-shadow: 0 12px 28px rgba(17, 23, 26, 0.18);
}

.tab.active::after {
  content: none;
}

.tab span {
  display: inline-flex;
  min-width: 25px;
  height: 25px;
  margin-left: 0;
  padding: 0 7px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: rgba(25, 26, 28, 0.075);
  border-radius: 999px;
  font-size: 11px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.tab.active span {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
}

.product-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  overflow: visible;
  padding: 3px 0 18px;
}

.catalog-status {
  flex: 0 0 auto;
  margin: 0;
  padding: 12px 16px;
  color: rgba(25, 26, 28, 0.68);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(25, 26, 28, 0.08);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.2;
  box-shadow: 0 10px 26px rgba(25, 26, 28, 0.045);
}

.catalog-empty {
  display: grid;
  grid-column: 1 / -1;
  justify-items: start;
  gap: 12px;
  min-height: 260px;
  padding: 38px;
  background: #fff;
  border: 1px solid rgba(25, 26, 28, 0.08);
  border-radius: 18px;
}

.catalog-empty strong {
  color: var(--ink);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.05;
}

.catalog-empty span {
  max-width: 560px;
  color: var(--muted);
  line-height: 1.55;
}

.catalog-empty button {
  height: 44px;
  padding: 0 18px;
  color: #fff;
  background: var(--red);
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  font: inherit;
  font-weight: 850;
}

.product-card {
  position: relative;
  min-width: 0;
  display: flex;
  padding: 0;
  background: var(--paper);
  border: 1px solid rgba(25, 26, 28, 0.08);
  border-radius: 16px;
  cursor: pointer;
  flex-direction: column;
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-size: 560px;
  transition: transform 0.55s var(--ease), box-shadow 0.55s var(--ease), opacity 0.45s var(--ease);
}

.product-card:hover,
.product-card:focus-visible {
  transform: translateY(-5px);
  box-shadow: var(--soft-shadow);
}

.product-card:focus-visible {
  outline: 3px solid rgba(200, 36, 46, 0.24);
  outline-offset: 4px;
}

.product-card.is-hidden {
  display: none;
}

.product-card__link {
  display: grid;
  gap: 12px;
  padding: 12px 12px 0;
}

.product-card__media {
  display: block;
  height: 350px;
  overflow: hidden;
  background: #f4efe7;
  border-radius: 13px;
}

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

.product-card__content {
  display: grid;
  gap: 5px;
}

.product-card__content strong {
  font-size: 18px;
  letter-spacing: 0;
}

.product-card__content span {
  min-height: 44px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.product-card__price {
  display: flex;
  align-items: baseline;
  min-height: 28px !important;
  gap: 8px;
  color: var(--ink) !important;
  line-height: 1.1 !important;
}

.product-card__price strong {
  font-size: 18px;
  font-weight: 900;
}

.product-card__price s {
  color: #a3a0a0;
  font-size: 13px;
  text-decoration-thickness: 1px;
}

.product-card__price em {
  padding: 3px 6px;
  color: var(--red);
  background: rgba(210, 35, 48, 0.08);
  border-radius: 999px;
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
}

.product-card__cart {
  width: calc(100% - 24px);
  height: 44px;
  margin: auto 12px 12px;
  color: #fff;
  background: var(--red);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 850;
}

.product-card__cart.is-added,
.product-detail__actions .button.is-added {
  background: var(--dark);
}

.catalog-more {
  display: flex;
  grid-column: 1 / -1;
  justify-content: center;
  padding: 10px 0 4px;
}

.catalog-more button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  gap: 10px;
  color: #fff;
  background: var(--dark);
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.catalog-more button:hover {
  background: #2f302c;
}

.catalog-more span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 850;
}

.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  padding: 5px 8px;
  color: #fff;
  border-radius: 7px;
  font-size: 10px;
  font-weight: 900;
}

.badge-green {
  background: var(--green);
}

.badge-red {
  background: var(--red);
}

.badge-blue {
  background: var(--blue);
}

.swatches {
  display: flex;
  gap: 6px;
  margin: 0 12px 14px;
}

.swatch {
  position: relative;
  width: 22px;
  height: 22px;
  padding: 0;
  background: var(--c);
  border: 1px solid rgba(25, 26, 28, 0.18);
  border-radius: 50%;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: transform 0.28s var(--ease), border-color 0.28s var(--ease), box-shadow 0.28s var(--ease);
}

.swatch:hover,
.swatch:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(25, 26, 28, 0.42);
  box-shadow: 0 0 0 4px rgba(25, 26, 28, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.42);
  outline: none;
}

.swatch:active {
  transform: scale(0.94);
}

.swatch.is-active {
  border-color: rgba(25, 26, 28, 0.78);
  box-shadow: 0 0 0 3px #fff, 0 0 0 5px rgba(25, 26, 28, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.newsletter input {
  width: 100%;
  height: 45px;
  padding: 0 13px;
  background: #fff;
  border: 1px solid rgba(25, 26, 28, 0.1);
  border-radius: 10px;
  outline: none;
}

.about-section {
  padding-top: 28px;
}

.about-showcase {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: #050607;
  border-radius: 26px;
  box-shadow: 0 34px 90px rgba(10, 12, 14, 0.16);
  isolation: isolate;
}

.about-showcase > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.1), rgba(5, 6, 7, 0.38) 32%, rgba(5, 6, 7, 0.35) 68%, rgba(5, 6, 7, 0.08)),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08), transparent 42%);
}

.about-panel {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(100%, 650px);
  min-height: 650px;
  margin: 0 auto;
  padding: 76px 66px;
  color: #fff;
  background: rgba(4, 5, 6, 0.92);
  flex-direction: column;
  justify-content: center;
}

.about-panel .eyebrow {
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.13);
}

.about-watermark {
  position: absolute;
  left: 50%;
  top: 43%;
  color: rgba(255, 255, 255, 0.055);
  font-size: clamp(86px, 11vw, 178px);
  font-weight: 900;
  line-height: 0.8;
  transform: translate(-50%, -50%);
  pointer-events: none;
  white-space: nowrap;
}

.about-panel h2,
.choose-copy h2 {
  position: relative;
  margin: 0;
  font-size: clamp(34px, 4.7vw, 64px);
  line-height: 0.96;
  letter-spacing: 0;
}

.about-panel h2 {
  color: #fff;
}

.about-panel > p:not(.eyebrow) {
  position: relative;
  max-width: 500px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 19px;
  line-height: 1.68;
}

.about-stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}

.about-stats span {
  display: grid;
  gap: 7px;
  padding: 18px;
  color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  line-height: 1.35;
}

.about-stats strong {
  color: #fff;
  font-size: 22px;
  line-height: 1;
}

.choose-section {
  padding-top: 10px;
}

.choose-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: stretch;
}

.choose-copy {
  padding: 48px;
  background: #fff;
  border: 1px solid rgba(25, 26, 28, 0.08);
  border-radius: 22px;
  box-shadow: var(--soft-shadow);
}

.choose-copy h2 {
  color: var(--ink);
}

.choose-lead {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.reason-list {
  display: grid;
  gap: 0;
  margin-top: 30px;
}

.reason-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 21px 0;
  border-top: 1px solid rgba(25, 26, 28, 0.1);
}

.reason-list span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #8a4d2a;
  background: #f2ebe3;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.reason-list h3 {
  margin: 0 0 7px;
  font-size: 20px;
  letter-spacing: 0;
}

.reason-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.choose-image {
  position: relative;
  min-height: 610px;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--soft-shadow);
}

.choose-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.choose-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 9, 10, 0), rgba(7, 9, 10, 0.54));
}

.choose-image figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  display: grid;
  gap: 4px;
  max-width: 390px;
  padding: 18px 20px;
  color: #fff;
  background: rgba(9, 12, 14, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
}

.choose-image strong {
  font-size: 22px;
  line-height: 1.1;
}

.choose-image span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.service-section {
  padding-top: 34px;
}

.service-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.2fr 0.72fr;
  gap: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(25, 26, 28, 0.08);
  border-radius: 22px;
}

.service-copy,
.steps {
  padding: 30px;
}

.service-copy p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 12px;
}

.steps article {
  position: relative;
}

.steps span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 13px;
  border: 1px solid rgba(25, 26, 28, 0.12);
  border-radius: 50%;
  font-size: 22px;
  font-weight: 850;
}

.steps h3 {
  margin: 0 0 6px;
  font-size: 15px;
}

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

.install-card {
  position: relative;
  min-height: 250px;
  margin: 0;
  overflow: hidden;
}

.install-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.install-card figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 16px;
  color: #fff;
  background: rgba(16, 20, 23, 0.83);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
}

.install-card strong {
  display: block;
  font-size: 19px;
  letter-spacing: -0.03em;
}

.install-card span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.74);
}

.install-card a {
  display: inline-flex;
  margin-top: 12px;
  padding: 10px 14px;
  color: var(--ink);
  background: #fff;
  border-radius: 9px;
  font-weight: 850;
}

.interior-strip {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  overflow: hidden;
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--soft-shadow);
}

.interior-strip > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 38px;
}

.interior-strip p:not(.eyebrow) {
  color: var(--muted);
}

.interior-strip img {
  width: 100%;
  min-height: 320px;
  height: 100%;
  object-fit: cover;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-top: 22px;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(25, 26, 28, 0.09);
}

.metrics-grid article {
  padding: 24px;
  background: #fff;
}

.metrics-grid strong {
  display: block;
  font-size: 24px;
  letter-spacing: -0.05em;
}

.metrics-grid span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
}

.salon-banner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  color: #fff;
  background: var(--dark);
  border-radius: 22px;
}

.salon-banner img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.salon-banner > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 45px;
}

.salon-banner h2 {
  color: #fff;
}

.salon-banner ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.8);
}

.salon-banner li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  background: var(--red);
  border-radius: 50%;
  transform: translateY(-1px);
}

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

.article-card {
  display: block;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(25, 26, 28, 0.08);
  border-radius: 16px;
}

.article-card img {
  width: 100%;
  height: 145px;
  object-fit: cover;
}

.article-card h3 {
  margin: 15px 16px 7px;
  font-size: 17px;
  letter-spacing: -0.03em;
}

.article-card p {
  margin: 0 16px 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.product-page {
  background: var(--bg);
}

.product-detail {
  padding: 54px 0 42px;
}

.product-detail__grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.85fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.product-detail__media {
  overflow: hidden;
  background: #ede7dc;
  border: 1px solid rgba(25, 26, 28, 0.08);
  border-radius: 24px;
  box-shadow: var(--soft-shadow);
}

.product-detail__media img {
  width: 100%;
  height: min(76vh, 780px);
  object-fit: cover;
}

.product-detail__copy {
  display: grid;
  gap: 18px;
  align-content: center;
}

.back-link {
  width: fit-content;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

.product-detail h1 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.product-detail__color {
  margin: 0;
  color: var(--muted);
  font-size: 24px;
  line-height: 1.3;
}

.product-detail__price {
  min-height: 54px;
}

.product-detail__price-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
}

.product-detail__price-inner strong {
  color: var(--ink);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 950;
  letter-spacing: 0;
}

.product-detail__price-inner s {
  color: #9b9794;
  font-size: 20px;
  text-decoration-thickness: 1px;
}

.product-detail__price-inner em {
  padding: 7px 10px;
  color: var(--red);
  background: rgba(210, 35, 48, 0.08);
  border: 1px solid rgba(210, 35, 48, 0.14);
  border-radius: 999px;
  font-style: normal;
  font-weight: 900;
}

.product-detail__copy > p:not(.eyebrow):not(.product-detail__color) {
  max-width: 680px;
  margin: 0;
  color: #55575c;
  font-size: 18px;
  line-height: 1.65;
}

.product-detail__swatches {
  margin: -6px 0 0;
}

.product-detail__swatches .swatch {
  width: 30px;
  height: 30px;
}

.product-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.product-specs li {
  padding: 13px 15px;
  color: #44464a;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(25, 26, 28, 0.08);
  border-radius: 12px;
  font-size: 14px;
}

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

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

.article-page-main {
  padding: 54px 0 84px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(280px, 0.25fr);
  gap: clamp(26px, 4vw, 56px);
  align-items: start;
}

.article-hero {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(25, 26, 28, 0.08);
  border-radius: 24px;
  box-shadow: var(--soft-shadow);
}

.article-hero img {
  width: 100%;
  height: min(45vw, 480px);
  object-fit: cover;
}

.article-content {
  padding: clamp(28px, 4vw, 48px);
}

.article-content h1 {
  max-width: 860px;
  margin: 14px 0 22px;
  color: var(--ink);
  font-size: clamp(38px, 5.4vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.article-content h2 {
  margin: 34px 0 12px;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.article-content p,
.article-content li {
  color: #55575c;
  font-size: 18px;
  line-height: 1.7;
}

.article-content ul {
  display: grid;
  gap: 9px;
  margin: 14px 0 0;
  padding-left: 22px;
}

.article-aside {
  position: sticky;
  top: calc(var(--header-offset) + 24px);
  display: grid;
  gap: 12px;
  padding: 22px;
  color: #fff;
  background: var(--dark);
  border-radius: 18px;
}

.article-aside strong {
  font-size: 22px;
  line-height: 1.1;
}

.article-aside a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.footer {
  padding: 44px 0 28px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--dark);
}

.newsletter {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 0 0 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter h2 {
  color: #fff;
  font-size: clamp(26px, 3vw, 38px);
}

.newsletter p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.58);
}

.newsletter form {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 320px) auto;
  gap: 10px;
}

.newsletter input {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.newsletter button {
  height: 45px;
  padding: 0 22px;
  color: #fff;
  background: var(--red);
  border-radius: 10px;
  font-weight: 850;
}

.newsletter [data-form-message] {
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(130px, 0.78fr)) minmax(260px, 1.35fr);
  gap: 42px;
  padding: 38px 0;
}

.footer-grid--compact {
  grid-template-columns: minmax(240px, 0.8fr) minmax(320px, 1.2fr);
  align-items: start;
}

.footer-compact {
  padding-top: 34px;
}

.footer-brand p {
  max-width: 310px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.55;
}

.footer-grid h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 15px;
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.footer-requisites span {
  line-height: 1.45;
}

.footer-phone {
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 900;
}

.outline-link {
  width: fit-content;
  margin-top: 16px !important;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
}

.copyright {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
}

.menu-overlay {
  position: fixed;
  inset: var(--header-offset) 0 0;
  z-index: 19;
  display: grid;
  align-items: start;
  justify-items: center;
  overflow-y: auto;
  padding: 0 clamp(18px, 3vw, 34px) 22px;
  background: transparent;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.48s var(--ease), visibility 0.48s var(--ease);
}

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

.menu-panel {
  position: relative;
  width: min(100%, 1280px);
  max-height: min(620px, calc(100dvh - var(--header-offset) - 18px));
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(25, 26, 28, 0.1);
  border-top: 0;
  border-radius: 0 0 22px 22px;
  box-shadow: 0 26px 70px rgba(17, 19, 20, 0.22);
  transform: translateY(-26px);
  transform-origin: top center;
  transition: transform 0.58s var(--ease), box-shadow 0.58s var(--ease);
}

.menu-overlay.is-open .menu-panel {
  transform: translateY(0);
}

.menu-close {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: auto;
  min-width: 112px;
  height: 100%;
  padding: 0 24px;
  color: #fff;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-close b {
  font-size: 12px;
  letter-spacing: 0.08em;
}

.mega-top {
  display: grid;
  grid-template-columns: 220px auto minmax(220px, 1fr) 140px;
  min-height: 82px;
  color: #fff;
  background: var(--dark);
}

.mega-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 22px;
  background: #9b0710;
}

.mega-brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  background: #fff;
  border-radius: 9px;
}

.mega-brand span {
  display: grid;
  gap: 4px;
  line-height: 0.86;
}

.mega-brand strong {
  color: #fff;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0;
}

.mega-brand strong:last-child {
  font-size: 14px;
}

.mega-phone {
  display: grid;
  align-content: center;
  justify-self: end;
  gap: 5px;
  padding: 0 28px;
  text-align: left;
}

.mega-phone small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 800;
}

.mega-phone strong {
  color: #fff;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1;
  letter-spacing: 0;
}

.mega-top-link {
  display: grid;
  place-items: center;
  padding: 0 20px;
  color: var(--ink);
  background: #fff;
  font-weight: 900;
  text-transform: uppercase;
}

.mega-body {
  display: grid;
  grid-template-columns: 64px 1fr;
  min-height: 390px;
}

.mega-rail {
  display: grid;
  place-items: end center;
  padding: 26px 0;
  color: #fff;
  background: #9b0710;
}

.mega-rail span {
  display: flex;
  align-items: center;
  gap: 26px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mega-rail span::before {
  content: "";
  display: block;
  width: 2px;
  height: 40px;
  background: rgba(255, 255, 255, 0.72);
}

.mega-grid {
  display: grid;
  grid-template-columns: 1.12fr 1fr 1fr 1.08fr;
  gap: clamp(22px, 3vw, 38px);
  padding: clamp(28px, 3.4vw, 40px);
}

.mega-column {
  display: grid;
  align-content: start;
  gap: 13px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.58s var(--ease), transform 0.58s var(--ease);
}

.menu-overlay.is-open .mega-column {
  opacity: 1;
  transform: translateY(0);
}

.menu-overlay.is-open .mega-column:nth-child(2) {
  transition-delay: 55ms;
}

.menu-overlay.is-open .mega-column:nth-child(3) {
  transition-delay: 105ms;
}

.menu-overlay.is-open .mega-column:nth-child(4) {
  transition-delay: 155ms;
}

.mega-column h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
}

.mega-column a {
  width: fit-content;
  color: #313236;
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: 750;
  line-height: 1.26;
  transition: color 0.4s var(--ease), transform 0.4s var(--ease);
}

.mega-column a:hover {
  color: var(--red);
  transform: translateX(4px);
}

.mega-primary {
  gap: 14px;
}

.mega-primary a,
.mega-strong {
  color: var(--ink);
  font-size: clamp(17px, 1.55vw, 21px);
  font-weight: 850;
  text-transform: uppercase;
}

.mega-contact-card {
  display: grid;
  gap: 7px;
  margin-top: 10px;
  padding: 17px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--dark);
  border-radius: 16px;
}

.mega-contact-card strong {
  color: #fff;
  font-size: 18px;
}

.mega-contact-card span,
.mega-contact-card small {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.45;
}

.cart-panel {
  position: fixed;
  inset: 0;
  z-index: 55;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.42s var(--ease), visibility 0.42s var(--ease);
}

.cart-panel.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cart-panel__shade {
  position: absolute;
  inset: 0;
  background: rgba(14, 17, 18, 0.62);
}

.cart-panel__body {
  position: absolute;
  top: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  width: min(100% - 36px, 420px);
  padding: 32px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.26);
  flex-direction: column;
  transform: translateX(32px);
  transition: transform 0.52s var(--ease);
}

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

.cart-panel__close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: #f2f0eb;
  border: 0;
  border-radius: 50%;
}

.cart-panel__close span {
  position: absolute;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
}

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

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

.cart-panel h2 {
  max-width: 280px;
  margin: 0;
  font-size: 38px;
  line-height: 0.98;
  letter-spacing: 0;
}

.cart-panel p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.cart-items {
  display: grid;
  gap: 10px;
  max-height: min(48vh, 520px);
  margin: 26px 0 18px;
  padding-right: 4px;
  overflow: auto;
}

.cart-item {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  background: #f6f4ef;
  border-radius: 12px;
}

.cart-item img {
  width: 64px;
  height: 84px;
  object-fit: cover;
  background: #ede7de;
  border-radius: 9px;
}

.cart-item__info {
  display: grid;
  gap: 4px;
  min-width: 0;
}

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

.cart-item span {
  color: var(--muted);
  font-size: 13px;
}

.cart-item em {
  color: var(--ink);
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
}

.cart-item__controls {
  display: inline-grid;
  grid-template-columns: 30px 30px 30px;
  align-items: center;
  justify-items: center;
  gap: 4px;
  padding: 4px;
  background: #fff;
  border: 1px solid rgba(25, 26, 28, 0.08);
  border-radius: 999px;
}

.cart-item__controls button {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--ink);
  background: #f2f0eb;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font: inherit;
  font-size: 16px;
  font-weight: 900;
}

.cart-item__controls span {
  color: var(--ink);
  font-weight: 900;
}

.cart-item__remove {
  grid-column: 2 / -1;
  justify-self: start;
  width: fit-content;
  margin-top: -4px;
  color: var(--muted);
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cart-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: auto 0 12px;
  padding: 16px;
  background: var(--dark);
  border-radius: 14px;
}

.cart-summary span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-weight: 800;
}

.cart-summary strong {
  color: #fff;
  font-size: 22px;
  font-weight: 950;
}

.cart-panel .button {
  width: 100%;
  justify-content: space-between;
}

.cart-checkout {
  margin-top: 0;
}

.cart-catalog-link {
  margin-top: 10px;
}

.cart-clear {
  width: fit-content;
  margin: 10px auto 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  z-index: 60;
  padding: 13px 18px;
  color: #fff;
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  box-shadow: var(--shadow);
  transform: translate(-50%, 30px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.call-widget {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 50;
  display: grid;
  justify-items: end;
  gap: 12px;
  pointer-events: none;
}

.call-widget__button,
.call-widget__panel {
  pointer-events: auto;
}

.call-widget__button {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  color: #fff;
  background: #8b0009;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 18px 38px rgba(139, 0, 9, 0.28);
  transition: transform 0.28s var(--ease), background 0.28s var(--ease), box-shadow 0.28s var(--ease);
}

.call-widget__button:hover {
  background: #a0000d;
  box-shadow: 0 22px 48px rgba(139, 0, 9, 0.34);
  transform: translateY(-2px);
}

.call-widget__button:focus-visible {
  outline: 3px solid rgba(139, 0, 9, 0.24);
  outline-offset: 5px;
}

.call-widget__button svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

.call-widget__panel {
  display: grid;
  min-width: 250px;
  max-width: min(300px, calc(100vw - 40px));
  padding: 16px 18px;
  gap: 7px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(25, 26, 28, 0.1);
  border-radius: 16px;
  box-shadow: 0 22px 60px rgba(16, 18, 20, 0.16);
}

.call-widget__panel[hidden] {
  display: none;
}

.call-widget__panel span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.call-widget__panel a {
  color: #8b0009;
  font-size: 22px;
  font-weight: 950;
  line-height: 1.1;
}

.call-widget__panel small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

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

  .desktop-nav,
  .phone-block {
    display: none;
  }

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

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

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

  .choose-image {
    min-height: 460px;
  }

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

  .steps {
    border-top: 1px solid rgba(25, 26, 28, 0.08);
    border-bottom: 1px solid rgba(25, 26, 28, 0.08);
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid--compact {
    grid-template-columns: minmax(240px, 0.8fr) minmax(320px, 1.2fr);
  }

  .mega-top {
    grid-template-columns: 210px auto 1fr;
  }

  .mega-top-link {
    display: none;
  }

  .mega-body {
    grid-template-columns: 60px 1fr;
  }

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

@media (max-width: 860px) {
  :root {
    --header-offset: 69px;
  }

  .container {
    width: min(100% - 28px, 1390px);
  }

  .header-shell {
    width: min(100% - 20px, 1440px);
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    min-height: 0;
    padding: 10px 0;
  }

  .search-field {
    display: block;
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .search-field input {
    height: 42px;
    padding-left: 14px;
  }

  .logo-brand {
    min-width: 138px;
    gap: 8px;
  }

  .logo-brand img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }

  .logo-brand strong {
    font-size: 15px;
  }

  .logo-brand strong:last-child {
    font-size: 12px;
  }

  .catalog-button {
    width: 44px;
    padding: 0;
    justify-content: center;
    font-size: 0;
  }

  .hero,
  .hero-grid {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 62px 0 28px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(8, 12, 14, 0.9) 0%, rgba(8, 12, 14, 0.62) 56%, rgba(8, 12, 14, 0.9) 100%),
      linear-gradient(90deg, rgba(8, 12, 14, 0.8), rgba(8, 12, 14, 0.22));
  }

  .hero h1 {
    font-size: clamp(44px, 14vw, 64px);
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

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

  .collection-card {
    min-height: 170px;
  }

  .section {
    padding: 52px 0;
  }

  .catalog-head,
  .section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .catalog-status {
    max-width: 100%;
  }

  .catalog-tabs-shell {
    margin-bottom: 22px;
    border-radius: 18px;
  }

  .catalog-tabs-shell::before,
  .catalog-tabs-shell::after {
    width: 24px;
  }

  .catalog-tabs {
    gap: 6px;
    padding: 0 18px;
  }

  .tab {
    height: 39px;
    padding: 0 12px 0 14px;
    font-size: 13px;
  }

  .tab span {
    min-width: 23px;
    height: 23px;
    padding: 0 6px;
    font-size: 10px;
  }

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

  .product-card__media {
    height: 300px;
  }

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

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-aside {
    position: static;
  }

  .product-detail__media img {
    height: 620px;
  }

  .product-specs,
  .product-rail--related {
    grid-template-columns: 1fr;
  }

  .about-showcase {
    display: grid;
    min-height: auto;
  }

  .about-showcase > img {
    position: relative;
    min-height: 340px;
  }

  .about-showcase::before {
    display: none;
  }

  .about-panel {
    width: 100%;
    min-height: 0;
    padding: 42px;
  }

  .about-panel > p:not(.eyebrow) {
    font-size: 16px;
  }

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

  .interior-strip,
  .salon-banner,
  .newsletter {
    grid-template-columns: 1fr;
  }

  .steps,
  .metrics-grid,
  .article-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    align-items: start;
  }

  .interior-strip img,
  .salon-banner img {
    min-height: 260px;
  }

  .newsletter form {
    grid-template-columns: 1fr;
  }

  .menu-overlay {
    align-items: start;
    padding: 0;
  }

  .menu-panel {
    width: 100%;
    min-height: calc(100dvh - var(--header-offset));
    max-height: none;
    border-radius: 0;
  }

  .mega-top {
    grid-template-columns: 1fr auto;
    min-height: 82px;
  }

  .mega-brand {
    padding: 20px 24px;
  }

  .mega-brand img {
    width: 42px;
    height: 42px;
  }

  .mega-brand strong {
    font-size: 20px;
  }

  .mega-brand strong:last-child {
    font-size: 15px;
  }

  .mega-phone,
  .mega-top-link {
    display: none;
  }

  .menu-close {
    width: auto;
    min-width: 88px;
    padding: 0 22px;
  }

  .menu-close b {
    display: block;
    font-size: 11px;
  }

  .mega-body {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .mega-rail {
    display: none;
  }

  .mega-grid {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 30px 28px 42px;
  }

  .mega-column {
    gap: 14px;
  }

  .mega-column h3 {
    margin-bottom: 6px;
  }

  .mega-primary a,
  .mega-strong {
    font-size: 22px;
  }

}

@media (max-width: 560px) {
  .header-shell {
    grid-template-columns: auto auto auto;
  }

  .header-actions {
    margin-left: auto;
  }

  .logo-brand {
    min-width: 116px;
    gap: 7px;
  }

  .logo-brand img {
    width: 31px;
    height: 31px;
  }

  .logo-brand strong {
    font-size: 13px;
  }

  .logo-brand strong:last-child {
    font-size: 10px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .button {
    width: 100%;
    justify-content: space-between;
  }

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

  .about-showcase,
  .choose-copy,
  .choose-image {
    border-radius: 18px;
  }

  .about-showcase > img {
    min-height: 260px;
  }

  .about-panel,
  .choose-copy {
    padding: 24px;
  }

  .about-watermark {
    top: 96px;
    font-size: 76px;
  }

  .about-panel h2,
  .choose-copy h2 {
    font-size: 34px;
  }

  .about-stats span {
    padding: 16px;
  }

  .choose-lead {
    font-size: 15px;
  }

  .reason-list article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .choose-image {
    min-height: 420px;
  }

  .choose-image figcaption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 15px;
  }

  .service-copy,
  .steps,
  .interior-strip > div,
  .salon-banner > div,
  .newsletter {
    padding: 22px;
  }

  .mega-top {
    min-height: 76px;
  }

  .mega-brand {
    padding: 16px 18px;
  }

  .mega-brand img {
    width: 36px;
    height: 36px;
  }

  .mega-brand strong {
    font-size: 16px;
  }

  .mega-brand strong:last-child {
    font-size: 12px;
  }

  .menu-close {
    min-width: 78px;
    padding: 0 18px;
  }

  .mega-grid {
    padding: 26px 20px 36px;
  }

  .mega-primary a,
  .mega-strong {
    font-size: 19px;
  }

  .mega-column a {
    font-size: 15px;
  }

  .mega-contact-card {
    padding: 18px;
  }

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

  .product-card {
    border-radius: 12px;
    contain-intrinsic-size: 320px;
  }

  .product-card__link {
    gap: 7px;
    padding: 8px 8px 0;
  }

  .product-card__media {
    height: clamp(168px, 48vw, 215px);
    border-radius: 10px;
  }

  .badge {
    top: 10px;
    left: 10px;
    padding: 4px 6px;
    border-radius: 6px;
    font-size: 8px;
  }

  .product-card__content {
    gap: 3px;
  }

  .product-card__content strong {
    display: -webkit-box;
    min-height: 28px;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.16;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .product-card__content span {
    display: -webkit-box;
    min-height: 26px;
    overflow: hidden;
    font-size: 10px;
    line-height: 1.25;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .product-card__price {
    flex-wrap: wrap;
    min-height: 22px !important;
    gap: 4px;
  }

  .product-card__price strong {
    font-size: 13px;
  }

  .product-card__price s {
    font-size: 10px;
  }

  .product-card__price em {
    padding: 2px 4px;
    font-size: 8px;
  }

  .swatches {
    gap: 4px;
    margin: 0 8px 10px;
  }

  .swatch {
    width: 18px;
    height: 18px;
  }

  .product-detail {
    padding: 28px 0;
  }

  .product-detail__media {
    border-radius: 18px;
  }

  .product-detail__media img {
    height: 480px;
  }

  .product-detail h1 {
    font-size: 40px;
  }

  .product-detail__color {
    font-size: 18px;
  }

  .product-detail__price {
    min-height: 42px;
  }

  .product-detail__price-inner strong {
    font-size: 30px;
  }

  .product-detail__price-inner s {
    font-size: 15px;
  }

  .product-detail__copy > p:not(.eyebrow):not(.product-detail__color) {
    font-size: 15px;
  }

  .article-page-main {
    padding: 28px 0 52px;
  }

  .article-hero {
    border-radius: 18px;
  }

  .article-hero img {
    height: 240px;
  }

  .article-content {
    padding: 24px;
  }

  .article-content h1 {
    font-size: 38px;
  }

  .article-content p,
  .article-content li {
    font-size: 15px;
  }

  .cart-panel__body {
    inset: 10px;
    width: auto;
    padding: 24px;
    border-radius: 18px;
  }

  .cart-panel h2 {
    font-size: 32px;
  }

  .cart-item {
    grid-template-columns: 56px 1fr;
  }

  .cart-item img {
    width: 56px;
    height: 76px;
  }

  .cart-item__controls {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .cart-item__remove {
    grid-column: 1 / -1;
  }

  .product-card__cart {
    width: calc(100% - 16px);
    height: 34px;
    margin: auto 8px 8px;
    border-radius: 8px;
    font-size: 11px;
  }

  .call-widget {
    right: 18px;
    bottom: 18px;
  }

  .call-widget__button {
    width: 62px;
    height: 62px;
  }

  .call-widget__button svg {
    width: 27px;
    height: 27px;
  }

  .call-widget__panel {
    min-width: 230px;
    padding: 14px 16px;
  }

  .call-widget__panel a {
    font-size: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
