/* ============================================================
   RAINBOW COMPUTER — index.css
   Primary stylesheet: design tokens, layout, components
   ============================================================ */

/* ── DESIGN TOKENS ──────────────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg-base:        #080c18;
  --bg-surface:     #0d1526;
  --bg-elevated:    #111e35;
  --bg-card:        #131f38;
  --bg-card-hover:  #162444;
  --bg-input:       #0d1829;

  /* Borders */
  --border-subtle:  #1a2d4a;
  --border-default: #1e3560;
  --border-accent:  #0ea5e9;

  /* Brand Colors */
  --blue:           #0ea5e9;
  --blue-bright:    #38bdf8;
  --cyan:           #06b6d4;
  --magenta:        #ec4899;
  --purple:         #8b5cf6;
  --purple-soft:    #a78bfa;
  --gold:           #f59e0b;
  --gold-light:     #fbbf24;
  --red-live:       #ef4444;

  /* Text */
  --text-primary:   #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted:     #4a5e7a;
  --text-accent:    #38bdf8;

  /* Semantic */
  --green:          #10b981;
  --yellow:         #f59e0b;
  --red:            #ef4444;

  /* RGB Gradient Palette */
  --grad-blue-cyan:     linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
  --grad-blue-purple:   linear-gradient(135deg, #0ea5e9 0%, #8b5cf6 100%);
  --grad-magenta-purple:linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
  --grad-gold:          linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
  --grad-hero:          linear-gradient(135deg, #080c18 0%, #0d1526 40%, #0a1930 100%);

  /* Spacing */
  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  32px;
  --space-2xl: 48px;
  --space-3xl: 64px;

  /* Typography */
  --font-sans: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Radii */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-xl:  16px;
  --radius-full:9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.4);
  --shadow-md:  0 4px 12px rgba(0,0,0,0.5);
  --shadow-lg:  0 8px 24px rgba(0,0,0,0.6);
  --shadow-blue:0 0 20px rgba(14,165,233,0.15);
  --shadow-glow:0 0 30px rgba(14,165,233,0.25);

  /* Transitions */
  --transition-fast:   150ms cubic-bezier(0.4,0,0.2,1);
  --transition-normal: 250ms cubic-bezier(0.4,0,0.2,1);

  /* Layout */
  --container-max: 1280px;
  --header-height: 60px;
}

/* ── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  background-color: var(--bg-base);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ── LAYOUT UTILITIES ───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-lg);
}
.section { padding-block: var(--space-3xl); }
.section-sm { padding-block: var(--space-2xl); }

/* ── SECTION HEADERS ────────────────────────────────────────── */
.section-header { margin-bottom: var(--space-xl); }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: var(--space-sm);
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--grad-blue-cyan);
  border-radius: 2px;
}
.section-title {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}
.section-title span {
  background: var(--grad-blue-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-subtitle {
  margin-top: var(--space-sm);
  color: var(--text-secondary);
  font-size: 14px;
}
.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition-normal);
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--grad-blue-cyan);
  color: #fff;
  box-shadow: 0 4px 15px rgba(14,165,233,0.3);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(14,165,233,0.45);
}
.btn-outline {
  border: 1px solid var(--border-default);
  color: var(--text-primary);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(14,165,233,0.05);
}
.btn-ghost {
  color: var(--blue);
  padding: 8px 12px;
  font-size: 13px;
}
.btn-ghost:hover { color: var(--blue-bright); }
.btn-gold {
  background: var(--grad-gold);
  color: #1a1000;
  font-weight: 700;
}
.btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245,158,11,0.35);
}
.btn-sm { padding: 8px 14px; font-size: 13px; }
.btn-lg { padding: 13px 28px; font-size: 15px; }
.btn-wa {
  background: #25d366;
  color: #fff;
  gap: 8px;
}
.btn-wa:hover { background: #20b958; transform: translateY(-1px); }
.btn svg, .btn img { width: 16px; height: 16px; flex-shrink: 0; }

/* ── BADGES & CHIPS ─────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.badge-discount { background: var(--magenta); color: #fff; }
.badge-new      { background: var(--blue); color: #fff; }
.badge-hot      { background: var(--red-live); color: #fff; }
.badge-best     { background: var(--gold); color: #1a1000; }
.badge-live {
  background: var(--red-live);
  color: #fff;
  animation: pulse-live 1.5s ease-in-out infinite;
}
@keyframes pulse-live {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239,68,68,0.6); }
  50%       { box-shadow: 0 0 0 6px rgba(239,68,68,0); }
}

/* Stock status */
.stock { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 600; }
.stock::before { content: ''; width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.stock-ready   { color: var(--green); }
.stock-ready::before   { background: var(--green); box-shadow: 0 0 4px var(--green); }
.stock-limited { color: var(--yellow); }
.stock-limited::before { background: var(--yellow); }
.stock-sold    { color: var(--red); }
.stock-sold::before    { background: var(--red); }

/* Category chip */
.chip {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  background: var(--bg-elevated);
  transition: all var(--transition-fast);
  cursor: pointer;
  white-space: nowrap;
}
.chip:hover, .chip.active {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(14,165,233,0.08);
}
.chip.active { font-weight: 600; }

/* Price */
.price-block { display: flex; flex-direction: column; gap: 2px; }
.price-original {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: line-through;
}
.price-final {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}
.price-final.blue { color: var(--blue); }

/* ═══════════════════════════════════════════════════════════════
   1. HEADER / NAVBAR
═══════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8,12,24,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
}
.header-top {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  height: var(--header-height);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 12px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(0, 168, 255, 0.35));
}
.logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #00a8ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.5px;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0, 168, 255, 0.35);
  font-family: var(--font-sans);
}
.logo-text { 
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.logo-name {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.03em;
  color: #ffffff;
  text-transform: uppercase;
  font-family: var(--font-sans);
  line-height: 1.1;
}
.logo-name span, .logo-name .highlight {
  color: var(--blue, #00b4d8);
}
.logo-tagline {
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #64748b;
  line-height: 1;
}

/* Header Search */
.header-search {
  flex: 1;
  max-width: 540px;
  position: relative;
  display: flex;
  align-items: center;
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}
.header-search:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 2px rgba(14,165,233,0.18);
  background: var(--bg-elevated);
}
.header-category-select {
  height: 38px;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 600;
  padding: 0 12px 0 14px;
  outline: none;
  cursor: pointer;
  white-space: nowrap;
  max-width: 150px;
}
.header-category-select option {
  background: #0b1220;
  color: #fff;
  font-size: 13.5px;
}
.header-search-divider {
  width: 1px;
  height: 20px;
  background: var(--border-subtle);
  flex-shrink: 0;
}
.header-search input {
  flex: 1;
  height: 38px;
  background: transparent;
  border: none;
  padding: 0 40px 0 12px;
  font-size: 13.5px;
  color: var(--text-primary);
  outline: none;
}
.header-search input::placeholder { color: var(--text-muted); }
.header-search-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
}
.header-search-btn:hover { color: var(--blue); }
.header-search-btn svg { width: 17px; height: 17px; }

/* Header Nav */
.header-nav { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.header-nav a {
  padding: 6px 12px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  white-space: nowrap;
}
.header-nav a:hover { color: var(--text-primary); background: var(--bg-elevated); }
.header-nav .btn-wa { padding: 7px 14px; font-size: 13px; border-radius: var(--radius-md); }

/* Mobile toggle */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-sm);
  margin-left: auto;
}
.mobile-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: all var(--transition-fast);
}
.mobile-nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-nav-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav-drawer {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: var(--space-md);
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-surface);
}
.mobile-nav-drawer.open { display: flex; }
.mobile-nav-drawer a {
  padding: 10px var(--space-md);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}
.mobile-nav-drawer a:hover { color: var(--blue); background: var(--bg-elevated); }
.mobile-nav-drawer .btn-wa { text-align: center; justify-content: center; margin-top: var(--space-sm); }

/* Category nav bar */
.category-nav {
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-surface);
}
.category-nav-inner {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  overflow-x: auto;
  scrollbar-width: none;
  padding-block: 8px;
}
.category-nav-inner::-webkit-scrollbar { display: none; }
.category-nav-inner .chip { font-size: 12px; padding: 4px 11px; }

