/* ==========================================================
   SHTIFEL — Clean Minimal Design System
   Based on shtifel.ru design: Red accent, light background
   ========================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #1a56db;
  --primary-dark: #1342a8;
  --primary-light: rgba(26,86,219,0.08);
  --dark: #1a1a2e;
  --dark-header: #1e1e32;
  --bg: #FAFAFA;
  --bg-light: #F3F4F6;
  --bg-section: #EEEEF2;
  --white: #FFFFFF;
  --text: #1a1a2e;
  --text-muted: #9CA3AF;
  --text-light: #6B7280;
  --border: #E5E7EB;
  --border-light: #F3F4F6;
  --green: #059669;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --radius: 8px;
  --radius-lg: 14px;
  --max-w: 1200px;
  --transition: 0.25s ease;
}

/* ========== RESET ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; transition: color var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
::selection { background: var(--primary); color: #fff; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-light); }
::-webkit-scrollbar-thumb { background: #ccc; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #aaa; }

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; }
.page-title {
  font-size: 42px;
  font-style: italic;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 24px;
}

/* ========== HEADER ========== */
.header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 20px;
}
.logo-block {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: 4px;
  flex-shrink: 0;
}
.logo:hover { color: var(--dark); }
.footer-new .logo { color: #fff; }
.footer-new .logo:hover { color: #fff; }
.logo-subtitle {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
  max-width: 100px;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: 40px;
}
.header-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  padding: 4px 0;
  transition: color var(--transition);
  white-space: nowrap;
}
.header-nav a:hover, .header-nav a.active { color: var(--primary); }
.header-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-left: auto;
  flex-shrink: 0;
}
.header-phone a {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.5px;
}
.header-phone a:hover { color: var(--primary); }
.header-phone small {
  font-size: 10px;
  color: var(--text-muted);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: auto;
}
.header-icon-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  color: var(--text);
  font-size: 16px;
}
.header-icon-btn:hover {
  background: var(--bg-light);
  border-color: var(--primary);
  color: var(--primary);
}
.header-icon-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.header-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 16px;
  height: 16px;
  background: var(--primary);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  border-radius: 8px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.header-badge.active { display: flex; }

/* Header CTA Buttons */
.btn-outline-header {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
  padding: 9px 22px;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}
.btn-outline-header:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.btn-primary-header {
  background: var(--primary);
  color: #fff;
  border: 1.5px solid var(--primary);
  padding: 9px 22px;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.btn-primary-header:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}
.btn-dark {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}
.btn-dark:hover {
  background: #333;
  border-color: #333;
}
.btn-white {
  background: #fff;
  color: var(--dark);
  border-color: #fff;
}
.btn-white:hover { background: var(--bg-light); }
.btn-sm { padding: 8px 18px; font-size: 12px; }
.btn-lg { padding: 14px 32px; font-size: 14px; }
.btn-header {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 600;
  border-radius: var(--radius);
}
.btn-header:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

/* ========== MOBILE MENU ========== */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  border: none;
  background: none;
}
.mobile-menu-btn span {
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background: #fff;
  z-index: 999;
  padding: 24px;
  transition: right 0.35s ease;
  overflow-y: auto;
  box-shadow: -4px 0 20px rgba(0,0,0,0.1);
}
.mobile-menu.open { right: 0; }
.mobile-menu .close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 24px;
  cursor: pointer;
  border: none;
  background: none;
  color: var(--text);
}
.mobile-menu nav { margin-top: 48px; }
.mobile-menu nav a {
  display: block;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 600;
  border-bottom: 1px solid var(--border-light);
}
.mobile-menu nav a:hover { color: var(--primary); }

/* ========== BREADCRUMB ========== */
.breadcrumb {
  padding: 20px 0 8px;
  font-size: 13px;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { margin: 0 6px; color: #ccc; }

/* ========== SECTIONS ========== */
.section { padding: 60px 0; }
.section-light { background: var(--bg-light); }
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
}
.section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--dark);
}
.section-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.section-link:hover { text-decoration: underline; }

/* ========== PAGE HERO (breadcrumb + title) ========== */
.page-hero {
  background: var(--white);
  padding: 0;
}
.page-hero .breadcrumb { padding-top: 20px; margin-bottom: 0; }

/* ========== STATS ========== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 32px 0;
}
.stat-item {
  background: var(--white);
  padding: 28px 20px;
  text-align: center;
}
.stat-value {
  font-size: 40px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
}

/* ========== NEWS TABS ========== */
.news-section { padding: 48px 0; }
.news-tabs {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.news-tab {
  padding: 10px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-muted);
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all var(--transition);
  font-family: inherit;
}
.news-tab:hover, .news-tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}
.news-list { list-style: none; }
.news-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.news-item h4 {
  font-size: 18px;
  font-weight: 700;
}
.news-item .news-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted);
}
.news-item p {
  font-size: 14px;
  color: var(--text-light);
}
.btn-news-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 12px 32px;
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  background: transparent;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all var(--transition);
}
.btn-news-more:hover {
  background: var(--primary);
  color: #fff;
}

/* ========== BUILDING IMAGE ========== */
.building-image {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-light);
  position: relative;
}
.building-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.building-placeholder {
  width: 100%;
  height: 350px;
  background: linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-size: 48px;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  padding: 16px 0;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted);
}
.footer-links {
  display: flex;
  gap: 8px;
  align-items: center;
}
.footer-links a {
  color: var(--text-muted);
  font-size: 12px;
}
.footer-links a:hover { color: var(--text); }
.footer-links .dot {
  width: 3px;
  height: 3px;
  background: var(--text-muted);
  border-radius: 50%;
}

/* OLD footer classes kept for backward compat */
.footer-grid { display: none; }
.footer-brand { display: none; }
.footer-col { display: none; }

/* Footer Social Links */
.footer-social {
  display: flex; gap: 10px; margin-top: 16px;
}
.social-link {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); transition: all var(--transition);
}
.social-link:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

