.product-card h2{
    font-weight: bold !important;
    color: #353535 !important;
    font-size: 24px !important;
}

.product-card{
    height: 540px;
    font-family: 'Polin Medium'!important;
    border: 1px solid #eaeaea;
    padding: 20px;
    padding-top: 55px;
    margin-bottom: 25px;
    position: relative;
    background: #fff;
    box-shadow: 0px 0px 12px 0 rgb(12 26 60 / 22%);
    transition: all .3s ease;
    overflow: hidden;
    border-radius: 28px;
    z-index: 1;
    min-height: 300px;
}

.product-image {
    margin-bottom: 50px;
}

.product-description {
    margin-top: 20px;
    margin-bottom: 20px;
}

.product-card-footer {
    width: calc(100% - 45px);
    display: flex;
    position: absolute;
    bottom: 25px;
    background-color: #F9F4EC;
    border-radius: 18px;
    padding: 15px;
    align-items: center;
}

.add-to-cart-button {
    position: absolute;
    left: 15px;
}

.buyNowButtonAbdo {
    padding: 8px 28px 8px 28px !important;
    font-size: 18px !important;
}

.product-card-wrapper{
    display: flex;
    justify-content: center;
}

.product-card-wrapper {
    display: none;
}

.container{
    margin-bottom: 45px;

}

#loader {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7); /* Semi-transparent background */
    z-index: 9999; /* Ensure it's above other content */
}

.spinner {
    border: 4px solid #F9F4EC; /* Set the spinner's border color */
    border-top: 4px solid transparent; /* Make one border transparent to create the spinner effect */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite; /* Animation to rotate the spinner */
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


@media (min-width: 1200px){
    .product-card {
        min-width: 350px;
    }
}

@media (max-width: 1199px){
    .product-card {
        width: 380px !important;
    }
}

@media (max-width: 500px){
    .product-card {
        width: 320px !important;
    }
}