/* Component specific additions */

.qty-btn {
    width: 28px;
    height: 28px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1;
    background: #f8f9fa;
}

.qty-btn:hover {
    background: var(--primary);
    color: black;
    border-color: var(--primary);
}

/* Floating Actions */
.floating-actions {
    position: fixed;
    right: 25px;
    bottom: 90px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.fab {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.fab:hover {
    transform: scale(1.1);
}

.fab-whatsapp {
    background: #25d366;
}

.fab-chat {
    background: var(--primary);
    color: #000;
}

@media (max-width: 768px) {
    .floating-actions {
        bottom: 80px;
        right: 15px;
    }
}
