/* =========================================================
  Loliando - index.css (página principal)
  ---------------------------------------------------------
  - Grid de productos
  - Botones de agregar al carrito y ofertar
  - Mensaje de subasta finalizada
  ========================================================= */

/* Variables CSS (si no están definidas en otro lugar) */
:root {
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --brand-green: #00a650;
  --brand-green-dark: #008a43;
  --brand-accent: #2968c8;
  --brand-accent-dark: #1f4f9e;
  --danger: #ff4d4f;
  --bg-card: #f5f5f5;
  --text-main: #333333;
  --trans-fast: 0.2s ease;
  /* Tamaños para las cards de producto */
  --producto-img-height: 140px;
  /* tamaño de imagen reducido para que todo quepa */
  --card-height-desktop: 360px;
  /* altura total de la tarjeta en desktop */
  --card-height-mobile: 360px;
  /* altura total en móvil (aumentada para que el título quepa) */
  --header-height: 80px;
  /* altura esperada del header (ajustable) */
}




/* ------------------ Productos Grid ------------------ */
#productos {
  padding: 12px 12px;
  background-color: var(--bg-card);
  margin-top: 0;
}

/* Evitar que el header sticky tape el contenido: aplicar espacio superior según
   la variable --header-height (ajústala si tu header cambia de tamaño). */
@media (min-width: 769px) {
  #productos {
    margin-top: 0;
  }
}

#productos h2 {
  margin-bottom: 20px;
  color: var(--text-main);
  font-size: 1.4rem;
  text-align: center;
}

#listaProductos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 10px;
  /* menos espacio entre cards para un grid más compacto */
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(135deg, #f0f5ee 0%, white 100%);
  min-height: 120px;
  /* garantía mínima para evitar colapso cuando JS inserta contenido */
}

/* Tarjeta de producto */
.producto-card {
  border: 1px solid #ddd;
  border-radius: var(--radius-md);
  padding: 12px;
  /* un poco más compacto */
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  height: var(--card-height-desktop);
  /* fuerza tamaño uniforme */
  overflow: hidden;
  /* evita que el contenido desborde la tarjeta */
  min-height: 180px;
  /* fallback si la variable no aplica */
}

.producto-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.producto-img {
  width: 100%;
  height: var(--producto-img-height);
  /* mantener tamaño de imagen ajustado */
  overflow: hidden;
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  /* espacio reducido para compactar */
}

.producto-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.producto-card:hover .producto-img img {
  transform: scale(1.05);
}

.producto-info {
  /* Área de información que ocupa el espacio restante dentro de la card.
     Minimizamos padding para que entren más elementos y permitimos que
     botones con margin-top:auto queden visibles. */
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
  padding: 6px;
  /* menos padding para más densidad */
}

.producto-nombre {
  font-size: 1rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 4px;
  /* Limitar a 1 línea y añadir puntos suspensivos */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  /* Asegurar comportamiento de bloque para white-space */
}

/* Asegurar que también los títulos definidos como H3 reciban el mismo límite */
.producto-info h3,
.producto-info h3 a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 0 6px;
}

.producto-precio {
  font-size: 1.08rem;
  /* ligeramente más compacto */
  color: #28a745;
  margin: 4px 0 6px;
  font-weight: bold;
}

.producto-vendedor {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 8px;
}

.producto-rating {
  margin-bottom: 6px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

.producto-rating i {
  color: #ffc107;
  /* Color dorado para las estrellas */
}

.conteo {
  font-size: 0.8rem;
  color: #666;
}

/* Mensaje "Subasta finalizada" */
.subasta-finalizada {
  /* Estilo base similar a btn-carrito */
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  margin-top: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  /* Altura consistente */
  box-sizing: border-box;
}


/* Botones de producto */
.btn-carrito,
.btn-ofertar {
  background-color: var(--brand-green);
  color: white;
  padding: 10px 15px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background-color var(--trans-fast);
  width: 100%;
  margin-top: auto;
}

.btn-carrito:hover {
  background-color: var(--brand-green-dark);
}

.btn-ofertar {
  background-color: var(--brand-accent);
}

.btn-ofertar:hover {
  background-color: var(--brand-accent-dark);
}

/* ===== ESTILOS PARA PRODUCTOS AGOTADOS ===== */
.producto-card.producto-agotado {
  opacity: 0.8;
  position: relative;
}

.producto-card.producto-agotado::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.7);
  z-index: 1;
  /* bajar por debajo del contenido para que títulos y botones sigan visibles */
  border-radius: 12px;
}