/* ========== FORMS ========== */
.form-input, .form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  background: #fff;
  transition: border-color var(--transition);
  color: var(--text);
}
.form-input:focus, .form-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--primary-light);
}
.form-input::placeholder { color: #bbb; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--text);
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  transition: border-color var(--transition);
  color: var(--text);
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--primary-light);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: var(--text-light);
  margin: 12px 0;
}
.form-checkbox input { margin-top: 2px; accent-color: var(--primary); }

/* ========== MODALS ========== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.modal-overlay.show { display: flex; }
.modal {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  max-width: 460px;
  width: 92%;
  position: relative;
  animation: modalIn 0.3s ease;
  box-shadow: var(--shadow-lg);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--border);
  background: var(--bg-light);
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.modal-close:hover { border-color: var(--primary); color: var(--primary); }
.modal h2 { font-size: 24px; margin-bottom: 8px; }
.modal p { font-size: 14px; color: var(--text-light); margin-bottom: 20px; }

/* ========== HERO (index page) ========== */
.hero {
  background: var(--dark-header);
  color: #fff;
  position: relative;
  overflow: hidden;
  min-height: 460px;
}
.hero-bg { position: absolute; inset: 0; background: linear-gradient(145deg, #1a1a2e 0%, #252545 50%, #1e2a4a 100%); z-index: 0; }
.hero-bg-image {
  position: absolute; inset: 0; opacity: 0.45; z-index: 1;
  background-image: url('../img/hero-equipment.png');
  background-size: cover;
  background-position: center right;
}
.hero-inner {
  position: relative; z-index: 3;
  display: flex; align-items: stretch; min-height: 460px;
}
.hero-text {
  flex: 1; display: flex; flex-direction: column;
  justify-content: center; padding: 60px 0; max-width: 520px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(26,86,219,0.2); color: #60a5fa;
  padding: 6px 14px; border-radius: 4px;
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 20px; width: fit-content;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px;
  background: #60a5fa; border-radius: 50%;
  animation: pulseDot 2s ease infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; } 50% { opacity: 0.4; }
}
.hero h1 { font-size: 44px; font-weight: 800; line-height: 1.15; margin-bottom: 16px; }
.hero-subtitle { font-size: 15px; color: rgba(255,255,255,0.55); margin-bottom: 28px; }
.hero-buttons { display: flex; gap: 14px; }
.hero-dots { display: flex; gap: 8px; margin-top: 32px; }
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.2); cursor: pointer; transition: all 0.3s; }
.hero-dot:hover { background: rgba(255,255,255,0.4); }
.hero-dot.active { background: var(--primary); width: 28px; border-radius: 4px; }

/* Hero right side */
.hero-right {
  display: flex; flex-direction: column; justify-content: flex-end;
  align-items: flex-end; margin-left: auto; padding: 60px 0;
}
.hero-stats {
  display: flex; align-items: center; gap: 0;
  padding: 20px 0 0;
}
.hero-stat { text-align: center; padding: 0 24px; }
.hero-stat-value { font-size: 32px; font-weight: 800; color: #fff; line-height: 1; }
.hero-stat-value span { font-size: 16px; font-weight: 600; }
.hero-stat-label { font-size: 11px; color: rgba(255,255,255,0.45); margin-top: 4px; font-weight: 500; }
.hero-stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }

