/* ============================================================
   DESIGN SYSTEM - UR iT SHOP
   ============================================================ */
:root {
  --bg-dark: #05070E;
  --bg-card: rgba(13, 18, 30, .68);
  --bg-card-hover: rgba(13, 18, 30, .85);
  --neon-red: #FF2A55;
  --neon-cyan: #00F0FF;
  --neon-purple: #8B5CF6;
  --neon-green: #34D399;
  --text-main: #F3F4F6;
  --text-dim: #9CA3AF;
  --text-muted: #6B7280;
  --font-display: 'Space Grotesk', sans-serif;
  --font-code: 'JetBrains Mono', monospace;
  --radius-glow: 16px;
  --radius-card: 14px;
  --transition-smooth: all .3s cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-display);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
button, input, select { font: inherit; }

.container {
  max-width: 1280px;
  margin: auto;
  padding-inline: 2rem;
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(16px);
  background: rgba(5, 7, 14, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.brand-logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -1px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #FFF;
}

.brand-logo .tag {
  background: linear-gradient(135deg, var(--neon-red), var(--neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--text-dim);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition-smooth);
  position: relative;
}

.nav-links a:hover {
  color: var(--neon-cyan);
  text-shadow: 0 0 8px var(--neon-cyan);
}

/* ============================================================
   NAVIGATION ACTIVE STATE
   ============================================================ */
.nav-links .nav-link {
  padding: 8px 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: var(--transition-smooth);
  color: var(--text-dim);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
}

.nav-links .nav-link:hover {
  color: var(--neon-cyan);
  text-shadow: 0 0 8px var(--neon-cyan);
}

.nav-links .nav-link.active {
  color: var(--neon-cyan);
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.15);
  text-shadow: 0 0 8px rgba(0, 240, 255, 0.3);
}

.nav-links .nav-link.active:hover {
  background: rgba(0, 240, 255, 0.15);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.25);
}

/* ============================================================
   MOBILE TOGGLE & MENU
   ============================================================ */
