/*
Theme Name: Divi Child
Template: Divi
Version: 1.0
Author: Your Name
Description: A child theme for Divi.
*/

/* Import parent theme styles */
@import url("../Divi/style.css");

/* You can add custom CSS below */
/*
Theme Name: YourTheme Child
Theme URI: https://example.com
Description: Child theme for YourTheme
Author: Your Name
Template: yourtheme
Version: 1.0.0
*/
.product-table th, .product-table td {
    padding: 12px;
    text-align: left;
    vertical-align: top;
}

.add-to-cart-btn {
    background-color: #d4af37; /* golden */
    color: white;
    padding: 10px 18px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
    font-weight: bold;
    white-space: nowrap;
}

.add-to-cart-btn:hover {
    background-color: #b68e2f; /* darker gold */
}
