/**
 * ============================================================
 * CATÁLOGO MODERNO - Estilos Actualizados
 * Diseño mejorado con colores CMYK y animaciones
 * ============================================================
 */

/* Variables de colores */
:root {
  --cyan: #00a7e1;
  --magenta: #d72a86;
  --yellow: #f8bd23;
  --black: #0f1723;
  --gray-light: #f9fafb;
  --gray-mid: #f3f4f6;
  --gray-text: #6b7280;
  --gradient-primary: linear-gradient(135deg, #00a7e1, #d72a86);
  --gradient-secondary: linear-gradient(135deg, #d72a86, #f8bd23);
  --gradient-tertiary: linear-gradient(135deg, #f8bd23, #00a7e1);
}

/* ============================================================
   DECORACIONES MODERNAS
   ============================================================ */

.catalogo-decoration-modern {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

.catalogo-decoration-modern.deco-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 167, 225, 0.1) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  border-radius: 50%;
  animation: floatElement 15s ease-in-out infinite;
}

.catalogo-decoration-modern.deco-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(215, 42, 134, 0.1) 0%, transparent 70%);
  bottom: 100px;
  left: -50px;
  border-radius: 50%;
  animation: floatElement 18s ease-in-out infinite 1s;
}

.catalogo-decoration-modern.deco-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(248, 189, 35, 0.1) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  border-radius: 50%;
  animation: floatElement 20s ease-in-out infinite 2s;
}

/* ============================================================
   HEADER MODERNIZADO
   ============================================================ */

.catalogo-header-modern {
  position: relative;
  padding: 20px 20px 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 50%, #eff2f5 100%);
  
}

.header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(0, 167, 225, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(215, 42, 134, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(248, 189, 35, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.catalogo-header-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInDown 0.8s ease;
}

.catalogo-title-modern {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #00a7e1 0%, #d72a86 50%, #f8bd23 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.catalogo-title-modern i {
  font-size: 2.8rem;
  animation: spin 3s linear infinite;
}

.catalogo-subtitle-modern {
  font-size: 1.2rem;
  color: var(--gray-text);
  font-weight: 300;
  margin-bottom: 30px;
}

.header-accent {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #00a7e1, #d72a86, #f8bd23);
  margin: 0 auto;
  border-radius: 2px;
  animation: slideInWidth 0.8s ease 0.3s forwards;
  transform: scaleX(0);
}

/* ============================================================
   BUSCADOR MEJORADO
   ============================================================ */

.catalogo-search-section {
  position: relative;
  z-index: 2;
  padding: 30px 20px;
  background: white;
  border-bottom: 1px solid rgba(0, 167, 225, 0.1);
}

.search-wrapper {
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 0.6s ease;
}

.search-box {
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
  border: 2px solid rgba(0, 167, 225, 0.2);
  border-radius: 50px;
  padding: 0 20px;
  transition: all 0.3s ease;
}

.search-box:focus-within {
  border-color: #00a7e1;
  box-shadow: 0 0 20px rgba(0, 167, 225, 0.2);
  background: white;
}

.search-box i {
  color: var(--cyan);
  font-size: 1.3rem;
  margin-right: 12px;
}

.search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 14px 0;
  font-size: 1rem;
  color: var(--black);
}

.search-input::placeholder {
  color: var(--gray-text);
}

.clear-btn-modern {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--magenta);
  padding: 0 10px;
  transition: all 0.3s ease;
  display: none;
}

.clear-btn-modern.visible {
  display: block;
}

.clear-btn-modern:hover {
  transform: scale(1.2);
}

/* ============================================================
   BARRA DE CONFIANZA - FOOTER FLOTANTE
   ============================================================ */

.trust-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(249, 250, 251, 0.98));
  backdrop-filter: blur(10px);
  padding: 12px 0;
  border-top: 2px solid rgba(0, 167, 225, 0.2);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
  transform: translateY(0);
  opacity: 1;
}

.trust-bar.hidden {
  transform: translateY(100%);
  opacity: 0;
}

.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 15px;
  background: white;
  border-radius: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.trust-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 167, 225, 0.2);
  border-color: var(--cyan);
}

.trust-icon {
  width: 35px;
  height: 35px;
  min-width: 35px;
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(0, 167, 225, 0.3);
}

.trust-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.trust-text strong {
  font-size: 0.8rem;
  color: var(--black);
  font-weight: 700;
  line-height: 1.2;
}

.trust-text span {
  font-size: 0.65rem;
  color: var(--gray-text);
  font-weight: 500;
  line-height: 1.2;
}

/* Responsive para footer flotante */
@media (max-width: 992px) {
  .trust-items {
    gap: 15px;
  }
  
  .trust-item {
    padding: 6px 12px;
  }
}

@media (max-width: 768px) {
  .trust-bar {
    padding: 10px 0;
  }

  .trust-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  
  .trust-item {
    padding: 8px 8px;
    font-size: 0.75rem;
  }
  
  .trust-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    font-size: 0.95rem;
  }
  
  .trust-text strong {
    font-size: 0.68rem;
  }
  
  .trust-text span {
    font-size: 0.58rem;
  }
}

