/* =============================================
   АТЕЛЬЕ МЕБЕЛИ — Main Stylesheet
   Color scheme: dark charcoal + gold/amber
   Fonts: Cormorant Garamond (headings) + Jost (body/UI)
   ============================================= */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Jost:wght@300;400;500;600;700&display=swap');

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

:root {
  --dark-bg: #2b2b2b;
  --darker-bg: #1f1f1f;
  --mid-bg: #363636;
  --light-bg: #f5f5f0;
  --white: #ffffff;
  --gold: #c8a96e;
  --gold-dark: #b8953a;
  --gold-light: #d4ba82;
  --text-dark: #2b2b2b;
  --text-light: #e0e0d8;
  --text-muted: #999;
  --border: rgba(200, 169, 110, 0.2);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.12);

  /* Updated font variables */
  --font-heading: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
  --font-body: 'Jost', 'Segoe UI', 'Arial', sans-serif;

  --transition: 0.25s ease;
  --radius: 4px;
  --container: 1400px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--white);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
ul {
  list-style: none;
}

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

.container-wide {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* =============================================
   TOP BAR
   ============================================= */
.top-bar {
  background: var(--darker-bg);
  color: var(--text-light);
  font-size: 12px;
  padding: 7px 0;
  font-weight: 400;
  letter-spacing: 0.2px;
}
.top-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.top-bar-link,
.top-bar-phone,
.top-bar-address {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--text-light);
  transition: color var(--transition);
}
.top-bar-link:hover,
.top-bar-phone:hover,
.top-bar-address:hover {
  color: var(--gold);
}
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.top-bar-phone span {
  color: var(--gold);
  font-weight: 500;
}
.top-bar-cta-btn {
  background: var(--gold);
  color: var(--darker-bg);
  padding: 4px 14px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: background var(--transition);
  font-family: var(--font-body);
}
.top-bar-cta-btn:hover {
  background: var(--gold-light);
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.site-header.scrolled {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  height: 70px;
  gap: 24px;
}

/* Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-icon {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5px;
  width: 26px;
  height: 22px;
}
.logo-icon span {
  background: var(--dark-bg);
  display: block;
  border-radius: 1px;
}
.logo-icon span:nth-child(1) {
  background: var(--dark-bg);
}
.logo-icon span:nth-child(2) {
  background: var(--gold);
}
.logo-icon span:nth-child(3) {
  background: var(--gold);
}
.logo-icon span:nth-child(4) {
  background: var(--dark-bg);
}

.logo-text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark-bg);
  line-height: 1;
}
.logo-accent {
  color: var(--gold);
}

/* Main Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  margin-right: 8px;
}
.nav-link {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
  padding: 8px 12px;
  border-radius: var(--radius);
  transition:
    color var(--transition),
    background var(--transition);
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.nav-link:hover,
.nav-link.active {
  color: var(--gold-dark);
}
.nav-link-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-link-toggle svg {
  transition: transform var(--transition);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 16px;
  pointer-events: auto;
}
.nav-dropdown:hover .dropdown-menu-vertical {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.nav-dropdown:hover .nav-link-toggle svg {
  transform: rotate(180deg);
}

.dropdown-menu-vertical {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  transform: translateY(-10px);
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-top: 2px solid var(--gold);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
  min-width: 220px;
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  /* Задержка закрытия 400ms — успеваете переместить курсор */
  transition:
    opacity var(--transition),
    transform var(--transition),
    visibility 0s 0.4s;
  z-index: 200;
}

/* При наведении — открываем сразу, без задержки */
.nav-dropdown:hover .dropdown-menu-vertical {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition:
    opacity var(--transition),
    transform var(--transition),
    visibility 0s;
}

/* 2. Увеличиваем невидимый «мост» между кнопкой и меню */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  /* Высота должна перекрывать gap между nav и dropdown-menu (8px + запас) */
  height: 20px;
  pointer-events: auto;
}

.dropdown-item-parent {
  position: relative;
}
.dropdown-item-with-sub {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 16px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-dark);
  transition:
    background var(--transition),
    color var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.dropdown-item-with-sub:hover {
  background: var(--light-bg);
  color: var(--gold-dark);
}
.arrow-right {
  margin-left: auto;
  opacity: 0.4;
  flex-shrink: 0;
  transition: opacity var(--transition);
}
.dropdown-item-with-sub:hover .arrow-right {
  opacity: 0.7;
}
.dropdown-submenu {
  position: absolute;
  left: 100%;
  top: -16px;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-left: 2px solid var(--gold);
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  min-width: 200px;
  padding: 8px 0;
  z-index: 201;
  /* Заменяем display:none на opacity/visibility для плавности */
  display: flex;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-6px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0s 0.35s;
  margin-left: 4px;
}
.dropdown-item-parent:hover > .dropdown-submenu {
  display: flex;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0s;
}

/* 4. Невидимый «мост» для подменю — перекрывает gap между колонками */
.dropdown-item-parent::after {
  content: '';
  position: absolute;
  top: 0;
  right: -8px;
  width: 8px;
  height: 100%;
  pointer-events: auto;
}
.dropdown-submenu-wide {
  min-width: 260px;
  max-height: 480px;
  overflow-y: auto;
}
.dropdown-submenu-wide::-webkit-scrollbar {
  width: 6px;
}
.dropdown-submenu-wide::-webkit-scrollbar-track {
  background: #f5f5f5;
  border-radius: 3px;
}
.dropdown-submenu-wide::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}
.dropdown-submenu-wide::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dark);
}

.dropdown-subitem {
  padding: 9px 16px;
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 13px;
  text-decoration: none;
  transition:
    background var(--transition),
    color var(--transition);
}
.dropdown-subitem:hover {
  background: var(--light-bg);
  color: var(--gold-dark);
}
.dropdown-subitem-all {
  border-top: 1px solid var(--border);
  margin-top: 4px;
  padding-top: 12px !important;
  font-weight: 600;
  color: var(--gold-dark) !important;
}
.dropdown-subitem-all:hover {
  background: var(--light-bg);
}
.dropdown-item-all {
  display: block;
  border-top: 1px solid var(--border);
  margin-top: 8px;
  padding: 12px 16px;
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 11px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition:
    background var(--transition),
    color var(--transition);
}
.dropdown-item-all:hover {
  background: var(--light-bg);
  color: var(--dark-bg);
}

/* Burger */
.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  flex-shrink: 0;
}
.burger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark-bg);
  border-radius: 2px;
  transition: all var(--transition);
}

