/* ===================================
   ELECTRO BADR — FINAL CSS
=================================== */

:root {
  --orange:       #ff7b22;
  --orange-hover: #ff944d;
  --dark:         #0f0f11;
  --dark-card:    #18181b;
  --light:        #f7f7f7;
  --light-card:   #ffffff;
  --white:        #ffffff;
  --black:        #000000;
  --gray:         #a1a1aa;
}

/* ── RESET ──────────────────────────── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  cursor: none !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html { scroll-behavior: smooth; }

/* ── BODY ───────────────────────────── */
body {
  background: var(--dark);
  color: white;
  overflow-x: hidden;
  transition: background .4s ease, color .4s ease;
}

@keyframes pageReveal {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── PAGE WRAPPER ───────────────────── */
.page-wrapper {
  animation: pageReveal .8s cubic-bezier(.22,.61,.36,1) forwards;
}

/* ── LIGHT MODE ─────────────────────── */
body.light-mode { background: var(--light); color: #111; }
body.light-mode .navbar { background: white; }
body.light-mode .feature-card,
body.light-mode .product-card,
body.light-mode .about-card,
body.light-mode .stat-card,
body.light-mode .social-card { background: white; color: #111; }
body.light-mode nav a { color: #111; }
body.light-mode footer { background: #ececec; color: #111; }

/* ── CURSOR ─────────────────────────── */
.hero-cursor-dot {
  position: fixed;
  width: 12px;
  height: 12px;
  background: #ff7b22;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2147483647;
  left: -50px;
  top: -50px;
  transform: translate(-50%, -50%);
  opacity: 1;
  box-shadow: 0 0 10px rgba(255,123,34,.9);
  transition:
    width .2s ease,
    height .2s ease,
    background .2s ease,
    box-shadow .2s ease,
    transform .15s ease,
    opacity .3s ease;
  isolation: isolate;
  will-change: left, top;
}

.hero-cursor-dot.center {
  width: 20px;
  height: 20px;
  background: #ff944d;
  box-shadow: 0 0 20px rgba(255,123,34,1);
}

/* ── AMBIENT CORNER GLOWS ───────────── */
body::before {
  content: '';
  position: fixed;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,123,34,0.04) 0%, transparent 70%);
  pointer-events: none;
  animation: cornerGlow 8s ease-in-out infinite;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  bottom: -200px; left: -200px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,148,77,0.04) 0%, transparent 70%);
  pointer-events: none;
  animation: cornerGlow 8s ease-in-out infinite reverse;
  z-index: 0;
}

@keyframes cornerGlow {
  0%, 100% { opacity: .5; transform: scale(1); }
  50%       { opacity: 1;  transform: scale(1.15); }
}

/* ── NAVBAR — LIQUID GLASS ──────────── */
.navbar {
  position: fixed;
  top: 12px;
  left: 51%;
  transform: translateX(-50%);
  width: 92%;
  max-width: 1140px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 24px;
  border-radius: 60px;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.08) 0%,
    rgba(255,123,34,0.06) 40%,
    rgba(255,255,255,0.04) 100%
  );
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-top:    1px solid rgba(255,255,255,0.18);
  border-left:   1px solid rgba(255,255,255,0.12);
  border-right:  1px solid rgba(255,123,34,0.15);
  border-bottom: 1px solid rgba(255,123,34,0.10);
  box-shadow:
    0 8px 32px rgba(0,0,0,0.35),
    0 2px 8px  rgba(0,0,0,0.20),
    inset 0  1px 0 rgba(255,255,255,0.12),
    inset 0 -1px 0 rgba(255,123,34,0.08);
  z-index: 9000;
  transition: box-shadow .4s ease, background .4s ease;
  animation: navbarFloat 1s cubic-bezier(.22,.61,.36,1) forwards;
}

@keyframes navbarFloat {
  from { opacity: 0; transform: translateX(-50%) translateY(-30px) rotateX(8deg); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0) rotateX(0deg); }
}

.navbar:hover {
  box-shadow:
    0 20px 60px rgba(0,0,0,0.50),
    0 6px 20px  rgba(0,0,0,0.30),
    0 0 80px    rgba(255,123,34,0.08),
    inset 0  1px 0 rgba(255,255,255,0.14),
    inset 0 -1px 0 rgba(255,123,34,0.14);
}

.navbar::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.50), rgba(255,123,34,0.40), transparent);
  border-radius: 50%;
  pointer-events: none;
  animation: shineSweep 4s ease-in-out infinite;
}

@keyframes shineSweep {
  0%   { left: -60%; opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { left: 160%; opacity: 0; }
}

.navbar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 20%;
  width: 60%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,123,34,0.35), transparent);
  pointer-events: none;
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.4; transform: scaleX(0.8); }
  50%       { opacity: 1;   transform: scaleX(1.1); }
}

body.light-mode .navbar {
  background: linear-gradient(135deg, rgba(255,255,255,0.55) 0%, rgba(255,123,34,0.08) 50%, rgba(255,255,255,0.40) 100%);
  border-top:    1px solid rgba(255,255,255,0.80);
  border-left:   1px solid rgba(255,255,255,0.60);
  border-right:  1px solid rgba(255,123,34,0.20);
  border-bottom: 1px solid rgba(255,123,34,0.12);
  box-shadow:
    0 8px 32px rgba(0,0,0,0.10),
    0 2px 8px  rgba(0,0,0,0.06),
    inset 0  1px 0 rgba(255,255,255,0.90),
    inset 0 -1px 0 rgba(255,123,34,0.10);
}

/* ── LOGO ───────────────────────────── */
.logo img {
  height: 44px;
  transition: transform .4s cubic-bezier(.22,.61,.36,1), filter .4s ease;
  filter: drop-shadow(0 0 0px rgba(255,123,34,0));
}

.logo img:hover {
  transform: scale(1.5) rotateY(8deg) rotateX(-3deg);
  filter: drop-shadow(0 0 12px rgba(255,123,34,0.40));
}

/* ── NAV LINKS ──────────────────────── */
nav { display: flex; gap: 30px; }

nav a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 14px;
  transition: color .3s ease, transform .2s cubic-bezier(.22,.61,.36,1), text-shadow .3s ease;
  position: relative;
  display: inline-block;
}

nav a:hover {
  color: var(--orange);
  transform: translateY(-2px) scale(1.05);
  text-shadow: 0 0 20px rgba(255,123,34,0.50);
}

nav a:active { transform: translateY(1px) scale(0.97); }

nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -5px;
  width: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  transition: width .4s cubic-bezier(.22,.61,.36,1);
  border-radius: 2px;
}

nav a:hover::after { width: 100%; }

/* ── NAV ACTIONS ────────────────────── */
.nav-actions { display: flex; align-items: center; gap: 10px; }

.search-bar {
  padding: 10px 15px;
  border: 1px solid rgba(255,255,255,0.08);
  outline: none;
  border-radius: 30px;
  background: rgba(255,255,255,0.06);
  color: white;
  width: 200px;
  transition: background .4s ease, border-color .4s ease, box-shadow .4s ease, width .4s cubic-bezier(.22,.61,.36,1);
}

.search-bar:focus {
  width: 240px;
  background: rgba(255,123,34,0.08);
  border-color: rgba(255,123,34,0.50);
  box-shadow: 0 0 0 3px rgba(255,123,34,0.10), 0 0 20px rgba(255,123,34,0.15);
}

