* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }

.navbar {
    display: flex;
    justify-content: space-between;
    padding: 20px 5%;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.logo span { font-weight: bold; color: #ff4757; }
.nav-links { display: flex; list-style: none; gap: 20px; }
.nav-links a { text-decoration: none; color: #333; }

.hero { text-align: center; padding: 60px 20px; background: #f9f9f9; }

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 50px 5%;
}

.product-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.product-image { height: 200px; background: #ddd; } /* Placeholder */

.product-info { padding: 15px; text-align: center; }

.add-to-cart {
    background: #333;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-top: 10px;
    cursor: pointer;
    width: 100%;
}