/* =============================================
   MOBILE MENU
   ============================================= */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 149;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--transition),
    visibility var(--transition);
}
.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 300px;
  max-width: 90%;
  background: var(--white);
  z-index: 150;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.mobile-menu-close {
  padding: 6px;
  color: var(--text-dark);
}
.mobile-menu-content {
  flex: 1;
  padding: 8px 0;
}
.mobile-menu-section {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.mobile-menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: color var(--transition);
}
.mobile-menu-link.active,
.mobile-menu-link:hover {
  color: var(--gold-dark);
}
.mobile-submenu {
  display: none;
  background: var(--light-bg);
}
.mobile-submenu.active {
  display: block;
}
.mobile-submenu-link {
  display: block;
  padding: 10px 28px;
  font-size: 13px;
  color: #555;
  transition: color var(--transition);
}
.mobile-submenu-link:hover,
.mobile-submenu-link.active {
  color: var(--gold-dark);
}
.mobile-submenu-all {
  font-weight: 600;
  color: var(--gold-dark) !important;
}
.mobile-submenu-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  margin: 8px 0;
}
.mobile-menu-footer {
  padding: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.mobile-cta-button {
  width: 100%;
  background: var(--gold);
  color: var(--darker-bg);
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 12px;
  padding: 14px;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.mobile-cta-button:hover {
  background: var(--gold-light);
}

/* =============================================
   MODAL
   ============================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--transition),
    visibility var(--transition);
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.modal-box {
  background: var(--white);
  border-radius: 6px;
  padding: 40px 36px;
  max-width: 460px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  transform: scale(0.95);
  transition: transform var(--transition);
}
.modal-overlay.active .modal-box {
  transform: scale(1);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  color: #999;
  padding: 6px;
  transition: color var(--transition);
}
.modal-close:hover {
  color: var(--text-dark);
}
.modal-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 6px;
}
.modal-subtitle {
  font-size: 13px;
  color: #777;
  margin-bottom: 24px;
  font-weight: 400;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 16px;
}
.form-group label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #555;
}
.optional {
  color: #aaa;
  font-weight: 400;
}
.form-group input,
.form-group textarea {
  border: 1.5px solid #ddd;
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 14px;
  font-family: var(--font-body);
  transition: border-color var(--transition);
  outline: none;
  resize: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.modal-submit-btn {
  width: 100%;
  background: var(--gold);
  color: var(--darker-bg);
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 12px;
  padding: 14px;
  border-radius: var(--radius);
  transition: background var(--transition);
  margin-top: 4px;
}
.modal-submit-btn:hover {
  background: var(--gold-light);
}
.form-privacy {
  font-size: 11px;
  color: #aaa;
  text-align: center;
  margin-top: 10px;
}
.form-privacy a {
  color: var(--gold-dark);
}
.modal-success {
  text-align: center;
  padding: 20px 0;
}
.modal-success p {
  margin-top: 16px;
  font-size: 15px;
  color: #444;
}

/* =============================================
   BREADCRUMBS
   ============================================= */

.breadcrumbs {
  padding: 12px 0;
  font-size: 14px;
  color: #999;
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.breadcrumbs .container {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: flex-start;
}

.breadcrumbs a {
  color: #999;
  transition: color var(--transition);
  white-space: nowrap;
}

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

.breadcrumbs span {
  color: #ccc;
  font-size: 14px;
}

.breadcrumbs .current {
  color: var(--text-dark);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* =============================================
   COMMON SECTION STYLES
   ============================================= */
.section {
  padding: 72px 0;
}
.section--dark {
  background: var(--dark-bg);
  color: var(--text-light);
}
.section--light {
  background: var(--light-bg);
}
.section--gray {
  background: #f0efea;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-subtitle {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold-dark);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: 0.2px;
}
.section--dark .section-title {
  color: var(--white);
}
.section-divider {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 16px;
}
.section-desc {
  font-size: 15px;
  font-weight: 400;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}
.section--dark .section-desc {
  color: rgba(255, 255, 255, 0.6);
}

h1::after,
.hero-title::after {
  display: none;
}
.gold-bar {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin: 14px 0 20px;
}

/* Headings global */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}
h4 {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: var(--gold);
  color: var(--darker-bg);
  border-radius: 4px;
  transition:
    background var(--transition),
    transform var(--transition);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}
.btn-large {
  padding: 16px 40px;
  font-size: 13px;
}
.btn-secondary {
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  background: var(--white);
  color: var(--gold-dark);
  border: 2px solid var(--gold);
  border-radius: 4px;
  transition:
    background var(--transition),
    color var(--transition);
}
.btn-secondary:hover {
  background: var(--gold);
  color: var(--darker-bg);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  border-radius: 4px;
  transition:
    border-color var(--transition),
    color var(--transition);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}
.btn-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--darker-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background var(--transition),
    transform var(--transition);
}
.btn-icon:hover {
  background: var(--gold-light);
  transform: scale(1.1);
}

/* =============================================
   PAGE HERO (shared)
   ============================================= */
.page-hero {
  background: var(--dark-bg);
  padding: 72px 20px 60px;
  text-align: center;
}
.page-hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 14px;
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}
.page-hero-bar {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 20px;
}
.page-hero p {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto;
}
.page-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.15;
}
.page-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
}

/* =============================================
   CATALOG / PRODUCT CARDS
   ============================================= */
.product-showcase {
  padding: 60px 0;
  background: var(--white);
}
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 32px;
}

.product-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.product-card-image {
  position: relative;
  width: 100%;
  padding-top: 75%;
  overflow: hidden;
  background: var(--light-bg);
}
.product-card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card-image img {
  transform: scale(1.05);
}
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 12px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-radius: 4px;
  z-index: 2;
}
.product-badge-hit {
  background: var(--gold);
  color: var(--darker-bg);
}
.product-badge-new {
  background: #4caf50;
  color: white;
}
.product-badge-premium {
  background: #1a1a1a;
  color: var(--gold-light);
  border: 1px solid var(--gold);
}

.product-card-hover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity var(--transition);
}
.product-card:hover .product-card-hover {
  opacity: 1;
}

.product-card-content {
  padding: 24px;
}
.product-card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-card-desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
  line-height: 1.6;
}
.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.feature-tag {
  display: inline-block;
  padding: 5px 10px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--light-bg);
  color: #666;
  border-radius: 4px;
}
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.product-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.price-label {
  font-size: 12px;
  color: #999;
}
.price-value {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--gold-dark);
  line-height: 1;
}
.price-unit {
  font-size: 13px;
  color: #666;
}