/* ═══════════════════════════════════════════════════════════════
   2. HERO
═══════════════════════════════════════════════════════════════ */
.rakit-hero-banner {
  width: 100%;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
  line-height: 0;
}
.rakit-hero-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* Hero Intro Bar (Option A) — Luxury Cyber Aesthetic */
.hero-intro-bar {
  background: radial-gradient(circle at 10% 20%, rgba(14, 165, 233, 0.12) 0%, transparent 50%),
              radial-gradient(circle at 90% 80%, rgba(168, 85, 247, 0.08) 0%, transparent 50%),
              linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-base) 100%);
  border-bottom: 1px solid var(--border-subtle);
  padding: 56px 0 52px;
  position: relative;
  overflow: hidden;
}
.hero-intro-inner {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 48px;
  align-items: center;
}
.hero-intro-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.35);
  color: #38bdf8;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.15);
}
.hero-intro-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 900;
  line-height: 1.18;
  color: #ffffff;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.hero-intro-title span {
  display: block;
  background: linear-gradient(135deg, #38bdf8 0%, #00b4d8 50%, #e0f2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 4px;
}
.hero-intro-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 640px;
}
.hero-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.btn-hero-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 14.5px;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all var(--transition-fast);
}
.btn-hero-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.55);
  color: #ffffff;
}
.btn-hero-fb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: var(--radius-full);
  background: rgba(24, 119, 242, 0.12);
  border: 1px solid rgba(24, 119, 242, 0.35);
  color: #ffffff;
  font-weight: 800;
  font-size: 14.5px;
  transition: all var(--transition-fast);
}
.btn-hero-fb:hover {
  background: rgba(24, 119, 242, 0.22);
  border-color: #1877f2;
  transform: translateY(-2px);
  color: #ffffff;
}
.hero-cta-row .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 14.5px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  transition: all var(--transition-fast);
}
.hero-cta-row .btn-outline:hover {
  background: rgba(14, 165, 233, 0.15);
  border-color: var(--blue);
  color: #38bdf8;
  transform: translateY(-2px);
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.hero-stats-grid .hero-stat-card {
  background: rgba(8, 14, 28, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-xl);
  padding: 22px 20px;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.hero-stats-grid .hero-stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(14, 165, 233, 0.5);
  box-shadow: 0 12px 30px rgba(14, 165, 233, 0.18);
}
.hero-stat-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.hero-stat-number {
  font-size: 24px;
  font-weight: 900;
  color: #ffffff;
  font-family: 'JetBrains Mono', monospace;
  line-height: 1.1;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (max-width: 1024px) {
  .hero-intro-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
@media (max-width: 768px) {
  .hero-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }
  .hero-cta-row {
    width: 100%;
    flex-direction: column;
  }
  .hero-cta-row a {
    width: 100%;
    justify-content: center;
  }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--space-3xl);
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(14,165,233,0.3);
  background: rgba(14,165,233,0.06);
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: var(--space-lg);
  letter-spacing: 0.04em;
}
.hero-eyebrow span { width: 6px; height: 6px; background: var(--blue); border-radius: 50%; animation: pulse-dot 2s ease-in-out infinite; }
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}
.hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}
.hero-title .gradient-text {
  background: var(--grad-blue-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-title .gradient-text-pink {
  background: var(--grad-magenta-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-services {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}
.hero-service-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
}
.hero-service-tag .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); flex-shrink: 0; }
.hero-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  max-width: 480px;
}
.hero-cta-row { display: flex; gap: var(--space-md); flex-wrap: wrap; margin-bottom: var(--space-xl); }
.hero-trust {
  display: flex;
  gap: var(--space-xl);
  flex-wrap: wrap;
}
.hero-trust-item { display: flex; align-items: center; gap: var(--space-sm); }
.hero-trust-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-md);
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.hero-trust-text { font-size: 12px; }
.hero-trust-text strong { display: block; font-weight: 700; color: var(--text-primary); font-size: 13px; }
.hero-trust-text span { color: var(--text-muted); }

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-media-frame {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--bg-elevated);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-default);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}
.hero-media-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,165,233,0.05) 0%, rgba(139,92,246,0.05) 100%);
}
.hero-media-placeholder-icon {
  font-size: 64px;
  opacity: 0.15;
}
.hero-media-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Hero floating badges */
.hero-badge-float {
  position: absolute;
  padding: 8px 12px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  animation: float-badge 3s ease-in-out infinite;
}
.hero-badge-float.badge-1 { top: 16px; left: -16px; animation-delay: 0s; }
.hero-badge-float.badge-2 { bottom: 24px; right: -16px; animation-delay: 1.5s; }
.hero-badge-float .dot-green { width: 8px; height: 8px; background: var(--green); border-radius: 50%; flex-shrink: 0; box-shadow: 0 0 6px var(--green); }
@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* ═══════════════════════════════════════════════════════════════
   3. SPECIAL PROMOTION
