/* ==========================================================================
   COOKIE BANNER: Design Premium & Responsive
   ========================================================================== */

.ftb-cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translate(-50%, 50px);
    width: 90%;
    max-width: 800px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px 32px;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0.6s;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.ftb-cookie-banner.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.ftb-cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.ftb-cookie-text p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.ftb-cookie-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ftb-cookie-links a {
    font-size: 12px;
    font-weight: 600;
    color: #FCE700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: opacity 0.2s ease;
}

.ftb-cookie-links a:hover {
    opacity: 0.7;
}

.ftb-cookie-links .sep {
    color: rgba(255, 255, 255, 0.2);
    font-size: 12px;
}

.ftb-cookie-actions {
    flex-shrink: 0;
}

.ftb-btn-cookie-accept {
    background: #FCE700;
    color: #000;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
    white-space: nowrap;
}

.ftb-btn-cookie-accept:hover {
    background: #fff;
    transform: scale(1.05);
}

.ftb-btn-cookie-accept:active {
    transform: scale(0.95);
}

/* Responsive */
@media (max-width: 768px) {
    .ftb-cookie-banner {
        bottom: 20px;
        padding: 20px;
    }

    .ftb-cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .ftb-cookie-actions {
        width: 100%;
    }

    .ftb-btn-cookie-accept {
        width: 100%;
        padding: 16px;
    }
}
