section.products .product {
    filter: drop-shadow(9px 8px 12px rgba(255, 255, 255, 0.25));
    background-color: var(--white);
    border-radius: 15px;
}
section.products .product .img {
    width: 100%;
    height: 240px;
    border-radius: 5px;
}
section.products .product .img img {
    max-height: 100%;
    max-width: 100%;
}
section.products .product .name {
    color: var(--primary);
    font-family: Poppins;
    font-size: 25px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    text-align: center;
}
section.products .product .details {
    color: var(--black);
    text-align: justify;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}
section.products .product .footer {
    border-radius: 0px 0px 10px 10px;
    background: var(--bg-primary);
    padding: 10px;
}
section.products .product .footer .price {
    border-bottom: 1px solid var(--primary);
    color: var(--white);
    text-align: justify;
    font-family: PT Sans;
    font-size: 35px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
}
/* image zoom */
section.products .product .img img+.magnify-icon,
section.products .product .img .magnify-icon {
    display: none;
    position: absolute;
    cursor: pointer;
    background-color: var(--primary);
    border-radius: 100%;
    padding: 10px;
}
section.products .product .img img+.magnify-icon svg,
section.products .product .img .magnify-icon svg {
    fill: var(--white);
    width: 20px;
    height: 20px;
}
section.products .product .img img:hover+.magnify-icon,
section.products .product .img .magnify-icon:hover {
    display: inline-block;
}
@keyframes drawCheck {
    to {
        stroke-dashoffset: 0;
    }
}
.loading-spinner {
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}
.loading-spinner svg {
    fill: var(--white);
    height: 20px;
    width: 20px;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
#cartUpdatedModal .modal-content {
    background-color: rgba(0, 0, 0, 0.2);
}
.modal-content {
    background-color: var(--white);
}