═══════════════════════════════════════════════════════════════ */
.promo-section { padding-block: var(--space-2xl); }
.promo-banner {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  display: grid;
  grid-template-columns: 1fr 320px;
  overflow: hidden;
  position: relative;
}
.promo-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(236,72,153,0.06) 0%, rgba(139,92,246,0.04) 50%, transparent 100%);
  pointer-events: none;
}
.promo-content { padding: var(--space-2xl); display: flex; flex-direction: column; justify-content: center; }
.promo-badge-row { display: flex; align-items: center; gap: var(--space-sm); margin-bottom: var(--space-md); }
.promo-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--magenta);
}
.promo-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}
.promo-desc { font-size: 14px; color: var(--text-secondary); margin-bottom: var(--space-lg); max-width: 400px; }
.promo-pricing { display: flex; align-items: center; gap: var(--space-lg); margin-bottom: var(--space-lg); }
.promo-original { font-size: 14px; color: var(--text-muted); text-decoration: line-through; }
.promo-discount {
  padding: 4px 10px;
  background: var(--magenta);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
}
.promo-final { font-size: 1.8rem; font-weight: 900; color: var(--blue); }
.promo-media {
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-xl);
  border-left: 1px solid var(--border-subtle);
  position: relative;
}
.promo-media-placeholder {
  font-size: 80px;
  opacity: 0.1;
}
.promo-media-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════
   4. BEST SELLER
═══════════════════════════════════════════════════════════════ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
.product-card {
  background: linear-gradient(180deg, rgba(13, 21, 38, 0.95) 0%, rgba(9, 15, 29, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}
.product-card:hover {
  border-color: rgba(14, 165, 233, 0.45);
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45), 0 0 24px rgba(14, 165, 233, 0.18);
  background: linear-gradient(180deg, rgba(16, 26, 48, 0.98) 0%, rgba(10, 18, 35, 1) 100%);
}
.product-media {
  aspect-ratio: 1 / 1;
  background: radial-gradient(circle at center, rgba(30, 41, 59, 0.7) 0%, rgba(10, 15, 30, 0.95) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.product-media-placeholder {
  font-size: 56px;
  opacity: 0.15;
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-card:hover .product-media img {
  transform: scale(1.05);
}
.product-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}
.product-body {
  padding: 16px 16px 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.product-category {
  font-size: 10.5px;
  color: var(--blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.product-name {
  font-size: 13.5px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 38px;
  letter-spacing: -0.01em;
}
.product-spec {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 32px;
}
.product-footer {
  padding: 0 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}
.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  border-top: 1px dashed rgba(255, 255, 255, 0.07);
  padding-top: 10px;
}
.product-price-original {
  font-size: 11.5px;
  color: var(--text-muted);
  text-decoration: line-through;
}
.product-price-final {
  font-size: 15.5px;
  font-weight: 900;
  color: #38bdf8;
  letter-spacing: -0.02em;
}
.product-stock-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.product-stock-row .stock-ready {
  font-size: 11px;
  font-weight: 600;
  color: #10b981;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.product-stock-row .stock-ready::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.8);
}
.btn-product-detail {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #38e1ff 0%, #10b981 100%);
  color: #03131e;
  font-size: 13.5px;
  font-weight: 900;
  letter-spacing: -0.01em;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(56, 225, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all var(--transition-fast);
  margin-top: 4px;
}
.btn-product-detail:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(16, 185, 129, 0.45), 0 0 16px rgba(56, 225, 255, 0.35);
  color: #000000;
}
.btn-product-detail:active {
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════
   5. TESTIMONIALS
═══════════════════════════════════════════════════════════════ */
.testimonials-section { background: var(--bg-surface); position: relative; overflow: hidden; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

/* ── GOOGLE REVIEWS SLIDER & FILTER TABS ── */
.gr-filter-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
  overflow-x: auto;
  padding: 4px 2px 8px;
  scrollbar-width: none;
}
.gr-filter-tabs::-webkit-scrollbar { display: none; }
.gr-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
}
.gr-tab-btn:hover {
  background: rgba(14, 165, 233, 0.12);
  border-color: rgba(14, 165, 233, 0.35);
  color: #fff;
}
.gr-tab-btn.active {
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
  border-color: #38bdf8;
  color: #fff;
  box-shadow: 0 4px 16px rgba(14, 165, 233, 0.4);
}

.gr-slider-nav-btns { display: flex; gap: 8px; }
.gr-nav-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
}
.gr-nav-btn:hover {
  background: rgba(14, 165, 233, 0.25);
  border-color: #38bdf8;
  transform: translateY(-1px);
}
.gr-nav-btn:active { transform: translateY(1px); }

.gr-slider-container {
  position: relative;
  width: 100%;
}

/* Side Floating Nav Buttons */
.gr-side-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
}
.gr-side-btn:hover {
  background: #0ea5e9;
  border-color: #38bdf8;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 20px rgba(14, 165, 233, 0.6);
}
.gr-side-btn:active { transform: translateY(-50%) scale(0.95); }
.gr-side-left { left: -16px; }
.gr-side-right { right: -16px; }
@media (max-width: 768px) {
  .gr-side-btn { display: none; }
}

.gr-slider-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 20px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  touch-action: pan-y pinch-zoom;
}
.gr-slider-track::-webkit-scrollbar { display: none; }
.gr-slider-track.active-drag {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
  user-select: none;
}

/* Card Styling - Uniform Height & Clean Layout */
.gr-card {
  flex: 0 0 360px;
  width: 360px;
  height: 420px;
  max-height: 420px;
  scroll-snap-align: start;
  background: rgba(22, 30, 49, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  position: relative;
  box-sizing: border-box;
}
@media (max-width: 640px) {
  .gr-card { flex: 0 0 300px; width: 300px; height: 400px; max-height: 400px; padding: 18px; }
}
.gr-card:hover {
  border-color: rgba(14, 165, 233, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), 0 0 20px rgba(14, 165, 233, 0.15);
}

.gr-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.gr-avatar-wrap {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(14, 165, 233, 0.35);
  background: var(--bg-elevated);
  position: relative;
}
.gr-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gr-avatar-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  color: #38bdf8;
  background: rgba(14, 165, 233, 0.15);
}
.gr-user-info { flex: 1; min-width: 0; }
.gr-user-name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}
.gr-user-name {
  font-size: 14.5px;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gr-google-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.25);
  padding: 2px 7px;
  border-radius: 6px;
  flex-shrink: 0;
}
.gr-stars-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 3px;
}
.gr-stars {
  color: #fbbf24;
  font-size: 13px;
  letter-spacing: 1px;
}
.gr-date {
  font-size: 11px;
  color: var(--text-muted);
}
.gr-product-tag {
  font-size: 11.5px;
  color: #38bdf8;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(56, 189, 248, 0.2);
  padding: 5px 10px;
  border-radius: 8px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  width: fit-content;
  max-width: 100%;
}
.gr-product-tag span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Scrollable Text Body for Uniform Heights */
.gr-text-wrap {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(56, 189, 248, 0.2) transparent;
}
.gr-text-wrap::-webkit-scrollbar { width: 4px; }
.gr-text-wrap::-webkit-scrollbar-thumb {
  background: rgba(56, 189, 248, 0.25);
  border-radius: 4px;
}
.gr-text {
  font-size: 13.5px;
  color: #cbd5e1;
  line-height: 1.65;
  margin: 0;
  word-break: break-word;
}