@media (max-width: 480px) {
  .trust-items {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }
  
  .trust-item {
    padding: 6px 6px;
    flex-direction: column;
    text-align: center;
  }
  
  .trust-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    font-size: 0.9rem;
  }
  
  .trust-text strong {
    font-size: 0.6rem;
    line-height: 1.1;
  }
  
  .trust-text span {
    font-size: 0.55rem;
    line-height: 1.1;
  }
}

/* ============================================================
   CATEGORÍAS MODERNAS
   ============================================================ */

.catalogo-categorias-modern {
  position: relative;
  z-index: 2;
  max-width: 1200px;
}

.categorias-wrapper {
  animation: fadeInUp 0.7s ease 0.2s both;
}

.categorias-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.categorias-label i {
  font-size: 1.3rem;
  color: var(--cyan);
}

.categoria-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
  margin-bottom: 40px;
}

.categoria-item-modern {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 15px;
  background: white;
  border: 2px solid rgba(0, 167, 225, 0.1);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 600;
  color: var(--black);
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
}

.categoria-item-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
  pointer-events: none;
}

.categoria-item-modern:hover::before {
  left: 100%;
}

.categoria-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 167, 225, 0.1), rgba(215, 42, 134, 0.1));
  border-radius: 12px;
  font-size: 1.8rem;
  color: var(--cyan);
  transition: all 0.3s ease;
}

.categoria-item-modern:hover {
  border-color: var(--cyan);
  box-shadow: 0 8px 20px rgba(0, 167, 225, 0.15);
  transform: translateY(-4px);
  background: linear-gradient(135deg, rgba(0, 167, 225, 0.05), rgba(215, 42, 134, 0.05));
}

.categoria-item-modern:hover .categoria-icon {
  background: linear-gradient(135deg, rgba(0, 167, 225, 0.2), rgba(215, 42, 134, 0.2));
  transform: scale(1.1) rotate(5deg);
}

.categoria-item-modern.active {
  background: linear-gradient(135deg, #00a7e1, #0084d1);
  color: white;
  border-color: #00a7e1;
}

.categoria-item-modern.active .categoria-icon {
  background: rgba(255, 255, 255, 0.3);
  color: white;
}

/* ============================================================
   NO RESULTADOS
   ============================================================ */

.no-results-container {
  padding: 60px 20px;
  text-align: center;
  animation: fadeIn 0.5s ease;
}

.no-results-container i {
  font-size: 4rem;
  color: var(--cyan);
  margin-bottom: 15px;
  opacity: 0.3;
}

.no-results-container h4 {
  font-size: 1.5rem;
  color: var(--black);
  margin-bottom: 10px;
  font-weight: 700;
}

.no-results-container p {
  color: var(--gray-text);
  font-size: 1rem;
}

/* ============================================================
   ANIMACIONES ADICIONALES
   ============================================================ */

@keyframes floatElement {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
  }
  25% {
    transform: translateY(-20px) translateX(10px);
  }
  50% {
    transform: translateY(-40px) translateX(-10px);
  }
  75% {
    transform: translateY(-20px) translateX(10px);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes slideInWidth {
  to {
    transform: scaleX(1);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 768px) {
  .catalogo-title-modern {
    font-size: 2rem;
    flex-direction: column;
    gap: 8px;
  }

  .catalogo-title-modern i {
    font-size: 1.8rem;
  }

  .catalogo-subtitle-modern {
    font-size: 1rem;
  }

  .categoria-grid-modern {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 12px;
  }

  .categoria-item-modern {
    padding: 15px 10px;
    font-size: 0.85rem;
  }

  .categoria-icon {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .catalogo-header-modern {
    padding: 15px 15px 15px;
  }

  .catalogo-title-modern {
    font-size: 1.5rem;
  }

  .categoria-grid-modern {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .categoria-item-modern {
    padding: 12px 8px;
    gap: 6px;
    font-size: 0.75rem;
  }

  .categoria-icon {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }
}

/* ============================================================
   CONTENEDOR DE PRODUCTOS
   ============================================================ */

#productos-container {
  position: relative;
  z-index: 2;
  padding: 20px 0;
  background: white;
  min-height: 200px;
}

.productos-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.productos-header-section {
  text-align: center;
  padding: 30px 0;
  animation: fadeInDown 0.6s ease;
}

.productos-header-section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0f1723;
  margin-bottom: 10px;
}

.productos-header-section p {
  font-size: 1rem;
  color: #6b7280;
}

/* Contador de resultados */
.results-counter {
  text-align: center;
  padding: 15px 0;
  font-size: 0.95rem;
  color: #6b7280;
  font-weight: 500;
}

/* Efecto de carga */
.loading {
  text-align: center;
  padding: 40px 20px;
}

.loading-spinner {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 4px solid rgba(0, 167, 225, 0.1);
  border-radius: 50%;
  border-top-color: #00a7e1;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* ============================================================
   TABS DE CATEGORÍAS
   ============================================================ */

.category-tabs-container {
  position: sticky;
  top: 70px;
  z-index: 100;
  background: white;
  padding: 15px 0;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
}

.tabs-wrapper {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 10px;
  scrollbar-width: thin;
  scrollbar-color: var(--cyan) transparent;
}

.tabs-wrapper::-webkit-scrollbar {
  height: 4px;
}

.tabs-wrapper::-webkit-scrollbar-track {
  background: transparent;
}

.tabs-wrapper::-webkit-scrollbar-thumb {
  background: var(--cyan);
  border-radius: 2px;
}

.category-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--gray-light);
  border: 2px solid transparent;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-text);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.category-tab i {
  font-size: 1.1rem;
}

.category-tab:hover {
  background: var(--gray-mid);
  color: var(--cyan);
  transform: translateY(-2px);
}

.category-tab.active {
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  color: white;
  border-color: var(--cyan);
  box-shadow: 0 4px 12px rgba(0, 167, 225, 0.3);
}

/* ============================================================
   BADGES EN TARJETAS DE PRODUCTOS (SIMPLIFICADO)
   ============================================================ */

.producto-badges-top {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 10;
  align-items: flex-end;
}

/* Badge de clics */
.click-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  background: rgba(15, 23, 35, 0.9);
  color: white;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  animation: fadeInScale 0.3s ease;
}

.click-badge i {
  font-size: 0.85rem;
  color: var(--cyan);
}

/* Badge popular */
.popular-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
  animation: pulse 2s infinite;
}