/* Para productos agotados, asegurar que la info (título, precio, botones) esté por encima del overlay */
.producto-card.producto-agotado .producto-info {
  position: relative;
  z-index: 2;
}

.agotado-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(220, 53, 69, 0.9);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9rem;
  z-index: 3;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== ESTILOS PARA INFORMACIÓN DE STOCK ===== */
.stock-info {
  font-size: 0.8rem;
  padding: 6px 0;
  margin: 5px 0;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.stock-info i {
  font-size: 0.75rem;
}

.stock-normal {
  background-color: #f8f9fa;
  color: #6c757d;
  border-left: 3px solid #6c757d;
  padding-left: 8px;
}

.stock-medio {
  background-color: #fff3cd;
  color: #856404;
  border-left: 3px solid #ffc107;
  padding-left: 8px;
}

.stock-bajo {
  background-color: #f8d7da;
  color: #721c24;
  border-left: 3px solid #dc3545;
  padding-left: 8px;
}

.stock-agotado {
  background-color: #f8d7da;
  color: #721c24;
  border-left: 3px solid #dc3545;
  padding-left: 8px;
}

/* ===== ESTILOS PARA BOTÓN DE AGOTADO ===== */
.producto-agotado-card {
  background: #6c757d;
  color: white;
  padding: 8px 16px;
  /* Reducido ligeramente para ahorrar espacio */
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
  cursor: not-allowed;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0.7;
  margin-top: auto;
  /* Empujar al fondo */
  font-size: 0.9rem;
  /* Igualar tamaño de fuente al botón de carrito */
  min-height: 38px;
  /* Altura consistente */
}

.producto-agotado-card i {
  font-size: 1rem;
}

/* ===== MEJORAS PARA BOTONES NORMALES ===== */
.btn-carrito {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 10px;
}

.btn-carrito:hover {
  background: linear-gradient(135deg, #218838, #1e9e8a);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

/* ===== ESTILOS RESPONSIVE ===== */
@media (max-width: 768px) {
  .stock-info {
    font-size: 0.75rem;
    padding: 4px 0;
  }

  .agotado-overlay {
    font-size: 0.8rem;
    padding: 6px 12px;
  }

  .producto-agotado-card {
    padding: 8px 12px;
    font-size: 0.9rem;
  }

  /* Ajuste de altura de las cards en móvil: ahora consolidado en el bloque principal de mobile más abajo */
}

/* ===== ANIMACIONES ===== */
@keyframes pulseAgotado {
  0% {
    opacity: 0.7;
  }

  50% {
    opacity: 0.9;
  }

  100% {
    opacity: 0.7;
  }
}

.producto-card.producto-agotado {
  animation: pulseAgotado 2s ease-in-out infinite;
}

/* ===== MEJORAS VISUALES PARA LAS CARDS ===== */
.producto-img {
  position: relative;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.producto-img img {
  transition: transform 0.3s ease;
}

.producto-card:hover .producto-img img {
  transform: scale(1.05);
}

.producto-card.producto-agotado:hover .producto-img img {
  transform: none;
  /* Desactiva el hover para productos agotados */
}

/* Sección de vender */
.seccion-vender {
  background: linear-gradient(135deg, #f0f5ee 0%, white 100%);
  padding: 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin: 20px auto;
  max-width: 600px;
  text-align: center;
}

/* ------------------ Auth ------------------ */
.auth-section {
  text-align: center;
  margin: 40px 0;
  padding: 0 15px;
}

.auth-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  max-width: 300px;
  margin: 0 auto;
}

.auth-container input {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid #ccc;
}

.auth-container button {
  width: 100%;
  padding: 12px;
  background-color: var(--brand-accent);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 1rem;
}

.auth-container button:hover {
  background-color: var(--brand-accent-dark);
}

/* Completar username */
#completar-username {
  margin: 30px auto;
  padding: 20px;
  background-color: white;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  text-align: center;
}

#completar-username input {
  padding: 12px;
  font-size: 1rem;
  margin: 10px 0;
  border-radius: var(--radius-sm);
  border: 1px solid #ccc;
  width: 100%;
  max-width: 250px;
}

#completar-username button {
  padding: 10px 20px;
  background-color: var(--brand-green);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

/* Indicador visual para inputs de username */
input[pattern="[a-z0-9_]+"] {
  font-family: 'Courier New', monospace;
  letter-spacing: 0.5px;
}

input[pattern="[a-z0-9_]+"]:focus {
  border-color: #4CAF50;
  box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
}

/* Placeholder especial para inputs de username */
input[pattern="[a-z0-9_]+"]::placeholder {
  color: #999;
  font-style: italic;
  font-size: 0.9em;
}

.admin-link {
  background: #00a650;
  color: white;
  padding: 10px 15px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  margin-left: 15px;
}

.admin-link:hover {
  background: #008a43;
  transform: translateY(-1px);
  top: 100px;

}

/* Estilos para precios en index */
.producto-info .precio-subasta {
  font-weight: normal;
  color: #000000;
  margin: 8px 0;
  font-size: 1.3em;
}

.producto-info .precio-anterior {
  text-decoration: line-through;
  color: #888;
  margin-right: 5px;
  font-size: 0.9em;
}

.producto-info .descuento-tag {
  background-color: #ffebee;
  color: #000000;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.8em;
  margin-left: 5px;
}

.descuento-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #e53935;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
}

.producto-img {
  position: relative;
}

/*============== NUEVOS ESTILOS INDEX DOS COLUMNAS ========*/
/* ======== Layout 2 columnas para index ======== */
.layout-two-col {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 6px;
}


.sidebar-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Caja motivacional de vender */
.vender-box {
  background: linear-gradient(135deg, #f0f5ee 0%, white 100%);
  padding: 18px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.vender-box h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.vender-box p {
  font-size: 0.95rem;
  color: #444;
}

.vender-box .btn-vender {
  width: 100%;
  margin-top: 10px;
}

/* Categorías columna izquierda */
.categorias-list {
  background: linear-gradient(135deg, #f0f5ee 0%, white 100%);
  padding: 12px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.categorias-list h4 {
  margin-bottom: 8px;
}

.categorias-list a {
  display: block;
  padding: 6px 4px;
  text-decoration: none;
  color: black;
}

.categorias-list h4 {
  background: #00a650;
  border: #ebf0ec;
  color: white;
  padding: 8px;
  border-radius: 6px;
  text-align: left;
}

.categorias-list a:hover {
  text-decoration: underline;
}

.categorias-list a.active {
  font-weight: bold;
  color: var(--brand-green);
}

/* Columna derecha */
.main-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(135deg, #f0f5ee 0%, white 100%);
  margin-top: 0;
}

/* ======== Barra de búsqueda y ordenar ======== */
.filtros-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 8px 12px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  flex-wrap: wrap;
}

.filtros-bar input[type="text"] {
  flex: 1;
  min-width: 220px;
  padding: 8px 10px;
  border-radius: 6px;
  border: 1px solid #ddd;
}

.ordenar-container {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.ordenar-container label {
  font-size: 0.9rem;
  color: var(--text-main, #333);
}

#ordenarProductos {
  padding: 6px 10px;
  border-radius: 6px;
  border: 5px solid #f4f2f2;
  background: rgb(240, 240, 240);

}

/* ======== Grid de productos estilo marketplace ======== */
/* (Bloque duplicado de grid/product-card eliminado para evitar definiciones repetidas) */

/* ======== Título de productos ======== */
.titulo-productos {
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--text-main, #333);
  margin: 5px 0 4px;
}

/* ======== contador subastas ======== */
.contador-subasta {
  font-size: 0.95rem;
  font-weight: bold;
  margin: 8px 0;
  text-align: center;
  border-radius: 6px;
  padding: 4px 6px;
  display: inline-block;
}

.contador-subasta.verde {
  color: #2e7d32;
  /* verde */
}

.contador-subasta.rojo {
  color: #c62828;
  /* rojo */
}

.subasta-ganada {
  background: #4CAF50;
  color: white;
  padding: 8px;
  border-radius: 4px;
  text-align: center;
  font-weight: bold;
}

.contador-subasta.ganada {
  color: #4CAF50;
  font-weight: bold;
}

.contador-subasta.finalizada {
  color: #f44336;
  font-weight: bold;
}

/* =========================================================
  DISEÑO MÓVIL - Ajustes consolidados
  ---------------------------------------------------------
  Consolidamos las reglas móviles en un único bloque para
  evitar duplicados y conflictos con otras secciones del
  archivo. Mantén aquí los overrides específicos para móvil.
  ========================================================= */

@media (max-width: 768px) {

  /* Ocultar elementos específicos en mobile index (si existen) */
  .categorias-list,
  .vender-box,
  .footer {
    display: none;
  }

  .layout-two-col {
    grid-template-columns: 1fr;
    gap: 6px;
    margin: 0;
    padding: 0;
  }

  .main-right {
    margin-top: 0;
    padding: 0 8px;
  }

  /* Grid de productos - 2 columnas en móviles (ajustable) */
  #listaProductos {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    margin: 6px 0;
  }

  .producto-card {
    height: var(--card-height-mobile);
    padding: 8px;
    margin: 0;
  }

  .producto-img {
    height: calc(var(--producto-img-height) * 0.8);
  }

  .producto-nombre {
    font-size: 0.95rem;
    line-height: 1.2;
  }

  .producto-precio {
    font-size: 1rem;
  }

  .btn-carrito,
  .btn-ofertar {
    padding: 8px;
    font-size: 0.9rem;
  }

  .filtros-bar {
    flex-direction: column;
    gap: 8px;
    padding: 8px;
    margin: 4px 0;
  }

  .ordenar-container {
    width: 100%;
    justify-content: space-between;
  }

  #ordenarProductos {
    flex: 1;
    margin-left: 10px;
  }

}

/* Mobile top controls styles are now centralized in `mobile-navigation.css`.
   Removed from index.css to avoid duplication and style conflicts. */

/* Mobile bottom navigation styles removed from this file to avoid conflicts.
   Please use `public/css/mobile-navigation.css` as the canonical source for
   `.mobile-bottom-nav`, `.mobile-nav-btn`, `.nav-icon`, `.nav-label`,
   and `.nav-badge` styles. */

/* Mobile avatar styles removed from this file to avoid duplication.
   Use `public/css/mobile-navigation.css` for avatar and badge styling. */

/* Mobile bottom nav display rules removed from index.css — handled in
   `public/css/mobile-navigation.css` to avoid style collisions. */

/* Estilos específicos para pantallas muy pequeñas */
@media (max-width: 480px) {
  .nav-label {
    font-size: 9px;
  }

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

  .user-avatar-mobile {
    width: 22px;
    height: 22px;
  }

  .nav-badge {
    width: 14px;
    height: 14px;
    font-size: 9px;
    top: -1px;
  }
}

/* En tu archivo CSS */
.google-btn {
  background: white;
  color: #757575;
  border: 1px solid #dadce0;
  border-radius: 4px;
  padding: 10px 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.google-btn:hover {
  background: #f8f9fa;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.google-btn:before {
  content: "G";
  background: conic-gradient(from -45deg, #ea4335 110deg, #4285f4 90deg 180deg, #34a853 180deg 270deg, #fbbc05 270deg) 73% 55%/150% 150% no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  font-size: 16px;
}

/* Avatar / profile mobile styles removed to avoid conflicts.
   Use `public/css/mobile-navigation.css` for user-profile-mobile, avatar,
   badges and related mobile nav appearance. */

/* Mobile-specific nav & avatar responsive rules removed from index.css.
   All mobile-nav and avatar styles live in `public/css/mobile-navigation.css`. */

/* Avatar loading / error / debug styles removed from index.css.
   These are managed in `public/css/mobile-navigation.css` when needed. */

/* Emergency avatar styles removed — avatar styling is managed in
   `public/css/mobile-navigation.css`. */

.user-avatar-mobile:not([has-img]) {
  background-color: #3483fa !important;
  color: white !important;
  font-weight: bold !important;
  font-size: 10px !important;
  border: 2px solid white !important;
}

/* Estilos para etiqueta de descuento en cards */
.imagen-container {
  position: relative;
  width: 100%;
  height: var(--producto-img-height);
  /* sincronizado con la variable */
  overflow: hidden;
}

.etiqueta-descuento {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ff4444;
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: bold;
  z-index: 2;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Mejorar visualización de precios en cards */
.precio-anterior {
  text-decoration: line-through;
  color: #999;
  font-size: 0.9em;
  margin-right: 8px;
}

.precio-actual {
  color: #e74c3c;
  font-weight: bold;
  font-size: 1.1em;
}

/* ===== AJUSTES COMPACTOS PARA MÓVIL (espacios reducidos entre secciones) ===== */
@media (max-width: 768px) {

  /* Note: .mobile-top-controls styling moved to mobile-navigation.css */
  .filtros-bar {
    margin-top: 4px;
    padding-top: 6px;
    padding-bottom: 6px;
  }

  #productos {
    padding: 8px 8px;
    margin-top: 0;
  }

  .layout-two-col {
    gap: 6px;
  }

  .sidebar-left {
    padding-right: 6px;
  }

  .main-right {
    padding-left: 6px;
  }

  .filtros-container {
    gap: 8px;
  }
}

/* Reglas para el grid de producto: mantener tamaños uniformes sin usar !important
   para permitir overrides controlados en una sola sección más abajo si es necesario. */
#listaProductos .producto-card {
  height: var(--card-height-desktop);
  box-sizing: border-box;
}

#listaProductos .producto-img {
  height: var(--producto-img-height);
}

@media (max-width: 768px) {
  #listaProductos {
    gap: 6px;
  }

  #listaProductos .producto-card {
    height: var(--card-height-mobile);
    padding: 8px;
  }

  #listaProductos .producto-img {
    height: calc(var(--producto-img-height) * 0.8);
  }

  #listaProductos .producto-info {
    padding: 6px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  #listaProductos .btn-carrito,
  #listaProductos .btn-ofertar {
    margin-top: auto;
  }

}

