/* ============================================================
   assets/css/cookie.css
   ============================================================ */
#cookie-overlay { position: fixed; inset: 0; z-index: 900; background: rgba(0,0,0,.6); display: none; align-items: center; justify-content: center; padding: 20px; }
#cookie-overlay.visible { display: flex; }
#cookie-box { background: #fff; border-radius: 6px; width: 100%; max-width: 520px; max-height: 90vh; overflow-y: auto; box-shadow: 0 24px 64px rgba(0,0,0,.25); padding: 32px; }
.ck-logo  { font-size: 32px; margin-bottom: 12px; }
.ck-title { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 500; color: #333; margin-bottom: 12px; }
.ck-text  { font-size: 13px; color: #333; line-height: 1.7; margin-bottom: 20px; }
.ck-text a { color: #333; font-weight: 600; text-decoration: underline; }
.ck-btns  { display: flex; flex-direction: column; gap: 8px; }
.ck-btn   { width: 100%; min-height: 48px; border-radius: 2px; font-family: 'Manrope', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; border: none; transition: all .2s; }
.ck-btn-fill    { background: #333; color: #fff; }
.ck-btn-fill:hover { background: #333; }
.ck-btn-outline { background: transparent; color: #333; border: 1.5px solid var(--grigio-chiaro); }
.ck-btn-outline:hover { border-color: #333; }
.ck-btn-link { background: none; border: none; cursor: pointer; font-size: 12px; color: #333; font-family: 'Manrope', sans-serif; text-decoration: underline; padding: 8px 0; text-align: center; }
.ck-btn-link:hover { color: var(--testo); }
.ck-back { background: none; border: 1px solid var(--grigio-chiaro); border-radius: 2px; padding: 4px 10px; cursor: pointer; font-size: 14px; color: #333; flex-shrink: 0; }
.ck-cats { display: flex; flex-direction: column; gap: 8px; }
.ck-cat  { border: 1px solid var(--grigio-chiaro); border-radius: 2px; overflow: hidden; }
.ck-cat-header { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 16px; }
.ck-cat-label { font-size: 14px; font-weight: 700; color: var(--testo); }
.ck-cat-desc  { font-size: 12px; color: #333; margin-top: 3px; }
.ck-details   { border-top: 1px solid var(--grigio-chiaro); }
.ck-details summary { padding: 8px 16px; font-size: 11px; color: #333; cursor: pointer; list-style: none; user-select: none; }
.ck-details summary:hover { color: var(--testo); }
.ck-table { width: 100%; border-collapse: collapse; font-size: 11px; }
.ck-table th { background: #f5f5f5; padding: 6px 12px; text-align: left; font-weight: 700; color: var(--testo); }
.ck-table td { padding: 6px 12px; color: #333; border-top: 1px solid var(--grigio-chiaro); }
.ck-table code { font-size: 10px; }
@media(min-width: 480px) { .ck-btns { flex-direction: row; flex-wrap: wrap; } .ck-btn { width: auto; flex: 1; } }
