/* ============================================
   MOTORLUB — Global Stylesheet
   ============================================ */

:root {
  --bg: #0b0b0b;
  --surface: #141414;
  --surface2: #1a1a1a;
  --surface3: #222;
  --border: #282828;
  --border2: #333;
  --accent: #c8a84b;
  --accent2: #a88930;
  --accent-glow: rgba(200,168,75,0.15);
  --text: #ececec;
  --text-muted: #7a7a7a;
  --text-dim: #555;
  --red: #d94f4f;
  --green: #4caf72;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent2); border-radius: 2px; }

/* ── LOADER ── */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 24px;
  transition: opacity 0.5s ease;
}
#loader.hidden { opacity: 0; pointer-events: none; }

.loader-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px; letter-spacing: 6px;
  color: var(--text);
}
.loader-logo span { color: var(--accent); }

.loader-bar {
  width: 200px; height: 2px;
  background: var(--border);
}
.loader-fill {
  height: 100%;
  background: var(--accent);
  width: 0%;
  animation: loadFill 1.2s ease forwards;
}
@keyframes loadFill { to { width: 100%; } }

/* ── CONTAINER ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }

/* ── NAV ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 68px;
  background: rgba(11,11,11,0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  transition: all 0.3s;
}
#navbar.scrolled {
  height: 58px;
  background: rgba(11,11,11,0.99);
  border-color: var(--accent2);
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px; letter-spacing: 5px;
  color: var(--accent); text-decoration: none;
}
.logo span { color: var(--text); }

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  color: var(--text-muted); text-decoration: none;
  font-size: 12px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0; right: 0; height: 1px;
  background: var(--accent); transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-right { display: flex; align-items: center; gap: 16px; }

.nav-phone {
  font-family: 'Share Tech Mono', monospace;
  font-size: 13px; color: var(--accent);
  text-decoration: none; padding: 8px 18px;
  border: 1px solid var(--accent2);
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-phone:hover { background: var(--accent); color: var(--bg); }

.burger {
  display: none; flex-direction: column;
  gap: 5px; background: none; border: none;
  cursor: pointer; padding: 4px;
}
.burger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); transition: all 0.3s;
}

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none; flex-direction: column;
  position: fixed; top: 68px; left: 0; right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  z-index: 499; padding: 20px 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 14px 40px;
  color: var(--text); text-decoration: none;
  font-size: 16px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu .mm-phone {
  color: var(--accent); margin-top: 8px;
  border: none; font-family: 'Share Tech Mono', monospace;
}

/* ── BUTTONS ── */
.btn-gold {
  display: inline-block;
  background: var(--accent); color: var(--bg);
  padding: 14px 32px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700; font-size: 13px;
  letter-spacing: 2.5px; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
  transition: all 0.2s;
}
.btn-gold:hover { background: #dfc05a; transform: translateY(-2px); }

.btn-ghost {
  display: inline-block;
  border: 1px solid var(--border2); color: var(--text);
  padding: 14px 32px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600; font-size: 13px;
  letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  background: transparent;
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-gold-lg {
  display: inline-block;
  background: var(--accent); color: var(--bg);
  padding: 18px 48px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px; letter-spacing: 3px;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.2s;
}
.btn-gold-lg:hover { background: #dfc05a; transform: scale(1.03); }

/* ── HERO ── */
.hero {
  min-height: 100vh; padding-top: 68px;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}

.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(255,255,255,0.018) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(255,255,255,0.018) 60px);
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 2;
  padding: 80px 40px 80px;
  max-width: 700px;
  animation: heroIn 0.8s ease 1.4s both;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px; letter-spacing: 3px;
  color: var(--text-muted); margin-bottom: 24px;
}
.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 10vw, 130px);
  line-height: 0.88; letter-spacing: 2px;
  margin-bottom: 28px;
}

.gold-text { color: var(--accent); }

