#cart-icon {
    position: relative;
    margin-left: 20px;
    text-decoration: none;
    color: white;
    font-size: 1.2em;
    transition: transform 0.3s ease, color 0.3s ease;
}

#cart-icon:hover {
    transform: scale(1.1);
    color: #f3f3f3;
}

#cart-count {
    background: red;
    color: white;
    border-radius: 50%;
    padding: 2px 5px;
    font-size: 12px;
    position: absolute;
    top: -5px;
    right: -10px;
    animation: throbbing 1s infinite alternate;
}

@keyframes throbbing {
    from {
        transform: scale(1);
        opacity: 0.9;
    }
    to {
        transform: scale(1.3);
        opacity: 1;
    }
}

#cart-dropdown {
    position: absolute;
    top: 50px;
    right: 10px;
    background: #f9f9f9;
    border: 1px solid #bbb;
    font-size: 9pt;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    width: 360px;
    border-radius: 8px;
    z-index: 1000;
    padding: 10px;

    & ul {
        list-style: none;
        padding: 10px;
        margin: 0;
        max-height: 150px;
        overflow-y: auto;
    }
}

.cart-dropdown {
    display: block;
}

.cart-total {
    padding: 10px;
    border-top: 1px solid #bbb;
    text-align: right;
    font-weight: bold;
    background: #f3f3f3;
}

.line-item-total {
    text-align: right;
    border-bottom: 1px solid lightblue;
    padding-bottom: 5px;
}

.hidden {
    display: none;
}