/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #0a0a0a;
  color: #fafafa;
  overflow-x: hidden;
  cursor: default;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: #c8ff00; border-radius: 3px; }

::selection { background: #c8ff00; color: #0a0a0a; }

/* === NEON COLOR SYSTEM === */
:root {
  --neon: #c8ff00;
  --neon-dim: rgba(200, 255, 0, 0.3);
  --neon-glow: 0 0 20px rgba(200, 255, 0, 0.4), 0 0 60px rgba(200, 255, 0, 0.1);
  --court-green: #1a3a1a;
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.06);
}

/* === HERO: LA CANCHA === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.court {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.court-lines {
  width: 80%;
  max-width: 600px;
  height: 70vh;
  position: relative;
  border: 2px solid var(--neon-dim);
  box-shadow: var(--neon-glow);
  opacity: 0.4;
}

.court-center-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--neon-dim);
}

.court-service-left {
  position: absolute;
  top: 25%;
  left: 0;
  right: 50%;
  bottom: 50%;
  border: 1px solid var(--neon-dim);
}

.court-service-right {
  position: absolute;
  top: 25%;
  left: 50%;
  right: 0;
  bottom: 50%;
  border: 1px solid var(--neon-dim);
}

.court-net {
  position: absolute;
  top: 48%;
  left: -5%;
  right: -5%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--neon), transparent);
  box-shadow: var(--neon-glow);
}

/* === HERO CONTENT === */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.hero-title {
  display: flex;
  flex-direction: column;
  line-height: 0.9;
}

.hero-donato {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 18vw, 200px);
  color: transparent;
  -webkit-text-stroke: 2px var(--neon);
  text-shadow: var(--neon-glow);
  letter-spacing: 0.05em;
  animation: flicker 4s infinite alternate;
}

.hero-padel {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(30px, 7vw, 80px);
  color: var(--neon);
  letter-spacing: 0.4em;
  margin-top: -10px;
}

.hero-sub {
  font-size: clamp(11px, 2vw, 16px);
  font-weight: 300;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 24px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 48px;
  padding: 16px 32px;
  border: 1px solid var(--neon);
  border-radius: 50px;
  color: var(--neon);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.15em;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.hero-cta:hover {
  background: var(--neon);
  color: #0a0a0a;
  box-shadow: var(--neon-glow);
}

.cta-ball {
  font-size: 20px;
  transition: transform 0.3s;
}

.hero-cta:hover .cta-ball {
  transform: rotate(20deg) scale(1.2);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
}

.scroll-indicator span {
  font-size: 10px;
  letter-spacing: 0.3em;
}

.scroll-ball {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon);
  animation: bounce 2s infinite;
}

/* === FLICKER ANIMATION === */
@keyframes flicker {
  0%, 95%, 100% { opacity: 1; }
  96% { opacity: 0.8; }
  97% { opacity: 1; }
  98% { opacity: 0.6; }
  99% { opacity: 1; }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(12px); }
}

/* === PRODUCTS === */
.products {
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 10vw, 100px);
  color: var(--neon);
  letter-spacing: 0.1em;
}

.section-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.1em;
  margin-top: 8px;
}

/* Zones */
.zone {
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.zone.visible {
  opacity: 1;
  transform: translateY(0);
}

.zone-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 0.4em;
  color: var(--neon);
  opacity: 0.5;
  margin-bottom: 24px;
  padding-left: 4px;
  border-left: 2px solid var(--neon-dim);
  padding-left: 16px;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

/* Product Card */
.product-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(200, 255, 0, 0.02));
  opacity: 0;
  transition: opacity 0.4s;
}

.product-card:hover {
  border-color: var(--neon-dim);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(200, 255, 0, 0.05);
}

.product-card:hover::before { opacity: 1; }

.product-card.open {
  border-color: var(--neon);
  box-shadow: var(--neon-glow);
}

