/* #cookies {
	background-color: #4e4e4e;
	color: white;
	padding: 10px;
	z-index: 999;
	position: fixed;
	bottom: 0px;
	left: 0;
	right: 0;
	width: 100%;
	margin: 0px;
	font-size: 0.8em;
}

#cookies h4 {
	margin-top: 5px;
	margin-bottom: 5px;
}

#cookies p {
	margin-top: 5px;
	margin-bottom: 5px;
}

#cookies a {
	color: white;
	text-decoration: underline;
}

#cookies .btn {
	padding: 3px 6px;
	font-size: 0.8em;
}

#cookies button {
	margin-left: 15px;
}

.btn-default {
	color: #333;
	background-color: #fff;
	border-color: #ccc;
} */

/* Contenedor principal: Tarjeta Flotante */
#cookies {
    position: fixed;
    bottom: 20px;
    /* Separado del fondo */
    left: 20px;
    /* En la esquina izquierda (o usa right: 20px) */
    width: 320px;
    /* Ancho fijo para parecer una tarjeta */
    max-width: 90%;
    /* Para que no se salga en móviles */
    background-color: #ffffff;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    /* Sombra elegante */
    border-radius: 4px;
    border-left: 5px solid #8D7D65;
    /* El borde marrón corporativo a la izq */
    z-index: 99999;
    /* Para que siempre esté encima de todo */
    font-family: 'Arial', sans-serif;
}

/* El título "Uso de cookies" */
#cookies h4 {
    font-family: 'Georgia', serif;
    /* Misma fuente que el título del formulario */
    color: #847059;
    /* Color marrón */
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: normal;
}

/* El texto del aviso */
#cookies p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Enlaces dentro del texto */
#cookies p a {
    color: #333;
    text-decoration: underline;
    font-weight: bold;
}

/* Botón Aceptar (Igual que el del formulario) */
/* Botón Aceptar Custom */
.cookie-btn {
    background-color: #847059 !important;
    color: #ffffff !important;
    border: none;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    padding: 10px 20px;
    width: 100%;
    border-radius: 2px;
    transition: background 0.3s;
    font-weight: bold;
    display: block !important;
    cursor: pointer;
    text-align: center;
    font-family: inherit;
    margin-top: 10px;
}

.cookie-btn:hover {
    background-color: #6e604c !important;
}

/* --- AJUSTE PARA MÓVILES --- */
@media (max-width: 480px) {
    #cookies {
        left: 0;
        bottom: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        /* Sin curvas en móvil, ocupa todo el ancho */
        border-left: none;
        border-top: 4px solid #8D7D65;
        /* Borde pasa arriba */
    }
}