/* ============================================
   COOKIE BANNER — Compartido para todas las webs
   ============================================ */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 17, 21, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(139, 92, 246, 0.3);
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    z-index: 99999;
    font-family: 'Outfit', 'Inter', sans-serif;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

#cookie-banner.hidden {
    transform: translateY(110%);
}

#cookie-banner p {
    margin: 0;
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.6;
    flex: 1;
}

#cookie-banner p a {
    color: #8b5cf6;
    text-decoration: underline;
    text-underline-offset: 2px;
}

#cookie-banner p a:hover {
    color: #a78bfa;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    font-family: inherit;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    color: #fff;
}

.cookie-btn-accept:hover {
    background: linear-gradient(135deg, #a78bfa, #7c3aed);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.cookie-btn-reject {
    background: transparent;
    color: #64748b;
    border: 1px solid rgba(100, 116, 139, 0.3);
}

.cookie-btn-reject:hover {
    color: #94a3b8;
    border-color: rgba(148, 163, 184, 0.4);
}

@media (max-width: 640px) {
    #cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.25rem;
    }

    .cookie-actions {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
        text-align: center;
    }
}