/* public/css/cart.css */
#floating-cart {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--gold);
    color: var(--dark-green);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: none; /* Block when has items */
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    border: 2px solid #fff;
}
#floating-cart:hover {
    transform: scale(1.1);
    color: #fff;
    background: var(--dark-green);
    border-color: var(--gold);
}
#floating-cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #FF3B30;
    color: #fff;
    font-size: 0.9rem;
    font-weight: bold;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}
#cart-toast {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark-green);
    color: white;
    padding: 15px 25px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 1001;
    transition: bottom 0.4s ease;
    display: flex;
    align-items: center;
    font-family: 'Prompt', sans-serif;
    border: 1px solid var(--gold);
}
#cart-toast.show {
    bottom: 30px;
}