/* Smash animation */
.product-card.anim-smash {
  animation: smash 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card.anim-vibora {
  animation: vibora 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card.anim-bandeja {
  animation: bandeja 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes smash {
  0% { transform: scale(1); }
  30% { transform: scale(0.95) rotate(-1deg); }
  60% { transform: scale(1.03) rotate(0.5deg); }
  100% { transform: scale(1); }
}

@keyframes vibora {
  0% { transform: translateX(0); }
  25% { transform: translateX(-8px) rotate(-1deg); }
  50% { transform: translateX(8px) rotate(1deg); }
  75% { transform: translateX(-4px); }
  100% { transform: translateX(0); }
}

@keyframes bandeja {
  0% { transform: translateY(0); }
  40% { transform: translateY(-12px); }
  70% { transform: translateY(4px); }
  100% { transform: translateY(0); }
}

.product-image {
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(200, 255, 0, 0.03), transparent);
  position: relative;
  padding: 16px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.product-image {
  background: #111 !important;
}

.product-placeholder {
  font-size: 64px;
  opacity: 0.6;
  transition: all 0.4s;
}

.product-card:hover .product-placeholder {
  transform: scale(1.15);
  opacity: 0.9;
}

.product-info {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-info h3 {
  font-size: 16px;
  font-weight: 600;
}

.product-price {
  background: rgba(200, 255, 0, 0.08);
  border: 1px solid rgba(200, 255, 0, 0.15);
  border-radius: 8px;
  padding: 6px 14px;
}

.score {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  color: var(--neon);
  letter-spacing: 0.05em;
}

.product-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), padding 0.5s;
  padding: 0 20px;
}

.product-card.open .product-detail {
  max-height: 200px;
  padding: 0 20px 20px;
}

.product-detail p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
}

/* === CONTACT === */
.contact {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 80px 24px;
}

.contact-content {
  text-align: center;
  position: relative;
}

.ball-contact {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(200, 255, 0, 0.08), transparent 70%);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(60px);
  pointer-events: none;
}

.contact-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 12vw, 120px);
  line-height: 0.95;
  color: #fafafa;
  position: relative;
}

.contact-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 24px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  padding: 18px 36px;
  background: #25D366;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.whatsapp-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.4);
}

.wa-icon {
  width: 24px;
  height: 24px;
}

.wa-ball {
  font-size: 20px;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}

.contact-social {
  margin-top: 40px;
  display: flex;
  gap: 32px;
  justify-content: center;
}

.social-link {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.social-link:hover { color: var(--neon); }

/* === FLOATING NAV === */
.floating-nav {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 6px;
  z-index: 100;
  opacity: 0;
  transition: opacity 0.4s;
}

.floating-nav.visible { opacity: 1; }

.nav-link {
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: all 0.3s;
}

.nav-link:hover { color: #fafafa; }
.nav-link.active {
  background: var(--neon);
  color: #0a0a0a;
}

/* === TRAILING BALL === */
.trailing-ball {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--neon);
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s;
  box-shadow: 0 0 10px var(--neon), 0 0 30px rgba(200, 255, 0, 0.2);
  mix-blend-mode: screen;
}

.trailing-ball.visible { opacity: 0.6; }

/* === MOBILE === */
@media (max-width: 768px) {
  .court-lines { width: 90%; height: 60vh; }
  .product-grid { grid-template-columns: 1fr; }
  .floating-nav { bottom: 16px; }
  .nav-link { padding: 8px 14px; font-size: 10px; }
  .whatsapp-btn { font-size: 14px; padding: 16px 28px; }
}

@media (max-width: 480px) {
  .hero-cta { padding: 14px 24px; font-size: 12px; }
  .product-image { height: 160px; }
}

/* === SHOP SECTION === */
.shop {
  padding: 40px 24px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.shop-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(20px);
  padding: 16px 0;
  margin-bottom: 32px;
}

.search-box {
  position: relative;
  margin-bottom: 16px;
}

.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: #52525b;
}

