/* =====================================================
   Display Protect — Apple-inspired design system
   ===================================================== */

:root {
  --bg: #ffffff;
  --bg2: #f5f5f7;
  --bg3: #e8e8ed;
  --text: #1d1d1f;
  --text2: #6e6e73;
  --text3: #86868b;
  --accent: #0071e3;
  --accent-hover: #0077ed;
  --accent-light: #e8f0fe;
  --success: #34c759;
  --danger: #ff3b30;
  --warning: #ff9f0a;
  --border: rgba(0,0,0,.08);
  --border2: rgba(0,0,0,.12);
  --shadow-sm: 0 2px 8px rgba(0,0,0,.07);
  --shadow: 0 4px 20px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.14);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: .22s cubic-bezier(.4,0,.2,1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

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

a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-hover); }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: var(--font); }

/* ==================== HEADER ==================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow-sm);
}
.header-spacer { height: 64px; }

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img { width: 36px; height: 36px; object-fit: contain; border-radius: 8px; }
.logo-text {
  font-size: 17px;
  color: var(--text);
  letter-spacing: -.3px;
}
.logo-text strong { font-weight: 700; }

.nav-search { flex: 1; max-width: 380px; }

.search-form {
  position: relative;
  display: flex;
  align-items: center;
}
.search-icon {
  position: absolute;
  left: 12px;
  width: 16px; height: 16px;
  color: var(--text3);
  pointer-events: none;
  flex-shrink: 0;
}
.search-input {
  width: 100%;
  padding: 9px 16px 9px 38px;
  background: var(--bg2);
  border: 1.5px solid transparent;
  border-radius: 10px;
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), background var(--transition);
}
.search-input:focus {
  background: var(--bg);
  border-color: var(--accent);
}
.search-input::placeholder { color: var(--text3); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.nav-link {
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text2);
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--text); background: var(--bg2); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--border);
  gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile .nav-link { padding: 12px 0; font-size: 16px; border-radius: 0; border-bottom: 1px solid var(--border); }
.nav-mobile .search-form.mobile { margin-bottom: 12px; }

/* ==================== HERO ==================== */
.hero {
  background: linear-gradient(160deg, #0a0a0a 0%, #1a1a2e 60%, #16213e 100%);
  min-height: 580px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,113,227,.25) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,113,227,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0,113,227,.15);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
  border: 1px solid rgba(0,113,227,.3);
}
.hero h1 {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.08;
  letter-spacing: -.04em;
  margin-bottom: 20px;
  max-width: 700px;
}
.hero h1 span { color: var(--accent); }
.hero p {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,.65);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 980px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.01em;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), opacity var(--transition);
  border: none;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 2px 12px rgba(0,113,227,.35); }
.btn-primary:hover { background: var(--accent-hover); box-shadow: 0 4px 20px rgba(0,113,227,.45); color: #fff; }

.btn-secondary { background: rgba(255,255,255,.1); color: #fff; border: 1.5px solid rgba(255,255,255,.2); backdrop-filter: blur(10px); }
.btn-secondary:hover { background: rgba(255,255,255,.18); color: #fff; }

.btn-outline { background: transparent; color: var(--accent); border: 1.5px solid var(--accent); }
.btn-outline:hover { background: var(--accent); color: #fff; }

.btn-ghost { background: var(--bg2); color: var(--text); }
.btn-ghost:hover { background: var(--bg3); color: var(--text); }

.btn-sm { padding: 8px 18px; font-size: 13px; }

/* ==================== SECTIONS ==================== */
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-header { text-align: center; margin-bottom: 48px; }
.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.1;
}
.section-subtitle {
  font-size: 17px;
  color: var(--text2);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ==================== BRAND GRID ==================== */
.brands-section { background: var(--bg2); }

.letter-group { margin-bottom: 40px; }
.letter-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border2);
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}

.brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 12px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  text-decoration: none;
  color: var(--text);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  text-align: center;
}
.brand-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: var(--shadow);
  color: var(--text);
}
.brand-logo {
  width: 48px; height: 48px;
  object-fit: contain;
  border-radius: 8px;
}
.brand-logo-placeholder {
  width: 48px; height: 48px;
  background: var(--bg2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--text3);
}
.brand-name {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--text);
}

