.angie-custom-floating-cart-f846a55d {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #319b67; /* Green color matching the site button */
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 999999 !important;
    transition: transform 0.3s ease, background-color 0.3s ease;
    text-decoration: none;
}
.angie-custom-floating-cart-f846a55d:hover {
    transform: scale(1.1);
    background-color: #24754d;
    color: #ffffff;
}
.angie-custom-floating-cart-f846a55d svg {
    width: 28px;
    height: 28px;
}
.angie-cart-count-f846a55d {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #e74c3c;
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}