/* ============================================================
   Cyber Aura — Home Page (Dark Cyberpunk Theme)
   ============================================================ */

/* ── Dark page base ─────────────────────────────────────────── */
.dark-page { background: #09090f; color: #e5e7eb; min-height: 100vh; }

/* ── Dark Header ─────────────────────────────────────────────── */
.dark-header {
  background: rgba(9,9,18,0.97) !important;
  border-bottom: 1px solid rgba(124,58,237,0.25) !important;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  position: sticky; top: 0; z-index: 200;
}
.dark-logo { text-decoration: none; display: flex; align-items: center; gap: 10px; }
.ca-logo-mark { flex-shrink: 0; }
.ca-logo-text { display: flex; flex-direction: column; line-height: 1; gap: 1px; }
.ca-cyber {
  font-family: 'Rajdhani',sans-serif; font-size: 10px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; color: #9ca3af;
}
.ca-aura {
  font-family: 'Rajdhani',sans-serif; font-size: 20px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  background: linear-gradient(90deg,#a855f7,#06B6D4);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.dark-nav .nav-link { color: #c4c4d4 !important; font-size: 14px; font-weight: 500; padding: 6px 12px !important; transition: color 0.2s; }
.dark-nav .nav-link:hover { color: #fff !important; }
.dark-nav .nav-link.active { color: #fff !important; border-bottom: 2px solid #a855f7; padding-bottom: 4px !important; }
.dark-actions { display: flex; align-items: center; gap: 4px; }
.dark-icon-btn {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 8px;
  background: transparent; border: none; cursor: pointer;
  color: #c4c4d4; transition: color 0.2s, background 0.2s;
  text-decoration: none; position: relative;
}
.dark-icon-btn:hover { color: #fff; background: rgba(124,58,237,0.15); }
.cart-badge {
  position: absolute; top: 4px; right: 4px;
  background: #a855f7; color: #fff; font-size: 10px; font-weight: 700;
  width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; line-height: 1;
}
.dark-page .burger-btn span { background: #c4c4d4 !important; }
.dark-mobile-menu { background: #0e0e1e !important; border-right: 1px solid rgba(124,58,237,0.2) !important; }
.dark-mobile-menu .mobile-nav-item { color: #c4c4d4 !important; border-bottom: 1px solid rgba(255,255,255,0.05) !important; }
.dark-mobile-menu .mobile-nav-item:hover { color: #fff !important; background: rgba(168,85,247,0.08) !important; }

/* ── HERO ────────────────────────────────────────────────────── */
.dark-hero {
  position: relative; min-height: 520px;
  display: flex; align-items: center; overflow: hidden; background: #09090f;
}
.dark-hero__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-glow {
  position: absolute; width: 550px; height: 550px;
  border-radius: 50%; filter: blur(90px); opacity: 0.2; pointer-events: none;
}
.hero-glow--left  { left:-150px; top:-100px; background: radial-gradient(circle,#7C3AED,transparent 70%); }
.hero-glow--right { right:-80px; bottom:-120px; background: radial-gradient(circle,#06B6D4,transparent 70%); opacity: 0.14; }
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(124,58,237,0.06) 1px,transparent 1px), linear-gradient(90deg,rgba(124,58,237,0.06) 1px,transparent 1px);
  background-size: 50px 50px;
}
.dark-hero .container { position: relative; z-index: 1; }
.dark-hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; padding: 64px 0 72px; }
.hero-eyebrow {
  font-family: 'Rajdhani',sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 4px; color: #a855f7; text-transform: uppercase; margin-bottom: 16px;
}
.dark-hero__title { display: flex; flex-direction: column; margin-bottom: 20px; line-height: 1; }
.hero-line-white {
  font-family: 'Orbitron',sans-serif; font-size: clamp(42px,5.5vw,68px);
  font-weight: 900; color: #fff; letter-spacing: -1px; text-transform: uppercase;
}
.hero-line-gradient {
  font-family: 'Orbitron',sans-serif; font-size: clamp(42px,5.5vw,68px);
  font-weight: 900; letter-spacing: -1px; text-transform: uppercase;
  background: linear-gradient(90deg,#a855f7 0%,#ec4899 50%,#06B6D4 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.dark-hero__sub { font-size: 16px; color: #9ca3af; line-height: 1.65; margin-bottom: 32px; }
.btn-hero-dark {
  display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px;
  border: 1.5px solid #a855f7; border-radius: 6px; color: #fff;
  font-family: 'Rajdhani',sans-serif; font-size: 14px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; text-decoration: none;
  background: rgba(168,85,247,0.1); transition: background 0.2s, box-shadow 0.2s;
}
.btn-hero-dark:hover { background: rgba(168,85,247,0.25); box-shadow: 0 0 24px rgba(168,85,247,0.35); color: #fff; }
.hero-dots { display: flex; gap: 8px; margin-top: 32px; }
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.2); cursor: pointer; transition: all 0.25s; }
.hero-dot.active { background: #a855f7; width: 24px; border-radius: 4px; }
.dark-hero__image { position: relative; display: flex; justify-content: center; align-items: center; }
.laptop-glow {
  position: absolute; width: 85%; height: 65%;
  background: radial-gradient(ellipse,rgba(124,58,237,0.4) 0%,transparent 70%);
  border-radius: 50%; filter: blur(35px); pointer-events: none;
}
.hero-laptop-img {
  position: relative; z-index: 1; width: 100%; max-width: 620px; height: auto;
  border-radius: 12px; filter: drop-shadow(0 0 50px rgba(124,58,237,0.5));
}

/* ── TRUST BAR ───────────────────────────────────────────────── */
.dark-trust {
  background: #0d0d1c; padding: 28px 0;
  border-top: 1px solid rgba(124,58,237,0.15); border-bottom: 1px solid rgba(124,58,237,0.15);
}
.dark-trust__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.dark-trust__item { display: flex; align-items: flex-start; gap: 14px; }
.dark-trust__icon {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 10px;
  background: rgba(124,58,237,0.12); border: 1px solid rgba(124,58,237,0.2);
  display: flex; align-items: center; justify-content: center; color: #a855f7;
}
.dark-trust__item strong { display: block; font-size: 12px; font-weight: 700; letter-spacing: 1px; color: #fff; text-transform: uppercase; margin-bottom: 4px; }
.dark-trust__item span { font-size: 12px; color: #6b7280; line-height: 1.5; }

/* ── PRODUCTS ────────────────────────────────────────────────── */
.dark-products { padding: 40px 0 60px; background: #09090f; }
.dark-products__layout { display: grid; grid-template-columns: 220px 1fr; gap: 28px; align-items: start; }
.dark-sidebar {
  background: #0d0d1c; border: 1px solid rgba(124,58,237,0.15);
  border-radius: 10px; padding: 20px 0; position: sticky; top: 80px;
}
.dark-sidebar__title {
  font-family: 'Rajdhani',sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 3px; color: #6b7280; text-transform: uppercase;
  padding: 0 20px 14px; border-bottom: 1px solid rgba(124,58,237,0.1); margin-bottom: 8px;
}
.dark-sidebar__list { list-style: none; padding: 0; margin: 0; }
.dark-sidebar__item {
  display: flex; align-items: center; gap: 10px; padding: 10px 20px;
  cursor: pointer; border-left: 3px solid transparent; transition: background 0.15s, border-color 0.15s;
}
.dark-sidebar__item:hover { background: rgba(124,58,237,0.08); }
.dark-sidebar__item.active { border-left-color: #a855f7; background: rgba(124,58,237,0.1); }
.dark-sidebar__item svg { color: #6b7280; flex-shrink: 0; }
.dark-sidebar__item.active svg { color: #a855f7; }
.dark-sidebar__item a { color: #c4c4d4; text-decoration: none; font-size: 14px; transition: color 0.15s; }
.dark-sidebar__item:hover a { color: #fff; }
.dark-sidebar__item.active a { color: #fff; font-weight: 600; }
.dark-products__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.dark-section-title { font-family: 'Rajdhani',sans-serif; font-size: 20px; font-weight: 700; letter-spacing: 2px; color: #fff; text-transform: uppercase; }
.dark-view-all { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: #a855f7; text-decoration: none; letter-spacing: 1px; text-transform: uppercase; transition: color 0.2s; }
.dark-view-all:hover { color: #c084fc; }
.dark-products__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }

/* Product card */
.dark-product-card {
  background: #0e0e1e; border: 1px solid rgba(124,58,237,0.15);
  border-radius: 10px; overflow: hidden; display: flex; flex-direction: column;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.dark-product-card:hover { border-color: rgba(168,85,247,0.45); transform: translateY(-4px); box-shadow: 0 10px 32px rgba(124,58,237,0.2); }
.dark-product-card__img-wrap { position: relative; overflow: hidden; background: #080812; aspect-ratio: 4/3; }
.dark-product-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.dark-product-card:hover .dark-product-card__img-wrap img { transform: scale(1.04); }
.pc-badge { position: absolute; top: 10px; left: 10px; z-index: 2; font-size: 10px; font-weight: 700; letter-spacing: 0.5px; padding: 3px 8px; border-radius: 4px; text-transform: uppercase; }
.pc-badge--top  { background: #7C3AED; color: #fff; }
.pc-badge--new  { background: #f97316; color: #fff; }
.pc-badge--sale { background: #ef4444; color: #fff; }
.pc-wish {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(9,9,18,0.7); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: #9ca3af; transition: color 0.2s, background 0.2s; backdrop-filter: blur(4px);
}
.pc-wish:hover,.pc-wish.active { color: #f43f5e; background: rgba(244,63,94,0.15); border-color: rgba(244,63,94,0.3); }
.pc-wish.active svg { fill: #f43f5e; stroke: #f43f5e; }
.dark-product-card__body { padding: 12px 14px 8px; flex: 1; }
.dark-product-card__name { font-size: 13px; font-weight: 600; color: #e5e7eb; display: block; text-decoration: none; margin-bottom: 5px; line-height: 1.4; }
a.dark-product-card__name:hover { color: #a855f7; }
.dark-product-card__specs { font-size: 11px; color: #6b7280; line-height: 1.4; }
.dark-product-card__footer { display: flex; align-items: center; justify-content: space-between; padding: 10px 14px 14px; border-top: 1px solid rgba(255,255,255,0.05); }
.dark-product-card__price { font-size: 17px; font-weight: 700; color: #fff; font-family: 'Rajdhani',sans-serif; }
.pc-cart-btn {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(124,58,237,0.2); border: 1px solid rgba(124,58,237,0.35);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: #a855f7; transition: background 0.2s, color 0.2s; flex-shrink: 0;
}
.pc-cart-btn:hover { background: #7C3AED; color: #fff; border-color: #7C3AED; }

/* ── PROMO ───────────────────────────────────────────────────── */
.dark-promo { background: #0d0d1c; border-top: 1px solid rgba(124,58,237,0.15); border-bottom: 1px solid rgba(124,58,237,0.15); padding: 22px 0; }
.dark-promo__inner { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.dark-promo__left { display: flex; align-items: center; gap: 14px; flex: 1; min-width: 200px; }
.dark-promo__tag { width: 44px; height: 44px; border-radius: 10px; background: rgba(168,85,247,0.15); border: 1px solid rgba(168,85,247,0.3); display: flex; align-items: center; justify-content: center; color: #a855f7; flex-shrink: 0; }
.dark-promo__brand { font-family: 'Rajdhani',sans-serif; font-size: 18px; font-weight: 700; letter-spacing: 2px; background: linear-gradient(90deg,#a855f7,#06B6D4); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; text-transform: uppercase; }
.dark-promo__sub { font-size: 12px; color: #6b7280; margin-top: 2px; }
.dark-promo__center { font-family: 'Orbitron',sans-serif; font-size: clamp(18px,2.5vw,26px); font-weight: 800; color: #c4c4d4; letter-spacing: 1px; text-align: center; flex: 1; min-width: 200px; }
.dark-promo__center span { background: linear-gradient(90deg,#a855f7,#ec4899); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.dark-promo__btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; border: 1.5px solid rgba(168,85,247,0.5); border-radius: 6px; color: #c4c4d4; font-family: 'Rajdhani',sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none; white-space: nowrap; background: transparent; transition: background 0.2s, color 0.2s, border-color 0.2s; }
.dark-promo__btn:hover { background: rgba(168,85,247,0.15); border-color: #a855f7; color: #fff; }

/* ── Dark Footer ─────────────────────────────────────────────── */
.dark-footer { background: #07070f !important; border-top: 1px solid rgba(124,58,237,0.2) !important; }
.dark-footer h4 { color: #fff !important; }
.dark-footer p { color: #9ca3af !important; }
.dark-footer .footer-links a { color: #9ca3af !important; }
.dark-footer .footer-links a:hover { color: #a855f7 !important; }
.dark-footer .footer-bottom { border-top: 1px solid rgba(255,255,255,0.06) !important; color: #4b5563 !important; }
.dark-footer .payment-icon { background: rgba(255,255,255,0.06) !important; color: #9ca3af !important; border: 1px solid rgba(255,255,255,0.08) !important; }
.dark-footer .social-btn { background: rgba(255,255,255,0.05) !important; color: #9ca3af !important; border-color: rgba(255,255,255,0.08) !important; }
.dark-footer .social-btn:hover { background: rgba(168,85,247,0.15) !important; color: #a855f7 !important; border-color: rgba(168,85,247,0.3) !important; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1100px) { .dark-products__grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 900px) {
  .dark-hero__inner { grid-template-columns: 1fr; text-align: center; padding: 48px 0 40px; }
  .dark-hero__image { display: none; }
  .dark-products__layout { grid-template-columns: 1fr; }
  .dark-sidebar { position: static; }
  .dark-sidebar__list { display: flex; flex-wrap: wrap; gap: 6px; padding: 0 12px 12px; }
  .dark-sidebar__item { padding: 6px 14px; border-left: none; border-radius: 20px; border: 1px solid rgba(124,58,237,0.2); }
  .dark-sidebar__item.active { background: rgba(124,58,237,0.2); border-color: #a855f7; }
  .dark-sidebar__item svg { display: none; }
  .dark-trust__grid { grid-template-columns: repeat(2,1fr); }
  .dark-products__grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 600px) {
  .hero-line-white,.hero-line-gradient { font-size: 34px; }
  .dark-products__grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .dark-promo__inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .dark-promo__center { text-align: left; font-size: 18px; }
  .dark-sidebar { display: none; }
}