.gr-photos-strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-top: 6px;
  scrollbar-width: none;
  flex-shrink: 0;
}
.gr-photos-strip::-webkit-scrollbar { display: none; }
.gr-photo-thumb {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.2s, border-color 0.2s;
  display: block;
}
.gr-photo-thumb:hover {
  transform: scale(1.1);
  border-color: #38bdf8;
  z-index: 2;
}
.gr-photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gr-track-progress-wrap {
  width: 140px;
  height: 5px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
}
.gr-track-progress-bar {
  height: 100%;
  width: 25%;
  background: linear-gradient(90deg, #0ea5e9, #38bdf8);
  border-radius: 999px;
  transition: width 0.15s ease-out;
}

/* ═══════════════════════════════════════════════════════════════
   6. LIVE AUCTION
═══════════════════════════════════════════════════════════════ */
.auction-section { background: var(--bg-base); }
.auction-wrapper {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.auction-header-bar {
  background: linear-gradient(90deg, #1a0a14, #1a1030);
  border-bottom: 1px solid rgba(236,72,153,0.2);
  padding: var(--space-md) var(--space-xl);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.auction-header-bar .badge-live { font-size: 12px; padding: 5px 10px; }
.auction-header-title { font-size: 14px; font-weight: 700; color: var(--text-primary); }
.auction-header-sub { font-size: 12px; color: var(--text-muted); margin-left: auto; }
.auction-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
}
.auction-main { padding: 22px 24px; }
.auction-main-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 22px;
  align-items: center;
}
.auction-product-frame {
  height: 240px;
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.auction-product-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-normal);
}
.auction-product-frame:hover img {
  transform: scale(1.04);
}
.auction-product-frame span {
  font-size: 64px;
  opacity: 0.15;
}
.auction-main-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.auction-product-name { font-size: 1.15rem; font-weight: 800; color: var(--text-primary); margin-bottom: 6px; line-height: 1.3; }
.auction-product-desc { font-size: 13px; color: var(--text-secondary); margin-bottom: 16px; line-height: 1.6; }
.auction-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.auction-stat {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  text-align: center;
}
.auction-stat-label { font-size: 10.5px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 3px; }
.auction-stat-value { font-size: 1rem; font-weight: 800; }
.auction-stat-value.blue  { color: var(--blue); }
.auction-stat-value.gold  { color: var(--gold); }
.auction-stat-value.red   { color: var(--red-live); font-family: var(--font-mono); }

/* Countdown */
.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-family: var(--font-mono);
}
.countdown-unit { text-align: center; }
.countdown-num {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--red-live);
  line-height: 1;
}
.countdown-lbl { font-size: 8.5px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); }
.countdown-sep { font-size: 1.05rem; font-weight: 900; color: var(--red-live); opacity: 0.6; margin-top: -3px; }

