.slide-menu {
    display: none;
    width: 100%;
    flex-wrap: wrap;
    position: absolute; /* Changed from `position: \` to `position: absolute;` */
    top: 100%; /* Added to position the drop-down menu below the selected item */
    left: 0;
    right: 0;
    min-height: 125px;
}

#growls-default {
    margin-top: 50px;
}

.side-menu__label:hover {
    color: blue; /* Change to the desired hover color */
}

.slide-item:hover {
    color: #00ad71;
    ; /* Change to the desired hover color */
}

.sidemenu-list {
    display: flex;
    flex-wrap: wrap;
    width: calc(100vw - 140px);
    margin-right: 50px;
}

.sub-slide-menu {
    display: none;
    position: absolute; /* Make sure this is correct as per your design */
    left: 0;
    right: 0;
}

.cart-dropdown {
    max-height: 700px; /* Set the maximum height for the dropdown */
    overflow-y: auto; /* Enable vertical scrolling */
}

.cart-list-container {
    overflow-y: auto; /* Enable vertical scrolling for the cart items */
    max-height: 630px; /* Set the maximum height for the cart items */
}
.btn-Style {
    border-radius: 20px;
    min-width: 95px;
    font-size: 15px;
    font-family: 'Cairo';
    background-color: black;
}

    .btn-Style:hover {
        transform: scale(1.05);
        transition: transform 0.3s ease-in-out;
    }

.custom-card2:hover {
    transform: scale(1.05);

    transition: transform 0.3s ease-in-out;
}

.custom-card {
    transition: transform 0.3s ease-in-out;
}

.Descrp {
    min-height: 169px;
    max-height: 169px;
}

.more {
    color: blue;
    text-decoration-line: underline;
}