/*
 Theme Name:   Woostify Child
 Theme URI:    https://yourwebsite.com/
 Description:  Child theme for Woostify
 Author:       Your Name
 Author URI:   https://yourwebsite.com/
 Template:     woostify
 Version:      1.0.0
 Text Domain:  woostify-child
*/

/* Import parent theme styles */
@import url("../woostify/style.css");

/* ========== Custom Styles ========== */

/* Body font and color */
body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    background-color: #fff;
}

/* Header adjustments */
.site-header {
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Navigation menu */
.main-navigation a {
    color: #333;
    font-weight: 600;
}

.main-navigation a:hover {
    color: #ff4c3b;
}

/* Buttons */
.button, .btn {
    background-color: #ff4c3b;
    color: #fff;
    border-radius: 5px;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.button:hover, .btn:hover {
    background-color: #e03b2f;
}

/* Footer styles */
.site-footer {
    background-color: #222;
    color: #ccc;
    padding: 30px 0;
}

.site-footer a {
    color: #fff;
}

.site-footer a:hover {
    color: #ff4c3b;
}

/* WooCommerce product adjustments */
.woocommerce ul.products li.product {
    border: 1px solid #eee;
    padding: 15px;
    transition: all 0.3s ease;
}

.woocommerce ul.products li.product:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Add more custom styles below */