.hero-subtitle {
  font-size: 17px; color: var(--text-muted);
  line-height: 1.8; margin-bottom: 40px;
  max-width: 520px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-brands {
  display: flex; gap: 20px; flex-wrap: wrap;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.hero-brands span {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px; color: var(--text-dim);
  letter-spacing: 2px; text-transform: uppercase;
  transition: color 0.2s;
}
.hero-brands span:hover { color: var(--accent); }

.hero-visual {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 50%; display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}

.hero-oil-drop {
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(200,168,75,0.12), transparent 70%);
  border: 1px solid rgba(200,168,75,0.1);
  animation: floatDrop 6s ease-in-out infinite;
}

.hero-circle {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(200,168,75,0.08);
}
.hero-circle.c1 { width: 400px; height: 400px; animation: rotateSlow 20s linear infinite; }
.hero-circle.c2 { width: 520px; height: 520px; animation: rotateSlow 30s linear infinite reverse; }
.hero-circle.c3 { width: 640px; height: 640px; animation: rotateSlow 45s linear infinite; }

@keyframes floatDrop {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.04); }
}
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.viscosity-label {
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 100px; color: rgba(200,168,75,0.05);
  letter-spacing: 4px;
}

/* ── STATS BAR ── */
.stats-bar {
  display: flex; align-items: center; justify-content: center;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  display: flex; flex-direction: column;
  align-items: center; gap: 4px;
  padding: 0 60px; text-align: center;
}
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px; color: var(--accent); line-height: 1;
  display: inline;
}
.stat-plus {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px; color: var(--accent);
  display: inline; line-height: 1;
}
.stat-lbl {
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-muted);
}
.stat-divider {
  width: 1px; height: 60px;
  background: var(--border);
}

/* ── SECTION HEADS ── */
.section-head {
  margin-bottom: 48px;
  display: flex; flex-direction: column; gap: 8px;
}
.section-head h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px; letter-spacing: 2px; line-height: 1;
}
.section-eyebrow {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px; letter-spacing: 3px;
  color: var(--accent); text-transform: uppercase;
}

/* ── CATEGORIES ── */
.categories-section { padding: 100px 0; }
.categories-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 3px;
}