/* Category Pages */
.catalog-categories {
  padding: 60px 0;
  background: var(--white);
}
.category-intro {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 900px;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}
.category-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.category-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.category-card-image {
  position: relative;
  width: 100%;
  padding-top: 65%;
  overflow: hidden;
  background: var(--light-bg);
}
.category-card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.category-card:hover .category-card-image img {
  transform: scale(1.05);
}
.category-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.category-card:hover .category-card-overlay {
  opacity: 1;
}
.category-card-icon {
  font-size: 32px;
  color: var(--white);
}
.category-card-content {
  padding: 24px;
}
.category-card-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.category-card-desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
  line-height: 1.5;
}
.category-card-price {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-dark);
}

/* Info Section */
.info-section {
  padding: 60px 0;
  background: var(--light-bg);
}
.info-section > .container > p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 40px;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-top: 40px;
}
.advantage-item {
  text-align: center;
  padding: 24px;
  background: var(--white);
  border-radius: 8px;
  transition: transform var(--transition);
}
.advantage-item:hover {
  transform: translateY(-4px);
}
.advantage-icon {
  font-size: 48px;
  margin-bottom: 16px;
}
.advantage-item h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.advantage-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  padding: 60px 0;
  background: var(--dark-bg);
  text-align: center;
}
.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}
.cta-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 32px;
}

/* =============================================
   FAQ ACCORDION
   ============================================= */
.faq-section {
  background: var(--light-bg);
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 6px;
  margin-bottom: 10px;
  overflow: hidden;
  transition:
    box-shadow var(--transition),
    border-color var(--transition);
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.faq-item--open {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-color: rgba(200, 169, 110, 0.5);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
  transition: color var(--transition);
  letter-spacing: 0.1px;
}

.faq-question:hover {
  color: var(--gold-dark);
}

.faq-item--open .faq-question {
  color: var(--gold-dark);
  border-bottom: 1px solid rgba(200, 169, 110, 0.25);
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.3s ease;
}

.faq-item--open .faq-chevron {
  transform: rotate(180deg);
}

/* CSS-only accordion using max-height trick */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item--open .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 20px 24px;
  border-top: none;
}

.faq-answer-inner p {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  margin: 0;
}

.faq-answer-inner a {
  color: var(--gold-dark);
  text-decoration: underline;
  transition: color var(--transition);
}

.faq-answer-inner a:hover {
  color: var(--dark-bg);
}

/* =============================================
   FOOTER CTA
   ============================================= */
.footer-cta {
  background: var(--dark-bg);
  padding: 64px 20px;
  text-align: center;
}
.footer-cta-inner {
  max-width: 640px;
  margin: 0 auto;
}
.footer-cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.footer-cta p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 28px;
}
.cta-gold-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--darker-bg);
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 12px;
  padding: 15px 32px;
  border-radius: var(--radius);
  transition:
    background var(--transition),
    transform var(--transition);
}
.cta-gold-btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--darker-bg);
  color: var(--text-light);
}
.footer-main {
  max-width: var(--container);
  margin: 0 auto;
  padding: 56px 20px 40px;
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.8fr;
  gap: 40px;
}
.brand-logo--footer .logo-text {
  color: var(--white);
}
.footer-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin: 16px 0 18px;
  line-height: 1.7;
}
.footer-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}
.stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 1px;
}
.footer-rating strong {
  color: var(--gold-light);
}
.footer-nav-heading {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.footer-nav-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav-col a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}
.footer-nav-col a:hover {
  color: var(--gold-light);
}
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
}
.footer-contact-list svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
}
.footer-contact-list a {
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}
.footer-contact-list a:hover {
  color: var(--gold-light);
}
.footer-contacts-col .footer-nav-heading {
  text-align: left;
}
.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.footer-bottom-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}
.footer-copy a {
  color: var(--gold-dark);
  transition: color var(--transition);
}
.footer-copy a:hover {
  color: var(--gold);
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal-link {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  transition: color var(--transition);
}
.footer-legal-link:hover {
  color: var(--gold-light);
}

/* =============================================
   TEXT SECTION
   ============================================= */
.text-section {
  padding: 60px 0;
}
.text-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 40px;
  margin-bottom: 16px;
}
.text-section h2:first-child {
  margin-top: 0;
}
.text-section p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
}
.text-section ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 20px;
}
.text-section ul li {
  font-size: 15px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 8px;
}

/* =============================================
   UTILITY
   ============================================= */
.text-gold {
  color: var(--gold-dark);
}
.text-center {
  text-align: center;
}
.mt-8 {
  margin-top: 8px;
}
.mt-16 {
  margin-top: 16px;
}
.mt-24 {
  margin-top: 24px;
}
.mt-32 {
  margin-top: 32px;
}
.mb-8 {
  margin-bottom: 8px;
}
.mb-16 {
  margin-bottom: 16px;
}

/* Scroll to top */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99;
  width: 40px;
  height: 40px;
  background: var(--gold);
  color: var(--darker-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover {
  background: var(--gold-light);
}

/* =============================================
   SCROLL REVEAL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.catalog-card.reveal {
  transition-delay: calc(var(--i, 0) * 0.07s);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .burger-btn {
    display: flex;
  }
  .header-inner {
    gap: 12px;
  }
}

@media (max-width: 1024px) {
  .top-bar-address {
    display: none;
  }
}

@media (max-width: 640px) {
  .top-bar-right {
    gap: 10px;
  }
  .top-bar-cta-btn {
    display: none;
  }
}

@media (max-width: 960px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .showcase-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  .product-card-footer {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
  .faq-question {
    font-size: 14px;
    padding: 16px 18px;
  }
  .faq-answer-inner {
    padding: 16px 18px;
  }
}

@media (max-width: 580px) {
  .footer-main {
    grid-template-columns: 1fr;
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .product-features {
    flex-direction: column;
  }
  .feature-tag {
    text-align: center;
  }
}

/* ==============================================
   CONTACTS PAGE — недостающие стили
   Вставить в конец style.css
   ============================================== */

/* --- Quick contacts bar --- */
.contacts-quick-bar {
  background: var(--light-bg);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  padding: 20px 0;
}

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

.contacts-quick-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--white);
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  text-decoration: none;
  color: var(--text-dark);
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}

.contacts-quick-item:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contacts-quick-item svg {
  flex-shrink: 0;
  color: var(--gold);
}

.contacts-quick-item > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cq-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
}

.cq-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}

/* --- Contacts main grid --- */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contacts-h2 {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

/* --- Contact detail items --- */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--light-bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.cd-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.cd-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.6;
}

.cd-value a {
  color: var(--text-dark);
  transition: color var(--transition);
}

.cd-value a:hover {
  color: var(--gold-dark);
}

.cd-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.5;
}

