/* Momo Trust Sans — Variable font (wght 200-800) */
@font-face {
  font-family: 'Momo Trust Sans';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('../fonts/momo-trust-sans/momo-trust-sans.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Material Icons */
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url('../fonts/material-icons/material-icons.woff2') format('woff2');
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
}
/* ============================================
   TILE TIME — STYLE.CSS
   Premium porcelain brand
   ============================================ */

/* CSS Variables */
:root {
  --primary-500: #4d00ff;
  --neutral-100: #fff;
  --neutral-500: #111;
  --spacing-padding: 6vw;
  --spacing-container: 4vw;
}

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: 'Momo Trust Sans', sans-serif;
  background-color: #ffffff;
  color: #1a1a1a;
  overflow-x: hidden;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

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

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

.section {
  padding: 120px 0;
  position: relative;
}

[data-start="hidden"] {
  visibility: hidden;
}

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 12px 16px;
  min-height: 102px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.4s ease, box-shadow 0.4s ease, padding 0.35s ease, min-height 0.35s ease;
}
.navbar.scrolled {
  padding: 8px 16px;
  min-height: 70px;
  background-color: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}


.navbar-left-group {
  display: flex;
  align-items: center;
  gap: 0;
}

/* Centered logo */
.navbar-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  z-index: 2;
}
.navbar-logo .logo-wrap {
  display: block;
  overflow: hidden;
  height: 56px;
  transition: height 0.35s ease;
  line-height: 0;
}
.navbar-logo img {
  height: 56px;
  width: auto;
  display: block;
}
.navbar.scrolled .navbar-logo .logo-wrap {
  height: 40px;
}

.navbar-logo .logo-black { display: block; }
.navbar-logo .logo-white { display: none; }

