@charset "utf-8";
/* CSS Document */

.promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
}

.promotion-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  transition: box-shadow 0.3s ease;
}

.promotion-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.promotion-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.promotion-card h3 {
  font-size: 1.1rem;
  margin: 1rem 0 0.5rem;
  color: #333;
}

.promotion-card .price {
  margin-bottom: 1rem;
}


.view-button {
  display: inline-block;
  margin-bottom: 1rem;
  font-size:.9rem;
  padding: 0.5rem 1rem;
  background-color: #0077cc;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.view-button:hover {
  background-color: #005fa3;
}


/* Ficha Promo */

.promo-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.promo-image {
  flex: 1 1 300px;
  max-width: 500px;
}

.promo-image img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.promo-details {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.promo-details h1 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 1rem;
}

.promo-description {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  white-space: pre-line; /* Respeta saltos de línea pero no espacios múltiples */
}


.promo-description p { margin-bottom:15px; }

.promo-prices {
  margin-bottom: 1rem;
}

.original-price {
  text-decoration: line-through;
   color:#ed3446;
  margin-right: 0.5rem;
  font-size: 1rem;
}

.promo-price {
  color:#007ccf;
  font-size: 1.5rem;
  font-weight: bold;
}

.promo-validity {
  font-size: 0.95rem;
  color: #444;
  margin-top: auto;
}

.promo-validity .agotado {
  color: #b30000;
  font-weight: bold;
}

@media (max-width: 768px) {
  .promo-container {
    flex-direction: column;
    align-items: center;
  }

  .promo-image, .promo-details {
    max-width: 100%;
  }

  .promo-details {
    align-items: center;
    text-align: center;
  }
}

.alerta-stock {
  display: inline-block;
  background-color: #ffe6e6;
  color: #b30000;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border: 1px solid #b30000;
  border-radius: 6px;
  font-size: 0.95rem;
}

