/* ============================================
   JALARAM COMPUTERS — Design System
   Palette: Deep Navy + Electric Blue + Silver
   Fonts: Outfit (display) + Plus Jakarta Sans (body)
   ============================================ */

/* ---- CSS VARIABLES ---- */
:root {
  --navy-950: #020B18;
  --navy-900: #050F1F;
  --navy-800: #0A1628;
  --navy-700: #0D1F3C;
  --navy-600: #112952;
  --navy-500: #1565C0;
  --navy-400: #1976D2;
  --navy-300: #42A5F5;
  --navy-200: #90CAF9;
  --navy-100: #E3F2FD;

  --blue-vivid: #1565C0;
  --blue-bright: #2196F3;
  --blue-light: #64B5F6;
  --blue-glow: rgba(21, 101, 192, 0.4);

  --silver-900: #1E2A3A;
  --silver-700: #334155;
  --silver-500: #64748B;
  --silver-400: #94A3B8;
  --silver-300: #CBD5E1;
  --silver-200: #E2E8F0;
  --silver-100: #F1F5F9;
  --silver-50:  #F8FAFC;

  --white: #FFFFFF;
  --black: #000000;

  --accent-green: #22C55E;
  --accent-orange: #F97316;
  --accent-red: #EF4444;
  --accent-purple: #8B5CF6;
  --accent-teal: #14B8A6;
  --whatsapp: #25D366;

  --gradient-primary: linear-gradient(135deg, #1565C0 0%, #0D47A1 100%);
  --gradient-hero: linear-gradient(135deg, #020B18 0%, #0A1628 50%, #0D1F3C 100%);
  --gradient-card: linear-gradient(145deg, #0A1628, #112952);
  --gradient-text: linear-gradient(135deg, #42A5F5, #1565C0);

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.5);
  --shadow-xl: 0 16px 64px rgba(0,0,0,0.6);
  --shadow-blue: 0 8px 32px rgba(21,101,192,0.3);
  --shadow-blue-lg: 0 16px 48px rgba(21,101,192,0.4);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease;
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  --font-display: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --header-h: 72px;
  --topbar-h: 36px;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--navy-950);
  color: var(--silver-200);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.1rem; }

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  border-color: var(--blue-vivid);
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue-lg);
  filter: brightness(1.1);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--blue-bright);
  color: var(--blue-light);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--navy-800);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--silver-100);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  border-color: var(--whatsapp);
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}

.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; }

/* ---- SECTION HEADERS ---- */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-tag {
  display: inline-block;
  background: rgba(21,101,192,0.15);
  color: var(--blue-light);
  border: 1px solid rgba(21,101,192,0.3);
  padding: 4px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  margin-bottom: 12px;
}
.section-desc {
  color: var(--silver-400);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}
.section-cta {
  text-align: center;
  margin-top: 40px;
}

/* ---- TOPBAR ---- */
.topbar {
  background: var(--navy-900);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  height: var(--topbar-h);
  display: flex;
  align-items: center;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.topbar-left, .topbar-right {
  display: flex;
  gap: 20px;
  font-size: 0.78rem;
  color: var(--silver-400);
}
.topbar-left a, .topbar-right a {
  color: var(--silver-300);
  transition: var(--transition-fast);
}
.topbar-left a:hover, .topbar-right a:hover { color: var(--blue-light); }

/* ---- HEADER ---- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(2, 11, 24, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.header.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.5);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: var(--header-h);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon { flex-shrink: 0; }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 0.05em;
}
.logo-sub {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.65rem;
  color: var(--blue-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--silver-300);
  transition: var(--transition-fast);
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 2px;
  background: var(--blue-bright);
  border-radius: 2px;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver-300);
  transition: var(--transition-fast);
  position: relative;
}
.icon-btn:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}
.cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--accent-red);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--silver-300);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Search Bar */
.search-bar {
  background: var(--navy-800);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 12px 0;
  display: none;
}
.search-bar.open { display: block; }
.search-bar .container {
  display: flex;
  gap: 8px;
  align-items: center;
}
.search-bar input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  padding: 10px 20px;
  color: var(--white);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
}
.search-bar input:focus {
  border-color: var(--blue-bright);
  background: rgba(255,255,255,0.08);
}
.search-bar input::placeholder { color: var(--silver-500); }
.search-submit {
  background: var(--gradient-primary);
  color: white;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}
