/* ==========================================================================
   DREAMWARE TECHNOLOGY - LUXURY CYBER-TECH DESIGN SYSTEM
   Brand: Dreamware Technology (Durban North, South Africa)
   Colors: Signature Sky (#5fb9e8), Cyber Cyan (#00e5ff), Deep Obsidian Slate
   Mobile & Cloudflare Pages Optimized
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700&family=JetBrains+Mono:wght@400;600&display=swap');

:root {
  --bg-primary: #070a12;
  --bg-secondary: #0d1322;
  --bg-card: rgba(16, 24, 40, 0.72);
  --bg-card-hover: rgba(23, 34, 58, 0.88);
  --bg-glass: rgba(13, 19, 34, 0.75);
  
  --accent-sky: #5fb9e8;
  --accent-cyan: #00e5ff;
  --accent-purple: #9d4edd;
  --accent-pink: #f72585;
  --accent-emerald: #10b981;
  --accent-amber: #f59e0b;
  --whatsapp-green: #25d366;
  --whatsapp-dark: #075e54;
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-faint: #475569;
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-accent: rgba(95, 185, 232, 0.35);
  --border-glow: 0 0 20px rgba(0, 229, 255, 0.22);
  
  --shadow-lg: 0 20px 40px -15px rgba(0, 0, 0, 0.7);
  --shadow-neon: 0 0 25px rgba(95, 185, 232, 0.3);
  --shadow-wa: 0 10px 30px rgba(37, 211, 102, 0.35);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  
  --transition-smooth: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

/* Reset & Mobile Viewport Protection */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.6;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(95, 185, 232, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 85% 65%, rgba(157, 78, 221, 0.07) 0%, transparent 45%),
    radial-gradient(circle at 50% 90%, rgba(0, 229, 255, 0.05) 0%, transparent 40%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, var(--accent-sky) 50%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.badge-cyan {
  background: rgba(0, 229, 255, 0.12);
  color: var(--accent-cyan);
  border: 1px solid rgba(0, 229, 255, 0.3);
}

.badge-sky {
  background: rgba(95, 185, 232, 0.15);
  color: var(--accent-sky);
  border: 1px solid rgba(95, 185, 232, 0.3);
}

.badge-green {
  background: rgba(16, 185, 129, 0.12);
  color: var(--accent-emerald);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-amber {
  background: rgba(245, 158, 11, 0.12);
  color: var(--accent-amber);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.badge-pink {
  background: rgba(247, 37, 133, 0.12);
  color: var(--accent-pink);
  border: 1px solid rgba(247, 37, 133, 0.3);
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-sky), #0284c7);
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(95, 185, 232, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(95, 185, 232, 0.55);
  background: linear-gradient(135deg, #6ec6f3, #0369a1);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-glow {
  background: linear-gradient(135deg, #00e5ff, var(--accent-sky));
  color: #070a12;
  font-weight: 700;
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.4);
}

.btn-glow:hover {
  box-shadow: 0 0 35px rgba(0, 229, 255, 0.65);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.6);
}

/* ==========================================================================
   TOP TICKER STRIP
   ========================================================================== */
.top-ticker {
  background: linear-gradient(90deg, #0b1220 0%, #111d33 50%, #0b1220 100%);
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.82rem;
  padding: 8px 0;
  color: var(--text-muted);
}

.top-ticker-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ticker-item strong {
  color: var(--accent-sky);
}

.ticker-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.ticker-link {
  color: var(--text-muted);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.ticker-link:hover {
  color: var(--accent-sky);
}

/* ==========================================================================
   STICKY GLASSMORPHIC HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 10, 18, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition-smooth);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 76px;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-badge {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  border: 1px solid var(--accent-sky);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--accent-sky);
  box-shadow: 0 0 15px rgba(95, 185, 232, 0.3);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #ffffff;
  line-height: 1.1;
}

.logo-title span {
  color: var(--accent-sky);
}

.logo-sub {
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

/* Live Search Bar */
.search-wrapper {
  flex: 1;
  max-width: 460px;
  position: relative;
}

.search-input-box {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input {
  width: 100%;
  padding: 10px 18px 10px 42px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: #ffffff;
  font-size: 0.88rem;
  transition: var(--transition-smooth);
}

.search-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-sky);
  box-shadow: 0 0 15px rgba(95, 185, 232, 0.25);
}

.search-icon {
  position: absolute;
  left: 16px;
  color: var(--text-muted);
  font-size: 0.92rem;
  pointer-events: none;
}

/* Search Dropdown Results */
.search-results-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #0f172a;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: none;
  z-index: 50;
  max-height: 380px;
  overflow-y: auto;
}

.search-results-dropdown.active {
  display: block;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-item:hover {
  background: rgba(95, 185, 232, 0.1);
}

.search-result-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  background: #1e293b;
  border-radius: var(--radius-sm);
  padding: 4px;
}

.search-result-info {
  flex: 1;
}

.search-result-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: #ffffff;
}

.search-result-cat {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.search-result-price {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--accent-cyan);
  font-size: 0.92rem;
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-icon-btn {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  font-size: 1.1rem;
  transition: var(--transition-smooth);
}

.nav-icon-btn:hover {
  background: rgba(95, 185, 232, 0.15);
  border-color: var(--accent-sky);
  color: var(--accent-sky);
  transform: translateY(-2px);
}

.badge-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--accent-pink);
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px rgba(247, 37, 133, 0.6);
}

/* Mobile Hamburger Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: #ffffff;
  font-size: 1.25rem;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.mobile-menu-toggle:hover {
  background: rgba(95, 185, 232, 0.15);
  border-color: var(--accent-sky);
  color: var(--accent-sky);
}

/* ==========================================================================
   HEADER CATEGORY BAR (SCROLLBAR 100% ELIMINATED)
   ========================================================================== */
.nav-categories {
  background: rgba(13, 19, 34, 0.7);
  border-bottom: 1px solid var(--border-subtle);
  padding: 8px 0;
  position: relative;
  overflow: hidden; /* Prevent container level scrollbars */
}

.category-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px 12px;
  list-style: none;
  flex-wrap: wrap; /* Wraps cleanly on desktop, no scroll container */
  margin: 0;
  padding: 2px 0;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE & Edge */
}

