/*
Theme Name: FashionForward Shop
Theme URI: https://211j.com
Description: Custom e-commerce theme for FashionForward Boutique & ArtisanCrafts Co.
Author: 211j Development
Author URI: https://211j.com
Template: storefront
Version: 1.0.0
Text Domain: fashionforward-shop
*/

/* Custom styles for e-commerce platform */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-color: #333;
    --bg-color: #f8f9fa;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Custom header styles */
.site-header {
    background-color: var(--bg-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Product grid enhancements */
.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* Custom checkout styles */
.woocommerce-checkout {
    max-width: 1200px;
    margin: 0 auto;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .products {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
}