/* =========================================
   BANNER DE COOKIES
   ========================================= */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 20px 0;
    z-index: 1000; /* Asegura que esté por encima del todo */
    display: none; /* Oculto por defecto hasta que el JS decida mostrarlo */
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.200);
}

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

.cookie-text p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-body-light);
    line-height: 1.5;
}

.cookie-text a {
    color: var(--white);
    text-decoration: underline;
    font-weight: 600;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0; /* Evita que los botones se encojan por el texto */
}