/* ========== CATALOG CAROUSEL (index) ========== */
.catalog-carousel { position: relative; padding: 0 40px; }
.catalog-arrow {
  position: absolute; top: 45%; transform: translateY(-50%);
  width: 32px; height: 32px; border: none;
  border-radius: 0; background: transparent;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 10;
  color: var(--primary); transition: all var(--transition);
  padding: 0;
}
.catalog-arrow:hover { color: var(--primary-dark); }
.catalog-arrow-left { left: 0; }
.catalog-arrow-right { right: 0; }
.catalog-carousel-track {
  display: flex; gap: 24px; overflow-x: auto;
  scroll-snap-type: x mandatory; scrollbar-width: none; padding: 4px 0;
}
.catalog-carousel-track::-webkit-scrollbar { display: none; }
.category-card {
  flex: 0 0 calc(25% - 18px); min-width: 240px; scroll-snap-align: start;
  background: transparent; border: none;
  border-radius: 0; padding: 0; text-align: center;
  transition: all 0.3s ease; cursor: pointer; display: block;
}
.category-card:hover { transform: translateY(-4px); }
.category-card-img {
  width: 100%; height: 200px; margin: 0 auto 16px;
  background: transparent; border-radius: 0;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.category-card-img img {
  max-width: 90%; max-height: 90%; object-fit: contain;
}
.category-card-img .icon { font-size: 40px; opacity: 0.25; }
.category-card:hover .category-card-img .icon { opacity: 0.4; }
.category-card h3 { font-size: 14px; font-weight: 600; color: var(--text); line-height: 1.3; margin-bottom: 2px; }
.category-card .count { font-size: 12px; color: var(--text-muted); }

/* ========== PREMIUM SECTION (index) ========== */
.section-premium {
  background: var(--dark); padding: 80px 0; color: #fff;
}
.premium-header { text-align: center; margin-bottom: 56px; }
.premium-title {
  font-size: 36px; font-weight: 800; color: #fff; margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.premium-title span { color: var(--primary); }
.premium-subtitle { font-size: 16px; color: rgba(255,255,255,0.5); font-weight: 400; }
.premium-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-bottom: 56px;
}
.premium-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 32px 24px 28px; position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.premium-card:hover {
  background: rgba(255,255,255,0.08); border-color: rgba(26,86,219,0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.premium-card-number {
  font-size: 48px; font-weight: 900; color: rgba(255,255,255,0.04);
  position: absolute; top: 16px; right: 20px; line-height: 1;
  letter-spacing: -2px;
}
.premium-card:hover .premium-card-number { color: rgba(26,86,219,0.15); }
.premium-card-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(26,86,219,0.15); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; transition: all 0.3s ease;
}
.premium-card:hover .premium-card-icon {
  background: var(--primary); color: #fff;
}
.premium-card h3 {
  font-size: 17px; font-weight: 700; margin-bottom: 10px; color: #fff;
}
.premium-card p {
  font-size: 13px; line-height: 1.65; color: rgba(255,255,255,0.45);
}
.premium-card:hover p { color: rgba(255,255,255,0.65); }

/* Audience strip */
.audience-strip {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 32px 0 0;
}
.audience-strip-label {
  font-size: 14px; color: rgba(255,255,255,0.35); font-weight: 500;
  white-space: nowrap;
}
.audience-strip-items { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.audience-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 100px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.7);
  transition: all 0.3s ease;
}
.audience-chip svg { color: var(--primary); flex-shrink: 0; }
.audience-chip:hover {
  background: rgba(26,86,219,0.12); border-color: rgba(26,86,219,0.3);
  color: #fff;
}

/* ========== PROMO CARDS (index) ========== */
.promo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.promo-card {
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: row; min-height: 200px;
  background: #fff; border: 1px solid var(--border);
  transition: all 0.3s ease; text-decoration: none; color: var(--text);
}
.promo-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.promo-card-text {
  flex: 1; padding: 24px; display: flex; flex-direction: column;
  justify-content: flex-end;
}
.promo-card-text h3 { font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.promo-card-text p { font-size: 13px; color: var(--text-light); margin-bottom: 14px; line-height: 1.5; }
.promo-card-link {
  color: var(--primary); font-weight: 600; font-size: 13px;
  display: inline-flex; align-items: center; gap: 4px;
}
.promo-card-link:hover { text-decoration: underline; }
.promo-card-img {
  flex: 0 0 45%; min-height: 200px;
  background: var(--bg-light);
  background-size: cover; background-position: center;
}
.promo-img-cases { background-image: url('../img/building.png'); background-color: #d1d5db; }
.promo-img-news { background-image: url('../img/building.png'); background-color: #d1d5db; }
.promo-img-price {
  background-color: rgba(255,255,255,0.08);
  background-image: url('../img/building.png');
  opacity: 0.3;
}
.promo-card-blue {
  background: var(--primary); border-color: var(--primary); color: #fff;
}
.promo-card-blue .promo-card-text p { color: rgba(255,255,255,0.7); }
.promo-card-blue .promo-card-text h3 { color: #fff; }
.btn-red {
  background: #dc2626; color: #fff; border: 2px solid #dc2626;
}
.btn-red:hover { background: #b91c1c; border-color: #b91c1c; }

/* ========== CONTACT FORM STRIP ========== */
.contact-section { background: var(--bg-light); padding: 48px 0; border-top: 1px solid var(--border); }
.contact-form-wrapper { display: flex; align-items: center; gap: 40px; }
.contact-form-text { flex-shrink: 0; }
.contact-form-text h2 { font-size: 26px; font-weight: 800; margin-bottom: 4px; color: var(--dark); }
.contact-form-text p { color: var(--text-muted); font-size: 14px; }
.contact-form { display: flex; align-items: center; gap: 10px; flex: 1; }

/* ========== PRODUCT CARDS ========== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.product-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all 0.3s ease;
}
.product-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.product-card-image {
  height: 185px; background: var(--bg-light);
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--border-light);
  padding: 10px; overflow: hidden;
}
.product-card-image img {
  max-width: 100%; max-height: 100%; object-fit: contain;
  transition: transform 0.3s ease;
}
.product-card:hover .product-card-image img { transform: scale(1.03); }
.product-card-image .placeholder-icon { font-size: 48px; opacity: 0.12; }
.product-card-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--primary); color: #fff;
  padding: 3px 10px; border-radius: 4px;
  font-size: 10px; font-weight: 700;
}
.product-card-body { padding: 16px; }
.product-card-category {
  font-size: 10px; color: var(--text-muted); margin-bottom: 4px;
  text-transform: uppercase; letter-spacing: 0.04em; font-weight: 600;
}
.product-card h3 { font-size: 13px; font-weight: 600; margin-bottom: 6px; line-height: 1.3; }
.product-card h3 a:hover { color: var(--primary); }
.product-card-specs { font-size: 11px; color: var(--text-light); margin-bottom: 10px; }
.product-card-specs span {
  display: inline-block; background: var(--bg-light);
  padding: 2px 8px; border-radius: 4px; margin: 2px 3px 2px 0;
}
.product-card-footer {
  display: flex; flex-direction: column;
  padding-top: 10px; border-top: 1px solid var(--border-light);
}
.product-price { font-size: 18px; font-weight: 700; color: var(--dark); white-space: nowrap; }
.product-price-old {
  font-size: 12px; color: var(--text-muted);
  text-decoration: line-through;
}

/* ========== CATALOG PAGE ========== */
.catalog-layout { display: grid; grid-template-columns: 240px 1fr; gap: 24px; margin-bottom: 48px; }
.catalog-sidebar { position: sticky; top: 76px; align-self: start; }
.filter-group { margin-bottom: 20px; }
.filter-group h4 { font-size: 13px; font-weight: 700; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.03em; }
.filter-group label {
  display: flex; align-items: center; gap: 8px;
  padding: 5px 0; font-size: 13px; cursor: pointer; color: var(--text-light);
}
.filter-group label:hover { color: var(--text); }
.filter-group input[type="checkbox"] { accent-color: var(--primary); width: 15px; height: 15px; }
.catalog-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px; padding: 10px 14px;
  background: var(--bg-light); border-radius: var(--radius);
}
.catalog-count { font-size: 13px; color: var(--text-light); }
.catalog-sort { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-light); }
.catalog-sort select {
  padding: 6px 12px; border: 1px solid var(--border);
  border-radius: var(--radius); font-size: 12px; background: #fff; font-family: inherit;
}
.pagination { display: flex; flex-direction: column; align-items: center; gap: 16px; margin-top: 32px; }
.pagination-info { font-size: 13px; color: var(--text-muted); }
.pagination-nav { display: flex; align-items: center; gap: 6px; }
.pagination-load-more { min-width: 200px; }
.page-btn {
  width: 36px; height: 36px; border: 1px solid var(--border);
  border-radius: var(--radius); background: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 13px; font-weight: 600;
  transition: all var(--transition);
}
.page-btn:hover, .page-btn.active {
  background: var(--primary); color: #fff; border-color: var(--primary);
}

/* ========== PRODUCT DETAIL PAGE ========== */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.product-gallery {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  border: 1px solid var(--border);
}
.product-gallery .placeholder-icon { font-size: 80px; opacity: 0.1; }
.gallery-main { display: flex; align-items: center; justify-content: center; flex: 1; width: 100%; }
.gallery-main img { max-width: 100%; max-height: 350px; object-fit: contain; }
.gallery-thumbs img:hover { border-color: var(--primary) !important; }
.product-info h1 { font-size: 28px; font-weight: 700; margin-bottom: 12px; }
.product-detail-price {
  font-size: 28px; font-weight: 800; color: var(--dark); margin-bottom: 4px;
}
.product-detail-price .in-stock {
  font-size: 14px; font-weight: 500; color: var(--green); margin-left: 12px;
}
.product-detail-ric { font-size: 13px; color: var(--text-muted); margin-bottom: 4px; }
.product-code { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }

/* Product sidebar panel */
.product-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.product-sidebar .btn-primary { width: 100%; padding: 14px; font-size: 15px; }
.product-sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product-sidebar-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  padding: 8px 0;
  cursor: pointer;
  transition: color var(--transition);
}
.product-sidebar-link:hover { color: var(--primary); }
.product-sidebar-link .link-icon {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0;
}
.product-docs {
  margin-top: 8px;
}
.product-docs h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}
.doc-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
  transition: color var(--transition);
}
.doc-link:hover { color: var(--primary); }
.doc-link .doc-icon {
  width: 32px; height: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--primary); margin-right: 10px;
}
.doc-link-left { display: flex; align-items: center; }
.doc-link .arrow { color: var(--text-muted); font-size: 18px; }
.product-actions { display: flex; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }

