/* ===== APLASTIA OOD — MAIN STYLES ===== */
:root {
  --primary: #1B2A4A;
  --primary-dark: #0f1a30;
  --primary-light: #2c4a7c;
  --accent: #F97316;
  --accent-dark: #ea6c0a;
  --accent-light: #fb923c;
  --white: #ffffff;
  --off-white: #f8f9fb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --text: #1f2937;
  --text-light: #6b7280;
  --success: #16a34a;
  --error: #dc2626;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.14);
  --radius: 6px;
  --radius-lg: 12px;
  --transition: all 0.2s ease;
  --font: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-mono: 'Courier New', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; }
input, select, textarea { font-family: inherit; }

/* ===== CONTAINER ===== */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-sm { max-width: 860px; margin: 0 auto; padding: 0 24px; }

/* ===== HEADER ===== */
#header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--primary);
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}

.header-top {
  background: var(--primary-dark);
  padding: 6px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.header-top a { color: rgba(255,255,255,0.85); transition: var(--transition); }
.header-top a:hover { color: var(--accent); }
.header-top-left, .header-top-right {
  display: flex; align-items: center; gap: 20px;
}
.header-top-item { display: flex; align-items: center; gap: 6px; }
.header-top-item svg { opacity: 0.7; }

.header-main {
  padding: 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
  letter-spacing: -1px;
  flex-shrink: 0;
}
.logo-text { color: var(--white); }
.logo-name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.2;
}
.logo-tagline {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1;
}

/* NAV */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-item {
  position: relative;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  color: rgba(255,255,255,0.88);
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.12);
}
.nav-link svg { flex-shrink: 0; }

/* DROPDOWN */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: all 0.18s ease;
  z-index: 100;
  overflow: hidden;
}
.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  font-size: 14px;
  color: var(--gray-700);
  transition: var(--transition);
  border-bottom: 1px solid var(--gray-100);
}
.dropdown-item:last-child { border-bottom: none; }
.dropdown-item:hover {
  background: var(--off-white);
  color: var(--primary);
  padding-left: 24px;
}
.dropdown-item .di-icon {
  width: 32px;
  height: 32px;
  background: var(--gray-100);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* HEADER ACTIONS */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.search-btn, .lang-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
  border: none;
}
.search-btn:hover, .lang-btn:hover {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}
.lang-select-wrap {
  position: relative;
}
.lang-select-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  min-width: 130px;
  overflow: hidden;
  display: none;
  z-index: 200;
}
.lang-select-dropdown.open { display: block; }
.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  color: var(--gray-700);
}
.lang-option:hover { background: var(--gray-100); }
.lang-option.active { color: var(--primary); font-weight: 600; }
.lang-flag { font-size: 18px; }

