/* MARIETTA visual system */

:root {
  --ink: #151414;
  --ink-soft: #242121;
  --paper: #fbfaf7;
  --pearl: #f1efea;
  --stone: #e1ded6;
  --white: #ffffff;
  --text: #393635;
  --muted: #7a746d;
  --muted-2: #a49d94;
  --champagne: #b9975b;
  --champagne-dark: #8f6d36;
  --wine: #6f3040;
  --sage: #74806e;
  --success: #2f6847;
  --warning: #a86122;
  --info: #426986;
  --shadow-soft: 0 18px 60px rgba(20, 18, 17, 0.10);
  --shadow-strong: 0 30px 90px rgba(20, 18, 17, 0.18);
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Montserrat", Arial, sans-serif;
  --radius: 8px;
  --transition: 220ms ease;
}

html.i18n-preload body {
  opacity: 0;
}

html.i18n-ready body {
  opacity: 1;
  transition: opacity 0.12s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  min-width: 320px;
  background: var(--paper);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.65;
  overflow-x: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

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

.section {
  padding: 112px 0;
}

.section-header {
  width: min(720px, 100%);
  margin: 0 auto 56px;
  text-align: center;
}

.section-eyebrow,
.hero__eyebrow,
.page-eyebrow {
  margin-bottom: 14px;
  color: var(--champagne);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-title,
.page-title {
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 3.6rem;
  font-weight: 400;
  line-height: 0.98;
}

.section-lead {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.9;
}

.text-center {
  text-align: center;
}

.mt-40 {
  margin-top: 40px;
}

.btn-primary,
.btn-outline,
.btn-ghost,
.btn-outline-dark,
.action-btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--ink);
  color: var(--white);
  padding: 0 30px;
  box-shadow: 0 18px 40px rgba(21, 20, 20, 0.18);
}

.btn-primary:hover {
  background: var(--wine);
  transform: translateY(-1px);
}

.btn-outline,
.btn-ghost {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
  padding: 0 26px;
}

.btn-outline:hover,
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.10);
}

.btn-outline-dark,
.action-btn {
  border-color: rgba(21, 20, 20, 0.22);
  background: transparent;
  color: var(--ink);
  padding: 0 24px;
}

.btn-outline-dark:hover,
.action-btn:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.btn-fitting-room {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1.5px dashed var(--champagne-dark);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 0 24px;
  color: var(--champagne-dark);
  background: transparent;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.btn-fitting-room:hover {
  background: var(--champagne-dark);
  color: var(--white);
  border-style: solid;
  transform: translateY(-1px);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--champagne-dark);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color var(--transition), transform var(--transition), background var(--transition), border-color var(--transition);
}

.link-arrow:hover {
  color: var(--wine);
  transform: translateX(2px);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  color: var(--white);
  transition: background var(--transition), box-shadow var(--transition), color var(--transition);
}

.header.scrolled {
  background: rgba(251, 250, 247, 0.94);
  box-shadow: 0 1px 0 rgba(21, 20, 20, 0.08);
  color: var(--ink);
  backdrop-filter: blur(18px);
}

.header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 22px 44px;
}

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

.header__nav--right {
  justify-content: flex-end;
  gap: 24px;
}

.header__logo,
.footer__logo,
.sidebar__logo,
.login-visual__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.header__logo img,
.footer__logo img,
.sidebar__logo img,
.login-visual__logo img {
  display: block;
  width: 178px;
  height: auto;
}

.header:not(.scrolled) .header__logo img,
.footer__logo img,
.sidebar__logo img,
.login-visual__logo img {
  filter: invert(1);
}

.footer__logo img {
  width: 210px;
}

.sidebar__logo img {
  width: 168px;
}

.login-visual__logo img {
  width: 230px;
}

.brand-mark {
  display: inline-flex;
  width: 84px;
  height: 64px;
  align-items: center;
  justify-content: center;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: auto;
}

.brand-mark--light img {
  filter: invert(1);
}

.nav-link {
  position: relative;
  color: currentColor;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  opacity: 0.76;
  text-transform: uppercase;
  transition: opacity var(--transition), color var(--transition);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.3);
  transition: opacity var(--transition), transform var(--transition);
}

.nav-link:hover,
.nav-link.active {
  opacity: 1;
}

.nav-link:hover::after,
.nav-link.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.header.scrolled .btn-outline,
.header.scrolled .btn-ghost {
  border-color: rgba(21, 20, 20, 0.2);
  color: var(--ink);
}

.header.scrolled .btn-outline:hover,
.header.scrolled .btn-ghost:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: center top;
  background-size: cover;
  transform: scale(1.02);
}

.hero__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.62;
  filter: brightness(0.82) saturate(0.95) contrast(1.02);
  pointer-events: none;
}

.hero__video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10,9,9,0.88) 0%, rgba(10,9,9,0.52) 50%, rgba(10,9,9,0.72) 100%),
    linear-gradient(180deg, rgba(10,9,9,0.18) 0%, rgba(10,9,9,0.68) 100%);
  pointer-events: none;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 9, 9, 0.86) 0%, rgba(10, 9, 9, 0.56) 38%, rgba(10, 9, 9, 0.18) 70%),
    linear-gradient(180deg, rgba(10, 9, 9, 0.18) 0%, rgba(10, 9, 9, 0.52) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(780px, 100%);
  padding: 132px 0 76px;
  margin-left: max(32px, calc((100vw - 1320px) / 2 + 32px));
}

.hero__title {
  margin-bottom: 22px;
  font-family: var(--font-serif);
  font-size: 6rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.9;
}

.hero__subtitle {
  width: min(620px, 100%);
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.9;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 46px;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__meta span {
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  padding-left: 14px;
}

.hero__meta span:first-child {
  border-left: 0;
  padding-left: 0;
}

.hero__editorial-note {
  width: min(460px, 100%);
  margin-top: 28px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.hero__editorial-note span {
  display: block;
  margin-bottom: 6px;
  color: var(--champagne);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero__editorial-note p {
  width: min(420px, 100%);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  line-height: 1.75;
}

.hero__scroll {
  position: absolute;
  left: 44px;
  bottom: 28px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.scroll-line {
  width: 56px;
  height: 1px;
  background: rgba(255, 255, 255, 0.38);
}

.hero--salon {
  min-height: 96vh;
  isolation: isolate;
  background: #0a0909;
}

.hero--salon .hero__bg {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  background-position: center center;
  opacity: 0.52;
  filter: saturate(0.85) contrast(1.05);
}

.hero--salon #cms-hero-bg {
  background-image: url("https://static.tildacdn.com/stor3663-3264-4762-b861-333261313062/f3be3449e6ca4302bc6f6c34b0e8a1e7.jpg") !important;
}

.hero--salon .hero__bg::after {
  background:
    linear-gradient(90deg, rgba(10,9,9,0.78) 0%, rgba(10,9,9,0.38) 55%, rgba(10,9,9,0.65) 100%),
    linear-gradient(180deg, rgba(10,9,9,0.08) 0%, rgba(10,9,9,0.58) 100%);
}

.hero--salon .hero__content {
  z-index: 3;
  width: min(700px, 100%);
}

.hero__mark {
  display: block;
  width: 68px;
  height: auto;
  margin-bottom: 28px;
  filter: brightness(0) invert(1);
  opacity: 0.88;
}

.hero--salon .hero__title {
  text-shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
}

.hero--salon .hero__subtitle {
  width: min(560px, 100%);
}

.hero__chandelier {
  position: absolute;
  top: -18px;
  left: 58%;
  z-index: 2;
  width: min(360px, 36vw);
  height: 220px;
  transform: translateX(-50%);
  pointer-events: auto;
}

.hero__chandelier::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 62%;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-top: 0;
  border-radius: 0 0 50% 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(185, 151, 91, 0.08));
  box-shadow: 0 26px 90px rgba(255, 244, 214, 0.22);
}

.hero__chandelier::after {
  content: "";
  position: absolute;
  top: 52px;
  left: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 0 38px rgba(255, 255, 255, 0.72),
    0 0 82px rgba(185, 151, 91, 0.44);
}

.hero__chandelier span {
  position: absolute;
  top: 42px;
  left: 50%;
  width: 1px;
  height: 156px;
  transform-origin: top center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.04));
}

.hero__chandelier span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 9px;
  height: 16px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 0 26px rgba(255, 255, 255, 0.48);
}

.hero__chandelier span:nth-child(1) {
  height: 110px;
  transform: translateX(-92px) rotate(7deg);
}

.hero__chandelier span:nth-child(2) {
  height: 142px;
  transform: translateX(-46px) rotate(3deg);
}

.hero__chandelier span:nth-child(3) {
  height: 166px;
  transform: translateX(0);
}

.hero__chandelier span:nth-child(4) {
  height: 136px;
  transform: translateX(46px) rotate(-3deg);
}

.hero__chandelier span:nth-child(5) {
  height: 104px;
  transform: translateX(92px) rotate(-7deg);
}

.hero__salon-gallery {
  position: absolute;
  right: max(28px, calc((100vw - 1320px) / 2 + 32px));
  bottom: 58px;
  z-index: 3;
  width: min(360px, 30vw);
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 12px;
  align-items: stretch;
}

.salon-tile,
.salon-note {
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
}

.salon-tile {
  position: relative;
  min-height: 176px;
  background-position: center top;
  background-size: cover;
}

.salon-tile--large {
  grid-row: span 2;
  min-height: 360px;
}

.salon-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 9, 9, 0) 34%, rgba(10, 9, 9, 0.62) 100%);
}

.salon-tile span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.salon-note {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 172px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 22px;
  background: rgba(251, 250, 247, 0.92);
  color: var(--ink);
  text-align: center;
  backdrop-filter: blur(18px);
  transition: transform 260ms ease, background 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.salon-note::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 0%, rgba(185, 151, 91, 0.06) 26%, rgba(255, 255, 255, 0.96) 44%, rgba(185, 151, 91, 0.34) 55%, transparent 100%);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-120%);
}

.salon-note::after {
  content: "";
  position: absolute;
  inset: -32px;
  z-index: -1;
  border-radius: 24px;
  background: radial-gradient(circle, rgba(255, 246, 222, 0.42), rgba(185, 151, 91, 0.10) 42%, transparent 68%);
  opacity: 0;
  pointer-events: none;
  transform: scale(0.92);
}

.salon-note img {
  position: relative;
  z-index: 3;
  width: 56px;
  height: auto;
  transition: transform 260ms ease, filter 260ms ease;
}

.salon-note p {
  position: relative;
  z-index: 3;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.08;
  transition: color 260ms ease;
}

.hero__salon-gallery:hover .salon-note,
.salon-note:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.98);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.30),
    0 0 42px rgba(255, 246, 222, 0.34);
  animation: salon-note-breathe 1600ms ease-in-out infinite;
}

.hero__salon-gallery:hover .salon-note::before,
.salon-note:hover::before {
  animation: salon-note-shine 1200ms ease-in-out infinite;
}

.hero__salon-gallery:hover .salon-note::after,
.salon-note:hover::after {
  animation: salon-note-aura 1500ms ease-in-out infinite;
}

.hero__salon-gallery:hover .salon-note img,
.salon-note:hover img {
  transform: scale(1.07);
  filter:
    drop-shadow(0 0 10px rgba(185, 151, 91, 0.40))
    drop-shadow(0 0 22px rgba(255, 246, 222, 0.30));
}

