/* AddToCart Button Shortcode Styles */
.add-to-cart-button {
    display: inline-block;
    background-color: rgb(3, 0, 190);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    /* transition: background-color 0.2s ease; */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.add-to-cart-button:hover {
    color: white;
    text-decoration: none;
    background-color: rgb(3, 0, 171);
}

.add-to-cart-button:focus {
    outline-offset: 2px;
}

.add-to-cart-button:active {
    background-color: rgb(3, 0, 171);
}


/* Responsive design */
@media (max-width: 768px) {
    .add-to-cart-button {
        padding: 8px 16px;
        font-size: 13px;
    }
}
