/* Custom styles for PUUJA website */
/* Dropdown animation */
.group-hover\:block {
    display: none;
}
.group:hover .group-hover\:block {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
/* Product card hover effect */
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
/* Cart counter animation */
#cart-count {
    transition: all 0.3s ease;
}
   .hero-banner {
       width: 100%;
       position: relative; /* or absolute, depending on your layout */
       overflow: hidden; /* to prevent overflow issues */
}
   .categories, .featured-products {
       width: 100%; /* Ensure they are also full width */
       margin-top: 20px; /* Adjust as necessary for spacing */
}
