.cookie-banner {
    position: fixed;
    bottom: 1.5rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    background-color: rgba(40, 40, 40, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 1rem 2rem;
    max-width: 600px;
    width: 90%;
    display: none;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    font-family: 'Inter', sans-serif;
    color: #fff;
    text-align: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Texto */
.cookie-banner p {
    margin: 0;
    font-size: 1rem;
    flex: 1 1 100%;
}

/* Enlace */
.cookie-banner a {
    color: #a8e4ff;
    font-weight: 500;
    text-decoration: underline;
}

/* Botón */
.cookie-banner button {
    background-color: #00b4d8;
    color: white;
    border: none;
    padding: 0.5rem 1.2rem;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
    align-items: center;
    justify-content: center;
}

.cookie-banner button:hover {
    background-color: #0077b6;
}

.cookie-actions {
    width: 100%;
    display: flex;
    justify-content: center;
}

@media (max-width: 480px) {
    .cookie-banner {
        flex-direction: column;
        padding: 1rem;
        gap: 0.75rem;
        width: 92%;
        bottom: 1rem;
    }

    .cookie-banner p {
        font-size: 0.95rem;
    }

    .cookie-actions {
        width: 100%;
    }

    .cookie-banner button {
        width: 100%;
        padding: 0.6rem;
        font-size: 1rem;
    }
}