.popular-badge i {
  font-size: 0.85rem;
  animation: fire 1.5s infinite;
}

/* ============================================================
   BOTÓN MEJORADO
   ============================================================ */

.btn-ver-mejorado {
  position: relative;
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-ver-mejorado:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  background: linear-gradient(135deg, #128c7e, #075e54);
}

.btn-ver-mejorado:active {
  transform: translateY(-1px);
}

.btn-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-content i {
  font-size: 1.2rem;
  animation: whatsappPulse 1.5s infinite;
}

@keyframes whatsappPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

/* Efecto de brillo en el botón */
.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.btn-ver-mejorado:hover .btn-shine {
  left: 100%;
}

/* ============================================================
   QUICK VIEW OVERLAY
   ============================================================ */

.quick-view-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 167, 225, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.producto-card:hover .quick-view-overlay {
  opacity: 1;
}

.quick-view-text {
  color: white;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.quick-view-text i {
  font-size: 1.5rem;
  animation: zoomIn 0.6s infinite alternate;
}

@keyframes zoomIn {
  from { transform: scale(1); }
  to { transform: scale(1.2); }
}

/* ============================================================
   ANIMACIONES GENERALES
   ============================================================ */

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes fire {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-2px) rotate(-5deg);
  }
  75% {
    transform: translateY(-2px) rotate(5deg);
  }
}

/* ============================================================
   RESPONSIVE PARA BADGES Y BOTONES
   ============================================================ */

@media (max-width: 768px) {
  .producto-badges-top {
    top: 8px;
    right: 8px;
    gap: 4px;
  }
  
  .click-badge,
  .popular-badge {
    padding: 4px 8px;
    font-size: 0.65rem;
  }
  
  .btn-ver-mejorado {
    padding: 12px 16px;
    font-size: 0.85rem;
  }
  
  .btn-content i {
    font-size: 1rem;
  }
}

/* Agregar padding bottom al contenedor para el footer flotante */
body {
  padding-bottom: 80px;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 140px;
  }
}

/* ============================================================
   BADGES EN TARJETAS DE PRODUCTOS (LEGACY - MANTENER COMPATIBILIDAD)
   ============================================================ */

.producto-stats {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 10;
}

.click-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  background: rgba(15, 23, 35, 0.9);
  color: white;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  animation: fadeInScale 0.3s ease;
}

.click-badge i {
  font-size: 0.85rem;
  color: var(--cyan);
}

.popular-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
  animation: pulse 2s infinite;
}

.popular-badge i {
  font-size: 0.85rem;
  animation: fire 1.5s infinite;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes fire {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-2px) rotate(-5deg);
  }
  75% {
    transform: translateY(-2px) rotate(5deg);
  }
}

/* ============================================================
   MENSAJE SIN CLICS
   ============================================================ */

.no-clicks-message {
  padding: 60px 20px;
  text-align: center;
  background: var(--gray-light);
  border-radius: 16px;
  margin: 20px 0;
}

.no-clicks-message h3 {
  color: var(--black);
  font-weight: 700;
  margin-bottom: 10px;
}

.no-clicks-message p {
  color: var(--gray-text);
  font-size: 1rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 768px) {
  .category-tabs-container {
    top: 60px;
  }
  
  .category-tab {
    padding: 10px 16px;
    font-size: 0.85rem;
  }
  
  .category-tab span {
    display: none;
  }
  
  .category-tab.active span {
    display: inline;
  }
  
  .producto-stats {
    top: 8px;
    right: 8px;
    gap: 4px;
  }
  
  .click-badge,
  .popular-badge {
    padding: 4px 8px;
    font-size: 0.65rem;
  }
}