.btn-quote-header {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  background: var(--accent);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  border-radius: 7px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-quote-header:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

/* MOBILE TOGGLE */
.mobile-toggle {
  display: none;
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  align-items: center;
  justify-content: center;
}

/* SEARCH OVERLAY */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 80px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.search-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.search-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 680px;
  margin: 0 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: translateY(-16px);
  transition: transform 0.2s;
}
.search-overlay.active .search-box { transform: translateY(0); }
.search-input-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--gray-200);
}
.search-input-wrap svg { color: var(--gray-400); flex-shrink: 0; }
.search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 18px;
  color: var(--text);
  background: none;
}
.search-close {
  width: 32px; height: 32px;
  border-radius: 6px;
  background: var(--gray-100);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--gray-600);
  flex-shrink: 0;
}
.search-results {
  max-height: 400px;
  overflow-y: auto;
  padding: 8px 0;
}
.search-result-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 20px;
  cursor: pointer;
  transition: var(--transition);
  border-bottom: 1px solid var(--gray-100);
}
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background: var(--gray-50); }
.search-result-img {
  width: 46px; height: 46px;
  border-radius: 6px;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.search-result-img img { width: 100%; height: 100%; object-fit: cover; }
.search-result-name { font-weight: 600; font-size: 14px; color: var(--primary); }
.search-result-cat { font-size: 12px; color: var(--gray-500); margin-top: 2px; }
.search-result-sku { font-size: 12px; color: var(--accent); font-family: var(--font-mono); }
.search-empty {
  padding: 32px 20px;
  text-align: center;
  color: var(--gray-500);
  font-size: 14px;
}
.search-hint {
  padding: 12px 20px;
  font-size: 12px;
  color: var(--gray-400);
  border-top: 1px solid var(--gray-100);
  background: var(--gray-50);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 7px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(249,115,22,0.38);
}
.btn-secondary {
  background: var(--primary);
  color: var(--white);
}
.btn-secondary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(27,42,74,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.8);
}
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-lg { padding: 14px 32px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-ghost {
  background: transparent;
  color: var(--primary);
  padding: 8px 12px;
}
.btn-ghost:hover { background: var(--gray-100); }

/* ===== BADGES ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.badge-success { background: #dcfce7; color: #15803d; }
.badge-warning { background: #fef9c3; color: #a16207; }
.badge-info { background: #dbeafe; color: #1d4ed8; }
.badge-gray { background: var(--gray-100); color: var(--gray-600); }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, #1e3a5f 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(249,115,22,0.12) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 50%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,115,22,0.18);
  border: 1px solid rgba(249,115,22,0.4);
  color: var(--accent-light);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero-title span { color: var(--accent); }
.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 500px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
}
.hero-stat-item {}
.hero-stat-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat-num span { color: var(--accent); }
.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}

/* HERO RIGHT — FLOATING CARDS */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-cards-stack {
  position: relative;
  width: 100%;
  max-width: 420px;
}
.hero-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-bottom: 14px;
  color: var(--white);
  transition: transform 0.3s ease;
}
.hero-card:hover { transform: translateX(6px); }
.hero-card-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--accent-light);
  margin-bottom: 8px;
}
.hero-card-items {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-card-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
}
.hero-card-item::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ===== FEATURES STRIP ===== */
.features-strip {
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-200);
  padding: 0;
}
.features-strip-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.feature-strip-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 20px;
  border-right: 1px solid var(--gray-200);
  transition: var(--transition);
}
.feature-strip-item:last-child { border-right: none; }
.feature-strip-item:hover { background: var(--white); }
.fsi-icon {
  width: 42px; height: 42px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}
.fsi-text {}
.fsi-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}
.fsi-desc {
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 2px;
}

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-alt { background: var(--off-white); }
.section-sm { padding: 48px 0; }
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 52px;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-label::before, .section-label::after {
  content: '';
  height: 1px;
  width: 28px;
  background: var(--accent);
  opacity: 0.5;
}
.section-title {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  letter-spacing: -0.3px;
}
.section-desc {
  font-size: 16px;
  color: var(--gray-500);
  margin-top: 14px;
  line-height: 1.7;
}

