.angie-mini-cart-wrapper-7c08c000 {
    position: relative;
    display: inline-block;
    font-family: inherit;
}
.angie-cart-toggle-7c08c000 {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 8px;
}
.angie-cart-icon-7c08c000 {
    position: relative;
    display: flex;
    align-items: center;
}
.angie-cart-count-7c08c000 {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e2401c;
    color: #fff;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 11px;
    line-height: 18px;
    text-align: center;
    font-weight: bold;
}
.angie-cart-total-7c08c000 {
    font-weight: 600;
    font-size: 14px;
}
.angie-cart-dropdown-7c08c000 {
    position: absolute;
    top: 100%;
    right: 0;
    width: 320px;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 20px;
}
.angie-mini-cart-wrapper-7c08c000:hover .angie-cart-dropdown-7c08c000 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.angie-cart-dropdown-7c08c000 .widget_shopping_cart_content ul.cart_list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.angie-cart-dropdown-7c08c000 .widget_shopping_cart_content .buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

/* Site-matching button styling */
.angie-cart-dropdown-7c08c000 .widget_shopping_cart_content .buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background-color: #298A81; /* Matches site primary color */
    color: #fff;
    border: none;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 4px;
    text-decoration: none;
    width: 100%;
    text-align: center;
    transition: background-color 0.2s;
}

.angie-cart-dropdown-7c08c000 .widget_shopping_cart_content .buttons a:hover {
    background-color: #1e665f;
}

/* Updated bin icon */
.angie-cart-dropdown-7c08c000 ul.cart_list li.mini_cart_item {
    position: relative;
    padding-right: 35px; /* Make room for the bin icon */
}

.angie-cart-dropdown-7c08c000 ul.cart_list li.mini_cart_item a.remove {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    background: transparent;
    font-size: 0 !important; /* Hide default "X" text */
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
}

/* Using a solid trash bin icon */
.angie-cart-dropdown-7c08c000 ul.cart_list li.mini_cart_item a.remove:before {
    content: "\f2ed"; /* FontAwesome trash-alt icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 18px; /* Slightly larger as requested */
    display: block;
}

.angie-cart-dropdown-7c08c000 ul.cart_list li.mini_cart_item a.remove:hover {
    color: #298A81; /* Changed hover to green */
    background: transparent;
}