/* ==================== PRODUCT CARDS ==================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.product-grid-sm {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.product-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border2);
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--bg2);
  overflow: hidden;
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.04); }
.product-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg2) 0%, var(--bg3) 100%);
}
.product-img-placeholder svg { width: 48px; height: 48px; color: var(--text3); opacity: .4; }

.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.badge {
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.badge-new { background: var(--success); color: #fff; }
.badge-sale { background: var(--danger); color: #fff; }
.badge-featured { background: var(--accent); color: #fff; }
.badge-matte { background: var(--text); color: #fff; }
.badge-glossy { background: linear-gradient(135deg, #667eea, #764ba2); color: #fff; }
.badge-out { background: var(--bg3); color: var(--text3); }

.product-info {
  padding: 16px 18px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-meta {
  font-size: 12px;
  color: var(--text3);
  font-weight: 500;
}
.product-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
  flex: 1;
}
.product-code {
  font-size: 11px;
  color: var(--text3);
  font-family: 'SF Mono', 'Fira Code', monospace;
}
.product-price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}
.price-new {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.02em;
}
.price-old {
  font-size: 13px;
  color: var(--text3);
  text-decoration: line-through;
}
.product-action {
  margin-top: 12px;
  display: flex;
  gap: 8px;
}
.product-action .btn { flex: 1; justify-content: center; font-size: 13px; padding: 9px 16px; }

/* ==================== MODEL PAGE ==================== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text3);
  margin-bottom: 32px;
}
.breadcrumb a { color: var(--text3); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { color: var(--border2); }

.model-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}

.model-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  text-decoration: none;
  color: var(--text);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.model-card:hover {
  transform: translateX(4px);
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
  color: var(--text);
}
.model-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.model-icon svg { width: 20px; height: 20px; color: var(--accent); }
.model-info { flex: 1; min-width: 0; }
.model-name { font-size: 14px; font-weight: 600; }
.model-years { font-size: 12px; color: var(--text3); }
.model-arrow { color: var(--text3); flex-shrink: 0; }
.model-arrow svg { width: 16px; height: 16px; }

/* ==================== PRODUCT DETAIL ==================== */
.product-detail { padding: 48px 0 80px; }
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) {
  .product-detail-grid { grid-template-columns: 1fr; gap: 32px; }
}

