body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #000000;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #000000;
    color: #ffffff;
}
.logo {
    font-size: 24px;
    font-weight: bold;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}
nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
}
nav ul li a:hover {
    opacity: 0.7;
}
.cart-icon {
    position: relative;
    cursor: pointer;
}
.cart-icon::after {
    content: attr(data-count);
    position: absolute;
    top: -10px;
    right: -10px;
    background: red;
    color: white;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 50%;
}
.hero {
    text-align: center;
    padding: 30px 15px;
    background-color: #000000;
    color: #ffffff;
}
.hero a {
    background: #ffffff;
    color: #000000;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid #000000;
}
.products {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
padding: 40px;
}
.product {
    border: 1px solid #000000;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    background: #ffffff;
    transition: transform 0.2s, box-shadow 0.2s;
}
.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}
.product img {
    width: 100%;
    border-radius: 5px;
}
.product button {
    margin-top: 10px;
    background: #000000;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
}
.cart-modal {
    position: fixed;
    top: 80px;
    right: 20px;
    background: #ffffff;
    color: #000000;
    border: 1px solid #000000;
    padding: 20px;
    border-radius: 10px;
    display: none;
    width: 300px;
    z-index: 1000;
}
.cart-modal.active {
    display: block;
}
.order-form input, .order-form button {
    width: 100%;
    margin-bottom: 10px;
    padding: 8px;
    border: 1px solid #000000;
    border-radius: 5px;
}
footer {
    text-align: center;
    padding: 20px;
    background: #000000;
    color: #ffffff;
}
.about {
    padding: 20px;
    background-color: #f5f5f5;
    color: #333;
    text-align: center;
}
.rating {
    color: gold;
    margin-top: 5px;
}
#cartItems {
    list-style: none;
    padding: 0;
    margin: 0;
}

#cartItems li {
    display: block;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

#cartItems img {
    display: block;
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 5px;
}

#cartItems span {
    display: block;
    text-align: left;
    font-size: 14px;
    margin-bottom: 5px;
}

#cartItems button {
    display: block;
    background: transparent;
    border: none;
    color: #ff0000;
    font-size: 14px;
    cursor: pointer;
    text-align: left;
    padding: 0;
}
