* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #333;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background-color: #111;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.logo span {
    color: #ffcc00;
}

.navbar nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.navbar nav ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.navbar nav ul li a:hover {
    color: #ffcc00;
}

.cart-icon {
    cursor: pointer;
    font-weight: bold;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1543443856-2def47c6b573') no-repeat center center/cover;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #ddd;
}

.btn-primary {
    background-color: #ffcc00;
    color: #111;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn-primary:hover {
    background-color: #e6b800;
}

/* Categories Section */
.categories-section, .products-section {
    padding: 60px 8%;
}

.categories-section h2, .products-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.category-grid, .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.category-card, .product-card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s;
}

.category-card:hover, .product-card:hover {
    transform: translateY(-5px);
}

.product-img {
    font-size: 3rem;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.price {
    color: #d9534f;
    font-weight: bold;
    margin-bottom: 15px;
}

.btn-cart {
    background-color: #111;
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-cart:hover {
    background-color: #ffcc00;
    color: #111;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #111;
    color: #aaa;
    font-size: 0.9rem;
}