/* ========================= */
/* SHOP PAGE - GAMING/COMIC THEME (LIGHT) */
/* ========================= */

/* Light theme variables for shop */
.shop-page {
  --bg-light: #f6f7fb;
  --bg-card: #ffffff;
  --bg-elevated: #ffffff;
  --bg-subtle: #f1f3f9;
  --text-primary: #121826;
  --text-secondary: rgba(18, 24, 38, 0.7);
  --text-muted: rgba(18, 24, 38, 0.5);
  --border-color: rgba(16, 24, 40, 0.1);
  --border-hover: rgba(16, 24, 40, 0.18);
  
  /* Gaming gradients */
  --gradient-primary: linear-gradient(135deg, #ff6b6b, #ffd166);
  --gradient-secondary: linear-gradient(135deg, #4cc9f0, #7c3aed);
  --gradient-accent: linear-gradient(135deg, #60ff88, #4cc9f0);
  --gradient-fire: linear-gradient(135deg, #ff4b2b, #ff6b6b);
  --gradient-ice: linear-gradient(135deg, #4cc9f0, #a78bfa);
  
  /* Glow effects */
  --glow-primary: 0 0 30px rgba(255, 107, 107, 0.25);
  --glow-secondary: 0 0 30px rgba(76, 201, 240, 0.25);
  --glow-accent: 0 0 30px rgba(96, 255, 136, 0.25);
  
  background: var(--bg-light);
  color: var(--text-primary);
}

/* Remove dark header overrides - use default light header */
.shop-page .header {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
}

/* ========================= */
/* SHOP HERO SECTION */
/* ========================= */
.shop-hero {
  position: relative;
  padding: 100px 0 60px;
  overflow: hidden;
  background: linear-gradient(180deg, #f6f7fb, #ffffff);
}

.shop-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* Video de fondo del hero */
.shop-hero-bg .hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.15) 50%,
    rgba(0, 0, 0, 0.3) 100%
  );
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.blob-1 {
  width: 500px;
  height: 500px;
  top: -200px;
  left: -100px;
  background: radial-gradient(circle, rgba(255, 107, 107, 0.4), transparent 70%);
}

.blob-2 {
  width: 400px;
  height: 400px;
  top: 0;
  right: -100px;
  background: radial-gradient(circle, rgba(76, 201, 240, 0.4), transparent 70%);
}

.blob-3 {
  width: 300px;
  height: 300px;
  bottom: -100px;
  left: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.3), transparent 70%);
}

.hero-grid-noise {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(16, 24, 40, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 24, 40, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.5;
}

.shop-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.shop-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 24px;
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.3); }
  50% { box-shadow: 0 0 20px 5px rgba(255, 107, 107, 0.15); }
}

.badge-icon {
  font-size: 18px;
}

.shop-hero-title {
  margin: 0 0 16px;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.title-line {
  display: block;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}

.shop-hero-subtitle {
  margin: 0 0 32px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 3px;
  font-weight: 500;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

/* Quick Categories */
.quick-categories {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.category-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(16, 24, 40, 0.06);
}

.category-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(16, 24, 40, 0.12);
}

.pill-marvel:hover { background: linear-gradient(135deg, rgba(255, 75, 43, 0.15), rgba(255, 107, 107, 0.1)); border-color: #ff6b6b; }
.pill-anime:hover { background: linear-gradient(135deg, rgba(255, 79, 216, 0.15), rgba(76, 201, 240, 0.1)); border-color: #ff4fd8; }
.pill-series:hover { background: linear-gradient(135deg, rgba(96, 255, 136, 0.15), rgba(76, 201, 240, 0.1)); border-color: #60ff88; }
.pill-shirts:hover { background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(167, 139, 250, 0.1)); border-color: #7c3aed; }
.pill-mugs:hover { background: linear-gradient(135deg, rgba(255, 209, 102, 0.15), rgba(255, 107, 107, 0.1)); border-color: #ffd166; }

.pill-icon {
  font-size: 16px;
}

/* ========================= */
/* MAIN SHOP AREA */
/* ========================= */
.shop {
  padding: 40px 0 80px;
  background: var(--bg-light);
  min-height: 60vh;
}

/* ========================= */
/* CONTROLS BAR */
/* ========================= */
.shop-controls-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  margin-bottom: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  flex-wrap: wrap;
  box-shadow: 0 4px 20px rgba(16, 24, 40, 0.06);
}

.controls-left,
.controls-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Filter Toggle Button */
.filter-toggle-btn {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 12px;
  background: var(--bg-subtle);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.filter-toggle-btn:hover {
  background: #ffffff;
  border-color: var(--border-hover);
  box-shadow: 0 4px 15px rgba(16, 24, 40, 0.08);
}

.filter-toggle-btn i {
  font-size: 18px;
}

.filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--gradient-primary);
  color: #000;
  font-size: 11px;
  font-weight: 700;
}

/* Search Box */
.search-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: var(--bg-subtle);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  min-width: 300px;
  transition: all 0.3s ease;
}

.search-box:focus-within {
  border-color: #4cc9f0;
  box-shadow: 0 0 0 3px rgba(76, 201, 240, 0.15);
  background: #ffffff;
}

.search-box i {
  color: var(--text-muted);
  font-size: 18px;
}

.search-box input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-size: 14px;
  font-family: inherit;
}

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

.search-box kbd {
  padding: 4px 8px;
  background: rgba(16, 24, 40, 0.06);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 11px;
  color: var(--text-muted);
  font-family: inherit;
}

/* Results Count */
.results-count {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(96, 255, 136, 0.1);
  border: 1px solid rgba(96, 255, 136, 0.2);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #60ff88;
}

.count-icon {
  font-size: 14px;
}

/* Sort Wrapper */
.sort-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--bg-subtle);
  border: 1px solid var(--border-color);
  border-radius: 12px;
}