.product-gallery { position: sticky; top: 80px; }
.gallery-main {
  aspect-ratio: 4/3;
  background: var(--bg2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 12px;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 8px; flex-wrap: wrap; }
.gallery-thumb {
  width: 64px; height: 64px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition);
}
.gallery-thumb:hover, .gallery-thumb.active { border-color: var(--accent); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-detail-info { padding: 8px 0; }
.product-detail-brand { font-size: 13px; font-weight: 600; color: var(--accent); letter-spacing: .04em; text-transform: uppercase; margin-bottom: 8px; }
.product-detail-title { font-size: clamp(22px, 3vw, 32px); font-weight: 700; letter-spacing: -.03em; margin-bottom: 8px; line-height: 1.15; }
.product-detail-code { font-size: 12px; color: var(--text3); margin-bottom: 20px; font-family: 'SF Mono', 'Fira Code', monospace; }
.product-detail-price { margin-bottom: 24px; }
.product-detail-price .price-new { font-size: 32px; font-weight: 800; }

.product-specs {
  background: var(--bg2);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 24px;
}
.product-spec-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.product-spec-row:last-child { border-bottom: none; }
.spec-label { color: var(--text2); }
.spec-value { font-weight: 600; }

.product-description { font-size: 15px; color: var(--text2); line-height: 1.7; margin-bottom: 24px; }
.product-detail-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.product-detail-actions .btn { flex: 1; min-width: 180px; justify-content: center; font-size: 15px; padding: 14px 24px; }

/* ==================== FEATURES ==================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.feature-card {
  padding: 32px 24px;
  background: var(--bg2);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform var(--transition);
}
.feature-card:hover { transform: translateY(-4px); }
.feature-icon {
  width: 56px; height: 56px;
  background: var(--accent-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.feature-icon svg { width: 28px; height: 28px; color: var(--accent); }
.feature-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; letter-spacing: -.01em; }
.feature-text { font-size: 14px; color: var(--text2); line-height: 1.6; }

/* ==================== TYPE CARDS ==================== */
.type-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 640px) { .type-cards { grid-template-columns: 1fr; } }
.type-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  text-decoration: none;
  color: #fff;
  transition: transform var(--transition);
}
.type-card:hover { transform: translateY(-4px); color: #fff; }
.type-card-glossy { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.type-card-matte { background: linear-gradient(135deg, #2c3e50 0%, #4a5568 100%); }
/* When a background-image is set via inline style, show it properly */
.type-card[style*="background-image"] {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.type-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,.25) 60%, rgba(0,0,0,.1) 100%);
}
.type-card-content { position: relative; z-index: 1; }
.type-card-label { font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; opacity: .8; margin-bottom: 8px; }
.type-card-title { font-size: 28px; font-weight: 800; letter-spacing: -.03em; margin-bottom: 8px; }
.type-card-desc { font-size: 14px; opacity: .8; line-height: 1.5; margin-bottom: 20px; }

/* ==================== CATALOG ==================== */
.catalog-layout { display: grid; grid-template-columns: 260px 1fr; gap: 32px; align-items: start; }
@media (max-width: 900px) { .catalog-layout { grid-template-columns: 1fr; } }

.catalog-sidebar { position: sticky; top: 80px; }
.sidebar-section { margin-bottom: 28px; }
.sidebar-title { font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--text3); margin-bottom: 12px; }
.sidebar-list { display: flex; flex-direction: column; gap: 2px; }
.sidebar-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--text2);
  transition: background var(--transition), color var(--transition);
}
.sidebar-link:hover, .sidebar-link.active { background: var(--bg2); color: var(--text); }
.sidebar-link.active { font-weight: 600; }
.sidebar-count { font-size: 12px; color: var(--text3); background: var(--bg2); padding: 2px 8px; border-radius: 10px; }

.catalog-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
.catalog-title { font-size: 24px; font-weight: 700; letter-spacing: -.02em; }
.catalog-count { font-size: 14px; color: var(--text3); }

.filter-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.filter-chip {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  background: var(--bg2);
  color: var(--text2);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.filter-chip:hover, .filter-chip.active { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ==================== PAGINATION ==================== */
.pagination { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 40px; }
.page-btn {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text2);
  background: var(--bg2);
  border: none;
  text-decoration: none;
  transition: all var(--transition);
}
.page-btn:hover { background: var(--bg3); color: var(--text); }
.page-btn.active { background: var(--accent); color: #fff; }
.page-btn.disabled { opacity: .4; pointer-events: none; }

/* ==================== FOOTER ==================== */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,.7);
  padding: 64px 0 0;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}
