/* ============================================================
   DIAMAND LADY — Quiet Luxury Design System
   Warm ivory + charcoal + burgundy accent #6b1234
   Playfair Display + Montserrat | border-radius: 0
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --bg: hsl(30,20%,98%);
  --bg-alt: hsl(30,15%,95%);
  --fg: hsl(220,10%,10%);
  --fg-muted: hsl(210,5%,40%);
  --fg-light: hsl(210,5%,60%);
  --accent: #6b1234;
  --accent-light: #8b1844;
  --accent-dark: #4a0d24;
  --accent-glow: rgba(107,18,52,0.12);
  --border: hsl(30,10%,88%);
  --border-light: hsl(30,10%,92%);
  --white: #ffffff;
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: all 0.4s cubic-bezier(0.25,0.1,0.25,1);
  --transition-slow: all 0.7s cubic-bezier(0.25,0.1,0.25,1);
  --max-width: 1400px;
  --nav-height: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background:var(--bg);
  color:var(--fg);
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
  padding-top: 80px; /* Отступ для фиксированной шапки */
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
ul, ol { list-style: none; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 40px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* ===== NAVBAR ===== */
.nav-wrapper {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; transition: var(--transition);
  background: transparent;
}
.nav-wrapper.scrolled {
  background: rgba(253,251,248,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max-width); margin: 0 auto; padding: 0 40px;
  height: var(--nav-height);
  transition: var(--transition-slow);
}
.nav-wrapper.scrolled .nav {
  height: 64px;
}

.nav-logo { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.nav-logo-icon { font-size: 20px; opacity: 0.7; }
.nav-logo-wrap { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 20px; font-weight: 400; font-style: italic;
  color: var(--fg); letter-spacing: 1px;
}
.nav-logo-sub {
  font-size: 8px; font-weight: 400; color: var(--fg-muted);
  letter-spacing: 0.3px; white-space: nowrap;
  opacity: 0.7;
}
/* On hero (transparent bg) use gray tone */
.nav-wrapper:not(.scrolled) .nav-logo-text,
.nav-wrapper:not(.scrolled) .nav-link,
.nav-wrapper:not(.scrolled) .nav-btn,
.nav-wrapper:not(.scrolled) .nav-auth-btn,
.nav-wrapper:not(.scrolled) .nav-burger span { color: #686d72; }
.nav-wrapper:not(.scrolled) .nav-burger span { background: #686d72; }

.nav-links { display: flex; align-items: center; gap: 0; }
.nav-link {
  padding: 8px 18px; color: var(--fg-muted);
  font-size: 11px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  transition: var(--transition); white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--fg); }

.nav-actions { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
.nav-btn {
  position: relative; display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border: none; background: transparent;
  color: var(--fg-muted); transition: var(--transition);
}
.nav-btn:hover { color: var(--fg); }
.nav-badge {
  position: absolute; top: 4px; right: 4px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--accent); color: #fff; font-size: 10px; font-weight: 700;
  display: none; align-items: center; justify-content: center;
  opacity: 0; transform: scale(0.5); transition: all 0.2s;
}
.nav-badge.visible { display: flex; opacity: 1; transform: scale(1); }

.nav-auth-btn {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  min-width: 40px; height: 40px; padding: 0 8px; border: none;
  background: transparent; color: var(--fg-muted);
  font-size: 11px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
  transition: var(--transition);
}
.nav-auth-btn:hover { color: var(--fg); }

.nav-wholesale-btn {
  padding: 8px 18px; border: none; background: transparent;
  color: var(--fg-muted);
  font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; transition: var(--transition); white-space: nowrap; font-family: inherit;
}
.nav-wholesale-btn:hover { color: var(--fg); background: transparent; }
.nav-wrapper:not(.scrolled) .nav-wholesale-btn { color: #686d72; }

.nav-burger {
  display: none; flex-direction: column; justify-content: center;
  width: 40px; height: 40px; gap: 5px; border: none; background: transparent; padding: 10px;
}
.nav-burger span {
  display: block; height: 1px; width: 100%; background: var(--fg); transition: var(--transition);
}
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(4px,4px); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px,-4px); }

/* ===== DESKTOP NAV DROPDOWN ===== */
.nav-dropdown-wrap { position: relative; display: flex; align-items: center; }
.nav-dropdown-menu {
  display: none;
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  background: var(--white); border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  min-width: 290px; z-index: 9998; padding: 12px 0 6px;
}
.nav-dropdown-wrap:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block; padding: 11px 20px;
  color: var(--fg); text-decoration: none;
  font-size: 13px; line-height: 1.4;
  border-bottom: 1px solid #f5f5f5;
  transition: background 0.2s, color 0.2s;
}
.nav-dropdown-menu a:last-child { border-bottom: none; }
.nav-dropdown-menu a:hover { background: var(--bg-alt); color: var(--accent-dark); }
.nav-link-dropdown { cursor: default; user-select: none; }
.nav-link-dropdown::after { content: ' ▾'; font-size: 10px; opacity: 0.55; }

/* ===== LANGUAGE SWITCHER ===== */
.nav-lang-wrap { position: relative; display: flex; align-items: center; }
.nav-lang-btn {
  display: flex; align-items: center; justify-content: center; gap: 0;
  width: 40px; height: 40px; padding: 0;
  border: none; background: transparent;
  color: var(--fg-muted); font-family: var(--font-body);
  font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  cursor: pointer; transition: var(--transition);
}
.nav-lang-btn #nav-lang-label { display: none; }
.nav-lang-btn:hover { color: var(--fg); }
.nav-wrapper:not(.scrolled) .nav-lang-btn { color: #686d72; }
.nav-lang-dropdown {
  display: none; position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--white); border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12); z-index: 9999; min-width: 160px;
}
.nav-lang-dropdown.open { display: block; }
.lang-opt {
  display: flex; align-items: center; gap: 10px;
  width: 100%; padding: 11px 16px;
  border: none; background: transparent; text-align: left; cursor: pointer;
  font-family: var(--font-body); transition: background 0.2s;
}
.lang-opt:hover { background: var(--bg-alt); }
.lang-opt.active { background: var(--accent); }
.lang-opt-label { font-weight: 700; font-size: 12px; color: var(--fg); min-width: 24px; }
.lang-opt-name { font-size: 13px; color: var(--fg-muted); }
.lang-opt.active .lang-opt-label, .lang-opt.active .lang-opt-name { color: #fff; }

/* RTL overrides */
[dir="rtl"] .nav-lang-dropdown { right: auto; left: 0; }
[dir="rtl"] .mob-drawer { right: auto; left: 0; transform: translateX(-100%); }
[dir="rtl"] .mob-drawer.open { transform: translateX(0); }
[dir="rtl"] .mob-level { transform: translateX(-100%); }
[dir="rtl"] .mob-level.active { transform: translateX(0); }
[dir="rtl"] .mob-level.leaving { transform: translateX(25%); }
[dir="rtl"] .back-arrow { transform: scaleX(-1); display: inline-block; }

/* ===== LANGUAGE PRELOADER OVERLAY ===== */
#dl-lang-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 999999;
  flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  opacity: 0; transition: opacity 0.25s;
}
#dl-lang-overlay.active { opacity: 1; }
.dl-lang-spin {
  width: 36px; height: 36px;
  border: 2px solid var(--border);
  border-top-color: var(--accent-dark);
  border-radius: 50%;
  animation: dlSpin 0.7s linear infinite;
}
@keyframes dlSpin { to { transform: rotate(360deg); } }
.dl-lang-overlay-text {
  font-family: var(--font-body);
  font-size: 13px; font-weight: 500; letter-spacing: 1px;
  color: var(--fg-muted); text-transform: uppercase;
}