.hero__salon-gallery:hover .salon-note p,
.salon-note:hover p {
  color: var(--wine);
}

.hero--salon:has(.salon-note:hover) .hero__chandelier::before {
  border-color: rgba(255, 255, 255, 0.48);
  box-shadow:
    0 24px 80px rgba(255, 244, 214, 0.30),
    0 0 44px rgba(185, 151, 91, 0.20);
}

.hero--salon:has(.salon-note:hover) .hero__chandelier::after {
  animation: crystal-glow 1200ms ease-in-out infinite;
}

.hero--salon:has(.salon-note:hover) .hero__chandelier span {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.08));
}

.hero--salon:has(.salon-note:hover) .hero__chandelier span::after {
  animation: crystal-drop-glow 1200ms ease-in-out infinite;
}

.hero__chandelier:hover::before {
  border-color: rgba(255, 255, 255, 0.54);
  box-shadow:
    0 24px 80px rgba(255, 244, 214, 0.36),
    0 0 44px rgba(185, 151, 91, 0.24);
}

.hero__chandelier:hover::after {
  animation: crystal-glow 1200ms ease-in-out infinite;
}

.hero__chandelier:hover span {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.10));
}

.hero__chandelier:hover span::after {
  animation: crystal-drop-glow 1200ms ease-in-out infinite;
}

@keyframes salon-note-breathe {
  0%, 100% {
    box-shadow:
      0 30px 90px rgba(0, 0, 0, 0.30),
      0 0 34px rgba(255, 246, 222, 0.28);
  }
  50% {
    box-shadow:
      0 34px 96px rgba(0, 0, 0, 0.34),
      0 0 58px rgba(255, 246, 222, 0.48),
      0 0 22px rgba(185, 151, 91, 0.24);
  }
}

@keyframes salon-note-shine {
  0% {
    opacity: 0;
    transform: translateX(-120%);
  }
  26% {
    opacity: 1;
  }
  58%,
  100% {
    opacity: 0;
    transform: translateX(120%);
  }
}

@keyframes salon-note-aura {
  0%, 100% {
    opacity: 0.24;
    transform: scale(0.94);
  }
  50% {
    opacity: 0.72;
    transform: scale(1.04);
  }
}

@keyframes crystal-glow {
  0%, 100% {
    background: rgba(255, 255, 255, 0.92);
    box-shadow:
      0 0 38px rgba(255, 255, 255, 0.72),
      0 0 82px rgba(185, 151, 91, 0.44);
  }
  38% {
    background: #fffaf0;
    box-shadow:
      0 0 48px rgba(255, 255, 255, 0.95),
      0 0 120px rgba(185, 151, 91, 0.64);
  }
  58% {
    background: rgba(255, 255, 255, 0.72);
    box-shadow:
      0 0 18px rgba(255, 255, 255, 0.42),
      0 0 54px rgba(185, 151, 91, 0.22);
  }
}

@keyframes crystal-drop-glow {
  0%, 100% {
    transform: translateX(-50%) scale(1);
    box-shadow: 0 0 26px rgba(255, 255, 255, 0.48);
  }
  42% {
    transform: translateX(-50%) scale(1.18);
    box-shadow:
      0 0 32px rgba(255, 255, 255, 0.78),
      0 0 62px rgba(185, 151, 91, 0.40);
  }
}

@media (prefers-reduced-motion: reduce) {
  .salon-note:hover::before,
  .hero__salon-gallery:hover .salon-note::before,
  .salon-note:hover::after,
  .hero__salon-gallery:hover .salon-note::after,
  .salon-note:hover,
  .hero__salon-gallery:hover .salon-note,
  .hero--salon:has(.salon-note:hover) .hero__chandelier::after,
  .hero--salon:has(.salon-note:hover) .hero__chandelier span::after,
  .hero__chandelier:hover::after,
  .hero__chandelier:hover span::after {
    animation: none;
  }
}

.stats {
  background: var(--paper);
  border-bottom: 1px solid var(--stone);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--stone);
}

.stats__item {
  min-height: 132px;
  padding: 28px;
  border-right: 1px solid var(--stone);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stats__num {
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 2.8rem;
  line-height: 1;
}

.stats__label {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.showroom-signature {
  position: relative;
  padding: 108px 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, var(--paper) 0%, #f3f0ea 48%, var(--ink) 48%, var(--ink) 100%);
}

.showroom-signature::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 48%;
  width: 1px;
  background: rgba(185, 151, 91, 0.32);
}

.showroom-signature__inner {
  position: relative;
  display: grid;
  grid-template-columns: 0.92fr 0.78fr 0.62fr;
  gap: 34px;
  align-items: center;
}

.showroom-signature__copy {
  padding-right: 36px;
}

.showroom-signature__copy p:not(.section-eyebrow) {
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.95;
}

.showroom-signature__frame {
  position: relative;
}

.showroom-signature__frame::before {
  content: "";
  position: absolute;
  top: -28px;
  left: 50%;
  z-index: 2;
  width: 72%;
  height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-top: 0;
  border-radius: 0 0 50% 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.showroom-signature__image {
  min-height: 620px;
  border-radius: 8px;
  background-position: center top;
  background-size: cover;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
}

.showroom-signature__caption {
  position: absolute;
  right: -28px;
  bottom: 28px;
  width: min(250px, 82%);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(21, 20, 20, 0.78);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.showroom-signature__caption span {
  display: block;
  margin-bottom: 18px;
  color: var(--champagne);
  font-family: var(--font-serif);
  font-size: 2.2rem;
  line-height: 1;
}

.showroom-signature__caption p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  line-height: 1.8;
}

.showroom-signature__details {
  display: grid;
  gap: 18px;
  color: var(--white);
}

.showroom-signature__details div {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.showroom-signature__details span {
  display: block;
  margin-bottom: 10px;
  color: var(--champagne);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.showroom-signature__details p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
  line-height: 1.8;
}

@media (max-width: 1180px) {
  .hero__salon-gallery {
    width: min(320px, 28vw);
  }

  .showroom-signature {
    background:
      linear-gradient(180deg, var(--paper) 0%, #f3f0ea 44%, var(--ink) 44%, var(--ink) 100%);
  }

  .showroom-signature::before {
    display: none;
  }

  .showroom-signature__inner {
    grid-template-columns: 0.9fr 1fr;
  }

  .showroom-signature__details {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 860px) {
  .hero--salon .hero__bg {
    left: 0;
    width: 100%;
    opacity: 0.62;
    background-position: center top;
  }

  .hero--salon .hero__bg::after {
    background:
      linear-gradient(90deg, rgba(10, 9, 9, 0.82) 0%, rgba(10, 9, 9, 0.48) 100%),
      linear-gradient(180deg, rgba(10, 9, 9, 0.18) 0%, rgba(10, 9, 9, 0.76) 100%);
  }

  .hero__chandelier {
    left: 72%;
    width: 260px;
    opacity: 0.72;
  }

  .hero__salon-gallery {
    display: none;
  }

  .showroom-signature {
    padding: 76px 0;
    background: var(--ink);
  }

  .showroom-signature__inner,
  .showroom-signature__details {
    grid-template-columns: 1fr;
  }

  .showroom-signature__copy {
    padding-right: 0;
    color: var(--white);
  }

  .showroom-signature__copy .section-title {
    color: var(--white);
  }

  .showroom-signature__copy p:not(.section-eyebrow) {
    color: rgba(255, 255, 255, 0.7);
  }

  .showroom-signature__image {
    min-height: 520px;
  }

  .showroom-signature__caption {
    right: 18px;
    bottom: 18px;
  }
}

@media (max-width: 520px) {
  .hero__chandelier {
    left: 68%;
    width: 220px;
  }

  .showroom-signature__image {
    min-height: 430px;
  }

  .showroom-signature__caption {
    position: static;
    width: 100%;
    margin-top: 12px;
  }
}

.campaign-preview {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(36px, 5vw, 84px);
  align-items: center;
  padding: 112px max(32px, calc((100vw - 1320px) / 2 + 32px));
  background: #11100f;
  color: var(--white);
}

.campaign-preview__media {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  min-height: 620px;
}

.campaign-shot {
  min-height: 260px;
  background-position: center top;
  background-size: cover;
  filter: saturate(0.92) contrast(1.02);
}

.campaign-shot--main {
  grid-row: 1 / span 2;
}

.campaign-preview__copy .section-title {
  color: var(--white);
  font-size: clamp(2.6rem, 4.6vw, 5.15rem);
}

.campaign-preview__copy > p:not(.section-eyebrow) {
  margin: 24px 0 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  line-height: 1.9;
}

.campaign-preview__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.campaign-preview__facts span {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 8px 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.campaign-preview .btn-outline-dark {
  border-color: rgba(255, 255, 255, 0.38);
  color: var(--white);
}

.campaign-preview .btn-outline-dark:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

@media (max-width: 980px) {
  .campaign-preview {
    grid-template-columns: 1fr;
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .campaign-preview__media {
    min-height: 480px;
  }
}

@media (max-width: 620px) {
  .campaign-preview {
    padding-left: 20px;
    padding-right: 20px;
  }

  .campaign-preview__media {
    grid-template-columns: 1fr 1fr;
    min-height: 0;
  }

  .campaign-shot,
  .campaign-shot--main {
    grid-row: auto;
    min-height: 210px;
  }

  .campaign-shot--main {
    grid-column: 1 / -1;
  }
}

.collections {
  padding: 112px 0;
  background: var(--paper);
}

.collections__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr 0.95fr;
  gap: 18px;
}

.coll-card,
.dress-card,
.value-card,
.dash-stat-card,
.order-main-card,
.order-sidebar-card,
.contact-note,
.mockup-window {
  border: 1px solid rgba(21, 20, 20, 0.10);
  border-radius: var(--radius);
  background: var(--white);
}

.coll-card {
  position: relative;
  overflow: hidden;
}

.coll-card__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  min-height: 420px;
  background-position: center top;
  background-size: cover;
  transition: transform 700ms ease;
}

.coll-card__img--motion:not(.coll-card__img--video) {
  animation: collPhotoDrift 13s ease-in-out infinite alternate;
}

.coll-card__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.42;
  filter: brightness(1.12) saturate(0.92) contrast(1.02);
}

.coll-card__img--video::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(10, 9, 9, 0) 0%, rgba(10, 9, 9, 0.18) 100%);
  pointer-events: none;
}

.coll-card__img--photo-film {
  background-image: none !important;
}

.coll-card__photo-film {
  position: absolute;
  inset: -4%;
  z-index: 0;
  background-position: center top;
  background-size: cover;
  animation: photoFilmMove 6s ease-in-out infinite alternate;
  filter: brightness(1.06) saturate(1.02) contrast(1.03);
  transform-origin: 50% 30%;
}

.coll-card__film-light,
.coll-card__film-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.coll-card__film-light {
  background:
    linear-gradient(108deg, transparent 0%, rgba(255, 255, 255, 0.03) 28%, rgba(255, 242, 212, 0.30) 46%, rgba(255, 255, 255, 0.05) 58%, transparent 76%),
    radial-gradient(circle at 52% 18%, rgba(255, 255, 255, 0.18), transparent 34%);
  mix-blend-mode: screen;
  animation: photoFilmLight 6s ease-in-out infinite;
}

.coll-card__film-grain {
  background:
    linear-gradient(180deg, rgba(10, 9, 9, 0) 48%, rgba(10, 9, 9, 0.18) 100%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.018) 0 1px, transparent 1px 4px);
  opacity: 0.55;
}

.coll-card--large .coll-card__img {
  aspect-ratio: 5 / 6;
  min-height: 560px;
}

.coll-card:hover .coll-card__img {
  transform: scale(1.025);
}

@keyframes collPhotoDrift {
  0% {
    background-position: center 0%;
  }

  100% {
    background-position: center 12%;
  }
}

@keyframes photoFilmMove {
  0% {
    transform: scale(1.02) translate3d(-1.2%, -1%, 0);
    background-position: center 0%;
  }

  100% {
    transform: scale(1.10) translate3d(1.1%, 1.5%, 0);
    background-position: center 10%;
  }
}

@keyframes photoFilmLight {
  0% {
    opacity: 0;
    transform: translateX(-32%);
  }

  45% {
    opacity: 0.86;
  }

  100% {
    opacity: 0.20;
    transform: translateX(34%);
  }
}

.coll-card__info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(10, 9, 9, 0) 0%, rgba(10, 9, 9, 0.76) 100%);
}