/* Auction sidebar */
.auction-sidebar {
  border-left: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
}
.auction-sidebar-header {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.auction-sidebar-title { font-size: 13px; font-weight: 700; color: var(--text-primary); }
.top-bidders { flex: 1; padding: 14px 18px; display: flex; flex-direction: column; gap: 8px; }
.bidder-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: var(--radius-md);
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
}
.bidder-row.rank-1 { border-color: rgba(245,158,11,0.35); background: rgba(245,158,11,0.04); }
.bidder-row.rank-2 { border-color: rgba(148,163,184,0.25); }
.bidder-row.rank-3 { border-color: rgba(180,113,58,0.2); }
.bidder-rank {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}
.rank-1 .bidder-rank { background: var(--gold); color: #1a1000; }
.rank-2 .bidder-rank { background: #94a3b8; color: #0d1526; }
.rank-3 .bidder-rank { background: #b4713a; color: #fff; }
.bidder-name { flex: 1; font-size: 12.5px; font-weight: 600; color: var(--text-primary); }
.bidder-amount { font-size: 12.5px; font-weight: 700; color: var(--gold); }
.auction-cta { padding: 14px 18px; border-top: 1px solid var(--border-subtle); }
.auction-cta .btn { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════════════════════════
   7. PRODUCT CATALOG
═══════════════════════════════════════════════════════════════ */
.catalog-section { background: var(--bg-surface); }
.catalog-controls {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}
.catalog-search-wrap { position: relative; flex: 1; min-width: 200px; max-width: 380px; }
.catalog-search-wrap input {
  width: 100%;
  height: 40px;
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0 40px 0 14px;
  font-size: 14px;
  color: var(--text-primary);
  transition: border-color var(--transition-fast);
}
.catalog-search-wrap input::placeholder { color: var(--text-muted); }
.catalog-search-wrap input:focus { outline: none; border-color: var(--blue); }
.catalog-search-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}
.catalog-search-icon svg { width: 16px; height: 16px; }
.catalog-sort {
  height: 40px;
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0 12px;
  font-size: 13px;
  color: var(--text-primary);
  cursor: pointer;
  appearance: none;
  padding-right: 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2394a3b8'%3E%3Cpath d='M5.23 7.21a.75.75 0 011.06.02L10 11.168l3.71-3.938a.75.75 0 111.08 1.04l-4.25 4.5a.75.75 0 01-1.08 0l-4.25-4.5a.75.75 0 01.02-1.06z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 16px;
}
.catalog-sort:focus { outline: none; border-color: var(--blue); }
.catalog-filter-chips {
  display: flex;
  gap: var(--space-xs);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}
.catalog-load-more { text-align: center; }

/* ═══════════════════════════════════════════════════════════════
   8. SERVICES
═══════════════════════════════════════════════════════════════ */
.services-section { 
  background: radial-gradient(circle at 50% 10%, rgba(14, 165, 233, 0.08) 0%, transparent 60%), var(--bg-base);
  position: relative;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.service-card {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid var(--border-default);
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
  position: relative;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5), 0 0 25px rgba(14, 165, 233, 0.18);
}
.service-card.maintenance:hover {
  border-color: rgba(14, 165, 233, 0.55);
}
.service-card.build:hover {
  border-color: rgba(168, 85, 247, 0.55);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5), 0 0 25px rgba(168, 85, 247, 0.18);
}
.service-card-header {
  padding: 34px 32px 28px;
  position: relative;
  overflow: hidden;
}
.service-card.maintenance .service-card-header {
  background: linear-gradient(145deg, rgba(14, 165, 233, 0.15) 0%, rgba(13, 32, 64, 0.85) 50%, rgba(7, 14, 28, 0.95) 100%);
  border-bottom: 1px solid rgba(14, 165, 233, 0.22);
}
.service-card.build .service-card-header {
  background: linear-gradient(145deg, rgba(168, 85, 247, 0.15) 0%, rgba(35, 14, 60, 0.85) 50%, rgba(10, 6, 22, 0.95) 100%);
  border-bottom: 1px solid rgba(168, 85, 247, 0.22);
}
.service-card-header::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  opacity: 0.18;
  pointer-events: none;
  filter: blur(28px);
}
.service-card.maintenance .service-card-header::after { background: var(--blue); }
.service-card.build .service-card-header::after { background: #c084fc; }

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: transform 0.3s ease;
}
.service-card:hover .service-icon {
  transform: scale(1.08) rotate(3deg);
}
.service-card.maintenance .service-icon { 
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.25), rgba(14, 165, 233, 0.08)); 
  border: 1px solid rgba(14, 165, 233, 0.45);
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.2);
}
.service-card.build .service-icon { 
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.25), rgba(168, 85, 247, 0.08)); 
  border: 1px solid rgba(168, 85, 247, 0.45);
  box-shadow: 0 8px 20px rgba(168, 85, 247, 0.2);
}
.service-name {
  font-size: 1.45rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 8px;
}
.service-card.maintenance .service-name span { 
  background: linear-gradient(90deg, #38bdf8, #00b4d8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.service-card.build .service-name span { 
  background: linear-gradient(90deg, #c084fc, #e879f9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.service-tagline { 
  font-size: 14.5px; 
  color: var(--text-secondary); 
  line-height: 1.6;
}

.service-items { 
  padding: 30px 32px 32px; 
  background: rgba(8, 14, 28, 0.6); 
  flex: 1; 
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.service-items-grid { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 12px; 
  margin-bottom: 28px; 
}
.service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  font-size: 13.5px;
  font-weight: 600;
  color: #e2e8f0;
  transition: all var(--transition-fast);
}
.service-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateX(3px);
}
.service-item-icon {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-card.maintenance .service-item-icon { 
  background: rgba(14, 165, 233, 0.16); 
  color: #38bdf8; 
  border: 1px solid rgba(14, 165, 233, 0.3);
}
.service-card.build .service-item-icon { 
  background: rgba(168, 85, 247, 0.16); 
  color: #c084fc; 
  border: 1px solid rgba(168, 85, 247, 0.3);
}
.service-item-icon svg {
  width: 14px;
  height: 14px;
}
.service-cta-row { 
  display: flex; 
  gap: 12px; 
  flex-wrap: wrap; 
  align-items: center;
}
.service-cta-row .btn {
  padding: 12px 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.service-card.maintenance .btn-primary { 
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%); 
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.service-card.maintenance .btn-primary:hover {
  box-shadow: 0 12px 30px rgba(14, 165, 233, 0.55);
}
.service-card.build .btn-primary { 
  background: linear-gradient(135deg, #a855f7 0%, #7e22ce 100%); 
  box-shadow: 0 8px 24px rgba(168, 85, 247, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.service-card.build .btn-primary:hover {
  box-shadow: 0 12px 30px rgba(168, 85, 247, 0.55);
}
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card-header { padding: 26px 22px; }
  .service-items { padding: 22px; }
}
@media (max-width: 600px) {
  .service-items-grid { grid-template-columns: 1fr; }
}

/* ── GOOGLE REVIEWS REAL-TIME BADGE ── */
.google-live-card {
  background: linear-gradient(135deg, rgba(13, 21, 38, 0.95) 0%, rgba(8, 14, 28, 0.98) 100%);
  border: 1px solid rgba(66, 133, 244, 0.35);
  border-radius: var(--radius-2xl);
  padding: 22px 28px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), 0 0 20px rgba(66, 133, 244, 0.1);
  position: relative;
  overflow: hidden;
}
.google-live-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(66, 133, 244, 0.25) 0%, transparent 70%);
  pointer-events: none;
}
.google-live-left {
  display: flex;
  align-items: center;
  gap: 18px;
}
.google-g-logo {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #ffffff;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  flex-shrink: 0;
}
.google-score-num {
  font-size: 30px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.google-stars-row {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #fbbc04;
  font-size: 15px;
  margin: 4px 0;
}
.google-sub-label {
  font-size: 12.5px;
  color: var(--text-secondary);
  font-weight: 500;
}
.google-live-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-google-maps {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #4285f4;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(66, 133, 244, 0.4);
  transition: all var(--transition-fast);
}
.btn-google-maps:hover {
  background: #3367d6;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(66, 133, 244, 0.6);
  color: #fff;
}

/* 9. HARDWARE BRANDS */
.brands-section { background: var(--bg-surface); }
.brands-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: var(--space-md);
}
.brand-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 10px;
  transition: all var(--transition-normal);
  cursor: default;
  min-height: 86px;
}
.brand-item:hover {
  border-color: rgba(14,165,233,0.35);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.brand-logo-wrap {
  width: 58px;
  height: 38px;
  background: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.brand-logo-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.brand-logo-placeholder {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-align: center;
}
.brand-name { font-size: 10.5px; color: var(--text-muted); font-weight: 600; text-align: center; }

/* 10. STORE INFO */
.store-section { background: var(--bg-base); }
.store-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: stretch;
}
.store-info-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
}
.store-brand-header { display: flex; align-items: center; gap: var(--space-md); margin-bottom: var(--space-xl); }
.store-logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: var(--radius-lg);
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0, 168, 255, 0.25);
}
.store-brand-name { font-size: 1.25rem; font-weight: 800; color: var(--text-primary); }
.store-brand-sub { font-size: 12.5px; color: var(--text-muted); margin-top: 2px; }
.store-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: var(--space-xl); }
.store-details { display: flex; flex-direction: column; gap: var(--space-md); margin-bottom: var(--space-xl); flex: 1; }
.store-detail-row { display: flex; gap: var(--space-md); align-items: flex-start; }
.store-detail-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.store-detail-content { flex: 1; }
.store-detail-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 3px; font-weight: 700; }
.store-detail-value { font-size: 14px; color: var(--text-primary); font-weight: 500; line-height: 1.5; }
.store-detail-value a { color: var(--blue); text-decoration: none; }
.store-detail-value a:hover { text-decoration: underline; }
.store-social { display: flex; gap: var(--space-sm); flex-wrap: wrap; margin-bottom: var(--space-lg); }
.store-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--border-default);
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}
.store-social-btn:hover { border-color: var(--blue); color: var(--blue); background: rgba(14,165,233,0.05); }
.store-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: auto; padding-top: 12px; }

