/* ==========================================================================
   Flanör — KVKK / Cookie Notice
   Alt-orta sticky karar bandı
   ========================================================================== */

.flanor-cookie-notice {
    position: fixed;
    left: 50%;
    bottom: calc(50px + env(safe-area-inset-bottom, 0px));
    transform: translateX(-50%) translateY(140%);
    width: calc(100% - 24px);
    max-width: 720px;
    z-index: 9990;
    background: rgba(30, 31, 34, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid #3F4147;
    border-radius: 14px;
    padding: 16px 18px;
    color: #DBDEE1;
    font-family: inherit;
    font-size: 13px;
    line-height: 1.5;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.flanor-cookie-notice.shown {
    transform: translateX(-50%) translateY(0);
}

.flanor-cookie-notice .fcn-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.flanor-cookie-notice .fcn-icon {
    flex-shrink: 0;
    font-size: 24px;
    line-height: 1;
    margin-top: 2px;
}

.flanor-cookie-notice .fcn-text {
    flex: 1;
    min-width: 0;
}

.flanor-cookie-notice .fcn-text strong {
    color: #FFFFFF;
    font-weight: 700;
}

.flanor-cookie-notice .fcn-text a {
    color: #5865F2;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.flanor-cookie-notice .fcn-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.flanor-cookie-notice button {
    border: none;
    border-radius: 10px;
    padding: 9px 18px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.15s, transform 0.15s;
    letter-spacing: 0.01em;
}

.flanor-cookie-notice .fcn-btn-primary {
    background: #5865F2;
    color: #FFFFFF;
}

.flanor-cookie-notice .fcn-btn-primary:hover {
    background: #4752C4;
    transform: translateY(-1px);
}

.flanor-cookie-notice .fcn-btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #B5BAC1;
}

.flanor-cookie-notice .fcn-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #FFFFFF;
}

@media (max-width: 600px) {
    .flanor-cookie-notice {
        bottom: 76px; /* mobile bottom-nav var → üstünde */
        font-size: 12px;
        padding: 14px 14px;
    }
    .flanor-cookie-notice button {
        padding: 8px 14px;
        font-size: 12px;
    }
    .flanor-cookie-notice .fcn-actions {
        justify-content: stretch;
    }
    .flanor-cookie-notice .fcn-actions button {
        flex: 1;
    }
}