.cat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px;
  display: flex; align-items: center; gap: 20px;
  text-decoration: none; color: var(--text);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.cat-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--accent); transform: scaleX(0);
  transition: transform 0.3s;
}
.cat-card:hover { background: var(--surface2); border-color: var(--border2); transform: translateY(-2px); }
.cat-card:hover::before { transform: scaleX(1); }
.cat-card.cat-featured { grid-column: 1; grid-row: 1/3; flex-direction: column; justify-content: flex-end; padding: 40px; min-height: 280px; background: linear-gradient(135deg, #141414, #1e1e1e); }
.cat-card.cat-featured .cat-icon { font-size: 56px; }
.cat-card.cat-featured .cat-name { font-size: 24px; font-weight: 700; }

.cat-icon { font-size: 36px; flex-shrink: 0; }
.cat-name { font-size: 17px; font-weight: 700; letter-spacing: 0.5px; }
.cat-count { font-size: 12px; color: var(--text-muted); letter-spacing: 1px; margin-top: 2px; }
.cat-arrow { margin-left: auto; font-size: 20px; color: var(--accent); opacity: 0; transition: all 0.3s; transform: translateX(-10px); }
.cat-card:hover .cat-arrow { opacity: 1; transform: translateX(0); }

/* ── FEATURED PRODUCTS ── */
.featured-section { padding: 80px 0; }
.section-head { position: relative; }
.view-all-link {
  position: absolute; right: 0; bottom: 0;
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px; color: var(--accent);
  text-decoration: none; letter-spacing: 2px;
  transition: opacity 0.2s;
}
.view-all-link:hover { opacity: 0.7; }

/* ── PRODUCT CARD ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 3px;
}
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  transition: all 0.3s;
}
.product-card:hover { border-color: var(--border2); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.product-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transform: scaleX(0); transition: transform 0.3s;
}
.product-card:hover::before { transform: scaleX(1); }

.product-img-wrap {
  width: 100%; height: 210px;
  background: var(--surface2);
  overflow: hidden; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.product-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(30%) brightness(0.9);
  transition: all 0.4s;
}
.product-card:hover .product-img-wrap img {
  filter: grayscale(0%) brightness(1.05);
  transform: scale(1.06);
}
.product-no-img {
  font-size: 72px; opacity: 0.15;
  filter: grayscale(1);
}

.product-badge {
  position: absolute; top: 12px; left: 12px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 9px; letter-spacing: 2px;
  padding: 4px 10px; font-weight: 700;
  text-transform: uppercase;
}
.badge-hit { background: var(--accent); color: var(--bg); }
.badge-new { background: var(--green); color: #fff; }
.badge-sale { background: var(--red); color: #fff; }

.product-body { padding: 20px 22px; flex: 1; display: flex; flex-direction: column; }
.product-brand {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px; letter-spacing: 3px;
  color: var(--accent); margin-bottom: 6px;
}
.product-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 21px; letter-spacing: 1px;
  line-height: 1.1; margin-bottom: 10px;
}
.product-desc {
  font-size: 13px; color: var(--text-muted);
  line-height: 1.65; margin-bottom: 12px; flex: 1;
}
.product-specs {
  display: flex; flex-wrap: wrap; gap: 5px;
  margin-bottom: 16px;
}
.spec-tag {
  background: var(--surface2); border: 1px solid var(--border);
  color: var(--text-muted); font-size: 9px;
  letter-spacing: 1px; padding: 3px 8px;
  font-family: 'Share Tech Mono', monospace;
}
.product-footer {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--border); padding-top: 14px; margin-top: auto;
}
.product-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px; color: var(--accent); line-height: 1;
}
.product-price-unit {
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px; color: var(--text-muted);
}
.btn-order {
  background: transparent; border: 1px solid var(--accent);
  color: var(--accent); padding: 9px 18px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700; font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; transition: all 0.2s;
}
.btn-order:hover { background: var(--accent); color: var(--bg); }

/* ── WHY US ── */
.why-section { padding: 100px 0; background: var(--surface); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-text h2 { font-family: 'Bebas Neue', sans-serif; font-size: 52px; letter-spacing: 2px; line-height: 1; margin-bottom: 20px; }
.why-text p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 32px; }
.why-list { display: flex; flex-direction: column; gap: 0; }
.why-item { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--border); }
.why-icon { width: 38px; height: 38px; background: rgba(200,168,75,0.1); border: 1px solid var(--accent2); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.why-item strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 3px; }
.why-item p { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin: 0; }

.why-visual { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.why-card { background: var(--surface2); border: 1px solid var(--border); padding: 28px 24px; transition: all 0.3s; }
.why-card:hover { border-color: var(--accent2); transform: translateY(-4px); }
.wc-icon { font-size: 28px; margin-bottom: 12px; }
.wc-title { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.wc-sub { font-size: 12px; color: var(--text-muted); }
.why-big-num {
  position: absolute; bottom: -20px; right: -20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 120px; color: rgba(200,168,75,0.04);
  line-height: 1; pointer-events: none;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, #1a1400, #0b0b0b);
  border-top: 1px solid var(--accent2);
  border-bottom: 1px solid var(--accent2);
  padding: 60px 40px;
}
.cta-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.cta-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px; letter-spacing: 2px;
}
.cta-text p { font-size: 15px; color: var(--text-muted); margin-top: 8px; }

/* ── FOOTER ── */
footer { background: var(--surface); border-top: 1px solid var(--border); padding: 60px 40px 0; }
.footer-top { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 2fr; gap: 60px; padding-bottom: 48px; }
.footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 26px; letter-spacing: 5px; color: var(--accent); margin-bottom: 16px; }
.footer-logo span { color: var(--text); }
.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.7; max-width: 300px; }
.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.fn-col { display: flex; flex-direction: column; gap: 10px; }
.fn-title { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); font-family: 'Share Tech Mono', monospace; margin-bottom: 6px; }
.fn-col a { color: var(--text-muted); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.fn-col a:hover { color: var(--accent); }
.footer-bottom { max-width: 1280px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 20px 0; border-top: 1px solid var(--border); font-size: 12px; color: var(--text-dim); }

/* ── MODAL ── */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,0.87);
  backdrop-filter: blur(6px);
  align-items: center; justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--surface); border: 1px solid var(--border);
  max-width: 460px; width: 90%; position: relative;
  animation: modalSlideIn 0.3s ease;
}
@keyframes modalSlideIn {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute; top: 14px; right: 16px;
  background: none; border: none; color: var(--text-muted);
  font-size: 22px; cursor: pointer; transition: color 0.2s; z-index: 1;
}
.modal-close:hover { color: var(--accent); }
.modal-header {
  padding: 36px 36px 24px;
  border-bottom: 1px solid var(--border);
}
.modal-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px; letter-spacing: 3px;
}
.modal-subtitle {
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px; color: var(--accent); letter-spacing: 2px; margin-top: 4px;
}
.modal-body { padding: 28px 36px 36px; }
.modal-info-box {
  background: var(--surface2); border: 1px solid var(--border);
  padding: 14px 18px; font-size: 13px; color: var(--text-muted);
  line-height: 1.6; margin-bottom: 24px;
}
.modal-phone-wrap { text-align: center; margin-bottom: 24px; }
.mph-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.mph-number {
  display: block; font-family: 'Bebas Neue', sans-serif;
  font-size: 38px; color: var(--accent); text-decoration: none; letter-spacing: 3px;
  transition: color 0.2s;
}
.mph-number:hover { color: #dfc05a; }
.btn-call-modal {
  display: block; width: 100%;
  background: var(--accent); color: var(--bg);
  padding: 16px; text-align: center;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700; font-size: 14px;
  letter-spacing: 2.5px; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  transition: background 0.2s;
}
.btn-call-modal:hover { background: #dfc05a; }
.modal-messengers {
  display: flex; gap: 16px; align-items: center;
  margin-top: 16px; justify-content: center;
  font-size: 13px; color: var(--text-muted);
}
.modal-messengers a {
  color: var(--accent); text-decoration: none;
  font-weight: 700; transition: opacity 0.2s;
}
.modal-messengers a:hover { opacity: 0.7; }

/* ── CATALOG PAGE ── */
.page-hero {
  padding: 120px 40px 60px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #111 0%, var(--bg) 100%);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(255,255,255,0.012) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(255,255,255,0.012) 60px);
}
.page-hero-content { position: relative; max-width: 1280px; margin: 0 auto; }
.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px; letter-spacing: 3px; line-height: 0.9;
  margin-bottom: 16px;
}
.page-hero p { font-size: 16px; color: var(--text-muted); max-width: 600px; line-height: 1.7; }

.catalog-layout {
  display: grid; grid-template-columns: 280px 1fr;
  gap: 0; max-width: 1280px; margin: 0 auto;
  min-height: calc(100vh - 300px);
}

/* ── SIDEBAR ── */
.sidebar {
  background: var(--surface);
  border-right: 1px solid var(--border);
  padding: 32px 0;
  position: sticky; top: 68px;
  height: calc(100vh - 68px);
  overflow-y: auto;
}
.sidebar::-webkit-scrollbar { width: 3px; }

.sb-section { padding: 0 24px; margin-bottom: 32px; }
.sb-title {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--text-dim);
  margin-bottom: 12px; padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.sb-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px; cursor: pointer;
  color: var(--text-muted); font-size: 14px;
  font-weight: 500; letter-spacing: 0.5px;
  transition: all 0.2s; border-radius: 2px;
  border: 1px solid transparent; margin-bottom: 2px;
}
.sb-item:hover { color: var(--text); background: var(--surface2); }
.sb-item.active { color: var(--accent); border-color: var(--accent2); background: var(--accent-glow); }
.sb-count {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px; color: var(--text-dim);
  background: var(--surface2); padding: 2px 6px;
}
.sb-item.active .sb-count { color: var(--accent); background: rgba(200,168,75,0.15); }