.mobile-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  border-radius: 8px;
  padding: 9px 12px;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  background: rgba(5, 7, 14, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 2rem;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 12px 0;
  color: var(--text-dim);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.mobile-menu a:hover {
  color: var(--neon-cyan);
}

.mobile-nav-link {
  display: block;
  padding: 12px 0;
  color: var(--text-dim);
  text-decoration: none;
  transition: var(--transition-smooth);
  border-left: 2px solid transparent;
  padding-left: 0;
}

.mobile-nav-link:hover {
  color: var(--neon-cyan);
}

.mobile-nav-link.active {
  color: var(--neon-cyan);
  border-left-color: var(--neon-cyan);
  padding-left: 12px;
  text-shadow: 0 0 8px rgba(0, 240, 255, 0.2);
}

/* ============================================================
   LOADING SCREEN
   ============================================================ */
.loading-screen {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-screen .loader-ring {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid rgba(0, 240, 255, 0.1);
  border-top-color: var(--neon-cyan);
  border-bottom-color: var(--neon-purple);
  animation: spin 1s linear infinite;
  box-shadow: 0 0 40px rgba(0, 240, 255, 0.1), inset 0 0 40px rgba(0, 240, 255, 0.05);
}

.loading-screen .loader-text {
  margin-top: 2rem;
  font-family: var(--font-code);
  font-size: 0.8rem;
  color: var(--text-dim);
  letter-spacing: 4px;
  animation: pulseText 1.5s infinite alternate;
}

.loading-screen .loader-text .dot {
  display: inline-block;
  animation: dotPulse 1.5s infinite;
}
.loading-screen .loader-text .dot:nth-child(2) { animation-delay: 0.3s; }
.loading-screen .loader-text .dot:nth-child(3) { animation-delay: 0.6s; }

@keyframes spin { to { transform: rotate(360deg); } }

@keyframes pulseText {
  0% { opacity: 0.4; }
  100% { opacity: 1; }
}

@keyframes dotPulse {
  0%, 80%, 100% { opacity: 0.2; }
  40% { opacity: 1; }
}

/* ============================================================
   SCROLL PROGRESS INDICATOR
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple), var(--neon-red));
  z-index: 10001;
  transition: width 0.1s ease;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
  border-radius: 0 2px 2px 0;
}

.scroll-progress::after {
  content: '';
  position: absolute;
  right: -10px;
  top: -3px;
  width: 10px;
  height: 9px;
  background: var(--neon-cyan);
  border-radius: 50%;
  filter: blur(4px);
  opacity: 0.6;
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor-ring {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 2px solid var(--neon-cyan);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: width 0.15s ease, height 0.15s ease, border-color 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.3), inset 0 0 15px rgba(0, 240, 255, 0.1);
  animation: cursorPulse 2s infinite alternate ease-in-out;
}

.cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--neon-red);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 10000;
  box-shadow: 0 0 20px rgba(255, 42, 85, 0.6), 0 0 60px rgba(255, 42, 85, 0.2);
  transition: width 0.2s ease, height 0.2s ease;
}

.cursor-ring::before,
.cursor-ring::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-color: var(--neon-cyan);
  border-style: solid;
  border-width: 0;
  transition: var(--transition-smooth);
}

.cursor-ring::before {
  top: -2px;
  left: -2px;
  border-top-width: 2px;
  border-left-width: 2px;
  border-radius: 2px 0 0 0;
}

.cursor-ring::after {
  bottom: -2px;
  right: -2px;
  border-bottom-width: 2px;
  border-right-width: 2px;
  border-radius: 0 0 2px 0;
}

@keyframes cursorPulse {
  0% {
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.2), inset 0 0 15px rgba(0, 240, 255, 0.05);
    border-color: var(--neon-cyan);
  }
  100% {
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.4), inset 0 0 25px rgba(0, 240, 255, 0.15);
    border-color: var(--neon-purple);
  }
}

.cursor-ring.hover {
  width: 48px;
  height: 48px;
  border-color: var(--neon-red);
  box-shadow: 0 0 40px rgba(255, 42, 85, 0.3), inset 0 0 30px rgba(255, 42, 85, 0.1);
}

.cursor-ring.hover::before,
.cursor-ring.hover::after {
  border-color: var(--neon-red);
}

.cursor-dot.hover {
  width: 10px;
  height: 10px;
  background: var(--neon-cyan);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.8);
}

a, button, .btn-neon, .product-card, .glow-card, .holo-card, .chip, 
.custom-select-trigger, .custom-option, .nav-links a, .hero-product-card {
  cursor: none;
}

input, select, textarea {
  cursor: text !important;
}

/* ============================================================
   CUSTOM TEXT SELECTION COLOR
   ============================================================ */
::selection {
  background: var(--neon-cyan);
  color: var(--bg-dark);
  text-shadow: none;
}

::-moz-selection {
  background: var(--neon-cyan);
  color: var(--bg-dark);
  text-shadow: none;
}

h1::selection, h2::selection, h3::selection,
.section-title::selection, .hero-title::selection {
  background: var(--neon-purple);
  color: #FFFFFF;
}

code::selection, .holo-label::selection, .badge-cyber::selection {
  background: var(--neon-red);
  color: #FFFFFF;
}

a::selection, .btn-neon::selection {
  background: var(--neon-green);
  color: var(--bg-dark);
}

/* ============================================================
   ICON STYLES
   ============================================================ */
.card-icon i, .icon i {
  font-size: 2.5rem;
  color: var(--neon-cyan);
  transition: var(--transition-smooth);
  display: inline-block;
}

.glow-card:hover .card-icon i {
  color: var(--neon-purple);
  transform: scale(1.15) rotate(-5deg);
  text-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
}

.info-card:hover .icon i {
  color: var(--neon-cyan);
  text-shadow: 0 0 25px rgba(0, 240, 255, 0.4);
  transform: scale(1.1);
}

.glow-card:nth-child(1) .card-icon i { color: var(--neon-cyan); }
.glow-card:nth-child(2) .card-icon i { color: var(--neon-purple); }
.glow-card:nth-child(3) .card-icon i { color: var(--neon-red); }

.card-icon, .icon {
  display: inline-block;
  line-height: 1;
}

/* ============================================================
   BACKGROUND EFFECTS
   ============================================================ */
.cyber-grid {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

.ambient-glow {
  position: fixed;
  top: 20%;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--neon-purple) 0%, transparent 70%);
  opacity: .15;
  filter: blur(100px);
  z-index: -1;
  animation: pulseGlow 8s infinite alternate;
}

@keyframes pulseGlow {
  0% { transform: scale(1) translate(0,0); opacity: .15; }
  100% { transform: scale(1.3) translate(-50px,50px); opacity: .25; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-neon {
  padding: 12px 22px;
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
  background: rgba(255, 42, 85, .15);
  border: 1px solid var(--neon-red);
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 0 15px rgba(255, 42, 85, .2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.btn-neon:hover {
  background: var(--neon-red);
  box-shadow: 0 0 30px rgba(255, 42, 85, .6);
  transform: translateY(-2px);
}

.btn-cyan {
  border-color: var(--neon-cyan);
  background: rgba(0, 240, 255, .08);
}

.btn-cyan:hover {
  background: var(--neon-cyan);
  color: #05070E;
  box-shadow: 0 0 30px rgba(0, 240, 255, .45);
}

/* ============================================================
   CHIPS
   ============================================================ */
.chip-container {
  display: flex;
  gap: 12px;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.chip {
  font-family: var(--font-code);
  font-size: .8rem;
  padding: 6px 14px;
  border-radius: 6px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  color: var(--text-main);
  transition: var(--transition-smooth);
}

.chip:hover {
  border-color: var(--neon-red);
  color: var(--neon-red);
  box-shadow: 0 0 10px rgba(255, 42, 85, .3);
}

/* ============================================================
   HOLO CARD
   ============================================================ */
.holo-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-glow);
  padding: 2.2rem;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,.5);
}

.holo-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, var(--neon-cyan), transparent, var(--neon-red));
  border-radius: var(--radius-glow);
  z-index: -1;
  opacity: 0.3;
  transition: var(--transition-smooth);
}

.holo-card:hover::before {
  opacity: 0.8;
}

.holo-label {
  font-family: var(--font-code);
  font-size: .75rem;
  color: var(--neon-cyan);
  margin-bottom: .5rem;
}

/* ============================================================
   FORM STYLES
   ============================================================ */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: var(--font-code);
  font-size: .8rem;
  color: var(--neon-cyan);
  margin-bottom: .5rem;
}