.search-box input {
  width: 100%;
  height: 48px;
  border-radius: 12px;
  border: 1px solid #27272a;
  background: #141414;
  color: #fafafa;
  padding: 0 16px 0 44px;
  font-size: 16px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.search-box input:focus {
  border-color: var(--neon);
}

.search-box input::placeholder {
  color: #52525b;
}

.category-filters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.category-filters::-webkit-scrollbar { display: none; }

.cat-btn {
  padding: 8px 18px;
  border-radius: 20px;
  border: 1px solid #27272a;
  background: transparent;
  color: #71717a;
  font-size: 13px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}

.cat-btn:hover { border-color: #52525b; color: #a1a1aa; }
.cat-btn.active { background: var(--neon); color: #0a0a0a; border-color: var(--neon); font-weight: 600; }

/* Products grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.loading-products {
  grid-column: 1 / -1;
  text-align: center;
  color: #52525b;
  padding: 60px 0;
}

.empty-shop {
  text-align: center;
  color: #52525b;
  padding: 60px 24px;
  font-size: 16px;
}

/* Shop product card */
.shop-card {
  background: #141414;
  border: 1px solid #1f1f1f;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.shop-card:hover {
  border-color: #333;
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.shop-card-img {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  padding: 16px;
  position: relative;
  overflow: hidden;
}

.shop-card-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.shop-card-img .placeholder-emoji {
  font-size: 56px;
  opacity: 0.4;
}

.shop-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--neon);
  color: #0a0a0a;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.05em;
}

.shop-card-body {
  padding: 16px;
}

.shop-card-cat {
  font-size: 11px;
  color: var(--neon);
  opacity: 0.6;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.shop-card-name {
  font-size: 16px;
  font-weight: 600;
  color: #fafafa;
  margin-bottom: 4px;
}

.shop-card-desc {
  font-size: 13px;
  color: #71717a;
  line-height: 1.4;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.shop-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.shop-card-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--neon);
  letter-spacing: 0.03em;
}

.add-cart-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #333;
  background: transparent;
  color: #a1a1aa;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.add-cart-btn:hover {
  background: var(--neon);
  color: #0a0a0a;
  border-color: var(--neon);
}

.add-cart-btn.added {
  background: var(--neon);
  color: #0a0a0a;
  border-color: var(--neon);
  animation: pop 0.3s;
}

@keyframes pop {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* === CART SIDEBAR === */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 380px;
  max-width: 90vw;
  height: 100vh;
  background: #0f0f0f;
  border-left: 1px solid #1f1f1f;
  z-index: 201;
  display: flex;
  flex-direction: column;
  transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-sidebar.open { right: 0; }

.cart-header {
  padding: 20px 24px;
  border-bottom: 1px solid #1f1f1f;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h3 { font-size: 18px; font-weight: 600; }

.cart-close {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid #333;
  background: transparent;
  color: #aaa;
  font-size: 16px;
  cursor: pointer;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.cart-empty {
  text-align: center;
  color: #52525b;
  padding: 40px 0;
  font-size: 14px;
}

.cart-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #1a1a1a;
  align-items: center;
}

.cart-item-img {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.cart-item-img img { width: 100%; height: 100%; object-fit: contain; }
.cart-item-img .ci-emoji { font-size: 24px; }

.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: 14px; font-weight: 500; }
.cart-item-price { font-size: 13px; color: var(--neon); margin-top: 2px; }

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 1px solid #333;
  background: transparent;
  color: #aaa;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover { border-color: var(--neon); color: var(--neon); }
.qty-btn.remove:hover { border-color: #ef4444; color: #ef4444; }

.qty-val { font-size: 14px; font-weight: 600; min-width: 20px; text-align: center; }

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid #1f1f1f;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

.cart-total span:last-child { color: var(--neon); font-family: 'Bebas Neue', sans-serif; font-size: 24px; }

.cart-checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 48px;
  border-radius: 12px;
  border: none;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}

.mp-checkout {
  background: #009ee3;
  color: #fff;
  font-family: inherit;
}

.mp-checkout:hover { transform: scale(1.02); box-shadow: 0 0 20px rgba(0, 158, 227, 0.3); }

.whatsapp-checkout {
  background: #25D366;
  color: #fff;
}

.whatsapp-checkout:hover { transform: scale(1.02); box-shadow: 0 0 20px rgba(37, 211, 102, 0.3); }

.wa-icon-sm { width: 20px; height: 20px; }

.cart-clear-btn {
  width: 100%;
  height: 40px;
  margin-top: 8px;
  border-radius: 10px;
  border: 1px solid #333;
  background: transparent;
  color: #71717a;
  font-size: 13px;
  cursor: pointer;
  font-family: inherit;
}

.cart-clear-btn:hover { color: #ef4444; border-color: #ef4444; }

/* === FABs === */
.cart-fab {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #1a1a1a;
  border: 1px solid #333;
  color: #fafafa;
  font-size: 24px;
  cursor: pointer;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.cart-fab:hover { border-color: var(--neon); transform: scale(1.05); }

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--neon);
  color: #0a0a0a;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wa-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  transition: all 0.2s;
}

.wa-fab:hover { transform: scale(1.1); }
.wa-fab svg { width: 28px; height: 28px; }

/* === PRODUCT MODAL === */
.product-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}
.product-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.product-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%) scale(0.96);
  z-index: 1200;
  background: #111;
  border: 1px solid rgba(200, 255, 0, 0.2);
  border-radius: 16px;
  width: min(92vw, 820px);
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  scrollbar-width: thin;
  scrollbar-color: var(--neon) #111;
}
.product-modal.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

