.whatsapp {
    position: fixed;
    left: 15px;
    bottom: 15px;
    transition: all .5s ease-in-out;
    z-index: 999;
}
.whatsapp a {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    font-size: 28px;
    display: block;
    text-align: center;
    line-height: 50px;
    color: #fff;
    background: var(--theme-color2);
}
.whatsapp .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: var(--theme-color1);
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    line-height: normal;
    font-size: 15px;
    top: 13px;
    left: calc(100% + 10px);
    height: auto;
}
.whatsapp:hover a {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}
.whatsapp:hover .tooltiptext {
    visibility: visible;
}
.telefon {
    position: fixed;
    left: 15px;
    bottom: 84px;
    transition: all .5s ease-in-out;
    z-index: 999;
}
.telefon a {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    font-size: 28px;
    display: block;
    text-align: center;
    line-height: 50px;
    color: #fff;
    background: var(--theme-color1);
}
.telefon .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: var(--theme-color1);
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    line-height: normal;
    font-size: 15px;
    top: 13px;
    left: calc(100% + 10px);
    height: auto;
}
.telefon:hover a {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}
.telefon:hover .tooltiptext {
    visibility: visible;
}

body.phone-choice-open {
    overflow: hidden;
}

body.mobile-menu-visible .whatsapp,
body.mobile-menu-visible .telefon,
body.mobile-menu-visible .telegram,
body.mobile-menu-visible .instagram,
body.mobile-menu-visible .diller {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.phone-choice-overlay {
    position: fixed;
    inset: 0;
    background: rgba(14, 28, 20, 0.45);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
    z-index: 1200;
    padding: 18px;
}

.phone-choice-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

.phone-choice-card {
    width: min(440px, 100%);
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.2);
    padding: 20px 18px 16px;
    position: relative;
}

.phone-choice-close {
    position: absolute;
    top: 10px;
    right: 12px;
    border: none;
    background: transparent;
    color: #476a54;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

.phone-choice-title {
    margin: 0;
    text-align: center;
    color: var(--theme-color1);
    font-size: 22px;
    font-weight: 700;
}

.phone-choice-subtitle {
    margin: 8px 0 0;
    text-align: center;
    color: #5c6f63;
    font-size: 14px;
}

.phone-choice-list {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.phone-choice-item {
    border: 1px solid rgba(26, 67, 43, 0.18);
    border-radius: 14px;
    padding: 14px 12px;
    text-decoration: none;
    background: #f8fbf9;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    text-align: center;
}

.phone-choice-item:hover {
    transform: translateY(-2px);
    border-color: rgba(26, 67, 43, 0.35);
    box-shadow: 0 10px 22px rgba(26, 67, 43, 0.16);
}

.phone-choice-avatar {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(145deg, #1b5a38, #2e7a4e);
}

.phone-choice-name {
    display: block;
    color: var(--theme-color1);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.phone-choice-number {
    display: block;
    margin-top: 4px;
    color: #5d6e64;
    font-size: 13px;
    line-height: 1.3;
}
.telegram {
    position: fixed;
    left: 15px;
    bottom: 70px;
    transition: all .5s ease-in-out;
    z-index: 999;
}
.telegram a {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    font-size: 28px;
    display: block;
    text-align: center;
    line-height: 50px;
    color: #fff;
    background: var(--theme-color3);
}
.telegram .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: var(--theme-color1);
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    line-height: normal;
    font-size: 15px;
    top: 13px;
    left: 105%;
    height: auto;
}
.telegram:hover a {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}
.telegram:hover .tooltiptext {
    visibility: visible;
}
.instagram {
    position: fixed;
    left: 15px;
    bottom: 15px;
    transition: all .5s ease-in-out;
    z-index: 999;
}
.instagram a {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    font-size: 28px;
    display: block;
    text-align: center;
    line-height: 50px;
    color: #fff;
    background: var(--theme-color2-light);
}
.instagram .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: var(--theme-color1);
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    line-height: normal;
    font-size: 15px;
    top: 13px;
    left: 105%;
    height: auto;
}
.instagram:hover a {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}
.instagram:hover .tooltiptext {
    visibility: visible;
}
.diller {
    position: fixed;
    left: 15px;
    bottom: 235px;
    transition: all .5s ease-in-out;
    z-index: 999;
}
.diller a {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    font-size: 28px;
    display: block;
    text-align: center;
    line-height: 50px;
    color: #fff;
    background: var(--theme-color1);
}
.diller .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: var(--theme-color1);
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    line-height: normal;
    font-size: 15px;
    top: 13px;
    left: 105%;
    height: auto;
}
.diller:hover a {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}
.diller:hover .tooltiptext {
    visibility: visible;
}
.lang {
    float: left;
    width: 100%;
}
.lang img {
    display: inline-block;
    height: 16px;
    margin-right: 8px;
    margin-top: 0px;
    margin-bottom: -3px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}
.lang .currencyitems a {
    width: 24%;
}
.activelang {
    opacity: 0.45;
    filter: alpha(opacity=45);
}
.lang h4 {
    float: left;
    width: 100%;
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-size: 24px;
}
.lang a {
    display: inline-block;
    vertical-align: top;
    /* width: 32%; */
    margin: 5px;
    font-size: 16px;
    color: var(--theme-color1);
    padding: 10px;
    border: 1px solid rgba(26, 67, 43, 0.3);
    border-radius: 50px;
}
.lang a:hover {
    border: 1px solid var(--theme-color1);
    color: var(--theme-color2);
}
.rounded-25 {
    border-radius: 25%;
}
@media only screen and (max-width: 767px) {
    .whatsapp,
    .instagram {
        left: max(12px, env(safe-area-inset-left));
        bottom: max(12px, env(safe-area-inset-bottom));
    }
    .telefon,
    .telegram {
        left: max(12px, env(safe-area-inset-left));
        bottom: calc(max(12px, env(safe-area-inset-bottom)) + 66px);
    }
    .diller {
        left: max(12px, env(safe-area-inset-left));
        bottom: calc(max(12px, env(safe-area-inset-bottom)) + 120px);
    }
    .whatsapp a,
    .telefon a,
    .telegram a,
    .instagram a,
    .diller a {
        width: 46px;
        height: 46px;
        line-height: 46px;
        font-size: 24px;
    }
    .whatsapp .tooltiptext,
    .telefon .tooltiptext,
    .telegram .tooltiptext,
    .instagram .tooltiptext,
    .diller .tooltiptext {
        display: none;
    }
}
@media only screen and (max-width: 424px) {
    .whatsapp,
    .instagram {
        left: max(10px, env(safe-area-inset-left));
        bottom: max(10px, env(safe-area-inset-bottom));
    }
    .telefon,
    .telegram {
        left: max(10px, env(safe-area-inset-left));
        bottom: calc(max(10px, env(safe-area-inset-bottom)) + 58px);
    }
    .diller {
        left: max(10px, env(safe-area-inset-left));
        bottom: calc(max(10px, env(safe-area-inset-bottom)) + 108px);
    }
    .whatsapp a,
    .telefon a,
    .telegram a,
    .instagram a,
    .diller a {
        width: 42px;
        height: 42px;
        line-height: 42px;
        font-size: 21px;
    }

    .phone-choice-list {
        grid-template-columns: 1fr;
    }
}
