.cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    /* Adjust color if needed */
}

.cart-icon i {
    font-size: 3.5rem;
}

.cart-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: red;
    /* Badge color */
    color: white;
    /* Text color */
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    /* Adjust font size */
}

.cart-dropdown {
    display: none; /* Hidden by default */
    position: absolute;
    top: 100%; /* Position below the cart icon */
    right: 0;
    margin-top: 0px;
    background-color: #fff; /* Background color */
    border: 1px solid #ddd; /* Border around dropdown */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow for dropdown */
    width: 350px; /* Width of the dropdown */
    z-index: 1000; /* Ensure dropdown is above other elements */
    border-radius: 8px; /* Rounded corners */
    overflow: hidden;
}

.cart-dropdown-header,
.cart-dropdown-footer {
    padding: 10px;
    border-bottom: 1px solid #ddd; /* Border for separation */
}

.cart-dropdown-body {
    max-height: 300px; /* Max height of the dropdown */
    overflow-y: auto; /* Scroll if content overflows */
}

.cart-container {
    position: relative;
}

/* Styles for the cart item */
.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px; /* Space between items */
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    display: block;
    max-width: 120px;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    font-weight: bold;
}

.cart-item-meta {
    display: flex;
    align-items: center;
}

.cart-item-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 10px;
}

.cart-item-price {
    font-size: 14px;
    color: #333;
}

@media (max-width: 767px) {
    .cart-icon i {
        font-size: 2.5rem;
    }

    .cart-badge {
        width: 15px;
        height: 15px;
    }

    .cart-dropdown {
        margin-top: 0px;
        width: 250px;
    }
}

@media (max-width: 425px) {
    .cart-dropdown {
        margin-top: 0px;
        width: 260px;
    }
}