.category-links::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
  width: 0;
  height: 0;
}

.category-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.category-link:hover, .category-link.active {
  color: #ffffff;
  background: rgba(95, 185, 232, 0.14);
  border-color: rgba(95, 185, 232, 0.35);
  box-shadow: 0 0 12px rgba(95, 185, 232, 0.2);
}

.category-link.highlight {
  color: var(--accent-cyan);
  border-color: rgba(0, 229, 255, 0.25);
}

/* ==========================================================================
   MOBILE NAVIGATION DRAWER (Slide-out Drawer)
   ========================================================================== */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: -340px;
  width: 320px;
  max-width: 85vw;
  height: 100%;
  background: #0d1322;
  border-right: 1px solid var(--border-subtle);
  z-index: 1501;
  display: flex;
  flex-direction: column;
  transition: left 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 10px 0 40px rgba(0, 0, 0, 0.8);
  overflow-y: auto;
}

.mobile-nav-drawer.active {
  left: 0;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 18px;
  border-bottom: 1px solid var(--border-subtle);
}

.mobile-nav-close {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.mobile-nav-close:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.mobile-search-box {
  padding: 14px 18px;
  position: relative;
  border-bottom: 1px solid var(--border-subtle);
}

.mobile-search-box i {
  position: absolute;
  left: 32px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.88rem;
}

.mobile-search-box input {
  width: 100%;
  padding: 10px 14px 10px 38px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: #ffffff;
  font-size: 0.85rem;
  outline: none;
}

.mobile-search-box input:focus {
  border-color: var(--accent-sky);
}

.mobile-nav-body {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav-section-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-sky);
}

.mobile-category-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-cat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  transition: var(--transition-smooth);
}