/* For desktop: asegurar que el contenido no se corte y los botones queden visibles */
#listaProductos .producto-info {
  padding: 6px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
}

#listaProductos .btn-carrito,
#listaProductos .btn-ofertar {
  margin-top: auto !important;
}

/* Forzar que las imágenes dentro de las cards se ajusten al recuadro
   sin alterar la altura de la tarjeta: ocuparán todo el contenedor y
   se centrarán (recortando si es necesario) para evitar bordes vacíos. */
#listaProductos .imagen-container img,
#listaProductos .producto-img img,
#listaProductos .producto-imagen img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
}

/* Mantener la transición de hover pero evitar saltos visuales */
#listaProductos .producto-img img {
  transition: transform 0.3s ease !important;
}

/* Botón Limpiar Filtros - Estilo Mejorado */
.btn-limpiar-filtros {
  background: #f8f9fa !important;
  color: #6c757d !important;
  border: 1px solid #dee2e6 !important;
  padding: 6px 12px !important;
  border-radius: 4px !important;
  font-size: 13px !important;
  cursor: pointer !important;
  margin-left: 10px !important;
  transition: all 0.2s ease !important;
  height: 38px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: inherit !important;
  text-decoration: none !important;
}

.btn-limpiar-filtros:hover {
  background: #e9ecef !important;
  color: #495057 !important;
  border-color: #adb5bd !important;
  transform: translateY(-1px) !important;
}