/* Tabs */
.product-tabs { margin-bottom: 48px; }
.tabs-nav {
  display: flex; border-bottom: 1px solid var(--border);
  margin-bottom: 24px; gap: 0;
}
.tab-btn {
  padding: 12px 24px; font-size: 14px; font-weight: 600;
  color: var(--text-muted); border: none; background: none;
  cursor: pointer; border-bottom: 2px solid transparent;
  margin-bottom: -1px; transition: all var(--transition); font-family: inherit;
}
.tab-btn:hover, .tab-btn.active { color: var(--dark); border-bottom-color: var(--primary); }
.tab-content { display: none; font-size: 14px; line-height: 1.7; color: var(--text-light); }
.tab-content.active { display: block; }

/* Specs table */
.product-specs-table { width: 100%; border-collapse: collapse; }
.product-specs-table tr { border-bottom: 1px solid var(--border-light); }
.product-specs-table td { padding: 12px 0; font-size: 14px; }
.product-specs-table td:first-child { color: var(--text-light); width: 45%; }
.product-specs-table td:first-child strong { color: var(--text); font-weight: 600; }
.series-tag {
  display: inline-block; background: var(--primary-light);
  color: var(--primary); padding: 4px 12px; border-radius: 4px;
  font-size: 11px; font-weight: 600; margin-bottom: 12px;
}

/* ========== COMPANY PAGE ========== */
.company-description {
  font-size: 16px; line-height: 1.8; color: var(--text-light);
  max-width: 700px; margin-bottom: 8px;
}

/* ========== WHOLESALE PAGE ========== */
.wholesale-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 48px;
}
.wholesale-feature {
  text-align: center;
  padding: 28px 16px;
  background: var(--white);
}
.wholesale-feature .icon {
  width: 56px; height: 56px; margin: 0 auto 12px;
  border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--text-muted);
}
.wholesale-feature h3 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.wholesale-feature p { font-size: 12px; color: var(--text-muted); }
.wholesale-conditions {
  max-width: 700px;
  margin-bottom: 40px;
}
.wholesale-conditions h2 {
  font-size: 32px;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 16px;
}
.wholesale-conditions p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}
.wholesale-conditions .link-arrow {
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: underline;
}
.wholesale-forms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.wholesale-form-card {
  padding: 36px;
  background: var(--bg-light);
}
.wholesale-form-card:first-child { border-right: 1px solid var(--border); }
.wholesale-form-card .form-icon {
  width: 48px; height: 48px; margin-bottom: 16px;
  color: var(--primary); font-size: 24px;
  display: flex; align-items: center; justify-content: center;
}
.wholesale-form-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.wholesale-form-card p { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }

/* ========== CASES PAGE ========== */
.cases-filters {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.cases-filter-btn {
  padding: 8px 20px;
  border: none;
  border-bottom: 2px solid transparent;
  background: none;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
  color: var(--text-muted);
}
.cases-filter-btn:hover, .cases-filter-btn.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.case-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}
.case-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.case-card-image {
  height: 200px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.case-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case-card-image .case-placeholder {
  font-size: 48px;
  opacity: 0.15;
}
.case-card-body { padding: 16px; }
.case-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.case-card .case-location { font-size: 13px; color: var(--text-light); margin-bottom: 2px; }
.case-card .case-equipment { font-size: 12px; color: var(--text-muted); font-style: italic; }
.case-card .case-meta {
  display: flex; gap: 12px; margin-top: 8px;
  font-size: 12px; color: var(--text-muted);
}
.cases-more {
  text-align: center;
  margin-top: 32px;
}

/* ========== SUPPORT PAGE ========== */
.support-intro {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 700px;
  margin-bottom: 32px;
}
.support-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.support-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}
.support-card:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.support-card .icon {
  width: 56px; height: 56px; margin: 0 auto 12px;
  border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--text-muted);
}
.support-card h3 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.support-card p { font-size: 12px; color: var(--text-muted); line-height: 1.5; }
.support-content {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  margin-bottom: 48px;
}
.support-main h3 { font-size: 28px; font-weight: 700; font-style: italic; margin-bottom: 16px; }
.support-sidebar {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.support-sidebar h3 { font-size: 18px; font-weight: 700; margin-bottom: 16px; }
.support-sidebar h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.support-sidebar p { font-size: 13px; color: var(--text-light); line-height: 1.7; }

/* ========== CONTACTS PAGE ========== */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
.contact-company {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.contact-company h3 { font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.contact-company .subtitle { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.contact-details { margin-top: 16px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
}
.contact-detail .cd-icon {
  color: var(--primary);
  font-size: 16px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-detail a { color: var(--text); }
.contact-detail a:hover { color: var(--primary); }
.contact-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.contact-form-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 20px; }
.contacts-map-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 48px;
}
.contacts-map-section .map-info {
  padding: 32px;
  background: var(--bg-light);
}
.contacts-map-section .map-container {
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}
.contacts-map-section .map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  min-height: 300px;
}

/* OLD contacts classes */
.contact-info-list { display: flex; flex-direction: column; gap: 18px; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-info-item .icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--bg-light); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.contact-info-item h4 { font-size: 13px; font-weight: 600; margin-bottom: 2px; }
.contact-info-item p { font-size: 13px; color: var(--text-light); }
.contact-info-item a { color: var(--primary); font-weight: 500; }
.contact-social { display: flex; gap: 8px; margin-top: 20px; }
.contact-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg-light); display: flex; align-items: center; justify-content: center;
  font-size: 16px; border: 1px solid var(--border); transition: all var(--transition);
}
.contact-social a:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ========== ADVANTAGES GRID (other pages) ========== */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.advantage-card {
  display: flex; align-items: flex-start; gap: 12px; padding: 18px;
  background: #fff; border-radius: var(--radius); border: 1px solid var(--border);
  transition: all 0.3s ease;
}
.advantage-card:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.advantage-card h4 { font-size: 14px; font-weight: 600; margin-bottom: 3px; }
.advantage-card p { font-size: 12px; color: var(--text-light); line-height: 1.5; }

