﻿/* Container */
.floating-chat {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

/* Button base */
.floating-chat a.chat-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,.15);
}

    /* Hover */
    .floating-chat a.chat-btn:hover {
        box-shadow: 0 10px 26px rgba(0,0,0,.18);
    }

/* Small label pill */
.floating-chat .label {
    background: rgba(0,0,0,0.72);
    color: #fff;
    padding: 6px 10px;
    border-radius: 18px;
    font-size: 13px;
    margin-right: 8px;
    white-space: nowrap;
    display: none; /* shown on wider screens via media query below */
    align-items: center;
}

/* Compose one horizontal block with label on wide screens */
.floating-row {
    display: flex;
    align-items: center;
    transition: transform .12s ease, box-shadow .12s ease;
}

    .floating-row:hover {
        transform: translateY(-4px);
    }

/* show label on wide screens */
@media(min-width:700px) {
    .floating-chat .label {
        display: inline-flex;
    }
}

/* small screens reduce sizes */
@media(max-width:420px) {
    .floating-chat {
        right: 12px;
        bottom: 12px;
        gap: 8px;
    }

        .floating-chat a.chat-btn {
            width: 48px;
            height: 48px;
        }

        .floating-chat .label {
            font-size: 12px;
            padding: 5px 8px;
        }
}

.enemad {
    position: fixed;
    left: 0;
    bottom: 10px;
    z-index: 9999;
	transition: bottom 0.3s ease;
}

.footer-distance {
	margin-top: 150px;
}