.search-submit:hover { filter: brightness(1.1); }
.search-close {
  color: var(--silver-400);
  font-size: 1.1rem;
  padding: 8px;
  transition: var(--transition-fast);
}
.search-close:hover { color: var(--white); }

/* ---- CART SIDEBAR ---- */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  max-width: 100vw;
  height: 100vh;
  background: var(--navy-800);
  border-left: 1px solid rgba(255,255,255,0.08);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.5);
}
.cart-sidebar.open { right: 0; }

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.cart-header h3 {
  font-size: 1.1rem;
  font-family: var(--font-display);
}
.cart-header button {
  color: var(--silver-400);
  font-size: 1.2rem;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}
.cart-header button:hover { color: var(--white); background: rgba(255,255,255,0.08); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
}
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  height: 100%;
  text-align: center;
  color: var(--silver-500);
}
.cart-empty p { font-size: 0.95rem; }

.cart-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-md);
  margin-bottom: 8px;
  border: 1px solid rgba(255,255,255,0.06);
}
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 0.9rem; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.cart-item-price { font-size: 0.85rem; color: var(--blue-light); font-weight: 600; }
.cart-item-remove {
  color: var(--silver-500);
  font-size: 0.8rem;
  padding: 2px 6px;
  border-radius: 4px;
  transition: var(--transition-fast);
}
.cart-item-remove:hover { color: var(--accent-red); background: rgba(239,68,68,0.1); }

.cart-footer {
  padding: 16px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--silver-300);
}
.cart-total strong { color: var(--white); font-size: 1.2rem; }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h) - var(--topbar-h));
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 0;
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(21,101,192,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21,101,192,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-glow-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(21,101,192,0.25) 0%, transparent 70%);
  top: -200px;
  right: -100px;
}
.hero-glow-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(66,165,245,0.15) 0%, transparent 70%);
  bottom: 0;
  left: 10%;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
  flex: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(21,101,192,0.15);
  border: 1px solid rgba(21,101,192,0.3);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--blue-light);
  margin-bottom: 20px;
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--silver-400);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat span {
  font-size: 0.78rem;
  color: var(--silver-500);
  margin-top: 2px;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.1);
}