.mobile-cat-item:hover, .mobile-cat-item.active {
  color: #ffffff;
  background: rgba(95, 185, 232, 0.12);
  border-color: rgba(95, 185, 232, 0.25);
}

.mobile-cat-item.highlight {
  color: var(--accent-cyan);
}

.mobile-cat-item.highlight-power {
  color: var(--accent-amber);
}

.mobile-actions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mobile-action-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: #ffffff;
}

.mobile-action-card i {
  font-size: 1.2rem;
  color: var(--accent-sky);
}

.mobile-contact-card {
  padding: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.mobile-contact-line {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-contact-line i {
  color: var(--accent-sky);
}

/* ==========================================================================
   HERO SECTION - BATTLESTATION SHOWCASE
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 50px 0 70px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 40px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(95, 185, 232, 0.1);
  border: 1px solid rgba(95, 185, 232, 0.3);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--accent-sky);
  margin-bottom: 20px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-emerald);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-emerald);
  animation: pulseAnimation 2s infinite;
}

@keyframes pulseAnimation {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  line-height: 1.12;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  max-width: 580px;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-metrics {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  flex-wrap: wrap;
}

.metric-item {
  display: flex;
  flex-direction: column;
}

.metric-number {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
}

.metric-number span {
  color: var(--accent-cyan);
}

.metric-label {
  font-size: 0.76rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hero Visual Showcase */
.hero-rig-card {
  position: relative;
  background: linear-gradient(145deg, rgba(19, 29, 49, 0.75), rgba(9, 13, 22, 0.95));
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg), var(--shadow-neon);
  overflow: hidden;
}

.hero-rig-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(95, 185, 232, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.rig-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 8px;
}

.rig-image-box {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.rig-image-box img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0, 229, 255, 0.25));
  transition: transform 0.4s ease;
}

.hero-rig-card:hover .rig-image-box img {
  transform: scale(1.04) translateY(-4px);
}

.rig-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.spec-chip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  font-size: 0.74rem;
  display: flex;
  flex-direction: column;
}

.spec-chip span {
  color: var(--text-muted);
  font-size: 0.66rem;
  text-transform: uppercase;
}

.spec-chip strong {
  color: #ffffff;
  font-weight: 700;
  margin-top: 2px;
}

.rig-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
  gap: 12px;
}

.rig-price-box {
  display: flex;
  flex-direction: column;
}

.rig-price-tag {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.rig-price-val {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--accent-cyan);
}

/* ==========================================================================
   TRUST / VALUE PROPOSITION STRIP
   ========================================================================== */
.trust-strip {
  padding: 26px 0;
  background: rgba(13, 19, 34, 0.5);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

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

.trust-card {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(95, 185, 232, 0.12);
  border: 1px solid rgba(95, 185, 232, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-sky);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.trust-content h4 {
  font-size: 0.92rem;
  margin-bottom: 2px;
}

.trust-content p {
  font-size: 0.76rem;
  color: var(--text-muted);
}

/* ==========================================================================
   SECTION HEADINGS & CONTROLS
   ========================================================================== */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.section-subtitle {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-sky);
  margin-bottom: 6px;
  display: block;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  font-weight: 800;
}

/* Flash Deals Timer */
.deals-timer-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(247, 37, 133, 0.1);
  border: 1px solid rgba(247, 37, 133, 0.3);
  padding: 8px 16px;
  border-radius: var(--radius-full);
}

.deals-timer-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-pink);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.countdown-digits {
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 1.05rem;
  color: #ffffff;
}

/* ==========================================================================
   PRODUCTS GRID & CARDS
   ========================================================================== */
.products-section {
  padding: 70px 0;
}

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

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-lg), 0 0 25px rgba(95, 185, 232, 0.2);
  background: var(--bg-card-hover);
}

.product-badges {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}

.wishlist-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(13, 19, 34, 0.7);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition-smooth);
  z-index: 2;
}

.wishlist-btn:hover, .wishlist-btn.active {
  color: var(--accent-pink);
  border-color: var(--accent-pink);
  background: rgba(247, 37, 133, 0.15);
  transform: scale(1.1);
}

