/* ═══════════════════════════════════════════
VARIABLES & RESET - Pc Soluciones Gaming
═══════════════════════════════════════════ */
:root {
  --bg: #050810;
  --bg2: #0a0f1c;
  --bg3: #111827;
  --surface: #1a1f2e;
  --border: #1e293b;
  --border2: #334155;
  --blue: #00d4ff;
  --blue-light: #00f0ff;
  --blue-dark: #0099cc;
  --blue-glow: rgba(0, 212, 255, 0.4);
  --blue-faint: rgba(0, 212, 255, 0.12);
  --purple: #a855f7;
  --purple-light: #c084fc;
  --purple-glow: rgba(168, 85, 247, 0.3);
  --green: #10b981;
  --green-bg: rgba(16, 185, 129, 0.15);
  --red: #ef4444;
  --red-bg: rgba(239, 68, 68, 0.15);
  --text: #f8fafc;
  --text2: #cbd5e1;
  --muted: #64748b;
  --muted2: #94a3b8;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --font: 'Barlow', sans-serif;
  --font-cond: 'Barlow Condensed', sans-serif;
  --nav-h: 72px;
  --cart-w: 420px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: var(--font);
  cursor: pointer;
  border: none;
  background: none;
}

img {
  display: block;
  max-width: 100%;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg2);
}

::-webkit-scrollbar-thumb {
  background: var(--border2);
  border-radius: 99px;
}

/* ═══════════════════════════════════════════
NAVBAR
═══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(5, 8, 16, 0.95);
  backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 2rem;
  gap: 1.5rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navbar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--blue) 20%, var(--purple) 50%, var(--blue) 80%, transparent 100%);
  opacity: 0.6;
}

/* Logo imagen real */
.nav-logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.2s ease, filter 0.2s ease;
  filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.3));
}

.nav-logo:hover .nav-logo-img {
  transform: scale(1.05);
  filter: drop-shadow(0 0 12px rgba(0, 212, 255, 0.5));
}

@keyframes logoGlow {
  0%, 100% {
    box-shadow: 0 0 20px var(--blue-glow);
  }
  50% {
    box-shadow: 0 0 35px var(--blue-glow), 0 0 50px var(--purple-glow);
  }
}

.nav-logo-text {
  line-height: 1.2;
}

.nav-logo-name {
  font-family: var(--font-cond);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
}

.nav-logo-sub {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--blue-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-spacer {
  flex: 1;
}

.nav-search {
  display: flex;
  align-items: center;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0 12px;
  gap: 8px;
  max-width: 320px;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.nav-search:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-faint);
}

.nav-search i {
  color: var(--muted);
  font-size: 0.85rem;
}

.nav-search input {
  background: none;
  border: none;
  outline: none;
  font-family: var(--font);
  font-size: 0.88rem;
  color: var(--text);
  width: 100%;
  padding: 9px 0;
}

.nav-search input::placeholder {
  color: var(--muted);
}

.nav-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.18s;
  white-space: nowrap;
}

.nav-btn-ghost {
  color: var(--muted2);
  border: 1px solid var(--border);
}

.nav-btn-ghost:hover {
  background: var(--bg3);
  color: var(--text);
  border-color: var(--border2);
}

.nav-cart-btn {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--bg);
  position: relative;
  box-shadow: 0 0 16px var(--blue-glow);
  font-weight: 700;
}

.nav-cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px var(--blue-glow), 0 0 30px var(--purple-glow);
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--red);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg);
}

.cart-badge.visible {
  display: flex;
}

/* ══════════════════════════════════════════
HERO CON VIDEO - ESPACIADO CORREGIDO
═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  overflow: hidden;
  padding: 0;
  border-bottom: 2px solid var(--border);
  margin-top: var(--nav-h);
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.hero-bg-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(0, 212, 255, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 60%, rgba(168, 85, 247, 0.1) 0%, transparent 60%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(5, 8, 16, 0.3) 0%,
    rgba(5, 8, 16, 0.5) 50%,
    rgba(5, 8, 16, 0.75) 100%);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.15;
  z-index: 1;
  pointer-events: none;
}

/* CONTENIDO - CON MÁS ESPACIO */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 3rem 2rem;
  text-align: center;
}