/* ===== MOBILE DRAWER ===== */
.mob-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.45); z-index: 1050;
  opacity: 0; transition: opacity 0.35s;
}
.mob-overlay.open { opacity: 1; }

.mob-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 320px; max-width: 88vw;
  background: var(--white); z-index: 1100;
  transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.25,0.1,0.25,1);
  display: flex; flex-direction: column; box-shadow: -4px 0 30px rgba(0,0,0,0.12);
}
.mob-drawer.open { transform: translateX(0); }

.mob-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px; height: 60px;
  border-bottom: 1px solid var(--border-light); flex-shrink: 0;
}
.mob-drawer-logo {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-heading); font-size: 18px; font-weight: 400;
  font-style: italic; color: var(--fg); letter-spacing: 0.5px;
}
.mob-drawer-logo .nav-logo-icon { font-size: 18px; opacity: 0.7; }
.mob-drawer-logo .nav-logo-wrap { display: flex; flex-direction: column; line-height: 1.1; }
.mob-drawer-logo .nav-logo-text { font-size: 16px; font-weight: 400; font-style: italic; color: var(--fg); letter-spacing: 0.5px; }
.mob-drawer-logo .nav-logo-sub { font-size: 9px; font-weight: 400; color: var(--fg-muted); letter-spacing: 0.3px; opacity: 0.7; }
.mob-drawer-close {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border: none; background: transparent; color: var(--fg-muted); font-size: 20px;
  transition: color 0.2s; cursor: pointer;
}
.mob-drawer-close:hover { color: var(--fg); }

.mob-drawer-slider { flex: 1 1 auto; position: relative; overflow: hidden; min-height: 0; }

.mob-level {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.25,0.1,0.25,1);
  display: flex; flex-direction: column; background: var(--white);
  padding-bottom: 24px;
}
.mob-level.active { transform: translateX(0); }
.mob-level.leaving { transform: translateX(-25%); }

.mob-level-back {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 20px; border-bottom: 1px solid var(--border-light);
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--fg-muted); cursor: pointer; flex-shrink: 0; transition: color 0.2s;
}
.mob-level-back:hover { color: var(--fg); }
.mob-level-title {
  padding: 20px 20px 4px; flex-shrink: 0;
  font-family: var(--font-heading); font-size: 22px; font-weight: 400;
  font-style: italic; color: var(--fg);
}

