* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #eef2f7;
}

/* HEADER */
.header {
    background: #8ad8e2;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    border: 2px solid #009df8;
    padding: 8px 14px;
    border-radius: 10px;
}

.logo span {
    color: #0576e0;
}

.nav {
    display: flex;
    align-items: center;
}

.nav a {
    margin-left: 25px;
    text-decoration: none;
    color: #333;
}

/* CART */
.cart {
    position: relative;
    margin-left: 25px;
    cursor: pointer;
}

#cart-count {
    position: absolute;
    top: -6px;
    right: -10px;
    background: #e11d48;
    color: #fff;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 50%;
}

/* CART DROPDOWN */
.cart-dropdown {
    position: absolute;
    right: 0;
    top: 35px;
    width: 260px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    padding: 15px;
    display: none;
    z-index: 100;
}

.cart-dropdown h4 {
    margin-bottom: 10px;
}

.cart-dropdown ul {
    list-style: none;
    max-height: 200px;
    overflow-y: auto;
}

.cart-dropdown li {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 8px;
}

.cart-dropdown button {
    border: none;
    background: none;
    color: red;
    cursor: pointer;
}

.empty-cart {
    font-size: 14px;
    color: #777;
}

/* PRODUCTS */
.container {
    max-width: 1100px;
    margin: 40px auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(220px,1fr));
    gap: 20px;
}

.product-card {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
}

.product-card img {
    width: 100%;
    border-radius: 10px;
}

.price {
    color: #e11d48;
    font-weight: 700;
    margin: 8px 0;
    display: block;
}

.add-to-cart {
    width: 100%;
    padding: 8px;
    border: none;
    background: #2563eb;
    color: white;
    border-radius: 8px;
    cursor: pointer;
}