.btn-limpiar-filtros:active {
  transform: translateY(0) !important;
}

/* Contenedor de ordenar con botón limpiar */
.ordenar-container {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

/* Indicador temporal de filtros activos */
.filtros-activos-indicator {
  font-size: 12px;
  color: #666;
  background: #f0f0f0;
  padding: 4px 8px;
  border-radius: 4px;
  margin-top: 5px;
  border-left: 3px solid #4CAF50;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Controles de Paginación */
.controles-paginacion {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  flex-wrap: wrap;
}

/* Botones de página */
.btn-pagina,
.btn-pagina-numero,
.btn-cargar-mas {
  padding: 8px 16px;
  border: 1px solid #dee2e6;
  background: white;
  color: #495057;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-pagina:hover:not(:disabled),
.btn-pagina-numero:hover:not(.activa),
.btn-cargar-mas:hover {
  background: #007bff;
  color: white;
  border-color: #007bff;
}

.btn-pagina:disabled {
  background: #e9ecef;
  color: #6c757d;
  cursor: not-allowed;
  opacity: 0.6;
}

/* Página activa */
.btn-pagina-numero.activa {
  background: #007bff;
  color: white;
  border-color: #007bff;
  font-weight: bold;
}

/* Información de página */
.info-pagina {
  font-weight: bold;
  color: #333;
  margin: 0 10px;
  font-size: 14px;
}

/* Números de página */
.paginas-numeros {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

/* Botón Cargar Más específico */
.btn-cargar-mas {
  background: #28a745 !important;
  color: white !important;
  border-color: #28a745 !important;
  padding: 10px 20px !important;
  font-size: 14px !important;
}

.btn-cargar-mas:hover {
  background: #218838 !important;
  border-color: #1e7e34 !important;
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 768px) {
  .controles-paginacion {
    flex-direction: column;
    gap: 8px;
  }

  .paginas-numeros {
    justify-content: center;
  }

  .btn-pagina,
  .btn-pagina-numero {
    padding: 6px 12px;
    font-size: 13px;
  }
}