.ecu-cart-wrapper {
    position: relative;
    display: inline-block;
}

.ecu-cart-icon {
    font-size: 24px;
    cursor: pointer;
    position: relative;
    padding: 10px;
}

.ecu-cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: #e2401c;
    color: #fff;
    font-size: 12px;
    border-radius: 50%;
    padding: 2px 6px;
}

/* Dropdown Hidden by Default */
.ecu-cart-dropdown {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 100%;
    width: 320px;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 9999;
    transition: all 0.3s ease;
    padding: 15px;
}

/* Show Dropdown on Hover */
.ecu-cart-wrapper:hover .ecu-cart-dropdown {
    visibility: visible;
    opacity: 1;
}

/* Cart Items Styling */
.ecu-cart-list, .ecu-upsell-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ecu-cart-list li, .ecu-upsell-list li {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}

.ecu-cart-list li:last-child {
    border-bottom: none;
}

.ecu-item-image img, .ecu-upsell-list img {
    max-width: 50px;
    height: auto;
    margin-right: 10px;
}

.ecu-item-details, .ecu-upsell-details {
    display: flex;
    flex-direction: column;
}

.ecu-cart-total {
    margin-top: 15px;
    padding-top: 10px;
    border-top: 2px solid #eee;
    font-size: 16px;
}

.ecu-checkout-btn {
    display: block;
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
    margin-top: 10px;
    text-decoration: none;
}

/* Upsell Section Styling */
.ecu-upsell-section {
    margin-top: 20px;
    background: #f9f9f9;
    padding: 10px;
    border-radius: 5px;
}
.ecu-upsell-section h4 {
    margin-top: 0;
    font-size: 14px;
}
.ecu-upsell-list a {
    display: flex;
    text-decoration: none;
    color: inherit;
}