@media (max-width: 900px) { .footer-container { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 560px) { .footer-container { grid-template-columns: 1fr; gap: 24px; } }

.footer-logo .logo-text { color: #fff; }
.footer-tagline { font-size: 14px; margin-top: 12px; line-height: 1.6; max-width: 240px; }

.footer-links { display: flex; flex-direction: column; gap: 4px; }
.footer-links h4 { font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 12px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,.7); padding: 4px 0; transition: color var(--transition); }
.footer-links a:hover { color: #fff; }

.footer-contact { display: flex; flex-direction: column; gap: 4px; }
.footer-contact h4 { font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 12px; }
.contact-item { display: flex; align-items: center; gap: 10px; padding: 5px 0; font-size: 14px; }
.contact-item svg { width: 16px; height: 16px; flex-shrink: 0; opacity: .6; }
.contact-item a { color: rgba(255,255,255,.7); }
.contact-item a:hover { color: #fff; }

.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.social-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--transition), background var(--transition);
}
.social-btn svg { width: 20px; height: 20px; }
.social-btn.whatsapp { background: #25d366; color: #fff; }
.social-btn.whatsapp:hover { transform: scale(1.1); background: #1fb958; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 24px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.35);
  max-width: 1200px;
  margin: 0 auto;
}

/* ==================== EMPTY STATE ==================== */
.empty-state {
  text-align: center;
  padding: 64px 24px;
  color: var(--text3);
}
.empty-state svg { width: 64px; height: 64px; margin: 0 auto 16px; opacity: .4; }
.empty-state h3 { font-size: 20px; font-weight: 600; color: var(--text2); margin-bottom: 8px; }
.empty-state p { font-size: 15px; }

/* ==================== ALERTS ==================== */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.alert-success { background: rgba(52,199,89,.12); color: #1a7a3a; border: 1px solid rgba(52,199,89,.3); }
.alert-error { background: rgba(255,59,48,.1); color: #c0392b; border: 1px solid rgba(255,59,48,.25); }

/* ==================== ORDER FORM ==================== */
.order-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.order-modal-backdrop.open { opacity: 1; pointer-events: all; }
.order-modal {
  background: var(--bg);
  border-radius: var(--radius-xl);
  padding: 36px;
  max-width: 480px;
  width: 100%;
  position: relative;
  transform: scale(.96);
  transition: transform var(--transition);
  max-height: 90vh;
  overflow-y: auto;
}
.order-modal-backdrop.open .order-modal { transform: scale(1); }
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg2);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
}
.modal-close:hover { background: var(--bg3); }
.modal-close svg { width: 16px; height: 16px; color: var(--text); }
.modal-title { font-size: 22px; font-weight: 700; letter-spacing: -.02em; margin-bottom: 24px; }

.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--text2); margin-bottom: 6px; }
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 11px 14px;
  background: var(--bg2);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  font-family: var(--font);
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), background var(--transition);
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--accent);
  background: var(--bg);
}
.form-textarea { resize: vertical; min-height: 90px; }

/* ==================== NO IMAGE SVG ==================== */
.no-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg2);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .hero { min-height: 440px; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
  .brand-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
  .features-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .brand-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ==================== HERO SELECTOR ==================== */
.hero-selector {
  position: relative;
  background: linear-gradient(135deg, #080c14 0%, #0d1b35 45%, #0a1628 100%);
  min-height: 540px;
  display: flex;
  align-items: center;
  z-index: 10;
}
.hero-bg-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-bg-svg {
  position: absolute;
  right: 0; top: 0;
  width: 65%;
  height: 100%;
  opacity: 1;
}

.hero-selector-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-eyebrow-pill {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0,113,227,.15);
  border: 1px solid rgba(0,113,227,.3);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.08;
  letter-spacing: -.04em;
  margin-bottom: 14px;
}
.hero-title-accent {
  background: linear-gradient(90deg, #0071e3, #40a9ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,.55);
  margin-bottom: 36px;
  line-height: 1.6;
  max-width: 420px;
}

/* VEHICLE SELECTOR */
.vehicle-selector {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 420px;
  overflow: visible;
}

.selector-step { position: relative; }
.selector-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  color: rgba(255,255,255,.4);
  margin-bottom: 6px;
}
.selector-control {
  position: relative;
}
.sel-input {
  width: 100%;
  padding: 13px 44px 13px 16px;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: 12px;
  font-size: 15px;
  font-family: var(--font);
  font-weight: 500;
  color: #fff;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}
.sel-input:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,.12);
}
.sel-input option {
  background: #1a1a2e;
  color: #fff;
}
.sel-input:disabled {
  opacity: .4;
  cursor: not-allowed;
}
.sel-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px;
  color: rgba(255,255,255,.4);
  pointer-events: none;
  transition: transform .2s;
}

