/* 客服浮窗样式 */
.feryfit-floating-chat {
    position: fixed;
    right: 30px;
    bottom: 100px;
    z-index: 1000;
}

/* 气泡框 */
.feryfit-chat-bubble {
    display: none;
    position: absolute;
    right: 70px;
    bottom: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    min-width: 280px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.feryfit-chat-bubble.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.feryfit-chat-options {
    list-style: none;
    margin: 0;
    padding: 0;
}

.feryfit-chat-option {
    padding: 0;
    margin: 0;
}

.feryfit-chat-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #000;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.feryfit-chat-link:hover {
    background-color: #f5f5f5;
}

.feryfit-chat-icon {
    width: 20px;
    height: 20px;
    color: #666;
    flex-shrink: 0;
}

.feryfit-chat-text {
    flex: 1;
    font-family: Inter;
    font-size: 14px;
    font-weight: 500;
}

.feryfit-chat-arrow {
    color: #999;
    font-size: 14px;
}

/* 点击按钮 */
.feryfit-floating-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.feryfit-floating-btn:hover {
    transform: scale(1.05);
}

.feryfit-floating-btn:active {
    transform: scale(0.98);
}
