/* =============================================
   VOLT THEME — Egyptian Electronics Store
   Dark Neon · Mobile-First · RTL
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;900&family=Rajdhani:wght@500;600;700&display=swap');

:root {
  --volt-black:    #0A0A0F;
  --volt-dark:     #111118;
  --volt-card:     #16161F;
  --volt-border:   #1E1E2E;
  --volt-cyan:     #00D4FF;
  --volt-cyan-dim: rgba(0,212,255,0.12);
  --volt-cyan-glow:rgba(0,212,255,0.35);
  --volt-red:      #FF3860;
  --volt-white:    #F0F0F8;
  --volt-muted:    #6B6B82;
  --volt-radius:   12px;
  --volt-radius-lg:20px;
  --volt-transition: 0.22s cubic-bezier(.4,0,.2,1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Cairo', sans-serif;
  background-color: var(--body-bg, var(--volt-black));
  color: var(--body-text, var(--volt-white));
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100dvh;
  overflow-x: hidden;
}

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

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: var(--volt-dark); }
::-webkit-scrollbar-thumb { background: var(--volt-cyan); border-radius: 99px; }

/* ── Typography Helpers ── */
.volt-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--volt-cyan);
}

/* ── Glow Utility ── */
.volt-glow { box-shadow: 0 0 24px var(--volt-cyan-glow); }

/* ── Container ── */
.volt-container {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ── Section Spacing ── */
.volt-section { padding: 40px 0; }
.volt-section-title {
  font-size: clamp(18px, 4vw, 26px);
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.volt-section-title::before {
  content: '';
  display: block;
  width: 4px;
  height: 26px;
  background: var(--volt-cyan);
  border-radius: 99px;
  flex-shrink: 0;
  box-shadow: 0 0 12px var(--volt-cyan-glow);
}

/* ── Card Base ── */
.volt-card {
  background: var(--volt-card);
  border: 1px solid var(--volt-border);
  border-radius: var(--volt-radius);
  overflow: hidden;
  transition: border-color var(--volt-transition), box-shadow var(--volt-transition), transform var(--volt-transition);
  -webkit-tap-highlight-color: transparent;
}
.volt-card:hover {
  border-color: rgba(0,212,255,0.4);
  box-shadow: 0 8px 40px rgba(0,212,255,0.12);
  transform: translateY(-2px);
}

/* ── Buttons ── */
.volt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: var(--volt-radius);
  transition: var(--volt-transition);
  white-space: nowrap;
}
.volt-btn-primary {
  background: var(--buy-btn-bg, var(--volt-cyan));
  color: var(--buy-btn-text, var(--volt-black));
  border: 1px solid var(--buy-btn-border, var(--volt-cyan));
  box-shadow: 0 0 20px var(--volt-cyan-glow);
}
.volt-btn-primary:hover {
  opacity: .88;
  box-shadow: 0 0 32px var(--volt-cyan-glow);
  transform: translateY(-1px);
}
.volt-btn-primary:active { transform: scale(.97); }

.volt-btn-outline {
  background: transparent;
  color: var(--crt-btn-text, var(--volt-cyan));
  border: 1px solid var(--crt-btn-border, var(--volt-cyan));
}
.volt-btn-outline:hover {
  background: var(--volt-cyan-dim);
}

.volt-btn-full { width: 100%; }

/* ── Badge ── */
.volt-badge {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  letter-spacing: .04em;
  line-height: 1.4;
}
.volt-badge-sale {
  background: var(--volt-red);
  color: #fff;
}
.volt-badge-new {
  background: var(--volt-cyan);
  color: var(--volt-black);
}

/* ── Price ── */
.volt-price {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--product-price-text, var(--volt-cyan));
  letter-spacing: -.01em;
}
.volt-price-old {
  font-size: 14px;
  color: var(--volt-muted);
  text-decoration: line-through;
  font-weight: 400;
}
.volt-price-sale {
  color: var(--product-sale-price-text, var(--volt-red));
}