.product-thumb {
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 14px 0;
  position: relative;
}

.product-thumb img {
  max-height: 100%;
  max-width: 90%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-card:hover .product-thumb img {
  transform: scale(1.06);
}

.product-category {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-sky);
  font-weight: 600;
  margin-bottom: 4px;
}

.product-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
  margin-bottom: 8px;
  height: 40px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-stock {
  font-size: 0.74rem;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.stock-in { color: var(--accent-emerald); }
.stock-supplier { color: var(--accent-sky); }
.stock-limited { color: var(--accent-amber); }

.product-pricing {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border-subtle);
  margin-bottom: 12px;
}

.price-main {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
}

.price-old {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 6px;
}

.add-cart-btn {
  width: 100%;
  padding: 10px;
  background: rgba(95, 185, 232, 0.12);
  border: 1px solid rgba(95, 185, 232, 0.35);
  color: var(--accent-sky);
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition-smooth);
}

.add-cart-btn:hover {
  background: var(--accent-sky);
  color: #070a12;
  border-color: var(--accent-sky);
  box-shadow: 0 0 15px rgba(95, 185, 232, 0.4);
}

/* ==========================================================================
   INTERACTIVE PC BUILDER CONFIGURATOR ("Dream Rig Studio")
   ========================================================================== */
.builder-section {
  padding: 70px 0;
  position: relative;
}

.builder-container {
  background: linear-gradient(145deg, rgba(17, 24, 39, 0.85), rgba(9, 13, 22, 0.98));
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg), var(--shadow-neon);
  position: relative;
  overflow: hidden;
}

.builder-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 36px;
}

.builder-header h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 10px;
}

.builder-header p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* Configurator Layout */
.builder-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 36px;
  align-items: flex-start;
}

.builder-controls {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.step-label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: var(--accent-cyan);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Tier Selector Tabs */
.tier-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.tier-tab {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px;
  text-align: left;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.tier-tab:hover {
  background: rgba(95, 185, 232, 0.08);
  border-color: rgba(95, 185, 232, 0.3);
}

.tier-tab.active {
  background: rgba(95, 185, 232, 0.15);
  border-color: var(--accent-sky);
  box-shadow: 0 0 20px rgba(95, 185, 232, 0.25);
}

.tier-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 2px;
}

.tier-res {
  font-size: 0.72rem;
  color: var(--accent-cyan);
  font-family: var(--font-mono);
}

.tier-desc {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Component Selectors */
.component-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.component-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.comp-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.comp-option:hover {
  background: rgba(255, 255, 255, 0.07);
}

.comp-option.active {
  background: rgba(95, 185, 232, 0.15);
  border-color: var(--accent-sky);
}

.comp-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
}

.comp-tag {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.comp-price-diff {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent-cyan);
  font-weight: 700;
  white-space: nowrap;
  margin-left: 8px;
}

/* Rig Live Summary Box */
.builder-summary-card {
  background: rgba(13, 19, 34, 0.85);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 90px;
}

.summary-rig-title {
  font-size: 1.35rem;
  margin-bottom: 4px;
}

.summary-rig-badge {
  margin-bottom: 16px;
}

.rig-preview-img-box {
  text-align: center;
  padding: 12px 0;
  margin-bottom: 18px;
  background: radial-gradient(circle, rgba(95, 185, 232, 0.15) 0%, transparent 70%);
  border-radius: var(--radius-md);
}

.rig-preview-img-box img {
  max-height: 180px;
  margin: 0 auto;
  filter: drop-shadow(0 10px 25px rgba(0, 229, 255, 0.3));
}

/* FPS Benchmark Display */
.benchmark-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px;
  margin-bottom: 18px;
}

.benchmark-title {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-sky);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fps-bars {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fps-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fps-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
}

.fps-bar-bg {
  width: 100%;
  height: 5px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.fps-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-sky), var(--accent-cyan));
  border-radius: var(--radius-full);
  transition: width 0.5s ease;
}