body.light-mode .search-bar { background: rgba(0,0,0,0.06); color: #111; border-color: rgba(0,0,0,0.10); }

#languageSwitcher {
  padding: 10px;
  border: none;
  border-radius: 20px;
  background: var(--orange);
  color: white;
  transition: transform .2s cubic-bezier(.22,.61,.36,1), box-shadow .3s ease;
}

#theme-toggle {
  width: 42px; height: 42px;
  border: none; border-radius: 50%;
  background: var(--orange);
  color: white;
  font-size: 18px;
  transition: transform .2s cubic-bezier(.22,.61,.36,1), box-shadow .3s ease;
}

#languageSwitcher:hover,
#theme-toggle:hover {
  transform: translateY(-2px) scale(1.08);
  box-shadow: 0 6px 20px rgba(255,123,34,0.40);
}

#languageSwitcher:active,
#theme-toggle:active { transform: scale(0.94); }

.cart-icon {
  position: relative;
  font-size: 22px;
  transition: transform .3s cubic-bezier(.22,.61,.36,1), color .3s ease;
}

.cart-icon:hover {
  transform: translateY(-3px) scale(1.15);
  color: var(--orange);
  filter: drop-shadow(0 0 8px rgba(255,123,34,0.60));
}

#cart-count {
  position: absolute;
  top: -8px; right: -10px;
  background: red;
  width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-size: 12px;
}

/* ── HERO ───────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(110deg, rgba(8,8,8,.45) 0%, rgba(18,9,2,.35) 45%, rgba(8,8,8,.40) 100%);
  pointer-events: none;
}

.hero-video-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 45% 55% at 68% 45%, rgba(224,123,57,.12) 0%, transparent 65%);
}

.scan-line {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(224,123,57,.5), transparent);
  z-index: 3;
  animation: scanAnim 5s linear infinite;
  pointer-events: none;
}

@keyframes scanAnim { 0% { top: 0; } 100% { top: 100%; } }

.corner-bracket {
  position: absolute;
  width: 18px; height: 18px;
  border-style: solid;
  z-index: 4;
  opacity: .55;
  pointer-events: none;
}
.cb-tl { top: 12px; left: 12px;     border-color: #E07B39; border-width: 2px 0 0 2px; }
.cb-tr { top: 12px; right: 12px;    border-color: #E07B39; border-width: 2px 2px 0 0; }
.cb-bl { bottom: 12px; left: 12px;  border-color: #C0622A; border-width: 0 0 2px 2px; }
.cb-br { bottom: 12px; right: 12px; border-color: #C0622A; border-width: 0 2px 2px 0; }

/* ── HERO CONTENT ───────────────────── */
.hero-content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  max-width: 580px;
  width: 50%;
  padding-top: 150px;
  padding-left: 5%;
  padding-bottom: 60px;
  margin: 0;
}

.hero-title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -.01em;
  margin-bottom: 20px;
}

.hero-line1 { display: block; font-size: clamp(2.4rem,5vw,4.2rem); color: #F2F2F2; }
.hero-line2 { display: block; font-size: clamp(2.4rem,5vw,4.2rem); color: #E07B39; text-shadow: 0 0 40px rgba(224,123,57,.35); }
.hero-line3 { display: block; font-size: clamp(2.4rem,5vw,4.2rem); color: #F2F2F2; }

/* ── STATS ROW ──────────────────────── */
.stats-row { display: flex; gap: 10px; flex-wrap: wrap; }

.stat-glass {
  position: relative;
  padding: 11px 18px;
  border-radius: 12px;
  overflow: hidden;
  min-width: 100px;
  background: linear-gradient(135deg, rgba(224,123,57,.18) 0%, rgba(192,98,42,.10) 50%, rgba(224,123,57,.14) 100%);
  border: 1px solid rgba(224,123,57,.35);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: 0 4px 24px rgba(224,123,57,.15), inset 0 1px 0 rgba(255,200,120,.25), inset 0 -1px 0 rgba(160,70,20,.2);
  transition: all .3s ease;
}

.stat-glass::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(180deg, rgba(255,200,120,.18) 0%, transparent 100%);
  border-radius: 12px 12px 0 0;
  pointer-events: none;
}

.stat-glass::after {
  content: '';
  position: absolute;
  top: 10%; left: -30%;
  width: 30%; height: 80%;
  background: linear-gradient(90deg, transparent, rgba(255,200,120,.12), transparent);
  animation: shimmer 3s ease-in-out infinite;
  pointer-events: none;
}

.stat-glass:nth-child(2)::after { animation-delay: .8s; }
.stat-glass:nth-child(3)::after { animation-delay: 1.6s; }

@keyframes shimmer {
  0%,100% { left: -30%; opacity: .6; }
  50%      { left: 120%; opacity: 1; }
}

.stat-glass:hover {
  border-color: rgba(224,123,57,.6);
  box-shadow: 0 8px 32px rgba(224,123,57,.28), inset 0 1px 0 rgba(255,200,120,.35), inset 0 -1px 0 rgba(160,70,20,.25);
  transform: translateY(-3px);
}

.stat-value {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem; font-weight: 700;
  color: #E07B39; line-height: 1;
  text-shadow: 0 0 20px rgba(224,123,57,.5);
  position: relative; z-index: 1;
}

.stat-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: .55rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-top: 3px;
  position: relative; z-index: 1;
}

/* ── HERO HOVER OVERLAY ─────────────── */
.hero-hover-overlay {
  position: absolute;
  inset: 0; z-index: 8;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.4,0,0.2,1);
}

.hero-hover-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 52% 58% at 50% 50%, rgba(0,0,0,.78) 0%, rgba(0,0,0,.28) 55%, transparent 75%);
}

.hero-hover-overlay.active { opacity: 1; pointer-events: auto; }

.hero-hover-buttons {
  position: relative; z-index: 2;
  display: flex; gap: 16px;
  transform: translateY(14px) scale(0.9);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1), opacity 0.35s ease;
}

.hero-hover-overlay.active .hero-hover-buttons {
  transform: translateY(0) scale(1);
  opacity: 1;
  transition-delay: 0.07s;
}

.hero-hover-btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 30px; border-radius: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; border: 2px solid transparent;
  white-space: nowrap; position: relative; overflow: hidden;
  transition: all 0.28s cubic-bezier(0.4,0,0.2,1);
}

.hero-hover-btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
  transition: left 0.45s ease;
  pointer-events: none;
}

.hero-hover-btn:hover::after { left: 150%; }

.hero-hover-btn--primary {
  background: #E07B39; color: #fff; border-color: #E07B39;
  box-shadow: 0 4px 22px rgba(224,123,57,.45);
}

.hero-hover-btn--primary:hover {
  background: transparent; color: #E07B39;
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(224,123,57,.55);
}

.hero-hover-btn--secondary {
  background: rgba(255,255,255,.08); color: #F0F0F0;
  border-color: rgba(255,255,255,.28);
  backdrop-filter: blur(8px);
}

.hero-hover-btn--secondary:hover {
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.55);
  color: #fff; transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0,0,0,.45);
}

/* ── BRANDS BAR — LIQUID GLASS ──────── */
.brands-bar {
  position: relative;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;      /* Firefox */
  -ms-overflow-style: none;   /* old Edge */
  cursor: grab;
  direction: ltr;
  padding: 18px 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,123,34,0.06) 40%, rgba(255,255,255,0.03) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-top:    1px solid rgba(255,255,255,0.10);
  border-bottom: 1px solid rgba(255,123,34,0.15);
  box-shadow: 0 4px 30px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.08), inset 0 -1px 0 rgba(255,123,34,0.08);
}

