body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
header {
    background-color: #ff9800;
    color: rgb(12, 12, 12);
    font-size: 24px;
    text-align: left;
    position: relative;
    background-image: url('Images/BGDC.jpg');
    background-size: cover;
    background-position: center -60px;
    height: 220px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 20px;
}
.header-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-left: 15px;
}
.hamburger {
font-size: 30px;
cursor: pointer;
margin-right: 500px; /* Increase this value to move it further left */
position: relative;
top: 45px; /* Move it down */
}
.header-left {
display: flex;
align-items: center;
padding-left: -20px; /* Add some left padding if needed */
margin-top: -25px;
}
.header-right {
    display: flex;
    align-items: flex-start;
    margin-top: 20px;
    margin-left:120px; /* Adjust the value to move further left */

}
.home-button {
    background-color: #fff;
    color: #ff9800;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-right: 5px;
    text-decoration: none;
}
.home-button:hover {
    background-color: #f8f8f8;
}
.search-bar {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 200px;
    margin-left: 0px;
    margin-right: 10px;
}
.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
    flex-grow: 1;
}
.product {
    border: 1px solid #ddd;
    border-radius: 8px;
    margin: 10px;
    padding: 15px;
    width: 250px;
    text-align: center;
}
.product img {
    width: 100%;
    border-radius: 8px;
}
.buy-button {
    background-color: #ff9800;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.buy-button:hover {
    background-color: #e68900;
}
footer {
    background-color: #333;
    color: white;
    padding: 10px;
    width: 100%;
    margin-top: auto;
}
.header-account {
display: flex;
align-items: center;
gap: 25px;
font-size: 15px;
color: black;
font-weight: bold;
}

.account {
display: flex;
flex-direction: column;
text-align: center;
cursor: pointer;
margin-top: 5px;
}

.divider {
height: 20px;
width: 1px;
background-color: black;
}

.cart {
display: flex;
align-items: center;
position: relative;
cursor: pointer;
}

.cart-text {
margin-left: 5px;
}

.cart-badge {
background-color: red;
color: white;
font-size: 12px;
font-weight: bold;
border-radius: 50%;
padding: 3px 7px;
position: absolute;
top: -8px;
right: -10px;
}