.mob-nav-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 20px; border-bottom: 1px solid var(--border-light);
  font-size: 13px; font-weight: 500; color: var(--fg); cursor: pointer;
  text-decoration: none; transition: background 0.2s; flex-shrink: 0;
}
.mob-nav-item:hover { background: var(--bg-alt); }
.mob-nav-arrow { font-size: 18px; color: var(--fg-muted); line-height: 1; }
.mob-nav-accent { color: var(--accent-dark); }

.mob-drawer-footer {
  flex-shrink: 0; border-top: 1px solid var(--border-light);
  display: grid; grid-template-columns: repeat(3, 1fr);
}
.mob-footer-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; padding: 14px 8px; border: none; background: transparent;
  color: var(--fg-muted); font-size: 9px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; text-decoration: none; position: relative; cursor: pointer;
  border-right: 1px solid var(--border-light); transition: background 0.2s, color 0.2s;
}
.mob-footer-btn:last-child { border-right: none; }
.mob-footer-btn:hover { background: var(--bg-alt); color: var(--fg); }
.mob-footer-badge {
  position: absolute; top: 8px; right: calc(50% - 22px);
  min-width: 15px; height: 15px;
  background: var(--accent); color: #fff; font-size: 9px; font-weight: 700;
  border-radius: 8px; padding: 0 3px;
  display: none; align-items: center; justify-content: center;
}
.mob-footer-badge.visible { display: flex; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav { padding: 0 20px; }
  .nav-auth-btn { display: none; }
  .nav-wholesale-btn { display: none; }
  .nav-logo-sub { font-size: 7px; }
}
@media (max-width: 600px) {
  .nav-btn-fav { display: none; }
  .nav-logo-sub { font-size: 6.5px; letter-spacing: 0.2px; }
  .nav-logo-icon { font-size: 18px; }
  .nav-logo-text { font-size: 18px; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 40px; border: none;
  font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase;
  transition: var(--transition); position: relative; overflow: hidden;
}
.btn-primary {
  background: #1a1a1f; color: var(--white);
}
.btn-primary:hover { background: #000; }
.btn-ghost {
  background: transparent; border: 1px solid var(--fg); color: var(--fg);
}
.btn-ghost:hover { background: var(--fg); color: var(--white); }
.btn-accent {
  background: var(--accent); color: var(--fg);
}
.btn-accent:hover { background: var(--accent-dark); }
/* Hero buttons — white on transparent */
.hero .btn-primary { background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); color: var(--white); border: 1px solid rgba(255,255,255,0.3); }
.hero .btn-primary:hover { background: rgba(255,255,255,0.25); }
.hero .btn-ghost { border-color: rgba(255,255,255,0.3); color: var(--white); }
.hero .btn-ghost:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.5); }

/* ===== HERO ===== */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center top;
  transition: transform 8s ease-out;
}
.hero:hover .hero-bg { transform: scale(1.03); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
}
.hero-content {
  position: relative; z-index: 2; color: var(--white); max-width: 800px; padding: 0 40px;
}
.hero h1 {
  font-family: var(--font-heading); font-size: clamp(48px, 7vw, 80px);
  font-weight: 400; font-style: italic; line-height: 1.1;
  margin-bottom: 28px;
}
.hero h1 span { color: var(--accent); }
.hero-desc {
  font-size: 15px; font-weight: 300; line-height: 1.8;
  max-width: 600px; margin: 0 auto 40px;
  opacity: 0.85; font-style: italic;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 768px) {
  .hero { min-height: 500px; }
  .hero-desc { font-size: 13px; }
  .btn { padding: 14px 28px; font-size: 10px; }
}

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }
.section-title {
  font-family: var(--font-heading); font-size: 36px; font-weight: 400;
  text-align: center; margin-bottom: 12px; color: var(--fg);
}
.section-sub {
  text-align: center; color: var(--fg-muted); font-size: 13px;
  font-weight: 400; letter-spacing: 1px; margin-bottom: 60px;
}

/* ===== FEATURES ===== */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: none;
}
.feature-card {
  padding: 48px 36px; background: var(--bg); text-align: center;
  transition: var(--transition);
}
.feature-card:hover { background: var(--bg-alt); }
.feature-icon { font-size: 28px; margin-bottom: 20px; }
.feature-card h3 {
  font-family: var(--font-heading); font-size: 18px; font-weight: 400;
  margin-bottom: 12px; color: var(--fg);
}
.feature-card p { font-size: 13px; color: var(--fg-muted); line-height: 1.7; }

@media (max-width: 900px) { .features-grid { grid-template-columns: 1fr; } }

