/* Products CSS - Enhanced styling for product showcase */

/* Product Showcase Enhancement */
.product-item {
  text-align: center;
  margin-bottom: 40px;
  transition: transform 0.3s ease;
  padding: 15px;
  position: relative;
}

.product-item:hover {
  transform: translateY(-8px);
}

.product-image-container {
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(240, 248, 255, 0.3);
}

.product-image-container img {
  max-height: 680px;
  max-width: 105%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.product-image-container:hover img {
  transform: scale(1.05);
}

.product-item h4 {
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.product-item p {
  color: #666;
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.5;
}

.btn-product {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 30px;
  transition: all 0.3s ease;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 6px rgba(0, 123, 255, 0.2);
}

.btn-product:hover {
  background-color: #0056b3;
  color: white;
  box-shadow: 0 6px 12px rgba(0, 123, 255, 0.3);
  transform: translateY(-2px);
}

/* Section enhancement */
.products-section {
  padding: 80px 0;
  background-color: #f9f9f9;
  position: relative;
}

.products-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(240, 248, 255, 0.4) 100%);
  z-index: 0;
}

.products-section .container {
  position: relative;
  z-index: 1;
}

.products-section h2 {
  margin-bottom: 50px;
  color: #333;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.products-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #007bff;
  border-radius: 3px;
}

/* Maintain responsive images for mobile */
@media (max-width: 768px) {
  .bottle-200ml-desktop {
    display: none;
  }
  
  .bottle-200ml-mobile {
    display: block;
  }
  
  .product-image-container {
    height: 450px;
  }
  
  .product-image-container img {
    max-height: 420px;
  }
  
  .product-item h4 {
    font-size: 1.3rem;
  }
  
  .product-item p {
    font-size: 0.9rem;
  }
}

/* Water drop effect animation for product hover */
.water-drop {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(circle, rgba(0, 123, 255, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: -1;
  border-radius: 50%;
  transform: scale(0.8);
}

.product-item:hover .water-drop {
  opacity: 1;
  animation: ripple 1.5s ease-out;
}

@keyframes ripple {
  0% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}