.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(106, 5, 114, 0.95); /* morado elegante */
    backdrop-filter: blur(8px);
    color: #F5E6A4; /* amarillo suave */
    padding: 30px 40px;
    z-index: 9999;
    font-size: 1.2rem; /* AUMENTO GENERAL */
}

.cookie-content {
    max-width: 1200px;
    margin: auto;
}

.cookie-content p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.cookie-options {
    margin: 15px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 1.1rem;
}

.cookie-options input {
    transform: scale(1.3); /* agranda checkboxes */
    margin-right: 8px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 10px;
}

/* BOTÓN PRINCIPAL (Rechazar destacado) */
.btn-primary {
    background-color: #F5E6A4;
    color: #6A0572;
    border: none;
    padding: 12px 22px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 6px;
    transition: 0.3s ease;
}

.btn-primary:hover {
    background-color: #FFD54F;
}

/* BOTONES SECUNDARIOS */
.btn-secondary {
    background-color: transparent;
    color: #F5E6A4;
    border: 2px solid #F5E6A4;
    padding: 12px 22px;
    font-size: 1.05rem;
    cursor: pointer;
    border-radius: 6px;
    transition: 0.3s ease;
}

.btn-secondary:hover {
    background-color: rgba(245, 230, 164, 0.15);
}

.cookie-banner a {
    color: #FFD54F;
    font-weight: bold;
    text-decoration: underline;
}

@media (max-width: 768px) {

    .cookie-banner {
        padding: 20px;
        font-size: 1rem;
    }

    .cookie-content p {
        font-size: 1.05rem;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}