*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; outline: none; }
:root {
  --green: #4CAF50;
  --green-bright: #39FF14;
  --green-dark: #2d7a30;
  --green-glass: rgba(76, 175, 80, 0.15);
  --text: #ffffff;
  --text-muted: #b0b0b0;
  --white: #ffffff;
  --bg: #0a0a0a;
  --border: rgba(76, 175, 80, 0.2);
}
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: 'Rajdhani', sans-serif; overflow-x: hidden; line-height: 1.6; }

/* REVEAL ANIMATION */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* BACKGROUND OVERLAYS */
.shop-bg-grid {
  position: fixed; inset: 0; z-index: -2; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpolygon points='28,0 56,14 56,42 28,56 0,42 0,14' fill='none' stroke='%2339FF14' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 56px 100px;
}
.shop-bg-glow {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(circle at 50% 50%, rgba(76, 175, 80, 0.05) 0%, transparent 70%);
}

/* REUSED COMPONENTS STYLES */

/* REUSED COMPONENTS STYLES */

nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0.5rem 3rem;
  min-height: 110px;
  background: rgba(10, 10, 10, 0.45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px) saturate(180%);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-left { display: flex; justify-content: flex-start; align-items: center; gap: 1.2rem; white-space: nowrap; }
.nav-center { display: flex; justify-content: center; align-items: center; position: relative; }
.nav-right { display: flex; justify-content: flex-end; align-items: center; gap: 1.2rem; white-space: nowrap; }
.logo-img { height: 85px; object-fit: contain; filter: drop-shadow(0 0 20px rgba(76, 175, 80, 0.4)); }
.nav-cta { padding: 0.8rem 2.2rem; background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%); color: #fff; border: 1px solid rgba(255, 255, 255, 0.2); font-family: 'Orbitron', monospace; font-size: 0.85rem; font-weight: 900; letter-spacing: 2px; cursor: pointer; border-radius: 8px; transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.nav-cta:hover { background: var(--green-bright); color: #000; transform: scale(1.05); box-shadow: 0 0 35px rgba(76, 175, 80, 0.6); }

