.menu-cart {
    display: flex;
    align-items: center;
    position: relative;
    font-size: 16px;
    justify-content: flex-end;
}

.menu-cart .cart-icon {
    width: 20px;
    height: 20px;
    margin-right: 2px;
    cursor: pointer;
}

.menu-cart .cart-counter {
    background-color: #000;
    color: #ffffff;
    font-size: 10px;
    padding: 0;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    text-align: center;
    display: inline-block !important;
}

.menu-cart-dropdown {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #e0e0e0;
    padding: 20px;
    display: none;
    z-index: 9999;
}
.logged-in .menu-cart-dropdown{
    top: 88px;
}

.menu-cart-dropdown.open {
    display: block;
}
.menu-cart-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.menu-cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.menu-cart-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
}

.menu-cart-content {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    flex-direction: column;
}

.cart-items {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.cart-items li {
    font-size: 16px;
}

.menu-cart-footer {
    margin-top: 20px;
    text-align: right;
}

.view-cart-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0078ff;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
}
.cart-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.cart-item-thumbnail img {
    width: 80px;
    height: auto;
    object-fit: contain;
    margin-left: 10px;
    border-radius: 4px;
}

.cart-item-name {
    font-size: 12px;
    color: #000;
    flex: 1;
}
.cart-items .hidden {
    display: none;
}

.show-more-cart-items {
    margin-top: 10px;
    font-size: 14px;
    text-align: right;
}

.show-more-link {
    color: #76767B!important;
    font-size: 12px;
    text-decoration: underline;
    cursor: pointer;
}
a.view-cart-btn {
    background: #0071E3;
    color: #FFF!important;
    font-size: 15px;
    font-weight: normal;
    border: 1px solid #0071E3;
    border-radius: 50px;
}
a.view-cart-btn:hover {
    background: #FFF;
    color: #0071E3!important;
}
p.menu_cart_sec_title, .menu-cart-footer ul li, .menu-cart-footer ul li a {
    color: #76767B !important;
    font-size: 12px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    column-gap: 8px;
}
.menu-cart-footer ul{
    list-style: none;
    padding-right: 0;
}
ul.cart-items li {
    display: flex;
    flex-direction: row;
    align-items: center;
}
span.cart-item-quantity {
    font-size: 12px;
    margin-right: 5px;
}