.cta-side {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.cta-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 210px;
    padding: 10px 14px 10px 10px;
    border-radius: 12px 0 0 12px;
    color: #fff;
    cursor: pointer;
    box-shadow: -6px 6px 22px rgba(0, 0, 0, .28);
    user-select: none;
    overflow: visible;
}
.cta-btn .icon-box {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
}
.cta-btn .txt {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
}
.cta-btn .txt small {
    font-size: .64rem;
    opacity: .9;
    text-transform: uppercase;
    letter-spacing: .05em;
    white-space: nowrap;
}
.cta-btn .txt strong {
    font-size: .85rem;
    white-space: nowrap;
    color: #fff;
}
.cta-del  { background: linear-gradient(135deg, #27ae60, #1e8f4e); }
.cta-book { background: linear-gradient(135deg, #003b95, #002a6b); }

.num-pop {
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%) translateX(12px);
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 34px rgba(0, 0, 0, .22);
    padding: 12px;
    width: 205px;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    margin-right: 12px;
    z-index: 9999;
}
.cta-btn.show .num-pop {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}
.num-pop .pop-title {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #c9a25e;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}
.num-pop a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    font-size: .82rem;
    font-weight: 600;
    padding: 7px 8px;
    border-radius: 6px;
    text-decoration: none;
    transition: background .2s ease, color .2s ease;
}
.num-pop a:hover {
    background: #f5f5f5;
    color: #d4112b;
}
.num-pop a i {
    width: 14px;
    text-align: center;
    color: #c9a25e;
}
.cta-btn .icon-box {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    font-size: .9rem;
}
.cta-btn {
    width: 46px;
    padding: 8px;
}

@media (max-width: 768px) {
    .cta-btn {
        width: 46px;
        padding: 8px;
    }
    .cta-btn .txt {
        display: none;
    }
    .cta-btn .icon-box {
        flex: 0 0 30px;
        width: 30px;
        height: 30px;
        font-size: .9rem;
    }
    .num-pop {
        width: 185px;
    }
}