/* ===== CATEGORY CARDS ===== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cat-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  overflow: hidden;
}
.cat-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.cat-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.cat-card:hover::before { transform: scaleX(1); }
.cat-icon {
  width: 64px; height: 64px;
  border-radius: 14px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--white);
  transition: var(--transition);
}
.cat-card:hover .cat-icon { background: var(--accent); transform: scale(1.08); }
.cat-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.cat-count {
  font-size: 13px;
  color: var(--gray-400);
  margin-bottom: 14px;
}
.cat-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* ===== PRODUCT GRID ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.product-img {
  aspect-ratio: 4/3;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--gray-300);
  font-size: 12px;
  text-align: center;
  padding: 16px;
}
.product-badge-wrap {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.product-actions-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: linear-gradient(transparent, rgba(0,0,0,0.5));
  opacity: 0;
  transition: var(--transition);
  display: flex;
  gap: 8px;
}
.product-card:hover .product-actions-overlay { opacity: 1; }
.product-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-category {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--accent);
  margin-bottom: 6px;
}
.product-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.35;
  margin-bottom: 6px;
  flex: 1;
}
.product-name a { color: inherit; }
.product-name a:hover { color: var(--accent); }
.product-sku {
  font-size: 12px;
  color: var(--gray-400);
  font-family: var(--font-mono);
  margin-bottom: 10px;
}
.product-brand {
  font-size: 12px;
  color: var(--gray-500);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-top: 1px solid var(--gray-100);
  background: var(--gray-50);
}
.product-price {
  font-size: 16px;
  font-weight: 800;
  color: var(--primary);
}
.product-price.on-request {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-500);
}

/* ===== CATALOG PAGE ===== */
.catalog-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: start;
}
.filter-sidebar {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: sticky;
  top: 90px;
}
.filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
}
.filter-section {
  padding: 18px 20px;
  border-bottom: 1px solid var(--gray-100);
}
.filter-section-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--gray-500);
  margin-bottom: 12px;
}
.filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  cursor: pointer;
  font-size: 14px;
  color: var(--gray-700);
  transition: var(--transition);
}
.filter-option:hover { color: var(--primary); }
.filter-option input[type="checkbox"] {
  width: 16px; height: 16px;
  border: 2px solid var(--gray-300);
  border-radius: 3px;
  cursor: pointer;
  accent-color: var(--primary);
}
.filter-count {
  margin-left: auto;
  font-size: 11px;
  background: var(--gray-100);
  color: var(--gray-500);
  padding: 2px 7px;
  border-radius: 100px;
}
.filter-search {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  font-size: 13px;
  outline: none;
  transition: var(--transition);
  margin-bottom: 10px;
}
.filter-search:focus { border-color: var(--primary); }
.filter-clear-btn {
  display: block;
  width: calc(100% - 40px);
  margin: 0 20px 16px;
  text-align: center;
  font-size: 13px;
  color: var(--accent);
  cursor: pointer;
  font-weight: 600;
  padding: 8px;
  border-radius: 6px;
  transition: var(--transition);
}
.filter-clear-btn:hover { background: #fff3e0; }

.catalog-main {}
.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}
.catalog-count { font-size: 14px; color: var(--gray-500); }
.catalog-count strong { color: var(--primary); }
.catalog-sort {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sort-select {
  padding: 8px 14px;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  cursor: pointer;
  background: var(--white);
  color: var(--text);
}
.sort-select:focus { border-color: var(--primary); }
.view-toggle { display: flex; gap: 4px; }
.view-btn {
  width: 36px; height: 36px;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  cursor: pointer;
  transition: var(--transition);
}
.view-btn.active, .view-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--off-white);
}

/* ===== PRODUCT DETAIL ===== */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
}
.product-gallery {}
.product-main-img {
  aspect-ratio: 4/3;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-200);
  margin-bottom: 12px;
}
.product-main-img img { width: 100%; height: 100%; object-fit: contain; padding: 20px; }
.product-thumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.product-thumb {
  width: 72px; height: 72px;
  border-radius: 8px;
  border: 2px solid var(--gray-200);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-thumb.active, .product-thumb:hover { border-color: var(--primary); }
.product-info {}
.product-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gray-400);
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.product-breadcrumb a { color: var(--primary); }
.product-breadcrumb a:hover { color: var(--accent); }
.product-breadcrumb span { color: var(--gray-300); }
.product-detail-cat {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 10px;
}
.product-detail-name {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.25;
  margin-bottom: 14px;
}
.product-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}
.product-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gray-600);
}
.product-meta-item strong { color: var(--primary); }
.product-detail-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 18px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 24px;
}
.product-price-main {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
}
.product-price-note {
  font-size: 13px;
  color: var(--gray-400);
}
.product-price-request {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-cta-row {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.product-cta-row .btn { flex: 1; min-width: 140px; }
.product-spec-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.product-spec-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 14px;
  background: var(--off-white);
  border-radius: 7px;
  font-size: 13px;
}
.spec-label { color: var(--gray-500); font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; }
.spec-value { font-weight: 600; color: var(--primary); }

/* ===== TABS ===== */
.tabs { margin-top: 60px; }
.tab-list {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--gray-200);
  overflow-x: auto;
}
.tab-btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-500);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.tab-btn:hover { color: var(--primary); }
.tab-btn.active {
  color: var(--primary);
  border-bottom-color: var(--accent);
}
.tab-content { padding: 32px 0; display: none; }
.tab-content.active { display: block; }