.brands-bar::-webkit-scrollbar { display: none; } /* Chrome / Safari / new Edge */

.brands-bar.dragging { cursor: grabbing; user-select: none; }

.brands-bar::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; width: 80%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.30), rgba(255,123,34,0.25), transparent);
  pointer-events: none;
}

.brands-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--dark) 0%, transparent 12%, transparent 88%, var(--dark) 100%);
  pointer-events: none;
  z-index: 2;
}

.brands-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  /* Auto-scroll + manual drag/wheel/touch is now handled in script.js via
     .brands-bar's scrollLeft, not a CSS transform animation — that's what
     makes the bar actually scrollable instead of just clipped. */
}

.brand-gap { width: 80px; flex-shrink: 0; }

.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 130px;
  height: 56px;
  padding: 10px 16px;
  border-radius: 14px;
  background: rgba(255,123,34,0.05);
  border: 1px solid rgba(255,123,34,0.12);
  transition: background .4s ease, border-color .4s ease, transform .4s cubic-bezier(.22,.61,.36,1), box-shadow .4s ease;
  overflow: hidden;
}

.brand-item:hover {
  background: rgba(255,123,34,0.12);
  border-color: rgba(255,123,34,0.40);
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 10px 30px rgba(255,123,34,0.20);
}

.brand-item img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  min-width: unset !important;
  min-height: unset !important;
  flex-shrink: 0;
  object-fit: contain;
  object-position: center;
  filter: brightness(0) invert(1);
  opacity: 0.80;
  transition: opacity .4s ease, filter .4s ease, transform .4s ease;
  -webkit-user-drag: none;
  user-drag: none;
}

.brand-item:hover img {
  opacity: 1;
  filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(5deg);
  transform: scale(1.05);
}

.brand-item.no-filter img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  min-width: unset !important;
  min-height: unset !important;
  object-fit: contain;
  object-position: center;
  filter: brightness(0) invert(1);
  opacity: 0.80;
  -webkit-user-drag: none;
  user-drag: none;
}

.brand-item.no-filter:hover img {
  opacity: 1;
  filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(5deg);
  transform: scale(1.05);
}
body.light-mode .brands-bar {
  background: linear-gradient(135deg, rgba(255,255,255,0.60) 0%, rgba(255,123,34,0.06) 50%, rgba(255,255,255,0.50) 100%);
  border-top:    1px solid rgba(255,255,255,0.80);
  border-bottom: 1px solid rgba(255,123,34,0.20);
}

body.light-mode .brands-bar::after {
  background: linear-gradient(90deg, var(--light) 0%, transparent 12%, transparent 88%, var(--light) 100%);
}

body.light-mode .brand-item img { filter: brightness(0); opacity: 0.40; }
body.light-mode .brand-item:hover img { filter: brightness(0) sepia(1) saturate(5) hue-rotate(5deg); opacity: 1; }

/* ── FEATURES ───────────────────────── */
.features {
  padding: 100px 8%;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 25px;
  position: relative;
  overflow: hidden;
}

.features-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

.feature-card {
  background: var(--dark-card);
  padding: 35px; border-radius: 20px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: transform .5s cubic-bezier(.22,.61,.36,1), box-shadow .5s ease, border .4s ease;
}

.feature-card:hover {
  transform: translateY(-14px) rotateX(6deg) rotateY(-4deg) scale(1.02);
  box-shadow: 0 30px 60px rgba(0,0,0,0.50), 0 0 40px rgba(255,123,34,0.12), inset 0 1px 0 rgba(255,123,34,0.15);
  border: 1px solid rgba(255,123,34,0.50);
}

.feature-card i {
  font-size: 45px; color: var(--orange); margin-bottom: 20px;
  transition: transform .4s cubic-bezier(.22,.61,.36,1), color .3s ease;
  display: inline-block;
}

.feature-card:hover i { transform: translateZ(20px) scale(1.2) rotateY(15deg); color: #ff944d; }
.feature-card h3 { transition: transform .4s ease, color .3s ease; }
.feature-card:hover h3 { transform: translateZ(10px); color: #ff7b22; }

/* ── PRODUCTS / CATEGORIES / BESTSELLERS ── */
.products-preview {
  padding: 100px 8%;
  position: relative;
  overflow: hidden;
}

.bg-particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

.products-preview h2 {
  text-align: center; margin-bottom: 50px; font-size: 40px;
  position: relative;
  z-index: 1;
}

.products-preview h2::after {
  content: '';
  position: absolute;
  bottom: -8px; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px;
  background: linear-gradient(90deg, transparent, #ff7b22, transparent);
  border-radius: 2px;
  animation: headingLine 2.5s ease-in-out infinite;
}

@keyframes headingLine {
  0%, 100% { width: 30%; opacity: .5; }
  50%       { width: 80%; opacity: 1; }
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.product-card {
  background: var(--dark-card); border-radius: 20px; overflow: hidden;
  transition: transform .5s cubic-bezier(.22,.61,.36,1), box-shadow .5s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-16px) rotateX(5deg) rotateY(-3deg) scale(1.02);
  box-shadow: 0 40px 80px rgba(0,0,0,0.55), 0 0 60px rgba(255,123,34,0.10), 0 0 20px rgba(255,123,34,0.08);
}

.product-card img {
  width: 100%; height: 250px; object-fit: cover;
  transition: transform .6s cubic-bezier(.22,.61,.36,1), filter .4s ease;
}

.product-card:hover img { transform: scale(1.08); filter: brightness(1.08) saturate(1.1); }
.product-card h3 { padding: 15px; }
.product-card p  { padding: 0 15px 15px; color: var(--gray); }
.product-card .btn { margin: 15px; }
.product-card .btn:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 10px 30px rgba(255,123,34,0.45); }
.product-card .bs-price { color: #ff7b22; font-size: 20px; font-weight: 700; }
/* ── REVIEWS ────────────────────────── */
.reviews {
  padding: 100px 8%;
  position: relative;
  overflow: hidden;
}

.reviews h2 {
  text-align: center; margin-bottom: 50px; font-size: 40px;
  position: relative;
  z-index: 1;
}

.reviews h2::after {
  content: '';
  position: absolute;
  bottom: -8px; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px;
  background: linear-gradient(90deg, transparent, #ff7b22, transparent);
  border-radius: 2px;
  animation: headingLine 2.5s ease-in-out infinite;
}

.reviews-track-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  z-index: 1;
}

.reviews-track-wrapper::before,
.reviews-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.reviews-track-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, var(--dark) 0%, transparent 100%);
}

.reviews-track-wrapper::after {
  right: 0;
  background: linear-gradient(270deg, var(--dark) 0%, transparent 100%);
}

body.light-mode .reviews-track-wrapper::before {
  background: linear-gradient(90deg, var(--light) 0%, transparent 100%);
}

body.light-mode .reviews-track-wrapper::after {
  background: linear-gradient(270deg, var(--light) 0%, transparent 100%);
}

.reviews-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: reviewsScroll 18s linear infinite;
  will-change: transform;
}

.reviews-track:hover { animation-play-state: paused; }

@keyframes reviewsScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.review-card {
  background: var(--dark-card);
  border-radius: 20px;
  padding: 30px;
  min-width: 300px;
  max-width: 300px;
  flex-shrink: 0;
  text-align: center;
  transition: transform .4s cubic-bezier(.22,.61,.36,1), box-shadow .4s ease, border .4s ease;
  border: 1px solid transparent;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(255,123,34,0.12);
  border-color: rgba(255,123,34,0.30);
}