/* ── Searchable Dropdown ── */
.sd-wrap {
  position: relative;
}
.sd-display {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 13px 44px 13px 16px;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: 12px;
  font-size: 15px;
  font-family: var(--font);
  font-weight: 500;
  color: rgba(255,255,255,.5);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  position: relative;
  user-select: none;
  box-sizing: border-box;
}
.sd-display .sel-arrow {
  position: absolute;
}
.sd-display:focus {
  outline: none;
  border-color: var(--accent);
}
.sd-value.sd-has-value {
  color: #fff;
}
.sd-open .sd-display {
  border-color: var(--accent);
  background: rgba(255,255,255,.12);
}
.sd-open .sel-arrow {
  transform: translateY(-50%) rotate(180deg);
}
.sd-disabled .sd-display {
  opacity: .4;
  cursor: not-allowed;
}
.sd-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #0f1b2d;
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: 12px;
  overflow: hidden;
  z-index: 9999;
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
}
.sd-search-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.sd-search-icon {
  width: 15px; height: 15px;
  color: rgba(255,255,255,.35);
  flex-shrink: 0;
}
.sd-search {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-size: 14px;
  font-family: var(--font);
  color: #fff;
}
.sd-search::placeholder { color: rgba(255,255,255,.35); }
.sd-list {
  max-height: 220px;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.sd-list::-webkit-scrollbar { width: 4px; }
.sd-list::-webkit-scrollbar-track { background: transparent; }
.sd-list::-webkit-scrollbar-thumb { background: rgba(255,255,255,.15); border-radius: 2px; }
.sd-item {
  padding: 10px 16px;
  font-size: 14px;
  color: rgba(255,255,255,.85);
  cursor: pointer;
  transition: background .12s;
}
.sd-item:hover { background: rgba(255,255,255,.07); }
.sd-placeholder {
  color: rgba(255,255,255,.4);
  font-style: italic;
}

.selector-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  margin-top: 4px;
  box-shadow: 0 4px 20px rgba(0,113,227,.4);
}
.selector-btn:hover:not(:disabled) {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,113,227,.5);
}
.selector-btn:disabled {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.4);
  cursor: not-allowed;
  box-shadow: none;
}
.selector-btn svg { width: 18px; height: 18px; }

/* HERO RIGHT — dashboard visual */
.hero-selector-right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.dashboard-visual {
  position: relative;
  width: 100%;
  max-width: 520px;
}
.dashboard-visual svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(0,113,227,.15));
}
.dashboard-badge {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  white-space: nowrap;
}
.dashboard-badge svg { width: 15px; height: 15px; color: var(--accent); flex-shrink: 0; }

@media (max-width: 900px) {
  .hero-selector-content { grid-template-columns: 1fr; gap: 32px; }
  .hero-selector-right { display: none; }
  .hero-selector { min-height: auto; }
  .vehicle-selector { max-width: 100%; }
}

/* ==================== FEATURES STRIP ==================== */
.features-strip {
  background: var(--text);
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  position: relative;
  z-index: 1;
}
.features-strip-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
@media (max-width: 1100px) { .features-strip-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .features-strip-grid { grid-template-columns: repeat(2, 1fr); } }

.strip-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 12px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.06);
  transition: background var(--transition);
}
.strip-feature:last-child { border-right: none; }
.strip-feature:hover { background: rgba(255,255,255,.04); }
.strip-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.strip-feature:hover .strip-icon { background: rgba(0,113,227,.2); border-color: rgba(0,113,227,.4); }
.strip-icon svg { width: 20px; height: 20px; color: rgba(255,255,255,.7); }
.strip-feature span {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  line-height: 1.4;
}