.form-control {
  width: 100%;
  background: rgba(5, 7, 14, .8);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 8px;
  padding: 12px 16px;
  color: #fff;
  outline: none;
  transition: var(--transition-smooth);
}

.form-control:focus {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 240, 255, .3);
}

/* ============================================================
   CUSTOM SELECT
   ============================================================ */
.custom-select-wrapper {
  position: relative;
  user-select: none;
}

.custom-select-trigger {
  width: 100%;
  background: rgba(5, 7, 14, .85);
  border: 1px solid rgba(0, 240, 255, .3);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text-main);
  font-size: .95rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.custom-select-trigger::after {
  content: '▼';
  font-size: .7rem;
  color: var(--neon-cyan);
  transition: transform .3s;
}

.custom-select-wrapper.open .custom-select-trigger::after {
  transform: rotate(180deg);
}

.custom-options {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: rgba(13, 18, 30, .97);
  backdrop-filter: blur(20px);
  border: 1px solid var(--neon-cyan);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .8), 0 0 20px rgba(0, 240, 255, .2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition: all .25s;
  z-index: 100;
  overflow: hidden;
}

.custom-select-wrapper.open .custom-options {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}

.custom-option {
  padding: 12px 16px;
  color: var(--text-dim);
  font-size: .9rem;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, .03);
}

.custom-option:last-child { border-bottom: 0; }

.custom-option:hover,
.custom-option.selected {
  background: rgba(0, 240, 255, .12);
  color: #fff;
  text-shadow: 0 0 8px var(--neon-cyan);
  padding-left: 20px;
}

/* ============================================================
   SECTION
   ============================================================ */
.section { padding: 80px 0; }
.section-title { font-size: 2.5rem; font-weight: 700; letter-spacing: -1px; margin-bottom: .5rem; }
.section-desc { color: var(--text-dim); margin-bottom: 2.5rem; }

