/* cupones.css: estilos para los cupones reutilizables */
.cupones-lista{
  display: flex;
    flex-direction: row;
    flex-flow: wrap;
    gap: 8px;
}
.cupones-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  width: calc(33% - 3px);
  
  vertical-align: top;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  display:flex;
  flex-direction: column;
    padding: 8px;
    justify-content: space-between;
}
.cupones-card-img {
  width: 100%;
  height: auto;
  max-height: 100px;
  object-fit: cover;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.cupones-card-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  height: auto;
  justify-content: space-between;
}
.cupones-card-title {
  font-size: 1.1rem;
  margin: 0 0 4px 0;
}
.cupones-card-text {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 8px;
}
.cupones-btn {
  background: #007bff;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 6px 12px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s;
}
.cupones-btn:hover {
  background: #0056b3;
}
.cupones-spinner {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #3498db;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 40px auto;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.cupones-vacio {
  text-align: center;
  color: #888;
  margin: 24px 0;
}
.cupones-error {
  color: #c00;
  text-align: center;
  margin: 24px 0;
}
/* Categorías */
.cupones-categoria-link {
  display: inline-block;
  margin: 4px 8px 4px 0;
  padding: 6px 14px;
  background: #f5f5f5;
  color: #007bff;
  border-radius: 16px;
  text-decoration: none;
  font-size: 1rem;
  border: 1px solid #ddd;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
.cupones-categoria-link:hover {
  background: #007bff;
  color: #fff;
}
.cupones-categoria-link.active {
  background: #007bff;
  color: #fff;
  font-weight: bold;
  border-color: #0056b3;
}