.sort-wrapper i {
  color: var(--text-muted);
}

.sort-select {
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
}

.sort-select option {
  background: var(--bg-card);
  color: var(--text-primary);
}

/* View Toggle */
.view-toggle {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: var(--bg-subtle);
  border-radius: 10px;
}

.view-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
}

.view-btn:hover {
  color: var(--text-primary);
}

.view-btn.active {
  background: var(--gradient-secondary);
  color: white;
}

/* ========================= */
/* ACTIVE FILTERS BAR */
/* ========================= */
.active-filters-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.active-filters-bar:empty {
  display: none;
}

.pill-filter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.2);
  font-size: 12px;
  font-weight: 500;
  color: #7c3aed;
}

.pill-filter button {
  border: none;
  background: transparent;
  color: rgba(18, 24, 38, 0.5);
  cursor: pointer;
  font-size: 14px;
  padding: 0;
  line-height: 1;
  transition: color 0.2s ease;
}

.pill-filter button:hover {
  color: #ff6b6b;
}

/* ========================= */
/* SHOP BODY LAYOUT */
/* ========================= */
.shop-body {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
}

/* ========================= */
/* FILTERS PANEL */
/* ========================= */
.filters-panel {
  position: sticky;
  top: 100px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 24px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  box-shadow: 0 4px 20px rgba(16, 24, 40, 0.06);
}

.filters-panel::-webkit-scrollbar {
  width: 6px;
}

.filters-panel::-webkit-scrollbar-track {
  background: transparent;
}

.filters-panel::-webkit-scrollbar-thumb {
  background: rgba(16, 24, 40, 0.1);
  border-radius: 3px;
}

.filters-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.filters-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-primary);
}

.filters-title i {
  font-size: 18px;
  color: #4cc9f0;
}

.close-filters-btn {
  display: none;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
}

.close-filters-btn:hover {
  background: rgba(255, 107, 107, 0.1);
  border-color: #ff6b6b;
  color: #ff6b6b;
}

/* Filter Sections */
.filter-section {
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
}

.filter-section:last-of-type {
  border-bottom: none;
}

.filter-section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.section-icon {
  font-size: 16px;
}

.section-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-primary);
  text-transform: uppercase;
}

/* Price Range */
.price-range {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 16px;
}

.price-input {
  flex: 1;
}

