/*
Theme Name: fullzciti Custom Child Theme
Theme URI: https://fullzciti.shop
Description: Custom child theme for fullzciti marketplace with modern sidebar and header
Author: Custom Development Team
Author URI: https://fullzciti.shop
Template: storefront
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fullzciti-child
*/

/* 
 * This child theme is built for Storefront (WooCommerce's official theme)
 * If you're using a different parent theme, change the Template field above
 */

/* Import parent theme styles */
@import url('../storefront/style.css');

/* ============================================
   CUSTOM THEME STYLES
   ============================================ */

:root {
    --primary-color: #667eea;
    --secondary-color: #f6ad55;
    --gold-color: #fbbf24;
    --dark-bg: #1a202c;
    --darker-bg: #171923;
    --text-light: #ffffff;
    --text-dark: #2d3748;
    --sidebar-width: 280px;
    --sidebar-collapsed-width: 80px;
    --header-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    padding-top: var(--header-height);
    transition: all 0.3s ease;
}

/* Remove default theme header if exists */
.site-header {
    display: none !important;
}

/* Main content area adjustment for sidebar */
.site-content {
    transition: margin-left 0.3s ease;
    min-height: calc(100vh - var(--header-height));
    padding: 4px;
}

/* Hide original theme elements that might conflict */
.storefront-primary-navigation,
.site-branding,
.storefront-handheld-footer-bar {
    display: none !important;
}