.coll-card__info h3,
.dress-card__info h3,
.value-card h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.1;
}

.coll-card__info h3 {
  font-size: 2rem;
}

.coll-card__eyebrow {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.coll-card__info p {
  margin: 6px 0 14px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
}

.coll-card__info .link-arrow {
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

.coll-card__info .link-arrow:hover {
  border-color: var(--white);
  background: var(--wine);
  color: var(--white);
}

.collections__cta {
  margin-top: 46px;
  text-align: center;
}

.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
  background: var(--ink);
}

.about-strip__text {
  display: flex;
  align-items: center;
  padding: 96px 0;
  color: var(--white);
}

.about-strip__text .container {
  width: min(100% - 80px, 620px);
  margin-left: auto;
  margin-right: 68px;
}

.about-strip__text .section-title {
  color: var(--white);
}

.about-strip__desc {
  margin: 26px 0 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  line-height: 1.95;
}

.about-strip__visual {
  min-height: 640px;
  background-position: center top;
  background-size: cover;
}

.visual-block {
  width: min(420px, calc(100% - 48px));
  margin: 72px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(21, 20, 20, 0.52);
  color: var(--white);
  backdrop-filter: blur(16px);
}

.visual-block__inner {
  display: grid;
  gap: 18px;
}

.visual-tag {
  color: var(--champagne);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.visual-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.partner-cta {
  padding: 112px 0;
  background: var(--pearl);
}

.partner-cta__inner {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 72px;
  align-items: center;
}

.partner-cta__text h2 {
  margin-bottom: 20px;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
}

.partner-cta__text p {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.9;
}

.partner-cta__list {
  display: grid;
  gap: 10px;
  margin: 0 0 34px;
  list-style: none;
}

.partner-cta__list li {
  position: relative;
  padding-left: 24px;
  color: var(--text);
  font-size: 0.9rem;
}

.partner-cta__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 10px;
  height: 1px;
  background: var(--champagne);
}

.brand-system {
  padding: 104px 0;
  background: var(--pearl);
}

.brand-system__inner {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 64px;
  align-items: center;
}

.brand-system__media {
  overflow: hidden;
  border: 1px solid rgba(21, 20, 20, 0.10);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.brand-system__media img {
  display: block;
  width: 100%;
  height: auto;
}

.brand-system__copy {
  max-width: 520px;
}

.brand-system__copy .brand-mark {
  margin-bottom: 24px;
}

.brand-system__copy p:not(.section-eyebrow) {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.9;
}

.mockup-window {
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.mockup-bar {
  display: flex;
  gap: 7px;
  padding: 16px 20px;
  background: var(--ink);
}

.mockup-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
}

.mockup-content {
  padding: 28px;
  background: var(--white);
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.mockup-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wine), var(--champagne));
}

.mockup-line {
  height: 8px;
  width: 160px;
  border-radius: 999px;
  background: var(--pearl);
}

.mockup-line.sm {
  height: 6px;
  width: 110px;
}

.mockup-line.w40 { width: 40%; }
.mockup-line.w50 { width: 50%; }
.mockup-line.w60 { width: 60%; }
.mockup-line.w70 { width: 70%; }

.mockup-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}

.mockup-stat {
  padding: 16px 14px;
  border-radius: var(--radius);
  background: var(--paper);
}

.mockup-num {
  margin-bottom: 8px;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 2rem;
}

.mockup-orders {
  display: grid;
  gap: 10px;
}

.mockup-order {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--stone);
  border-radius: var(--radius);
}

.mockup-badge,
.badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.mockup-badge.green,
.badge-delivered,
.badge-paid {
  background: rgba(47, 104, 71, 0.12);
  color: var(--success);
}

.mockup-badge.blue,
.badge-production {
  background: rgba(66, 105, 134, 0.12);
  color: var(--info);
}

.mockup-badge.gray {
  background: var(--pearl);
  color: var(--muted);
}

.badge-pending {
  background: rgba(168, 97, 34, 0.12);
  color: var(--warning);
}

.badge-new {
  background: rgba(111, 48, 64, 0.12);
  color: var(--wine);
}

.footer {
  padding: 72px 0 0;
  background: var(--ink);
  color: var(--white);
}

.footer__top {
  display: grid;
  grid-template-columns: 0.85fr 1.6fr;
  gap: 80px;
  padding-bottom: 54px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__brand p,
.footer__col a,
.footer__bottom {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.82rem;
}

.footer__brand p {
  margin-top: 16px;
  line-height: 1.8;
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.footer__col h4 {
  margin-bottom: 18px;
  color: var(--champagne);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer__col a {
  display: block;
  margin-bottom: 10px;
  transition: color var(--transition);
}

.footer__col a:hover {
  color: var(--white);
}

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer__social a {
  display: inline-flex;
  width: 42px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
}

.page-hero {
  position: relative;
  padding: 156px 0 88px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  text-align: center;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--page-image, none);
  background-position: center top;
  background-size: cover;
  opacity: 0.34;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(21, 20, 20, 0.60), rgba(21, 20, 20, 0.88));
}

.page-hero--catalog::before {
  opacity: 0.78;
  filter: brightness(1.16) saturate(1.04) contrast(1.02);
  background-position: center 38%;
}

.page-hero--catalog::after {
  background:
    radial-gradient(circle at 50% 30%, rgba(21, 20, 20, 0.08), rgba(21, 20, 20, 0.50) 58%, rgba(21, 20, 20, 0.74) 100%),
    linear-gradient(180deg, rgba(21, 20, 20, 0.18), rgba(21, 20, 20, 0.62));
}

.page-hero--catalog .section-eyebrow,
.page-hero--catalog .section-title,
.page-hero--catalog p:not(.section-eyebrow) {
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.62);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero .section-title,
.page-title {
  color: inherit;
}

.page-hero p:not(.section-eyebrow) {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.72);
}

.catalog-section,
.about-intro,
.contacts-section {
  padding: 96px 0;
  background: var(--paper);
}

.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 44px;
}

.filter-btn {
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid rgba(21, 20, 20, 0.14);
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

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

.catalog-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: end;
  margin-bottom: 44px;
  padding: 34px 0;
  border-top: 1px solid rgba(21, 20, 20, 0.14);
  border-bottom: 1px solid rgba(21, 20, 20, 0.14);
}

.catalog-editorial__copy h2 {
  width: min(760px, 100%);
  margin: 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.3vw, 3.6rem);
  font-weight: 500;
  line-height: 1;
}

.catalog-editorial__copy p:not(.section-eyebrow) {
  width: min(680px, 100%);
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.85;
}

.catalog-editorial__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  max-width: 420px;
}

.catalog-editorial__chip {
  min-height: 38px;
  border: 1px solid rgba(21, 20, 20, 0.16);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  padding: 0 16px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.catalog-editorial__chip:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.catalog-editorial__chip--favorite {
  border-color: rgba(185, 151, 91, 0.42);
  color: var(--champagne-dark);
}

.favorites-folder {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) 1fr auto;
  align-items: center;
  gap: 18px;
  margin: 0 0 28px;
  padding: 16px;
  border: 1px solid rgba(21, 20, 20, 0.11);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(246, 242, 233, 0.82)),
    var(--white);
  box-shadow: 0 18px 46px rgba(36, 30, 25, 0.06);
}

.favorites-folder.active,
.favorites-folder.has-items {
  border-color: rgba(185, 151, 91, 0.40);
}