/* ===== FORMS ===== */
.form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  box-shadow: var(--shadow-sm);
}
.form-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
}
.form-subtitle {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 28px;
  line-height: 1.6;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group.full-width { grid-column: 1 / -1; }
label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
}
label .required { color: var(--error); margin-left: 2px; }
input[type="text"], input[type="email"], input[type="tel"],
input[type="number"], select, textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: 7px;
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27,42,74,0.08);
}
input.error, select.error, textarea.error {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(220,38,38,0.08);
}
textarea { resize: vertical; min-height: 100px; }
.form-error { font-size: 12px; color: var(--error); display: none; }
.form-error.show { display: block; }
.form-note {
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 4px;
}
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 4px 0;
  cursor: pointer;
}
.checkbox-group input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--primary);
}
.checkbox-label {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.5;
}
.checkbox-label a { color: var(--primary); text-decoration: underline; }

.file-upload-area {
  border: 2px dashed var(--gray-200);
  border-radius: 10px;
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: var(--off-white);
}
.file-upload-area:hover, .file-upload-area.drag-over {
  border-color: var(--primary);
  background: rgba(27,42,74,0.04);
}
.file-upload-area p { font-size: 14px; color: var(--gray-500); margin-top: 8px; }
.file-upload-area small { font-size: 12px; color: var(--gray-400); }
.file-upload-area input { display: none; }

.form-success {
  display: none;
  background: #dcfce7;
  border: 1px solid #86efac;
  border-radius: 10px;
  padding: 20px 24px;
  text-align: center;
  margin-top: 20px;
}
.form-success.show { display: block; }
.form-success-icon { font-size: 36px; margin-bottom: 12px; }
.form-success h3 { color: var(--success); font-size: 18px; margin-bottom: 6px; }
.form-success p { font-size: 14px; color: #15803d; }

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 52px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 50%, rgba(249,115,22,0.1) 0%, transparent 60%);
}
.page-hero-content { position: relative; }
.page-hero-badge {
  display: inline-block;
  background: rgba(249,115,22,0.2);
  border: 1px solid rgba(249,115,22,0.4);
  color: var(--accent-light);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.page-hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 14px;
}
.page-hero p {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  line-height: 1.7;
}
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.breadcrumbs a { color: rgba(255,255,255,0.7); }
.breadcrumbs a:hover { color: var(--white); }
.breadcrumbs span { color: rgba(255,255,255,0.3); }

/* ===== ABOUT PAGE ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img-block {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--accent);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  color: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}
.about-img-badge-num {
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}
.about-img-badge-text { font-size: 12px; margin-top: 4px; opacity: 0.9; }
.about-text h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 18px;
  line-height: 1.2;
}
.about-text p {
  font-size: 15px;
  color: var(--gray-600);
  margin-bottom: 16px;
  line-height: 1.8;
}
.about-legal-card {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin-top: 28px;
}
.about-legal-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--gray-500);
  margin-bottom: 14px;
}
.about-legal-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 6px 0;
  font-size: 14px;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-200);
}
.about-legal-row:last-child { border-bottom: none; }
.about-legal-key { font-weight: 600; color: var(--primary); min-width: 120px; flex-shrink: 0; }

/* WHY US */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.why-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.why-card:hover::after { transform: scaleX(1); }
.why-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: var(--off-white);
  color: var(--primary);
  font-size: 24px;
}
.why-title { font-size: 17px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.why-desc { font-size: 14px; color: var(--gray-500); line-height: 1.7; }

/* ===== CONTACTS ===== */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}
.contact-info {}
.contact-info-card {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  color: var(--white);
  margin-bottom: 20px;
}
.contact-info-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--white);
}
.contact-info-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
}
.contact-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-item:last-child { border-bottom: none; }
.contact-item-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-light);
}
.contact-item-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 3px;
}
.contact-item-value {
  font-size: 14px;
  color: var(--white);
  font-weight: 500;
}
.contact-item-value a { color: var(--accent-light); }
.contact-socials {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.contact-socials h4 { font-size: 14px; font-weight: 700; color: var(--primary); margin-bottom: 14px; }
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}
.social-link.whatsapp { background: #25d366; color: var(--white); }
.social-link.telegram { background: #0088cc; color: var(--white); }
.social-link.email { background: var(--primary); color: var(--white); }
.social-link:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

/* ===== LEGAL PAGES ===== */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
}
.legal-content h1 {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
}
.legal-content .last-updated {
  font-size: 13px;
  color: var(--gray-400);
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-200);
}
.legal-content h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin: 36px 0 12px;
}
.legal-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-700);
  margin: 24px 0 8px;
}
.legal-content p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 14px;
}
.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 14px;
}
.legal-content ul li {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.8;
  padding: 2px 0;
}
.legal-highlight {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.7;
}

