/**
 * WooCommerce Specific Styles for LuxeDecor
 *
 * @package LuxeDecor
 */

/* Product Grid */
.woocommerce ul.products li.product {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-top: 15px;
    color: #2c3e50;
}

.woocommerce ul.products li.product .price {
    color: #c0a060;
    font-weight: bold;
    margin-bottom: 15px;
}

.woocommerce ul.products li.product .button {
    background-color: #2c3e50;
    color: #fff;
    padding: 10px 20px;
    border-radius: 0;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.woocommerce ul.products li.product .button:hover {
    background-color: #c0a060;
}

/* Single Product Page */
.woocommerce div.product .product_title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c3e50;
}

.woocommerce div.product p.price, 
.woocommerce div.product span.price {
    color: #c0a060;
    font-size: 1.5rem;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    border-bottom-color: #c0a060;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    color: #c0a060;
}

.woocommerce #respond input#submit, 
.woocommerce a.button, 
.woocommerce button.button, 
.woocommerce input.button {
    background-color: #2c3e50;
    color: #fff;
    border-radius: 0;
    padding: 12px 25px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.woocommerce #respond input#submit:hover, 
.woocommerce a.button:hover, 
.woocommerce button.button:hover, 
.woocommerce input.button:hover {
    background-color: #c0a060;
}

/* Cart & Checkout */
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    background-color: #c0a060;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
    background-color: #a68a4d;
}