.sb-search {
  display: flex; align-items: center;
  background: var(--surface2); border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.sb-search:focus-within { border-color: var(--accent2); }
.sb-search input {
  flex: 1; background: none; border: none;
  padding: 10px 14px; color: var(--text);
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px; outline: none;
}
.sb-search input::placeholder { color: var(--text-dim); }
.sb-search button {
  background: none; border: none; padding: 10px 14px;
  color: var(--text-muted); cursor: pointer; font-size: 16px;
  transition: color 0.2s;
}
.sb-search button:hover { color: var(--accent); }

/* Price range */
.price-inputs { display: flex; gap: 8px; align-items: center; }
.price-in {
  flex: 1; background: var(--surface2);
  border: 1px solid var(--border); color: var(--text);
  padding: 8px 10px; font-family: 'Share Tech Mono', monospace;
  font-size: 13px; outline: none; width: 100%;
  transition: border-color 0.2s;
}
.price-in:focus { border-color: var(--accent2); }
.price-sep { color: var(--text-dim); font-size: 12px; }

.apply-filter {
  width: 100%; margin-top: 10px;
  background: var(--accent); color: var(--bg);
  border: none; padding: 10px;
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; transition: background 0.2s;
}
.apply-filter:hover { background: #dfc05a; }

/* ── CATALOG MAIN ── */
.catalog-main { padding: 32px 40px; }
.catalog-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 28px; padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap; gap: 16px;
}
.ct-left { font-size: 13px; color: var(--text-muted); }
.ct-left strong { color: var(--accent); font-family: 'Share Tech Mono', monospace; }
.ct-right { display: flex; gap: 8px; }
.sort-btn {
  background: var(--surface2); border: 1px solid var(--border);
  color: var(--text-muted); padding: 8px 16px;
  font-family: 'Rajdhani', sans-serif; font-weight: 600;
  font-size: 12px; letter-spacing: 1px; text-transform: uppercase;
  cursor: pointer; transition: all 0.2s;
}
.sort-btn:hover, .sort-btn.active { border-color: var(--accent); color: var(--accent); }

#catalogGrid { gap: 3px; }

.no-results {
  grid-column: 1/-1;
  text-align: center; padding: 80px 20px;
  color: var(--text-muted);
}
.no-results h3 { font-family: 'Bebas Neue', sans-serif; font-size: 36px; margin-bottom: 12px; color: var(--text-dim); }

/* ── ABOUT PAGE ── */
.about-hero {
  padding: 120px 40px 80px;
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-hero-text h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px; letter-spacing: 3px; line-height: 0.9;
  margin-bottom: 24px;
}
.about-hero-text p { font-size: 16px; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }

.about-hero-visual {
  background: var(--surface); border: 1px solid var(--border);
  height: 380px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.ahv-big { font-family: 'Bebas Neue', sans-serif; font-size: 140px; color: rgba(200,168,75,0.06); line-height: 1; text-align: center; user-select: none; }
.ahv-badge {
  position: absolute; font-family: 'Bebas Neue', sans-serif;
  font-size: 16px; letter-spacing: 3px;
  padding: 12px 24px; border: 1px solid var(--accent); color: var(--accent);
}

.about-timeline { max-width: 1280px; margin: 0 auto; padding: 0 40px 80px; }
.at-title { font-family: 'Bebas Neue', sans-serif; font-size: 52px; letter-spacing: 2px; margin-bottom: 40px; }
.at-items { display: flex; flex-direction: column; gap: 0; }
.at-item {
  display: flex; gap: 32px;
  padding: 24px 0; border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.at-year {
  font-family: 'Bebas Neue', sans-serif; font-size: 36px;
  color: var(--accent); width: 80px; flex-shrink: 0; line-height: 1;
}
.at-content h3 { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.at-content p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.about-team { background: var(--surface); padding: 80px 40px; }
.about-team-inner { max-width: 1280px; margin: 0 auto; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; margin-top: 48px; }
.team-card {
  background: var(--surface2); border: 1px solid var(--border);
  padding: 32px;
  transition: all 0.3s;
}
.team-card:hover { border-color: var(--accent2); transform: translateY(-4px); }
.tc-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--accent-glow); border: 2px solid var(--accent2);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin-bottom: 16px;
}
.tc-name { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.tc-role { font-size: 12px; color: var(--accent); letter-spacing: 2px; text-transform: uppercase; font-family: 'Share Tech Mono', monospace; margin-bottom: 12px; }
.tc-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

.about-values { max-width: 1280px; margin: 0 auto; padding: 80px 40px; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; margin-top: 48px; }
.val-card { background: var(--surface); border: 1px solid var(--border); padding: 32px; transition: all 0.3s; }
.val-card:hover { border-color: var(--border2); transform: translateY(-4px); }
.val-icon { font-size: 32px; margin-bottom: 16px; }
.val-name { font-family: 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: 1px; margin-bottom: 8px; }
.val-desc { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ── CONTACTS PAGE ── */
.contacts-section { max-width: 1280px; margin: 0 auto; padding: 80px 40px; }
.contacts-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; }
.contacts-info h2 { font-family: 'Bebas Neue', sans-serif; font-size: 52px; letter-spacing: 2px; margin-bottom: 32px; line-height: 1; }
.ci-item {
  display: flex; gap: 20px; padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.ci-icon { width: 44px; height: 44px; background: var(--accent-glow); border: 1px solid var(--accent2); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.ci-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 5px; font-family: 'Share Tech Mono', monospace; }
.ci-value { font-size: 17px; font-weight: 600; }
.ci-value a { color: var(--text); text-decoration: none; transition: color 0.2s; }
.ci-value a:hover { color: var(--accent); }

.contacts-form { background: var(--surface); border: 1px solid var(--border); padding: 48px; }
.cf-title { font-family: 'Bebas Neue', sans-serif; font-size: 36px; letter-spacing: 2px; margin-bottom: 8px; }
.cf-sub { font-size: 13px; color: var(--text-muted); margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; font-family: 'Share Tech Mono', monospace; }
.form-control {
  width: 100%; background: var(--surface2);
  border: 1px solid var(--border); color: var(--text);
  padding: 12px 16px; font-family: 'Rajdhani', sans-serif;
  font-size: 15px; outline: none;
  transition: border-color 0.2s;
}
.form-control:focus { border-color: var(--accent2); }
.form-control::placeholder { color: var(--text-dim); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%; background: var(--accent); color: var(--bg);
  border: none; padding: 16px;
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 15px; letter-spacing: 2.5px; text-transform: uppercase;
  cursor: pointer; transition: background 0.2s;
}
.form-submit:hover { background: #dfc05a; }

.contacts-map { max-width: 1280px; margin: 0 auto 80px; padding: 0 40px; }
.contacts-map h2 { font-family: 'Bebas Neue', sans-serif; font-size: 52px; letter-spacing: 2px; margin-bottom: 32px; }
.map-placeholder { background: var(--surface); border: 1px solid var(--border); height: 320px; display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 18px; }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .catalog-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; height: auto; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .cat-card.cat-featured { grid-column: 1/3; grid-row: auto; min-height: 160px; flex-direction: row; }
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { display: none; }
  .about-hero { grid-template-columns: 1fr; }
  .about-hero-visual { display: none; }
  .contacts-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  #navbar { padding: 0 20px; }
  .nav-links { display: none; }
  .burger { display: flex; }
  .nav-phone { display: none; }
  .container, .page-hero, .catalog-main, .about-hero, .about-timeline, .about-team, .about-values, .contacts-section, .contacts-map { padding-left: 20px; padding-right: 20px; }
  .hero-content { padding: 80px 20px; }
  .hero-visual { display: none; }
  .stats-bar { flex-direction: column; gap: 24px; }
  .stat-divider { display: none; }
  .stat-item { padding: 0; }
  .categories-grid { grid-template-columns: 1fr; }
  .cat-card.cat-featured { grid-column: auto; }
  .products-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .page-hero h1 { font-size: 52px; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .contacts-form { padding: 28px 20px; }
}