/* Active Specs Checklist */
.active-specs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.active-specs-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.active-specs-list i {
  color: var(--accent-emerald);
}

.summary-total-box {
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
  margin-bottom: 18px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.summary-total-price {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--accent-cyan);
}

.builder-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ==========================================================================
   LOAD SHEDDING & POWER SOLUTIONS (South African Special)
   ========================================================================== */
.power-section {
  padding: 70px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(13, 19, 34, 0.5) 50%, transparent 100%);
}

.power-card-banner {
  background: linear-gradient(135deg, rgba(23, 34, 58, 0.75), rgba(9, 13, 22, 0.95));
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-lg);
  padding: 34px 38px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 36px;
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.1);
}

.power-content h3 {
  font-size: clamp(1.8rem, 3.5vw, 2.2rem);
  margin-bottom: 12px;
}

.power-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 22px;
}

.power-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.power-benefit-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #e2e8f0;
}

.power-benefit-item i {
  color: var(--accent-amber);
}

/* ==========================================================================
   COMMUNITY & REVIEWS ("The Dreamer Wall")
   ========================================================================== */
.reviews-section {
  padding: 70px 0;
}

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

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  backdrop-filter: blur(10px);
}

.review-stars {
  color: #fbbf24;
  font-size: 0.85rem;
  display: flex;
  gap: 3px;
}

.review-text {
  font-size: 0.88rem;
  color: #cbd5e1;
  line-height: 1.55;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
}

.author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-sky), var(--accent-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #ffffff;
  font-size: 0.85rem;
}

.author-info h5 {
  font-size: 0.88rem;
}

.author-info p {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ==========================================================================
   INTERACTIVE CART DRAWER (Slide-over)
   ========================================================================== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -480px;
  width: 100%;
  max-width: 440px;
  height: 100%;
  background: #0d1322;
  border-left: 1px solid var(--border-subtle);
  z-index: 1201;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.7);
}

.cart-drawer.active {
  right: 0;
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border-subtle);
}

.cart-header h3 {
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-close-btn {
  color: var(--text-muted);
  font-size: 1.25rem;
  padding: 4px;
}

.cart-close-btn:hover {
  color: #ffffff;
}

/* Free Shipping Progress */
.shipping-progress-box {
  padding: 12px 22px;
  background: rgba(95, 185, 232, 0.08);
  border-bottom: 1px solid var(--border-subtle);
}

.shipping-text {
  font-size: 0.76rem;
  color: #ffffff;
  margin-bottom: 6px;
}

.shipping-bar-bg {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.shipping-bar-fill {
  height: 100%;
  background: var(--accent-cyan);
  border-radius: var(--radius-full);
  transition: width 0.4s ease;
}

.cart-items-list {
  flex: 1;
  overflow-y: auto;
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cart-item {
  display: flex;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-subtle);
}

.cart-item-img {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background: #1a2333;
  padding: 4px;
  object-fit: contain;
}

.cart-item-details {
  flex: 1;
}

.cart-item-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}

.cart-item-price {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  color: var(--accent-cyan);
  font-weight: 700;
  margin-bottom: 6px;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-btn {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.qty-num {
  font-size: 0.82rem;
  font-family: var(--font-mono);
}

.cart-item-remove {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-left: auto;
  align-self: flex-start;
  padding: 4px;
}

.cart-item-remove:hover {
  color: var(--accent-pink);
}

.cart-footer {
  padding: 18px 22px;
  border-top: 1px solid var(--border-subtle);
  background: rgba(9, 13, 22, 0.95);
}

.cart-subtotal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.cart-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
}

.cart-total-row span:last-child {
  font-family: var(--font-mono);
  color: var(--accent-cyan);
}

.cart-empty-state {
  text-align: center;
  padding: 50px 20px;
  color: var(--text-muted);
}

.cart-empty-state i {
  font-size: 3rem;
  color: rgba(95, 185, 232, 0.2);
  margin-bottom: 14px;
}

/* ==========================================================================
   WHATSAPP BOT WIDGET (FLOATING + INTERACTIVE CHAT DEMO)
   ========================================================================== */
.wa-widget-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
}

.wa-launcher-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: var(--shadow-wa);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.8rem;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.wa-launcher-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.55);
}

