* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Poppins', sans-serif;
    background: #f4f4f4;
    color: #333;
}

/* Navbar */
.navbar {
    background: #222;
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    font-size: 22px;
    font-weight: 600;
}
.logo span {
    color: #ff6600;
}
#search {
    padding: 8px 12px;
    border: none;
    border-radius: 20px;
    width: 200px;
}
.cart-icon {
    cursor: pointer;
    font-size: 18px;
}
.cart-icon span {
    background: #ff6600;
    color: white;
    padding: 2px 8px;
    border-radius: 50%;
    font-size: 14px;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding: 20px;
}
.product-card {
    background: white;
    padding: 15px;
    text-align: center;
    border-radius: 10px;
    transition: transform 0.2s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.product-card:hover {
    transform: translateY(-5px);
}
.product-card img {
    max-width: 100%;
    border-radius: 10px;
}
.product-card h3 {
    margin: 10px 0;
}
button {
    background: #ff6600;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
}
button:hover {
    background: #ff4500;
}

/* Cart Modal */
.cart-modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
}
.cart-content {
    background: white;
    padding: 20px;
    width: 350px;
    border-radius: 10px;
    position: relative;
}
.cart-content h2 {
    margin-bottom: 15px;
}
.close {
    position: absolute;
    top: 10px; right: 15px;
    font-size: 24px;
    cursor: pointer;
}
.total {
    margin-top: 15px;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 600px) {
    #search {
        width: 120px;
    }
}