/* --- Social buttons --- */
.contacts-social {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}

.contacts-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  transition:
    border-color var(--transition),
    color var(--transition),
    background var(--transition);
}

.contacts-social-btn:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: var(--light-bg);
}

/* --- Why us block --- */
.contacts-why {
  background: var(--light-bg);
  border-radius: 6px;
  padding: 24px;
  border-left: 3px solid var(--gold);
}

.contacts-why h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.contacts-why-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
}

.contacts-why-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

.contacts-why-list li svg {
  flex-shrink: 0;
  color: var(--gold);
}

/* --- Form column --- */
.contacts-form-col {
  position: sticky;
  top: 90px;
}

.contacts-form-desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 24px;
  line-height: 1.7;
}

.contacts-form select {
  width: 100%;
  border: 1.5px solid #ddd;
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.contacts-form select:focus {
  border-color: var(--gold);
}

/* --- Trust badges --- */
.contacts-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.trust-item {
  text-align: center;
  padding: 16px 8px;
  background: var(--light-bg);
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.trust-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
  margin-bottom: 4px;
}

.trust-item span {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --- Map --- */
.map-wrap {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.map-title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.map-desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 24px;
  max-width: 600px;
  line-height: 1.7;
}

.map-placeholder {
  background: var(--light-bg);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #666;
  font-size: 14px;
}

.map-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-dark);
  text-decoration: underline;
  transition: color var(--transition);
}

.map-link:hover {
  color: var(--dark-bg);
}

/* --- SEO text section on contacts --- */
.text-section.section--light {
  background: var(--light-bg);
}

/* ==============================================
   RESPONSIVE — contacts
   ============================================== */

@media (max-width: 1024px) {
  .contacts-quick-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .contacts-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contacts-form-col {
    position: static;
  }
}

@media (max-width: 600px) {
  .contacts-quick-grid {
    grid-template-columns: 1fr;
  }

  .contacts-social {
    flex-direction: column;
  }

  .contacts-trust {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .trust-item strong {
    font-size: 20px;
  }
}

/* =============================================
   FOOTER GRID — новая структура
   Логотип слева растянут на 2 строки,
   справа 3 колонки × 2 строки
   ============================================= */

.footer-main {
  display: grid;
  grid-template-columns: 240px repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 40px 48px;
  padding: 56px 20px 48px;
}

/* Логотип занимает обе строки */
.footer-brand {
  grid-column: 1;
  grid-row: 1 / 3;
}

/* Строка 1: колонки 2, 3, 4 */
.footer-nav-col:nth-of-type(1) {
  grid-column: 2;
  grid-row: 1;
} /* Кухни         */
.footer-nav-col:nth-of-type(2) {
  grid-column: 3;
  grid-row: 1;
} /* Шкафы         */
.footer-nav-col:nth-of-type(3) {
  grid-column: 4;
  grid-row: 1;
} /* Спальня       */

/* Строка 2: колонки 2, 3, 4 */
.footer-nav-col:nth-of-type(4) {
  grid-column: 2;
  grid-row: 2;
} /* Другая мебель */
.footer-nav-col:nth-of-type(5) {
  grid-column: 3;
  grid-row: 2;
} /* Информация    */
.footer-contacts-col {
  grid-column: 4;
  grid-row: 2;
} /* Контакты      */

/* -----------------------------------------------
   Responsive
   ----------------------------------------------- */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 200px repeat(3, 1fr);
    gap: 32px 32px;
  }
}

@media (max-width: 860px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: unset;
  }

  .footer-brand {
    grid-column: 1 / 3;
    grid-row: unset;
  }

  .footer-nav-col:nth-of-type(n),
  .footer-contacts-col {
    grid-column: unset;
    grid-row: unset;
  }
}

@media (max-width: 520px) {
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: 1;
  }
}

/* =============================================
   LEGAL PAGES — privacy, terms
   ============================================= */

.legal-doc {
  padding: 8px 0 40px;
}

.legal-intro {
  font-size: 15.5px;
  color: #555;
  line-height: 1.85;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.legal-doc h2 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 44px 0 14px;
  padding-left: 14px;
  border-left: 3px solid var(--gold);
  line-height: 1.3;
}

.legal-doc p {
  font-size: 14.5px;
  color: #555;
  line-height: 1.85;
  margin-bottom: 14px;
}

.legal-doc ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.legal-doc ul li {
  font-size: 14.5px;
  color: #555;
  line-height: 1.7;
  padding-left: 18px;
  position: relative;
}

.legal-doc ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

/* Контакты внутри документа */
.legal-contacts {
  display: flex;
  gap: 20px;
  margin: 20px 0 10px;
  flex-wrap: wrap;
}

.legal-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  padding: 16px 20px;
  flex: 1;
  min-width: 200px;
}

.legal-contact-item svg {
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}

.legal-contact-item span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #aaa;
  margin-bottom: 4px;
}

.legal-contact-item a {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-dark);
  text-decoration: none;
  transition: color var(--transition);
}

.legal-contact-item a:hover {
  color: var(--dark-bg);
}

/* Дата обновления */
.legal-updated {
  margin-top: 48px;
  padding: 16px 20px;
  background: var(--light-bg);
  border-radius: 4px;
  font-size: 13px;
  color: #999;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

/* =============================================
   LIGHTBOX
   ============================================= */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0, 0, 0, 0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}