.favorites-folder__main {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 74px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.favorites-folder__icon {
  position: relative;
  width: 72px;
  height: 52px;
  flex: 0 0 auto;
  border: 1px solid rgba(185, 151, 91, 0.46);
  border-radius: 6px;
  background: linear-gradient(160deg, #f8efe0, #d9bd86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55), 0 14px 28px rgba(36, 30, 25, 0.12);
}

.favorites-folder__icon::before {
  content: "";
  position: absolute;
  left: 7px;
  top: -10px;
  width: 34px;
  height: 16px;
  border: 1px solid rgba(185, 151, 91, 0.46);
  border-bottom: 0;
  border-radius: 6px 6px 0 0;
  background: #f5e6cd;
}

.favorites-folder__icon::after {
  content: "♥";
  position: absolute;
  right: 11px;
  top: 15px;
  color: var(--wine);
  font-size: 0.95rem;
  line-height: 1;
}

.favorites-folder__copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.favorites-folder__eyebrow {
  color: var(--champagne-dark);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.favorites-folder__title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  line-height: 1;
  color: var(--ink);
}

.favorites-folder__count {
  display: inline-flex;
  align-items: center;
  width: max-content;
  margin-left: auto;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(21, 20, 20, 0.10);
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.favorites-folder.has-items .favorites-folder__count {
  border-color: rgba(119, 31, 52, 0.22);
  color: var(--wine);
}

.favorites-folder__preview {
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
}

.favorites-folder__empty {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.6;
}

.favorites-folder__thumb {
  width: 48px;
  height: 62px;
  flex: 0 0 auto;
  padding: 0;
  border: 1px solid rgba(21, 20, 20, 0.10);
  border-radius: 4px;
  overflow: hidden;
  background: var(--pearl);
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition);
}

.favorites-folder__thumb:hover {
  transform: translateY(-2px);
  border-color: var(--champagne-dark);
}

.favorites-folder__thumb span {
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center top;
}

.favorites-folder__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
}

.favorites-folder__clear {
  display: none;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border: 1px solid rgba(21, 20, 20, 0.14);
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.favorites-folder__clear:hover {
  border-color: var(--wine);
  color: var(--wine);
  background: #fff8f8;
}

@media (max-width: 900px) {
  .favorites-folder {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .favorites-folder__main {
    width: 100%;
  }

  .favorites-folder__preview {
    min-height: 48px;
  }
}

@media (max-width: 980px) {
  .catalog-editorial {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .catalog-editorial__nav {
    justify-content: flex-start;
    max-width: none;
  }
}

.dress-card {
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.dress-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.dress-card__img {
  position: relative;
  aspect-ratio: 3 / 4;
  min-height: 360px;
  overflow: hidden;
  background-position: center top;
  background-size: cover;
}

.dress-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  max-width: calc(100% - 28px);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(10, 9, 9, 0.46);
  color: var(--white);
  padding: 6px 10px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.favorite-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  background: rgba(10, 9, 9, 0.38);
  color: var(--white);
  font-size: 1.08rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.favorite-btn:hover,
.favorite-btn.active {
  background: var(--white);
  color: var(--wine);
  transform: scale(1.05);
}

.dress-card__img-real {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-position: center top;
  background-size: cover;
  opacity: 1;
  transform: scale(1);
  transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1), opacity 260ms ease;
  will-change: transform, opacity;
}

.dress-card__img-real--hover {
  opacity: 0;
  transform: scale(1.015);
}

.dress-card:hover .dress-card__img-real--main {
  transform: scale(1.08);
}

.dress-card--has-alt:hover .dress-card__img-real--main {
  opacity: 0;
  transform: scale(1.055);
}

.dress-card--has-alt:hover .dress-card__img-real--hover {
  opacity: 1;
  transform: scale(1.08);
}

.dress-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 7px;
  padding: 0 16px 18px;
  background: linear-gradient(180deg, rgba(21, 20, 20, 0) 54%, rgba(21, 20, 20, 0.58) 100%);
  opacity: 0;
  transition: opacity var(--transition);
}

.dress-card__overlay .btn-primary,
.dress-card__quick {
  min-height: 36px;
  transform: translateY(10px);
  transition:
    transform 220ms ease,
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
}

.dress-card__overlay .btn-primary {
  padding: 0 16px;
  box-shadow: none;
  font-size: 0.62rem;
  letter-spacing: 0.10em;
}

.btn-card-fitting {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--ink);
  border: 1px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
  transition: background var(--transition), transform var(--transition);
  text-decoration: none;
}
.btn-card-fitting:hover {
  background: var(--champagne-dark);
  color: var(--white);
  transform: scale(1.12);
}

.dress-card:hover .dress-card__overlay {
  opacity: 1;
}

.dress-card:hover .dress-card__overlay .btn-primary,
.dress-card:hover .dress-card__quick {
  transform: translateY(0);
}

.dress-card__quick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  padding: 0 15px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dress-card__quick:hover {
  border-color: var(--white);
  background: var(--ink);
  color: var(--white);
}

.dress-card__info {
  padding: 18px;
}

.dress-card__info h3 {
  color: var(--ink);
  font-size: 1.45rem;
}

.dress-card__info p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.8rem;
}

.dress-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.dress-card__features span {
  border: 1px solid rgba(21, 20, 20, 0.10);
  border-radius: 999px;
  background: var(--pearl);
  color: var(--muted);
  padding: 4px 8px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.dress-card__art {
  margin-top: 10px;
  color: var(--champagne-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 18px;
}

.price-hidden {
  color: var(--muted);
  font-style: normal;
}

.dress-card__price {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.9rem;
}

.about-intro__inner,
.contacts-inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 72px;
  align-items: center;
}

.about-intro__visual {
  position: relative;
}

.about-visual-main {
  aspect-ratio: 4 / 5;
  min-height: 560px;
  border-radius: var(--radius);
  background-position: center top;
  background-size: cover;
  box-shadow: var(--shadow-soft);
}

.about-badge {
  position: absolute;
  right: -28px;
  bottom: 34px;
  width: 180px;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}

.about-badge__num {
  color: var(--champagne);
  font-family: var(--font-serif);
  font-size: 3rem;
  line-height: 1;
}

.about-badge p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-intro__text p:not(.section-eyebrow) {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.9;
}

.about-values {
  padding: 104px 0;
  background: var(--ink);
}

.about-values .section-title {
  color: var(--white);
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 54px;
}

.value-card {
  min-height: 280px;
  padding: 34px;
  background: var(--ink-soft);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.value-card__num {
  margin-bottom: 34px;
  color: var(--champagne);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.value-card h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 1.65rem;
}

.value-card p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
  line-height: 1.85;
}

.contacts-inner {
  align-items: start;
}

.contacts-info h2,
.contact-form h2,
.login-box h2,
.dashboard-topbar h1,
.new-order-page h1,
.dash-section__header h2,
.order-main-card h2,
.order-sidebar-card h3 {
  color: var(--ink);
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.1;
}

.contacts-info h2 {
  margin-bottom: 24px;
  font-size: 3rem;
}

.contact-dept {
  margin-bottom: 8px;
}

.contact-dept__title {
  margin: 28px 0 0;
  padding-bottom: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold, #b9975b);
  border-bottom: 1px solid var(--gold, #b9975b);
}

.contact-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--stone);
}

.contact-item__label {
  margin-bottom: 7px;
  color: var(--champagne-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-item__value {
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 1.55rem;
  line-height: 1.25;
}

.contact-item__value a:hover {
  color: var(--wine);
}

.contact-note {
  margin-top: 34px;
  padding: 28px;
  background: var(--pearl);
}

.contact-note p {
  margin-bottom: 20px;
  color: var(--muted);
}

.contact-form {
  padding: 36px;
  border: 1px solid rgba(21, 20, 20, 0.10);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.contact-form h2 {
  margin-bottom: 28px;
  font-size: 2rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--stone);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  font-size: 0.92rem;
  outline: none;
  padding: 12px 14px;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.form-group textarea {
  min-height: 124px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--champagne);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(185, 151, 91, 0.12);
}

.success-message {
  margin-top: 20px;
  padding: 18px;
  border-left: 3px solid var(--success);
  border-radius: 6px;
  background: rgba(47, 104, 71, 0.10);
  color: var(--success);
  font-size: 0.9rem;
}

.login-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(520px, 1fr);
}

.login-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 58px;
  background-position: center top;
  background-size: cover;
  color: var(--white);
}

.login-visual--brand {
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  gap: clamp(72px, 13vh, 132px);
  padding: 58px;
  background: #050505 !important;
  background-image: none !important;
  text-align: center;
}

.login-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(21, 20, 20, 0.18), rgba(21, 20, 20, 0.82));
}

.login-visual--brand::before {
  background: none;
}

.login-visual--brand::after {
  display: none;
}

.login-visual > * {
  position: relative;
  z-index: 1;
}

.login-visual--brand .login-visual__logo {
  position: absolute;
  top: clamp(46px, 7vh, 72px);
  left: 50%;
  margin: 0;
  transform: translateX(-50%);
}

.login-visual--brand .login-visual__logo img {
  width: clamp(118px, 12vw, 168px);
  filter: invert(1) brightness(2.35) contrast(0.96);
  opacity: 0.96;
}

.login-visual__brand-lockup {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(520px, 72%);
  margin: 0 auto;
}

.login-visual__brand-lockup img {
  display: block;
  width: 100%;
  height: auto;
  filter: invert(1) brightness(2.45) contrast(0.94);
  opacity: 0.96;
}

.login-visual__sub {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.login-visual--brand .login-visual__sub {
  display: none;
}

.login-benefits {
  display: grid;
  gap: 14px;
  margin-top: 42px;
}

.login-visual--brand .login-benefits {
  display: none;
}

.login-benefits li {
  list-style: none;
  padding-left: 22px;
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.login-visual--brand .login-benefits li {
  padding-left: 0;
  color: rgba(255,255,255,0.76);
  text-align: center;
}

.login-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 10px;
  height: 1px;
  background: var(--champagne);
}

.login-visual--brand .login-benefits li::before {
  display: none;
}

.login-form-area {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px;
  background: var(--paper);
}

.login-box {
  width: min(100%, 470px);
}

.login-box h2 {
  margin-bottom: 8px;
  font-size: 2.6rem;
}

.login-box > p {
  margin-bottom: 32px;
  color: var(--muted);
}

.tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 28px;
  padding: 6px;
  border-radius: 999px;
  background: var(--pearl);
}

.tab-btn {
  min-height: 40px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}

.tab-btn.active {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 8px 22px rgba(21, 20, 20, 0.08);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.form-forgot {
  display: block;
  margin: -8px 0 20px;
  text-align: right;
  color: var(--champagne-dark);
  font-size: 0.8rem;
}

.form-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.form-divider::before,
.form-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--stone);
}

.demo-note {
  margin-top: 28px;
  padding: 18px;
  border: 1px solid rgba(185, 151, 91, 0.24);
  border-radius: var(--radius);
  background: rgba(185, 151, 91, 0.08);
  color: var(--muted);
  font-size: 0.82rem;
}

.dashboard-layout {
  display: grid;
  grid-template-columns: 270px 1fr;
  min-height: 100vh;
  background: var(--paper);
}

.sidebar {
  position: sticky;
  top: 0;
  display: flex;
  height: 100vh;
  flex-direction: column;
  overflow-y: auto;
  background: var(--ink);
  color: var(--white);
}

