/* ===== BANNER DE CONSENTIMIENTO DE COOKIES (RGPD / AEPD) ===== */
.ett-cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 580px;
    margin: 0 auto;
    background: rgba(13, 15, 18, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(57, 255, 20, 0.35);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 25px rgba(57, 255, 20, 0.15);
    z-index: 999999;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: ettCookieSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    font-family: 'Inter', sans-serif;
}

@keyframes ettCookieSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ett-cookie-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ett-cookie-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.ett-cookie-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    letter-spacing: 0.5px;
}

.ett-cookie-text {
    font-size: 0.85rem;
    line-height: 1.45;
    color: #cbd5e1;
    margin: 0;
}

.ett-cookie-link {
    color: #39FF14;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.2s ease;
}

.ett-cookie-link:hover {
    color: #6aff4f;
}

.ett-cookie-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.ett-cookie-btn-accept {
    flex: 1;
    min-width: 140px;
    padding: 0.65rem 1.25rem;
    background: #39FF14;
    color: #000;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    text-align: center;
    box-shadow: 0 0 12px rgba(57, 255, 20, 0.3);
}

.ett-cookie-btn-accept:hover {
    background: #4eff2a;
    transform: translateY(-1px);
    box-shadow: 0 0 18px rgba(57, 255, 20, 0.5);
}

.ett-cookie-btn-reject {
    flex: 1;
    min-width: 140px;
    padding: 0.65rem 1.25rem;
    background: rgba(255, 255, 255, 0.06);
    color: #94a3b8;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.ett-cookie-btn-reject:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 640px) {
    .ett-cookie-banner {
        bottom: 12px;
        left: 12px;
        right: 12px;
        padding: 1rem 1.2rem;
        border-radius: 14px;
    }
    .ett-cookie-actions {
        flex-direction: column;
    }
    .ett-cookie-btn-accept,
    .ett-cookie-btn-reject {
        width: 100%;
        min-width: 100%;
    }
}