.navbar-side {
  display: flex;
  align-items: center;
  gap: 12px;
}
.navbar-right-group {
  gap: 12px;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Unified navbar link style — все пункты пилюлями с бордером, как на оригинале */
.navbar-btn-outline,
.navbar-item-text {
  padding: 8px 20px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: none;
  color: #1a1a1a;
  background: transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
}
.navbar-btn-outline:hover,
.navbar-item-text:hover {
  background: #1a1a1a;
  color: #fff;
  opacity: 1;
}

/* LK icon link — premium: золотая рамка, пульсирующий ring, slide-in иконки,
   tooltip на hover. Золото #b49a6a — брендовый акцент. */
.navbar-lk {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(180, 154, 106, 0.35);
  border-radius: 50%;
  color: #1a1a1a;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), rgba(248, 244, 235, 0.6));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.6),
    0 1px 3px rgba(180, 154, 106, 0.1);
  transition:
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease,
    color 0.35s ease;
  flex-shrink: 0;
  overflow: visible;
}

/* Пульсирующий ring — "живой" индикатор */
.navbar-lk-pulse {
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 1.5px solid rgba(180, 154, 106, 0.5);
  opacity: 0;
  pointer-events: none;
  animation: navbar-lk-pulse 2.6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes navbar-lk-pulse {
  0%   { transform: scale(0.92); opacity: 0.55; }
  70%  { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}

.navbar-lk-icon {
  position: relative;
  z-index: 1;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Hover: золотой фон, белая иконка, микро-scale, иконка уезжает чуть-чуть
   вправо (в «коробку»). Tooltip всплывает сверху. */
.navbar-lk:hover {
  background: linear-gradient(135deg, #c4ad7c 0%, #b49a6a 60%, #a0875b 100%);
  border-color: #b49a6a;
  color: #fff;
  box-shadow:
    0 6px 20px rgba(180, 154, 106, 0.35),
    0 0 0 4px rgba(180, 154, 106, 0.12);
  transform: translateY(-1px);
}
.navbar-lk:hover .navbar-lk-icon {
  transform: translateX(2px);
}
.navbar-lk:hover .navbar-lk-pulse {
  animation: none;
  opacity: 0;
}

/* Active — прожать */
.navbar-lk:active {
  transform: translateY(0) scale(0.96);
  transition-duration: 0.1s;
}

/* Focus-visible — для клавиатурной навигации */
.navbar-lk:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(180, 154, 106, 0.35),
    0 6px 20px rgba(180, 154, 106, 0.2);
}

/* Tooltip — всплывает под иконкой на hover */
.navbar-lk::after {
  content: attr(data-tooltip);
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  padding: 6px 12px;
  background: #1a1a1a;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  white-space: nowrap;
  border-radius: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 100;
}
.navbar-lk::before {
  content: "";
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #1a1a1a;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.navbar-lk:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.navbar-lk:hover::before {
  opacity: 1;
}

.navbar-item-text:hover {
  opacity: 1;
}

/* Navbar left buttons */
.navbar-left-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}


.navbar-hamburger {
  display: none;
  width: 32px;
  height: 32px;
  cursor: pointer;
}

.navbar-hamburger img {
  width: 100%;
  height: 100%;
}

/* ============================================
   BUTTON — shared component used across all pages
   ============================================ */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #1a1a1a;
  transition: all 0.4s ease;
  background: transparent;
}

.btn-primary .material-icons {
  font-size: 18px;
}

.btn-primary:hover {
  background: #1a1a1a;
  color: #ffffff;
  opacity: 1;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #ffffff;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 40px;
  width: 32px;
  height: 32px;
  cursor: pointer;
}

.mobile-menu-close img {
  width: 100%;
}

.mobile-menu a {
  font-size: 1.5rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #1a1a1a;
  text-align: center;
  padding: 0 20px;
  white-space: nowrap;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background-color: var(--neutral-500);
  color: #fff;
  padding: var(--spacing-padding) var(--spacing-container) 3vw;
  border-top: none;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
}

.footer-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  min-height: 100%;
}

.footer-cta {
  text-align: center;
  margin-bottom: 6vw;
}

.footer-cta-text {
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 200;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: #fff;
}

.footer-cta-desc {
  font-size: clamp(0.9rem, 1.1vw, 1.1vw);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 30px;
}

.footer-cta .btn-primary {
  margin-top: 10px;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.footer-cta .btn-primary:hover {
  background: #fff;
  color: var(--neutral-500);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-top: 4vw;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-col-title {
  font-size: clamp(0.7rem, 1vw, 1vw);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: clamp(0.85rem, 1.1vw, 1.1vw);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
  color: #fff;
  opacity: 1;
}

.footer-bottom {
  margin-top: 4vw;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom-text {
  font-size: clamp(0.7rem, 1vw, 1vw);
  color: rgba(255, 255, 255, 0.35);
  font-weight: 300;
}

.footer-logo img {
  height: 48px;
}

/* ============================================
   WIDE SCREENS (1600px+) — global rules only
   ============================================ */

@media (min-width: 1600px) {
  .container {
    max-width: 1500px;
    padding: 0 60px;
  }

  .navbar {
    padding: 24px 60px;
  }
}

/* ============================================
   SVG FILTER (hidden)
   ============================================ */

.svg-filters {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */

@media (max-width: 991px) {
  .navbar-menu {
    display: none;
  }

  .navbar-left-buttons {
    display: none;
  }

  .navbar-right-group {
    display: none;
  }

  .navbar-hamburger {
    display: block;
    margin-left: auto;
  }

  .container {
    padding: 0 30px;
  }

  .footer {
    min-height: auto;
    padding: 60px 30px 30px;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-cta-desc {
    font-size: 1rem;
  }

  .footer-col-title {
    font-size: 0.75rem;
  }

  .footer-links a {
    font-size: 0.9rem;
  }

  .footer-bottom-text {
    font-size: 0.75rem;
  }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */

@media (max-width: 767px) {
  .section {
    padding: 80px 0;
  }

  .navbar {
    padding: 16px 20px;
  }

  .footer {
    min-height: auto;
    padding: 60px 20px 30px;
  }

  .footer-cta-text {
    font-size: clamp(1.75rem, 8vw, 3rem);
  }

  .footer-cta-desc {
    font-size: 0.9375rem;
    margin-bottom: 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-col-title {
    font-size: 0.75rem;
  }

  .footer-links a {
    font-size: 0.9rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-bottom-text {
    font-size: 0.75rem;
  }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE
   ============================================ */

@media (max-width: 479px) {
  .navbar {
    padding: 14px 16px;
  }

  .mobile-menu-close {
    right: 16px;
  }

  .btn-primary {
    padding: 12px 24px;
    font-size: 0.8125rem;
  }
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #fff;
  border-top: 1px solid #e8e4de;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.visible {
  transform: translateY(0);
}
.cookie-banner-text {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(0,0,0,0.6);
  line-height: 1.5;
  flex: 1;
}
.cookie-banner-text a {
  color: #b49a6a;
  text-decoration: none;
  transition: opacity 0.3s;
}
.cookie-banner-text a:hover {
  opacity: 0.7;
}
.cookie-banner-btn {
  background: #1a1a1a;
  color: #fff;
  border: none;
  padding: 10px 28px;
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
  font-family: 'Momo Trust Sans', sans-serif;
}
.cookie-banner-btn:hover {
  background: #b49a6a;
}
@media (max-width: 767px) {
  .cookie-banner {
    flex-direction: column;
    padding: 16px 20px;
    gap: 12px;
    text-align: center;
  }
  .cookie-banner-btn {
    width: 100%;
  }
}

/* ============================================
   SEO-BLOCK на странице товара
   (lead / h2 / content / таблица / FAQ accordion)
   ============================================ */
.seo-block {
  background: #faf8f5;
  padding: 6vw var(--spacing-container);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: 4vw;
}
.seo-wrap {
  max-width: 1400px;
  margin: 0 auto;
  color: #1a1a1a;
  font-weight: 300;
  line-height: 1.7;
}
.seo-lead {
  font-size: clamp(1rem, 1.3vw, 1.3rem);
  line-height: 1.55;
  color: #1a1a1a;
  font-weight: 300;
  letter-spacing: -0.005em;
  margin: 0 0 2.5vw;
  padding-bottom: 2.5vw;
  border-bottom: 1px solid rgba(180, 154, 106, 0.25);
}
.seo-wrap h2 {
  font-size: clamp(1.2rem, 1.6vw, 1.6rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  color: #1a1a1a;
  margin: 3vw 0 1vw;
  line-height: 1.25;
}
.seo-wrap h2:first-of-type { margin-top: 0; }
.seo-wrap p {
  font-size: clamp(0.9rem, 1.02vw, 1.02rem);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.72);
  margin: 0 0 1.2vw;
}
.seo-wrap p strong { color: #1a1a1a; font-weight: 500; }
.seo-wrap p em { color: #b49a6a; font-style: normal; font-weight: 400; }

/* Таблица характеристик */
.seo-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5vw 0;
  font-size: 0.9rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  overflow: hidden;
}
.seo-table tr { border-bottom: 1px solid rgba(0, 0, 0, 0.06); }
.seo-table tr:last-child { border-bottom: 0; }
.seo-table th,
.seo-table td {
  padding: 14px 20px;
  text-align: left;
  font-weight: 400;
  vertical-align: top;
}
.seo-table th {
  width: 40%;
  background: #f0ede8;
  color: rgba(0, 0, 0, 0.65);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}
.seo-table td {
  color: #1a1a1a;
  font-weight: 400;
}

/* FAQ accordion через <details> */
.seo-faq {
  margin-top: 1.5vw;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.seo-faq details {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 0;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.seo-faq details[open] {
  border-color: rgba(180, 154, 106, 0.4);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}
.seo-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 24px;
  font-size: 1rem;
  font-weight: 400;
  color: #1a1a1a;
  letter-spacing: -0.005em;
  position: relative;
  padding-right: 48px;
}
.seo-faq summary::-webkit-details-marker { display: none; }
.seo-faq summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: #b49a6a;
  font-weight: 300;
  transition: transform 0.3s ease;
  line-height: 1;
}
.seo-faq details[open] summary::after {
  content: "−";
  transform: translateY(-50%) rotate(0deg);
}
.seo-faq summary:hover { color: #b49a6a; }
.seo-faq details p {
  padding: 0 24px 20px;
  margin: 0;
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.72);
}

@media (max-width: 767px) {
  .seo-block { padding: 10vw 6vw; }
  .seo-lead { font-size: 1rem; padding-bottom: 6vw; margin-bottom: 6vw; }
  .seo-wrap h2 { font-size: 1.2rem; margin: 8vw 0 3vw; }
  .seo-wrap p { font-size: 0.9rem; }
  .seo-table th, .seo-table td { padding: 10px 14px; font-size: 0.82rem; }
  .seo-faq summary { font-size: 0.95rem; padding: 14px 18px 14px 18px; padding-right: 40px; }
  .seo-faq summary::after { right: 18px; }
  .seo-faq details p { padding: 0 18px 16px; }
}

/* ============================================
   MODAL (buy / feedback) — рендерится LegacyFormBridge на любой странице
   ============================================ */
.buy-modal-overlay { position: fixed; inset: 0; z-index: 9999; background: rgba(20,18,15,0.55); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; padding: 16px; animation: fadeIn 0.2s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.buy-modal { background: #fff; border-radius: 16px; padding: 32px; width: 100%; max-width: 420px; position: relative; box-shadow: 0 24px 48px rgba(0,0,0,0.3); max-height: calc(100vh - 32px); overflow-y: auto; }
.buy-modal-close { position: absolute; top: 12px; right: 14px; width: 32px; height: 32px; background: none; border: none; font-size: 1.6rem; color: rgba(0,0,0,0.4); cursor: pointer; line-height: 1; }
.buy-modal-close:hover { color: #1a1a1a; }
.buy-modal-title { font-size: 1.3rem; font-weight: 300; letter-spacing: -0.01em; color: #1a1a1a; margin: 0 0 4px; }
.buy-modal-product { font-size: 0.78rem; color: rgba(0,0,0,0.5); margin: 0 0 20px; }
.buy-modal-form { display: flex; flex-direction: column; gap: 14px; }
.buy-modal-form label { display: flex; flex-direction: column; gap: 4px; }
.buy-modal-form label span { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(0,0,0,0.4); font-weight: 400; }
.buy-modal-form input[type="text"], .buy-modal-form input[type="tel"], .buy-modal-form input[type="email"] { padding: 12px 16px; border: 1px solid rgba(0,0,0,0.12); border-radius: 50px; font-family: inherit; font-size: 0.85rem; color: #1a1a1a; background: #fff; transition: border-color 0.2s; }
.buy-modal-form textarea { padding: 12px 16px; border: 1px solid rgba(0,0,0,0.12); border-radius: 16px; font-family: inherit; font-size: 0.85rem; color: #1a1a1a; background: #fff; transition: border-color 0.2s; resize: vertical; min-height: 90px; }
.buy-modal-form input:focus, .buy-modal-form textarea:focus { outline: none; border-color: #b49a6a; }
.buy-modal-submit { margin-top: 8px; padding: 14px 28px; background: #2c2520; color: #f5f0ea; border: none; border-radius: 50px; font-size: 0.8rem; font-weight: 400; letter-spacing: 0.05em; text-transform: uppercase; cursor: pointer; transition: background 0.3s; font-family: inherit; }
.buy-modal-submit:hover { background: #b49a6a; }
.buy-modal-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.buy-modal-hint { font-size: 0.7rem; color: rgba(0,0,0,0.4); text-align: center; margin: 0; }
.lead-form-status { margin-top: 12px; font-size: 0.85rem; line-height: 1.5; }
.lead-form-status.is-success { color: #2c8a4a; }
.lead-form-status.is-error { color: #b8362a; }