/* Map block */
.store-map-block {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.store-map-frame {
  width: 100%;
  flex: 1;
  min-height: 380px;
  background: #0d1526;
}
.store-map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.store-map-footer {
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-card);
  margin-top: auto;
}
.store-map-address { font-size: 13px; color: var(--text-secondary); flex: 1; }

/* 11. FOOTER */
.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  padding-top: var(--space-3xl);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr;
  gap: clamp(24px, 4vw, 56px);
  margin-bottom: var(--space-3xl);
  align-items: start;
}
.footer-brand .logo { margin-bottom: var(--space-md); }
.footer-brand-desc { font-size: 13.5px; color: var(--text-muted); line-height: 1.75; margin-bottom: var(--space-lg); max-width: 340px; }
.footer-social { display: flex; gap: var(--space-sm); }
.footer-social-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-md);
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all var(--transition-fast);
  color: var(--text-muted);
}
.footer-social-icon:hover { border-color: var(--blue); color: var(--blue); background: rgba(14,165,233,0.06); }
.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}
.footer-links a:hover { color: var(--blue); }
.footer-contact { display: flex; flex-direction: column; gap: var(--space-md); }
.footer-contact-item { display: flex; align-items: flex-start; gap: var(--space-sm); font-size: 13px; color: var(--text-muted); }
.footer-contact-item svg, .footer-contact-item span.icon { font-size: 15px; flex-shrink: 0; margin-top: 1px; }
.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-block: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.footer-copy { font-size: 12px; color: var(--text-muted); }
.footer-bottom-links { display: flex; gap: var(--space-lg); }
.footer-bottom-links a { font-size: 12px; color: var(--text-muted); }
.footer-bottom-links a:hover { color: var(--blue); }

/* 12. FLOATING WHATSAPP */
.float-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--space-sm);
}
.float-wa-bubble {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 10px 14px;
  font-size: 13px;
  color: var(--text-primary);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  animation: bubble-in 0.3s ease;
  display: none;
}
.float-wa:hover .float-wa-bubble { display: block; }
.float-wa-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: all var(--transition-normal);
  flex-shrink: 0;
}
.float-wa-btn:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(37,211,102,0.55); }
.float-wa-btn svg { width: 28px; height: 28px; fill: #fff; }

/* DIVIDER */
.divider {
  height: 1px;
  background: var(--border-subtle);
  border: none;
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: var(--border-default); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue); }