/* Badge con más margen */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--blue-faint), rgba(168, 85, 247, 0.15));
  border: 1px solid rgba(0, 212, 255, 0.4);
  color: var(--blue-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 99px;
  margin-bottom: 2rem;  /* ← AUMENTADO de 1.5rem */
  box-shadow: 0 0 20px var(--blue-glow);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 20px var(--blue-glow); }
  50% { box-shadow: 0 0 35px var(--blue-glow), 0 0 60px var(--purple-glow); }
}

/* Título con más espacio */
.hero h1 {
  font-family: var(--font-cond);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;  /* ← AUMENTADO de 1 */
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;  /* ← AUMENTADO de 1.25rem */
  text-transform: uppercase;
  background: linear-gradient(135deg, #fff 0%, var(--blue-light) 50%, var(--purple-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.3));
}

.hero h1 span {
  display: block;
  font-size: 0.5em;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-top: 0.75rem;  /* ← AUMENTADO de 0.5rem */
  background: linear-gradient(135deg, var(--blue-light), var(--purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Descripción con más espacio */
.hero p {
  font-size: 1.15rem;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 2.5rem;  /* ← AUMENTADO de 2rem */
  max-width: 700px;  /* ← AUMENTADO de 650px */
  margin-left: auto;
  margin-right: auto;
}

/* Botones CTA con más espacio */
.hero-ctas {
  display: flex;
  gap: 1.25rem;  /* ← AUMENTADO de 1rem */
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;  /* ← AUMENTADO de 2rem */
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;  /* ← AUMENTADO de 16px 32px */
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.hero-btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--bg);
  box-shadow: 0 0 30px var(--blue-glow);
}

.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 40px var(--blue-glow), 0 0 60px var(--purple-glow);
}

.hero-btn-secondary {
  background: transparent;
  border-color: var(--blue);
  color: var(--blue-light);
}

.hero-btn-secondary:hover {
  background: var(--blue-faint);
  border-color: var(--blue-light);
  transform: translateY(-3px);
  box-shadow: 0 5px 30px var(--blue-glow);
}

/* Pills con más espacio */
.hero-pills {
  display: flex;
  gap: 1rem;  /* ← AUMENTADO de 10px */
  justify-content: center;
  flex-wrap: wrap;
}

.hero-pill {
  display: flex;
  align-items: center;
  gap: 8px;  /* ← AUMENTADO de 6px */
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 10px 20px;  /* ← AUMENTADO de 8px 16px */
  font-size: 0.85rem;  /* ← AUMENTADO de 0.82rem */
  font-weight: 600;
  color: var(--muted2);
  backdrop-filter: blur(10px);
  transition: all 0.2s;
}

.hero-pill:hover {
  border-color: var(--blue);
  color: var(--blue-light);
  background: var(--blue-faint);
}

.hero-pill i {
  color: var(--blue-light);
  font-size: 0.95rem;  /* ← AUMENTADO de 0.9rem */
}

/* BOTÓN PAUSA/PLAY */
.hero-video-toggle {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 3;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(5, 8, 16, 0.7);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(0, 212, 255, 0.4);
  color: var(--blue-light);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 0 20px var(--blue-glow);
}

.hero-video-toggle:hover {
  background: rgba(0, 212, 255, 0.15);
  border-color: var(--blue-light);
  transform: scale(1.1);
  box-shadow: 0 0 30px var(--blue-glow), 0 0 50px var(--purple-glow);
  color: #fff;
}

.hero-video-toggle:active {
  transform: scale(0.95);
}

.hero-video-toggle::before {
  content: attr(data-tooltip);
  position: absolute;
  right: 60px;
  background: rgba(5, 8, 16, 0.9);
  color: var(--blue-light);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  transform: translateX(10px);
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.hero-video-toggle:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
  }
  .hero-content {
    padding: 2rem 1rem;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .hero-video-toggle {
    width: 40px;
    height: 40px;
    bottom: 16px;
    right: 16px;
    font-size: 0.9rem;
  }
  .hero-video-toggle::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero h1 span {
    font-size: 0.6em;
  }
}

/* ═══════════════════════════════════════════
CATEGORÍAS DESTACADAS - ESTILO CORSAIR
═══════════════════════════════════════════ */
.categories-section {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 4rem 1.5rem;
}

.categories-header {
  max-width: 1280px;
  margin: 0 auto 3rem;
  text-align: center;
}

.categories-title {
  font-family: var(--font-cond);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text);
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.75);
}

.categories-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.category-card {
  position: relative;
  height: 260px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid var(--border);
  text-decoration: none;
  display: block;
}

