/* Image Gallery */

/* Main Image Styling */
.main-product-image {
    background-color: #fff;
    height: 400px; /* Fixed height */
    object-fit: cover; /* Ensure proper scaling without distortion */
    border-radius: 0.5rem; /* Slight rounding for a polished look */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Subtle shadow for emphasis */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
.main-product-image:hover {
    transform: scale(1.05); /* Slight zoom effect on hover */
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3); /* Enhanced shadow on hover */
}
  
.gallery-image {
    max-width: 100px; /* Fixed width */
    height: auto; /* Fixed height */
    object-fit: cover; /* Ensure proper scaling */
    border-radius: 0.25rem; /* Match Bootstrap's border-radius */
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
  
.gallery-image:hover {
    transform: scale(1.1); /* Slight zoom on hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .main-product-image {
      height: 300px;
    }
}
  
@media (max-width: 576px) {
    .main-product-image {
      height: 250px;
    }
}

.wishlist-btn {
    background: none;
}

.form-control, .form-select {
    background-color: transparent; /* Transparent background */
    border: 1px solid #ddd; /* Light border */
    color: #333; /* Text color */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    border-radius: 0;
}

.form-control:focus, .form-select:focus {
    box-shadow: none;
}

  