.sidebar__logo {
  padding: 30px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.sidebar__user {
  padding: 24px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.sidebar__user-name {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 600;
}

.sidebar__user-role {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sidebar__nav {
  flex: 1;
  padding: 20px 0;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding: 0 28px;
  border-left: 3px solid transparent;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.sidebar-link:hover,
.sidebar-link.active {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border-left-color: var(--champagne);
}

.sidebar-link__icon {
  width: 22px;
  color: var(--champagne);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.sidebar__footer {
  display: flex;
  gap: 16px;
  padding: 22px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.sidebar__footer a {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.78rem;
}

.dashboard-main,
.new-order-page {
  padding: 42px 48px;
}

.dashboard-topbar {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-bottom: 36px;
}

.dashboard-topbar h1,
.new-order-page h1 {
  font-size: 2.6rem;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.notif-btn {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--stone);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 800;
}

.notif-dot {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 9px;
  height: 9px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--wine);
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.dash-stat-card {
  padding: 24px;
}

.dash-stat-card__label {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dash-stat-card__value {
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 2.6rem;
  line-height: 1;
}

.dash-stat-card__sub {
  margin-top: 8px;
  color: var(--champagne-dark);
  font-size: 0.8rem;
}

.dash-section {
  margin-bottom: 34px;
}

.dash-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.dash-section__header h2,
.order-main-card h2,
.order-sidebar-card h3 {
  font-size: 1.65rem;
}

.orders-table {
  overflow: auto;
  border: 1px solid rgba(21, 20, 20, 0.10);
  border-radius: var(--radius);
  background: var(--white);
}

.orders-table table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
}

.orders-table th,
.orders-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--stone);
  text-align: left;
  vertical-align: middle;
}

.orders-table th {
  background: var(--pearl);
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.orders-table td {
  color: var(--text);
  font-size: 0.86rem;
}

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

.orders-table tr:hover td {
  background: rgba(185, 151, 91, 0.05);
}

.quick-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.quick-list,
.notice-list {
  display: grid;
  gap: 12px;
}

.quick-action,
.notice-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(21, 20, 20, 0.10);
  border-radius: var(--radius);
  background: var(--white);
}

.quick-action:hover {
  border-color: var(--champagne);
  box-shadow: var(--shadow-soft);
}

.quick-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--pearl);
  color: var(--champagne-dark);
  font-size: 0.72rem;
  font-weight: 800;
}

.notice-item {
  align-items: start;
  border-left: 3px solid var(--champagne);
}

.notice-item.warning { border-left-color: var(--warning); }
.notice-item.info { border-left-color: var(--info); }
.notice-item.success { border-left-color: var(--success); }

.notice-label {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.order-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  margin-bottom: 34px;
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  background: var(--white);
}

.order-step {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  padding: 16px;
  border-right: 1px solid var(--stone);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.order-step:last-child {
  border-right: 0;
}

.order-step.active {
  background: rgba(185, 151, 91, 0.10);
  color: var(--ink);
}

.order-step.done {
  color: var(--champagne-dark);
}

.step-num {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--pearl);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.order-step.active .step-num,
.order-step.done .step-num {
  background: var(--ink);
  color: var(--white);
}

.order-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
}

.order-main-card,
.order-sidebar-card {
  padding: 30px;
}

.order-main-card h2,
.order-sidebar-card h3 {
  margin-bottom: 24px;
}

.order-catalog-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-height: 560px;
  overflow-y: auto;
  padding-right: 4px;
  margin-bottom: 28px;
}

.mini-dress {
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: var(--radius);
  background: var(--paper);
  cursor: pointer;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.mini-dress:hover,
.mini-dress.selected {
  border-color: var(--champagne);
  box-shadow: 0 14px 34px rgba(21, 20, 20, 0.10);
}

.mini-dress__photo,
.mini-dress__img {
  aspect-ratio: 3 / 4;
  min-height: 150px;
  background-position: center top;
  background-size: cover;
}

.mini-dress__info {
  padding: 11px;
}

.mini-dress__info p {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
}

.mini-dress__info span {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.68rem;
}

/* qty row on each mini-dress card */
.mini-dress__qty {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-top: 1px solid var(--stone);
  background: var(--white);
}

.mini-dress__qty .qty-btn {
  flex: 1;
  height: 34px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}

.mini-dress__qty .qty-btn:hover {
  background: var(--pearl);
}

.mini-dress.selected .mini-dress__qty .qty-btn {
  color: var(--champagne);
}

.mini-dress__qty .qty-display {
  min-width: 28px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
  border-left: 1px solid var(--stone);
  border-right: 1px solid var(--stone);
  line-height: 34px;
}

.mini-dress.selected .mini-dress__qty .qty-display {
  color: var(--champagne);
}

/* ── Панель размеров и цвета внутри карточки каталога ── */
.mini-dress__options {
  display: none;
  border-top: 1px solid var(--stone);
  background: rgba(185,151,91,0.05);
  padding: 10px 10px 12px;
}
.mini-opts-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--champagne);
  margin-bottom: 5px;
}
.mini-color-select {
  width: 100%;
  padding: 5px 8px;
  border: 1px solid var(--stone);
  border-radius: 2px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--ink);
  background: var(--white);
  margin-bottom: 8px;
  cursor: pointer;
}
.mini-color-select:focus { outline: none; border-color: var(--champagne); }
.size-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3px;
}
.size-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.size-label {
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--muted);
  text-align: center;
}
.size-input {
  width: 100%;
  text-align: center;
  border: 1px solid var(--stone);
  border-radius: 2px;
  font-size: 0.7rem;
  padding: 3px 1px;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  -moz-appearance: textfield;
}
.size-input::-webkit-outer-spin-button,
.size-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.size-input:focus { outline: none; border-color: var(--champagne); background: rgba(185,151,91,0.06); }
.size-input.has-val { border-color: var(--champagne); font-weight: 700; color: var(--champagne-dark); }
.mini-opts-sizes { }
.mini-opts-sizes .mini-opts-label { margin-top: 2px; margin-bottom: 4px; }
/* Бейдж ОПТ в мини-каталоге */
.mini-opt-tag {
  display: inline-block;
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--champagne);
  border: 1px solid var(--champagne);
  border-radius: 2px;
  padding: 0px 3px;
  vertical-align: middle;
  line-height: 1.5;
}
/* Итог по размерам в боковой панели */
.sb-size-detail {
  font-size: 0.68rem;
  color: var(--muted);
  margin-top: 1px;
  line-height: 1.5;
}

.selected-model {
  margin-bottom: 24px;
  padding: 20px;
  border: 1px solid rgba(185, 151, 91, 0.22);
  border-radius: var(--radius);
  background: rgba(185, 151, 91, 0.08);
}

.quantity-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--stone);
  border-radius: 999px;
  background: var(--white);
}

.qty-btn {
  width: 42px;
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 1.05rem;
}

.qty-input {
  width: 56px;
  height: 40px;
  border: 0;
  border-left: 1px solid var(--stone);
  border-right: 1px solid var(--stone);
  background: transparent;
  text-align: center;
  outline: none;
}

.order-sidebar-card {
  position: sticky;
  top: 24px;
  height: fit-content;
}

.order-line,
.order-total {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.88rem;
}

.order-total {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--stone);
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
}

.payment-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.payment-option {
  cursor: pointer;
}

.payment-option input {
  display: none;
}

.payment-option div {
  padding: 16px;
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  background: var(--white);
  text-align: center;
  font-size: 0.86rem;
  font-weight: 700;
}

.payment-option input:checked + div {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.success-state {
  width: min(620px, 100%);
  margin: 0 auto;
  padding: 84px 0;
  text-align: center;
}

.success-mark {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin: 0 auto 26px;
  border-radius: 50%;
  background: rgba(47, 104, 71, 0.12);
  color: var(--success);
  font-size: 2rem;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(21, 20, 20, 0.62);
}

.modal-card {
  position: relative;
  width: min(480px, 100%);
  padding: 36px;
  border-radius: var(--radius);
  background: var(--white);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: var(--pearl);
  color: var(--ink);
}

.fade-in {
  animation: fadeIn 500ms ease both;
}

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

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--pearl);
}

::-webkit-scrollbar-thumb {
  background: var(--muted-2);
  border-radius: 999px;
}

@media (max-width: 1180px) {
  .catalog-grid,
  .dash-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .collections__grid,
  .partner-cta__inner,
  .brand-system__inner,
  .about-intro__inner,
  .contacts-inner,
  .quick-grid {
    grid-template-columns: 1fr;
  }

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

  .about-strip__text .container {
    width: min(100% - 64px, 760px);
    margin: 0 auto;
  }

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

  .dashboard-layout {
    grid-template-columns: 230px 1fr;
  }

  .order-content {
    grid-template-columns: 1fr;
  }

  .order-sidebar-card {
    position: static;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 36px, 1320px);
  }

  .header__inner {
    grid-template-columns: auto 1fr auto;
    padding: 18px;
  }

  .header__nav--left {
    display: none;
  }

  .header__nav--right {
    display: none;
  }

  .header__logo {
    font-size: 1.45rem;
    grid-column: 1;
  }

  .hero {
    min-height: 90vh;
  }

  .hero__content {
    margin: 0;
    padding: 124px 24px 72px;
  }

  .hero__title {
    font-size: 4.25rem;
  }

  .hero__scroll {
    display: none;
  }

  .section,
  .collections,
  .partner-cta,
  .catalog-section,
  .about-intro,
  .contacts-section,
  .about-values {
    padding: 72px 0;
  }

  .section-title,
  .page-title {
    font-size: 2.65rem;
  }

  .stats__grid,
  .catalog-grid,
  .values-grid,
  .footer__top,
  .footer__nav,
  .order-steps,
  .login-page {
    grid-template-columns: 1fr;
  }

  .stats__grid {
    border-top: 1px solid var(--stone);
  }

  .stats__item {
    min-height: 112px;
    border-top: 0;
    border-bottom: 1px solid var(--stone);
  }

  .coll-card__img,
  .coll-card--large .coll-card__img,
  .about-strip__visual,
  .about-visual-main {
    min-height: 430px;
  }

  .visual-block {
    margin: 24px;
  }

  .about-badge {
    right: 18px;
    bottom: 18px;
  }

  .login-visual {
    min-height: 420px;
  }

  .login-visual--brand {
    min-height: 520px;
    padding: 44px 28px 38px;
  }

  .login-visual--brand .login-visual__logo img {
    width: min(132px, 34vw);
  }

  .login-visual__brand-lockup {
    width: min(360px, 72vw);
  }

  .login-form-area {
    padding: 40px 20px;
  }

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

  .sidebar {
    position: static;
    height: auto;
  }

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

  .dashboard-main,
  .new-order-page {
    padding: 32px 18px;
  }

  .dashboard-topbar,
  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .order-step {
    border-right: 0;
    border-bottom: 1px solid var(--stone);
  }

  .order-step:last-child {
    border-bottom: 0;
  }

  .order-catalog-mini,
  .payment-options {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .hero__title {
    font-size: 3.25rem;
  }

  .hero__cta,
  .topbar-right {
    align-items: stretch;
    flex-direction: column;
  }

  .btn-primary,
  .btn-outline,
  .btn-ghost,
  .btn-outline-dark {
    width: 100%;
  }

  .section-title,
  .page-title {
    font-size: 2.25rem;
  }

  .contact-form,
  .order-main-card,
  .order-sidebar-card,
  .modal-card {
    padding: 24px;
  }

  .dashboard-topbar h1,
  .new-order-page h1 {
    font-size: 2.1rem;
  }
}

/* ── Product Modal ───────────────────────────────────── */
.product-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.product-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 9, 9, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.product-modal__card {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 860px;
  max-height: 90vh;
  overflow: hidden;
  border: 1px solid rgba(21, 20, 20, 0.10);
  box-shadow: 0 32px 80px rgba(10,9,9,0.22);
  animation: modalIn 280ms cubic-bezier(0.22,1,0.36,1);
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(18px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.product-modal__img {
  background-size: cover;
  background-position: center top;
  min-height: 480px;
}

.product-modal__info {
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow-y: auto;
  min-height: 0;
  max-height: 90vh;
  scrollbar-width: thin;
  scrollbar-color: var(--muted) transparent;
}
.product-modal__info::-webkit-scrollbar { width: 4px; }
.product-modal__info::-webkit-scrollbar-track { background: transparent; }
.product-modal__info::-webkit-scrollbar-thumb { background: var(--muted); border-radius: 2px; }

.product-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  background: var(--white);
  border: 1px solid rgba(21,20,20,0.14);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: background 200ms;
}
.product-modal__close:hover { background: var(--pearl); }

.product-modal__name {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.1;
  margin: 4px 0 0;
}

.product-modal__art {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
}

.product-modal__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.86rem;
  color: var(--ink);
  padding: 16px 0;
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
}

.product-modal__meta span { color: var(--muted); }

.product-modal__brand-panel {
  border: 1px solid rgba(21, 20, 20, 0.10);
  border-radius: 6px;
  background: #fbfaf7;
  padding: 14px 16px;
}

