/* 플로팅 메뉴 스타일 */
.baro-floating-container {
    position: fixed;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    left: 24px;
    bottom: 24px;
    right: auto;
    top: auto;
    box-shadow: none;
    border-radius: 0;
    background: none;
    gap: 16px;
    align-items: flex-start;
}

.baro-floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 56px;
    min-height: 56px;
    padding: 0 28px;
    border: none;
    font-size: 18px;
    font-weight: 700;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.13);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(.4,0,.2,1);
    margin: 0;
    outline: none;
    letter-spacing: -0.5px;
}

.baro-floating-btn svg {
    margin-right: 10px;
    font-size: 22px;
}

.baro-quote-btn {
    background: linear-gradient(90deg, #ff9800 0%, #ffb347 100%);
    color: #fff;
    border: none;
    box-shadow: 0 2px 12px rgba(255,152,0,0.18);
}

.baro-call-btn {
    background: linear-gradient(90deg, #39ff14 0%, #baffc9 100%);
    color: #222;
    border: none;
    box-shadow: 0 2px 12px rgba(57,255,20,0.18);
}

.baro-floating-btn:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    opacity: 0.95;
}

/* 모바일 & 태블릿 버전 */
@media screen and (max-width: 1023px) {
    .baro-floating-container {
        position: fixed;
        z-index: 9999;
        display: flex;
        flex-direction: column;
        left: 20px;
        bottom: 24px;
        right: auto;
        top: auto;
        box-shadow: none;
        border-radius: 0;
        background: none;
        gap: 16px;
        align-items: flex-start;
    }
    .baro-floating-btn {
        min-width: 48px;
        min-height: 48px;
        font-size: 16px;
        padding: 0 18px;
        border-radius: 12px;
    }
}