/* FINO.TR — Cerez Onay Banner'i (KVKK / GDPR) */

#fino-cookie-consent {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 99999;
    background: #11182a;
    color: #e8edf7;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    padding: 18px 20px;
    font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    transform: translateY(140%);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

#fino-cookie-consent.fcc-visible {
    transform: translateY(0);
    opacity: 1;
}

.fcc-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1180px;
    margin: 0 auto;
}

.fcc-text strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.fcc-text p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.55;
    color: #aeb8cc;
}

.fcc-text a {
    color: #5b8cff;
    text-decoration: underline;
    white-space: nowrap;
}

.fcc-text a:hover {
    color: #84a8ff;
}

.fcc-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.fcc-btn {
    border: none;
    border-radius: 9px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, opacity 0.2s ease;
    white-space: nowrap;
}

.fcc-btn-accept {
    background: linear-gradient(135deg, #4f7cff, #6a5bff);
    color: #fff;
}

.fcc-btn-accept:hover {
    opacity: 0.9;
}

.fcc-btn-reject {
    background: transparent;
    color: #aeb8cc;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.fcc-btn-reject:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #e8edf7;
}

@media (max-width: 640px) {
    .fcc-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }
    .fcc-actions {
        justify-content: stretch;
    }
    .fcc-btn {
        flex: 1;
        text-align: center;
    }
}