/* ===== FOOTER ===== */
#footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.75);
  padding-top: 72px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-about {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  text-decoration: none;
}
.footer-logo-icon {
  width: 40px; height: 40px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  color: var(--white);
}
.footer-logo-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
}
.footer-about p {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 280px;
}
.footer-legal-info {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
}
.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-link {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-link:hover { color: var(--accent-light); padding-left: 4px; }
.footer-link::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0;
  transition: var(--transition);
  flex-shrink: 0;
}
.footer-link:hover::before { opacity: 1; }
.footer-contact-item {
  display: flex;
  gap: 10px;
  font-size: 13px;
  margin-bottom: 12px;
  align-items: flex-start;
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--accent); }
.footer-contact-item a { color: rgba(255,255,255,0.75); }
.footer-contact-item a:hover { color: var(--accent-light); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.8); }

/* ===== FLOATING BUTTONS ===== */
.floating-btns {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 500;
}
.floating-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transition: var(--transition);
  font-size: 22px;
  text-decoration: none;
  cursor: pointer;
  border: none;
}
.floating-btn:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(0,0,0,0.22); }
.floating-whatsapp { background: #25d366; color: var(--white); }
.floating-telegram { background: #0088cc; color: var(--white); }
.floating-top {
  background: var(--primary);
  color: var(--white);
  display: none;
}
.floating-top.show { display: flex; }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary-dark);
  color: rgba(255,255,255,0.9);
  padding: 18px 0;
  z-index: 1000;
  border-top: 3px solid var(--accent);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text { flex: 1; font-size: 14px; line-height: 1.6; }
.cookie-text a { color: var(--accent-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }

/* ===== NOTIFICATION ===== */
.notification {
  position: fixed;
  top: 88px;
  right: 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  padding: 14px 18px;
  max-width: 360px;
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transform: translateX(120%);
  transition: transform 0.3s ease;
}
.notification.show { transform: translateX(0); }
.notification-icon {
  font-size: 22px;
  flex-shrink: 0;
}
.notification-text {}
.notification-title { font-weight: 700; font-size: 14px; color: var(--primary); margin-bottom: 3px; }
.notification-msg { font-size: 13px; color: var(--gray-500); line-height: 1.5; }
.notification-close {
  position: absolute;
  top: 10px; right: 10px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray-400);
  font-size: 18px;
}

/* ===== ADMIN PANEL ===== */
.admin-layout {
  display: flex;
  min-height: 100vh;
  background: var(--gray-100);
}
.admin-sidebar {
  width: 240px;
  background: var(--primary-dark);
  color: var(--white);
  flex-shrink: 0;
  position: fixed;
  top: 0; bottom: 0;
  overflow-y: auto;
  z-index: 100;
}
.admin-sidebar-header {
  padding: 22px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.admin-nav {}
.admin-nav-section-title {
  padding: 14px 20px 6px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255,255,255,0.35);
  font-weight: 700;
}
.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  cursor: pointer;
  border-left: 3px solid transparent;
}
.admin-nav-item:hover, .admin-nav-item.active {
  color: var(--white);
  background: rgba(255,255,255,0.07);
  border-left-color: var(--accent);
}
.admin-nav-item svg { flex-shrink: 0; }
.admin-main {
  margin-left: 240px;
  flex: 1;
  min-width: 0;
}
.admin-topbar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 50;
}
.admin-topbar h1 { font-size: 20px; font-weight: 700; color: var(--primary); }
.admin-content { padding: 28px; }
.admin-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
}
.admin-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--gray-100);
}
.admin-card-title { font-weight: 700; color: var(--primary); }
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.admin-table th {
  padding: 12px 16px;
  text-align: left;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--gray-500);
  background: var(--gray-50);
  font-weight: 700;
  border-bottom: 1px solid var(--gray-200);
}
.admin-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700);
}
.admin-table tr:hover td { background: var(--gray-50); }
.admin-table tr:last-child td { border-bottom: none; }
.admin-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}
.admin-stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.admin-stat-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.admin-stat-num { font-size: 26px; font-weight: 800; color: var(--primary); line-height: 1; }
.admin-stat-label { font-size: 13px; color: var(--gray-500); margin-top: 4px; }
.admin-section { display: none; }
.admin-section.active { display: block; }
.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  padding: 20px;
}
.admin-login-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 42px 44px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-lg);
}