/* ── Stars ── */
.volt-stars { display: flex; align-items: center; gap: 2px; }
.volt-star { font-size: 13px; color: #FFB800; line-height: 1; }
.volt-star.empty { color: var(--volt-border); }

/* ── Form Inputs ── */
.volt-input {
  width: 100%;
  padding: 12px 16px;
  background: var(--input-bg, rgba(255,255,255,.04));
  border: 1px solid var(--input-border, var(--volt-border));
  border-radius: var(--volt-radius);
  color: var(--input-text, var(--volt-white));
  font-family: 'Cairo', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color var(--volt-transition), box-shadow var(--volt-transition);
}
.volt-input:focus {
  border-color: var(--volt-cyan);
  box-shadow: 0 0 0 3px var(--volt-cyan-dim);
}
.volt-input::placeholder { color: var(--volt-muted); }

/* ── Quantity Picker ── */
.volt-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--volt-border);
  border-radius: var(--volt-radius);
  overflow: hidden;
}
.volt-qty-btn {
  width: 40px;
  height: 40px;
  background: var(--volt-card);
  color: var(--volt-white);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--volt-transition);
}
.volt-qty-btn:hover { background: var(--volt-cyan-dim); color: var(--volt-cyan); }
.volt-qty-val {
  min-width: 44px;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  background: var(--volt-dark);
  color: var(--volt-white);
  padding: 0 4px;
  line-height: 40px;
}

/* ── Skeleton Loader ── */
@keyframes volt-shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}
.volt-skeleton {
  background: linear-gradient(90deg, var(--volt-card) 25%, var(--volt-border) 50%, var(--volt-card) 75%);
  background-size: 200% 100%;
  animation: volt-shimmer 1.5s infinite;
  border-radius: 6px;
}

/* ── Announcement Bar ── */
@keyframes volt-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(var(--marquee-offset, -50%)); }
}
.volt-ann {
  background: var(--ann-bg, var(--volt-cyan));
  color: var(--ann-text, var(--volt-black));
  font-size: 12px;
  font-weight: 700;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  z-index: 2;
  letter-spacing: .04em;
}
.volt-ann a { color: inherit; text-decoration: underline; }
.volt-ann-marquee { width: 100%; overflow: hidden; }
.volt-ann-track {
  display: flex;
  white-space: nowrap;
  align-items: center;
  will-change: transform;
}
.volt-ann-track.running {
  animation: volt-marquee var(--marquee-dur, 22s) linear infinite;
}
.volt-ann-item { padding: 0 40px; }
.volt-ann-sep { opacity: .5; margin: 0 8px; }

.volt-ann-slides { position: relative; width: 100%; height: 100%; overflow: hidden; }
.volt-ann-slide {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 0 16px;
  opacity: 0; transform: translateX(100%);
  transition: opacity .45s ease, transform .45s ease;
  pointer-events: none;
}
.volt-ann-slide.active { opacity: 1; transform: translateX(0); pointer-events: auto; }
.volt-ann-slide.exiting { opacity: 0; transform: translateX(-100%); }

/* ── Header ── */
.volt-hd-wrap {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 500;
  pointer-events: none;
}
.volt-hd-wrap > * { pointer-events: auto; }

.volt-header {
  background: var(--hd-bg, rgba(10,10,15,.92));
  color: var(--hd-text, var(--volt-white));
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid var(--volt-border);
  transition: transform .32s cubic-bezier(.4,0,.2,1);
}
.volt-header.hidden { transform: translateY(calc(-100% - 2px)); }

.volt-hd-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  padding: 0 16px;
  gap: 12px;
}

.volt-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.volt-logo img { height: 36px; width: auto; object-fit: contain; }
.volt-logo-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--hd-text, var(--volt-white));
  letter-spacing: .04em;
}
.volt-logo-accent { color: var(--volt-cyan); }

/* Search bar */
.volt-hd-search {
  flex: 1;
  max-width: 380px;
  position: relative;
}
.volt-hd-search input {
  width: 100%;
  height: 38px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--volt-border);
  border-radius: 99px;
  padding: 0 40px 0 16px;
  color: var(--volt-white);
  font-family: 'Cairo', sans-serif;
  font-size: 13px;
  outline: none;
  transition: border-color var(--volt-transition), background var(--volt-transition);
}
.volt-hd-search input:focus {
  border-color: var(--volt-cyan);
  background: rgba(0,212,255,.06);
}
.volt-hd-search input::placeholder { color: var(--volt-muted); }
.volt-hd-search-icon {
  position: absolute;
  left: 12px; top: 50%;
  transform: translateY(-50%);
  color: var(--volt-muted);
  pointer-events: none;
  line-height: 1;
}

/* Header actions */
.volt-hd-actions { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }

.volt-hd-btn {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  border-radius: var(--volt-radius);
  color: var(--hd-text, var(--volt-white));
  transition: background var(--volt-transition), color var(--volt-transition);
  position: relative;
}
.volt-hd-btn:hover { background: rgba(255,255,255,.07); color: var(--volt-cyan); }