.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(5, 8, 16, 0.6) 50%,
    rgba(5, 8, 16, 0.9) 100%);
  z-index: 1;
  transition: all 0.3s;
}

.category-card:hover {
  transform: translateY(-8px);
  border-color: var(--blue);
  box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
}

.category-card:hover::before {
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(5, 8, 16, 0.4) 50%,
    rgba(5, 8, 16, 0.8) 100%);
}

.category-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s;
}

.category-card:hover .category-bg {
  transform: scale(1.1);
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(0, 212, 255, 0.1) 0%,
    rgba(168, 85, 247, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1;
}

.category-card:hover .category-overlay {
  opacity: 1;
}
/* CONTENIDO - TEXTO Y FLECHA ABAJO (ESTILO CORSAIR) */
.category-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-end; /* ← Alinea ABAJO */
  justify-content: flex-start; /* ← Alinea a la IZQUIERDA */
  gap: 12px;
  padding: 1.5rem;
  padding-bottom: 2rem; /* ← Espacio extra desde abajo */
}

.category-label {
  font-family: var(--font-cond);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.75);
  text-align: center;
}

.category-arrow {
  color: var(--blue-light);
  transition: transform 0.3s;
  filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.75));
  flex-shrink: 0;
}

.category-card:hover .category-arrow {
  transform: translateX(8px);
}

/* Responsive */
@media (max-width: 1200px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .categories-section {
    padding: 3rem 1rem;
  }
  .categories-title {
    font-size: 1.6rem;
  }
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .category-card {
    height: 220px;
  }
  .category-label {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }
  .category-card {
    height: 200px;
  }
  .category-label {
    font-size: 0.95rem;
  }
}

/* Responsive */
@media (max-width: 992px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .categories-section {
    padding: 2rem 1rem;
  }
  .categories-grid {
    gap: 16px;
  }
  .category-card {
    height: 240px;
  }
  .category-label {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }
  .category-card {
    height: 220px;
  }
}
/* ══════════════════════════════════════════
CATÁLOGO
═══════════════════════════════════════════ */
.main-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.catalog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 2rem;
}

