.customer-float {
    position: fixed;
    top: 58%;
    right: 20px;
    z-index: 1200;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 52px;
    padding: 8px 16px 8px 8px;
    color: #ffffff;
    font: 700 14px/1.2 Inter, "Segoe UI", "Microsoft YaHei", Arial, sans-serif;
    text-decoration: none;
    background: #165dff;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(22, 93, 255, 0.3);
    transform: translateY(-50%);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.customer-float:hover,
.customer-float:focus-visible {
    color: #ffffff;
    box-shadow: 0 16px 36px rgba(22, 93, 255, 0.38);
    transform: translateY(calc(-50% - 3px));
    outline: none;
}

.customer-float__icon {
    display: grid;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    place-items: center;
    color: #165dff;
    background: #ffffff;
    border-radius: 6px;
}

.customer-float__icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.customer-float--with-menu {
    top: auto;
    bottom: 24px;
    transform: none;
}

.customer-float--with-menu:hover,
.customer-float--with-menu:focus-visible {
    transform: translateY(-3px);
}

@media (max-width: 1200px) {
    .customer-float {
        width: 52px;
        padding: 7px;
        justify-content: center;
    }

    .customer-float > span:last-child {
        display: none;
    }
}

@media (max-width: 768px) {
    .customer-float {
        top: auto;
        right: 12px;
        bottom: 14px;
        min-height: 48px;
        transform: none;
    }

    .customer-float:hover,
    .customer-float:focus-visible {
        transform: translateY(-3px);
    }

    .customer-float--with-menu {
        bottom: 88px;
    }

    .customer-float__icon {
        width: 32px;
        height: 32px;
        flex-basis: 32px;
    }
}
