.cart-container {
    position: relative;
    cursor: pointer;
    z-index: 1000;
 
}

.cart-icon {
    position: relative;
    display: inline-block;
}

.cart-icon img {
    width: 40px;
    height: auto;
}

.badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: red;
    color: white;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 50%;
    font-weight: bold;
}

.text1 {
    position: absolute;
    top: 50px;
    right: 0;
    width: 350px;
    max-height: 0;
    overflow: hidden;
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 0 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.cart-container.active .text1 {
    max-height: 600px;
    padding: 15px;
    opacity: 1;
    visibility: visible;
}

.cart-item {
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
    width:95%;
    margin: 0 auto;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 30px;
    height: auto;
    margin-right: 10px;
    border-radius: 4px;
}

.cart-item-details {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-title {
    font-size: 12px;
    margin: 0 0 5px;
    font-weight: bold;
    white-space: nowrap;
}

.cart-item-quantity,
.cart-item-price {
    font-size: 13px;
    margin: 0;
    color: #555;
    display: inline-block;
}
.cart-item-price {
    margin-right: 10px;
    
}

.remove-cart-item {
    margin-top: 8px;
    font-size: 12px;
    padding: 4px 8px;
}

.cart-summary {
    margin-top: 15px;
    text-align: right;
}

.btn-block {
    display: block;
    width: 100%;
    margin-top: 10px;
}

.empty-cart {
    text-align: center;
    color: #888;
    font-size: 14px;
    padding: 20px;
}
.cart-items{
       max-height: 350px;
    overflow-y: scroll;
}

@media (max-width: 576px) {
    .text1 {
        right: 0;
        left: auto;
        width: 100vw;
        border-radius: 0;
        top: 60px;
    }

    .cart-container {
        margin-right: 10px;
    }

    .cart-item-image {
        width: 60px;
    }

    .cart-item-title {
        font-size: 13px;
    }

    .cart-item-quantity,
    .cart-item-price {
        font-size: 12px;
    }

    .remove-cart-item {
        font-size: 11px;
    }
}
