/* ===================== COOKIES MODAL ===================== */
.cookies-modal {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 320px;
    height: 220px;
    background: rgba(30,30,30,0.95);
    border-radius: 10px;
    padding: 15px;
    z-index: 1600;
    display: none;
}

.cookies-title {
    font-size: 16px;
    margin-bottom: 8px;
}

.cookies-text {
    font-size: 12px;
    line-height: 1.4;
    opacity: 0.9;
}

.cookies-text a {
    color: #1abc9c;
    text-decoration: none;
}

/* ----- Botones Cookies ----- */
.cookies-buttons {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
}

.cookies-btn {
    width: 45%;
    padding: 8px;
    border-radius: 20px;
    text-align: center;
    font-size: 12px;
    cursor: pointer;
    background: #1abc9c;
    color: #000;
    transition: transform 0.2s;
}

.cookies-btn:hover {
    transform: scale(1.05);
}

.cookies-btn-cancel {
    background: #555;
    color: #fff;
}

/* ===================== MEDIA QUERY MÓVIL ===================== */
@media (max-width: 768px) {
    .cookies-modal {
        width: 90%;
        left: 5%;
    }
}