.volt-hd-btn svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.volt-cart-badge {
  position: absolute; top: 4px; left: 4px;
  background: var(--volt-cyan);
  color: var(--volt-black);
  font-size: 9px; font-weight: 800;
  min-width: 16px; height: 16px;
  border-radius: 99px; padding: 0 4px;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}
.volt-cart-badge[hidden] { display: none; }

/* Hamburger */
.volt-menu-btn {
  width: 40px; height: 40px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 5px;
  background: transparent;
  border-radius: var(--volt-radius);
  color: var(--hd-text, var(--volt-white));
  transition: background var(--volt-transition);
}
.volt-menu-btn:hover { background: rgba(255,255,255,.07); }
.volt-menu-btn span {
  display: block; width: 22px; height: 2px;
  background: currentColor; border-radius: 99px;
  transition: transform .3s, opacity .3s, width .3s;
}

/* Desktop Nav */
.volt-hd-desktop { display: none; }
@media (min-width: 1024px) {
  .volt-hd-desktop { display: flex; align-items: center; gap: 4px; }
  .volt-menu-btn { display: none; }
  .volt-hd-inner { padding: 0 24px; }
  .volt-hd-search { max-width: 440px; }
}
.volt-nav-link {
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 14px; font-weight: 600;
  color: var(--hd-text, var(--volt-white));
  transition: background var(--volt-transition), color var(--volt-transition);
  position: relative;
}
.volt-nav-link:hover { background: var(--volt-cyan-dim); color: var(--volt-cyan); }

.volt-nav-drop { position: relative; }
.volt-nav-drop-panel {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  background: var(--volt-card);
  border: 1px solid var(--volt-border);
  border-radius: var(--volt-radius);
  padding: 8px;
  box-shadow: 0 16px 48px rgba(0,0,0,.5);
  z-index: 200;
}
.volt-nav-drop:hover .volt-nav-drop-panel { display: block; }
.volt-nav-drop-panel a {
  display: block;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 13px; font-weight: 500;
  transition: background var(--volt-transition), color var(--volt-transition);
}
.volt-nav-drop-panel a:hover { background: var(--volt-cyan-dim); color: var(--volt-cyan); }

/* Mobile Drawer */
.volt-drawer-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.7);
  z-index: 600;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity .3s;
}
.volt-drawer-overlay.open { display: block; opacity: 1; }

.volt-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(320px, 90vw);
  background: var(--volt-dark);
  border-left: 1px solid var(--volt-border);
  z-index: 700;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.volt-drawer.open { transform: translateX(0); }

.volt-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--volt-border);
  flex-shrink: 0;
}
.volt-drawer-close {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.06);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--volt-white);
  font-size: 20px; line-height: 1;
  transition: background var(--volt-transition);
}
.volt-drawer-close:hover { background: rgba(255,0,0,.15); color: var(--volt-red); }

.volt-drawer-search { padding: 12px 16px; border-bottom: 1px solid var(--volt-border); flex-shrink: 0; }
.volt-drawer-search input {
  width: 100%; height: 40px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--volt-border);
  border-radius: 99px;
  padding: 0 16px;
  color: var(--volt-white);
  font-family: 'Cairo', sans-serif;
  font-size: 14px; outline: none;
}
.volt-drawer-search input:focus { border-color: var(--volt-cyan); }
.volt-drawer-search input::placeholder { color: var(--volt-muted); }

.volt-drawer-nav { flex: 1; overflow-y: auto; padding: 8px 0; }
.volt-drawer-nav a, .volt-drawer-acc-trigger {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px;
  font-size: 15px; font-weight: 600;
  border-bottom: 1px solid var(--volt-border);
  transition: background var(--volt-transition), color var(--volt-transition);
  width: 100%;
  background: transparent;
  color: var(--volt-white);
}
.volt-drawer-nav a:hover, .volt-drawer-acc-trigger:hover { background: var(--volt-cyan-dim); color: var(--volt-cyan); }
.volt-drawer-acc-trigger svg { transition: transform .3s; width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }
.volt-drawer-acc.open .volt-drawer-acc-trigger svg { transform: rotate(180deg); }
.volt-drawer-sub {
  max-height: 0; overflow: hidden;
  transition: max-height .35s cubic-bezier(.4,0,.2,1);
  background: rgba(0,0,0,.2);
}
.volt-drawer-acc.open .volt-drawer-sub { max-height: 400px; }
.volt-drawer-sub a {
  padding: 11px 20px 11px 32px;
  font-size: 13px; font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.04);
}