.catalog-title {
  font-family: var(--font-cond);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, var(--blue-light), var(--purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.catalog-count {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 4px;
}

.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.filter-chip {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  border-radius: 99px;
  border: 1px solid var(--border);
  background: var(--bg2);
  color: var(--muted2);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-chip:hover {
  border-color: var(--blue);
  color: var(--text);
}

.filter-chip.active {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-color: var(--blue);
  color: var(--bg);
  box-shadow: 0 0 15px var(--blue-glow);
  font-weight: 700;
}

/* ══════════════════════════════════════════
PRODUCT GRID & CARDS
═══════════════════════════════════════════ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
}

.product-card {
  background: linear-gradient(145deg, var(--bg2), var(--bg3));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(168, 85, 247, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--blue);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px var(--blue-glow), 0 0 80px var(--purple-glow);
}

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

.product-card:hover .card-img-wrap img {
  transform: scale(1.12) rotate(1deg);
}

.card-img-wrap {
  position: relative;
  background: linear-gradient(135deg, var(--bg3), var(--surface));
  height: 220px;
  overflow: hidden;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
  font-size: 3rem;
}

.card-img-placeholder span {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.card-stock-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 99px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.badge-instock {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.4);
}

.badge-outstock {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(239, 68, 68, 0.1));
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.4);
}

.card-body {
  padding: 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 6px;
}

.card-name {
  font-family: var(--font-cond);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
  color: var(--text);
}

.card-desc {
  font-size: 0.82rem;
  color: var(--muted2);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 10px;
}

.card-feats {
  list-style: none;
  margin-bottom: 12px;
  flex: 1;
}

.card-feats li {
  font-size: 0.78rem;
  color: var(--muted2);
  padding: 3px 0;
  display: flex;
  align-items: flex-start;
  gap: 5px;
}

.card-feats li::before {
  content: '▸';
  color: var(--blue-light);
  font-size: 0.7rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.card-footer {
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: auto;
}

.card-price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 12px;
}

.card-currency {
  font-size: 0.85rem;
  color: var(--muted);
}

.card-price {
  font-family: var(--font-cond);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--blue-light);
  letter-spacing: -0.01em;
  text-shadow: 0 0 20px var(--blue-glow);
}

.card-actions {
  display: flex;
  gap: 8px;
}

.btn-add-cart {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 0;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--bg);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  transition: all 0.25s;
  box-shadow: 0 4px 15px var(--blue-glow);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.btn-add-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px var(--blue-glow), 0 0 40px var(--purple-glow);
}

.btn-add-cart:disabled {
  background: var(--surface);
  color: var(--muted);
  cursor: not-allowed;
  box-shadow: none;
}

.btn-wsp-single {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.05));
  border: 2px solid rgba(16, 185, 129, 0.4);
  color: var(--green);
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  transition: all 0.25s;
  flex-shrink: 0;
}

.btn-wsp-single:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

/* ═══════════════════════════════════════════
EMPTY / LOADING
═══════════════════════════════════════════ */
.spinner-wrap {
  grid-column: 1/-1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 2rem;
  gap: 16px;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}

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

.empty-state {
  grid-column: 1/-1;
  text-align: center;
  padding: 5rem 2rem;
  color: var(--muted);
}

.empty-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.empty-state h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--text2);
}

.empty-state p {
  font-size: 0.88rem;
}

/* ═══════════════════════════════════════════
CARRITO SIDEBAR
═══════════════════════════════════════════ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(4px);
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(var(--cart-w), 100vw);
  background: var(--bg2);
  border-left: 2px solid var(--border);
  z-index: 301;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-panel.open {
  transform: translateX(0);
}

.cart-head {
  padding: 1.3rem 1.5rem;
  border-bottom: 2px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg3);
}

.cart-head-title {
  font-family: var(--font-cond);
  font-size: 1.2rem;
  font-weight: 700;
  flex: 1;
}

.cart-count-tag {
  background: var(--blue-faint);
  border: 1px solid rgba(0, 212, 255, 0.3);
  color: var(--blue-light);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 99px;
}

.cart-close {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--muted2);
  font-size: 1rem;
  transition: all 0.15s;
}

.cart-close:hover {
  background: var(--red-bg);
  color: var(--red);
  border-color: var(--red);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}

.cart-empty {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--muted);
  text-align: center;
}

.cart-empty i {
  font-size: 3.5rem;
  color: var(--border2);
}

.cart-empty p {
  font-size: 0.92rem;
  line-height: 1.6;
}

.cart-item {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-img {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  background: var(--bg3);
  flex-shrink: 0;
  border: 1px solid var(--border);
}

.cart-item-img-ph {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  background: var(--bg3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-cat {
  font-size: 0.74rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.cart-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.qty-control {
  display: flex;
  align-items: center;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.qty-btn {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted2);
  font-size: 0.9rem;
  transition: all 0.15s;
}

.qty-btn:hover {
  background: var(--border);
  color: var(--text);
}

.qty-num {
  width: 32px;
  text-align: center;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--text);
}

.cart-item-price {
  font-family: var(--font-cond);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue-light);
  white-space: nowrap;
}

.cart-item-remove {
  color: var(--muted);
  font-size: 0.87rem;
  padding: 4px 6px;
  border-radius: 4px;
  transition: color 0.15s;
  flex-shrink: 0;
}

.cart-item-remove:hover {
  color: var(--red);
}

.cart-footer {
  padding: 1.2rem 1.5rem 1.5rem;
  border-top: 2px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--bg3);
}

.cart-summary {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.87rem;
  color: var(--muted2);
  padding: 4px 0;
}

.cart-summary-row.total {
  border-top: 2px solid var(--border);
  margin-top: 10px;
  padding-top: 12px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

.cart-summary-row.total span:last-child {
  font-family: var(--font-cond);
  font-size: 1.5rem;
  color: var(--blue-light);
}

.pay-methods-label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.pay-methods {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.pay-chip {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg2);
  font-size: 0.77rem;
  font-weight: 600;
  color: var(--muted2);
  cursor: pointer;
  transition: all 0.15s;
  user-select: none;
}

.pay-chip:hover {
  border-color: var(--blue);
  color: var(--text);
}

.pay-chip.selected {
  border-color: var(--blue);
  background: var(--blue-faint);
  color: var(--text);
}

.pay-chip .chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid currentColor;
  flex-shrink: 0;
  transition: background 0.15s;
}

.pay-chip.selected .chip-dot {
  background: var(--blue);
  border-color: var(--blue);
}

.pay-chip-yape.selected {
  border-color: #a855f7;
  background: rgba(168, 85, 247, 0.15);
  color: #d8b4fe;
}

.pay-chip-yape.selected .chip-dot {
  background: #a855f7;
  border-color: #a855f7;
}

.pay-chip-plin.selected {
  border-color: #38bdf8;
  background: rgba(56, 189, 248, 0.15);
  color: #7dd3fc;
}

.pay-chip-plin.selected .chip-dot {
  background: #38bdf8;
  border-color: #38bdf8;
}

.btn-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  border-radius: var(--radius);
  font-size: 0.97rem;
  font-weight: 700;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  letter-spacing: 0.02em;
}

.btn-checkout:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.btn-checkout i {
  font-size: 1.2rem;
}

.btn-clear-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
  font-weight: 600;
  transition: all 0.15s;
}

.btn-clear-cart:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-bg);
}

/* ══════════════════════════════════════════
TOAST
═══════════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--bg3);
  border: 2px solid var(--blue);
  color: var(--text);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  z-index: 999;
  opacity: 0;
  transition: all 0.25s;
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.3);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ═══════════════════════════════════════════
ADMIN PANEL
═══════════════════════════════════════════ */
#admin-view {
  display: none;
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.admin-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.admin-topbar-title {
  font-family: var(--font-cond);
  font-size: 1.6rem;
  font-weight: 800;
  flex: 1;
  background: linear-gradient(135deg, var(--blue-light), var(--purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-primary {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--bg);
  border-radius: var(--radius-sm);
  font-size: 0.87rem;
  font-weight: 700;
  transition: all 0.2s;
  box-shadow: 0 0 16px var(--blue-glow);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px var(--blue-glow), 0 0 30px var(--purple-glow);
}

.btn-ghost-sm {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border: 1px solid var(--border);
  background: var(--bg2);
  color: var(--muted2);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.15s;
}

.btn-ghost-sm:hover {
  background: var(--bg3);
  color: var(--text);
  border-color: var(--blue);
}

.btn-danger-sm {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border: 1px solid rgba(239, 68, 68, 0.4);
  background: var(--red-bg);
  color: var(--red);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.15s;
}

.btn-danger-sm:hover {
  background: var(--red);
  color: #fff;
}

.admin-table-wrap {
  background: var(--bg2);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 650px;
}

thead {
  background: var(--bg3);
}

th {
  text-align: left;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 12px 14px;
  border-bottom: 2px solid var(--border);
}

td {
  font-size: 0.87rem;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  color: var(--text2);
}

tr:last-child td {
  border-bottom: none;
}

tr:hover td {
  background: rgba(0, 212, 255, 0.03);
}

.td-actions {
  display: flex;
  gap: 6px;
}

.td-thumb {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--bg3);
  display: block;
  border: 1px solid var(--border);
}

.td-thumb-ph {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--bg3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--muted);
}

/* ═══════════════════════════════════════════
MODALES
═══════════════════════════════════════════ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 400;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(8px);
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: var(--surface);
  border: 2px solid var(--border2);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(0, 212, 255, 0.1);
}

.modal-head {
  padding: 1.3rem 1.5rem;
  border-bottom: 2px solid var(--border2);
  display: flex;
  align-items: center;
  gap: 10px;
  background: #0f172a;
}

.modal-head-title {
  font-family: var(--font-cond);
  font-size: 1.2rem;
  font-weight: 700;
  flex: 1;
}

.modal-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  color: var(--muted2);
  transition: all 0.15s;
}

.modal-close:hover {
  background: var(--red-bg);
  color: var(--red);
  border-color: var(--red);
}

.modal-body {
  padding: 1.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-full {
  grid-column: 1/-1;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted2);
}

.field input, .field select, .field textarea {
  font-family: var(--font);
  font-size: 0.9rem;
  padding: 10px 12px;
  background: #0f172a;
  border: 2px solid var(--border2);
  border-radius: var(--radius-sm);
  color: var(--text);
  width: 100%;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px var(--blue-faint);
  background: #0b1220;
}

.field select option {
  background: var(--bg2);
}

.field textarea {
  resize: vertical;
  min-height: 80px;
}

.field input[type="file"] {
  background: #0f172a;
  color: var(--text2);
  padding: 8px 10px;
  cursor: pointer;
}

.field input[type="file"]::file-selector-button {
  background: var(--blue);
  color: var(--bg);
  border: none;
  padding: 7px 14px;
  border-radius: 6px;
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  margin-right: 10px;
  transition: background 0.15s;
}

.field input[type="file"]::file-selector-button:hover {
  background: var(--blue-light);
}

.img-preview {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border2);
  display: none;
  margin-top: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.features-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feat-row {
  display: flex;
  gap: 6px;
  align-items: center;
  background: #0f172a;
  padding: 8px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border2);
}

.feat-row input {
  flex: 1;
  background: #0b1220 !important;
  border: 2px solid var(--border2) !important;
}

.feat-remove {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--red);
  border-radius: 6px;
  color: var(--red);
  background: var(--red-bg);
  transition: all 0.15s;
}

.feat-remove:hover {
  background: var(--red);
  color: #fff;
}

.btn-add-feat {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue-light);
  background: var(--blue-faint);
  border: 2px dashed var(--blue);
  border-radius: var(--radius-sm);
  padding: 10px;
  width: 100%;
  text-align: center;
  transition: background 0.15s;
}

.btn-add-feat:hover {
  background: rgba(0, 212, 255, 0.2);
}

.toggle-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: #0f172a;
  border: 2px solid var(--border2);
  border-radius: var(--radius-sm);
}

.toggle-label {
  font-size: 0.9rem;
  flex: 1;
}

.toggle {
  width: 46px;
  height: 26px;
  background: var(--border2);
  border-radius: 99px;
  position: relative;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}

.toggle.on {
  background: var(--green);
}

.toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
}

.toggle.on::after {
  transform: translateX(20px);
}

.modal-foot {
  padding: 1.2rem 1.5rem;
  border-top: 2px solid var(--border2);
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  background: #0f172a;
}

.login-box {
  background: var(--surface);
  border: 2px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
}

.login-box-head {
  text-align: center;
  margin-bottom: 1.8rem;
}

.login-box-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--blue-faint);
  border: 2px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--blue-light);
  margin: 0 auto 14px;
}

.login-box h2 {
  font-family: var(--font-cond);
  font-size: 1.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--blue-light), var(--purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.login-box p {
  font-size: 0.85rem;
  color: var(--muted2);
  margin-top: 6px;
}

.login-box input {
  background: #0f172a;
  border: 2px solid var(--border2);
  color: var(--text);
}

.login-box input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px var(--blue-faint);
}

.login-error {
  display: none;
  font-size: 0.82rem;
  color: var(--red);
  margin-top: 8px;
}

/* ══════════════════════════════════════════
FOOTER
═══════════════════════════════════════════ */
footer {
  border-top: 2px solid var(--border);
  background: var(--bg2);
  padding: 3rem 1.5rem;
  margin-top: 5rem;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.footer-brand {
  max-width: 280px;
}

.footer-brand-name {
  font-family: var(--font-cond);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--blue-light), var(--purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-brand-desc {
  font-size: 0.82rem;
  color: var(--muted2);
  line-height: 1.7;
}

.footer-contact h4, .footer-pay h4 {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--muted2);
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-contact-item i {
  color: var(--blue-light);
  margin-top: 2px;
  width: 16px;
  flex-shrink: 0;
}

.footer-pay-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fpay-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--muted2);
}

.fpay-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

.footer-copy {
  max-width: 1280px;
  margin: 2rem auto 0;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  font-size: 0.78rem;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* ═══════════════════════════════════════════
RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 992px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 1rem;
    gap: 8px;
  }
  .nav-search {
    display: none;
  }
  .nav-logo-sub {
    display: none;
  }
  .hero {
    min-height: 70vh;
  }
  .hero-content {
    padding: 1.5rem 1rem;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .hero-video-toggle {
    width: 40px;
    height: 40px;
    bottom: 16px;
    right: 16px;
    font-size: 0.9rem;
  }
  .hero-video-toggle::before {
    display: none;
  }
  .categories-section {
    padding: 2rem 1rem;
  }
  .categories-grid {
    gap: 16px;
  }
  .category-card {
    height: 240px;
  }
  .main-wrap {
    padding: 2rem 1rem;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    flex-direction: column;
    gap: 2rem;
  }
  .cart-panel {
    width: 100vw;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero h1 span {
    font-size: 0.6em;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .nav-btn span {
    display: none;
  }
  .pay-methods {
    gap: 5px;
  }
  .pay-chip {
    font-size: 0.72rem;
    padding: 5px 10px;
  }
  .categories-grid {
    grid-template-columns: 1fr;
  }
  .category-card {
    height: 220px;
  }
}