/* ===== PAGINATION ===== */
.pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.page-item {
  width: 40px; height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-600);
}
.page-item:hover, .page-item.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.page-item.disabled { opacity: 0.4; pointer-events: none; }

/* ===== MISC ===== */
.divider { height: 1px; background: var(--gray-200); margin: 40px 0; }
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }
.text-muted { color: var(--gray-500); }
.mt-6 { margin-top: 6px; }
.mt-12 { margin-top: 12px; }
.mt-20 { margin-top: 20px; }
.mt-32 { margin-top: 32px; }
.mb-20 { margin-bottom: 20px; }
.gap-8 { gap: 8px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.w-100 { width: 100%; }
.hidden { display: none !important; }
.visible { display: block !important; }

/* Skeleton loader */
.skeleton {
  background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%);
  background-size: 200% 100%;
  animation: skeleton 1.5s infinite;
  border-radius: 4px;
}
@keyframes skeleton {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .features-strip-inner { grid-template-columns: repeat(3, 1fr); }
  .feature-strip-item:nth-child(4), .feature-strip-item:nth-child(5) { border-top: 1px solid var(--gray-200); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .admin-stat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .contacts-grid { grid-template-columns: 1fr; }
  .catalog-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; }
  .product-detail { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-menu, .btn-quote-header { display: none; }
  .mobile-toggle { display: flex; }
}

@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .section { padding: 52px 0; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 24px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .features-strip-inner { grid-template-columns: 1fr 1fr; }
  .feature-strip-item:nth-child(even) { border-right: none; }
  .header-top { display: none; }
  .product-spec-list { grid-template-columns: 1fr; }
  .admin-main { margin-left: 0; }
  .admin-sidebar { display: none; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
  .features-strip-inner { grid-template-columns: 1fr; }
  .feature-strip-item { border-right: none; }
  .hero-cta { flex-direction: column; }
  .hero-stats { gap: 20px; }
  .floating-btns { bottom: 16px; right: 16px; }
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 70px; left: 0; right: 0; bottom: 0;
  background: var(--primary-dark);
  z-index: 999;
  padding: 20px;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-nav-item {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-weight: 500;
}
.mobile-nav-item.active, .mobile-nav-item:hover { color: var(--accent-light); }
.mobile-nav-sub {
  padding: 4px 0 4px 16px;
}
.mobile-nav-sub-item {
  display: block;
  padding: 10px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}
.mobile-nav-sub-item:hover { color: rgba(255,255,255,0.9); }

/* ===== PHOTO ENHANCEMENTS ===== */
.cat-card:hover img { transform: scale(1.05); }
.product-img img { transition: transform 0.35s ease; }
.product-card:hover .product-img img { transform: scale(1.04); }

/* Hero background image parallax feel */
.hero { background-attachment: fixed; }

/* Page hero with photo option */
.page-hero-photo {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

/* About image overlay gradient on hover */
.about-img-block:hover img { transform: scale(1.02); transition: transform 0.5s ease; }
.about-img-main { overflow: hidden; }

/* Warehouse / team banner strip */
.photo-banner {
  height: 320px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.photo-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,42,74,0.75) 0%, rgba(27,42,74,0.45) 100%);
}
.photo-banner-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
}