.wa-pulse-ring {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid #25d366;
  opacity: 0.6;
  animation: waPulse 2s infinite;
}

@keyframes waPulse {
  0% { transform: scale(0.9); opacity: 0.8; }
  70% { transform: scale(1.3); opacity: 0; }
  100% { transform: scale(1.3); opacity: 0; }
}

.wa-launcher-tooltip {
  position: absolute;
  right: 72px;
  white-space: nowrap;
  background: #0f172a;
  border: 1px solid var(--border-subtle);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  color: #ffffff;
  box-shadow: var(--shadow-lg);
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition-smooth);
}

.wa-widget-container:hover .wa-launcher-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* WhatsApp Chat Window */
.wa-chat-window {
  position: absolute;
  bottom: 74px;
  right: 0;
  width: 380px;
  height: 560px;
  max-height: calc(100vh - 100px);
  background: #0b141a;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.9) translateY(20px);
  transform-origin: bottom right;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1001;
}

.wa-chat-window.open {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateY(0);
}

.wa-chat-header {
  background: #1f2c34;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.wa-header-profile {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wa-avatar-box {
  position: relative;
}

.wa-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #070a12;
  border: 1px solid var(--accent-sky);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-sky);
  font-size: 1.05rem;
}

.wa-status-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  background: #25d366;
  border: 2px solid #1f2c34;
  border-radius: 50%;
}

.wa-profile-info h4 {
  font-size: 0.92rem;
  color: #e9edef;
  display: flex;
  align-items: center;
  gap: 5px;
}

.wa-verified-badge {
  color: #53bdeb;
  font-size: 0.82rem;
}

.wa-profile-info p {
  font-size: 0.7rem;
  color: #8696a0;
}

.wa-close-btn {
  color: #aebac1;
  font-size: 1.15rem;
  padding: 6px;
}

.wa-close-btn:hover {
  color: #ffffff;
}

.wa-chat-body {
  flex: 1;
  padding: 14px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: #0b141a;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 16px 16px;
}

.wa-encrypted-notice {
  background: rgba(30, 42, 50, 0.8);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  text-align: center;
  font-size: 0.68rem;
  color: #8696a0;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.wa-encrypted-notice i {
  color: #ffd279;
}

