.ec-cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 99999;
    background: #1a1a2e; color: #fff; padding: 1rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.ec-cookie-banner__inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
}
.ec-cookie-banner__text { flex: 1; min-width: 300px; font-size: 0.9rem; line-height: 1.5; }
.ec-cookie-banner__text a { color: #7ec8e3; }
.ec-cookie-banner__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.ec-btn {
    padding: 0.6rem 1.2rem; border: none; border-radius: 4px;
    cursor: pointer; font-size: 0.9rem; font-weight: 600;
    transition: opacity 0.2s;
}
.ec-btn:hover { opacity: 0.85; }
/* IMPORTANT: Acceptar i Rebutjar amb la MATEIXA prominencia visual (AEPD) */
.ec-btn--accept { background: #4CAF50; color: #fff; }
.ec-btn--reject { background: #e0e0e0; color: #333; }
.ec-btn--config { background: transparent; color: #7ec8e3; text-decoration: underline; border: none; }

/* Modal */
.ec-cookie-modal { position: fixed; inset: 0; z-index: 100000;
    display: flex; align-items: center; justify-content: center; }
.ec-cookie-modal__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.6); }
.ec-cookie-modal__content {
    position: relative; background: #fff; color: #333; border-radius: 8px;
    padding: 2rem; max-width: 600px; width: 90%; max-height: 80vh; overflow-y: auto;
}
.ec-cookie-modal__content h2 { margin-top: 0; }
.ec-cookie-category { margin: 1rem 0; padding: 0.75rem; border: 1px solid #eee; border-radius: 4px; }
.ec-cookie-category label { font-weight: 600; display: flex; align-items: center; gap: 0.5rem; cursor: pointer; }
.ec-cookie-category p { margin: 0.25rem 0 0 1.75rem; font-size: 0.85rem; color: #666; }
.ec-cookie-modal__actions { display: flex; gap: 0.75rem; margin-top: 1.5rem; justify-content: flex-end; }

/* Boto flotant footer */
.ec-cookie-settings-link {
    position: fixed; bottom: 1rem; left: 1rem; z-index: 99998;
    background: #333; color: #fff; padding: 0.5rem 1rem;
    border-radius: 20px; font-size: 0.8rem; text-decoration: none;
    opacity: 0.8; transition: opacity 0.2s;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.ec-cookie-settings-link:hover { opacity: 1; color: #fff; }

/* Taula politica de cookies */
.ec-cookie-policy { margin: 2rem 0; }
.ec-cookie-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.ec-cookie-table th, .ec-cookie-table td { border: 1px solid #ddd; padding: 0.6rem; text-align: left; }
.ec-cookie-table th { background: #f5f5f5; font-weight: 600; }
.ec-cookie-table tr:nth-child(even) { background: #fafafa; }

@media (max-width: 768px) {
    .ec-cookie-banner__inner { flex-direction: column; text-align: center; }
    .ec-cookie-banner__actions { justify-content: center; width: 100%; }
    .ec-btn { flex: 1; min-width: 120px; }
    .ec-cookie-modal__content { padding: 1.5rem; width: 95%; }
    .ec-cookie-modal__actions { flex-direction: column; }
    .ec-cookie-table { font-size: 0.8rem; }
}
