/* Mini Cart Icon in Menu */
.menu-item.mini-cart {
    position: relative;
}

.cart-icon {
    font-size: 20px;
    display: flex;
    align-items: center;
    padding: 10px;
    color: #333; /* Change to your desired color */
    text-decoration: none;
}

.cart-count {
    background-color: #f00; /* Red background for cart count */
    color: #fff; /* White text for count */
    border-radius: 50%;
    padding: 3px 8px;
    margin-left: 5px;
    font-weight: bold;
}

.mini-cart-content {
    display: none; /* Initially hidden */
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 300px; /* Adjust size */
    max-height: 400px;
    overflow-y: auto;
    padding: 15px;
    z-index: 9999;
}

/* Style for the sidebar */
.sidebar-cart {
   
    position: fixed;
    top: 0;
    right: 0;
    width: 350px;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 999;
    transition: transform 0.3s ease;
    transform: translateX(100%);
}

.sidebar-cart.open {
    transform: translateX(0); /* Slide-in effect */
}

/* Close button for sidebar */
.sidebar-cart .close-btn {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #f00;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
}