.pm-brand-panel__title {
  margin-bottom: 6px;
  color: var(--champagne-dark);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-modal__brand-panel p {
  color: var(--ink);
  font-size: 0.84rem;
  line-height: 1.65;
}

.pm-brand-panel__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.pm-brand-panel__chips span {
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  padding: 4px 9px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-modal__favorite {
  min-height: 40px;
  border: 1px solid rgba(185, 151, 91, 0.38);
  border-radius: 999px;
  background: #fffaf0;
  color: var(--champagne-dark);
  padding: 0 18px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-modal__favorite.active {
  border-color: var(--wine);
  background: var(--wine);
  color: var(--white);
}

#pm-price {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--ink);
  font-weight: 600;
  background: var(--pearl);
  border-radius: 6px;
  padding: 12px 14px;
}

.product-modal__price-note {
  font-size: 0.82rem;
  color: var(--muted);
  background: var(--pearl);
  border-radius: 6px;
  padding: 12px 14px;
}

.product-modal__actions {
  margin-top: auto;
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dress-card { cursor: pointer; }
.coll-card  { cursor: pointer; }

/* Gallery inside modal */
.pm-gallery {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 0;
}

.pm-gallery__main {
  flex: 1;
  background-size: cover;
  background-position: center top;
  min-height: 400px;
  position: relative;
  cursor: zoom-in;
}

.pm-gallery__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(21,20,20,0.12);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  color: var(--ink);
  transition: background 180ms, opacity 180ms;
  z-index: 2;
  opacity: 0.7;
  user-select: none;
}
.pm-gallery__arrow:hover { background: var(--white); opacity: 1; }
.pm-gallery__arrow--prev { left: 10px; }
.pm-gallery__arrow--next { right: 10px; }
.pm-gallery__arrow.hidden { display: none; }

.pm-gallery__thumbs {
  display: flex;
  gap: 6px;
  padding: 8px 10px;
  background: var(--pearl);
  overflow-x: auto;
  scrollbar-width: none;
}
.pm-gallery__thumbs::-webkit-scrollbar { display: none; }

.pm-gallery__thumb {
  flex: 0 0 56px;
  height: 72px;
  background-size: cover;
  background-position: center top;
  border-radius: 4px;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.65;
  transition: opacity 180ms, border-color 180ms;
}
.pm-gallery__thumb:hover { opacity: 0.9; }
.pm-gallery__thumb.active {
  border-color: var(--ink);
  opacity: 1;
}

@media (max-width: 640px) {
  .product-modal__card {
    grid-template-columns: 1fr;
    max-height: 92vh;
    overflow-y: auto;
  }
  .pm-gallery__main { min-height: 260px; }
  .product-modal__info { padding: 24px 20px; }
}

/* ── Catalog filter bar ──────────────────────────────── */
.cat-filterbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 0 0 28px;
  border-bottom: 1px solid var(--stone);
  margin-bottom: 20px;
}

.cat-featurebar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
}

.cat-feature-chip {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(21, 20, 20, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  padding: 0 14px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.cat-feature-chip:hover,
.cat-feature-chip.active {
  border-color: var(--champagne-dark);
  background: #fffaf0;
  color: var(--ink);
}

.cat-filterbar__left { flex: 1; min-width: 0; }
.cat-filterbar__right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.cat-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 36px;
  padding: 0 16px;
  border: 1px solid rgba(21,20,20,0.14);
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms, color 180ms, border-color 180ms;
  white-space: nowrap;
}
.cat-pill:hover { border-color: var(--ink); color: var(--ink); }
.cat-pill.active { background: var(--ink); color: var(--white); border-color: var(--ink); }

.cat-pill__count {
  background: rgba(255,255,255,0.25);
  border-radius: 999px;
  padding: 1px 6px;
  font-size: 0.65rem;
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}
.cat-pill.active .cat-pill__count { background: rgba(255,255,255,0.22); }
.cat-pill:not(.active) .cat-pill__count { background: var(--pearl); color: var(--muted); }

.cat-collection-tabs {
  display: flex;
  background: var(--pearl);
  border-radius: 8px;
  padding: 3px;
  gap: 2px;
}

.cat-coll-tab {
  padding: 5px 14px;
  border-radius: 6px;
  border: none;
  background: transparent;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--muted);
  cursor: pointer;
  transition: background 180ms, color 180ms;
  white-space: nowrap;
}
.cat-coll-tab:hover { color: var(--ink); }
.cat-coll-tab.active { background: var(--white); color: var(--ink); box-shadow: 0 1px 4px rgba(10,9,9,0.10); }

.cat-sort-select {
  height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(21,20,20,0.14);
  border-radius: 7px;
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: var(--ink);
  cursor: pointer;
  outline: none;
}

/* Active filter tags */
.cat-active-filters {
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.78rem;
  color: var(--muted);
}
.cat-active-label { font-weight: 600; }
.cat-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--pearl);
  border: 1px solid var(--stone);
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink);
}
.cat-tag button { background: none; border: none; cursor: pointer; color: var(--muted); font-size: 0.9rem; padding: 0; line-height: 1; }
.cat-reset {
  background: none;
  border: 1px solid var(--stone);
  border-radius: 999px;
  padding: 3px 12px;
  font-size: 0.72rem;
  color: var(--muted);
  cursor: pointer;
  transition: color 160ms, border-color 160ms;
}
.cat-reset:hover { color: var(--ink); border-color: var(--ink); }

/* Results count */
.cat-meta {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 28px;
}

.cat-empty {
  padding: 72px 24px;
  border: 1px solid rgba(21, 20, 20, 0.10);
  background: var(--white);
  text-align: center;
}

.cat-empty h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
}

.cat-empty p {
  width: min(460px, 100%);
  margin: 12px auto 24px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

/* Collection groups */
.coll-group { margin-bottom: 72px; }

.coll-group__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--ink);
}

.coll-group__title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
  margin: 0;
}

.coll-group__sub {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 6px 0 0;
}

.coll-group__count {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  padding-bottom: 4px;
}

/* Video thumb in gallery */
.pm-gallery__thumb--video::after {
  content: "▶";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  background: rgba(0,0,0,0.35);
  border-radius: 2px;
}
.pm-gallery__thumb--video { position: relative; }

/* Video thumb (new class) */
.pm-thumb-video {
  position: relative;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pm-thumb-play {
  color: var(--white);
  font-size: 1.2rem;
  opacity: 0.85;
  pointer-events: none;
}
.pm-thumb-video.active .pm-thumb-play { opacity: 1; }

/* pm-img must be positioned for iframe overlay */
.pm-gallery__main { position: relative; }

/* Product description & specs in modal */
.product-modal__desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 12px 0 0;
}
.product-modal__specs {
  margin: 12px 0 0;
  border-top: 1px solid var(--pearl);
  padding-top: 10px;
}
.pm-spec-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 4px 0;
  font-size: 0.83rem;
  border-bottom: 1px solid var(--pearl);
}
.pm-spec-key { color: var(--muted); }
.pm-spec-val { color: var(--ink); font-weight: 500; text-align: right; }

.pm-gallery__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .cat-filterbar { flex-direction: column; align-items: flex-start; }
  .cat-filterbar__right { width: 100%; justify-content: flex-start; }
  .catalog-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .cat-collection-tabs { display: none; }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .coll-group__title { font-size: 1.4rem; }
}

.atelier-flow {
  padding: 112px 0;
  background: #f4f0e8;
}

.atelier-flow__header {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 46px;
}

.atelier-flow__header .section-eyebrow,
.atelier-flow__header .section-title {
  grid-column: 1;
}

.atelier-flow__header p:not(.section-eyebrow) {
  grid-column: 2;
  grid-row: 1 / span 2;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.9;
}

.atelier-flow__grid {
  display: grid;
  grid-template-columns: 1.16fr 0.92fr 0.92fr;
  gap: 16px;
}

.atelier-step {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  background: var(--ink);
  color: var(--white);
}

.atelier-step--wide {
  grid-row: span 2;
  min-height: 720px;
}

.atelier-step__photo {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0.82;
  transition: transform 900ms ease;
}

.atelier-step:hover .atelier-step__photo {
  transform: scale(1.035);
}

.atelier-step__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 9, 9, 0.04) 28%, rgba(10, 9, 9, 0.82) 100%);
}

.atelier-step__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 28px;
}

.atelier-step__body span,
.b2b-flow__steps span {
  display: block;
  margin-bottom: 10px;
  color: var(--champagne);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.atelier-step__body h3,
.b2b-flow__steps h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.05;
}

.atelier-step__body p,
.b2b-flow__steps p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  line-height: 1.7;
}

.atelier-flow__cta {
  margin-top: 40px;
  text-align: center;
}

.b2b-flow {
  padding: 112px 0;
  background: var(--paper);
}

.b2b-flow__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 54px;
  align-items: start;
}

.b2b-flow__copy .section-title {
  font-size: clamp(2.35rem, 4vw, 4.5rem);
}

.b2b-flow__copy p:not(.section-eyebrow) {
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.9;
}

.b2b-flow__steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(21, 20, 20, 0.12);
  border-left: 1px solid rgba(21, 20, 20, 0.12);
}

.b2b-flow__steps div {
  min-height: 230px;
  padding: 30px;
  border-right: 1px solid rgba(21, 20, 20, 0.12);
  border-bottom: 1px solid rgba(21, 20, 20, 0.12);
  background: var(--white);
}

.b2b-flow__steps h3 {
  color: var(--ink);
}

.b2b-flow__steps p {
  color: var(--muted);
}

@media (max-width: 980px) {
  .atelier-flow__header,
  .b2b-flow__inner {
    grid-template-columns: 1fr;
  }

  .atelier-flow__header p:not(.section-eyebrow) {
    grid-column: 1;
    grid-row: auto;
  }

  .atelier-flow__grid {
    grid-template-columns: 1fr 1fr;
  }

  .atelier-step--wide {
    grid-column: 1 / -1;
    min-height: 560px;
  }
}

@media (max-width: 640px) {
  .atelier-flow,
  .b2b-flow {
    padding: 72px 0;
  }

  .atelier-flow__grid,
  .b2b-flow__steps {
    grid-template-columns: 1fr;
  }

  .atelier-step,
  .atelier-step--wide {
    min-height: 430px;
  }

  .b2b-flow__steps div {
    min-height: auto;
    padding: 24px;
  }
}

/* ============================================================
   НОВИНКИ / NEW ARRIVALS
   ============================================================ */
.new-arrivals {
  padding: 90px 0 60px;
  background: var(--paper);
}
.new-arrivals .section-header { text-align: center; margin-bottom: 48px; }
.new-arrivals__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.na-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.25s;
  position: relative;
}
.na-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.10); }
.na-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--champagne);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 2px;
  z-index: 2;
}
.na-card__img {
  width: 100%;
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center top;
  transition: transform 0.4s ease;
}
.na-card:hover .na-card__img { transform: scale(1.03); }
.na-card__info {
  padding: 14px 16px 16px;
}
.na-card__name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 3px;
}
.na-card__art {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  font-family: var(--font-sans);
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .new-arrivals__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 480px) {
  .new-arrivals__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* ============================================================
   ВИДЕОГАЛЕРЕЯ
   ============================================================ */
.video-gallery {
  padding: 90px 0;
  background: var(--ink);
  color: var(--white);
}
.video-gallery .section-header { text-align: center; margin-bottom: 48px; }
.video-gallery .section-eyebrow { color: var(--champagne); }
.video-gallery .section-title { color: var(--white); }
.video-gallery .section-lead { color: rgba(255,255,255,0.6); }
.video-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.vg-card {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 4px;
  overflow: hidden;
  background: #111;
  cursor: pointer;
}
.vg-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.vg-card__thumb {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 0.3s;
}
.vg-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.vg-card:hover .vg-card__overlay { background: linear-gradient(to top, rgba(0,0,0,0.35) 0%, transparent 60%); }
.vg-play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, background 0.2s;
}
.vg-play-btn svg { width: 20px; height: 20px; fill: var(--ink); margin-left: 3px; }
.vg-card:hover .vg-play-btn { transform: scale(1.1); background: var(--white); }
.vg-card__title {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px 14px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.vg-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 40px;
  border: 1px dashed rgba(255,255,255,0.2);
  border-radius: 4px;
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
  text-align: center;
  font-family: var(--font-sans);
  letter-spacing: 0.04em;
  grid-column: 1 / -1;
}
.vg-placeholder svg { opacity: 0.3; }