.review-card h3 { color: var(--orange); margin-bottom: 12px; letter-spacing: 2px; }
.review-card p  { color: var(--gray); line-height: 1.6; }

.review-name {
  display: block;
  margin-top: 14px;
  color: var(--orange);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
}

body.light-mode .review-card { background: white; }

/* ── BUTTONS ────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border: none; border-radius: 30px;
  background: var(--orange); color: white;
  text-decoration: none;
  font-weight: 600; transition: .4s;
  position: relative; overflow: hidden;
}

.btn::before, .btn-orange::before, .btn-white::before {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-20deg);
  transition: left .6s ease;
  pointer-events: none;
}

.btn:hover::before, .btn-orange:hover::before, .btn-white:hover::before { left: 160%; }

.btn:hover {
  background: var(--orange-hover);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(255,123,34,.4);
}

.btn-orange {
  background: var(--orange); color: white;
  padding: 18px 45px; border-radius: 50px;
  text-decoration: none; font-size: 18px;
  transition: transform .35s cubic-bezier(.22,.61,.36,1), box-shadow .35s ease;
  position: relative; overflow: hidden;
}

.btn-orange:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 20px 40px rgba(255,123,34,0.50), 0 0 60px rgba(255,123,34,0.20);
}

.btn-white {
  border: 2px solid rgba(255,255,255,.7); color: white;
  padding: 18px 45px; border-radius: 50px;
  text-decoration: none; font-size: 18px;
  transition: .35s; background: transparent;
  position: relative; overflow: hidden;
}

.btn-white:hover { background: rgba(255,255,255,.10); border-color: white; }
.btn:active, .btn-orange:active, .btn-white:active { transform: scale(0.96) translateY(1px); }
.secondary-btn { background: transparent; border: 2px solid var(--orange); }

/* ── SHOP ───────────────────────────── */
.shop-container { padding: 130px 8%; }
.filter-bar { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }

.filter-btn {
  padding: 10px 18px; border: none; border-radius: 25px;
  background: #222; color: white;
  transition: transform .3s cubic-bezier(.22,.61,.36,1), box-shadow .3s ease, background .3s ease;
  position: relative; overflow: hidden;
}

.filter-btn::before {
  content: '';
  position: absolute; inset: 0; border-radius: 25px;
  background: linear-gradient(135deg, rgba(255,123,34,0.15), transparent);
  opacity: 0; transition: opacity .3s ease;
}

.filter-btn:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 8px 24px rgba(255,123,34,0.35); background: var(--orange); }
.filter-btn:hover::before { opacity: 1; }
.filter-btn:active { transform: scale(0.96); }

/* ── ABOUT ──────────────────────────── */
.about-section { padding: 100px 8%; }

.about-card {
  max-width: 1000px; margin: auto;
  background: var(--dark-card); padding: 40px;
  border-radius: 20px; line-height: 1.8; text-align: center;
  transition: transform .5s cubic-bezier(.22,.61,.36,1), box-shadow .5s ease;
}

.about-card:hover {
  transform: translateY(-8px) rotateX(3deg);
  box-shadow: 0 30px 60px rgba(0,0,0,0.40), 0 0 50px rgba(255,123,34,0.08);
}

.stats-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 25px; }

.stat-card {
  background: var(--dark-card); padding: 35px; border-radius: 20px; text-align: center;
  transition: transform .5s cubic-bezier(.22,.61,.36,1), box-shadow .5s ease, border .4s ease;
}

.stat-card:hover {
  transform: translateY(-12px) rotateX(8deg) scale(1.03);
  box-shadow: 0 30px 60px rgba(0,0,0,0.45), 0 0 40px rgba(255,123,34,0.12);
  border: 1px solid rgba(255,123,34,0.50);
}

.stat-card h3 {
  font-size: 42px; color: var(--orange);
  transition: transform .4s ease, text-shadow .4s ease; display: inline-block;
}

.stat-card:hover h3 { transform: translateZ(16px) scale(1.1); text-shadow: 0 0 30px rgba(255,123,34,0.60); }

/* ── CONTACT ────────────────────────── */
.contact-section { padding: 100px 8%; }
.contact-form { max-width: 700px; margin: auto; display: flex; flex-direction: column; gap: 20px; }

.contact-form input,
.contact-form textarea {
  padding: 15px; border: none; border-radius: 12px;
  background: #222; color: white;
  transition: border .4s ease, box-shadow .4s ease, background .4s ease, transform .3s ease;
}

.contact-form textarea { height: 180px; resize: none; }

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border: 1px solid rgba(255,123,34,0.50);
  box-shadow: 0 0 0 3px rgba(255,123,34,0.10), 0 0 20px rgba(255,123,34,0.12);
  background: rgba(255,123,34,0.04);
  transform: translateY(-2px);
}

.map-container { border-radius: 20px; overflow: hidden; }

/* ── SOCIAL CARDS ───────────────────── */
.social-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 25px; }

.social-card {
  background: var(--dark-card); padding: 30px; border-radius: 20px;
  text-decoration: none; color: white; text-align: center;
  transition: transform .5s cubic-bezier(.22,.61,.36,1), box-shadow .5s ease, border .4s ease;
}

.social-card:hover {
  transform: translateY(-12px) rotateX(6deg) rotateY(-4deg) scale(1.03);
  box-shadow: 0 30px 60px rgba(0,0,0,0.45), 0 0 40px rgba(255,123,34,0.12);
  border: 1px solid rgba(255,123,34,0.50);
}

.social-card i {
  font-size: 40px; color: var(--orange); margin-bottom: 15px;
  transition: transform .4s cubic-bezier(.22,.61,.36,1); display: inline-block;
}

.social-card:hover i { transform: translateZ(14px) scale(1.25) rotateY(12deg); }

/* ── CART SIDEBAR (old) ─────────────── */
.cart-sidebar {
  position: fixed; top: 0; right: -400px;
  width: 350px; height: 100vh;
  background: #111; padding: 25px;
  z-index: 2000; transition: .4s; overflow-y: auto;
}

.cart-sidebar.active { right: 0; }
.cart-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; }
.cart-item { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.1); }

/* ── CHECKOUT ───────────────────────── */
.checkout-modal {
  display: none; position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,.8);
  justify-content: center; align-items: center; z-index: 3000;
}

.checkout-content {
  background: #18181b; padding: 40px; border-radius: 20px;
  width: 90%; max-width: 600px; position: relative;
}

.checkout-content input,
.checkout-content textarea {
  width: 100%; padding: 15px; margin-top: 10px; margin-bottom: 15px;
  border: none; border-radius: 10px; background: #222; color: white;
}

/* ── CART BOUNCE ────────────────────── */
@keyframes cartBounce {
  0%   { transform: scale(1); }
  30%  { transform: scale(1.35) translateY(-4px); }
  60%  { transform: scale(0.92); }
  80%  { transform: scale(1.10); }
  100% { transform: scale(1); }
}

.cart-icon.bounce { animation: cartBounce .5s cubic-bezier(.22,.61,.36,1); }

/* ── WHATSAPP ───────────────────────── */
.whatsapp-btn {
  position: fixed; bottom: 25px; right: 25px;
  width: 65px; height: 65px; border-radius: 50%;
  background: #ff7b22;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 30px; text-decoration: none; z-index: 999;
  transition: transform .4s cubic-bezier(.22,.61,.36,1), box-shadow .4s ease;
  animation: whatsappPulse 3s ease-in-out infinite;
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,123,34,0.50), 0 4px 15px rgba(0,0,0,0.30); }
  50%       { box-shadow: 0 0 0 12px rgba(255,123,34,0), 0 4px 15px rgba(0,0,0,0.30); }
}