.wa-msg {
  max-width: 84%;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 0.84rem;
  line-height: 1.42;
  position: relative;
  word-break: break-word;
  animation: messagePop 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes messagePop {
  0% { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}

.wa-msg-bot {
  align-self: flex-start;
  background: #202c33;
  color: #e9edef;
  border-top-left-radius: 2px;
}

.wa-msg-user {
  align-self: flex-end;
  background: #005c4b;
  color: #e9edef;
  border-top-right-radius: 2px;
}

.wa-msg-time {
  font-size: 0.62rem;
  color: #8696a0;
  float: right;
  margin-top: 3px;
  margin-left: 8px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.wa-ticks {
  color: #53bdeb;
}

.wa-quick-actions {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 4px;
}

.wa-chip {
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.25);
  color: var(--accent-sky);
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  text-align: left;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wa-chip:hover {
  background: rgba(0, 229, 255, 0.18);
  border-color: var(--accent-cyan);
  transform: translateX(2px);
}

.wa-typing {
  align-self: flex-start;
  background: #202c33;
  padding: 8px 14px;
  border-radius: 12px;
  border-top-left-radius: 2px;
  display: none;
  align-items: center;
  gap: 5px;
}

.wa-typing.active {
  display: flex;
}

.wa-typing-dot {
  width: 5px;
  height: 5px;
  background: #8696a0;
  border-radius: 50%;
  animation: typingBlink 1.4s infinite;
}

.wa-typing-dot:nth-child(2) { animation-delay: 0.2s; }
.wa-typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBlink {
  0%, 100% { opacity: 0.3; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-3px); }
}

.wa-chat-footer {
  background: #202c33;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.wa-input-box {
  flex: 1;
  background: #2a3942;
  border-radius: var(--radius-full);
  padding: 7px 14px;
  display: flex;
  align-items: center;
}

.wa-input {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  color: #e9edef;
  font-size: 0.85rem;
}

.wa-send-btn {
  color: #8696a0;
  font-size: 1.05rem;
  padding: 4px;
}

.wa-send-btn:hover {
  color: #25d366;
}

.wa-handoff-banner {
  background: #111b21;
  padding: 7px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.wa-handoff-btn {
  font-size: 0.74rem;
  color: #25d366;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.wa-handoff-btn:hover {
  text-decoration: underline;
}

/* ==========================================================================
   TOAST NOTIFICATIONS
   ========================================================================== */
.toast-container {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  background: #0f172a;
  border: 1px solid var(--border-accent);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: toastIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: auto;
}

@keyframes toastIn {
  0% { transform: translateY(20px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

.toast i { font-size: 1rem; }
.toast-success i { color: var(--accent-emerald); }
.toast-wishlist i { color: var(--accent-pink); }

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.site-footer {
  background: #050810;
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 26px;
  margin-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 14px 0 20px;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.footer-social-btn:hover {
  background: rgba(95, 185, 232, 0.15);
  border-color: var(--accent-sky);
  color: var(--accent-sky);
}

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 18px;
  color: #ffffff;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.footer-link:hover {
  color: var(--accent-sky);
  transform: translateX(3px);
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-contact-item i {
  color: var(--accent-sky);
  margin-top: 4px;
}

.payment-badges-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.pay-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 700;
  color: #e2e8f0;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 14px;
}

/* ==========================================================================
   RESPONSIVE OPTIMIZATIONS (Cloudflare & Mobile Ready)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .builder-grid {
    grid-template-columns: 1fr;
  }

  .builder-summary-card {
    position: static;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .nav-categories {
    padding: 6px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .nav-categories::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }

  .category-links {
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 0 16px;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .category-links::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .top-ticker {
    padding: 6px 0;
    font-size: 0.75rem;
  }

  .ticker-right {
    display: none; /* Keep ticker ultra-clean on mobile */
  }

  .top-ticker-content {
    justify-content: center;
    text-align: center;
  }

  .nav-container {
    height: 64px;
  }

  .logo-badge {
    width: 38px;
    height: 38px;
    font-size: 1.15rem;
  }

  .logo-title {
    font-size: 1.15rem;
  }

  .logo-sub {
    font-size: 0.6rem;
    letter-spacing: 1px;
  }

  .search-wrapper {
    display: none; /* Available in mobile menu drawer */
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero-section {
    padding: 30px 0 50px;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .hero-description {
    font-size: 0.92rem;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .hero-metrics {
    gap: 18px;
    justify-content: space-between;
  }

  .rig-image-box {
    height: 220px;
  }

  .rig-specs-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .spec-chip {
    padding: 6px 6px;
    font-size: 0.68rem;
  }

  .spec-chip strong {
    font-size: 0.72rem;
  }

  .builder-container {
    padding: 20px 16px;
  }

  .tier-tabs {
    grid-template-columns: 1fr;
  }

  .component-options {
    grid-template-columns: 1fr;
  }

  .power-card-banner {
    grid-template-columns: 1fr;
    padding: 24px 18px;
  }

  .power-benefits {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .cart-drawer {
    max-width: 100vw;
  }

  .wa-widget-container {
    bottom: 18px;
    right: 18px;
  }

  .wa-launcher-btn {
    width: 54px;
    height: 54px;
    font-size: 1.6rem;
  }

  .wa-chat-window {
    width: calc(100vw - 24px);
    height: calc(100vh - 100px);
    max-height: 560px;
    right: 0;
    bottom: 68px;
  }
}

@media (max-width: 540px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }
}