/* ============================================================
   CARDS GRID
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.glow-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-glow);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.glow-card:hover {
  transform: translateY(-8px);
  border-color: var(--neon-purple);
  box-shadow: 0 10px 30px rgba(139, 92, 246, .25);
}

.card-icon { font-size: 2.5rem; margin-bottom: 1.5rem; display: inline-block; }
.glow-card h3 { font-size: 1.3rem; margin-bottom: .75rem; }
.glow-card p { color: var(--text-dim); font-size: .95rem; line-height: 1.6; }


.no-image-placeholder{
  width:100%;height:100%;display:flex;align-items:center;justify-content:center;
  text-align:center;padding:1rem;color:var(--text-dim);font-family:var(--font-code);
  font-size:.85rem;background:linear-gradient(135deg,#0b1020,#11182a);
}

/* ============================================================
   WHY / CONTACT
   ============================================================ */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.info-panel {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-glow);
  padding: 2.2rem;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text-dim);
  line-height: 1.5;
}

.feature-list i { color: var(--neon-cyan); margin-top: 4px; }

.contact-line {
  font-family: var(--font-code);
  color: var(--text-dim);
  margin-top: 1rem;
}

.contact-line a { color: var(--neon-cyan); }

.contact-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 4rem 0 2rem;
  margin-top: 30px;
  background: rgba(3, 5, 10, .9);
}

.footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-note { color: var(--text-dim); font-size: .85rem; }
.footer-copy {
  font-family: var(--font-code);
  font-size: .7rem;
  color: #667085;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

/* ============================================================
   HERO - FEATURED PRODUCTS
   ============================================================ */
.hero-products {
  padding-top: 140px;
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.hero-products .hero-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.hero-products .hero-header .badge-cyber {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(0, 240, 255, .08);
  border: 1px solid var(--neon-cyan);
  border-radius: 30px;
  color: var(--neon-cyan);
  font-family: var(--font-code);
  font-size: .75rem;
  box-shadow: 0 0 10px rgba(0, 240, 255, .2);
  margin-bottom: 0.5rem;
}

.hero-products .hero-header .badge-cyber .dot {
  width: 6px;
  height: 6px;
  background: var(--neon-cyan);
  border-radius: 50%;
  display: inline-block;
  animation: blinkDot 1.5s infinite;
}

@keyframes blinkDot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

.hero-products .hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.05;
  background: linear-gradient(180deg, #FFFFFF 0%, #A5B4FC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-products .hero-title .highlight {
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-products .hero-subtitle {
  color: var(--text-dim);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 550px;
  margin-top: 0.5rem;
}

.hero-products .hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* ============================================================
   AUTO-SLIDING PRODUCT CARDS
   ============================================================ */
.products-slider-wrapper {
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
  padding: 0.5rem 0;
}

.products-slider-track {
  display: flex;
  gap: 1.5rem;
  animation: slideProducts 25s linear infinite;
  width: max-content;
}

.products-slider-wrapper:hover .products-slider-track {
  animation-play-state: paused;
}

.hero-product-card {
  flex: 0 0 280px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: var(--transition-smooth);
  cursor: pointer;
  position: relative;
  backdrop-filter: blur(10px);
}

.hero-product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.05), transparent 50%);
  opacity: 0;
  transition: var(--transition-smooth);
  border-radius: var(--radius-card);
  pointer-events: none;
}

.hero-product-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(0, 240, 255, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 240, 255, 0.05);
}

.hero-product-card:hover::before {
  opacity: 1;
}

.hero-product-card .product-image {
  height: 200px;
  background: linear-gradient(135deg, #0b1020, #11182a);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.hero-product-card .product-image .product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: var(--transition-smooth);
}

.hero-product-card:hover .product-image .product-img {
  transform: scale(1.08);
}

.hero-product-card .product-image .stock-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  font-family: var(--font-code);
  font-size: 0.6rem;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(52, 211, 153, 0.15);
  border: 1px solid rgba(52, 211, 153, 0.4);
  color: var(--neon-green);
  backdrop-filter: blur(8px);
}

.hero-product-card .product-image .stock-badge.out {
  background: rgba(255, 42, 85, 0.15);
  border-color: rgba(255, 42, 85, 0.4);
  color: var(--neon-red);
}