/* ── Body padding for fixed header ── */
.volt-body-offset { padding-top: 90px; }
@media (min-width: 1024px) { .volt-body-offset { padding-top: 100px; } }

/* ── Slider / Hero ── */
.volt-slider { position: relative; overflow: hidden; border-radius: 0; }
.volt-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity .6s ease;
  pointer-events: none;
}
.volt-slide.active { opacity: 1; position: relative; pointer-events: auto; }
.volt-slide img { width: 100%; height: 220px; object-fit: cover; display: block; }
@media (min-width: 768px) { .volt-slide img { height: 360px; } }
@media (min-width: 1024px) { .volt-slide img { height: 480px; } }

.volt-slide-content {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,10,15,.85) 40%, transparent);
  display: flex; flex-direction: column; justify-content: center;
  padding: 24px 20px;
}
[dir="rtl"] .volt-slide-content { background: linear-gradient(270deg, rgba(10,10,15,.85) 40%, transparent); }

.volt-slide-label { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--volt-cyan); margin-bottom: 8px; }
.volt-slide-title { font-size: clamp(20px,5vw,42px); font-weight: 900; line-height: 1.15; margin-bottom: 12px; }
.volt-slide-sub { font-size: 14px; color: rgba(240,240,248,.7); margin-bottom: 20px; max-width: 340px; }

.volt-slider-dots {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 10;
}
.volt-slider-dot {
  width: 6px; height: 6px; border-radius: 99px;
  background: rgba(255,255,255,.35); border: none;
  transition: background var(--volt-transition), width var(--volt-transition);
}
.volt-slider-dot.active { background: var(--volt-cyan); width: 20px; }

.volt-slider-prev, .volt-slider-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px;
  background: rgba(10,10,15,.6);
  border: 1px solid var(--volt-border);
  border-radius: 50%;
  color: var(--volt-white);
  display: flex; align-items: center; justify-content: center;
  z-index: 10; transition: background var(--volt-transition), border-color var(--volt-transition);
}
.volt-slider-prev:hover, .volt-slider-next:hover { background: var(--volt-cyan); border-color: var(--volt-cyan); color: var(--volt-black); }
.volt-slider-prev { right: 12px; }
.volt-slider-next { left: 12px; }
.volt-slider-prev svg, .volt-slider-next svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ── Category Grid ── */
.volt-cats { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 4px; scroll-snap-type: x mandatory; scrollbar-width: none; }
.volt-cats::-webkit-scrollbar { display: none; }
.volt-cat-card {
  flex-shrink: 0;
  scroll-snap-align: start;
  width: 100px;
  border-radius: var(--volt-radius);
  overflow: hidden;
  background: var(--volt-card);
  border: 1px solid var(--volt-border);
  text-align: center;
  padding: 16px 8px 12px;
  transition: border-color var(--volt-transition), transform var(--volt-transition);
  text-decoration: none; color: var(--volt-white);
}
.volt-cat-card:hover { border-color: var(--volt-cyan); transform: translateY(-2px); }
.volt-cat-icon {
  width: 52px; height: 52px;
  background: var(--volt-cyan-dim);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 10px;
  font-size: 26px;
  transition: background var(--volt-transition);
}
.volt-cat-card:hover .volt-cat-icon { background: var(--volt-cyan-glow); }
.volt-cat-name { font-size: 11px; font-weight: 600; line-height: 1.3; }

@media (min-width: 768px) {
  .volt-cats { display: grid; grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 12px; overflow-x: visible; }
  .volt-cat-card { width: auto; }
}

