/* Buy Now Button Styles */
.buy-now-button {
    display: inline-block;
    padding: 14px 28px;
    background-color: #ff5722;
    /* Vibrant orange for 'Buy Now' */
    color: #ffffff;
    font-weight: 600;
    /* text-transform: uppercase; */
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    text-align: center;
    /* font-family: 'Poppins', sans-serif; */
    letter-spacing: 0.5px;
}

.buy-now-button:hover {
    background-color: #e64a19;
    transform: translateY(-2px);
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(230, 74, 25, 0.3);
}

.buy-now-button:active {
    transform: translateY(0);
}

/* Single Product Page Integration */
.single-product-buy-now {
    margin: 0 0 30px 0;
}

.single-buy-now {
    width: 100%;
    max-width: 49%;
    font-size: 16px;
    padding: 15px 32px;
    border-radius: 5px;
}

.whatsapp-button {
    display: inline-block;
    padding: 15px 32px;
    background-color: #25D366;
    color: #ffffff;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    text-align: center;
    letter-spacing: 0.5px;
    width: 100%;
    max-width: 49%;
    margin-left: 10px;
}