/* ============================================
   CUTII.MD — Полные стили статического сайта
   Цвета: #f5921b (оранж), #e07d0a (hover), #2d2d2d (тёмный), #1a1a1a (футер)
   Шрифт: Roboto (Google Fonts)
   ============================================ */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Roboto', sans-serif;
  color: #2d2d2d;
  background: linear-gradient(135deg, #fff9f3 0%, #ffffff 25%, #fff5eb 50%, #ffffff 75%, #fff9f3 100%);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }
ul, ol { list-style: none; }

/* === УТИЛИТЫ === */
.container { max-width: 1280px; margin: 0 auto; padding: 0 16px; }
.container-sm { max-width: 900px; margin: 0 auto; padding: 0 16px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.text-center { text-align: center; }

/* === HEADER / ШАПКА === */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 40;
  transition: background 0.3s, box-shadow 0.3s;
}
/* Прозрачный хедер на главной */
.header--transparent { background: transparent; }
/* Белый хедер после скролла или на внутренних страницах */
.header--solid { background: #fff; box-shadow: 0 1px 8px rgba(0,0,0,0.08); }

.header__inner {
  max-width: 1280px; margin: 0 auto; padding: 12px 16px;
  display: flex; align-items: center; justify-content: space-between;
}

/* Логотип */
.header__logo { display: flex; align-items: center; gap: 8px; }
.header__logo-img { width: 44px; height: 44px; border-radius: 8px; object-fit: contain; }
.header__logo-text { font-size: 24px; font-weight: 800; transition: color 0.3s; }
.header--transparent .header__logo-text { color: #fff; }
.header--solid .header__logo-text { color: #2d2d2d; }
.header__logo-accent { color: #f5921b; }

/* Навигация десктоп */
.header__nav { display: flex; align-items: center; gap: 24px; }
.header__nav a {
  font-weight: 500; font-size: 15px; transition: color 0.2s;
}
.header__nav a:hover { color: #f5921b; }
.header--transparent .header__nav a { color: rgba(255,255,255,0.9); }
.header--solid .header__nav a { color: #2d2d2d; }

/* Правая часть хедера */
.header__right { display: flex; align-items: center; gap: 12px; }

/* Переключатель языка */
.lang-switch {
  display: flex; align-items: center; border-radius: 999px; overflow: hidden;
  transition: border-color 0.3s;
}
.header--transparent .lang-switch { border: 1px solid rgba(255,255,255,0.3); }
.header--solid .lang-switch { border: 1px solid #e5e7eb; }
.lang-switch__btn {
  padding: 6px 12px; font-size: 13px; font-weight: 600; transition: all 0.2s;
}
.lang-switch__btn--active { background: #f5921b; color: #fff; }
.header--transparent .lang-switch__btn:not(.lang-switch__btn--active) { color: rgba(255,255,255,0.7); }
.header--solid .lang-switch__btn:not(.lang-switch__btn--active) { color: #6b7280; }
.lang-switch__btn:not(.lang-switch__btn--active):hover { color: #f5921b; }

/* Телефон в хедере */
.header__phone { display: flex; align-items: center; gap: 6px; font-weight: 700; font-size: 14px; transition: color 0.2s; }
.header__phone:hover { color: #f5921b; }
.header--transparent .header__phone { color: #fff; }
.header--solid .header__phone { color: #2d2d2d; }
.header__phone-icon { color: #f5921b; width: 16px; height: 16px; }

/* Корзина в хедере */
.header__cart-btn {
  position: relative; padding: 8px; border-radius: 50%; transition: background 0.2s;
}
.header--transparent .header__cart-btn:hover { background: rgba(255,255,255,0.1); }
.header--solid .header__cart-btn:hover { background: #f3f4f6; }
.header__cart-icon { width: 20px; height: 20px; transition: color 0.3s; }
.header--transparent .header__cart-icon { color: #fff; }
.header--solid .header__cart-icon { color: #2d2d2d; }
.header__cart-badge {
  position: absolute; top: -2px; right: -2px;
  background: #f5921b; color: #fff; font-size: 11px; font-weight: 700;
  width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.header__cart-badge:empty { display: none; }

/* CTA кнопка в хедере */
.header__cta {
  background: #f5921b; color: #fff; font-weight: 700; font-size: 14px;
  padding: 10px 20px; border-radius: 999px; transition: background 0.2s;
  display: flex; align-items: center; gap: 8px;
}
.header__cta:hover { background: #e07d0a; }

/* Мобильные элементы */
.header__mobile { display: none; align-items: center; gap: 12px; }
.header__burger {
  padding: 8px; border-radius: 50%; transition: background 0.2s;
}
.header__burger:hover { background: rgba(255,255,255,0.1); }
.header__burger svg { width: 24px; height: 24px; }
.header--transparent .header__burger svg { color: #fff; }
.header--solid .header__burger svg { color: #2d2d2d; }

/* Мобильное меню */
.mobile-menu {
  display: none; background: #fff; border-top: 1px solid #e5e7eb;
  padding: 16px; position: absolute; top: 100%; left: 0; right: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.mobile-menu.active { display: block; }
.mobile-menu a {
  display: block; padding: 10px 0; color: #2d2d2d; font-weight: 500;
  transition: color 0.2s; font-size: 15px;
}
.mobile-menu a:hover { color: #f5921b; }
.mobile-menu__phone {
  display: flex; align-items: center; gap: 8px;
  color: #f5921b; font-weight: 700; padding: 10px 0;
}
.mobile-menu__cta {
  display: block; text-align: center; background: #f5921b; color: #fff;
  font-weight: 700; padding: 12px 24px; border-radius: 999px; margin-top: 8px;
}

/* === HERO СЕКЦИЯ === */
.hero {
  position: relative; width: 100%; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
  background: linear-gradient(135deg, #111 0%, #1e1e1e 40%, #252525 70%, #111 100%);
}
/* Сетка на фоне */
.hero__grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(245,146,27,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(245,146,27,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
/* Свечения */
.hero__glow-right {
  position: absolute; right: -100px; top: 50%; transform: translateY(-50%);
  width: 700px; height: 700px; background: rgba(245,146,27,0.1);
  border-radius: 50%; filter: blur(140px); pointer-events: none;
}
.hero__glow-left {
  position: absolute; left: -50px; bottom: 0;
  width: 350px; height: 350px; background: rgba(245,146,27,0.06);
  border-radius: 50%; filter: blur(100px); pointer-events: none;
}

/* Декоративные SVG иконки */
.hero__decorations { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero__decorations svg { position: absolute; }

/* Контент Hero */
.hero__content {
  position: relative; z-index: 10; max-width: 1280px; margin: 0 auto;
  padding: 56px 16px 56px; width: 100%;
}
.hero__grid-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center;
}

/* Левая колонка */
.hero__left { display: flex; flex-direction: column; }
.hero__title {
  font-size: 56px; font-weight: 900; color: #fff; line-height: 1.05;
  margin-bottom: 24px; letter-spacing: -1px;
}
.hero__title-orange {
  color: #f5921b; display: block;
  text-shadow: 0 0 40px rgba(245,146,27,0.4);
  min-height: 1.2em;
}
.hero__title-sub { color: rgba(255,255,255,0.9); display: block; }
.hero__subtitle {
  color: rgba(255,255,255,0.55); font-size: 18px; line-height: 1.6;
  margin-bottom: 32px; max-width: 460px;
}

/* Чекпоинты */
.hero__checks { display: flex; flex-direction: column; gap: 8px; margin-bottom: 36px; }
.hero__check {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.7); font-size: 14px; font-weight: 500;
}
.hero__check-icon { color: #f5921b; width: 16px; height: 16px; flex-shrink: 0; }

/* CTA кнопки */
.hero__ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 48px; }
.hero__cta-primary {
  display: inline-flex; align-items: center; gap: 10px;
  color: #fff; font-weight: 700; font-size: 16px;
  padding: 16px 32px; border-radius: 12px;
  background: linear-gradient(135deg, #f5921b, #e07d0a);
  box-shadow: 0 8px 32px rgba(245,146,27,0.4), inset 0 1px 0 rgba(255,255,255,0.15);
  transition: transform 0.2s;
}
.hero__cta-primary:hover { transform: scale(1.05); }
.hero__cta-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  color: #fff; font-weight: 700; font-size: 16px;
  padding: 16px 32px; border-radius: 12px;
  transition: all 0.2s; backdrop-filter: blur(12px);
}
.hero__cta-secondary:hover { background: rgba(255,255,255,0.15); border-color: rgba(245,146,27,0.5); }

/* Правая колонка — картинка */
.hero__right {
  display: flex; justify-content: center; align-items: center;
  position: relative; height: 680px;
}
.hero__image-platform {
  position: absolute; bottom: 80px; left: 50%; transform: translateX(-50%);
  width: 500px; height: 60px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(245,146,27,0.18), transparent 70%);
}
.hero__rings { position: absolute; }
.hero__ring-1 { width: 520px; height: 520px; border-radius: 50%; border: 1px solid rgba(245,146,27,0.1); }
.hero__ring-2 { width: 620px; height: 620px; border-radius: 50%; border: 1px solid rgba(245,146,27,0.05); }
.hero__image {
  width: 680px; max-height: 580px; object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6)) drop-shadow(0 0 40px rgba(245,146,27,0.15));
  transition: opacity 0.5s, transform 0.5s;
}
.hero__image.fade-out { opacity: 0; transform: scale(0.88) translateY(25px); }
.hero__image.fade-in { opacity: 1; transform: scale(1) translateY(0); }

/* Индикаторы слайдера */
.hero__dots { position: absolute; bottom: 24px; display: flex; gap: 8px; }
.hero__dot {
  height: 6px; border-radius: 999px; transition: all 0.3s; border: none;
}
.hero__dot--active { background: #f5921b; width: 32px; }
.hero__dot--inactive { background: rgba(255,255,255,0.2); width: 12px; }
.hero__dot--inactive:hover { background: rgba(255,255,255,0.4); }

/* Нижняя линия Hero */
.hero__bottom-line {
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(245,146,27,0.5), transparent);
}

/* === СЕКЦИЯ ТОВАРОВ === */
.products {
  padding: 64px 0 96px; background: transparent;
  border-bottom: 1px solid rgba(245,146,27,0.2);
}
.products__title {
  font-size: 32px; font-weight: 800; text-align: center; color: #2d2d2d; margin-bottom: 48px;
}
.products__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.product-card {
  background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06); transition: box-shadow 0.3s;
}
.product-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.product-card__image-wrap {
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 1; background: #fff; padding: 24px; overflow: hidden;
}
.product-card__image {
  max-width: 100%; max-height: 100%; object-fit: contain;
  transition: transform 0.3s;
}
.product-card:hover .product-card__image { transform: scale(1.05); }
.product-card__body { padding: 20px; }
.product-card__name {
  font-size: 18px; font-weight: 700; color: #2d2d2d; margin-bottom: 4px;
  display: block; transition: color 0.2s;
}
.product-card__name:hover { color: #f5921b; }
.product-card__price { color: #6b7280; margin-bottom: 16px; font-size: 15px; }
.product-card__actions { display: flex; gap: 8px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 6px;
  background: #f5921b; color: #fff; font-weight: 700;
  padding: 10px 20px; border-radius: 999px; font-size: 14px;
  transition: background 0.2s;
}
.btn-primary:hover { background: #e07d0a; }
.btn-outline-orange {
  display: inline-flex; align-items: center; gap: 6px;
  border: 2px solid #f5921b; color: #f5921b; font-weight: 700;
  padding: 8px 16px; border-radius: 999px; font-size: 14px;
  transition: all 0.2s; background: transparent;
}
.btn-outline-orange:hover { background: #f5921b; color: #fff; }
.btn-outline-dark {
  display: inline-block; border: 2px solid #2d2d2d; color: #2d2d2d;
  font-weight: 700; padding: 12px 32px; border-radius: 999px;
  transition: all 0.2s;
}
.btn-outline-dark:hover { background: #2d2d2d; color: #fff; }

/* === FAQ СЕКЦИЯ === */
.faq { padding: 64px 0 0; background: transparent; }
.faq__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,146,27,0.1); border-radius: 999px;
  padding: 8px 16px; margin-bottom: 16px;
  font-size: 14px; font-weight: 500; color: #f5921b;
}
.faq__title { font-size: 32px; font-weight: 700; color: #2d2d2d; margin-bottom: 8px; }
.faq__subtitle { color: #6b7280; margin-bottom: 40px; }
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: #fff; border-radius: 16px; border: 1px solid #f3f4f6;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04); overflow: hidden;
}
.faq__question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; text-align: left; font-weight: 600; color: #2d2d2d;
  font-size: 15px; transition: background 0.2s; background: transparent;
}
.faq__question:hover { background: rgba(249,250,251,0.6); }
.faq__icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(245,146,27,0.1); display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.23,1,0.32,1);
}
.faq__item.active .faq__icon { transform: rotate(180deg); }
.faq__icon svg { width: 16px; height: 16px; color: #f5921b; }
.faq__answer {
  max-height: 0; overflow: hidden; transition: max-height 0.45s cubic-bezier(0.23,1,0.32,1), opacity 0.35s;
  opacity: 0;
}
.faq__item.active .faq__answer { max-height: 300px; opacity: 1; }
.faq__answer-text {
  padding: 0 24px 20px; color: #6b7280; font-size: 14px; line-height: 1.7;
}

/* FAQ -> Контакты мост */
.faq__bridge { margin-top: 56px; position: relative; }
.faq__bridge-line {
  position: absolute; inset: 0; top: 50%; height: 1px; transform: translateY(-50%);
  background: linear-gradient(to right, transparent, rgba(245,146,27,0.3), transparent);
}
.faq__bridge-content {
  position: relative; display: flex; flex-direction: column; align-items: center;
  gap: 16px; padding: 32px 0; border-radius: 24px;
  background: linear-gradient(to bottom, transparent, #fff8f2, transparent);
}
.faq__bridge-text {
  color: #9ca3af; font-size: 13px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em;
}
.faq__bridge-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #f5921b; color: #fff; font-weight: 700;
  padding: 12px 28px; border-radius: 999px;
  box-shadow: 0 8px 24px rgba(245,146,27,0.25); transition: all 0.2s;
}
.faq__bridge-btn:hover { background: #e07d0a; box-shadow: 0 8px 24px rgba(245,146,27,0.4); transform: translateY(-2px); }
.faq__bridge-arrow { display: flex; flex-direction: column; align-items: center; gap: 2px; margin-top: 4px; opacity: 0.4; }

/* === КОНТАКТЫ === */
.contacts {
  padding: 64px 0 96px; background: transparent;
  border-bottom: 1px solid rgba(245,146,27,0.2); scroll-margin-top: 80px;
}
.contacts__title { font-size: 32px; font-weight: 800; color: #2d2d2d; margin-bottom: 8px; }
.contacts__subtitle { color: #6b7280; margin-bottom: 40px; }
.contacts__grid {
  display: grid; grid-template-columns: 3fr 2fr; gap: 32px;
}
.contacts__left { display: flex; flex-direction: column; gap: 16px; }
.contacts__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Карточка контакта */
.contact-card {
  background: #fff; border-radius: 16px; padding: 20px;
  display: flex; align-items: center; gap: 16px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04); border: 1px solid rgba(245,146,27,0.1);
}
.contact-card--phone {
  background: linear-gradient(135deg, #fff, #fff8f0, #ffe2c7);
  border-color: rgba(245,146,27,0.3); transition: all 0.3s;
}
.contact-card--phone:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.1); border-color: rgba(245,146,27,0.7); }
.contact-card__icon {
  width: 48px; height: 48px; background: #f5921b; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-card--phone .contact-card__icon { box-shadow: 0 4px 12px rgba(245,146,27,0.4); }
.contact-card__icon svg { width: 20px; height: 20px; color: #fff; }
.contact-card__label { font-weight: 700; color: #2d2d2d; font-size: 15px; margin-bottom: 4px; }
.contact-card__value { color: #374151; font-size: 15px; font-weight: 600; line-height: 1.3; }
.contact-card__tap {
  display: inline-block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em;
  background: rgba(245,146,27,0.15); color: #f5921b; font-weight: 600;
  padding: 2px 8px; border-radius: 999px; margin-left: 8px;
}
.contact-card__hint { font-size: 12px; color: #f5921b; font-weight: 600; margin-top: 4px; }

/* Карта */
.contacts__map { border-radius: 16px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.1); height: 250px; }
.contacts__map iframe { width: 100%; height: 100%; border: 0; }
.contacts__pickup { font-size: 14px; color: #6b7280; display: flex; align-items: center; gap: 4px; }

/* Форма заявки */
.contacts__form-wrap {
  background: #fff; border: 1px solid #e5e7eb; border-radius: 16px;
  overflow: hidden; box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  position: sticky; top: 96px;
}
.contacts__form-header {
  padding: 20px 24px; border-bottom: 1px solid #f3f4f6; background: rgba(249,250,251,0.6);
}
.contacts__form-title { font-size: 20px; font-weight: 800; color: #2d2d2d; }
.contacts__form-sub { color: #9ca3af; font-size: 14px; margin-top: 2px; }
.contacts__form { padding: 24px; display: flex; flex-direction: column; gap: 16px; }
.form-input {
  width: 100%; background: #f9fafb; border: 1px solid #e5e7eb; border-radius: 12px;
  padding: 14px 16px; font-size: 14px; transition: all 0.2s; color: #2d2d2d;
}
.form-input:focus { outline: none; border-color: #f5921b; background: #fff; }
.form-textarea { resize: none; min-height: 80px; }
.form-submit {
  width: 100%; background: #f5921b; color: #fff; font-weight: 700;
  padding: 16px; border-radius: 12px; font-size: 14px;
  transition: background 0.2s; border: none;
}
.form-submit:hover { background: #e07d0a; }

/* === FOOTER === */
.footer {
  background: #1a1a1a; color: #fff; border-top: 1px solid rgba(245,146,27,0.3);
}
.footer__inner { max-width: 1280px; margin: 0 auto; padding: 48px 16px; }
.footer__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; align-items: start;
}
.footer__logo { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.footer__logo-img { width: 44px; height: 44px; border-radius: 8px; object-fit: contain; }
.footer__logo-text { font-size: 24px; font-weight: 800; }
.footer__desc { color: #9ca3af; font-size: 14px; line-height: 1.6; }
.footer__nav-title { font-weight: 700; font-size: 18px; margin-bottom: 16px; }
.footer__nav-list { display: flex; flex-direction: column; gap: 8px; }
.footer__nav-list a { color: #9ca3af; font-size: 14px; transition: color 0.2s; }
.footer__nav-list a:hover { color: #f5921b; }
.footer__contact-item {
  display: flex; align-items: flex-start; gap: 8px;
  color: #9ca3af; font-size: 14px; margin-bottom: 12px; transition: color 0.2s;
}
.footer__contact-item:hover { color: #f5921b; }
.footer__contact-item svg { color: #f5921b; width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; }
.footer__fb { margin-bottom: 16px; }
.footer__call-btn {
  width: 100%; border: 2px solid #f5921b; color: #f5921b; font-weight: 700;
  padding: 12px 24px; border-radius: 999px; transition: all 0.2s; background: transparent;
}
.footer__call-btn:hover { background: #f5921b; color: #fff; }
.footer__divider { border-top: 1px solid #374151; margin-top: 40px; padding-top: 24px; }
.footer__copyright { text-align: center; color: #6b7280; font-size: 14px; }

/* === МОДАЛКА ЗВОНКА === */
.modal-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 50; align-items: center; justify-content: center; padding: 16px;
}
.modal-overlay.active { display: flex; }
.modal {
  background: #fff; border-radius: 16px; padding: 24px; max-width: 448px;
  width: 100%; position: relative;
}
.modal__close {
  position: absolute; top: 16px; right: 16px; color: #9ca3af; font-size: 24px;
  transition: color 0.2s; background: none; border: none;
}
.modal__close:hover { color: #4b5563; }
.modal__title { font-size: 24px; font-weight: 800; color: #2d2d2d; margin-bottom: 8px; }
.modal__sub { color: #6b7280; font-size: 14px; margin-bottom: 24px; }
.modal__form { display: flex; flex-direction: column; gap: 16px; }
.modal__submit {
  width: 100%; background: #f5921b; color: #fff; font-weight: 700;
  padding: 14px; border-radius: 999px; font-size: 18px;
  transition: background 0.2s; border: none;
}
.modal__submit:hover { background: #e07d0a; }

/* === КОРЗИНА SIDEBAR === */
.cart-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 50;
}
.cart-overlay.active { display: block; }
.cart-sidebar {
  position: fixed; right: -100%; top: 0; height: 100%;
  width: 100%; max-width: 448px; background: #fff; z-index: 50;
  box-shadow: -4px 0 20px rgba(0,0,0,0.15); display: flex; flex-direction: column;
  transition: right 0.3s ease;
}
.cart-sidebar.active { right: 0; }
.cart-sidebar__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px; border-bottom: 1px solid #e5e7eb;
}
.cart-sidebar__title {
  font-size: 20px; font-weight: 700; display: flex; align-items: center; gap: 8px;
}
.cart-sidebar__title svg { color: #f5921b; }
.cart-sidebar__close { padding: 4px; border-radius: 4px; transition: background 0.2s; }
.cart-sidebar__close:hover { background: #f3f4f6; }
.cart-sidebar__items { flex: 1; overflow-y: auto; padding: 16px; }
.cart-sidebar__empty { text-align: center; color: #9ca3af; padding: 48px 0; }
.cart-item {
  display: flex; gap: 12px; background: #f9fafb; border-radius: 12px;
  padding: 12px; margin-bottom: 12px;
}
.cart-item__img {
  width: 72px; height: 72px; min-width: 72px; border-radius: 10px;
  object-fit: contain; background: #fff; padding: 6px;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.cart-item__info { flex: 1; min-width: 0; }
.cart-item__name { font-weight: 600; font-size: 14px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cart-item__price { color: #f5921b; font-weight: 700; font-size: 14px; }
.cart-item__qty { display: flex; align-items: center; gap: 8px; margin-top: 4px; }
.cart-item__qty-btn {
  width: 24px; height: 24px; border-radius: 4px; background: #e5e7eb;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; transition: background 0.2s;
}
.cart-item__qty-btn:hover { background: #d1d5db; }
.cart-item__qty-num { font-size: 14px; font-weight: 500; width: 24px; text-align: center; }
.cart-item__right { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; }
.cart-item__remove { color: #9ca3af; transition: color 0.2s; background: none; border: none; }
.cart-item__remove:hover { color: #ef4444; }
.cart-item__total { font-weight: 700; font-size: 14px; }

/* Подвал корзины */
.cart-sidebar__footer { border-top: 1px solid #e5e7eb; padding: 16px; }
.cart-summary { margin-bottom: 12px; }
.cart-summary__row { display: flex; justify-content: space-between; font-size: 14px; color: #6b7280; margin-bottom: 6px; }
.cart-summary__total { display: flex; justify-content: space-between; padding-top: 6px; border-top: 1px solid #e5e7eb; }
.cart-summary__total-label { font-weight: 700; font-size: 18px; }
.cart-summary__total-value { font-weight: 700; font-size: 20px; color: #f5921b; }
.cart-summary__hint { font-size: 12px; color: #9ca3af; margin-top: 4px; }
.cart-checkout-btn {
  width: 100%; background: #f5921b; color: #fff; font-weight: 700;
  padding: 12px; border-radius: 999px; transition: background 0.2s;
  font-size: 15px; border: none;
}
.cart-checkout-btn:hover { background: #e07d0a; }

/* Форма оформления заказа в корзине */
.cart-checkout-form { display: flex; flex-direction: column; gap: 12px; }
.cart-checkout-form input { 
  width: 100%; border: 1px solid #e5e7eb; border-radius: 12px; 
  padding: 10px 16px; font-size: 14px; 
}
.cart-checkout-form input:focus { outline: none; border-color: #f5921b; }
.cart-delivery-options { margin-bottom: 12px; }
.cart-delivery-options p { font-size: 14px; font-weight: 600; margin-bottom: 10px; color: #2d2d2d; }
.cart-delivery-options label { 
  display: flex; align-items: center; gap: 10px; font-size: 14px; 
  cursor: pointer; margin-bottom: 8px; padding: 4px 0;
}
.cart-delivery-options input[type="radio"] { 
  accent-color: #f5921b; width: 18px; height: 18px; flex-shrink: 0; cursor: pointer;
}
.cart-back-btn {
  width: 100%; color: #6b7280; font-size: 14px; padding: 8px;
  text-align: center; transition: color 0.2s; background: none; border: none;
}
.cart-back-btn:hover { color: #374151; }
.cart-free-delivery { font-size: 12px; color: #f59e0b; background: #fffbeb; border-radius: 8px; padding: 4px 8px; }

/* === TOAST УВЕДОМЛЕНИЯ === */
.toast {
  position: fixed; top: 80px; right: 20px; z-index: 60;
  padding: 14px 24px; border-radius: 12px; font-size: 14px; font-weight: 500;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15); transform: translateX(120%);
  transition: transform 0.3s ease; max-width: 400px;
}
.toast.active { transform: translateX(0); }
.toast--success { background: #065f46; color: #fff; }
.toast--error { background: #991b1b; color: #fff; }
.toast--info { background: #1e40af; color: #fff; }

/* === КАТАЛОГ === */
.catalog-page { min-height: 100vh; background: linear-gradient(135deg, #fff9f3, #fff 40%, #fff5eb); }
.catalog-page main { max-width: 1280px; margin: 0 auto; padding: 112px 16px 64px; }
.catalog__title { font-size: 40px; font-weight: 900; color: #2d2d2d; margin-bottom: 8px; }
.catalog__title-accent { color: #f5921b; }
.catalog__subtitle { color: #6b7280; font-size: 18px; margin-bottom: 40px; }

/* Фильтры */
.catalog__filters { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 32px; }
.catalog__search-wrap { position: relative; flex: 1; min-width: 200px; }
.catalog__search-icon { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; color: #9ca3af; }
.catalog__search {
  width: 100%; padding: 12px 16px 12px 44px; border-radius: 12px; border: 1px solid #e5e7eb;
  background: #fff; font-size: 14px; color: #2d2d2d; transition: border-color 0.2s;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.catalog__search:focus { outline: none; border-color: #f5921b; }
.catalog__sort { display: flex; align-items: center; gap: 8px; }
.catalog__sort-btn {
  padding: 10px 16px; border-radius: 12px; font-size: 14px; font-weight: 600;
  border: 1px solid #e5e7eb; background: #fff; color: #4b5563; transition: all 0.2s;
}
.catalog__sort-btn:hover { border-color: #f5921b; color: #f5921b; }
.catalog__sort-btn--active {
  background: #f5921b; color: #fff; border-color: #f5921b;
  box-shadow: 0 4px 12px rgba(245,146,27,0.25);
}

/* Категории */
.catalog__categories { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.catalog__cat-btn {
  padding: 8px 20px; border-radius: 999px; font-size: 14px; font-weight: 600;
  transition: all 0.2s; border: 1px solid #e5e7eb; background: #fff; color: #4b5563;
}
.catalog__cat-btn:hover { border-color: #f5921b; color: #f5921b; }
.catalog__cat-btn--active {
  background: #f5921b !important; 
  color: #fff !important; 
  border-color: #f5921b !important;
  box-shadow: 0 4px 12px rgba(245,146,27,0.3);
}

/* Сетка каталога */
.catalog__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.catalog-card {
  background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04); border: 1px solid #f3f4f6;
  transition: all 0.3s; display: flex; flex-direction: column;
}
.catalog-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.1); border-color: rgba(245,146,27,0.3); }
.catalog-card__image-wrap {
  display: flex; align-items: center; justify-content: center;
  height: 208px; background: #f9fafb; overflow: hidden;
}
.catalog-card__image {
  height: 176px; width: 100%; object-fit: contain; padding: 16px;
  transition: transform 0.3s;
}
.catalog-card:hover .catalog-card__image { transform: scale(1.05); }
.catalog-card__body { padding: 16px; display: flex; flex-direction: column; flex: 1; }
.catalog-card__cat {
  font-size: 12px; font-weight: 600; color: #f5921b;
  text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px;
}
.catalog-card__name {
  font-weight: 700; color: #2d2d2d; font-size: 16px; line-height: 1.3;
  margin-bottom: 8px; display: block; transition: color 0.2s;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.catalog-card__name:hover { color: #f5921b; }
.catalog-card__desc {
  color: #9ca3af; font-size: 12px; line-height: 1.5; margin-bottom: 16px; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.catalog-card__footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.catalog-card__price { font-size: 20px; font-weight: 900; color: #f5921b; }
.catalog-card__price-unit { font-size: 13px; font-weight: 500; color: #9ca3af; }
.catalog-card__cart-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 12px; font-size: 14px; font-weight: 700;
  background: #f5921b; color: #fff; transition: background 0.2s; border: none;
}
.catalog-card__cart-btn:hover { background: #e07d0a; }
.catalog-card__cart-btn--added { background: #10b981; }
/* Кнопка каталога «Нет в наличии» — заблокированная */
.catalog-card__cart-btn--disabled {
  background: #9ca3af !important; cursor: not-allowed !important; opacity: 0.7; font-size: 12px;
}
.catalog-card__cart-btn--disabled:hover { background: #9ca3af !important; }
.catalog__count { text-align: center; color: #9ca3af; font-size: 14px; margin-top: 40px; }
.catalog__empty { text-align: center; padding: 80px 0; color: #9ca3af; font-size: 20px; font-weight: 500; }

/* === СТРАНИЦА ТОВАРА === */
.product-page main { max-width: 1152px; margin: 0 auto; padding: 96px 16px 64px; }
.product-page__back {
  display: inline-flex; align-items: center; gap: 6px;
  color: #9ca3af; font-size: 14px; font-weight: 500; transition: color 0.2s; margin-bottom: 40px;
}
.product-page__back:hover { color: #f5921b; }
.product-page__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-bottom: 64px; }
.product-page__image-wrap {
  background: #fff; border-radius: 24px; display: flex; align-items: center;
  justify-content: center; padding: 40px; min-height: 440px; border: 1px solid #f3f4f6;
}
.product-page__image { max-width: 100%; max-height: 400px; object-fit: contain; }
.product-page__info {
  display: flex; flex-direction: column; justify-content: center;
  background: #fff; border-radius: 24px; border: 1px solid #e5e7eb;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04); padding: 28px;
}
.product-page__cat {
  font-size: 12px; font-weight: 600; color: #f5921b;
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px;
}
.product-page__name { font-size: 32px; font-weight: 900; color: #2d2d2d; line-height: 1.15; margin-bottom: 16px; }
.product-page__status {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; border-radius: 999px; font-size: 12px; font-weight: 600; margin-bottom: 24px;
}
.product-page__status--in { background: #ecfdf5; color: #059669; border: 1px solid #a7f3d0; }
.product-page__status--out { background: #fef2f2; color: #dc2626; border: 1px solid #fca5a5; }
.product-page__price-wrap { margin-bottom: 32px; }
.product-page__price { font-size: 40px; font-weight: 900; color: #f5921b; }
.product-page__price-unit { font-size: 18px; color: #9ca3af; font-weight: 400; margin-left: 8px; }

/* Количество */
.product-page__qty { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.product-page__qty-controls { display: flex; align-items: center; border: 1px solid #e5e7eb; border-radius: 12px; overflow: hidden; }
.product-page__qty-btn {
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  color: #6b7280; font-size: 18px; font-weight: 700; transition: background 0.2s; background: transparent; border: none;
}
.product-page__qty-btn:hover { background: #f9fafb; }
.product-page__qty-num { width: 48px; text-align: center; font-weight: 700; font-size: 16px; color: #2d2d2d; }
.product-page__qty-total { color: #9ca3af; font-size: 14px; }

/* Кнопка корзины */
.product-page__add-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; background: #f5921b; color: #fff; font-weight: 700;
  padding: 16px; border-radius: 16px; font-size: 16px;
  box-shadow: 0 8px 24px rgba(245,146,27,0.2); transition: all 0.2s; margin-bottom: 16px; border: none;
}
.product-page__add-btn:hover { background: #e07d0a; box-shadow: 0 8px 24px rgba(245,146,27,0.3); }

/* Кнопка «Нет в наличии» — заблокированная */
.product-page__add-btn--disabled {
  background: #9ca3af !important; cursor: not-allowed !important;
  box-shadow: none !important; opacity: 0.7;
}
.product-page__add-btn--disabled:hover { background: #9ca3af !important; box-shadow: none !important; }

/* Форма заказа на странице товара */
.product-page__order-form {
  border-radius: 16px; border: 1px solid #f3f4f6; background: rgba(249,250,251,0.5); overflow: hidden;
}
.product-page__order-header { padding: 14px 20px; border-bottom: 1px solid #f3f4f6; }
.product-page__order-title { font-size: 14px; font-weight: 700; color: #2d2d2d; }
.product-page__order-sub { font-size: 12px; color: #9ca3af; margin-top: 2px; }
.product-page__order-fields { padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.product-page__order-input {
  width: 100%; background: #f9fafb; border: 1px solid #e5e7eb; border-radius: 12px;
  padding: 12px 16px; font-size: 14px; color: #2d2d2d; transition: all 0.2s;
}
.product-page__order-input:focus { outline: none; border-color: #f5921b; background: #fff; }
.product-page__order-btn {
  width: 100%; background: #f5921b; color: #fff; font-weight: 700;
  padding: 14px; border-radius: 12px; font-size: 14px; letter-spacing: 0.025em;
  transition: background 0.2s; border: none;
}
.product-page__order-btn:hover { background: #e07d0a; }

/* Описание и применение */
.product-page__details { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 64px; }
.product-page__detail-card {
  background: #fff; border-radius: 16px; border: 1px solid #f3f4f6; padding: 24px;
}
.product-page__detail-title {
  font-size: 16px; font-weight: 700; color: #2d2d2d; margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.product-page__detail-title svg { color: #f5921b; width: 16px; height: 16px; }
.product-page__detail-text { color: #6b7280; font-size: 14px; line-height: 1.7; }

/* SEO текст */
.product-page__seo {
  background: #fff; border-radius: 16px; border: 1px solid #f3f4f6; padding: 32px; margin-bottom: 64px;
}
.product-page__seo h2 { font-size: 24px; font-weight: 700; color: #2d2d2d; margin-bottom: 12px; }
.product-page__seo-desc { font-size: 16px; color: #4b5563; line-height: 1.6; font-weight: 500; margin-bottom: 24px; }
.product-page__seo-text { color: #6b7280; font-size: 14px; line-height: 1.7; }
.product-page__seo-text p { margin-bottom: 12px; }
.product-page__seo-text strong { font-weight: 700; }
.text-dark { color: #2d2d2d; }
.text-orange { color: #f5921b; }

/* Похожие товары */
.product-page__related { margin-bottom: 32px; }
.product-page__related-title { font-size: 20px; font-weight: 700; color: #2d2d2d; margin-bottom: 24px; }
.product-page__related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.related-card {
  display: flex; flex-direction: column; background: #fff; border-radius: 16px;
  border: 1px solid #f3f4f6; overflow: hidden; transition: all 0.2s;
}
.related-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); border-color: rgba(245,146,27,0.3); }
.related-card__image-wrap {
  height: 176px; background: #f9fafb; display: flex; align-items: center;
  justify-content: center; padding: 16px;
}
.related-card__image { max-height: 144px; object-fit: contain; transition: transform 0.3s; }
.related-card:hover .related-card__image { transform: scale(1.05); }
.related-card__body { padding: 16px; border-top: 1px solid #f9fafb; }
.related-card__name { font-weight: 600; font-size: 14px; color: #2d2d2d; margin-bottom: 4px; }
.related-card__price { color: #f5921b; font-weight: 700; font-size: 14px; }

/* === СТРАНИЦА СТАТЕЙ === */
.articles-page main { max-width: 1280px; margin: 0 auto; padding: 112px 16px 64px; }
.articles__title { font-size: 32px; font-weight: 800; color: #2d2d2d; margin-bottom: 8px; }
.articles__subtitle { color: #6b7280; margin-bottom: 40px; }
.articles__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.article-card {
  background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06); transition: box-shadow 0.3s;
}
.article-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.article-card__image-wrap { height: 192px; overflow: hidden; }
.article-card__image {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s;
}
.article-card:hover .article-card__image { transform: scale(1.05); }
.article-card__body { padding: 20px; }
.article-card__date { font-size: 12px; color: #9ca3af; margin-bottom: 8px; }
.article-card__title {
  font-size: 18px; font-weight: 700; color: #2d2d2d; margin-bottom: 8px;
  transition: color 0.2s; display: block;
}
.article-card:hover .article-card__title { color: #f5921b; }
.article-card__excerpt { color: #6b7280; font-size: 14px; line-height: 1.6; margin-bottom: 12px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.article-card__link { color: #f5921b; font-weight: 600; font-size: 14px; }

/* === СТРАНИЦА ОТДЕЛЬНОЙ СТАТЬИ === */
.article-page main { max-width: 900px; margin: 0 auto; padding: 96px 16px 64px; }
.article-page__back {
  display: inline-flex; align-items: center; gap: 4px;
  color: #f5921b; font-weight: 500; font-size: 15px; margin-bottom: 24px;
}
.article-page__back:hover { text-decoration: underline; }
.article-page__hero { border-radius: 16px; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.1); margin-bottom: 32px; }
.article-page__hero img { width: 100%; height: 300px; object-fit: cover; }
.article-page__date { font-size: 14px; color: #9ca3af; margin-bottom: 8px; }
.article-page__title { font-size: 32px; font-weight: 800; color: #2d2d2d; margin-bottom: 32px; }

/* Контент статьи */
.article-content h2 { font-size: 24px; font-weight: 800; color: #2d2d2d; margin-top: 40px; margin-bottom: 16px; }
.article-content .h2-bar { height: 2px; width: 48px; background: #f5921b; border-radius: 999px; margin-top: 8px; }
.article-content h3 {
  font-size: 18px; font-weight: 800; color: #2d2d2d; margin-top: 32px; margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.article-content .h3-bar { width: 4px; height: 20px; border-radius: 999px; background: #f5921b; flex-shrink: 0; }
.article-content p { color: #4b5563; font-size: 15px; line-height: 1.7; margin-bottom: 12px; }
.article-content a { color: #f5921b; font-weight: 500; }
.article-content a:hover { text-decoration: underline; }
.article-content strong { font-weight: 700; color: #2d2d2d; }
.article-content ul { margin: 16px 0; display: flex; flex-direction: column; gap: 8px; }
.article-content ul li {
  display: flex; align-items: flex-start; gap: 12px;
  background: #fff; border: 1px solid #f3f4f6; border-radius: 12px;
  padding: 12px 16px; box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}
.article-content .list-dot { margin-top: 6px; width: 8px; height: 8px; border-radius: 50%; background: #f5921b; flex-shrink: 0; }
.article-content ol { margin: 16px 0; display: flex; flex-direction: column; gap: 8px; }
.article-content ol li {
  display: flex; align-items: flex-start; gap: 12px;
  background: #fff; border: 1px solid #f3f4f6; border-radius: 12px;
  padding: 12px 16px; box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}
.article-content .list-num {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: #f5921b; color: #fff; font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.article-content .tip {
  margin: 24px 0; background: #fff8f2; border-left: 4px solid #f5921b;
  border-radius: 0 12px 12px 0; padding: 16px 20px;
}
.article-content .tip-label { font-size: 12px; font-weight: 700; color: #f5921b; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; }
.article-content .tip p { color: #4b5563; font-size: 14px; }
.article-content blockquote {
  margin: 24px 0; background: #f9fafb; border-left: 4px solid #d1d5db;
  border-radius: 0 12px 12px 0; padding: 16px 20px;
  font-style: italic; color: #6b7280; font-size: 14px; line-height: 1.7;
}

/* Товар из статьи */
.article-product {
  margin-top: 40px; border-radius: 16px; border: 2px solid rgba(245,146,27,0.3);
  background: #fff; overflow: hidden; box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.article-product__header {
  padding: 12px 20px; background: #fff8f2; border-bottom: 1px solid rgba(245,146,27,0.15);
  font-size: 12px; font-weight: 700; color: #f5921b; text-transform: uppercase; letter-spacing: 0.05em;
}
.article-product__body { display: flex; align-items: center; gap: 20px; padding: 20px; }
.article-product__img-wrap {
  width: 80px; height: 80px; background: #f9fafb; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  border: 1px solid #f3f4f6; flex-shrink: 0;
}
.article-product__img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.article-product__info { flex: 1; min-width: 0; }
.article-product__cat { font-size: 12px; color: #f5921b; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 2px; }
.article-product__name { font-weight: 700; color: #2d2d2d; font-size: 15px; transition: color 0.2s; display: block; margin-bottom: 4px; }
.article-product__name:hover { color: #f5921b; }
.article-product__desc { color: #9ca3af; font-size: 13px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.article-product__actions { flex-shrink: 0; display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.article-product__price { font-size: 20px; font-weight: 900; color: #f5921b; }
.article-product__price-unit { font-size: 13px; font-weight: 500; color: #9ca3af; }

/* Другие статьи */
.article-more { margin-top: 40px; }
.article-more__title { font-size: 18px; font-weight: 700; color: #2d2d2d; margin-bottom: 16px; }
.article-more__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.article-more__card {
  display: flex; gap: 12px; background: #fff; border-radius: 12px;
  border: 1px solid #f3f4f6; padding: 12px; transition: all 0.2s;
}
.article-more__card:hover { border-color: rgba(245,146,27,0.3); box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.article-more__card-img { width: 64px; height: 64px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.article-more__card-title { font-weight: 600; font-size: 14px; color: #2d2d2d; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; transition: color 0.2s; }
.article-more__card:hover .article-more__card-title { color: #f5921b; }
.article-more__card-date { font-size: 12px; color: #9ca3af; margin-top: 4px; }

/* CTA блок */
.article-cta {
  margin-top: 40px; background: #fff8f0; border-radius: 16px;
  border: 1px solid rgba(245,146,27,0.2); padding: 32px; text-align: center;
}
.article-cta__title { font-size: 24px; font-weight: 700; color: #2d2d2d; margin-bottom: 12px; }
.article-cta__text { color: #6b7280; margin-bottom: 24px; }

/* === ДЕКОРАТИВНЫЕ ИКОНКИ НА СТРАНИЦЕ === */
.page-decorations { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.page-decorations svg { position: absolute; opacity: 0.16; }

/* === АДАПТИВНОСТЬ === */
@media (max-width: 1024px) {
  .hero__grid-layout { grid-template-columns: 1fr; }
  .hero__right { display: none; }
  .hero__title { font-size: 44px; }
  .hero { min-height: auto; padding: 120px 0 80px; }
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .contacts__grid { grid-template-columns: 1fr; }
  .catalog__grid { grid-template-columns: repeat(3, 1fr); }
  .product-page__grid { grid-template-columns: 1fr; }
  .product-page__details { grid-template-columns: 1fr; }
  .product-page__related-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .header__nav { display: none; }
  .header__right .header__phone,
  .header__right .header__cta,
  .header__right .lang-switch,
  .header__right .header__cart-btn { display: none; }
  .header__mobile { display: flex; }
}

@media (max-width: 768px) {
  .hero__title { font-size: 36px; }
  .hero__ctas { flex-direction: column; }
  .hero__cta-primary, .hero__cta-secondary { width: 100%; justify-content: center; }
  .products__grid { grid-template-columns: 1fr; gap: 24px; }
  .contacts__cards { grid-template-columns: 1fr; }
  .catalog__grid { grid-template-columns: repeat(2, 1fr); }
  .catalog__filters { flex-direction: column; }
  .articles__grid { grid-template-columns: 1fr; }
  .article-page__hero img { height: 200px; }
  .article-page__title { font-size: 24px; }
  .article-more__grid { grid-template-columns: 1fr; }
  .article-product__body { flex-direction: column; align-items: flex-start; }
  .article-product__actions { flex-direction: row; width: 100%; justify-content: space-between; align-items: center; }
  .footer__grid { grid-template-columns: 1fr; }
  .product-page__name { font-size: 24px; }
  .product-page__price { font-size: 32px; }
  .product-page__related-grid { grid-template-columns: 1fr; }
  .catalog__title { font-size: 28px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 28px; }
  .catalog__grid { grid-template-columns: 1fr; }
  .product-card__actions { flex-direction: column; }
  .btn-primary, .btn-outline-orange {
    width: 100%; justify-content: center; padding: 12px 20px; font-size: 15px;
  }
  .contact-card__value { font-size: 16px; }
  .contact-card__label { font-size: 16px; }
}
