.manager-popup {
    width: 368px;
    padding: 60px 14px 16px;
    position: fixed;
    bottom: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.16);
    border: 1px solid #D7DBE0;
    left: 20px;

    display: none;
    flex-direction: column;
    align-items: center;

    z-index: 9999;
    font-family: Calibri, Arial, sans-serif;
}

.manager-close-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #FAFAFA;
    text-align: center;
    line-height: 24px;
    cursor: pointer;
    color: #474389;
    font-weight: bold;
}

.manager-avatar {
    width: 80px;
    height: 80px;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    overflow: hidden;
    background: #FFF1F3;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.manager-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.manager-avatar-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 14px rgba(207, 114, 124, 0.4) inset;
    border-radius: 50%;
}

.manager-avatar-border-pink {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid #FBD6DA;
    border-radius: 50%;
}

.manager-avatar-border-white {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid #fff;
    border-radius: 50%;
}

.manager-content {
    width: 100%;
    text-align: center;
}

.manager-name {
    color: #474389;
    font-size: 22px;
    line-height: 24px;
}

.manager-subtitle {
    color: #737373;
    font-size: 15px;
    margin-top: 4px;
}

.manager-info-card {
    margin-top: 12px;
    width: 100%;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #F2F2F2;
    box-shadow: 0 8px 32px -8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.manager-contact-row {
    padding: 12px;
    border-bottom: 1px solid #F2F2F2;
}

.manager-contact-row:last-child {
    border-bottom: none;
}

.manager-label {
    color: #737373;
    font-size: 14px;
    margin-bottom: 4px;
}

.manager-value {
    color: #222;
    font-size: 16px;
    text-decoration: none;
}

.manager-messenger-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 8px;
}

.socials__item {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #F7F7F7;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: all 0.2s ease;
}

.socials__item:hover {
    background: #FFEDEE;
    transform: translateY(-2px);
}

.socials__icon {
    width: 20px;
    height: 20px;
    fill: #474389;
}

.manager-worktime {
    margin-top: 10px;
    font-size: 14px;
    color: #333;
}

.manager-confirm-btn {
    margin-top: 12px;
    padding: 10px 20px;
    background: #FFF2F3;
    border-radius: 200px;
    border: none;
    color: #CF3242;
    cursor: pointer;
    font-size: 15px;
}

.manager-copy-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.copy-btn {
    width: 20px;
    height: 20px;
    cursor: pointer;
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
}

.copy-icon,
.check-icon {
    width: 18px;
    height: 18px;
    fill: #B0B0B0;
    transition: all 0.2s ease;
    position: absolute;
}

.copy-btn:hover .copy-icon {
    fill: #CF3242;
}

.check-icon {
    opacity: 0;
    transform: scale(0.5);
}

.copy-btn.copied .copy-icon {
    opacity: 0;
}

.copy-btn.copied .check-icon {
    opacity: 1;
    transform: scale(1);
    fill: #CF3242;
}

.manager-popup {
    animation: managerFadeIn 0.25s ease;
}

.menu__inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.menu__list {
    flex: 1 1 auto;
}

.menu__bottom-action {
    position: sticky;
    bottom: 0;
    margin-top: auto;
    z-index: 90;
    background-color: #1a1a1a;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.menu__bottom-action .menu__link {
    width: 100%;
    border: none;
    background-image: linear-gradient(112deg,#0e122d,#383a61);
    cursor: pointer;
    display: flex;
    align-items: center;
    text-align: left;
    color: #FFDFE4;
    font-family: 'Calibri';
    font-size: 16px;
    transition: background 0.3s;
}

.menu__bottom-action .menu__link:hover {
    background: #0e122d;
}

@keyframes managerFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}