/* OLD support grid compat */
.support-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .btn-outline-header, .btn-primary-header { display: none; }
  .hero-inner { flex-direction: column; }
  .hero-text { max-width: 100%; text-align: center; padding: 48px 0 16px; }
  .hero-buttons { justify-content: center; }
  .hero-right { padding: 0 0 40px; margin: 0; align-items: center; }
  .hero-image-block { display: none; }
  .premium-grid { grid-template-columns: repeat(2, 1fr); }
  .premium-title { font-size: 30px; }
  .product-detail { grid-template-columns: 1fr; }
  .catalog-layout { grid-template-columns: 1fr; }
  .catalog-sidebar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 2000;
    padding: 24px;
    box-shadow: 4px 0 20px rgba(0,0,0,0.15);
    overflow-y: auto;
    max-height: 100vh;
  }
  .catalog-sidebar.open { display: block; }
  .catalog-sidebar .sidebar-header { display: none; }
  .catalog-sidebar .sidebar-mobile-header { display: flex; }
  .filter-toggle-mobile-btn { display: flex; }
  .support-content { grid-template-columns: 1fr; }
  .contacts-map-section { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .header-nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .mobile-menu { display: block; }

  /* Hero mobile */
  .hero h1 { font-size: 32px; }
  .hero-text { padding: 36px 0 12px; }
  .hero-badge { font-size: 10px; padding: 5px 12px; margin-bottom: 14px; }
  .hero-subtitle { font-size: 13px; margin-bottom: 20px; }
  .hero-buttons { flex-direction: row; gap: 10px; }
  .hero-buttons .btn { padding: 10px 20px; font-size: 13px; }
  .hero-right { padding: 0 0 28px; }
  .hero-stats { gap: 0; }
  .hero-stat { padding: 0 14px; }
  .hero-stat-value { font-size: 24px; }
  .hero-stat-value span { font-size: 13px; }
  .hero-stat-label { font-size: 10px; }
  .hero-stat-divider { height: 30px; }

  /* Sections */
  .section { padding: 40px 0; }
  .page-title { font-size: 28px; }
  .section-title { font-size: 22px; }

  /* Catalog mobile */
  .section-header { flex-direction: row; align-items: center; }
  .section-title { font-size: 22px; }
  .section-link { font-size: 13px; white-space: nowrap; }
  .catalog-carousel { padding: 0 28px; }
  .category-card { flex: 0 0 calc(50% - 8px); min-width: 140px; }
  .category-card-img { height: 140px; }
  .category-card h3 { font-size: 12px; }

  /* Premium mobile */
  .section-premium { padding: 48px 0; }
  .premium-header { margin-bottom: 32px; }
  .premium-title { font-size: 26px; }
  .premium-subtitle { font-size: 14px; }
  .premium-grid { grid-template-columns: 1fr; gap: 16px; margin-bottom: 32px; }
  .premium-card { padding: 24px 20px 22px; }
  .premium-card-number { font-size: 36px; top: 12px; right: 16px; }
  .premium-card-icon { width: 44px; height: 44px; border-radius: 10px; margin-bottom: 14px; }
  .premium-card h3 { font-size: 15px; margin-bottom: 6px; }
  .premium-card p { font-size: 13px; }
  .audience-strip { flex-direction: column; gap: 14px; padding-top: 24px; }
  .audience-strip-items { gap: 8px; }
  .audience-chip { padding: 8px 16px; font-size: 12px; }

  /* Promo mobile */
  .promo-grid { grid-template-columns: 1fr; gap: 14px; }
  .promo-card { flex-direction: row; min-height: 140px; }
  .promo-card-img { flex: 0 0 35%; min-height: 140px; }
  .promo-card-text { padding: 18px; }
  .promo-card-text h3 { font-size: 17px; }
  .promo-card-text p { font-size: 12px; margin-bottom: 10px; }

  /* Contact mobile */
  .contact-section { padding: 36px 0; }
  .contact-form-wrapper { flex-direction: column; text-align: center; gap: 20px; }
  .contact-form-text h2 { font-size: 22px; }
  .contact-form-text p { font-size: 13px; }
  .contact-form { flex-direction: column; gap: 10px; }
  .contact-form .form-input,
  .contact-form .form-select,
  .contact-form .btn { width: 100%; }

  /* Footer mobile */
  .footer-new { padding: 36px 0 0; }

  /* Other */
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .wholesale-features { grid-template-columns: repeat(2, 1fr); }
  .wholesale-forms { grid-template-columns: 1fr; }
  .wholesale-form-card:first-child { border-right: none; border-bottom: 1px solid var(--border); }
  .contacts-grid { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr 1fr; }
  .support-cards { grid-template-columns: repeat(2, 1fr); }
  .catalog-nav-arrows { display: none; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 26px; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { text-align: center; }
  .hero-stat { padding: 0 10px; }
  .hero-stat-value { font-size: 20px; }
  .hero-stat-label { font-size: 9px; }

  .section-header { gap: 8px; }
  .section-title { font-size: 20px; }
  .category-card { flex: 0 0 100%; min-width: unset; }
  .category-card-img { height: 160px; }

  .premium-title { font-size: 22px; }
  .premium-grid { grid-template-columns: 1fr; }

  .promo-card { flex-direction: column; min-height: auto; }
  .promo-card-img { flex: unset; min-height: 120px; }

  .products-grid { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .support-cards { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}

/* ========== UTILITIES ========== */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.mt-16 { margin-top: 16px; }
.mt-20 { margin-top: 20px; }
.mt-32 { margin-top: 32px; }
.mb-20 { margin-bottom: 20px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.hidden { display: none !important; }

/* ========== NEW CATALOG SYSTEM ========== */

/* Category Icons Bar */
.category-icons-bar {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 0 16px;
  margin-bottom: 24px;
  scrollbar-width: none;
}
.category-icons-bar::-webkit-scrollbar { display: none; }
.cat-icon-item {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 14px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  background: #fff;
  min-width: 90px;
  text-align: center;
}
.cat-icon-item:hover, .cat-icon-item.active {
  border-color: var(--primary);
  background: var(--primary-light);
}
.cat-icon-item.active { font-weight: 600; }
.cat-icon-item .cat-icon-emoji { font-size: 24px; }
.cat-icon-item .cat-icon-name { font-size: 10px; line-height: 1.2; color: var(--text); }
.cat-icon-item .cat-icon-count { font-size: 9px; color: var(--text-muted); }

/* Active Filters Tags */
.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  min-height: 0;
}
.active-filters:empty { display: none; }
.filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
}
.filter-tag-remove {
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  opacity: 0.7;
  border: none;
  background: none;
  color: inherit;
  padding: 0;
}
.filter-tag-remove:hover { opacity: 1; }
.filter-tag-reset {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: var(--bg-light);
  color: var(--text-muted);
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: all var(--transition);
}
.filter-tag-reset:hover { color: var(--primary); }

/* Catalog Layout — new */
.catalog-layout-new {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

/* Sidebar filters */
.filter-sidebar {
  position: sticky;
  top: 80px;
  align-self: start;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  padding-right: 8px;
  scrollbar-width: thin;
}
.filter-section {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}
.filter-section:last-child { border-bottom: none; }
.filter-section-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.filter-section-title::after {
  content: '';
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(-135deg);
  transition: transform 0.2s;
}
.filter-section.collapsed .filter-section-title::after {
  transform: rotate(45deg);
}
.filter-section.collapsed .filter-section-body { display: none; }
.filter-range-inputs {
  display: flex;
  gap: 8px;
  align-items: center;
}
.filter-range-inputs input {
  width: 100%;
  padding: 7px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 12px;
  font-family: inherit;
}
.filter-range-inputs input:focus {
  outline: none;
  border-color: var(--primary);
}
.filter-range-inputs .range-sep {
  color: var(--text-muted);
  font-size: 12px;
  flex-shrink: 0;
}
.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  font-size: 13px;
  cursor: pointer;
  color: var(--text-light);
  transition: color var(--transition);
}
.filter-checkbox:hover { color: var(--text); }
.filter-checkbox input {
  accent-color: var(--primary);
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}
.filter-checkbox .filter-count {
  color: var(--text-muted);
  font-size: 11px;
  margin-left: auto;
}
.filter-apply-btn {
  width: 100%;
  padding: 8px;
  margin-top: 8px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background var(--transition);
}
.filter-apply-btn:hover { background: var(--primary-dark); }

/* View toggle */
.view-toggle {
  display: flex;
  gap: 4px;
  margin-left: 12px;
}
.view-toggle-btn {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
  padding: 0;
}
.view-toggle-btn:hover, .view-toggle-btn.active {
  border-color: var(--primary);
  color: var(--primary);
}
.view-toggle-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Product card — enhanced */
.product-card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 8px;
}
.product-card-specs .spec-tag {
  display: inline-block;
  background: var(--bg-light);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10px;
  color: var(--text-light);
}
.product-card .availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 500;
  margin-bottom: 6px;
}
.availability-badge.in-stock { color: var(--green); }
.availability-badge.on-order { color: #F57C00; }
.availability-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.product-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 8px;
}
.product-card-actions .btn { font-size: 10px; padding: 7px 4px; text-align: center; min-width: 0; }

