.floating-contact {
    display: none;
}

@media (max-width: 900px) {
    .floating-contact {
        position: fixed;
        right: calc(16px + env(safe-area-inset-right, 0px));
        bottom: calc(20px + env(safe-area-inset-bottom, 0px));
        z-index: 15;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .floating-contact-button {
        width: 64px;
        height: 64px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        border-radius: 50%;
        box-shadow: 0 5px 18px rgb(30 57 50 / 20%);
        -webkit-tap-highlight-color: transparent;
    }

    .floating-contact-button svg {
        width: 27px;
        height: 27px;
    }

    .floating-contact-button span {
        font-size: 10px;
        font-weight: 700;
        line-height: 1.3;
    }

    .floating-contact-kakao {
        color: #191919;
        background: #fee500;
    }

    .floating-contact-phone {
        color: #fff;
        background: var(--green);
    }

    .floating-contact-button:focus-visible {
        outline: 3px solid var(--deep);
        outline-offset: 4px;
    }

    .floating-contact-button[href]:active {
        transform: scale(.96);
    }

    .site-footer {
        padding-bottom: calc(180px + env(safe-area-inset-bottom, 0px));
    }
}