/* Hero Visual */
.hero-visual { position: relative; }
.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}
.hero-img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255,255,255,0.08);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.hero-float-card {
  position: absolute;
  background: rgba(10, 22, 40, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  animation: float 3s ease-in-out infinite;
}
.card-1 { bottom: -16px; left: -20px; animation-delay: 0s; }
.card-2 { top: -16px; right: -20px; animation-delay: 1s; }
.card-3 {
  bottom: 40px;
  right: -24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  animation-delay: 2s;
}
.card-3 .offer-tag { font-size: 0.65rem; color: var(--accent-orange); text-transform: uppercase; letter-spacing: 0.05em; }
.card-3 strong { font-size: 1.4rem; color: var(--accent-green); line-height: 1; }
.card-3 span { font-size: 0.72rem; color: var(--silver-400); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Promo Ticker */
.promo-ticker {
  position: relative;
  z-index: 1;
  background: var(--blue-vivid);
  overflow: hidden;
  padding: 10px 0;
}
.ticker-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  width: max-content;
}
.ticker-track span {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.02em;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- PROMO BANNERS ---- */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.promo-card {
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  overflow: hidden;
  position: relative;
  transition: var(--transition);
}
.promo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.promo-blue { background: linear-gradient(135deg, #1565C0, #0D47A1); }
.promo-dark { background: linear-gradient(135deg, #0A1628, #112952); border: 1px solid rgba(255,255,255,0.08); }
.promo-accent { background: linear-gradient(135deg, #7C3AED, #4F46E5); }

.promo-content { flex: 1; }
.promo-label {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.8);
  margin-bottom: 8px;
}
.promo-content h3 {
  font-size: 1.15rem;
  margin-bottom: 4px;
  color: var(--white);
}
.promo-content p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 14px;
}
.promo-img {
  width: 100px;
  flex-shrink: 0;
}
.promo-img img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-md);
  opacity: 0.85;
}

/* ---- CATEGORIES ---- */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.cat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--gradient-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  transition: var(--transition);
  cursor: pointer;
}
.cat-card:hover {
  border-color: var(--blue-bright);
  transform: translateY(-3px);
  box-shadow: var(--shadow-blue);
  background: linear-gradient(145deg, #0D1F3C, #1565C0);
}
.cat-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
}
.cat-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.cat-card:hover .cat-icon img { transform: scale(1.1); }
.cat-info { flex: 1; }
.cat-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}
.cat-info span {
  font-size: 0.78rem;
  color: var(--silver-500);
}
.cat-arrow {
  color: var(--silver-600);
  font-size: 1.1rem;
  transition: var(--transition-fast);
}
.cat-card:hover .cat-arrow { color: var(--blue-light); transform: translateX(4px); }

/* ---- PRODUCTS ---- */
.product-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--silver-400);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition-fast);
}
.tab-btn:hover { color: var(--white); border-color: rgba(255,255,255,0.2); }
.tab-btn.active {
  background: var(--gradient-primary);
  color: var(--white);
  border-color: var(--blue-vivid);
  box-shadow: var(--shadow-blue);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  background: var(--gradient-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.product-card:hover {
  border-color: rgba(21,101,192,0.4);
  transform: translateY(-6px);
  box-shadow: var(--shadow-blue);
}
.product-card.hidden { display: none; }

.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img { transform: scale(1.08); }

.product-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.badge {
  padding: 3px 8px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.badge-sale { background: var(--accent-red); color: white; }
.badge-new { background: var(--accent-green); color: white; }
.badge-hot { background: var(--accent-orange); color: white; }

.product-actions {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
}
.product-card:hover .product-actions {
  opacity: 1;
  transform: translateX(0);
}
.prod-action-btn {
  width: 36px;
  height: 36px;
  background: rgba(10,22,40,0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver-300);
  transition: var(--transition-fast);
}
.prod-action-btn:hover {
  background: var(--blue-vivid);
  color: white;
  border-color: var(--blue-vivid);
}

.product-info { padding: 16px; }
.product-brand {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-light);
  margin-bottom: 4px;
  display: block;
}
.product-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1.3;
}
.product-specs {
  font-size: 0.75rem;
  color: var(--silver-500);
  margin-bottom: 8px;
}
.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}
.stars { color: #FBBF24; font-size: 0.8rem; }
.rating-count { font-size: 0.72rem; color: var(--silver-500); }
.product-price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.price-current {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
}
.price-old {
  font-size: 0.82rem;
  color: var(--silver-500);
  text-decoration: line-through;
}

/* ---- SERVICES ---- */
.services { background: var(--navy-900); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.service-card {
  background: var(--gradient-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.service-card:hover {
  border-color: rgba(21,101,192,0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-blue);
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.service-icon-blue { background: rgba(21,101,192,0.15); color: var(--blue-light); }
.service-icon-green { background: rgba(34,197,94,0.15); color: var(--accent-green); }
.service-icon-purple { background: rgba(139,92,246,0.15); color: var(--accent-purple); }
.service-icon-orange { background: rgba(249,115,22,0.15); color: var(--accent-orange); }
.service-icon-teal { background: rgba(20,184,166,0.15); color: var(--accent-teal); }
.service-icon-red { background: rgba(239,68,68,0.15); color: var(--accent-red); }

.service-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--white);
}
.service-card p {
  font-size: 0.85rem;
  color: var(--silver-400);
  line-height: 1.6;
  margin-bottom: 16px;
}
.service-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-light);
  transition: var(--transition-fast);
}
.service-link:hover { color: var(--white); }

/* Service Booking Banner */
.service-booking-banner {
  background: linear-gradient(135deg, #0D1F3C, #1565C0);
  border: 1px solid rgba(21,101,192,0.3);
  border-radius: var(--radius-xl);
  padding: 40px;
  overflow: hidden;
  position: relative;
}
.service-booking-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  border-radius: 50%;
}
.booking-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  position: relative;
  z-index: 1;
}
.booking-text h3 { font-size: 1.5rem; margin-bottom: 8px; }
.booking-text p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.booking-actions { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }

/* ---- OFFERS ---- */
.offers-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 20px;
}
.offer-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  background: var(--gradient-card);
  border: 1px solid rgba(255,255,255,0.06);
}
.offer-featured {
  display: grid;
  grid-template-rows: 1fr auto;
}
.offer-featured img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  opacity: 0.7;
}
.offer-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--accent-red);
  color: white;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.offer-info {
  padding: 24px;
}
.offer-info h3 { font-size: 1.3rem; margin-bottom: 8px; }
.offer-info p { color: var(--silver-400); font-size: 0.9rem; margin-bottom: 16px; }