/* List view */
.products-grid.list-view {
  grid-template-columns: 1fr;
}
.products-grid.list-view .product-card {
  display: grid;
  grid-template-columns: 200px 1fr;
}
.products-grid.list-view .product-card-image {
  height: auto;
  min-height: 160px;
  border-bottom: none;
  border-right: 1px solid var(--border-light);
}
.products-grid.list-view .product-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Catalog bottom info panel */
.catalog-info-panel {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 40px 0;
  color: #fff;
}
.catalog-info-items {
  display: flex;
  gap: 32px;
}
.catalog-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
}
.catalog-info-item .info-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

/* Catalog subtitle */
.catalog-subtitle {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 24px;
  font-weight: 400;
}

/* Sidebar header */
.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.sidebar-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
}
.sidebar-reset-btn {
  border: none;
  background: none;
  color: var(--primary);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
  transition: color var(--transition);
}
.sidebar-reset-btn:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Product card specs list (vertical with labels) */
.product-card-specs-list {
  margin-bottom: 8px;
}
.product-card-specs-list .spec-row {
  font-size: 12px;
  color: var(--text-light);
  padding: 1px 0;
  line-height: 1.5;
}
.product-card-specs-list .spec-label {
  color: var(--text-muted);
}
.product-card-specs-list .spec-value {
  color: var(--text);
}

/* Product card price row with icons */
.product-card-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.product-card-icons {
  display: flex;
  gap: 4px;
}
.product-card-icons .quick-action-btn {
  width: 30px;
  height: 30px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.2s ease;
  padding: 0;
}
.product-card-icons .quick-action-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.product-card-icons .quick-action-btn.active {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}
.product-card-icons .quick-action-btn.fav-btn.active {
  color: #E53935;
  border-color: #E53935;
  background: rgba(229,57,53,0.08);
}

