.angie-floating-cart-c98bcda6 {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #8B4513; /* SaddleBrown */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 999999;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.angie-floating-cart-c98bcda6:hover {
    transform: scale(1.05);
    color: #ffffff;
    background-color: #A0522D; /* Sienna for hover */
}

.angie-floating-cart-count-c98bcda6 {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #e60023; /* Distinct color for notification */
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}