.price-input label {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-input input {
  width: 100%;
  padding: 12px;
  background: var(--bg-subtle);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: all 0.3s ease;
}

.price-input input:focus {
  border-color: #4cc9f0;
  box-shadow: 0 0 0 3px rgba(76, 201, 240, 0.15);
  background: #ffffff;
}

.price-separator {
  padding-bottom: 12px;
  color: var(--text-muted);
}

.price-slider-track {
  height: 6px;
  background: rgba(16, 24, 40, 0.08);
  border-radius: 3px;
  overflow: hidden;
}

.price-slider-fill {
  height: 100%;
  width: 60%;
  background: var(--gradient-accent);
  border-radius: 3px;
}

/* Chips */
.chips {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chip-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  background: transparent;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.chip-btn::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 6px;
  border: 2px solid var(--border-color);
  background: transparent;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.chip-btn:hover {
  background: rgba(16, 24, 40, 0.04);
  border-color: var(--border-hover);
  color: var(--text-primary);
}

.chip-btn.is-active {
  background: rgba(124, 58, 237, 0.1);
  border-color: rgba(124, 58, 237, 0.3);
  color: #7c3aed;
}

.chip-btn.is-active::before {
  background: var(--gradient-secondary);
  border-color: transparent;
  box-shadow: 0 0 10px rgba(124, 58, 237, 0.3);
}

/* Color Chips */
.color-chips .chip-btn {
  flex-direction: row;
}

.color-chips .chip-btn[data-color]::before {
  border-radius: 50%;
}

/* Filter Actions */
.filter-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.btn-clear,
.btn-apply {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.btn-clear {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
}

.btn-clear:hover {
  background: rgba(255, 107, 107, 0.08);
  border-color: rgba(255, 107, 107, 0.2);
  color: #ff6b6b;
}

.btn-apply {
  background: var(--gradient-secondary);
  border: none;
  color: white;
}

.btn-apply:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-secondary);
}

/* ========================= */
/* PRODUCTS SECTION */
/* ========================= */
.products-section {
  min-height: 400px;
}

/* Product Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

/* Product Card - Gaming Style */
.product-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(16, 24, 40, 0.06);
}

/* Product Link */
.product-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: 0 20px 40px rgba(16, 24, 40, 0.12);
}

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

/* Product Image */
.product-image-container {
  position: relative;
  width: 100%;
  padding-bottom: 120%;
  background: linear-gradient(180deg, var(--bg-subtle), #f1f3f9);
  overflow: hidden;
}

.product-front,
.product-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.product-back {
  opacity: 0;
  transform: scale(1.1);
}

.product-card:hover .product-front {
  opacity: 0;
  transform: scale(0.95);
}

.product-card:hover .product-back {
  opacity: 1;
  transform: scale(1);
}

/* Product Badges */
.product-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}

.product-badge {
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.badge-new {
  background: var(--gradient-accent);
  color: #000;
}

.badge-sale {
  background: var(--gradient-fire);
  color: white;
}

.badge-hot {
  background: linear-gradient(135deg, #ff6b6b, #ffd166);
  color: #000;
}

/* Product Overlay */
.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.8));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 60px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.btn-quick-view {
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  color: white;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.btn-quick-view:hover {
  background: white;
  color: #000;
  transform: scale(1.05);
}

/* Wishlist Button */
.btn-wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(16, 24, 40, 0.1);
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(16, 24, 40, 0.1);
}

.btn-wishlist:hover {
  background: #ff6b6b;
  border-color: #ff6b6b;
  color: white;
  transform: scale(1.1);
}

.btn-wishlist.active {
  background: #ff6b6b;
  border-color: #ff6b6b;
  color: white;
}

/* Product Info */
.product-info {
  padding: 20px;
}

.product-category {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(76, 201, 240, 0.12);
  border-radius: 6px;
  font-size: 10px;
  font-weight: 600;
  color: #0891b2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.product-name {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-primary);
}

.product-meta {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.meta-tag {
  padding: 4px 8px;
  background: rgba(16, 24, 40, 0.05);
  border-radius: 4px;
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Rating */
.rating-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
}

.star {
  color: #ffd166;
  font-size: 12px;
}

.star:not(.filled) {
  color: rgba(16, 24, 40, 0.15);
}

.reviews {
  margin-left: 8px;
  font-size: 11px;
  color: var(--text-muted);
}

/* Price */
.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.product-price {
  font-size: 20px;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.product-price-old {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: line-through;
}

/* Add to Cart Button */
.btn-add-to-cart {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  background: transparent;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.btn-add-to-cart i {
  font-size: 16px;
}

.btn-add-to-cart:hover {
  background: var(--gradient-secondary);
  border-color: transparent;
  color: white;
  transform: scale(1.02);
  box-shadow: var(--glow-secondary);
}

/* ========================= */
/* EMPTY STATE */
/* ========================= */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  text-align: center;
  padding: 60px 20px;
}

.empty-icon {
  font-size: 80px;
  margin-bottom: 24px;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.empty-state h2 {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
}

.empty-state p {
  margin: 0 0 32px;
  font-size: 15px;
  color: var(--text-muted);
  max-width: 400px;
}

.btn-reset-search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--gradient-primary);
  border: none;
  border-radius: 14px;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.btn-reset-search:hover {
  transform: scale(1.05);
  box-shadow: var(--glow-primary);
}

/* ========================= */
/* NEWSLETTER SECTION */
/* ========================= */
.newsletter-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.newsletter-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 48px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(76, 201, 240, 0.06));
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.newsletter-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.15), transparent 70%);
  filter: blur(60px);
}

