/* Floating Cart Button */
#chaaya-cart-fab {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: none; /* Hidden by default, shown via JS/PHP if items exist */
    transition: all 0.3s ease;
}

#chaaya-cart-fab.visible {
    display: flex;
    animation: chaaya-pop-in 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chaaya-fab-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0044cc; /* Primary Color */
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    text-decoration: none;
    position: relative;
    transition: transform 0.2s ease, background-color 0.2s;
}

.chaaya-fab-button:hover {
    background-color: #003399; /* Darker shade */
    transform: scale(1.05);
}

.chaaya-fab-icon {
    font-size: 24px;
    line-height: 1;
}

.chaaya-fab-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #ff0000;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 2px solid #fff;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    #chaaya-cart-fab {
        bottom: 15px;
        right: 15px;
    }
    
    .chaaya-fab-button {
        width: 50px;
        height: 50px;
    }
    
    .chaaya-fab-icon svg {
        width: 20px;
        height: 20px;
    }
}

@keyframes chaaya-pop-in {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 1; transform: scale(1); }
}
