
/* Style the Add to Cart button */
.single_add_to_cart_button,
.woocommerce a.button.product_type_simple,
.woocommerce button.button.alt {
    background: linear-gradient(to right, #1a1a1a, #444);
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.single_add_to_cart_button:hover,
.woocommerce a.button.product_type_simple:hover,
.woocommerce button.button.alt:hover {
    background: linear-gradient(to right, #444, #1a1a1a);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