.newsletter-content {
  position: relative;
  z-index: 1;
}

.newsletter-badge {
  display: inline-block;
  padding: 8px 16px;
  background: var(--gradient-accent);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #000;
  margin-bottom: 16px;
}

.newsletter-content h3 {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
}

.newsletter-content p {
  margin: 0;
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 400px;
}

.newsletter-form {
  position: relative;
  z-index: 1;
}

.input-group {
  display: flex;
  gap: 12px;
}

.input-group input {
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  color: var(--text-primary);
  font-size: 15px;
  min-width: 280px;
  font-family: inherit;
  outline: none;
  transition: all 0.3s ease;
}

.input-group input:focus {
  border-color: #4cc9f0;
  box-shadow: 0 0 0 3px rgba(76, 201, 240, 0.15);
  background: #ffffff;
}

.input-group button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  background: var(--gradient-primary);
  border: none;
  border-radius: 14px;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.input-group button:hover {
  transform: scale(1.05);
  box-shadow: var(--glow-primary);
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */
@media (max-width: 1024px) {
  .shop-body {
    grid-template-columns: 1fr;
  }

  .filter-toggle-btn {
    display: flex;
  }

  .filters-panel {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    max-height: none;
    border-radius: 0;
    padding: 0;
    overflow-y: auto;
  }

  .filters-panel.is-open {
    display: block;
  }

  .filters-header {
    position: sticky;
    top: 0;
    background: var(--bg-card);
    padding: 20px 24px;
    margin: 0;
    z-index: 10;
    border-bottom: 1px solid var(--border-color);
  }

  .close-filters-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .filter-section {
    padding: 20px 24px;
  }

  .filter-actions {
    padding: 20px 24px;
    margin-top: 0;
  }

  .grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .shop-hero {
    padding: 80px 0 40px;
  }

  .shop-hero-title {
    font-size: 36px;
  }

  .quick-categories {
    gap: 8px;
  }

  .category-pill {
    padding: 10px 16px;
    font-size: 12px;
  }

  .shop-controls-bar {
    flex-direction: column;
    gap: 16px;
    padding: 16px;
  }

  .controls-left,
  .controls-right {
    width: 100%;
    justify-content: space-between;
  }

  .search-box {
    flex: 1;
    min-width: auto;
  }

  .search-box kbd {
    display: none;
  }

  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .product-info {
    padding: 14px;
  }

  .product-name {
    font-size: 14px;
  }

  .product-price {
    font-size: 16px;
  }

  .btn-add-to-cart {
    padding: 12px 16px;
    font-size: 11px;
  }

  .newsletter-card {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }

  .newsletter-content p {
    max-width: none;
  }

  .input-group {
    flex-direction: column;
  }

  .input-group input {
    min-width: auto;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .shop-hero-badge {
    font-size: 11px;
    padding: 8px 14px;
  }

  .shop-hero-title {
    font-size: 28px;
  }

  .quick-categories {
    flex-wrap: wrap;
    justify-content: center;
  }

  .category-pill {
    flex: 0 0 auto;
  }

  .grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .product-card {
    border-radius: 14px;
  }

  .product-info {
    padding: 12px;
  }

  .product-category {
    font-size: 9px;
  }

  .product-name {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .product-price {
    font-size: 15px;
  }

  .btn-add-to-cart {
    padding: 10px 12px;
    font-size: 10px;
    border-radius: 8px;
  }

  .view-toggle {
    display: none;
  }
}

/* Footer usa los estilos del index (footer.css) */
