.topcar-sticky-cta {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.topcar-sticky-cta__btn {
    min-width: 160px;
    padding: 13px 22px;
    border-radius: 999px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(0,0,0,.18);
    transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.topcar-sticky-cta__btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(0,0,0,.24);
}

.topcar-sticky-cta__btn--line {
    background: #06c755;
}

.topcar-sticky-cta__btn--tel {
    background: #000;
}

.topcar-sticky-cta__btn .flex  {
    display: flex;
    gap: 5px;
    justify-content: center;
    align-items: center;
}

.topcar-sticky-cta__btn img ,
.topcar-sticky-cta__btn svg {
    width: 25px;
    height: 25px;
}

/* Mobile */
@media (max-width: 767px) {
    .topcar-sticky-cta {
        right: 0;
        bottom: 0;
        width: 100%;
        padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
        background: #fff;
        flex-direction: row;
        gap: 10px;
        box-shadow: 0 -8px 24px rgba(0,0,0,.12);
    }

    .topcar-sticky-cta__btn {
        flex: 1;
        min-width: 0;
        border-radius: 0;
        padding: 10px 12px;
        font-size: 15px;
    }

    body {
        padding-bottom: 76px;
    }
}