.offer-countdown {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}
.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  min-width: 56px;
}
.countdown-item span {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.countdown-item label {
  font-size: 0.65rem;
  color: var(--silver-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.offer-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.offer-small {
  display: flex;
  gap: 16px;
  background: var(--gradient-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  flex: 1;
}
.offer-small:hover { border-color: rgba(21,101,192,0.4); transform: translateX(4px); }
.offer-small img {
  width: 100px;
  object-fit: cover;
  flex-shrink: 0;
}
.offer-small-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
.offer-tag-sm {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-orange);
}
.offer-small-info h4 { font-size: 0.9rem; color: var(--white); }
.offer-small-info p { font-size: 0.78rem; color: var(--silver-500); }

/* ---- BRANDS ---- */
.brands { background: var(--navy-900); }
.brands-track-wrap {
  overflow: hidden;
  position: relative;
}
.brands-track-wrap::before,
.brands-track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
}
.brands-track-wrap::before { left: 0; background: linear-gradient(to right, var(--navy-900), transparent); }
.brands-track-wrap::after { right: 0; background: linear-gradient(to left, var(--navy-900), transparent); }

.brands-track {
  display: flex;
  gap: 0;
  animation: brandScroll 25s linear infinite;
  width: max-content;
}
.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition-fast);
}
.brand-item:hover { background: rgba(255,255,255,0.03); }
.brand-item span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--silver-600);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition-fast);
  white-space: nowrap;
}
.brand-item:hover span { color: var(--silver-300); }

@keyframes brandScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- REVIEWS ---- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--gradient-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition);
}
.review-card:hover {
  border-color: rgba(21,101,192,0.3);
  transform: translateY(-4px);
}
.review-card.review-featured {
  background: linear-gradient(145deg, #0D1F3C, #1565C0);
  border-color: rgba(21,101,192,0.4);
}
.review-stars {
  color: #FBBF24;
  font-size: 1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.review-text {
  font-size: 0.88rem;
  color: var(--silver-300);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.reviewer-info strong {
  display: block;
  font-size: 0.88rem;
  color: var(--white);
}
.reviewer-info span {
  font-size: 0.75rem;
  color: var(--silver-500);
}

/* ---- WHY US ---- */
.why-us { background: var(--navy-900); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.why-card {
  text-align: center;
  padding: 24px 16px;
  background: var(--gradient-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.why-card:hover {
  border-color: rgba(21,101,192,0.3);
  transform: translateY(-4px);
}
.why-icon { font-size: 2rem; margin-bottom: 10px; }
.why-card h4 { font-size: 0.9rem; margin-bottom: 4px; color: var(--white); }
.why-card p { font-size: 0.78rem; color: var(--silver-500); }

/* ---- CONTACT STRIP ---- */
.contact-strip { background: var(--navy-950); }
.contact-strip-inner {
  background: var(--gradient-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  padding: 40px;
}
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.contact-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.contact-info-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--white);
  margin-bottom: 2px;
}
.contact-info-item p, .contact-info-item span {
  font-size: 0.82rem;
  color: var(--silver-400);
}
.contact-info-item a {
  color: var(--blue-light);
  transition: var(--transition-fast);
}
.contact-info-item a:hover { color: var(--white); }
.contact-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--navy-900);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-desc {
  font-size: 0.85rem;
  color: var(--silver-500);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 8px;
}
.social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver-400);
  transition: var(--transition-fast);
}
.social-link:hover {
  background: var(--blue-vivid);
  border-color: var(--blue-vivid);
  color: white;
  transform: translateY(-2px);
}

.footer-links h5 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: 0.85rem;
  color: var(--silver-500);
  transition: var(--transition-fast);
}
.footer-links a:hover { color: var(--blue-light); padding-left: 4px; }

.footer-contact h5 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.82rem;
  color: var(--silver-500);
}
.footer-contact-item span:first-child { font-size: 1rem; flex-shrink: 0; }
.footer-contact-item a { color: var(--silver-400); transition: var(--transition-fast); }
.footer-contact-item a:hover { color: var(--blue-light); }