@media (max-width: 900px) {
  .video-gallery__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 560px) {
  .video-gallery__grid { grid-template-columns: 1fr; gap: 14px; }
}

/* ============================================================
   FULLSCREEN IMAGE VIEWER  (pm-fs)
   ============================================================ */
.pm-fs {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,0.97);
  align-items: center;
  justify-content: center;
}
.pm-fs.open { display: flex; }

/* Contain-fit image box */
.pm-fs__bg {
  flex: 0 0 auto;
  /* portrait ratio — wide image fills width, tall image fills height */
  width: min(88vw, calc(92vh * 0.67));
  height: 92vh;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  transition: background-image 0.15s ease;
}

/* Close button */
.pm-fs__close {
  position: fixed;
  top: 18px; right: 24px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  color: rgba(255,255,255,0.85);
  font-size: 1.5rem;
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 9002;
  transition: background 0.2s, color 0.2s;
  line-height: 1;
  backdrop-filter: blur(6px);
}
.pm-fs__close:hover { background: rgba(255,255,255,0.22); color: var(--white); }

/* Prev / Next */
.pm-fs__nav {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  font-size: 2rem;
  width: 52px; height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 9002;
  transition: background 0.2s;
  backdrop-filter: blur(6px);
}
.pm-fs__nav:hover { background: rgba(255,255,255,0.25); }
.pm-fs__prev { left: 20px; }
.pm-fs__next { right: 20px; }
.pm-fs__nav.hidden { visibility: hidden; pointer-events: none; }

/* Counter + name */
.pm-fs__caption {
  position: fixed;
  bottom: 24px; left: 0; right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 9002;
  pointer-events: none;
}
.pm-fs__caption-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.03em;
}
.pm-fs__caption-counter {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
}

/* Expand button inside pm-gallery__main */
.pm-expand-btn {
  position: absolute;
  bottom: 12px; right: 12px;
  background: rgba(0,0,0,0.42);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 4px;
  color: rgba(255,255,255,0.9);
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 4;
  transition: background 0.2s, transform 0.15s;
  backdrop-filter: blur(4px);
  padding: 0;
}
.pm-expand-btn:hover { background: rgba(0,0,0,0.7); transform: scale(1.08); }
.pm-expand-btn svg {
  width: 17px; height: 17px;
  fill: none; stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}

/* Touch swipe hint on mobile */
.pm-fs__swipe-hint {
  position: fixed;
  top: 22px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  pointer-events: none;
  z-index: 9002;
  display: none;
}

@media (max-width: 640px) {
  .pm-fs__bg { width: 98vw; height: 78vh; }
  .pm-fs__nav { width: 42px; height: 42px; font-size: 1.6rem; }
  .pm-fs__prev { left: 8px; }
  .pm-fs__next { right: 8px; }
  .pm-fs__swipe-hint { display: block; }
}

/* Hover hint on modal main photo */
.pm-gallery__main::after {
  content: "⤢  на весь экран";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 100%);
  color: rgba(255,255,255,0.75);
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 22px 0 10px;
  opacity: 0;
  transition: opacity 0.25s;
  pointer-events: none;
  z-index: 3;
}
.pm-gallery__main:hover::after { opacity: 1; }
/* Hide hint when video is playing */
.pm-gallery__main:has(iframe[style*="display: block"])::after,
.pm-gallery__main:has(iframe:not([style*="display: none"]))::after { opacity: 0; }

/* ============================================================
   АДАПТИВНЫЙ ДИЗАЙН — БОЛЬШИЕ ЭКРАНЫ
   Large screens, ultra-wide monitors, TVs
   ============================================================ */

/* ── 1400px+ : Wide laptops, small externals ─────────── */
@media (min-width: 1400px) {
  .container {
    width: min(100% - 80px, 1400px);
  }

  .hero__content {
    width: min(820px, 100%);
    margin-left: max(48px, calc((100vw - 1400px) / 2 + 48px));
  }

  .hero__salon-gallery {
    right: max(36px, calc((100vw - 1400px) / 2 + 36px));
  }

  .catalog-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
  }

  .new-arrivals__grid {
    gap: 28px;
  }

  .product-modal__card {
    max-width: 920px;
  }
}

/* ── 1600px+ : Large desktop monitors ────────────────── */
@media (min-width: 1600px) {
  html {
    font-size: 17px;
  }

  .container {
    width: min(100% - 96px, 1520px);
  }

  .section {
    padding: 128px 0;
  }

  .section-header {
    width: min(800px, 100%);
    margin-bottom: 64px;
  }

  .section-title,
  .page-title {
    font-size: 4rem;
  }

  .section-lead {
    font-size: 1rem;
  }

  .hero__content {
    width: min(880px, 100%);
    padding: 148px 0 88px;
    margin-left: max(56px, calc((100vw - 1520px) / 2 + 56px));
  }

  .hero__title {
    font-size: 6.5rem;
  }

  .hero__subtitle {
    width: min(680px, 100%);
    font-size: 1.05rem;
  }

  .hero__salon-gallery {
    right: max(36px, calc((100vw - 1520px) / 2 + 36px));
    width: min(400px, 30vw);
  }

  .header__inner {
    padding: 26px 56px;
  }

  .header__nav {
    gap: 30px;
  }

  .header__nav--right {
    gap: 30px;
  }

  .nav-link {
    font-size: 0.72rem;
  }

  .stats__num {
    font-size: 3.2rem;
  }

  .stats__item {
    min-height: 148px;
    padding: 34px;
  }

  .collections {
    padding: 128px 0;
  }

  .collections__grid {
    gap: 22px;
  }

  .coll-card__img {
    min-height: 480px;
  }

  .coll-card--large .coll-card__img {
    min-height: 620px;
  }

  .coll-card__info h3 {
    font-size: 2.2rem;
  }

  .about-strip {
    min-height: 700px;
  }

  .about-strip__visual {
    min-height: 700px;
  }

  .about-strip__text .container {
    width: min(100% - 96px, 680px);
  }

  .partner-cta__inner {
    gap: 88px;
  }

  .partner-cta__text h2 {
    font-size: 3.4rem;
  }

  .brand-system__inner {
    gap: 80px;
  }

  .catalog-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .dress-card__img {
    min-height: 400px;
  }

  .new-arrivals__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }

  .video-gallery {
    padding: 108px 0;
  }

  .video-gallery__grid {
    gap: 24px;
  }

  .footer__top {
    gap: 96px;
    padding-bottom: 64px;
  }

  .page-hero {
    padding: 172px 0 100px;
  }

  .contacts-info h2 {
    font-size: 3.4rem;
  }

  .contact-item__value {
    font-size: 1.7rem;
  }

  .showroom-signature {
    padding: 124px 0;
  }

  .showroom-signature__inner {
    gap: 42px;
  }

  .showroom-signature__image {
    min-height: 680px;
  }

  .values-grid {
    gap: 22px;
  }

  .value-card {
    min-height: 310px;
    padding: 40px;
  }

  .value-card h3 {
    font-size: 1.8rem;
  }

  /* Dashboard */
  .dashboard-layout {
    grid-template-columns: 290px 1fr;
  }

  .dashboard-main,
  .new-order-page {
    padding: 48px 56px;
  }

  .dashboard-topbar h1,
  .new-order-page h1 {
    font-size: 2.8rem;
  }

  .dash-stat-card__value {
    font-size: 2.8rem;
  }

  .product-modal__card {
    max-width: 960px;
  }

  .product-modal__name {
    font-size: 2.4rem;
  }

  .login-page {
    grid-template-columns: minmax(480px, 0.92fr) minmax(560px, 1fr);
  }

  .login-box h2 {
    font-size: 2.8rem;
  }

  .login-visual__brand-lockup {
    width: min(560px, 72%);
  }
}

/* ── 1920px+ : Full HD monitors ──────────────────────── */
@media (min-width: 1920px) {
  html {
    font-size: 18px;
  }

  .container {
    width: min(100% - 120px, 1720px);
  }

  .section {
    padding: 148px 0;
  }

  .section-header {
    width: min(880px, 100%);
    margin-bottom: 72px;
  }

  .section-title,
  .page-title {
    font-size: 4.4rem;
  }

  .section-eyebrow,
  .hero__eyebrow,
  .page-eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
  }

  .hero {
    min-height: 94vh;
  }

  .hero__content {
    width: min(960px, 100%);
    padding: 160px 0 96px;
    margin-left: max(64px, calc((100vw - 1720px) / 2 + 64px));
  }

  .hero__title {
    font-size: 7.2rem;
  }

  .hero__subtitle {
    width: min(740px, 100%);
    font-size: 1.1rem;
    line-height: 2;
  }

  .hero__salon-gallery {
    right: max(48px, calc((100vw - 1720px) / 2 + 48px));
    width: min(440px, 28vw);
  }

  .salon-tile--large {
    min-height: 400px;
  }

  .header__inner {
    padding: 28px 68px;
  }

  .header__nav {
    gap: 36px;
  }

  .header__nav--right {
    gap: 36px;
  }

  .nav-link {
    font-size: 0.74rem;
    letter-spacing: 0.14em;
  }

  .header__logo img {
    width: 200px;
  }

  .stats__num {
    font-size: 3.6rem;
  }

  .stats__item {
    min-height: 164px;
    padding: 40px;
  }

  .stats__label {
    font-size: 0.76rem;
  }

  .collections {
    padding: 148px 0;
  }

  .collections__grid {
    grid-template-columns: 1.25fr 0.95fr 0.95fr;
    gap: 26px;
  }

  .coll-card__img {
    min-height: 540px;
  }

  .coll-card--large .coll-card__img {
    min-height: 700px;
  }

  .coll-card__info {
    padding: 36px;
  }

  .coll-card__info h3 {
    font-size: 2.4rem;
  }

  .about-strip {
    min-height: 780px;
  }

  .about-strip__visual {
    min-height: 780px;
  }

  .about-strip__text .container {
    width: min(100% - 120px, 740px);
    margin-right: 80px;
  }

  .about-strip__desc {
    font-size: 1rem;
  }

  .partner-cta {
    padding: 148px 0;
  }

  .partner-cta__inner {
    gap: 100px;
  }

  .partner-cta__text h2 {
    font-size: 3.8rem;
  }

  .brand-system {
    padding: 128px 0;
  }

  .brand-system__inner {
    gap: 96px;
  }

  .catalog-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 26px;
  }

  .dress-card__img {
    min-height: 440px;
  }

  .dress-card__info h3 {
    font-size: 1.55rem;
  }

  .new-arrivals {
    padding: 108px 0 72px;
  }

  .new-arrivals__grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
  }

  .video-gallery {
    padding: 128px 0;
  }

  .video-gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

  .footer {
    padding-top: 88px;
  }

  .footer__top {
    gap: 120px;
    padding-bottom: 72px;
  }

  .footer__logo img {
    width: 240px;
  }

  .page-hero {
    padding: 192px 0 112px;
  }

  .about-intro,
  .contacts-section {
    padding: 120px 0;
  }

  .about-intro__inner,
  .contacts-inner {
    gap: 88px;
  }

  .contacts-info h2 {
    font-size: 3.6rem;
  }

  .contact-item__value {
    font-size: 1.8rem;
  }

  .about-visual-main {
    min-height: 640px;
  }

  .about-values {
    padding: 128px 0;
  }

  .values-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
  }

  .value-card {
    min-height: 340px;
    padding: 44px;
  }

  .value-card h3 {
    font-size: 1.9rem;
  }

  .showroom-signature {
    padding: 140px 0;
  }

  .showroom-signature__image {
    min-height: 740px;
  }

  .showroom-signature__caption span {
    font-size: 2.4rem;
  }

  /* Dashboard on large screens */
  .dashboard-layout {
    grid-template-columns: 310px 1fr;
  }

  .sidebar__logo {
    padding: 36px 32px;
  }

  .sidebar-link {
    min-height: 52px;
    padding: 0 32px;
    font-size: 0.9rem;
  }

  .dashboard-main,
  .new-order-page {
    padding: 56px 68px;
  }

  .dashboard-topbar h1,
  .new-order-page h1 {
    font-size: 3rem;
  }

  .dash-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .dash-stat-card {
    padding: 28px;
  }

  .dash-stat-card__value {
    font-size: 3rem;
  }

  .orders-table th,
  .orders-table td {
    padding: 18px 22px;
  }

  .product-modal__card {
    max-width: 1020px;
  }

  .product-modal__img {
    min-height: 540px;
  }

  .product-modal__name {
    font-size: 2.6rem;
  }

  .product-modal__info {
    padding: 48px 40px;
  }

  .login-page {
    grid-template-columns: minmax(520px, 0.92fr) minmax(600px, 1fr);
  }

  .login-box {
    width: min(100%, 520px);
  }

  .login-box h2 {
    font-size: 3rem;
  }

  .login-form-area {
    padding: 80px;
  }

  /* Catalog filter bar */
  .coll-group__title {
    font-size: 2.2rem;
  }

  .cat-pill {
    height: 40px;
    padding: 0 20px;
    font-size: 0.74rem;
  }

  .cat-coll-tab {
    padding: 7px 18px;
    font-size: 0.76rem;
  }
}

