* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
}

/* HEADER */
header {
    background-color: #fff;
    border-bottom: 1px solid #ddd;
}

.top-bar {
    background-color: #004d40;
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 14px;
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.logo img {
    /* background-color: black; */
    width: 60px; /* Adjust the size of the logo image */
    height: 60px; /* Adjust the size of the logo image */
    margin-right: 10px; /* Space between the image and text */
    border-top-left-radius: 40%;
  }

.search-bar {
    display: flex;
    flex: 1;
    max-width: 400px;
    gap: 10px;
}

.search-bar input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.search-bar button {
    padding: 8px 12px;
    background-color: #004d40;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.account-cart button {
    margin-left: 10px;
    padding: 8px 12px;
    background-color: #004d40;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: center;
    background-color: #f1f1f1;
    padding: 10px;
    list-style: none;
}

.navbar li {
    margin: 0 15px;
}

.navbar a {
    text-decoration: none;
    color: #333;
}

/* CART STYLING */
.cart-container {
    width: 80%;
    margin: 30px auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.cart-container h2 {
    text-align: center;
    margin-bottom: 20px;
}

#cart-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
}

.cart-item .details {
    flex-grow: 1;
    padding: 0 15px;
}

.cart-item input {
    width: 50px;
    padding: 5px;
    border: 1px solid #ddd;
    text-align: center;
}

.cart-item button {
    background: #ff4d4d;
    color: white;
    padding: 8px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.cart-summary {
    text-align: right;
    margin-top: 20px;
}

.cart-summary button {
    background: #004d40;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* FOOTER */
footer {
    background-color: #004d40;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 20px;
}