/* ==========================================================================
   Flanör — Profil Tamamlama Banner (chat sayfa)
   Sağ alt köşede slide-in checklist kart
   ========================================================================== */

.flanor-profile-complete {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 320px;
    max-width: calc(100vw - 24px);
    background: linear-gradient(135deg, #2B2D31 0%, #34373D 100%);
    border: 1px solid #3F4147;
    border-radius: 14px;
    padding: 16px 18px;
    z-index: 9986;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
    color: #DBDEE1;
    font-family: inherit;
    font-size: 13px;
    transform: translateY(40px);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s;
}

.flanor-profile-complete.flanor-pc-shown {
    transform: translateY(0);
    opacity: 1;
}

.flanor-profile-complete.flanor-pc-closing {
    transform: translateY(40px);
    opacity: 0;
}

.flanor-pc-close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(255, 255, 255, 0.10);
    color: #B5BAC1;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.15s, color 0.15s;
}

.flanor-pc-close:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #FFFFFF;
}

.flanor-pc-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    padding-right: 24px;
}

.flanor-pc-title {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.flanor-pc-progress {
    color: #80848E;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.flanor-pc-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 14px;
}

.flanor-pc-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #5865F2 0%, #9F7AEA 100%);
    border-radius: 2px;
    transition: width 0.4s;
}

.flanor-pc-steps {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.flanor-pc-steps li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12.5px;
    color: #B5BAC1;
    line-height: 1.3;
}

.flanor-pc-steps li.done {
    color: #80848E;
    text-decoration: line-through;
}

.flanor-pc-steps .check {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #80848E;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.flanor-pc-steps li.done .check {
    color: #FFFFFF;
    background: linear-gradient(135deg, #23A55A, #1B7C45);
    border-color: #23A55A;
}

.flanor-pc-cta {
    display: block;
    background: #5865F2;
    color: #FFFFFF;
    text-align: center;
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    transition: background 0.15s, transform 0.15s;
}

.flanor-pc-cta:not(.done):hover {
    background: #4752C4;
    transform: translateY(-1px);
}

.flanor-pc-cta.done {
    background: rgba(35, 165, 90, 0.18);
    color: #23A55A;
    border: 1px solid rgba(35, 165, 90, 0.4);
    cursor: default;
}

@media (max-width: 768px) {
    .flanor-profile-complete {
        right: 12px;
        bottom: 76px; /* mobile bottom-nav varsa üstünde */
        width: calc(100vw - 24px);
        padding: 14px;
    }
}