.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}
.lb-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10;
}
.lb-close:hover { background: rgba(255, 255, 255, 0.22); }
.lb-wrap {
  max-width: calc(100vw - 80px);
  max-height: calc(100vh - 110px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.lb-img {
  max-width: 92vw;
  max-height: calc(100vh - 110px);
  object-fit: contain;
  display: block;
  transform-origin: center center;
  transition: transform 0.15s ease;
  user-select: none;
  -webkit-user-drag: none;
}
.lb-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  border-radius: 28px;
  padding: 8px 20px;
}
.lb-btn {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  opacity: 0.75;
  transition: opacity 0.15s;
}
.lb-btn:hover { opacity: 1; }
.lb-zoom-level {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  min-width: 40px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

/* =============================================
   CARD IMAGE — zoom cursor & hover overlay
   ============================================= */
.catalog-card-image {
  cursor: zoom-in;
}
.catalog-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.25s;
  pointer-events: none;
  z-index: 1;
}
.catalog-card-image:hover::after {
  background: rgba(0, 0, 0, 0.14);
}
.catalog-card-badge {
  z-index: 2;
  position: relative;
}
/* Card body — pointer cursor to indicate clickability */
.catalog-card-body {
  cursor: pointer;
}


/* === 1600px+ font scaling === */
@media (min-width: 1600px) {
  .advantage-item p { font-size: 16px; }
  .breadcrumbs { font-size: 16px; }
  .breadcrumbs span { font-size: 16px; }
  .btn-large { font-size: 15px; }
  .btn-outline { font-size: 14px; }
  .btn-primary { font-size: 14px; }
  .btn-secondary { font-size: 14px; }
  .category-card-desc { font-size: 16px; }
  .category-card-price { font-size: 15px; }
  .category-intro { font-size: 18px; }
  .cd-label { font-size: 13px; }
  .cd-note { font-size: 14px; }
  .cd-value { font-size: 16px; }
  .contacts-form select { font-size: 16px; }
  .contacts-form-desc { font-size: 16px; }
  .contacts-social-btn { font-size: 15px; }
  .contacts-why h3 { font-size: 20px; }
  .contacts-why-list li { font-size: 16px; }
  .cq-label { font-size: 13px; }
  .cq-value { font-size: 15px; }
  .cta-gold-btn { font-size: 14px; }
  .cta-subtitle { font-size: 17px; }
  .dropdown-item-all { font-size: 13px; }
  .dropdown-item-with-sub { font-size: 14px; }
  .dropdown-subitem { font-size: 15px; }
  .faq-answer-inner p { font-size: 16px; }
  .faq-question { font-size: 16px; }
  .feature-tag { font-size: 12px; }
  .footer-copy { font-size: 14px; }
  .footer-cta p { font-size: 16px; }
  .footer-legal-link { font-size: 14px; }
  .footer-nav-col a { font-size: 15px; }
  .footer-nav-heading { font-size: 12px; }
  .footer-rating { font-size: 14px; }
  .footer-tagline { font-size: 15px; }
  .form-group label { font-size: 13px; }
  .form-group textarea { font-size: 16px; }
  .form-privacy { font-size: 13px; }
  .info-section > .container > p { font-size: 17px; }
  .lb-zoom-level { font-size: 15px; }
  .legal-contact-item a { font-size: 16px; }
  .legal-contact-item span { font-size: 13px; }
  .legal-doc h2 { font-size: 22px; }
  .legal-updated { font-size: 15px; }
  .logo-text { font-size: 18px; }
  .map-desc { font-size: 16px; }
  .map-link { font-size: 15px; }
  .map-placeholder { font-size: 16px; }
  .mobile-cta-button { font-size: 14px; }
  .mobile-menu-link { font-size: 15px; }
  .mobile-submenu-link { font-size: 15px; }
  .modal-submit-btn { font-size: 14px; }
  .modal-subtitle { font-size: 15px; }
  .modal-success p { font-size: 17px; }
  .nav-link { font-size: 14px; }
  .page-hero p { font-size: 17px; }
  .page-hero-eyebrow { font-size: 13px; }
  .page-subtitle { font-size: 17px; }
  .price-label { font-size: 14px; }
  .price-unit { font-size: 15px; }
  .product-badge { font-size: 12px; }
  .product-card-desc { font-size: 16px; }
  .product-card-title { font-size: 22px; }
  .section-desc { font-size: 17px; }
  .section-subtitle { font-size: 13px; }
  .stars { font-size: 15px; }
  .text-section p { font-size: 17px; }
  .text-section ul li { font-size: 17px; }
  .top-bar { font-size: 14px; }
  .top-bar-cta-btn { font-size: 13px; }
  .trust-item span { font-size: 13px; }
  .trust-item strong { font-size: 22px; }
  body { font-size: 17px; }
}

/* === Cookie consent bar === */
.cookie-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 22, 18, 0.96);
  color: rgba(255,255,255,0.88);
  padding: 13px 24px;
  font-size: 13px;
  line-height: 1.4;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 9999;
  backdrop-filter: blur(6px);
  flex-wrap: wrap;
}
.cookie-bar a {
  color: var(--gold);
  text-decoration: underline;
}
.cookie-accept {
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 7px 22px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  font-family: var(--font-body);
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.cookie-accept:hover { opacity: 0.85; }

/* === Scrollbar === */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--light-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 4px;
  border: 2px solid var(--light-bg);
  transition: background 0.2s;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dark);
}
::-webkit-scrollbar-corner {
  background: var(--light-bg);
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--light-bg);
}
/* =============================================
   FURNITURA PAGE — дополнительные стили
   Добавить в конец pages.css или style.css
   ============================================= */

/* Сетка категорий фурнитуры */
.furnitura-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.furnitura-cat-item {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  padding: 24px;
  transition:
    box-shadow var(--transition),
    transform var(--transition);
}

.furnitura-cat-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.furnitura-cat-icon {
  width: 52px;
  height: 52px;
  background: var(--dark-bg);
  color: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.furnitura-cat-item h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.furnitura-cat-item > p {
  font-size: 13.5px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 14px;
}

.furnitura-cat-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.furnitura-cat-list li {
  font-size: 12.5px;
  color: #555;
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}

.furnitura-cat-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

/* Сетка брендов */
.furnitura-brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.furnitura-brand-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  padding: 24px;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}

.furnitura-brand-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.furnitura-brand-logo {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark-bg);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.furnitura-brand-card > p {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
}

/* Блок "почему мы" с иконками */
.furnitura-why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8px;
}

.furnitura-why-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.furnitura-why-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--light-bg);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.furnitura-why-item h4 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
  letter-spacing: 0.2px;
}

.furnitura-why-item p {
  font-size: 13.5px;
  color: #666;
  line-height: 1.65;
  margin: 0;
}

/* Фото в разделе "почему мы" */
.furnitura-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 30px;
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
  .furnitura-cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .furnitura-brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 740px) {
  .furnitura-cat-grid {
    grid-template-columns: 1fr;
  }
  .furnitura-brands-grid {
    grid-template-columns: 1fr;
  }
  .furnitura-image img {
    height: 260px;
  }
}

/* =============================================
   MATERIALY PAGE — дополнительные стили
   Добавить в конец pages.css или style.css
   ============================================= */

/* Intro grid */
.mat-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.mat-intro-text p {
  font-size: 14.5px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 14px;
}

/* Badges */
.mat-intro-badges {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mat-badge {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: var(--light-bg);
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: border-color var(--transition);
}

.mat-badge:hover {
  border-color: var(--gold);
}

.mat-badge-icon {
  width: 40px;
  height: 40px;
  background: var(--dark-bg);
  color: var(--gold);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mat-badge strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.mat-badge span {
  font-size: 12.5px;
  color: #777;
  line-height: 1.5;
}

/* Section with numbered label */
.mat-section-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: start;
}

.mat-section-label {
  position: sticky;
  top: 90px;
  text-align: center;
}

.mat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  opacity: 0.25;
  margin-bottom: 8px;
}

