/* Ecommerce Theme - Shopping Focused */
:root {
    --primary: #e74c3c;
    --primary-dark: #c0392b;
    --secondary: #f39c12;
    --accent: #27ae60;
    --dark: #2c3e50;
    --light: #ecf0f1;
    --white: #ffffff;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--light);
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Top Bar */
.top-bar { background: var(--primary); color: var(--white); padding: 10px 0; text-align: center; font-size: 0.9rem; }

/* Header */
.header { background: var(--white); padding: 20px 0; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.header .container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 2rem; font-weight: 700; color: var(--primary); }

.nav ul { display: flex; list-style: none; gap: 30px; }
.nav a { color: var(--dark); text-decoration: none; font-weight: 600; transition: color 0.3s; }
.nav a:hover { color: var(--primary); }

/* Hero */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('shop-bg.jpg');
    background-size: cover;
    color: var(--white);
    padding: 150px 0;
    text-align: center;
}
.hero h1 { font-size: 3.5rem; font-weight: 700; margin-bottom: 20px; }
.hero p { font-size: 1.3rem; margin-bottom: 30px; }
.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 18px 50px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: background 0.3s;
}
.btn-primary:hover { background: var(--primary-dark); }

/* Products */
.products-section { padding: 80px 0; }
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
.product-card:hover { transform: translateY(-10px); }
.product-image { aspect-ratio: 1; background: var(--light); }
.product-info { padding: 25px; }
.product-info h3 { font-size: 1.2rem; margin-bottom: 10px; }
.price { color: var(--primary); font-size: 1.5rem; font-weight: 700; }

/* Features */
.features-bar {
    background: var(--white);
    padding: 40px 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}
.features-bar .container { display: flex; justify-content: space-around; text-align: center; }
.feature-item .icon { font-size: 2.5rem; margin-bottom: 10px; }

/* Footer */
.footer { background: var(--dark); color: var(--white); padding: 60px 0; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; }
.footer h4 { margin-bottom: 20px; }
.footer a { color: rgba(255,255,255,0.7); text-decoration: none; }
