/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Child theme for GeneratePress
 Author:       Your Name
 Author URI:   https://yourwebsite.com
 Template:     generatepress
 Version:      1.0
*/

/* Import parent theme styles */
@import url("../generatepress/style.css");

/* Single product price */
.single-product .price,
.single-product .woocommerce-Price-amount {
    color: #0c0d0d !important; /* gold */
}

/* Custom Add to Cart button */
.a-button-primary {
    background-color: #FFD700 !important; /* gold */
    color: #000 !important;              /* black text */
    border: none !important;
    padding: 10px 20px !important;
    cursor: pointer !important;
    font-weight: bold;
    display: inline-block;
}

/* Inner text */
.a-button-primary .a-button-text {
    color: #000 !important;
}

/* Hover effect */
.a-button-primary:hover {
    background-color: #e6c200 !important; /* darker gold */
    color: #000 !important;
}

/* Buy Now button */
.gp-buy-now {
    background-color: #ffa100 !important; /* gold */
    color: #000 !important;               /* black text */
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
}

/* Hover effect */
.gp-buy-now:hover {
    background-color: #ffce12 !important; /* darker gold */
    color: #000 !important;
}
