/* Estilos generales */
@media (min-width:750px) {
	.product-cards-container {
  		display: grid;
 		grid-template-columns: repeat(3,  1fr);
  		gap: 25px;
	}	
}
@media (min-width:950px) {
	.product-cards-container {
 		grid-template-columns: repeat(4,  1fr);
	}	
}

.event-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: white;
}

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

/* Sección de imagen */
.event-image-container {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.event-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.event-card:hover .event-image {
  transform: scale(1.05);
}

.product-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

/* Sección de detalles */
.event-details {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  align-items: flex-start;
}

.details-left {
  flex: 1;
  padding-right: 15px;
}

.event-title {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.event-location {
  margin: 0;
  font-size: 14px;
  color: #666;
  display: flex;
  align-items: center;
}

.event-location::before {
  content: "📍";
  margin-right: 5px;
}

/* Fecha del evento */
.event-date {
  text-align: center;
  min-width: 50px;
}

.event-day {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #ff4757;
  line-height: 1;
}

.event-month {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
  margin: 3px 0;
}

.event-year {
  display: block;
  font-size: 11px;
  color: #999;
}

/* Botón de compra */
.buy-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background: #e84118;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.buy-button:hover {
  background: #e84118;
}

.buy-button .price {
  font-weight: 700;
  font-size: 16px;
}

/* Responsive */
@media (max-width: 480px) {
  .event-card {
    max-width: 100%;
  }
  
  .event-image-container {
    height: 180px;
  }
}