/* ===== FOOTER ===== */
.footer {
  background: var(--fg); color: rgba(255,255,255,0.6);
}
.footer-top {
  padding: 56px 0 40px;
}
.footer-top-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.footer-col {
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.footer-col:first-child { padding-left: 0; }
.footer-col:last-child {
  border-right: none;
  padding-right: 0;
}
.footer-col h4 {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover { color: #fff; }

.footer-col-contacts .footer-contact-item {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px; font-size: 13px;
}
.footer-col-contacts .footer-contact-item svg {
  flex-shrink: 0; color: #fff; opacity: 0.6;
}
.footer-col-contacts .footer-contact-item a {
  color: #fff; text-decoration: none; transition: opacity 0.3s;
}
.footer-col-contacts .footer-contact-item a:hover { opacity: 0.8; }
.footer-col-contacts .footer-contact-item span {
  color: rgba(255,255,255,0.75);
}

/* Footer middle — social links */
.footer-middle {
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-social-block ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; justify-content: center; gap: 32px;
}
.footer-social-block a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}
.footer-social-block a:hover { color: #fff; }

/* Footer bottom */
.footer-bottom {
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
.footer-payments {
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer-pay-icon {
  height: 24px;
  width: auto;
  border-radius: 3px;
  filter: grayscale(1) opacity(0.4);
  transition: filter 0.3s;
}
.footer-pay-icon:hover {
  filter: grayscale(0) opacity(1);
}

/* ===== MOBILE FOOTER ===== */
@media (max-width: 1100px) {
  .footer-top-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-col:nth-child(4) { grid-column: auto; }
  .footer-col:nth-child(5) { grid-column: auto; }
  .footer-col {
    padding: 0 16px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 24px;
  }
  .footer-col:nth-child(1) { padding-left: 0; }
  .footer-col:nth-child(3) { padding-right: 0; }
  .footer-col:nth-child(4) { padding-left: 0; }
  .footer-col:nth-child(5) { padding-right: 0; }
  .footer-col:nth-last-child(-n+3) { border-bottom: none; padding-bottom: 0; }
}
@media (max-width: 768px) {
  .footer-top-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-col:nth-child(4) { grid-column: auto; }
  .footer-col:nth-child(5) { grid-column: auto; }
  .footer-col:nth-child(odd) { padding-left: 0; }
  .footer-col:nth-child(even) { padding-right: 0; }
  .footer-col:nth-last-child(-n+2) { border-bottom: none; padding-bottom: 0; }
}
@media (max-width: 600px) {
  .footer-top { padding: 36px 0 28px; }
  .footer-top-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 28px;
  }
  .footer-col {
    border-right: none;
    border-bottom: none;
    padding: 0;
  }
  .footer-col h4 { margin-bottom: 14px; }
  .footer-col-contacts .footer-contact-item {
    justify-content: center;
  }
  .footer-middle { padding: 20px 0; }
  .footer-social-block ul {
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-bottom-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }
  .footer-payments { order: -1; }
}

body { overflow-x: hidden; }


/* ===== PAGE CONTENT ===== */
.page-content { padding: 60px 0 100px; max-width: 860px; margin: 0 auto; }
@media (max-width: 768px) { .page-content { padding: 40px 0 80px; } }
/* Заголовок юр-документов — единый изящный стиль (как info-title), по центру, БЕЗ знаков переноса */
.page-content > h1 {
  text-align: center; max-width: 100%; margin: 0 auto 30px;
  font-family: var(--font-heading); font-weight: 400;
  font-size: clamp(23px, 5vw, 44px); line-height: 1.18; letter-spacing: 0.3px;
  color: var(--fg); overflow-wrap: break-word; word-break: normal; hyphens: none;
}
.page-content h2 {
  font-family: var(--font-heading); font-weight: 500;
  font-size: clamp(18px, 3.5vw, 24px); line-height: 1.3;
  color: var(--fg); margin: 34px 0 12px;
}
.page-content h3 { font-family: var(--font-heading); font-weight: 500; font-size: 18px; color: var(--fg); margin: 24px 0 10px; }
.page-content p { font-size: 15px; line-height: 1.65; color: var(--fg-muted); margin: 0 0 14px; }
.page-content ul, .page-content ol { margin: 0 0 18px; padding-left: 22px; }
.page-content li { font-size: 15px; line-height: 1.6; color: var(--fg-muted); margin-bottom: 7px; }
.page-content a { color: var(--accent); text-decoration: underline; }

/* ===== MODAL / AUTH FORM ===== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }

.modal {
  background: var(--white); border-radius: 14px; padding: 40px 36px;
  max-width: 460px; width: 100%; position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  max-height: 90vh; overflow-y: auto;
}
.modal h2 {
  font-family: var(--font-heading); font-size: 22px; font-weight: 400;
  font-style: italic; text-align: center; margin-bottom: 4px; color: var(--fg);
}
.modal-sub {
  text-align: center; color: var(--fg-muted); font-size: 13px; margin-bottom: 24px;
}
.modal-close {
  position: absolute; top: 16px; right: 18px;
  background: none; border: none; font-size: 22px; cursor: pointer;
  color: var(--fg-light); line-height: 1; padding: 4px;
  transition: color 0.2s;
}
.modal-close:hover { color: var(--fg); }

/* Auth tabs */
.auth-tabs {
  display: flex; border-bottom: 1px solid var(--border); margin-bottom: 24px; gap: 0;
}
.auth-tab {
  flex: 1; padding: 10px 16px; background: none; border: none;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.5px; cursor: pointer;
  color: var(--fg-muted); text-transform: uppercase; transition: all 0.2s;
}
.auth-tab.active { color: var(--fg); border-bottom-color: var(--accent); }
.auth-tab:hover:not(.active) { color: var(--fg); }

/* Form elements */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 11px; font-weight: 600; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.8px; }
.form-input {
  width: 100%; padding: 11px 14px; border: 1px solid #d9d3c8;
  border-radius: 8px; font-size: 14px; font-family: var(--font-body);
  background: #fff; color: var(--fg); box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(107,18,52,0.1); }
.form-input:disabled { background: var(--bg-alt); color: var(--fg-muted); cursor: not-allowed; }
/* Убираем голубую/жёлтую подсветку автозаполнения браузера (логин/пароль и т.п.) */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
  box-shadow: 0 0 0 1000px #fff inset !important;
  -webkit-text-fill-color: var(--fg) !important;
  caret-color: var(--fg);
  transition: background-color 9999s ease-out 0s !important;
}
.form-submit {
  width: 100%; padding: 13px 24px; background: var(--fg); color: var(--white);
  border: none; border-radius: 8px; font-size: 13px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; cursor: pointer;
  transition: background 0.2s; margin-top: 8px;
}
.form-submit:hover { background: var(--accent); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.forgot-link { background: none; border: none; color: var(--fg-muted); font-size: 13px; cursor: pointer; text-decoration: underline; padding: 0; font-family: inherit; transition: color 0.2s; }
.forgot-link:hover { color: var(--accent); }
/* Инструкция для оптовой регистрации */
.wl-reg-intro { background: none; border: none; border-radius: 0; padding: 0; margin-bottom: 18px; text-align: center; }
.wl-reg-intro p { font-size: 13px; color: var(--fg); margin: 0 0 8px; }
.wl-reg-intro ul { margin: 0; padding: 0; list-style: none; }
.wl-reg-intro li { font-size: 13px; color: var(--fg-muted); line-height: 1.7; }

.form-error {
  background: #fee2e2; color: #991b1b; border-radius: 8px;
  padding: 10px 14px; font-size: 13px; margin-bottom: 16px; display: none;
}
.form-error.visible { display: block; }

/* Role selector */
.role-selector { display: flex; gap: 10px; }
.role-option {
  flex: 1; padding: 14px 10px; border: 1px solid var(--border); border-radius: 8px;
  cursor: pointer; text-align: center; transition: all 0.2s; background: var(--bg);
}
.role-option.selected { border-color: var(--accent); background: rgba(107,18,52,0.05); }
.role-icon { font-size: 20px; margin-bottom: 4px; }
.role-title { font-size: 13px; font-weight: 600; color: var(--fg); }
.role-desc { font-size: 11px; color: var(--fg-muted); margin-top: 2px; }

/* Policy checkbox */
.policy-check { display: flex; align-items: flex-start; gap: 10px; margin: 16px 0; cursor: pointer; }
.policy-check input { flex-shrink: 0; margin-top: 2px; accent-color: var(--accent); }
.policy-check-label { font-size: 12px; color: var(--fg-muted); line-height: 1.5; }
.policy-check-label a { color: var(--accent); text-decoration: underline; }

/* Legal fields */
.legal-fields { display: none; }
.legal-fields.show { display: block; }

@media (max-width: 480px) {
  .modal { padding: 28px 20px; border-radius: 0 0 14px 14px; align-self: flex-end; max-height: 95vh; }
  .modal-overlay { align-items: flex-end; padding: 0; }
}

/* ===== TOAST NOTIFICATIONS ===== */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  background: #1a1a1f;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  z-index: 99999;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  animation: toast-in 0.3s ease forwards;
  max-width: 90vw;
  text-align: center;
}
.toast.hiding {
  animation: toast-out 0.4s ease forwards;
}
.toast-message { display: inline; }
.toast-close {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 18px;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
}
.toast-close:hover { color: #fff; }
@keyframes toast-in {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
@keyframes toast-out {
  from { opacity: 1; transform: translateX(-50%) translateY(0); }
  to { opacity: 0; transform: translateX(-50%) translateY(20px); }
}

/* ===== COOKIE POPUP ===== */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  max-width: 380px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  padding: 24px;
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.25,0.1,0.25,1);
  font-family: var(--font-body);
}

.cookie-banner.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.cookie-banner .cookie-text {
  font-size: 14px;
  color: var(--fg);
  line-height: 1.6;
  margin-bottom: 20px;
}

.cookie-banner .cookie-text a {
  color: var(--fg-muted);
  text-decoration: underline;
  transition: var(--transition);
}

.cookie-banner .cookie-text a:hover {
  color: var(--fg);
}

.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-banner .cookie-accept {
  flex: 1;
  padding: 12px 20px;
  background: var(--fg);
  color: var(--white);
  border: none;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.cookie-banner .cookie-accept:hover {
  background: var(--fg-muted);
}

.cookie-banner .cookie-decline {
  flex: 1;
  padding: 12px 20px;
  background: transparent;
  color: var(--fg-muted);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition);
}

.cookie-banner .cookie-decline:hover {
  border-color: var(--fg-muted);
  color: var(--fg);
}

@media (max-width: 480px) {
  .cookie-banner {
    bottom: 0;
    right: 0;
    left: 0;
    max-width: 100%;
    border-radius: 16px 16px 0 0;
    padding: 20px;
  }
}

/* ===== Floating Chat Widget ===== */
#dl-chat-widget { position: fixed; bottom: 24px; right: 24px; z-index: 9999; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; }

.dl-chat-btn {
  width: 56px; height: 56px; border-radius: 50%;
  background: #6b1234; color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 4px 20px rgba(107,18,52,0.3);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative; float: right;
}
.dl-chat-btn:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(107,18,52,0.4); }
.dl-chat-btn .dl-chat-icon { display: block; }
.dl-chat-btn .dl-chat-close-icon { display: none; }
.dl-chat-btn.active .dl-chat-icon { display: none; }
.dl-chat-btn.active .dl-chat-close-icon { display: block; }

.dl-chat-panel {
  position: absolute; bottom: 68px; right: 0;
  width: 280px; background: #fff; border-radius: 14px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12); overflow: hidden;
  display: none; flex-direction: column;
}
.dl-chat-panel.active { display: flex; }

.dl-chat-panel-header {
  padding: 16px 18px; font-size: 15px; font-weight: 700;
  color: #1a1a1f; background: #f8f6f1;
  border-bottom: 1px solid #f0ede5;
}

.dl-chat-item {
  display: flex; align-items: center; gap: 12px; padding: 14px 18px;
  text-decoration: none; transition: background 0.15s;
  border-bottom: 1px solid #f5f3ef;
}
.dl-chat-item:last-child { border-bottom: none; }
.dl-chat-item:hover { background: #faf8f4; }

.dl-chat-item-icon { flex-shrink: 0; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; background: #f5f3ef; border-radius: 10px; }

.dl-chat-item-text { line-height: 1.3; }
.dl-chat-item-text strong { font-size: 14px; color: #1a1a1f; font-weight: 600; }
.dl-chat-item-sub { font-size: 12px; color: #888; }

/* Review modal */
.dl-review-modal {
  position: fixed; inset: 0; background: rgba(0,0,0,0.3);
  z-index: 10000; display: flex; align-items: center; justify-content: center;
}
.dl-review-modal-inner {
  background: #fff; border-radius: 14px; padding: 28px; width: 360px; max-width: 90vw;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15); position: relative;
}
.dl-review-close { position: absolute; top: 12px; right: 16px; background: none; border: none; font-size: 24px; cursor: pointer; color: #888; }
.dl-review-modal-inner h3 { font-size: 18px; font-weight: 600; margin-bottom: 16px; color: #1a1a1f; }
.dl-review-modal-inner textarea { width: 100%; padding: 12px; border: 1px solid #e0ddd5; border-radius: 8px; font-size: 14px; font-family: inherit; resize: vertical; margin-bottom: 14px; min-height: 100px; }
.dl-review-modal-inner textarea:focus { outline: none; border-color: #6b1234; }
.dl-review-modal-inner .btn { width: 100%; padding: 12px; font-size: 14px; }

@media (max-width: 600px) {
  #dl-chat-widget { bottom: 16px; right: 16px; }
  .dl-chat-btn { width: 50px; height: 50px; }
  .dl-chat-panel { width: 260px; bottom: 60px; }
}

/* ===== Reviews (homepage) — карточки с лайками/дизлайками ===== */
.reviews-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.reviews-empty { text-align: center; color: #888; grid-column: 1 / -1; padding: 24px 0; }
.review-card { background: #fff; border: 1px solid #e8e3d5; border-radius: 14px; padding: 24px 22px; display: flex; flex-direction: column; gap: 14px; }
.review-head { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; background: #6b1234; color: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 20px; flex-shrink: 0; }
.review-meta { display: flex; flex-direction: column; }
.review-author { font-weight: 600; color: #1a1a1f; }
.review-date { font-size: 12px; color: #999; }
.review-text { font-size: 15px; line-height: 1.65; color: #2a2a30; margin: 0; flex: 1; }
.review-votes { display: flex; gap: 10px; }
.review-vote { display: inline-flex; align-items: center; gap: 6px; background: #faf7f2; border: 1px solid #e8e3d5; border-radius: 50px; padding: 7px 14px; cursor: pointer; color: #6b6b6b; font-size: 13px; transition: all .2s ease; }
.review-vote svg { display: block; }
.review-vote:hover:not(:disabled) { border-color: #6b1234; color: #6b1234; }
.review-vote.like.voted { background: #6b1234; color: #fff; border-color: #6b1234; }
.review-vote.dislike.voted { background: #555; color: #fff; border-color: #555; }
.review-vote:disabled { cursor: default; }
@media (max-width: 900px) { .reviews-container { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .reviews-container { grid-template-columns: 1fr; } }

/* ===== BRAND STORY — 3 варианта на выбор ===== */
.variant-label { max-width: var(--max-width); margin: 0 auto; padding: 28px 40px 0; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: #b9a9ad; font-weight: 600; }
.storyv { padding: 40px 0 64px; }
.storyv-eyebrow { font-family: var(--font-heading); font-style: italic; color: var(--accent); font-size: 14px; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 18px; }
.storyv-title { font-family: var(--font-heading); font-weight: 400; font-size: clamp(28px, 4.5vw, 46px); line-height: 1.12; color: var(--fg); }
.storyv-title em { font-style: italic; color: var(--accent); }
.storyv-divider { width: 64px; height: 1px; background: var(--accent); margin: 22px 0; opacity: .6; }
.storyv-lead { font-size: 17px; line-height: 1.75; color: var(--fg-muted); font-weight: 300; }

/* V1 — ультра-минимализм */
.storyv1-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.storyv1 .storyv-divider { margin: 22px auto; }
.storyv1-features { margin-top: 34px; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 6px 14px; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--fg-muted); }
.storyv1-features i { color: var(--accent); font-style: normal; opacity: .7; }

/* V2 — editorial с фото */
.storyv2-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.storyv2-text { text-align: left; }
.storyv-divider-left { margin-left: 0; margin-right: 0; }
.storyv2-features { margin-top: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
.storyv2-features li { position: relative; padding-left: 22px; font-size: 14px; color: var(--fg-muted); letter-spacing: .3px; }
.storyv2-features li::before { content: '✦'; position: absolute; left: 0; color: var(--accent); font-size: 12px; }
.storyv2-photo { margin: 0; }
.storyv2-photo img { width: 100%; border-radius: 14px; box-shadow: 0 18px 50px rgba(0,0,0,0.14); object-fit: cover; aspect-ratio: 4/5; }

/* V3 — изящные карточки */
.storyv-center { text-align: center; max-width: 760px; margin-left: auto; margin-right: auto; }
.storyv3 .storyv-lead.storyv-center { margin-bottom: 6px; }
.storyv-center-divider { margin: 22px auto; }
.storyv3-cards { margin-top: 40px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.storyv3-card { text-align: center; padding: 32px 18px; background: var(--white); border: 1px solid var(--border); border-radius: 14px; transition: var(--transition); }
.storyv3-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(107,18,52,0.08); border-color: rgba(107,18,52,0.22); }
.storyv3-ic { display: block; font-size: 24px; color: var(--accent); margin-bottom: 14px; }
.storyv3-card h3 { font-family: var(--font-heading); font-weight: 400; font-size: 18px; color: var(--fg); line-height: 1.3; }

@media (max-width: 900px) {
  .storyv2-grid { grid-template-columns: 1fr; gap: 30px; }
  .storyv2-photo { order: -1; }
  .storyv2-photo img { aspect-ratio: 16/10; }
  .storyv3-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .storyv3-cards { grid-template-columns: 1fr 1fr; }
  .storyv1-features { font-size: 11px; letter-spacing: 1px; }
  .variant-label { padding: 24px 20px 0; }
}

/* ===== Reviews MODAL (как на estet) ===== */
.dl-reviews-modal { position: fixed; inset: 0; z-index: 3000; background: rgba(20,18,22,0.55); backdrop-filter: blur(3px); display: none; align-items: flex-start; justify-content: center; padding: 40px 16px; overflow-y: auto; }
.dl-reviews-box { background: #fff; width: 100%; max-width: 480px; border-radius: 16px; box-shadow: 0 24px 70px rgba(0,0,0,0.3); display: flex; flex-direction: column; max-height: calc(100vh - 80px); overflow: hidden; }
.dl-reviews-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; background: #1a1a1f; color: #fff; flex-shrink: 0; }
.dl-reviews-head h3 { font-family: 'Playfair Display', serif; font-weight: 500; font-size: 20px; margin: 0; }
.dl-reviews-close { background: transparent; border: none; color: #fff; font-size: 26px; line-height: 1; cursor: pointer; opacity: .8; }
.dl-reviews-close:hover { opacity: 1; }
.dl-reviews-list { padding: 16px 18px; overflow-y: auto; display: flex; flex-direction: column; gap: 14px; -webkit-overflow-scrolling: touch; }
.dl-reviews-empty { text-align: center; color: #999; padding: 30px 0; }
.dl-reviews-list .review-card { background: #fff; border: 1px solid #e8e3d5; border-radius: 12px; padding: 16px 18px; }
.dl-reviews-list .review-card-top { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-bottom: 8px; }
.dl-reviews-list .review-author { font-weight: 600; color: #1a1a1f; font-size: 15px; }
.dl-reviews-list .review-date { font-size: 12px; color: #aaa; flex-shrink: 0; }
.dl-reviews-list .review-votes { display: flex; gap: 8px; margin-bottom: 10px; }
.dl-reviews-list .review-vote { display: inline-flex; align-items: center; gap: 5px; background: #faf7f2; border: 1px solid #e8e3d5; border-radius: 50px; padding: 5px 11px; cursor: pointer; color: #6b6b6b; font-size: 12px; transition: all .2s; }
.dl-reviews-list .review-vote:hover:not(:disabled) { border-color: #6b1234; color: #6b1234; }
.dl-reviews-list .review-vote.like.voted { background: #6b1234; color: #fff; border-color: #6b1234; }
.dl-reviews-list .review-vote.dislike.voted { background: #555; color: #fff; border-color: #555; }
.dl-reviews-list .review-vote:disabled { cursor: default; }
.dl-reviews-list .review-text { font-size: 14px; line-height: 1.6; color: #2a2a30; margin: 0; }
.review-reply { margin-top: 12px; padding: 12px 14px; background: #f7f3ee; border-left: 3px solid #6b1234; border-radius: 8px; }
.review-reply-label { font-size: 12px; font-weight: 700; color: #6b1234; margin-bottom: 4px; }
.review-reply p { font-size: 13px; line-height: 1.55; color: #4a4a50; margin: 0; }
.dl-reviews-foot { padding: 14px 18px; border-top: 1px solid #eee; flex-shrink: 0; }
.dl-reviews-leave-btn { width: 100%; padding: 13px; background: #1a1a1f; color: #fff; border: none; border-radius: 50px; font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; transition: background .25s; }
.dl-reviews-leave-btn:hover { background: #6b1234; }
.dl-review-form { padding: 0 18px 18px; }
.dl-review-input { width: 100%; padding: 12px 14px; border: 1px solid #e8e3d5; border-radius: 10px; font-family: inherit; font-size: 14px; margin-bottom: 10px; background: #fff; color: #1a1a1f; }
.dl-review-input:focus { outline: none; border-color: #6b1234; }
textarea.dl-review-input { resize: vertical; }
.dl-review-form-actions { display: flex; gap: 10px; }
.dl-review-cancel, .dl-review-send { flex: 1; padding: 11px; border-radius: 50px; font-size: 13px; font-weight: 600; cursor: pointer; transition: all .2s; }
.dl-review-cancel { background: transparent; border: 1px solid #ccc; color: #555; }
.dl-review-send { background: #6b1234; border: 1px solid #6b1234; color: #fff; }
.dl-review-send:hover { background: #8b1844; }
@media (max-width: 520px) { .dl-reviews-modal { padding: 0; } .dl-reviews-box { max-width: 100%; max-height: 100vh; height: 100vh; border-radius: 0; } }

/* ===== Story block — финальный текст (вариант 3) ===== */
.storyv-full { max-width: none; text-align: center; margin: 0 auto; }
.storyv-subhead { text-align: center; font-family: 'Playfair Display', serif; font-style: italic; font-size: clamp(18px, 2.5vw, 24px); color: #1a1a1f; margin: 34px 0 4px; }
.storyv-slogan { text-align: center; font-family: 'Playfair Display', serif; font-style: italic; font-weight: 500; font-size: clamp(28px, 5.5vw, 52px); color: #6b1234; margin-top: 48px; line-height: 1.1; }
.storyv3 .storyv3-card h3 { font-size: 16px; line-height: 1.35; }

/* Заголовок story-блока — во всю ширину сайта */
.storyv3 .storyv-title.storyv-center { max-width: none; }

/* Оценка автора в форме отзыва */
.dl-review-rate { display: flex; align-items: center; gap: 10px; margin: 2px 0 12px; }
.dl-review-rate-label { font-size: 13px; color: #6b6b6b; }
.dl-rate-btn { width: 42px; height: 36px; border: 1px solid #e8e3d5; background: #faf7f2; border-radius: 8px; color: #6b6b6b; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; transition: all .2s; }
.dl-rate-btn:hover { border-color: #6b1234; color: #6b1234; }
.dl-rate-btn.like.active { background: #6b1234; color: #fff; border-color: #6b1234; }
.dl-rate-btn.dislike.active { background: #555; color: #fff; border-color: #555; }

/* Подпись под лого — разрешить перенос (для переводов) */
.nav-logo-sub { white-space: normal; max-width: 230px; }
.mob-drawer-logo .nav-logo-sub { max-width: 220px; }

/* Заголовок story-блока — крупнее, на всю горизонталь */
.storyv3 .storyv-title.storyv-center { max-width: none; font-size: clamp(30px, 5.2vw, 64px); line-height: 1.08; }

/* Форма отзыва — занимает тело модалки, своя прокрутка */
.dl-review-form { flex: 1 1 auto; min-height: 0; overflow-y: auto; padding: 18px 18px 20px; }
.dl-review-form-title { font-family: 'Playfair Display', serif; font-size: 18px; color: #1a1a1f; margin-bottom: 14px; }
.dl-review-form .dl-review-input { margin-bottom: 12px; }
.dl-review-form textarea.dl-review-input { min-height: 110px; }

/* Подвал: на мобиле скрываем подпункты каталога (оставляем «Все украшения») */
@media (max-width: 768px) { .footer-cat-sub { display: none; } }