.menu-btn { background: none; border: none; cursor: pointer; display: flex; flex-direction: column; gap: 6px; padding: 10px; }
.menu-btn span { display: block; width: 28px; height: 2px; background: var(--green); transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.cart-btn { background: none; border: none; color: var(--green); font-size: 1.6rem; cursor: pointer; position: relative; transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1); width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; }
.cart-count { position: absolute; top: -5px; right: -5px; background: var(--green-bright); color: #000; font-size: 0.7rem; font-weight: 900; width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 15px var(--green); font-family: 'Orbitron'; }

/* DRAWER */
.drawer-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); backdrop-filter: blur(8px); z-index: 1000; opacity: 0; visibility: hidden; transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.drawer-overlay.active { opacity: 1; visibility: visible; }
.drawer { position: fixed; top: 0; left: -400px; width: 320px; height: 100%; background: #0a0a0a; z-index: 1001; padding: 4rem 2rem; transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1); border-right: 1px solid rgba(76,175,80,0.1); display: flex; flex-direction: column; }
.drawer.active { left: 0; }
.drawer-logo { width: 130px; margin-bottom: 2rem; filter: drop-shadow(0 0 15px var(--green)); }
.drawer-links { list-style: none; display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 2rem; }
.drawer-links a { color: #fff; text-decoration: none; font-family: 'Orbitron'; font-size: 1rem; letter-spacing: 2px; transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.drawer-socials { display: flex; gap: 1rem; margin-top: 1rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.05); }
.drawer-soc { width: 38px; height: 38px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.1); color: #fff; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: 0.3s; }
.drawer-soc:hover { background: var(--green); color: #000; border-color: var(--green); }
.drawer-cta { width: 100%; margin-top: 1.5rem; }
.drawer-close { position: absolute; top: 1rem; right: 1rem; background: none; border: none; color: var(--green); font-size: 2rem; cursor: pointer; transition: 0.3s; }

/* CART SIDEBAR */
.cart-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); backdrop-filter: blur(8px); z-index: 2000; opacity: 0; visibility: hidden; transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.cart-overlay.active { opacity: 1; visibility: visible; }
.cart-sidebar { position: fixed; top: 0; right: -500px; width: 450px; height: 100%; background: #080808; z-index: 2001; transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1); border-left: 1px solid rgba(76,175,80,0.2); display: flex; flex-direction: column; padding: 2rem; }
.cart-sidebar.active { right: 0; }
.cart-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
.cart-items { flex: 1; overflow-y: auto; padding-right: 0.5rem; }
.cart-item { display: flex; gap: 1.2rem; margin-bottom: 1.5rem; background: rgba(255,255,255,0.02); padding: 1rem; border-radius: 12px; border: 1px solid rgba(255,255,255,0.05); position: relative; }
.cart-item-img { width: 70px; height: 70px; display: flex; align-items: center; justify-content: center; background: #000; border-radius: 8px; }
.cart-item-img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 0.9rem; font-weight: 700; color: #fff; margin-bottom: 0.3rem; }
.cart-item-spec { font-size: 0.75rem; color: #777; margin-bottom: 0.5rem; }
.cart-item-price { font-family: 'Orbitron'; color: var(--green-bright); font-size: 0.9rem; font-weight: 700; }
.cart-item-remove { position: absolute; top: 1rem; right: 1rem; background: none; border: none; color: #ff4d4d; cursor: pointer; font-size: 1rem; opacity: 0.6; transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.cart-item-remove:hover { opacity: 1; transform: scale(1.1); }
.cart-footer { padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); }
.cart-total-row { display: flex; justify-content: space-between; margin-bottom: 1.5rem; font-family: 'Orbitron'; font-size: 1.3rem; font-weight: 900; }
.cart-checkout { width: 100%; padding: 1.2rem; background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%); color: #fff; border: none; border-radius: 12px; font-family: 'Orbitron'; font-weight: 900; letter-spacing: 2px; cursor: pointer; transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.cart-checkout:hover { background: var(--green-bright); color: #000; box-shadow: 0 0 30px rgba(76,175,80,0.4); }

/* SHOP PAGE SPECIFIC */
.shop-hero { 
  padding: 10rem 3rem 6rem; text-align: center; position: relative; 
  background: linear-gradient(0deg, rgba(10,10,10,1) 0%, rgba(10,10,10,0.8) 100%), url('assets/hero_rock_base.png') center center / cover no-repeat; 
  margin-bottom: 2rem;
  overflow: hidden;
}
.hero-scanline {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(57,255,20,0.02) 2px, rgba(57,255,20,0.02) 4px);
  animation: scanMove 10s linear infinite;
}
@keyframes scanMove { from { background-position: 0 0; } to { background-position: 0 100px; } }

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(76, 175, 80, 0.12); border: 1px solid rgba(76, 175, 80, 0.35);
  color: var(--green-bright); padding: 0.4rem 1.2rem; border-radius: 20px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 1.5rem; font-family: 'Orbitron';
}
.shop-title { font-family: 'Orbitron', monospace; font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 900; color: #fff; margin-bottom: 1.5rem; letter-spacing: 4px; text-transform: uppercase; text-shadow: 0 4px 12px rgba(0,0,0,0.8); }
.shop-title .green { color: var(--green-bright); text-shadow: 0 0 20px rgba(57,255,20,0.4); }
.shop-sub { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto; line-height: 1.8; }

/* HUD Corners */
.hud-corner { position: absolute; width: 40px; height: 40px; z-index: 2; border: 2px solid var(--green); opacity: 0.4; }
.hud-corner.tl { top: 40px; left: 40px; border-right: 0; border-bottom: 0; }
.hud-corner.tr { top: 40px; right: 40px; border-left: 0; border-bottom: 0; }
.hud-corner.bl { bottom: 40px; left: 40px; border-right: 0; border-top: 0; }
.hud-corner.br { bottom: 40px; right: 40px; border-left: 0; border-top: 0; }

.shop-controls { 
  max-width: 1100px; margin: -3rem auto 6rem; 
  background: rgba(10, 10, 10, 0.85); 
  border: 1px solid rgba(76, 175, 80, 0.3); 
  border-radius: 24px; padding: 1.8rem; 
  display: flex; justify-content: space-between; align-items: center; gap: 2rem; 
  backdrop-filter: blur(25px); position: relative; z-index: 10;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), inset 0 0 20px rgba(76,175,80,0.05);
}
.search-wrap { flex: 1; position: relative; }
.search-wrap i { position: absolute; left: 1.5rem; top: 50%; transform: translateY(-50%); color: var(--green); }
.shop-search { width: 100%; background: #000; border: 1px solid rgba(255,255,255,0.1); padding: 1rem 1.5rem 1rem 3.5rem; border-radius: 12px; color: #fff; font-family: 'Rajdhani'; font-size: 1.1rem; transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.shop-search:focus { border-color: var(--green); }

.filter-wrap { display: flex; gap: 1rem; }
.shop-filter { background: #000; border: 1px solid rgba(255,255,255,0.1); color: #fff; padding: 0.8rem 1.5rem; border-radius: 12px; cursor: pointer; transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1); }

.shop-grid { max-width: 1400px; margin: 0 auto 5rem; display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2.5rem; padding: 0 2rem; }

/* PRODUCT CARD */
.pcard { 
  background: rgba(0,0,0,0.9); 
  border: 1px solid rgba(76, 175, 80, 0.4); 
  border-radius: 20px; padding: 2rem; 
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1); 
  position: relative; overflow: hidden; display: flex; flex-direction: column; 
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.pcard::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 200%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--green-bright), transparent);
  animation: pcardGlowLine 3s linear infinite;
  opacity: 0.6;
}
@keyframes pcardGlowLine {
  0% { transform: translateX(0); }
  100% { transform: translateX(50%); }
}
.pcard:hover { transform: translateY(-12px) scale(1.02); border-color: var(--green-bright); box-shadow: 0 25px 50px rgba(0,0,0,0.7), 0 0 30px rgba(76,175,80,0.2); background: #050505; }
.pcard:hover::before { height: 3px; opacity: 1; filter: drop-shadow(0 0 10px var(--green-bright)); }

.pbadge { position: absolute; top: 1rem; right: 1rem; padding: 0.4rem 1rem; border-radius: 8px; font-family: 'Orbitron'; font-size: 0.65rem; font-weight: 900; text-transform: uppercase; }
.b-hot { background: #ff3c00; color: #fff; }
.b-new { background: var(--green-bright); color: #000; }

.pimg { width: 100%; height: 180px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.pimg img { max-width: 100%; max-height: 160px; object-fit: contain; }

.pname { font-family: 'Orbitron'; font-size: 1.1rem; font-weight: 800; color: #fff; margin-bottom: 0.5rem; }
.pspec { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1.5rem; flex: 1; }

.pcard-footer { display: flex; justify-content: space-between; align-items: flex-end; }
.pprice { font-family: 'Orbitron'; font-size: 1.4rem; font-weight: 900; color: var(--green-bright); }
.old-price { font-size: 0.8rem; color: #444; text-decoration: line-through; display: block; }

.pbtn { width: 50px; height: 50px; background: rgba(76,175,80,0.1); border: 1px solid rgba(76,175,80,0.2); color: var(--green-bright); border-radius: 12px; cursor: pointer; transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.pbtn:hover { background: var(--green); color: #000; }

/* FOOTER SYNCED */
footer { background: #060606; border-top: 1px solid rgba(76,175,80,0.1); padding: 4rem 3rem 2rem; max-width: 100%; position: relative; overflow: hidden; }
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--green-bright), transparent);
}
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; margin-bottom: 3rem; }
.footer-logo { height: 70px; object-fit: contain; margin-bottom: 1.2rem; }
.footer-logo-text { font-family: 'Orbitron', monospace; font-size: 1.4rem; font-weight: 900; color: var(--green); margin-bottom: 1rem; display: none; }
.footer-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.8; max-width: 320px; }
.footer-h { font-family: 'Orbitron', monospace; font-size: 0.7rem; font-weight: 700; color: var(--green); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 1.5rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; display: flex; align-items: center; gap: 0.5rem; }
.footer-links a:hover { color: var(--green-bright); }
.footer-links a i { font-size: 0.7rem; color: rgba(76,175,80,0.5); }
.footer-addr { font-size: 0.88rem; color: var(--text-muted); line-height: 2; }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.04); display: flex; align-items: center; justify-content: space-between; }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.2); }
.socials { display: flex; gap: 0.8rem; }
.soc {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(76,175,80,0.2);
  color: var(--text-muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.soc::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(76,175,80,0.2), rgba(76,175,80,0.05));
  opacity: 0;
  transition: opacity 0.3s;
}
.soc:hover::before { opacity: 1; }
.soc:hover {
  border-color: var(--green);
  color: var(--green-bright);
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(76,175,80,0.2);
}
.soc i { position: relative; z-index: 1; }

/* MOBILE RESPONSIVE NAV */
@media (max-width: 900px) {
  nav { grid-template-columns: 80px 1fr 80px; padding: 0 1rem; height: 70px; top: 0; }
  .nav-left .nav-socials, .nav-right .nav-cta { display: none; }
  .logo-img { height: 50px; }
  .drawer { width: 70vw; padding: 3rem 1.5rem; }

  /* TOP BAR MOBILE FIX */
  .screen-topper { padding: 6px 0; }
  .topper-inner { padding: 0 1rem; justify-content: center; }
  .topper-left, .topper-right { display: none; }
  .topper-center { font-size: 0.55rem; letter-spacing: 1px; }

  /* PRELOADER HUD — hide side elements on small screens */
  .hud-side { display: none; }
  .hud-ticker { font-size: 0.45rem; letter-spacing: 2px; }
  .hud-corner { width: 40px; height: 40px; }
  .hud-corner.tl { top: 16px; left: 16px; }
  .hud-corner.tr { top: 16px; right: 16px; }
  .hud-corner.bl { bottom: 16px; left: 16px; }
  .hud-corner.br { bottom: 16px; right: 16px; }
  .loader-orbital-wrap { width: 200px; height: 200px; }
  .loader-ring-1 { width: 190px; height: 190px; }
  .loader-ring-2 { width: 155px; height: 155px; }
  .loader-ring-3 { width: 120px; height: 120px; }
  .loader-logo { width: 100px; }
  .loader-bar-wrap { width: 260px; }

  .shop-hero { background: url('assets/hero_rock_base.png') center center / cover no-repeat; padding: 2rem 1.5rem 4rem; }
  .shop-controls { flex-direction: column; padding: 1.5rem; gap: 1rem; }
  .filter-wrap { width: 100%; flex-direction: column; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: 1.5rem; text-align: center; }
}
@media (max-width: 600px) {
  footer { padding: 3rem 1.2rem 1.5rem; }
}

.toast { position: fixed; bottom: 40px; right: 2rem; background: var(--green-dark); color: #fff; padding: 1rem 2rem; border-radius: 12px; font-weight: 700; z-index: 3000; transform: translateX(150%); transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.toast.show { transform: translateX(0); }

/* WHATSAPP FLOAT SYNC */
.wa-float { position: fixed; bottom: 2rem; right: 2rem; width: 60px; height: 60px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 999; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: all 0.3s; }
.wa-float:hover { transform: scale(1.12) translateY(-3px); box-shadow: 0 8px 30px rgba(37,211,102,0.55); }
.wa-float svg { width: 32px; height: 32px; fill: #fff; }
