/*
Theme Name: WP Shop Woocommerce Child
Theme URI: https://test-shop.ddev.site
Description: Child theme for WP Shop Woocommerce. Add your custom styles and functionality here.
Author: Your Name
Author URI: https://test-shop.ddev.site
Template: wp-shop-woocommerce
Version: 1.0.0
Requires at least: 5.5
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wp-shop-woocommerce-child
Tags: woocommerce, e-commerce, child-theme
*/

/* ==========================================================================
   TABLE OF CONTENTS
   ==========================================================================
   1. Variables / Custom Properties
   2. Base / Reset Overrides
   3. Typography
   4. Layout & Grid
   5. Header
   6. Navigation
   7. Footer
   8. Components
   9. WooCommerce Overrides
   10. Utilities
   11. Media Queries
   ========================================================================== */

/* ==========================================================================
   1. Variables / Custom Properties
   ========================================================================== */
:root {
    /* Colors - Customize these to match your brand */
    --color-primary: #2563eb;
    --color-primary-dark: #1d4ed8;
    --color-primary-light: #3b82f6;
    --color-secondary: #10b981;
    --color-accent: #f59e0b;
    
    /* Neutrals */
    --color-black: #0f172a;
    --color-gray-900: #1e293b;
    --color-gray-800: #334155;
    --color-gray-700: #475569;
    --color-gray-600: #64748b;
    --color-gray-500: #94a3b8;
    --color-gray-400: #cbd5e1;
    --color-gray-300: #e2e8f0;
    --color-gray-200: #f1f5f9;
    --color-gray-100: #f8fafc;
    --color-white: #ffffff;
    
    /* Semantic Colors */
    --color-success: #22c55e;
    --color-warning: #f59e0b;
    --color-error: #ef4444;
    --color-info: #3b82f6;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-secondary: 'Playfair Display', Georgia, serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    
    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
    
    /* Container */
    --container-max: 1280px;
    --container-padding: var(--space-4);
}

/* ==========================================================================
   2. Base / Reset Overrides
   ========================================================================== */
/* Add your base style overrides here */

/* ==========================================================================
   3. Typography
   ========================================================================== */
/* Add your typography customizations here */

/* ==========================================================================
   4. Layout & Grid
   ========================================================================== */
/* Add your layout customizations here */

/* ==========================================================================
   5. Header
   ========================================================================== */
/* Add your header customizations here */

/* ==========================================================================
   6. Navigation
   ========================================================================== */
/* Add your navigation customizations here */

/* ==========================================================================
   7. Footer
   ========================================================================== */
/* Add your footer customizations here */

/* ==========================================================================
   8. Components
   ========================================================================== */
/* Add your component styles here */

/* ==========================================================================
   9. WooCommerce Overrides
   ========================================================================== */
/* Add your WooCommerce style overrides here */

/* ==========================================================================
   10. Utilities
   ========================================================================== */
/* Add your utility classes here */

/* ==========================================================================
   11. Media Queries
   ========================================================================== */
@media (max-width: 1024px) {
    /* Tablet styles */
}

@media (max-width: 768px) {
    /* Mobile styles */
}

@media (max-width: 480px) {
    /* Small mobile styles */
}

