.order-fast-checkout-block {
    padding: 20px 20px;
    margin: 15px 0 25px;
    background: #f9f9f9; /* Light Grey */
    border-radius: 10px;
    border: 3px dashed #2764ae;
}


.product-details {
    background: #f5f5f5; /* Light Grey */
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0 1rem rgb(0 0 0 / 9%);
}


button:hover, .btn:hover {
    background-color: #2764ae;
    color: #fff;
    transform: scale(1.02);
    transition: all 0.3s ease;
}

.product-image img {
    border-radius: 8px;
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}

.product-image img:hover {
    transform: scale(1.03);
}

.section {
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.product-details:hover {
    box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}