* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f2f6f9;
}

/* HEADER */
.header {
    background: #8fdbe0;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: bold;
    color: #000;
}

.logo span {
    color: #1976d2;
}

nav {
    display: flex;
    align-items: center;
}

nav a {
    margin-left: 25px;
    text-decoration: none;
    color: #000;
    font-weight: 500;
}

.cart {
    margin-left: 25px;
    position: relative;
    cursor: pointer;
}

.cart span {
    position: absolute;
    top: -8px;
    right: -10px;
    background: red;
    color: white;
    font-size: 12px;
    border-radius: 50%;
    padding: 2px 6px;
}

/* MAIN */
main {
    padding: 40px;
}

main h2 {
    margin-bottom: 25px;
}

/* PRODUCT GRID */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.product-card {
    background: white;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

.product-card img {
    width: 100%;
    height: 260px;
    object-fit: contain;
    border-radius: 10px;
}

.product-card h3 {
    margin: 12px 0 5px;
}

.product-card p {
    font-size: 14px;
    color: #555;
}

.price {
    color: red;
    font-weight: bold;
    font-size: 16px;
    margin: 10px 0;
}

.product-card button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 8px;
    background: #2563eb;
    color: white;
    font-size: 14px;
    cursor: pointer;
}

.product-card button:hover {
    background: #1e40af;
}