/* ── 2560px+ : 2K, 4K, Ultra-wide, TVs ──────────────── */
@media (min-width: 2560px) {
  html {
    font-size: 20px;
  }

  .container {
    width: min(100% - 160px, 2100px);
  }

  .section {
    padding: 180px 0;
  }

  .section-header {
    width: min(1000px, 100%);
    margin-bottom: 88px;
  }

  .section-title,
  .page-title {
    font-size: 5rem;
  }

  .hero {
    min-height: 96vh;
  }

  .hero__content {
    width: min(1100px, 100%);
    padding: 200px 0 120px;
    margin-left: max(80px, calc((100vw - 2100px) / 2 + 80px));
  }

  .hero__title {
    font-size: 8.5rem;
  }

  .hero__subtitle {
    width: min(860px, 100%);
    font-size: 1.2rem;
  }

  .hero__salon-gallery {
    right: max(64px, calc((100vw - 2100px) / 2 + 64px));
    width: min(520px, 24vw);
    gap: 16px;
  }

  .salon-tile--large {
    min-height: 460px;
  }

  .salon-tile {
    min-height: 220px;
  }

  .salon-note {
    min-height: 210px;
    padding: 28px;
  }

  .header__inner {
    padding: 34px 88px;
  }

  .header__nav {
    gap: 44px;
  }

  .header__nav--right {
    gap: 44px;
  }

  .nav-link {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
  }

  .header__logo img {
    width: 230px;
  }

  .btn-primary,
  .btn-outline,
  .btn-ghost,
  .btn-outline-dark,
  .action-btn {
    min-height: 54px;
    padding: 0 36px;
    font-size: 0.76rem;
  }

  .stats__num {
    font-size: 4.2rem;
  }

  .stats__item {
    min-height: 196px;
    padding: 48px;
  }

  .stats__label {
    font-size: 0.82rem;
    margin-top: 12px;
  }

  .collections {
    padding: 180px 0;
  }

  .collections__grid {
    gap: 32px;
  }

  .coll-card__img {
    min-height: 640px;
  }

  .coll-card--large .coll-card__img {
    min-height: 840px;
  }

  .coll-card__info {
    padding: 44px;
  }

  .coll-card__info h3 {
    font-size: 2.8rem;
  }

  .about-strip {
    min-height: 920px;
  }

  .about-strip__visual {
    min-height: 920px;
  }

  .about-strip__text .container {
    width: min(100% - 160px, 860px);
    margin-right: 100px;
  }

  .partner-cta {
    padding: 180px 0;
  }

  .partner-cta__inner {
    gap: 128px;
  }

  .partner-cta__text h2 {
    font-size: 4.2rem;
  }

  .brand-system {
    padding: 160px 0;
  }

  .brand-system__inner {
    gap: 120px;
  }

  .catalog-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
  }

  .dress-card__img {
    min-height: 520px;
  }

  .dress-card__info {
    padding: 22px;
  }

  .dress-card__info h3 {
    font-size: 1.65rem;
  }

  .new-arrivals {
    padding: 128px 0 88px;
  }

  .new-arrivals__grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 36px;
  }

  .video-gallery {
    padding: 160px 0;
  }

  .video-gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .footer {
    padding-top: 108px;
  }

  .footer__top {
    gap: 160px;
    padding-bottom: 88px;
  }

  .footer__logo img {
    width: 280px;
  }

  .footer__nav {
    gap: 48px;
  }

  .page-hero {
    padding: 240px 0 140px;
  }

  .about-intro,
  .contacts-section {
    padding: 148px 0;
  }

  .about-intro__inner,
  .contacts-inner {
    gap: 120px;
  }

  .contacts-info h2 {
    font-size: 4rem;
  }

  .contact-item__value {
    font-size: 2rem;
  }

  .about-visual-main {
    min-height: 760px;
  }

  .about-values {
    padding: 160px 0;
  }

  .values-grid {
    gap: 32px;
  }

  .value-card {
    min-height: 380px;
    padding: 52px;
  }

  .value-card h3 {
    font-size: 2.1rem;
  }

  .showroom-signature {
    padding: 168px 0;
  }

  .showroom-signature__inner {
    gap: 52px;
  }

  .showroom-signature__image {
    min-height: 860px;
  }

  .showroom-signature__caption span {
    font-size: 2.8rem;
  }

  /* Dashboard */
  .dashboard-layout {
    grid-template-columns: 340px 1fr;
  }

  .sidebar__logo {
    padding: 42px 36px;
  }

  .sidebar__logo img {
    width: 190px;
  }

  .sidebar__user {
    padding: 28px 36px;
  }

  .sidebar-link {
    min-height: 58px;
    padding: 0 36px;
    font-size: 0.94rem;
    gap: 16px;
  }

  .dashboard-main,
  .new-order-page {
    padding: 68px 88px;
  }

  .dashboard-topbar h1,
  .new-order-page h1 {
    font-size: 3.4rem;
  }

  .dash-stats {
    gap: 24px;
  }

  .dash-stat-card {
    padding: 34px;
  }

  .dash-stat-card__value {
    font-size: 3.4rem;
  }

  .orders-table th,
  .orders-table td {
    padding: 20px 26px;
  }

  .order-content {
    grid-template-columns: minmax(0, 1fr) 400px;
  }

  .product-modal__card {
    max-width: 1160px;
  }

  .product-modal__img {
    min-height: 620px;
  }

  .product-modal__name {
    font-size: 2.8rem;
  }

  .product-modal__info {
    padding: 56px 48px;
  }

  .login-box {
    width: min(100%, 560px);
  }

  .login-box h2 {
    font-size: 3.2rem;
  }

  .coll-group__title {
    font-size: 2.6rem;
  }
}

/* ── 3200px+ : 4K TVs and ultra-large displays ───────── */
@media (min-width: 3200px) {
  html {
    font-size: 24px;
  }

  .container {
    width: min(100% - 200px, 2600px);
  }

  .hero__content {
    width: min(1300px, 100%);
    margin-left: max(100px, calc((100vw - 2600px) / 2 + 100px));
  }

  .hero__title {
    font-size: 10rem;
  }

  .hero__salon-gallery {
    right: max(80px, calc((100vw - 2600px) / 2 + 80px));
    width: min(620px, 22vw);
    gap: 20px;
  }

  .header__inner {
    padding: 40px 108px;
  }

  .header__logo img {
    width: 280px;
  }

  .catalog-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 36px;
  }

  .new-arrivals__grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
  }

  .video-gallery__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
  }

  .product-modal__card {
    max-width: 1400px;
  }

  .dashboard-layout {
    grid-template-columns: 400px 1fr;
  }

  .dashboard-main,
  .new-order-page {
    padding: 88px 120px;
  }

  .order-content {
    grid-template-columns: minmax(0, 1fr) 480px;
  }
}

/* ── Временно скрытые разделы ─────────────────────────── */
a[href="team.html"].nav-link { display: none !important; }

/* ══════════════════════════════════════════════════════════
   CATALOG TOP BAR — компактный заголовок каталога
   ══════════════════════════════════════════════════════════ */

.cat-topbar {
  background: var(--paper);
  border-bottom: 1px solid var(--stone);
  padding: 32px 0 0;
  margin-top: 72px; /* высота хедера */
}

.cat-topbar__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
}

.cat-topbar__eyebrow {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 6px;
}

.cat-topbar__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
  margin: 0;
  letter-spacing: 1px;
}

.cat-topbar__count {
  font-size: 0.85em;
  color: var(--muted);
  font-weight: 400;
  margin-left: 8px;
}

/* Кнопка избранного */
.cat-fav-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  border: 1px solid var(--ink);
  color: var(--paper);
  border-radius: 30px;
  padding: 9px 20px 9px 16px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  flex-shrink: 0;
}
.cat-fav-btn:hover {
  background: var(--champagne);
  border-color: var(--champagne);
  color: #fff;
}
.cat-fav-btn svg {
  flex-shrink: 0;
  transition: fill 0.2s, stroke 0.2s;
  stroke: var(--paper);
}
.cat-fav-btn:hover svg {
  fill: rgba(255,255,255,0.3);
  stroke: #fff;
}
.cat-fav-btn__count {
  background: var(--champagne);
  color: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: none; /* скрыт пока нет избранного */
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
}
.cat-fav-btn__count.has-items {
  display: flex;
}
.cat-fav-btn:hover .cat-fav-btn__count {
  background: rgba(255,255,255,0.25);
}

/* Разделитель между коллекциями и категориями */
.cat-filterbar__divider {
  width: 1px;
  height: 20px;
  background: var(--stone);
  flex-shrink: 0;
  align-self: center;
  margin: 0 4px;
}

/* Убираем page-hero из каталога — не нужен */
.catalog-section { padding-top: 0; }

@media (max-width: 640px) {
  .cat-topbar__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .cat-topbar {
    padding-top: 24px;
  }
  .cat-topbar__title {
    font-size: 2rem;
  }
}