.mat-section-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.2;
}

.mat-section-bar {
  width: 36px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto;
}

.mat-section-content p {
  font-size: 14.5px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 14px;
}

/* Props list */
.mat-props-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 20px 0;
}

.mat-prop {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: #444;
}

.mat-prop svg {
  flex-shrink: 0;
  color: var(--gold);
}

/* Brands row */
.mat-brands-row {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

/* Fasad cards grid */
.mat-fasad-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.mat-fasad-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  padding: 24px;
  position: relative;
  transition:
    box-shadow var(--transition),
    transform var(--transition);
}

.mat-fasad-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.mat-fasad-card--featured {
  border-color: var(--gold);
  background: #fdfbf7;
}

.mat-fasad-badge {
  position: absolute;
  top: -1px;
  right: 16px;
  background: var(--gold);
  color: var(--darker-bg);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 10px;
  border-radius: 0 0 4px 4px;
}

.mat-fasad-num {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 6px;
}

.mat-fasad-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.mat-fasad-card > p {
  font-size: 13.5px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 14px;
}

.mat-fasad-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mat-fasad-list li {
  font-size: 12.5px;
  color: #555;
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}

.mat-fasad-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

/* Stolek grid */
.mat-stolek-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.mat-stolek-item {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  padding: 20px;
  transition: border-color var(--transition);
}

.mat-stolek-item:hover {
  border-color: var(--gold);
}

.mat-stolek-item--featured {
  border-color: rgba(200, 169, 110, 0.5);
  background: #fdfbf7;
}

.mat-stolek-item h4 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.mat-stolek-item p {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 12px;
}

.mat-stolek-tag {
  display: inline-block;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  background: var(--light-bg);
  color: #777;
  border-radius: 4px;
}

.mat-stolek-tag--gold {
  background: var(--gold);
  color: var(--darker-bg);
}

/* Fill grid */
.mat-fill-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

.mat-fill-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--light-bg);
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: border-color var(--transition);
}

.mat-fill-item:hover {
  border-color: var(--gold);
}

.mat-fill-item h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.mat-fill-item p {
  font-size: 12.5px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Фото в интро */
.mat-intro-photo {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 16px;
  display: block;
}

/* Широкое фото перед фасадами */
.mat-fasad-photo {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 48px;
  display: block;
}

/* Responsive */
@media (max-width: 1024px) {
  .mat-fasad-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mat-intro-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .mat-stolek-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .mat-section-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .mat-section-label {
    position: static;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .mat-num {
    font-size: 40px;
    margin: 0;
    opacity: 0.3;
  }

  .mat-section-bar {
    display: none;
  }

  .mat-props-grid {
    grid-template-columns: 1fr;
  }

  .mat-fill-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .mat-fasad-grid {
    grid-template-columns: 1fr;
  }

  .mat-stolek-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   CENY PAGE — полные стили
   Все классы с префиксом ceny-
   ============================================= */

/* Heading */
.ceny-heading {
  font-family: var(--font-heading);
  font-size: 26px;
  color: var(--text-dark);
  margin-bottom: 6px;
}

/* Note under heading */
.ceny-note {
  font-size: 13px;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 24px;
}

/* Category title inside tables */
.ceny-cat-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-dark);
  margin: 32px 0 10px;
}

.ceny-cat-title:first-of-type {
  margin-top: 0;
}

.ceny-cat-title svg {
  flex-shrink: 0;
  color: var(--gold);
}

/* Price table */
.ceny-price-table {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 4px;
}

.ceny-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  font-size: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  gap: 20px;
}

.ceny-price-row:last-child {
  border-bottom: none;
}

.ceny-price-row:nth-child(odd) {
  background: var(--light-bg);
}

.ceny-price-name {
  color: #444;
}

.ceny-price-val {
  font-weight: 700;
  color: var(--text-dark);
  white-space: nowrap;
}

/* Disclaimer */
.ceny-disclaimer {
  font-size: 12px;
  color: #aaa;
  margin-top: 16px;
  line-height: 1.6;
}

/* Promo box */
.ceny-promo-box {
  background: var(--dark-bg);
  color: var(--text-light);
  padding: 24px 28px;
  border-left: 4px solid var(--gold);
  font-size: 14px;
  line-height: 1.7;
  margin-top: 32px;
}

.ceny-promo-box strong {
  color: var(--gold-light);
  font-size: 15px;
  display: block;
  margin-bottom: 10px;
}

.ceny-promo-box hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 12px 0;
}

.ceny-promo-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

/* -----------------------------------------------
   MAIN GRID: tables + sidebar
   ----------------------------------------------- */
.ceny-main-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

.ceny-tables-col {
}

/* Sidebar */
.ceny-aside-col {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Photo in sidebar */
.ceny-photo {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

/* Contact block in sidebar */
.ceny-contact-block {
  background: var(--light-bg);
  border-radius: 6px;
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.07);
}

.ceny-contact-block > p {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.ceny-phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-dark);
  transition: color var(--transition);
}

.ceny-phone-link:hover {
  color: var(--dark-bg);
}

/* -----------------------------------------------
   ADVANTAGES SECTION: photo left + text right
   ----------------------------------------------- */
.ceny-adv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.ceny-adv-photo {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

/* Advantages list */
.ceny-adv-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 16px;
}

.ceny-adv-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.ceny-adv-num {
  width: 36px;
  height: 36px;
  background: var(--gold);
  color: var(--darker-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
}

.ceny-adv-item h4 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.ceny-adv-item p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* -----------------------------------------------
   FACTORS GRID
   ----------------------------------------------- */
.ceny-factors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ceny-factor {
  background: var(--light-bg);
  border-radius: 6px;
  padding: 22px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}

.ceny-factor:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
}

.ceny-factor-icon {
  width: 44px;
  height: 44px;
  background: var(--dark-bg);
  color: var(--gold);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.ceny-factor h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
  letter-spacing: 0.2px;
}

.ceny-factor p {
  font-size: 13px;
  color: #666;
  line-height: 1.65;
  margin: 0;
}

/* -----------------------------------------------
   RESPONSIVE
   ----------------------------------------------- */
@media (max-width: 1100px) {
  .ceny-main-grid {
    grid-template-columns: 1fr 280px;
    gap: 32px;
  }
}