/* ==================== BRANDS COMPACT (homepage) ==================== */
.brands-compact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 8px;
}
.brand-compact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 10px 12px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .03em;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  line-height: 1.3;
}
.brand-compact-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  color: var(--text);
}
.brand-compact-logo {
  width: 40px; height: 40px;
  object-fit: contain;
}
.brand-compact-initials {
  width: 40px; height: 40px;
  background: var(--bg2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  font-weight: 900;
  color: var(--text3);
}
@media (max-width: 480px) {
  .brands-compact-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ==================== MAP SECTION ==================== */
.map-section {
  background: var(--bg2);
  padding: 72px 0 0;
  overflow: hidden;
}
.map-section-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  padding-bottom: 64px;
}
@media (max-width: 900px) {
  .map-section-header { grid-template-columns: 1fr; gap: 32px; }
}

/* Contact list inside map section */
.map-contact-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 28px; }
.map-contact-item {
  display: flex; align-items: flex-start; gap: 14px;
  text-decoration: none; color: var(--text);
}
.map-contact-item:hover .map-contact-value { color: var(--accent); }
.map-contact-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: #fff;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
}
.map-contact-icon svg { width: 20px; height: 20px; color: var(--accent); }
.map-contact-label { font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--text3); margin-bottom: 3px; }
.map-contact-value { font-size: 15px; font-weight: 600; color: var(--text); line-height: 1.5; }

/* Navigate buttons */
.navigate-btns { display: flex; gap: 10px; margin-bottom: 24px; flex-wrap: wrap; }
.nav-app-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 20px;
  border-radius: 10px;
  font-size: 14px; font-weight: 700;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  border: none; cursor: pointer;
}
.nav-app-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.waze-btn { background: #09d4f5; color: #000; }
.gmaps-btn { background: #4285F4; color: #fff; }

/* Social pills */
.footer-social-row { display: flex; gap: 8px; flex-wrap: wrap; }
.social-pill {
  display: flex; align-items: center; gap: 7px;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 13px; font-weight: 600;
  text-decoration: none;
  transition: transform var(--transition), opacity var(--transition);
}
.social-pill:hover { transform: translateY(-2px); opacity: .9; }
.whatsapp-pill { background: #25d366; color: #fff; }
.instagram-pill { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); color: #fff; }
.tiktok-pill { background: #010101; color: #fff; }
.facebook-pill { background: #1877f2; color: #fff; }

/* Social buttons in footer (existing, extended) */
.social-btn.instagram { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); color: #fff; }
.social-btn.tiktok { background: #010101; color: #fff; }
.social-btn.facebook { background: #1877f2; color: #fff; }

/* Map embed */
.map-embed-col { position: relative; }
.map-wrap {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--border);
  background: #e8e8ed;
}

/* Map overlay (shown before map loads) */
.map-overlay {
  position: absolute; inset: 0; z-index: 10;
  background: linear-gradient(160deg, #0d1b35 0%, #1a2f55 100%);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s ease, transform .6s ease;
}
.map-overlay-content {
  text-align: center; color: #fff;
}
.map-overlay-content p { font-size: 15px; font-weight: 600; margin-top: 12px; }

/* Pulsing pin animation */
.map-pin-pulse {
  position: relative;
  display: inline-block;
  animation: mapPinDrop .8s cubic-bezier(.36,.07,.19,.97) forwards;
  animation-delay: .3s;
  opacity: 0;
}
.map-pin-pulse::before, .map-pin-pulse::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(0,113,227,.3);
  animation: mapPulse 1.6s ease-out infinite;
}
.map-pin-pulse::before { width: 60px; height: 60px; animation-delay: .5s; }
.map-pin-pulse::after  { width: 90px; height: 90px; animation-delay: .8s; }

@keyframes mapPinDrop {
  0%   { opacity: 0; transform: translateY(-40px) scale(.7); }
  60%  { opacity: 1; transform: translateY(6px) scale(1.1); }
  80%  { transform: translateY(-4px) scale(.95); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes mapPulse {
  0%   { opacity: .8; transform: translate(-50%,-50%) scale(.5); }
  100% { opacity: 0;  transform: translate(-50%,-50%) scale(1.8); }
}

/* Zoom-in reveal effect on the map iframe */
.map-wrap iframe {
  transform: scale(1.1);
  transition: opacity .8s ease, transform 1.2s cubic-bezier(.4,0,.2,1);
}
.map-wrap iframe[style*="opacity: 1"],
.map-wrap iframe.loaded {
  transform: scale(1);
}

/* ==================== PARTNERS SECTION ==================== */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}
@media (max-width: 640px) {
  .partners-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

.partner-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 16px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
}

.partner-logo-wrap {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg2);
  flex-shrink: 0;
}
.partner-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}
.partner-no-logo {
  background: var(--bg2);
  font-size: 13px;
  font-weight: 700;
  color: var(--text3);
  padding: 8px;
}

.partner-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: .01em;
}

.partner-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  width: 100%;
  margin-top: auto;
}
.partner-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 14px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
  width: 100%;
  justify-content: center;
}
.partner-btn:hover {
  background: var(--accent);
  color: #fff;
}

/* ==================== MOBILE FILTER DRAWER ==================== */

/* Bar with filter button — mobile only */
.mobile-filter-bar {
  display: none;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  position: sticky;
  top: 64px;
  z-index: 100;
}
@media (max-width: 900px) {
  .mobile-filter-bar { display: block; }
  /* Hide desktop sidebar on mobile */
  .catalog-sidebar { display: none !important; }
  /* Full-width grid on mobile */
  .catalog-layout { grid-template-columns: 1fr !important; }
}

.mobile-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: var(--bg2);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  position: relative;
  font-family: var(--font);
  transition: background var(--transition), border-color var(--transition);
}
.mobile-filter-btn:hover { background: var(--bg3); border-color: var(--accent); }

.filter-count-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
}