.whatsapp-btn:hover {
  transform: scale(1.15) translateY(-4px) rotate(8deg);
  animation: none;
  box-shadow: 0 12px 30px rgba(255,123,34,0.50), 0 0 40px rgba(255,123,34,0.20);
}

/* ── SCROLL REVEAL ──────────────────── */
.feature-card,
.product-card,
.about-card,
.stat-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s cubic-bezier(.22,.61,.36,1), transform .8s cubic-bezier(.22,.61,.36,1);
}

.show {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.feature-card:nth-child(1), .product-card:nth-child(1) { transition-delay: .05s; }
.feature-card:nth-child(2), .product-card:nth-child(2) { transition-delay: .15s; }
.feature-card:nth-child(3), .product-card:nth-child(3) { transition-delay: .25s; }
.feature-card:nth-child(4), .product-card:nth-child(4) { transition-delay: .35s; }

/* ── CATEGORY TABS ──────────────────── */
.category-tabs {
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr 1fr !important;
  gap: 16px;
  padding: 0 8% 80px;
}

.cat-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 22px 16px;
  border-radius: 22px;
  min-width: 0 !important;
  max-width: none !important;
  width: auto !important;
  position: relative;
  background: linear-gradient(160deg,rgba(255,255,255,0.05) 0%,rgba(255,123,34,0.03) 50%,rgba(255,255,255,0.02) 100%);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 8px 24px rgba(0,0,0,0.30),inset 0 1px 0 rgba(255,255,255,0.06);
  transition: transform .6s cubic-bezier(.23,1,.32,1),box-shadow .6s cubic-bezier(.23,1,.32,1),border-color .5s ease,background .5s ease;
}

.cat-tab::before {
  content: '';
  position: absolute;
  top: 0; left: 15%; width: 70%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  border-radius: 50%;
  pointer-events: none;
}

.cat-tab::after {
  content: '';
  position: absolute;
  bottom: -12px; left: 20%; width: 60%; height: 12px;
  background: radial-gradient(ellipse, rgba(255,123,34,0.25) 0%, transparent 70%);
  opacity: 0;
  filter: blur(6px);
  transition: opacity .6s ease, transform .6s ease;
  pointer-events: none;
}

.cat-tab i {
  font-size: 36px; color: #666; display: inline-block;
  transition: color .5s ease, transform .6s cubic-bezier(.23,1,.32,1), text-shadow .5s ease;
}

.cat-tab span {
  font-family: 'Bebas Neue', sans-serif; font-size: 15px;
  letter-spacing: 3px; color: #555; display: inline-block;
  transition: color .5s ease, transform .5s cubic-bezier(.23,1,.32,1);
}

.cat-tab:hover {
  transform: translateY(-10px) rotateX(8deg) rotateY(-3deg);
  background: linear-gradient(160deg, rgba(255,123,34,0.08) 0%, rgba(255,123,34,0.03) 60%, rgba(255,255,255,0.03) 100%);
  border-color: rgba(255,123,34,0.30);
  box-shadow: 0 24px 50px rgba(0,0,0,0.45), 0 0 40px rgba(255,123,34,0.10), inset 0 1px 0 rgba(255,123,34,0.12);
}

