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

.cart-popup-icon {
    cursor: pointer;
    position: relative;
}

.cart-count {
    background: #e74c3c;
    color: #fff;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
    position: absolute;
    top: -5px;
    right: -10px;
}

.cart-popup-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: 120%;
    width: 300px;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 10px;
}

.cart-popup-dropdown.active {
    display: block;
}

.cart-items {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 200px;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.75rem;
}
.cart-item span.item-thumb {
    max-width: 30px;
}
.cart-item span {
    padding: 3px;
}

.item-thumb img {
    width: 40px;
    height: auto;
    margin-right: 10px;
}

.cart-totals {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
}

.cart-actions {
    display: flex;
    justify-content: space-between;
}

.cart-btn {
    padding: 6px 12px;
    background: #2271b1;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
}

.cart-btn:hover {
    background: #135e96;
}