@media (max-width: 860px) {
  .ceny-main-grid {
    grid-template-columns: 1fr;
  }

  .ceny-aside-col {
    position: static;
    /* Show sidebar below tables on mobile */
  }

  .ceny-adv-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ceny-adv-photo {
    height: 280px;
  }

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

@media (max-width: 520px) {
  .ceny-price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .ceny-price-val {
    color: var(--gold-dark);
  }

  .ceny-factors-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   BLOG PAGE — стили
   Добавить в конец pages.css или style.css
   ============================================= */

/* -----------------------------------------------
   Список статей
   ----------------------------------------------- */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* -----------------------------------------------
   Карточка статьи
   ----------------------------------------------- */
.blog-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 0;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  overflow: hidden;
  transition:
    box-shadow var(--transition),
    transform var(--transition);
}

.blog-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

/* -----------------------------------------------
   Фото карточки
   ----------------------------------------------- */
.blog-card-img {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.04);
}

/* -----------------------------------------------
   Контент карточки
   ----------------------------------------------- */
.blog-card-content {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

/* -----------------------------------------------
   Дата публикации
   ----------------------------------------------- */
.blog-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #999;
  letter-spacing: 0.3px;
}

/* -----------------------------------------------
   Заголовок статьи
   ----------------------------------------------- */
.blog-card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
  margin: 0;
}

.blog-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

.blog-card-title a:hover {
  color: var(--gold-dark);
}

/* -----------------------------------------------
   Краткое описание
   ----------------------------------------------- */
.blog-card-excerpt {
  font-size: 14px;
  color: #666;
  line-height: 1.75;
  margin: 0;
}

/* -----------------------------------------------
   Ссылка «Подробнее»
   ----------------------------------------------- */
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-dark);
  text-decoration: none;
  transition:
    color var(--transition),
    gap var(--transition);
}

.blog-read-more::after {
  content: '→';
  font-size: 14px;
  transition: transform var(--transition);
}

.blog-read-more:hover {
  color: var(--dark-bg);
}

.blog-read-more:hover::after {
  transform: translateX(4px);
}

/* -----------------------------------------------
   SEO-текст внизу блога
   ----------------------------------------------- */
.blog-seo {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.blog-seo h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.blog-seo p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 14px;
}

.blog-seo a {
  color: var(--gold-dark);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition);
}

.blog-seo a:hover {
  color: var(--dark-bg);
}

/* -----------------------------------------------
   Responsive
   ----------------------------------------------- */
@media (max-width: 860px) {
  .blog-card {
    grid-template-columns: 1fr;
  }

  .blog-card-img img {
    height: 220px;
    min-height: unset;
  }

  .blog-card-content {
    padding: 22px 24px;
  }
}

@media (max-width: 520px) {
  .blog-card-title {
    font-size: 17px;
  }

  .blog-card-content {
    padding: 18px 18px;
  }
}

/* =============================================
   BLOG ARTICLE — стили
   Добавить в конец pages.css или style.css
   ============================================= */

/* -----------------------------------------------
   Обёртка статьи
   ----------------------------------------------- */
.blog-article-wrap {
  max-width: 1100px;
  padding-top: 48px;
  padding-bottom: 80px;
}

/* -----------------------------------------------
   Шапка статьи
   ----------------------------------------------- */
.blog-article-header {
  margin-bottom: 36px;
}

.blog-article-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: #999;
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}

.blog-article-meta-dot {
  color: #ccc;
}

.blog-article-header h1 {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

.blog-article-lead {
  font-size: 17px;
  color: #666;
  line-height: 1.8;
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin: 0;
}

/* -----------------------------------------------
   Обложка статьи
   ----------------------------------------------- */
.blog-article-cover {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  margin-bottom: 48px;
}

/* -----------------------------------------------
   Оглавление
   ----------------------------------------------- */
.blog-toc {
  background: var(--light-bg);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 6px;
  padding: 24px 28px;
  margin-bottom: 48px;
}

.blog-toc-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-dark);
  margin-bottom: 14px;
}

.blog-toc-list {
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
}

.blog-toc-list li {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

.blog-toc-list a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

.blog-toc-list a:hover {
  color: var(--gold-dark);
}

/* -----------------------------------------------
   Тело статьи
   ----------------------------------------------- */
.blog-article-body {
  font-size: 15.5px;
  line-height: 1.85;
  color: #3a3a3a;
}

.blog-article-body h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 52px 0 18px;
  line-height: 1.25;
  scroll-margin-top: 90px;
}

.blog-article-body h2:first-child {
  margin-top: 0;
}

.blog-article-body h3 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.blog-article-body p {
  margin-bottom: 18px;
}

.blog-article-body p:last-child {
  margin-bottom: 0;
}

.blog-article-body a {
  color: black;
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition);
}

.blog-article-body a:hover {
  color: var(--dark-bg);
}

.blog-article-body ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-article-body ul li {
  padding-left: 18px;
  position: relative;
  font-size: 15px;
  color: #444;
  line-height: 1.7;
}

.blog-article-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* -----------------------------------------------
   Подсказка (tip-блок)
   ----------------------------------------------- */
.blog-tip {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fdfbf7;
  border-left: 3px solid var(--gold);
  padding: 20px 22px;
  border-radius: 0 6px 6px 0;
  margin: 32px 0;
}

.blog-tip svg {
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}

.blog-tip p {
  margin: 0;
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

/* -----------------------------------------------
   Карточки форм кухонь
   ----------------------------------------------- */
.blog-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.blog-info-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  padding: 20px;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}

.blog-info-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
}

.blog-info-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.blog-info-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* -----------------------------------------------
   Сравнительная таблица фасадов
   ----------------------------------------------- */
.blog-compare-table {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  overflow: hidden;
  margin: 24px 0;
}

.blog-compare-row {
  display: grid;
  grid-template-columns: 2fr 3fr 3fr 1fr;
  gap: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-compare-row:last-child {
  border-bottom: none;
}

.blog-compare-row--head {
  background: var(--dark-bg);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
}

.blog-compare-row:nth-child(even):not(.blog-compare-row--head) {
  background: var(--light-bg);
}

.blog-compare-row span {
  padding: 13px 16px;
  font-size: 13.5px;
  color: #444;
  line-height: 1.5;
}

.blog-compare-row--head span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
  padding: 12px 16px;
}

/* -----------------------------------------------
   Эргономика
   ----------------------------------------------- */
.blog-ergonomics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.blog-ergonomics-item {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  padding: 20px 18px;
  text-align: center;
}

.blog-ergonomics-num {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}

.blog-ergonomics-num span {
  font-size: 16px;
  font-weight: 400;
  color: #aaa;
}

.blog-ergonomics-item p {
  font-size: 12.5px;
  color: #666;
  line-height: 1.65;
  margin: 0;
}