/* Active filters bar */
.active-filters-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 16px;
}
.active-filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
}
.active-filter-tag .tag-remove {
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  opacity: 0.7;
  border: none;
  background: none;
  color: inherit;
  padding: 0;
}
.active-filter-tag .tag-remove:hover { opacity: 1; }
.reset-all-filters-btn {
  border: none;
  background: none;
  color: var(--text-muted);
  font-size: 12px;
  cursor: pointer;
  font-family: inherit;
  text-decoration: underline;
  padding: 4px 8px;
  transition: color var(--transition);
}
.reset-all-filters-btn:hover { color: var(--primary); }

/* Filter scrollable */
.filter-scrollable {
  max-height: 200px;
  overflow-y: auto;
}

/* Filter group toggle */
.filter-group-title {
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.filter-toggle-arrow {
  font-size: 10px;
  transition: transform 0.2s;
}
.filter-group-title.collapsed .filter-toggle-arrow {
  transform: rotate(-90deg);
}
.filter-group-content.collapsed {
  display: none;
}

/* Filter range separator */
.filter-range-sep {
  color: var(--text-muted);
  flex-shrink: 0;
}

/* Filter input */
.filter-input {
  width: 100%;
  padding: 7px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 12px;
  font-family: inherit;
}
.filter-input:focus {
  outline: none;
  border-color: var(--primary);
}

/* Bottom panel */
.bottom-panel {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 40px 0;
  color: #fff;
}
.bottom-panel-items {
  display: flex;
  gap: 28px;
}
.bottom-panel-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
}
.bottom-panel-item svg {
  opacity: 0.6;
  flex-shrink: 0;
}

/* Catalog empty state */
.catalog-empty {
  text-align: center;
  padding: 60px 20px;
  grid-column: 1 / -1;
}
.catalog-empty-icon {
  font-size: 48px;
  margin-bottom: 12px;
}
.catalog-empty-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}
.catalog-empty-text {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* View toggle button active state */
.view-btn {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
  padding: 0;
}
.view-btn:hover, .view-btn.active {
  border-color: var(--primary);
  color: var(--primary);
}

/* Product card description (hide in grid) */
.product-card-desc { display: none; }

/* Catalog toolbar right section */
.catalog-toolbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Category cards bar (с изображениями) */
.category-cards-bar {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 0 0 20px;
  margin-bottom: 24px;
  scrollbar-width: none;
}
.category-cards-bar::-webkit-scrollbar { display: none; }
.category-card-item {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition);
  background: #fff;
  min-width: 120px;
  max-width: 140px;
  text-align: center;
  overflow: hidden;
  font-family: inherit;
  font-size: inherit;
}
.category-card-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.category-card-item.active {
  border-color: var(--primary);
  background: var(--primary-light);
  box-shadow: 0 0 0 1px var(--primary);
}
.category-card-image {
  width: 100%;
  height: 80px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.category-card-image img {
  max-width: 90%;
  max-height: 70px;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.category-card-item:hover .category-card-image img { transform: scale(1.05); }
.category-card-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
  padding: 8px 8px 2px;
  line-height: 1.2;
}
.category-card-count {
  font-size: 10px;
  color: var(--text-muted);
  padding: 0 8px 8px;
}

/* Quick action buttons on product cards */
.product-card-image { position: relative; }
.product-card-quick-actions {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.product-card:hover .product-card-quick-actions { opacity: 1; }
.product-card-quick-actions .quick-action-btn.active { opacity: 1; }
.product-card .product-card-quick-actions:has(.active) { opacity: 1; }
.quick-action-btn {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.2s ease;
  padding: 0;
  box-shadow: var(--shadow-sm);
}
.quick-action-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.quick-action-btn.active {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}
.quick-action-btn.fav-btn.active {
  color: #E53935;
  border-color: #E53935;
  background: rgba(229,57,53,0.08);
}
.quick-action-btn svg {
  width: 16px;
  height: 16px;
}

/* Mobile filter toggle */
.filter-toggle-btn,
.filter-toggle-mobile-btn {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  margin-bottom: 16px;
}
.filter-toggle-btn svg,
.filter-toggle-mobile-btn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

/* Mobile sidebar header */
.sidebar-mobile-header {
  display: none;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 700;
}
.sidebar-close-btn {
  border: none;
  background: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--text);
  padding: 0;
  line-height: 1;
}

/* Filter overlay */
.filter-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1999;
}
.filter-overlay.show {
  display: block;
}

/* ========== SEARCH OVERLAY ========== */
.search-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 3000;
  align-items: flex-start;
  justify-content: center;
  padding-top: 80px;
}
.search-overlay.open { display: flex; }
.search-container {
  width: 100%;
  max-width: 640px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.search-input-wrap {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-light);
  gap: 12px;
}
.search-input-wrap svg {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px;
  font-family: inherit;
  color: var(--text);
}
.search-input::placeholder { color: #bbb; }
.search-close-btn {
  border: none;
  background: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--text-muted);
  padding: 4px;
}
.search-close-btn:hover { color: var(--text); }
.search-results {
  max-height: 400px;
  overflow-y: auto;
}
.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background var(--transition);
}
.search-result-item:hover { background: var(--bg-light); }
.search-result-img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.search-result-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.search-result-info { flex: 1; }
.search-result-name { font-size: 14px; font-weight: 500; }
.search-result-cat { font-size: 11px; color: var(--text-muted); }
.search-result-price { font-size: 14px; font-weight: 700; color: var(--dark); flex-shrink: 0; }
.search-no-results {
  padding: 24px 20px;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
}

/* ========== COMPARE PAGE ========== */
.compare-table-wrap {
  overflow-x: auto;
  margin-bottom: 40px;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}