.cat-tab:hover::after { opacity: 1; transform: scaleX(1.2); }
.cat-tab:hover i { color: #ff7b22; transform: translateY(-3px) scale(1.12); text-shadow: 0 0 16px rgba(255,123,34,0.45); }
.cat-tab:hover span { color: #ff944d; transform: translateY(-1px); }

.cat-tab.active {
  transform: translateY(-8px) rotateX(5deg);
  background: linear-gradient(160deg, rgba(255,123,34,0.12) 0%, rgba(255,123,34,0.05) 60%, rgba(255,255,255,0.03) 100%);
  border-color: rgba(255,123,34,0.50);
  box-shadow: 0 20px 45px rgba(0,0,0,0.40), 0 0 50px rgba(255,123,34,0.15), inset 0 1px 0 rgba(255,123,34,0.20);
}

.cat-tab.active::after { opacity: 1; }
.cat-tab.active i { color: #ff7b22; text-shadow: 0 0 14px rgba(255,123,34,0.50); }
.cat-tab.active span { color: #ff7b22; }
.cat-tab:active { transform: translateY(-4px) rotateX(3deg) scale(0.98); transition-duration: .15s; }

/* ── PAGE TRANSITIONS ───────────────── */
.page-transition {
  position: fixed;
  inset: 0;
  background: #0f0f11;
  z-index: 99998;
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s cubic-bezier(.22,.61,.36,1);
}

.page-transition.fade-in  { opacity: 1; }
.page-transition.fade-out { opacity: 0; }

/* ── CATEGORY LINKS ─────────────────── */
.cat-link { text-decoration: none; color: white; display: block; }

.cat-arrow {
  padding: 0 15px 15px;
  color: var(--orange);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  transition: transform .3s ease;
}

.cat-link:hover .cat-arrow { transform: translateX(6px); }

/* ── QUICK VIEW ─────────────────────── */
.quick-view {
  position: absolute;
  inset: 0;
  background: rgba(15,15,17,0.92);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity .4s cubic-bezier(.22,.61,.36,1), transform .4s cubic-bezier(.22,.61,.36,1);
  pointer-events: none;
  z-index: 2;
  text-align: center;
  border: 1px solid rgba(255,123,34,0.25);
}

.product-card:hover .quick-view { opacity: 1; transform: scale(1); pointer-events: auto; }
.quick-view h4 { font-size: 18px; color: white; font-weight: 600; }
.quick-view .qv-price { font-size: 22px; color: var(--orange); font-weight: 700; }
.quick-view .qv-desc  { font-size: 13px; color: #a1a1aa; line-height: 1.6; }

.quick-view .qv-btn {
  margin-top: 8px; padding: 10px 24px;
  background: var(--orange); color: white;
  border: none; border-radius: 25px;
  font-weight: 600; font-size: 14px;
  transition: transform .3s ease, box-shadow .3s ease;
}

.quick-view .qv-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(255,123,34,0.45); }

/* ── FLOATING CART SIDEBAR ──────────── */
.cart-sidebar-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 8000; opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
}

.cart-sidebar-overlay.active { opacity: 1; pointer-events: auto; }

.cart-sidebar-panel {
  position: fixed; top: 0; right: -420px;
  width: 380px; height: 100vh;
  background: #18181b;
  border-left: 1px solid rgba(255,123,34,0.20);
  box-shadow: -10px 0 40px rgba(0,0,0,0.5);
  z-index: 8001;
  display: flex; flex-direction: column;
  transition: right .45s cubic-bezier(.22,.61,.36,1);
}

.cart-sidebar-panel.active { right: 0; }

.cart-sidebar-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.cart-sidebar-header h3 { font-size: 20px; font-weight: 700; color: white; }

.cart-sidebar-close {
  background: none; border: none; color: #a1a1aa; font-size: 20px;
  transition: color .3s ease, transform .3s ease;
}

.cart-sidebar-close:hover { color: var(--orange); transform: rotate(90deg); }

.cart-sidebar-items {
  flex: 1; overflow-y: auto; padding: 20px 24px;
  display: flex; flex-direction: column; gap: 16px;
}

.cart-empty { color: #a1a1aa; text-align: center; margin-top: 40px; font-size: 15px; }

.cart-sidebar-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.06);
  animation: slideInItem .3s cubic-bezier(.22,.61,.36,1) forwards;
}

@keyframes slideInItem {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.cart-item-info { flex: 1; }
.cart-item-name  { font-size: 14px; font-weight: 600; color: white; margin-bottom: 4px; }
.cart-item-price { font-size: 13px; color: var(--orange); }
.cart-item-qty   { display: flex; align-items: center; gap: 10px; }

.cart-qty-btn {
  width: 28px; height: 28px; border: none; border-radius: 50%;
  background: rgba(255,123,34,0.15); color: var(--orange); font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: background .3s ease;
}

.cart-qty-btn:hover { background: rgba(255,123,34,0.30); }
.cart-qty-num { font-size: 15px; font-weight: 600; color: white; min-width: 20px; text-align: center; }

.cart-item-remove {
  background: none; border: none; color: #555; font-size: 16px;
  margin-left: 10px; transition: color .3s ease;
}

.cart-item-remove:hover { color: #ff4444; }

.cart-sidebar-footer { padding: 20px 24px; border-top: 1px solid rgba(255,255,255,0.08); }

.cart-total-row {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px;
}

.cart-total-row span:first-child { color: #a1a1aa; font-size: 14px; }
.cart-total-row span:last-child  { color: var(--orange); font-size: 22px; font-weight: 700; }

.cart-checkout-btn {
  display: block; width: 100%; padding: 16px;
  background: var(--orange); color: white;
  text-align: center; text-decoration: none;
  border-radius: 14px; font-weight: 600; font-size: 16px;
  transition: transform .3s ease, box-shadow .3s ease;
}

.cart-checkout-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(255,123,34,0.45); }

/* ── SEARCH SUGGESTIONS ─────────────── */
.search-wrapper { position: relative; }

.search-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  width: 100%; min-width: 280px;
  background: #18181b;
  border: 1px solid rgba(255,123,34,0.25);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 30px rgba(255,123,34,0.08);
  z-index: 9999; overflow: hidden; display: none;
  animation: dropdownIn .25s cubic-bezier(.22,.61,.36,1) forwards;
}

.search-dropdown.active { display: block; }

@keyframes dropdownIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.search-suggestion {
  display: flex; align-items: center; gap: 12px; padding: 12px 16px;
  transition: background .2s ease; text-decoration: none; color: white;
}

.search-suggestion:hover { background: rgba(255,123,34,0.10); }
.search-suggestion:hover .suggestion-name { color: var(--orange); }

.search-suggestion img { width: 42px; height: 42px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.suggestion-info { flex: 1; }
.suggestion-name  { font-size: 14px; font-weight: 600; color: white; transition: color .2s ease; }
.suggestion-price { font-size: 12px; color: var(--orange); margin-top: 2px; }
.suggestion-cat   { font-size: 11px; color: #a1a1aa; margin-top: 1px; }
.search-no-results { padding: 16px; color: #a1a1aa; font-size: 14px; text-align: center; }
.search-highlight  { color: var(--orange); font-weight: 700; }

/* ── FOOTER ─────────────────────────── */
.footer {
  position: relative;
  background: #080808;
  overflow: hidden;
  padding: 0;
}

.footer-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0; pointer-events: none; opacity: 0.6;
}

.footer-glow-line {
  position: relative; z-index: 1; height: 1px;
  background: linear-gradient(90deg,
    transparent 0%, rgba(255,123,34,0.3) 20%,
    rgba(255,123,34,0.8) 50%, rgba(255,123,34,0.3) 80%, transparent 100%);
  animation: footerGlow 3s ease-in-out infinite;
}

@keyframes footerGlow {
  0%, 100% { opacity: 0.5; transform: scaleX(0.8); }
  50%       { opacity: 1;   transform: scaleX(1); }
}

.footer-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px; padding: 60px 8% 40px;
}

.footer-brand .footer-logo {
  height: 60px; width: auto; margin-bottom: 16px; display: block;
  transition: transform .4s cubic-bezier(.22,.61,.36,1), filter .4s ease;
  filter: brightness(0) invert(1);
}

.footer-brand .footer-logo:hover {
  transform: scale(1.06) rotateY(6deg);
  filter: brightness(0) invert(1) drop-shadow(0 0 12px rgba(255,123,34,0.6));
}

.footer-tagline {
  color: var(--orange); font-size: 13px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px;
}

.footer-desc { color: #a1a1aa; font-size: 14px; line-height: 1.7; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 12px; }

.fsocial {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,123,34,0.10);
  border: 1px solid rgba(255,123,34,0.25);
  display: flex; align-items: center; justify-content: center;
  color: #a1a1aa; font-size: 16px; text-decoration: none;
  transition: transform .35s cubic-bezier(.22,.61,.36,1), background .3s ease, color .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.fsocial:hover {
  background: var(--orange); border-color: var(--orange); color: white;
  transform: translateY(-5px) rotateZ(8deg) scale(1.1);
  box-shadow: 0 10px 25px rgba(255,123,34,0.45);
}

.footer-col-title {
  font-size: 14px; font-weight: 700; color: white;
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 20px; position: relative; padding-bottom: 12px;
}

.footer-col-title::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 30px; height: 2px; background: var(--orange);
  border-radius: 2px; transition: width .4s ease;
}

.footer-col:hover .footer-col-title::after { width: 60px; }

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  color: #a1a1aa; text-decoration: none; font-size: 14px;
  transition: color .3s ease, padding-left .3s ease;
  display: inline-block; position: relative;
}

.footer-links a::before {
  content: '→'; position: absolute; left: -18px; opacity: 0;
  color: var(--orange); transition: opacity .3s ease, left .3s ease;
}

.footer-links a:hover { color: var(--orange); padding-left: 18px; }
.footer-links a:hover::before { opacity: 1; left: 0; }

.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }

.footer-contact-list li {
  display: flex; align-items: center; gap: 12px;
  color: #a1a1aa; font-size: 14px;
  transition: color .3s ease, transform .3s ease;
}

.footer-contact-list li:hover { color: white; transform: translateX(4px); }
.footer-contact-list i { color: var(--orange); width: 16px; flex-shrink: 0; }

.footer-bottom {
  position: relative; z-index: 1;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 8%;
  border-top: none !important;
  color: #555; font-size: 13px;
}

.footer-bottom-right { color: #555; }

body.light-mode .footer { background: #ececec; }
body.light-mode .footer-brand .footer-logo { filter: none; }
body.light-mode .footer-col-title { color: #111; }
body.light-mode .footer-links a { color: #555; }
body.light-mode .footer-contact-list li { color: #555; }
body.light-mode .footer-bottom { color: #888; }

/* ── BACK TO TOP ────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 100px; right: 25px;
  width: 48px; height: 48px;
  border-radius: 50%; border: none;
  background: var(--orange); color: white;
  font-size: 16px; z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(255,123,34,0.45);
  opacity: 0;
  transform: translateY(20px) scale(0.8);
  pointer-events: none;
  transition: opacity .4s cubic-bezier(.22,.61,.36,1), transform .4s cubic-bezier(.22,.61,.36,1), box-shadow .3s ease, background .3s ease;
}

.back-to-top.visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.back-to-top:hover { background: var(--orange-hover); transform: translateY(-4px) scale(1.1); box-shadow: 0 12px 30px rgba(255,123,34,0.60); }
.back-to-top:active { transform: scale(0.95); }
.back-to-top i { transition: transform .3s cubic-bezier(.22,.61,.36,1); }
.back-to-top:hover i { transform: translateY(-2px); }
/* ── LIGHT MODE — SHOP PAGE ── */
    body.light-mode .shop-hero h1 { color:#111; text-shadow:none; }
    body.light-mode .shop-hero p  { color:#555; }

    body.light-mode .cat-tab { background:#ffffff; border:1px solid rgba(0,0,0,0.08); box-shadow:0 8px 24px rgba(0,0,0,0.06); }
    body.light-mode .cat-tab:hover { background:linear-gradient(160deg,rgba(255,123,34,0.10) 0%,rgba(255,123,34,0.03) 60%,#ffffff 100%); box-shadow:0 24px 50px rgba(0,0,0,0.10),0 0 40px rgba(255,123,34,0.12); }
    body.light-mode .cat-tab.active { background:linear-gradient(160deg,rgba(255,123,34,0.14) 0%,rgba(255,123,34,0.05) 60%,#ffffff 100%); box-shadow:0 20px 45px rgba(0,0,0,0.08),0 0 50px rgba(255,123,34,0.18); }
    body.light-mode .cat-tab span { color:#555; }

    body.light-mode .category-title { color:#111; }

    body.light-mode .shop-card { background:#ffffff; border:1px solid rgba(0,0,0,0.08); box-shadow:0 4px 16px rgba(0,0,0,0.06); }
    body.light-mode .shop-card:hover { box-shadow:0 30px 60px rgba(0,0,0,0.12),0 0 30px rgba(255,123,34,0.10); }
    body.light-mode .shop-card-body h3 { color:#111; }
    body.light-mode .shop-card-body .desc { color:#666; }

    body.light-mode .modal-overlay { background:rgba(0,0,0,0.55); }
    body.light-mode .modal-box { background:#ffffff; border:1px solid rgba(0,0,0,0.10); box-shadow:0 40px 80px rgba(0,0,0,0.18),0 0 60px rgba(255,123,34,0.08); }
    body.light-mode .modal-box h2 { color:#111; }
    body.light-mode .modal-sub { color:#666; }
    body.light-mode .modal-close { color:#888; }

    body.light-mode .product-preview-info h4 { color:#111; }
    body.light-mode .product-preview-info .pdesc { color:#666; }

    body.light-mode .qty-row label { color:#666; }
    body.light-mode .qty-num { color:#111; }

    body.light-mode .total-row span:first-child { color:#666; }

    body.light-mode .modal-field label { color:#666; }
    body.light-mode .modal-field input,
    body.light-mode .modal-field textarea { background:#f7f7f7; color:#111; border:1px solid rgba(0,0,0,0.10); }
    body.light-mode .modal-field input:focus,
    body.light-mode .modal-field textarea:focus { background:#ffffff; border-color:rgba(255,123,34,0.50); }

    body.light-mode .payment-option-text h4 { color:#111; }
    body.light-mode .payment-option-text p { color:#666; }

    body.light-mode .success-text p { color:#555; }
    body.light-mode .order-summary p { color:#111; }

/* ── FOOTER MAP SECTION ─────────────── */
.footer-map-section {
  position: relative; z-index: 1;
  display: flex; align-items: center;
  gap: 40px; padding: 40px 8%;
}

.footer-map-info {
  display: flex; flex-direction: column;
  align-items: center; gap: 20px;
  flex-shrink: 0; min-width: 160px;
}

.footer-map-pin { position: relative; display: flex; align-items: center; justify-content: center; }

.pin-icon { position: relative; animation: pinBounce 2s ease-in-out infinite; }

@keyframes pinBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.pin-pulse {
  position: absolute; bottom: -6px; left: 50%;
  transform: translateX(-50%);
  width: 30px; height: 10px;
  background: radial-gradient(ellipse, rgba(255,123,34,0.4) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulseShadow 2s ease-in-out infinite;
}

@keyframes pulseShadow {
  0%, 100% { opacity: 0.4; transform: translateX(-50%) scaleX(1); }
  50%       { opacity: 0.15; transform: translateX(-50%) scaleX(0.7); }
}

.footer-map-details { text-align: center; }

.footer-map-details h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; letter-spacing: 4px;
  color: white; margin-bottom: 6px;
}

.footer-map-details p { color: #a1a1aa; font-size: 13px; line-height: 1.6; margin: 0; }

.map-open-btn {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 14px; padding: 10px 20px;
  background: #ff7b22; color: white;
  text-decoration: none; border-radius: 25px;
  font-size: 13px; font-weight: 600;
  transition: transform .3s cubic-bezier(.22,.61,.36,1), box-shadow .3s ease;
}

.map-open-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(255,123,34,0.45); }

.footer-map-canvas {
  flex: 1; border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(255,123,34,0.15);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 30px rgba(255,123,34,0.06);
  height: 280px;
}

.footer-map-canvas svg { display: block; width: 100%; height: 100%; }

/* ── HAMBURGER MENU ─────────────────── */
.hamburger-btn {
  position: fixed;
  top: 22px; left: 15px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 5px;
  z-index: 99999;
  box-shadow: 0 4px 20px rgba(0,0,0,0.30);
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.hamburger-btn:hover {
  background: rgba(255,123,34,0.15);
  border-color: rgba(255,123,34,0.35);
  box-shadow: 0 6px 25px rgba(255,123,34,0.25);
  transform: scale(1.08);
}

.hamburger-btn.open {
  background: rgba(255,123,34,0.20);
  border-color: rgba(255,123,34,0.50);
}

.hb-line {
  width: 20px; height: 2px;
  background: white; border-radius: 2px;
  transition: transform .4s cubic-bezier(.22,.61,.36,1), opacity .3s ease, width .3s ease;
  transform-origin: center;
}

.hamburger-btn.open .hb-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn.open .hb-line:nth-child(2) { opacity: 0; width: 0; }
.hamburger-btn.open .hb-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hb-menu {
  position: fixed; top: 0; left: 0;
  width: 280px; height: 100vh;
  background: linear-gradient(160deg, #0f0f11 0%, #1a0e05 100%);
  border-right: 1px solid rgba(255,123,34,0.15);
  box-shadow: 10px 0 40px rgba(0,0,0,0.5);
  z-index: 99998;
  transform: translateX(-100%);
  transition: transform .5s cubic-bezier(.22,.61,.36,1);
  display: flex; flex-direction: column;
  padding: 100px 0 40px;
  overflow: hidden;
}

.hb-menu::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,123,34,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hb-menu.open { transform: translateX(0); }

.hb-menu-logo { padding: 0 30px 30px; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 20px; }
.hb-menu-logo img { height: 40px; filter: brightness(0) invert(1); opacity: 0.8; }

.hb-menu-links { display: flex; flex-direction: column; padding: 0 20px; gap: 6px; flex: 1; }

.hb-link {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 18px; border-radius: 14px;
  text-decoration: none; color: #a1a1aa;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px; letter-spacing: 3px;
  border: 1px solid transparent;
  transition: background .3s ease, color .3s ease, border-color .3s ease, transform .4s cubic-bezier(.22,.61,.36,1), box-shadow .3s ease;
  opacity: 0; transform: translateX(-20px);
}

.hb-menu.open .hb-link { opacity: 1; transform: translateX(0); }
.hb-menu.open .hb-link:nth-child(1) { transition-delay: .10s; }
.hb-menu.open .hb-link:nth-child(2) { transition-delay: .17s; }
.hb-menu.open .hb-link:nth-child(3) { transition-delay: .24s; }
.hb-menu.open .hb-link:nth-child(4) { transition-delay: .31s; }

.hb-link:hover { background: rgba(255,123,34,0.08); border-color: rgba(255,123,34,0.20); color: #ff7b22; transform: translateX(6px); }
.hb-link.active-page { background: rgba(255,123,34,0.10); border-color: rgba(255,123,34,0.30); color: #ff7b22; }

.hb-link-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,123,34,0.10);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: #ff7b22; flex-shrink: 0;
  transition: transform .3s cubic-bezier(.22,.61,.36,1), box-shadow .3s ease;
}

.hb-link:hover .hb-link-icon { transform: scale(1.15) rotateY(15deg); box-shadow: 0 4px 14px rgba(255,123,34,0.30); }

.hb-menu-footer { padding: 20px 30px 0; border-top: 1px solid rgba(255,255,255,0.06); }
.hb-menu-footer p { font-size: 11px; color: #555; letter-spacing: 1px; margin-bottom: 12px; }
.hb-footer-socials { display: flex; gap: 8px; }

.hb-soc {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,123,34,0.08); border: 1px solid rgba(255,123,34,0.15);
  display: flex; align-items: center; justify-content: center;
  color: #a1a1aa; font-size: 14px; text-decoration: none;
  transition: background .3s ease, color .3s ease, transform .3s ease;
}

.hb-soc:hover { background: #ff7b22; color: white; transform: translateY(-3px) rotate(8deg); }

.hb-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 99997; opacity: 0;
  pointer-events: none; transition: opacity .4s ease;
}

.hb-overlay.open { opacity: 1; pointer-events: auto; }

/* ── MOBILE ─────────────────────────── */
@media (max-width: 900px) {
  .navbar { flex-direction: column; gap: 12px; padding: 14px 18px; border-radius: 30px; top: 10px; width: 96%; }
  nav { flex-wrap: wrap; justify-content: center; gap: 14px; }
  nav a { font-size: 15px; }
  .hero-content { width: 100%; padding-top: 120px; padding-left: 6%; }
  .search-bar { width: 140px; }
  .cart-sidebar { width: 100%; }
  .category-tabs { gap: 12px; padding: 0 4% 60px; }
  .cat-tab { min-width: 130px; padding: 20px 24px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 30px; padding: 40px 6% 30px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .footer-map-section { flex-direction: column; padding: 30px 6%; }
  .footer-map-canvas { width: 100%; height: 220px; }
}
@media (max-width: 480px) {
  .navbar nav { display: none; }
  .navbar {
    flex-direction: row;
    padding: 8px 14px;
    gap: 8px;
    top: 8px;
    width: 94%;
  }
  .logo img { height: 32px; }
  .nav-actions { gap: 6px; }
  .search-bar { width: 90px; padding: 8px 10px; font-size: 13px; }
  .search-bar:focus { width: 130px; }
  #languageSwitcher { padding: 6px; font-size: 12px; }
  #theme-toggle { width: 32px; height: 32px; font-size: 14px; }
  .cart-icon { font-size: 18px; }
  #cart-count { width: 16px; height: 16px; font-size: 10px; top: -6px; right: -8px; }
  .logo { margin-left: 40px; }

}
body.light-mode .modal-field input,
body.light-mode .modal-field textarea { background:#f7f7f7; color:#111; border:1px solid rgba(0,0,0,0.10); }
body.light-mode .modal-field input:focus,
body.light-mode .modal-field textarea:focus { background:#ffffff; border-color:rgba(255,123,34,0.50); }

body.light-mode .modal-field input,
body.light-mode .modal-field textarea,
body.light-mode .modal-field select { background:#f7f7f7; color:#111; border:1px solid rgba(0,0,0,0.10); }
body.light-mode .modal-field input:focus,
body.light-mode .modal-field textarea:focus,
body.light-mode .modal-field select:focus { background:#ffffff; border-color:rgba(255,123,34,0.50); }
.privacy-popup {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 340px;
  background: var(--dark-card);
  border: 1px solid rgba(255,123,34,0.20);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
  z-index: 100000;
  transform: translateY(30px);
  opacity: 0;
  pointer-events: none;
  transition: transform .4s cubic-bezier(.22,.61,.36,1), opacity .4s ease;
}
.privacy-popup.active { transform: translateY(0); opacity: 1; pointer-events: auto; }
.privacy-popup-text { font-size: 13px; line-height: 1.6; color: var(--gray); margin-bottom: 16px; padding-right: 10px; }
.privacy-popup-actions { display: flex; gap: 10px; justify-content: flex-end; flex-wrap: wrap; }
.privacy-btn-no, .privacy-btn-accept { padding: 9px 20px; border-radius: 20px; font-size: 13px; font-weight: 600; border: none; cursor: pointer; transition: transform .2s ease, background .2s ease; }
.privacy-btn-no { background: rgba(161,161,170,0.15); color: var(--gray); }
.privacy-btn-no:hover { background: rgba(161,161,170,0.25); }
.privacy-btn-accept { background: var(--orange); color: white; }
.privacy-btn-accept:hover { background: var(--orange-hover); transform: translateY(-2px); }
.privacy-popup-close { display: none; position: absolute; top: 10px; right: 14px; background: none; border: none; color: var(--gray); font-size: 16px; cursor: pointer; padding: 4px; transition: color .2s ease; }
.privacy-popup-close:hover { color: var(--orange); }
.privacy-popup.show-close .privacy-popup-close { display: block; }
body[dir="rtl"] .privacy-popup-close { right: auto; left: 14px; }
body.light-mode .privacy-popup { background: var(--light-card); border-color: rgba(255,123,34,0.25); box-shadow: 0 20px 50px rgba(0,0,0,0.15); }
body.light-mode .privacy-popup-text { color: #555; }
body.light-mode .privacy-btn-no { background: rgba(0,0,0,0.06); color: #555; }
body.light-mode .privacy-btn-no:hover { background: rgba(0,0,0,0.10); }

@media (max-width: 480px) {
  .privacy-popup { left: 12px; right: 12px; bottom: 12px; max-width: none; }
}
.lang-select-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,15,17,0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 500000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lang-select-overlay.active { display: flex; }
@keyframes langSelectDrop {
  from { opacity: 0; transform: translateY(-30px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.lang-select-box {
  background: #18181b;
  border: 1px solid rgba(255,123,34,0.20);
  border-radius: 24px;
  padding: 40px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 40px 80px rgba(0,0,0,0.60), 0 0 60px rgba(255,123,34,0.10);
  animation: langSelectDrop .5s cubic-bezier(.22,.61,.36,1) forwards;
}
.lang-select-title { color: white; font-size: 16px; font-weight: 600; line-height: 1.8; margin-bottom: 28px; }
.lang-select-options { display: flex; flex-direction: column; gap: 14px; }
.lang-select-option {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px;
  background: rgba(255,123,34,0.06);
  border: 1px solid rgba(255,123,34,0.15);
  border-radius: 14px;
  cursor: pointer;
  transition: transform .3s cubic-bezier(.22,.61,.36,1), background .3s ease, border-color .3s ease;
}
.lang-select-option:hover { background: rgba(255,123,34,0.14); border-color: rgba(255,123,34,0.40); transform: translateY(-3px); }
.lang-select-flag { font-size: 32px; line-height: 1; }
.lang-select-name { color: white; font-size: 18px; font-weight: 600; }

body.light-mode .lang-select-box { background: #ffffff; }
body.light-mode .lang-select-title { color: #111; }
body.light-mode .lang-select-name { color: #111; }
body.light-mode .lang-select-option { background: rgba(255,123,34,0.05); }