.hero-product-card .product-image .featured-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-family: var(--font-code);
  font-size: 0.55rem;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(251, 191, 36, 0.15);
  border: 1px solid rgba(251, 191, 36, 0.4);
  color: #FBBF24;
  backdrop-filter: blur(8px);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-product-card .product-body {
  padding: 1.2rem 1.2rem 0.8rem;
}

.hero-product-card .product-body .product-category {
  font-family: var(--font-code);
  font-size: 0.6rem;
  color: var(--neon-purple);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.3rem;
}

.hero-product-card .product-body .product-name {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.4rem;
  color: #FFF;
}

.hero-product-card .product-body .product-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--neon-cyan);
}

.hero-product-card .product-body .product-old {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 6px;
  font-weight: 400;
}

.hero-product-card .product-body .product-rating {
  color: #FBBF24;
  font-size: 0.75rem;
  margin-top: 0.3rem;
}

.hero-product-card .product-footer {
  padding: 0.8rem 1.2rem 1.2rem;
  display: flex;
  gap: 0.6rem;
}

.hero-product-card .product-footer .btn-whatsapp {
  flex: 1;
  padding: 8px 12px;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: 8px;
  color: #25D366;
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  font-size: 0.75rem;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.hero-product-card .product-footer .btn-whatsapp:hover {
  background: #25D366;
  color: #FFF;
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.3);
}

.hero-product-card .product-footer .btn-detail {
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: var(--text-dim);
  text-decoration: none;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.hero-product-card .product-footer .btn-detail:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #FFF;
}

/* Sliding Animation */
@keyframes slideProducts {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Hero CTA - See All Products */
.hero-cta {
  text-align: center;
  margin-top: 3rem;
}

.hero-cta .btn-neon {
  padding: 14px 44px;
  font-size: 1rem;
  gap: 10px;
}

/* ============================================================
   REPAIR SECTION
   ============================================================ */
.repair-section {
  padding: 60px 0 80px;
  scroll-margin-top: 100px;
}

.repair-section .repair-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.repair-section .repair-header .badge-cyber {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(0, 240, 255, .08);
  border: 1px solid var(--neon-cyan);
  border-radius: 30px;
  color: var(--neon-cyan);
  font-family: var(--font-code);
  font-size: .75rem;
  box-shadow: 0 0 10px rgba(0, 240, 255, .2);
  margin-bottom: 1rem;
}

.repair-section .repair-header .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 0.5rem;
}

.repair-section .repair-header .section-desc {
  color: var(--text-dim);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

.repair-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.repair-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.repair-info .info-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-glow);
  padding: 1.8rem;
  transition: var(--transition-smooth);
}

.repair-info .info-card:hover {
  border-color: rgba(0, 240, 255, 0.15);
  transform: translateY(-4px);
}

.repair-info .info-card .icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.repair-info .info-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.repair-info .info-card p {
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ============================================================
   PRODUCT CARDS (for product_list.html)
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  overflow: hidden;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-7px);
  border-color: rgba(0, 240, 255, 0.4);
  box-shadow: 0 15px 35px rgba(0, 240, 255, 0.08);
}

.product-card:focus-visible {
  outline: 2px solid var(--neon-cyan);
  outline-offset: 3px;
}

.product-image {
  height: 180px;
  background: linear-gradient(135deg, #0b1020, #11182a);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.product-image .product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: var(--transition-smooth);
}

.product-card:hover .product-image .product-img {
  transform: scale(1.08);
}

.product-image .stock-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  font-family: var(--font-code);
  font-size: 0.6rem;
  padding: 4px 10px;
  border-radius: 5px;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.3);
  color: var(--neon-cyan);
  backdrop-filter: blur(8px);
}

.product-image .stock-badge.out {
  border-color: var(--neon-red);
  color: var(--neon-red);
  background: rgba(255, 42, 85, 0.1);
}

.product-body {
  padding: 1.2rem;
}

.product-category {
  font-family: var(--font-code);
  font-size: 0.6rem;
  color: var(--neon-purple);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.4rem;
}

.product-name {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  color: #FFF;
}

.product-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--neon-cyan);
}

.product-old {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 6px;
  font-weight: 400;
}

.product-card .btn-neon {
  width: 100%;
  margin-top: 0.8rem;
  font-size: 0.75rem;
  padding: 10px;
}

