/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    padding: 30px;
    border-radius: 8px;
    display: none; /* Hidden by default */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    font-family: Arial, sans-serif;
    max-width: 500px; /* Ajustado para flotar a la izquierda */
    border-top: 4px solid #ec0000; /* Santander Red */
}

.cookie-banner.is-visible {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.cookie-banner-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-banner-title {
    font-size: 18px;
    font-weight: bold;
    color: #000;
    margin: 0;
}

.cookie-banner-text {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    margin: 0;
}

.cookie-banner-links {
    font-size: 13px;
}

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

.cookie-banner-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 15px;
}

.cookie-btn {
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    border: 2px solid #ec0000;
    transition: all 0.2s ease;
    text-transform: uppercase;
    min-width: 110px;
}

.cookie-btn-accept {
    background: #ec0000;
    color: #fff;
}

.cookie-btn-accept:hover {
    background: #c00000;
    border-color: #c00000;
}

.cookie-btn-reject {
    background: #fff;
    color: #ec0000;
}

.cookie-btn-reject:hover {
    background: #fdf2f2;
}

@media (max-width: 768px) {
    .cookie-banner {
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 0;
        padding: 20px;
        max-width: 100%;
        width: 100%;
    }
    
    .cookie-banner-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-btn {
        width: 100%;
        text-align: center;
    }
}
