

.menu {
    background-color: #fff;
    color: #fff;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.menu li {
    margin-right: 20px;
}

.menu li a {
    color: black;
    text-decoration: none;
}

.logo {
    margin-left: 20px;
}

.logo img {
    height: 100px;
    width: 100px;
}

.btn {
    padding: 10px 20px;
    background-color: #f2f2f2;
    color: #333;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    margin-right: 20px;
}

.cart-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background-color: #f2f2f2;
    color: #333;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    width: 40px;
    height: 40px;
}

.cart-button i {
    margin-right: 5px;
}

.sort-options {
    text-align: right;
    margin-bottom: 10px;
    margin-right: 20px;
}

.sort-options {
    text-align: right;
    margin-bottom: 10px;
}

.sort-options label {
    margin-right: 5px;
}

.sort-options select {
    padding: 5px;
}

.product-list {
    margin-left: 20px;
    margin-right: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.product {
    width: 30%;
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
}

.product img {
    max-width: 100%;
    height: auto;
    cursor: pointer;
}

.product-name {
    font-weight: bold;
    margin-top: 10px;
    cursor: pointer;
}

.product-price {
    margin-top: 5px;
}

.product-buy {
    background-color: #738a0b;
    color: #fff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}

.dialog-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.dialog-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    width: 400px;
    text-align: center;
}

.dialog-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
}

.dialog-product-name {
    margin-bottom: 10px;
}

.dialog-product-price {
    margin-bottom: 20px;
    font-weight: bold;
}

.dialog-product-description {
    margin-bottom: 20px;
}

.footer {
    background-color: #e9f1c6;
    padding: 20px;
    text-align: center;
}

.social-media {
    margin-top: 10px;
}

.social-media a {
    display: inline-block;
    background-color: #738a0b;
    color: #fff;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 4px;
}
#cart-item-count {
    position: absolute;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: white;
    font-size: 12px;
  }