/*
Theme Name: Simple Nova Child
Template: simple-nova
Description: Child theme for Simple Nova, used for custom modifications to avoid losing settings when the parent theme updates.
Author: Donna DIY
Version: 1.0.0
Text Domain: simple-nova-child
*/

/* Custom CSS area */

/* 1. Global font and color */
body {
    font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #333333;
    background-color: #f9f9f9;
}

/* 2. Heading styles */
h1, h2, h3, h4, h5, h6 {
    color: #2c3e50;
    font-weight: 600;
}

/* 3. Button styles */
button, .button, .woocommerce button.button, .woocommerce a.button {
    background-color: #e67e22;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

button:hover, .button:hover, .woocommerce button.button:hover, .woocommerce a.button:hover {
    background-color: #d35400;
    transform: translateY(-2px);
}

/* 4. Product card styling */
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease;
}

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

/* 5. Cart and checkout page optimization */
.woocommerce-cart table.cart td.actions .coupon .input-text,
.woocommerce-checkout #payment ul.payment_methods {
    border-color: #e0e0e0;
}

.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
    background-color: #27ae60;
}

.woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover {
    background-color: #219653;
}
*/