/* Backdrop */
.filter-drawer-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(3px);
  z-index: 800;
  opacity: 0;
  transition: opacity var(--transition);
}
.filter-drawer-backdrop.open {
  display: block;
  opacity: 1;
}

/* Drawer panel — slides in from left */
.filter-drawer {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: min(320px, 88vw);
  background: var(--bg);
  z-index: 900;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform .28s cubic-bezier(.4,0,.2,1);
  box-shadow: 4px 0 32px rgba(0,0,0,.18);
}
.filter-drawer.open { transform: translateX(0); }

.filter-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.filter-drawer-title {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.02em;
}
.filter-drawer-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg2);
  border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--text);
  transition: background var(--transition);
}
.filter-drawer-close:hover { background: var(--bg3); }

.filter-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px 32px;
}
.filter-drawer-body .sidebar-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 10px;
  margin-top: 8px;
}
.filter-drawer-body .sidebar-link {
  padding: 11px 14px;
  font-size: 15px;
  border-radius: 10px;
  display: block;
  color: var(--text2);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
  margin-bottom: 2px;
}
.filter-drawer-body .sidebar-link:hover,
.filter-drawer-body .sidebar-link.active {
  background: var(--bg2);
  color: var(--text);
  font-weight: 600;
}
.filter-drawer-body .sidebar-link.active {
  background: var(--accent-light);
  color: var(--accent);
}

/* ==================== UTILITIES ==================== */
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-2 { gap: 8px; }
.gap-4 { gap: 16px; }
.flex-wrap { flex-wrap: wrap; }

/* ==================== LOADING ==================== */
.skeleton {
  background: linear-gradient(90deg, var(--bg2) 25%, var(--bg3) 50%, var(--bg2) 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s infinite;
  border-radius: 8px;
}
@keyframes skeleton-shimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }

/* ==================== SCROLL TO TOP ==================== */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--text);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--transition), transform var(--transition);
  z-index: 500;
  box-shadow: var(--shadow);
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--accent); }
.scroll-top svg { width: 20px; height: 20px; }
