.common-heading a{
    font-size: 15px;
    padding: 10px;
}

.bg-section .common-box .common-heading a:hover {
    color: #09a0579b !important;
}

.product-box {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* default shadow */
}

.product-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); /* hover shadow */
}

.promotional-product-banner img {
    height: 340px;
    width: 100%;
}

.product-image.img-box img {
    height: 100px;
    width: auto;
}


/* no product found for category wise product list page css */
.no-product-found {
    text-align: center;
    border-radius: 12px;
    max-width: 700px;
    margin: 50px auto;
    animation: fadeIn 0.8s ease-in-out;
  }

.no-product-found .icon {
    font-size: 70px;
    color: #f90300;
    margin-bottom: 15px;
    animation: bounce 1.5s infinite;
}

/* Animations */
@keyframes fadeIn {
    from {opacity: 0; transform: translateY(20px);}
    to {opacity: 1; transform: translateY(0);}
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}
