.sticky-contact-menu {
    position: fixed;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9000;
}

.sticky-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background-color: #f2b069;
    color: #ffffff;
    font-size: 20px;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.sticky-contact-btn:hover,
.sticky-contact-btn:focus {
    background-color: #e89a45;
    color: #ffffff;
    transform: translateX(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.22);
    text-decoration: none;
    outline: none;
}

.sticky-contact-btn:active {
    transform: translateX(0);
}

.sticky-contact-btn i {
    pointer-events: none;
    display: block;
    margin: 0;
    padding: 0;
    line-height: 1;
    text-align: center;
    width: 1em;
    height: 1em;
}

.sticky-contact-btn i::before {
    display: block;
    line-height: 1;
    text-align: center;
}

@media (max-width: 767px) {
    .sticky-contact-menu {
        right: 8px;
        gap: 8px;
    }

    .sticky-contact-btn {
        width: 42px;
        height: 42px;
        font-size: 18px;
        border-radius: 7px;
    }
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: none;
    border-radius: 8px;
    background-color: #f2b069;
    color: #ffffff;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    z-index: 9000;
}

.back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus {
    background-color: #e89a45;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.22);
    outline: none;
}

.back-to-top i {
    pointer-events: none;
    display: block;
    margin: 0;
    padding: 0;
    line-height: 1;
    text-align: center;
    width: 1em;
    height: 1em;
}

@media (max-width: 767px) {
    .back-to-top {
        right: 8px;
        bottom: 16px;
        width: 42px;
        height: 42px;
        font-size: 18px;
        border-radius: 7px;
    }
}
