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

/* Texto */
.cookie-banner p {
    margin: 0;
    font-size: 1rem;
    flex: 1;
    text-align: left;
}

/* Botón */
.cookie-banner button {
    background-color: #4be2e8;
    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;
    white-space: nowrap;
}

/* Eliminar .cookie-actions si ya no se usa */