/* ── Product Grid ── */
.volt-products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 600px) { .volt-products-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; } }
@media (min-width: 900px) { .volt-products-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
@media (min-width: 1200px) { .volt-products-grid { grid-template-columns: repeat(5, 1fr); } }

/* ── Product Card ── */
.volt-prod-card {
  background: var(--volt-card);
  border: 1px solid var(--volt-border);
  border-radius: var(--volt-radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color var(--volt-transition), box-shadow var(--volt-transition), transform var(--volt-transition);
  position: relative;
}
.volt-prod-card:hover {
  border-color: rgba(0,212,255,.4);
  box-shadow: 0 6px 32px rgba(0,212,255,.1);
  transform: translateY(-3px);
}

.volt-prod-img {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--volt-dark);
}
.volt-prod-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.volt-prod-card:hover .volt-prod-img img { transform: scale(1.05); }

.volt-prod-badges {
  position: absolute; top: 8px; right: 8px;
  display: flex; flex-direction: column; gap: 4px;
}
.volt-prod-wishlist {
  position: absolute; top: 8px; left: 8px;
  width: 30px; height: 30px;
  background: rgba(10,10,15,.7);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--volt-border);
  color: var(--volt-muted);
  font-size: 15px;
  transition: background var(--volt-transition), color var(--volt-transition), border-color var(--volt-transition);
}
.volt-prod-wishlist:hover { background: rgba(255,56,96,.15); color: var(--volt-red); border-color: var(--volt-red); }

.volt-prod-body { padding: 10px 10px 12px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.volt-prod-name {
  font-size: 13px; font-weight: 600;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--product-name-text, var(--volt-white));
}
.volt-prod-price-row { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; margin-top: auto; }

.volt-prod-rating { display: flex; align-items: center; gap: 4px; font-size: 11px; color: var(--volt-muted); }
.volt-prod-rating .stars { display: flex; gap: 1px; }
.volt-prod-rating .star { font-size: 11px; color: #FFB800; }
.volt-prod-rating .star.e { color: var(--volt-border); }

.volt-prod-cart-btn {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  width: 100%; padding: 9px 12px;
  background: var(--buy-btn-bg, var(--volt-cyan));
  color: var(--buy-btn-text, var(--volt-black));
  border: 1px solid var(--buy-btn-border, var(--volt-cyan));
  border-radius: 8px;
  font-family: 'Cairo', sans-serif;
  font-size: 12px; font-weight: 700;
  transition: opacity var(--volt-transition), transform var(--volt-transition), box-shadow var(--volt-transition);
  margin-top: 6px;
}
.volt-prod-cart-btn:hover { opacity: .85; box-shadow: 0 0 16px var(--volt-cyan-glow); }
.volt-prod-cart-btn:active { transform: scale(.97); }
.volt-prod-cart-btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.2; flex-shrink: 0; }

/* ── Product Detail Page ── */
.volt-gallery { position: relative; }
.volt-gallery-main {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: var(--volt-radius);
  background: var(--volt-card);
  border: 1px solid var(--volt-border);
}
.volt-gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.volt-gallery-thumb-row {
  display: flex; gap: 8px; margin-top: 10px;
  overflow-x: auto; scrollbar-width: none;
}
.volt-gallery-thumb-row::-webkit-scrollbar { display: none; }
.volt-gallery-thumb {
  flex-shrink: 0;
  width: 60px; height: 60px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--volt-border);
  cursor: pointer;
  transition: border-color var(--volt-transition);
}
.volt-gallery-thumb.active { border-color: var(--volt-cyan); }
.volt-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.volt-prod-detail-name {
  font-size: clamp(18px, 4vw, 28px);
  font-weight: 800; line-height: 1.3;
  color: var(--product-name-text, var(--volt-white));
}
.volt-prod-detail-price {
  font-family: 'Rajdhani', sans-serif;
  font-size: 32px; font-weight: 700;
  color: var(--product-price-text, var(--volt-cyan));
}
.volt-prod-detail-price-sale { color: var(--product-sale-price-text, var(--volt-red)); }

/* Variations */
.volt-var-label { font-size: 12px; font-weight: 700; color: var(--volt-muted); letter-spacing: .06em; margin-bottom: 8px; }
.volt-var-opts { display: flex; flex-wrap: wrap; gap: 8px; }
.volt-var-opt {
  padding: 7px 14px;
  border-radius: 8px;
  border: 1px solid var(--volt-border);
  background: var(--volt-card);
  font-size: 13px; font-weight: 600;
  cursor: pointer;
  transition: border-color var(--volt-transition), background var(--volt-transition), color var(--volt-transition);
}
.volt-var-opt:hover { border-color: var(--volt-cyan); color: var(--volt-cyan); }
.volt-var-opt.selected { border-color: var(--volt-cyan); background: var(--volt-cyan-dim); color: var(--volt-cyan); }
.volt-var-color {
  width: 32px; height: 32px; border-radius: 50%;
  padding: 0;
  border: 2px solid var(--volt-border);
  cursor: pointer;
  transition: border-color var(--volt-transition), box-shadow var(--volt-transition);
}
.volt-var-color.selected { border-color: var(--volt-cyan); box-shadow: 0 0 0 3px var(--volt-cyan-dim); }

