#scrollToTop {
    display: none;
}

.floating-button {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 50px;
    height: 50px;
    padding: 0;
    font-size: 20px;
    border: none;
    border-radius: 50%;
    background-color: #36afaa;
    color: #fffaff;
    cursor: pointer;
    z-index: 9000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.35), inset 0 2px 2px rgba(255, 255, 255, 0.15), inset 0 -2px 2px rgba(0, 0, 0, 0.2);
    text-shadow: none !important;
    opacity: 1;
    transition: background-color 0.3s, opacity 0.3s, bottom 0.1s linear;
}

.floating-button:hover {
    background-color: #248e89;
    opacity: 1;
}

/* Адаптивный размер картинки внутри кнопки (40% от ширины кнопки) */
.floating-button img {
    width: 40%;
    height: auto;
    display: block;
}

.floating-button span {
    display: none;
}

@media (max-width: 1500px) {
    .floating-button {
        width: 50px;
        height: 50px;
    }
}

@media (min-width: 1600px) {
    .floating-button {
        right: auto;
        left: calc(50% + 600px + 20px);
    }
}