/* -----------------------------------------------
   Таблица цен
   ----------------------------------------------- */
.blog-price-table {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  overflow: hidden;
  margin: 24px 0;
}

.blog-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  gap: 20px;
  font-size: 14px;
  color: #444;
}

.blog-price-row:last-child {
  border-bottom: none;
}

.blog-price-row:nth-child(even) {
  background: var(--light-bg);
}

.blog-price-row--head {
  background: var(--dark-bg) !important;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
}

.blog-price-row span:last-child {
  font-weight: 700;
  color: var(--text-dark);
  white-space: nowrap;
  flex-shrink: 0;
}

.blog-price-row--head span {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 700;
}

/* -----------------------------------------------
   Шаги заказа
   ----------------------------------------------- */
.blog-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 24px 0;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  overflow: hidden;
}

.blog-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: background var(--transition);
}

.blog-step:last-child {
  border-bottom: none;
}

.blog-step:hover {
  background: var(--light-bg);
}

.blog-step-num {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
  padding-top: 2px;
}

.blog-step h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.blog-step p {
  font-size: 13.5px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* -----------------------------------------------
   Заключение
   ----------------------------------------------- */
.blog-conclusion {
  background: var(--light-bg);
  border-radius: 6px;
  padding: 32px 36px;
  margin: 48px 0;
}

.blog-conclusion h2 {
  margin-top: 0 !important;
  font-size: 22px !important;
}

/* -----------------------------------------------
   CTA-блок
   ----------------------------------------------- */
.blog-cta {
  background: var(--dark-bg);
  border-left: 4px solid var(--gold);
  padding: 32px 36px;
  border-radius: 0 6px 6px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin: 48px 0 0;
}

.blog-cta-text strong {
  display: block;
  font-size: 17px;
  color: var(--gold-light);
  margin-bottom: 8px;
  font-weight: 600;
}

.blog-cta-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.6;
}

.blog-cta-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--darker-bg);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  transition:
    background var(--transition),
    transform var(--transition);
}

.blog-cta-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* -----------------------------------------------
   Похожие статьи
   ----------------------------------------------- */
.blog-related {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.blog-related-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.blog-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.blog-related-card {
  display: block;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  transition:
    box-shadow var(--transition),
    transform var(--transition);
}

.blog-related-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.blog-related-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.blog-related-card:hover img {
  transform: scale(1.04);
}

.blog-related-card-content {
  padding: 16px 18px;
}

.blog-related-card-content p {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
  margin: 6px 0 0;
  transition: color var(--transition);
}

.blog-related-card:hover p {
  color: var(--gold-dark);
}

/* -----------------------------------------------
   Responsive
   ----------------------------------------------- */
@media (max-width: 860px) {
  .blog-article-header h1 {
    font-size: 28px;
  }

  .blog-article-cover {
    height: 260px;
    margin-bottom: 32px;
  }

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

  .blog-compare-table {
    overflow-x: auto;
  }

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

  .blog-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

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

@media (max-width: 580px) {
  .blog-article-header h1 {
    font-size: 23px;
  }

  .blog-article-lead {
    font-size: 15px;
  }

  .blog-cards-grid {
    grid-template-columns: 1fr;
  }

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

  .blog-related-grid {
    grid-template-columns: 1fr;
  }

  .blog-compare-row {
    grid-template-columns: 1fr;
  }

  .blog-compare-row--head {
    display: none;
  }

  .blog-conclusion {
    padding: 24px 20px;
  }

  .blog-cta {
    padding: 24px 20px;
  }
}

/* === 1600px+ font scaling === */
@media (min-width: 1600px) {
  .blog-article-body h3 {
    font-size: 18px;
  }
  .blog-article-body ul li {
    font-size: 17px;
  }
  .blog-article-lead {
    font-size: 17px;
  }
  .blog-card-excerpt {
    font-size: 16px;
  }
  .blog-card-title {
    font-size: 19px;
  }
  .blog-compare-row--head {
    font-size: 13px;
  }
  .blog-compare-row--head span {
    font-size: 13px;
  }
  .blog-cta-btn {
    font-size: 15px;
  }
  .blog-cta-text p {
    font-size: 16px;
  }
  .blog-cta-text strong {
    font-size: 19px;
  }
  .blog-date {
    font-size: 14px;
  }
  .blog-ergonomics-num span {
    font-size: 18px;
  }
  .blog-info-card h3 {
    font-size: 16px;
  }
  .blog-info-card p {
    font-size: 15px;
  }
  .blog-price-row {
    font-size: 16px;
  }
  .blog-price-row--head {
    font-size: 13px;
  }
  .blog-read-more {
    font-size: 15px;
  }
  .blog-read-more::after {
    font-size: 16px;
  }
  .blog-related-card-content p {
    font-size: 16px;
  }
  .blog-seo p {
    font-size: 16px;
  }
  .blog-step h3 {
    font-size: 17px;
  }
  .blog-tip p {
    font-size: 16px;
  }
  .blog-toc-list li {
    font-size: 16px;
  }
  .blog-toc-title {
    font-size: 13px;
  }
  .ceny-adv-item h4 {
    font-size: 16px;
  }
  .ceny-adv-item p {
    font-size: 15px;
  }
  .ceny-adv-num {
    font-size: 17px;
  }
  .ceny-cat-title {
    font-size: 13px;
  }
  .ceny-contact-block > p {
    font-size: 16px;
  }
  .ceny-disclaimer {
    font-size: 14px;
  }
  .ceny-factor h4 {
    font-size: 15px;
  }
  .ceny-factor p {
    font-size: 15px;
  }
  .ceny-note {
    font-size: 15px;
  }
  .ceny-phone-link {
    font-size: 16px;
  }
  .ceny-price-row {
    font-size: 16px;
  }
  .ceny-promo-box {
    font-size: 16px;
  }
  .ceny-promo-box strong {
    font-size: 17px;
  }
  .furnitura-brand-card > p {
    font-size: 15px;
  }
  .furnitura-cat-item h3 {
    font-size: 20px;
  }
  .furnitura-why-item h4 {
    font-size: 16px;
  }
  .mat-badge strong {
    font-size: 15px;
  }
  .mat-fasad-badge {
    font-size: 12px;
  }
  .mat-fasad-card h3 {
    font-size: 20px;
  }
  .mat-fill-item h4 {
    font-size: 15px;
  }
  .mat-stolek-item h4 {
    font-size: 19px;
  }
  .mat-stolek-item p {
    font-size: 15px;
  }
  .mat-stolek-tag {
    font-size: 12px;
  }
}