/* Actions */
.volt-prod-actions { display: flex; flex-direction: column; gap: 10px; }
.volt-prod-actions-row { display: flex; gap: 10px; }
.volt-prod-buy-btn {
  flex: 1;
  height: 50px;
  background: var(--buy-btn-bg, var(--volt-cyan));
  color: var(--buy-btn-text, var(--volt-black));
  border: 1px solid var(--buy-btn-border, var(--volt-cyan));
  border-radius: var(--volt-radius);
  font-family: 'Cairo', sans-serif;
  font-size: 15px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 0 24px var(--volt-cyan-glow);
  transition: opacity var(--volt-transition), box-shadow var(--volt-transition), transform var(--volt-transition);
}
.volt-prod-buy-btn:hover { opacity: .88; box-shadow: 0 0 36px var(--volt-cyan-glow); }
.volt-prod-buy-btn:active { transform: scale(.98); }
.volt-prod-buy-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2.2; }

.volt-prod-cart-add {
  height: 50px; width: 50px;
  background: transparent;
  border: 1px solid var(--crt-btn-border, var(--volt-cyan));
  color: var(--crt-btn-text, var(--volt-cyan));
  border-radius: var(--volt-radius);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--volt-transition);
  flex-shrink: 0;
}
.volt-prod-cart-add:hover { background: var(--volt-cyan-dim); }
.volt-prod-cart-add svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ── Fixed Buy Bar ── */
.volt-fixed-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(10,10,15,.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--volt-border);
  padding: 10px 16px 14px;
  z-index: 400;
  display: flex; align-items: center; gap: 10px;
  transform: translateY(110%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.volt-fixed-bar.visible { transform: translateY(0); }
.volt-fixed-bar-info { flex: 1; min-width: 0; }
.volt-fixed-bar-name { font-size: 13px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.volt-fixed-bar-price { font-family: 'Rajdhani', sans-serif; font-size: 18px; font-weight: 700; color: var(--volt-cyan); }
.volt-fixed-bar-btn {
  height: 46px; padding: 0 22px;
  background: var(--buy-btn-bg, var(--volt-cyan));
  color: var(--buy-btn-text, var(--volt-black));
  border: 1px solid var(--buy-btn-border, var(--volt-cyan));
  border-radius: var(--volt-radius);
  font-family: 'Cairo', sans-serif;
  font-size: 14px; font-weight: 800;
  white-space: nowrap; flex-shrink: 0;
  box-shadow: 0 0 20px var(--volt-cyan-glow);
  transition: opacity var(--volt-transition), box-shadow var(--volt-transition);
}
.volt-fixed-bar-btn:hover { opacity: .88; }

/* ── Reviews ── */
.volt-review {
  background: var(--volt-card);
  border: 1px solid var(--volt-border);
  border-radius: var(--volt-radius);
  padding: 14px 16px;
}
.volt-review-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.volt-review-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--volt-cyan-dim);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--volt-cyan);
  font-size: 14px; flex-shrink: 0;
}
.volt-review-name { font-size: 13px; font-weight: 700; }
.volt-review-date { font-size: 11px; color: var(--volt-muted); }
.volt-review-body { font-size: 13px; color: rgba(240,240,248,.8); line-height: 1.6; }

/* ── Fake Social Proof ── */
.volt-fake-visitor {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--volt-muted);
  padding: 8px 12px;
  background: var(--volt-card);
  border: 1px solid var(--volt-border);
  border-radius: 8px;
}
.volt-fake-visitor .dot { width: 8px; height: 8px; border-radius: 50%; background: #2ECC71; flex-shrink: 0; animation: volt-pulse 2s infinite; }
@keyframes volt-pulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:.5;transform:scale(1.3);} }

.volt-fake-stock { display: flex; flex-direction: column; gap: 4px; font-size: 12px; }
.volt-stock-bar { height: 5px; background: var(--volt-border); border-radius: 99px; overflow: hidden; }
.volt-stock-fill { height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--volt-cyan), #00FF88); }

.volt-fake-counter {
  display: flex; gap: 12px; align-items: center;
  font-size: 12px; color: var(--volt-muted);
}
.volt-countdown-seg { text-align: center; }
.volt-countdown-num {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 22px; font-weight: 700;
  color: var(--volt-white);
  background: var(--volt-card);
  border: 1px solid var(--volt-border);
  border-radius: 6px;
  padding: 2px 8px;
  min-width: 38px;
}
.volt-countdown-sep { font-size: 20px; font-weight: 700; color: var(--volt-cyan); padding-bottom: 14px; }