.compare-table th, .compare-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-light);
  text-align: left;
  vertical-align: top;
  font-size: 14px;
}
.compare-table th:first-child, .compare-table td:first-child {
  width: 160px;
  font-weight: 600;
  color: var(--text-light);
  background: var(--bg-light);
}
.compare-table th { background: var(--bg-light); font-weight: 700; }
.compare-product-header {
  text-align: center;
  padding: 16px;
}
.compare-product-header img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin: 0 auto 8px;
}
.compare-product-header h4 { font-size: 13px; margin-bottom: 4px; }
.compare-product-header .compare-price { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.compare-remove-btn {
  border: none;
  background: none;
  color: var(--text-muted);
  font-size: 12px;
  cursor: pointer;
  text-decoration: underline;
}
.compare-remove-btn:hover { color: var(--primary); }
.compare-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}
.compare-empty h2 { color: var(--text); margin-bottom: 8px; }

/* ========== FAVORITES PAGE ========== */
.favorites-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}
.favorites-empty h2 { color: var(--text); margin-bottom: 8px; }
.favorites-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

/* ========== NEW FOOTER ========== */
.footer-new {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 0;
}
.footer-grid-new {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1.2fr;
  gap: 28px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-new .logo { margin-bottom: 12px; display: inline-block; font-size: 24px; letter-spacing: 5px; }
.footer-brand-new p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 240px;
}
.footer-col-new h4 {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 14px;
}
.footer-col-new a {
  display: block;
  padding: 3px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-col-new a:hover { color: #fff; }
.footer-contacts-new .footer-phone {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 4px;
}
.footer-contacts-new .footer-email {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-bottom: 12px;
}
.footer-contacts-new .footer-email:hover { color: #fff; }
.footer-contacts-new .footer-schedule,
.footer-contacts-new .footer-address {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
.footer-contacts-new .footer-address { margin-top: 4px; }
.footer-brand-new p em { font-style: italic; }
.footer-bottom-new {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
.footer-bottom-new a {
  color: rgba(255,255,255,0.3);
  font-size: 12px;
}
.footer-bottom-new a:hover { color: rgba(255,255,255,0.6); }
.footer-bottom-links {
  display: flex;
  gap: 16px;
}

/* ========== B2B FORMS ========== */
.b2b-form .form-row-b2b {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.b2b-form .form-group { margin-bottom: 12px; }
.b2b-form .form-group label {
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 4px;
  display: block;
}
.b2b-form .form-group input,
.b2b-form .form-group select,
.b2b-form .form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  font-family: inherit;
}
.b2b-form .form-group input:focus,
.b2b-form .form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--primary-light);
}

/* ========== BREADCRUMBS (Schema.org) ========== */
.breadcrumb-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  padding: 20px 0 8px;
  font-size: 13px;
  color: var(--text-muted);
}
.breadcrumb-list li { display: flex; align-items: center; }
.breadcrumb-list li::after {
  content: '/';
  margin: 0 8px;
  color: #ccc;
}
.breadcrumb-list li:last-child::after { display: none; }
.breadcrumb-list a { color: var(--text-muted); }
.breadcrumb-list a:hover { color: var(--primary); }

/* ========== PRODUCT PAGE — ENHANCED ========== */
.product-action-btns {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.product-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  color: var(--text-light);
  transition: all var(--transition);
}
.product-action-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.product-action-btn.active {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}
.product-action-btn svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.product-documents-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.product-doc-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
  transition: color var(--transition);
  text-decoration: none;
}
.product-doc-link:hover { color: var(--primary); }
.product-doc-link .doc-icon {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--primary);
  margin-right: 10px;
  flex-shrink: 0;
}

/* Accessories section */
.accessories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

/* ========== RESPONSIVE — NEW ========== */
@media (max-width: 1024px) {
  .catalog-layout-new { grid-template-columns: 1fr; }
  .filter-sidebar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 2000;
    padding: 24px;
    box-shadow: 4px 0 20px rgba(0,0,0,0.15);
    overflow-y: auto;
    max-height: 100vh;
  }
  .filter-sidebar.open { display: block; }
  .filter-toggle-btn { display: flex; }
  .filter-sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1999;
  }
  .filter-sidebar-overlay.open { display: block; }
  .filter-sidebar-close {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 700;
  }
  .filter-sidebar-close button {
    border: none;
    background: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text);
  }
  .catalog-info-panel { flex-direction: column; text-align: center; }
  .catalog-info-items { flex-wrap: wrap; justify-content: center; }
  .bottom-panel { flex-direction: column; text-align: center; }
  .bottom-panel-items { flex-wrap: wrap; justify-content: center; }
  .sidebar-header { display: none; }
  .filter-toggle-mobile-btn { display: flex; }
  .footer-grid-new { grid-template-columns: 1fr 1fr; gap: 24px; }
  .header-phone { display: none; }
}
@media (max-width: 768px) {
  .logo-subtitle { display: none; }
  .footer-new { padding: 28px 0 0; }
  .footer-grid-new { grid-template-columns: 1fr 1fr; gap: 20px 16px; padding-bottom: 20px; }
  .footer-brand-new .logo { font-size: 20px; margin-bottom: 6px; }
  .footer-brand-new p { font-size: 12px; line-height: 1.5; }
  .footer-brand-new { grid-column: 1 / -1; display: flex; align-items: center; gap: 16px; }
  .footer-brand-new .footer-social { margin-top: 0; margin-left: auto; }
  .footer-col-new h4 { font-size: 12px; margin-bottom: 8px; }
  .footer-col-new a { font-size: 12px; padding: 2px 0; }
  .footer-contacts-new .footer-phone { font-size: 15px; }
  .footer-contacts-new .footer-email { font-size: 12px; margin-bottom: 6px; }
  .footer-contacts-new .footer-address { font-size: 11px; }
  .footer-bottom-new { flex-direction: column; gap: 6px; text-align: center; padding: 12px 0; }
  .footer-bottom-new span { font-size: 11px; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }
  .footer-bottom-links a { font-size: 11px; }
  .products-grid.list-view .product-card { grid-template-columns: 1fr; }
  .products-grid.list-view .product-card-image {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
    min-height: 160px;
  }
  .compare-table { min-width: 480px; }
  .b2b-form .form-row-b2b { grid-template-columns: 1fr; }
  .search-overlay { padding-top: 20px; }
  .search-container { border-radius: 0; max-width: 100%; }
}
