/*
Theme Name: Flatsome Child
Description: Child theme for Flatsome
Author: Make Life Special
Template: flatsome
Version: 1.0.0
Text Domain: flatsome-child
*/

/* 
==============================================
FLATSOME CHILD THEME STYLES
==============================================

Add your custom CSS below this line.
These styles will override the parent theme styles.

STRUCTURE:
1. Global Overrides
2. Header Customizations
3. Navigation Customizations
4. Content Area Customizations
5. Footer Customizations
6. WooCommerce Customizations
7. Responsive Customizations
8. Custom Components

==============================================
*/

/* 
----------------------------------------------
1. GLOBAL OVERRIDES
----------------------------------------------
*/

/* Example: Custom font family */
/*
body {
    font-family: 'Your Custom Font', Arial, sans-serif;
}
*/

/* Example: Custom primary colors */
/*
:root {
    --primary-color: #your-color;
    --secondary-color: #your-color;
    --accent-color: #your-color;
}
*/

/* Example: Custom link styles */
/*
a {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}
*/

/* 
----------------------------------------------
2. HEADER CUSTOMIZATIONS
----------------------------------------------
*/

/* Example: Custom header background */
/*
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
*/

/* Example: Logo customizations */
/*
.header-logo img {
    max-height: 60px;
    width: auto;
}
*/

/* Example: Header text color */
/*
.header-nav a {
    color: #333333;
}
*/

/* 
----------------------------------------------
3. NAVIGATION CUSTOMIZATIONS
----------------------------------------------
*/

/* Example: Main menu styling */
/*
.nav > li > a {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
*/

/* Example: Dropdown menu styling */
/*
.nav-dropdown {
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
*/

/* Example: Mobile menu customizations */
/*
.mobile-nav {
    background-color: #ffffff;
}
*/

/* 
----------------------------------------------
4. CONTENT AREA CUSTOMIZATIONS
----------------------------------------------
*/

/* Example: Page title styling */
/*
.page-title h1 {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 1rem;
}
*/

/* Example: Button customizations */
/*
.button, .btn {
    border-radius: 25px;
    padding: 12px 24px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.button:hover, .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
*/

/* Example: Custom sections */
/*
.section-custom {
    padding: 80px 0;
    background-color: #f8f9fa;
}
*/

/* 
----------------------------------------------
5. FOOTER CUSTOMIZATIONS
----------------------------------------------
*/

/* Example: Footer background */
/*
.footer {
    background-color: #2c3e50;
    color: #ffffff;
}
*/

/* Example: Footer links */
/*
.footer a {
    color: #ecf0f1;
}

.footer a:hover {
    color: var(--primary-color);
}
*/

/* 
----------------------------------------------
6. WOOCOMMERCE CUSTOMIZATIONS
----------------------------------------------
*/

/* Example: Product grid styling */
/*
.products .product {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.products .product:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
*/

/* Example: Add to cart button */
/*
.single_add_to_cart_button {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}
*/

/* Example: Price styling */
/*
.price {
    font-weight: bold;
    color: var(--primary-color);
}
*/

/* 
----------------------------------------------
7. RESPONSIVE CUSTOMIZATIONS
----------------------------------------------
*/

/* Tablet styles */
@media (max-width: 849px) {
    /* Example: Tablet-specific styles */
    /*
    .header-logo img {
        max-height: 50px;
    }
    */
}

/* Mobile styles */
@media (max-width: 549px) {
    /* Example: Mobile-specific styles */
    /*
    .page-title h1 {
        font-size: 1.8em;
    }
    
    .button, .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    */
}

/* 
----------------------------------------------
8. CUSTOM COMPONENTS
----------------------------------------------
*/

/* Example: Custom card component */
/*
.custom-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.custom-card:hover {
    transform: translateY(-5px);
}

.custom-card-title {
    font-size: 1.5em;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.custom-card-content {
    color: #666666;
    line-height: 1.6;
}
*/

/* Example: Custom hero section */
/*
.hero-custom {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #ffffff;
    text-align: center;
    padding: 100px 0;
}

.hero-custom h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.hero-custom p {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.9;
}
*/

/* Example: Loading animations */
/*
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}
*/

/*
==============================================
ADD YOUR CUSTOM STYLES BELOW
==============================================
*/

/* Your custom styles go here */