/* ── Breadcrumbs ── */
.volt-breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; font-size: 12px; color: var(--volt-muted); padding: 12px 0; }
.volt-breadcrumbs a { color: var(--volt-muted); transition: color var(--volt-transition); }
.volt-breadcrumbs a:hover { color: var(--volt-cyan); }
.volt-breadcrumbs .sep { opacity: .4; }
.volt-breadcrumbs .current { color: var(--volt-white); }

/* ── Checkout Form ── */
.volt-checkout { background: var(--checkout-form-bg, var(--volt-card)); border-radius: var(--volt-radius-lg); padding: 20px 16px; }
.volt-checkout h2 { font-size: 18px; font-weight: 700; margin-bottom: 16px; color: var(--checkout-heading-text, var(--volt-white)); }
.volt-form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.volt-form-label { font-size: 12px; font-weight: 600; color: var(--volt-muted); }

/* ── Order Page ── */
.volt-order-success {
  text-align: center; padding: 40px 20px;
}
.volt-order-icon {
  width: 72px; height: 72px;
  background: rgba(0,212,255,.12);
  border: 2px solid var(--volt-cyan);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
}
.volt-order-title { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.volt-order-sub { font-size: 14px; color: var(--volt-muted); }

.volt-order-table { width: 100%; border-collapse: collapse; margin-top: 16px; }
.volt-order-table th {
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--volt-muted); text-align: right;
  padding: 8px 12px; border-bottom: 1px solid var(--volt-border);
}
.volt-order-table td {
  font-size: 13px; padding: 10px 12px;
  border-bottom: 1px solid var(--volt-border);
  vertical-align: middle;
}
.volt-order-table tr:last-child td { border-bottom: none; }

/* ── Footer ── */
.volt-footer {
  background: var(--ft-bg, var(--volt-dark));
  color: var(--ft-text, var(--volt-white));
  border-top: 1px solid var(--volt-border);
  margin-top: 60px;
}
.volt-footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 40px 16px 32px;
  max-width: 1380px;
  margin: 0 auto;
}
@media (min-width: 640px) { .volt-footer-top { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .volt-footer-top { grid-template-columns: 2fr 1fr 1fr 1.5fr; padding: 48px 24px 36px; } }

.volt-footer-brand {}
.volt-footer-logo { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.volt-footer-logo img { height: 36px; width: auto; }
.volt-footer-desc { font-size: 13px; color: rgba(240,240,248,.5); line-height: 1.7; margin-bottom: 16px; }

.volt-footer-social { display: flex; gap: 8px; }
.volt-footer-social a {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--volt-border);
  display: flex; align-items: center; justify-content: center;
  color: rgba(240,240,248,.6);
  transition: background var(--volt-transition), color var(--volt-transition), border-color var(--volt-transition);
}
.volt-footer-social a:hover { background: var(--volt-cyan-dim); color: var(--volt-cyan); border-color: var(--volt-cyan); }
.volt-footer-social a svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.8; }

.volt-footer-col-title {
  font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--volt-cyan); margin-bottom: 16px;
}
.volt-footer-links { display: flex; flex-direction: column; gap: 10px; }
.volt-footer-links a {
  font-size: 13px; color: rgba(240,240,248,.55);
  transition: color var(--volt-transition);
}
.volt-footer-links a:hover { color: var(--volt-white); }

.volt-footer-contact { display: flex; flex-direction: column; gap: 10px; }
.volt-footer-contact-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(240,240,248,.55); }
.volt-footer-contact-item a { color: inherit; transition: color var(--volt-transition); }
.volt-footer-contact-item a:hover { color: var(--volt-cyan); }
.volt-footer-contact-icon { font-size: 16px; flex-shrink: 0; }

.volt-footer-subscribe input {
  width: 100%; height: 42px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--volt-border);
  border-radius: var(--volt-radius) var(--volt-radius) 0 0;
  padding: 0 14px;
  color: var(--volt-white);
  font-family: 'Cairo', sans-serif; font-size: 13px; outline: none;
  margin-bottom: -1px;
}
.volt-footer-subscribe input::placeholder { color: var(--volt-muted); }
.volt-footer-subscribe input:focus { border-color: var(--volt-cyan); }
.volt-footer-subscribe button {
  width: 100%; height: 42px;
  background: var(--volt-cyan);
  color: var(--volt-black);
  border-radius: 0 0 var(--volt-radius) var(--volt-radius);
  font-family: 'Cairo', sans-serif; font-size: 13px; font-weight: 700;
  transition: opacity var(--volt-transition);
}
.volt-footer-subscribe button:hover { opacity: .88; }