/* ============================================================
   PAGE HEADER (for product_list.html)
   ============================================================ */
.page-header {
  padding-top: 140px;
  padding-bottom: 2rem;
}

.page-header h1 {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -1.5px;
  background: linear-gradient(180deg, #FFFFFF 0%, #A5B4FC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-header p {
  color: var(--text-dim);
  margin-top: 0.3rem;
  font-size: 1.05rem;
}

/* ============================================================
   FILTERS SECTION (for product_list.html)
   ============================================================ */
.filters-section {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-glow);
  padding: 1.8rem 2rem;
  margin-bottom: 2.5rem;
  backdrop-filter: blur(10px);
}

.filters-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 0.8fr;
  gap: 1.5rem;
  align-items: end;
}

.filter-group label {
  display: block;
  font-family: var(--font-code);
  font-size: 0.7rem;
  color: var(--neon-cyan);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-group input,
.filter-group select {
  width: 100%;
  background: rgba(5, 7, 14, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 10px 14px;
  color: #FFF;
  font-family: var(--font-display);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition-smooth);
}

.filter-group input:focus,
.filter-group select:focus {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.15);
}

.filter-group select option {
  background: #05070E;
}

.filter-group .price-range {
  display: flex;
  gap: 0.75rem;
}

.filter-group .price-range input {
  width: 50%;
}

.filter-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}

.filter-actions .btn-neon {
  padding: 10px 20px;
  font-size: 0.85rem;
  margin-bottom: 0;
}

.filter-actions .btn-reset {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-dim);
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.85rem;
  transition: var(--transition-smooth);
}

.filter-actions .btn-reset:hover {
  border-color: var(--neon-red);
  color: var(--neon-red);
}

.filter-stats {
  color: var(--text-dim);
  font-size: 0.85rem;
  font-family: var(--font-code);
  margin-left: auto;
}

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.pagination a, .pagination span {
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-dim);
  text-decoration: none;
  transition: var(--transition-smooth);
  font-size: 0.9rem;
  min-width: 40px;
  text-align: center;
}

.pagination a:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
}

.pagination .active {
  background: var(--neon-cyan);
  border-color: var(--neon-cyan);
  color: #05070E;
  font-weight: 700;
}

.pagination .disabled {
  opacity: 0.3;
  pointer-events: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1050px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-product-card { flex: 0 0 240px; }
  .hero-products .hero-title { font-size: 2.8rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .filters-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .filter-actions { grid-column: span 2; }
  .filter-stats { margin-left: 0; }
  .nav-links { gap: 1rem; }
}

@media (max-width: 900px) {
  .nav-links,
  .nav-box > .btn-neon {
    display: none !important;
  }
  .mobile-toggle {
    display: block !important;
  }
  .filters-grid { grid-template-columns: 1fr; }
  .filter-actions { grid-column: span 1; flex-wrap: wrap; }
  .filter-group .price-range { flex-direction: column; }
  .filter-group .price-range input { width: 100%; }
  .filter-stats { margin-left: 0; width: 100%; text-align: center; margin-top: 0.5rem; }
}

@media (max-width: 768px) {
  .split-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .hero-products .hero-header { flex-direction: column; align-items: flex-start; }
  .hero-products .hero-title { font-size: 2.2rem; }
  .hero-products .hero-subtitle { font-size: 0.95rem; }
  .hero-product-card { flex: 0 0 200px; }
  .hero-product-card .product-image { height: 150px; }
  .hero-product-card .product-body .product-name { font-size: 0.85rem; }
  .hero-product-card .product-body .product-price { font-size: 1rem; }
  .products-slider-track { animation-duration: 20s; }
  .products-grid { grid-template-columns: 1fr; }
  .page-header h1 { font-size: 2rem; }
  .filters-section { padding: 1.2rem; }
  .pagination a, .pagination span { padding: 6px 12px; font-size: 0.8rem; min-width: 34px; }
}

@media (max-width: 500px) {
  .container { padding-inline: 1rem; }
  .hero-products .hero-title { font-size: 1.8rem; }
  .hero-product-card { flex: 0 0 180px; }
  .hero-product-card .product-image { height: 140px; }
  .section { padding: 50px 0; }
  .products-slider-track { animation-duration: 15s; }
}