.footer-newsletter { margin-top: 20px; }
.footer-newsletter h6 {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--silver-300);
  margin-bottom: 10px;
}
.newsletter-form { display: flex; gap: 6px; }
.newsletter-form input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  padding: 8px 14px;
  color: var(--white);
  font-size: 0.82rem;
  outline: none;
  transition: var(--transition-fast);
}
.newsletter-form input:focus { border-color: var(--blue-bright); }
.newsletter-form input::placeholder { color: var(--silver-600); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.82rem; color: var(--silver-600); }
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 0.8rem;
  color: var(--silver-600);
  transition: var(--transition-fast);
}
.footer-bottom-links a:hover { color: var(--blue-light); }

/* ---- WHATSAPP FLOAT ---- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 900;
  transition: var(--transition);
  animation: whatsappPulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.6);
  animation: none;
}
.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  background: var(--navy-800);
  color: var(--white);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
  border: 1px solid rgba(255,255,255,0.1);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }
@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.1); }
}

/* ---- BACK TO TOP ---- */
.back-to-top {
  position: fixed;
  bottom: 96px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--navy-700);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver-300);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}
.back-to-top:hover {
  background: var(--blue-vivid);
  color: white;
  transform: translateY(-2px);
}

/* ---- ANIMATIONS ---- */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate="fadeRight"] {
  transform: translateX(32px);
}
[data-animate].animated {
  opacity: 1;
  transform: none;
}
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }

/* ---- PAGE HEADER (for inner pages) ---- */
.page-header {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(21,101,192,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21,101,192,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.page-header-inner {
  position: relative;
  z-index: 1;
}
.page-header h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 8px; }
.page-header p { color: var(--silver-400); font-size: 1rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--silver-500);
  margin-bottom: 12px;
}
.breadcrumb a { color: var(--blue-light); transition: var(--transition-fast); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: var(--silver-600); }

/* ---- FORMS ---- */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--silver-300);
  margin-bottom: 6px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  color: var(--white);
  font-size: 0.9rem;
  font-family: var(--font-body);
  outline: none;
  transition: var(--transition-fast);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--blue-bright);
  background: rgba(255,255,255,0.07);
  box-shadow: 0 0 0 3px rgba(21,101,192,0.15);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--silver-600); }
.form-select { cursor: pointer; }
.form-select option { background: var(--navy-800); }
.form-textarea { resize: vertical; min-height: 120px; }

/* ---- GRID UTILITIES ---- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1200px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
  .footer-contact { grid-column: 1 / -1; }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero-inner { text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-desc { margin: 0 auto 32px; }
  .hero-badge { display: inline-flex; }

  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-info-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-grid { grid-template-columns: 1fr; }
  .offers-grid { grid-template-columns: 1fr; }
  .offer-featured img { height: 200px; }
  .offer-side { flex-direction: row; }
  .offer-small { flex: 1; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .topbar-right { display: none; }
  .topbar-left { gap: 12px; font-size: 0.72rem; }

  .nav {
    position: fixed;
    top: calc(var(--topbar-h) + var(--header-h));
    left: 0;
    right: 0;
    background: var(--navy-900);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 4px;
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    z-index: 999;
  }
  .nav.open { transform: translateY(0); opacity: 1; }
  .nav-link { padding: 12px 16px; border-radius: var(--radius-md); }
  .nav-link.active::after { display: none; }

  .hamburger { display: flex; }
  .header-inner { gap: 12px; }
  .header-actions .btn { display: none; }

  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-info-grid { grid-template-columns: 1fr; }
  .booking-content { flex-direction: column; text-align: center; }
  .booking-actions { justify-content: center; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-contact { grid-column: 1 / -1; }

  .offer-side { flex-direction: column; }
  .offer-small { flex-direction: row; }

  .section { padding: 56px 0; }
  .section-sm { padding: 32px 0; }

  .hero-title { font-size: 2.2rem; }
  .hero-stats { gap: 16px; }
  .stat strong { font-size: 1.2rem; }

  .service-booking-banner { padding: 24px; }
  .contact-strip-inner { padding: 24px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .products-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .why-card { padding: 16px 8px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; align-items: center; }
  .promo-card { flex-direction: column; }
  .promo-img { width: 100%; }
  .promo-img img { height: 120px; width: 100%; }
  .offer-small { flex-direction: column; }
  .offer-small img { width: 100%; height: 120px; }
  .cart-sidebar { width: 100vw; }
  .topbar { display: none; }
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy-900); }
::-webkit-scrollbar-thumb { background: var(--navy-600); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue-vivid); }

/* ---- SELECTION ---- */
::selection { background: rgba(21,101,192,0.4); color: white; }