.volt-footer-bottom {
  border-top: 1px solid var(--volt-border);
  padding: 16px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 12px; text-align: center;
  font-size: 12px; color: rgba(240,240,248,.35);
  max-width: 1380px; margin: 0 auto;
}
.volt-footer-bottom a { color: var(--volt-cyan); }
.volt-footer-payment img { max-height: 28px; width: auto; opacity: .5; }

/* ── Description ── */
.volt-desc {
  font-size: 14px; line-height: 1.8; color: rgba(240,240,248,.75);
}
.volt-desc h1,.volt-desc h2,.volt-desc h3 { color: var(--volt-white); margin: 16px 0 8px; }
.volt-desc ul { padding-right: 20px; list-style: disc; }
.volt-desc li { margin-bottom: 6px; }
.volt-desc table { width: 100%; border-collapse: collapse; }
.volt-desc td, .volt-desc th { border: 1px solid var(--volt-border); padding: 8px 12px; font-size: 13px; }

/* ── Products List (List view) ── */
.volt-list-prod {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--volt-card);
  border: 1px solid var(--volt-border);
  border-radius: var(--volt-radius);
  padding: 12px;
  transition: border-color var(--volt-transition);
}
.volt-list-prod:hover { border-color: rgba(0,212,255,.4); }
.volt-list-prod-img { width: 90px; height: 90px; border-radius: 8px; overflow: hidden; flex-shrink: 0; background: var(--volt-dark); }
.volt-list-prod-img img { width: 100%; height: 100%; object-fit: cover; }
.volt-list-prod-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.volt-list-prod-name { font-size: 14px; font-weight: 600; line-height: 1.4; }
.volt-list-prod-price { font-family: 'Rajdhani', sans-serif; font-size: 18px; font-weight: 700; color: var(--volt-cyan); }

/* ── Empty / Error States ── */
.volt-empty { text-align: center; padding: 60px 20px; color: var(--volt-muted); }
.volt-empty-icon { font-size: 48px; margin-bottom: 16px; opacity: .3; }
.volt-empty-title { font-size: 16px; font-weight: 600; color: var(--volt-white); margin-bottom: 8px; }
.volt-empty-sub { font-size: 13px; }

/* ── Divider ── */
.volt-divider { height: 1px; background: var(--volt-border); margin: 20px 0; }

/* ── Trust Badges ── */
.volt-trust { display: flex; flex-wrap: wrap; gap: 10px; }
.volt-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600;
  color: rgba(240,240,248,.55);
  padding: 8px 12px;
  background: var(--volt-card);
  border: 1px solid var(--volt-border);
  border-radius: 8px;
  flex: 1; min-width: 120px;
}
.volt-trust-item svg { width: 18px; height: 18px; stroke: var(--volt-cyan); fill: none; stroke-width: 1.8; flex-shrink: 0; }

/* ── Promo Banner ── */
.volt-promo {
  background: linear-gradient(135deg, rgba(0,212,255,.08), rgba(0,212,255,.02));
  border: 1px solid rgba(0,212,255,.2);
  border-radius: var(--volt-radius-lg);
  padding: 24px 20px;
  text-align: center;
}
.volt-promo-label { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--volt-cyan); margin-bottom: 8px; }
.volt-promo-title { font-size: clamp(16px,4vw,24px); font-weight: 800; margin-bottom: 4px; }
.volt-promo-sub { font-size: 13px; color: var(--volt-muted); margin-bottom: 16px; }

/* ── Animations ── */
@keyframes volt-fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.volt-fade-up { animation: volt-fade-up .45s ease forwards; }

@keyframes volt-spin { to { transform: rotate(360deg); } }
.volt-spin { animation: volt-spin .8s linear infinite; }

/* ── Responsive Utility ── */
.volt-hide-mobile { display: none !important; }
@media (min-width: 768px) { .volt-hide-mobile { display: initial !important; } }
.volt-hide-desktop { display: initial; }
@media (min-width: 768px) { .volt-hide-desktop { display: none !important; } }