.product-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fafafa;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.2s;
}
.product-modal-close:hover {
  background: var(--neon);
  color: #0a0a0a;
  border-color: var(--neon);
}

.product-modal-img {
  background: #0f0f0f;
  border-radius: 16px 16px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  overflow: hidden;
}
.product-modal-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.modal-placeholder {
  font-size: 80px;
  opacity: 0.3;
}

.product-modal-info {
  padding: 36px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.modal-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.modal-cat {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(200, 255, 0, 0.7);
  background: rgba(200, 255, 0, 0.08);
  border: 1px solid rgba(200, 255, 0, 0.2);
  padding: 3px 10px;
  border-radius: 20px;
}
.modal-featured {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  padding: 3px 10px;
  border-radius: 20px;
}

.modal-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 0.03em;
  color: #fafafa;
  line-height: 1.1;
}

.modal-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.modal-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  color: var(--neon);
  letter-spacing: 0.02em;
  line-height: 1;
}

.modal-stock {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.modal-actions {
  margin-top: auto;
  padding-top: 8px;
}

.modal-add-btn {
  width: 100%;
  padding: 15px 20px;
  background: var(--neon);
  color: #0a0a0a;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}
.modal-add-btn:hover:not(:disabled):not(.added) {
  background: #d4ff1a;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(200, 255, 0, 0.3);
}
.modal-add-btn.added {
  background: #1a1a1a;
  color: var(--neon);
  border: 1px solid var(--neon);
}
.modal-add-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .shop-card-img { height: 160px; }
  .shop-card-body { pa  .shop-card-body { padding: 12px; }
  .shop-card-name { font-size: 14px; }
  .shop-card-price { font-size: 20px; }
  .shop-card-desc { display: none; }
  .cart-fab { bottom: 80px; right: 16px; }
  .wa-fab { bottom: 16px; right: 16px; }

  .product-modal {
    grid-template-columns: 1fr;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(100%);
    width: 100%;
    max-height: 92vh;
    border-radius: 20px 20px 0 0;
  }
  .product-modal.open {
    transform: translateY(0);
  }
  .product-modal-img {
    border-radius: 20px 20px 0 0;
    min-height: 220px;
    max-height: 260px;
    padding: 16px;
  }
  .product-modal-info {
    padding: 20px 20px 32px;
  }
  .modal-name { font-size: 26px; }
  .modal-price { font-size: 34px; }
}

@media (max-width: 380px) {
  .products-grid { grid-template-columns: 1fr; }
}

.modal-cart-btn {
  width: 100%;
  padding: 12px 20px;
  background: transparent;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 8px;
}
.modal-cart-btn:hover {
  border-color: rgba(255,255,255,0.3);
  color: #fafafa;
}
