/* Hero section para detalle de producto */
.product-hero {
  padding: 10rem 5% 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: linear-gradient(to bottom, var(--bg-light), var(--bg-light));
  color: var(--text-dark);
}

.product-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2),
    inset 0 0 20px rgba(200, 169, 126, 0.1);
}

.product-image {
  max-width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(90, 26, 38, 0.5)) brightness(1.05)
    contrast(1.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
  border-radius: 1rem;
}

.product-image:hover {
  transform: scale(1.03) rotateY(5deg);
  filter: drop-shadow(0 20px 40px rgba(90, 26, 38, 0.7)) brightness(1.08)
    contrast(1.15);
}

.product-badge {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: linear-gradient(
    135deg,
    var(--gold-primary),
    var(--gold-secondary)
  );
  color: var(--wine-primary);
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(200, 169, 126, 0.3);
  z-index: 2;
}

/* Efecto de reflejo opcional */
.product-image-container::after {
  content: "";
  position: absolute;
  bottom: 10%;
  left: 10%;
  width: 80%;
  height: 20%;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.2), transparent);
  border-radius: 50%;
  filter: blur(5px);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.product-image-container:hover::after {
  opacity: 0.7;
  bottom: 12%;
}

.product-info {
  padding: 2rem;
}

.product-title {
  font-size: clamp(2rem, 4vw, 2.9rem);
  margin-bottom: 1rem;
  color: var(--wine-primary);
}

.product-subtitle {
  font-size: 1.2rem;
  color: var(--gold-primary);
  margin-bottom: 2rem;
  font-style: italic;
}

.product-description {
  text-align: justify;
  margin-bottom: 2rem;
  line-height: 1.8;
  opacity: 0.9;
}

.product-details {
  text-align: justify;
  margin-bottom: 3rem;
}

.detail-item {
  /* display: flex; */
  margin-bottom: 1rem;
}

.detail-label {
  min-width: 120px;
  font-weight: 600;
  color: var(--wine-primary);
}

.detail-value {
  flex: 1;
}

/* Sección de características */
.product-features {
  padding: 0rem 5% 6rem;
  background-color: var(--bg-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  /* margin-top: 3rem; */
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  font-size: 2rem;
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--wine-primary);
}

/*Premios de vinos*/
.gridUniq{
  margin: 0 15em;
}
.img-premio-container img{
  display: block;
    margin: auto;
    border-radius: 20px;
    padding: 10px;

}

.img-premio{
  height: 300px;
  position: relative;
  overflow: hidden;
}

/* Responsive design */
@media (max-width: 992px) {
  .product-hero {
    grid-template-columns: 1fr;
    padding-top: 8rem;
    padding-bottom: 0;
  }
  .gridUniq{
    margin: auto;
  }

}

@media (max-width: 768px) {
  .product-image-container {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }

  .product-image {
    max-height: 400px;
  }

  .product-badge {
    top: 1.5rem;
    right: 1.5rem;
    font-size: 0.4rem;
  }

  .product-info {
    padding: 1rem 0;
  }
  .gridUniq{
    margin: auto;
  }

 
}

@media (max-width: 576px) {
  .product-title {
    font-size: 2rem;
  }

  .product-subtitle {
    font-size: 1rem;
  }

  .detail-item {
    flex-direction: column;
    gap: 0.5rem;
  }
  .gridUniq{
    margin: auto;
  }
  
}

@media (max-width: 380px) {
  .img-premio{
    height: 270px;
  }
  .logo{
    font-size: 0rem;
  }
}


