/* AlbaTech Cookie Consent - frontend */
.abtc-cc, .abtc-cc * { box-sizing: border-box; font-family: inherit; }
.abtc-cc {
  position: fixed;
  left: 0; right: 0;
  z-index: 999999;
  padding: 14px;
  background: rgba(20,20,20,0.95);
  color: #fff;
}
.abtc-cc-bottom { bottom: 0; }
.abtc-cc-top { top: 0; }
.abtc-cc__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}
.abtc-cc__text { flex: 1; min-width: 260px; }
.abtc-cc__title { font-weight: 700; margin-bottom: 6px; font-size: 15px; }
.abtc-cc__msg { font-size: 13px; line-height: 1.35; opacity: 0.95; }
.abtc-cc__policy { margin-top: 6px; font-size: 12px; opacity: 0.9; }
.abtc-cc__policy a { color:#fff; text-decoration: underline; }
.abtc-cc__actions { display:flex; gap:10px; flex-wrap: wrap; justify-content: flex-end; }
.abtc-cc__btn {
  border: 0;
  cursor: pointer;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1;
}
.abtc-cc__btn--primary { background:#ffffff; color:#111; font-weight:700; }
.abtc-cc__btn--secondary { background: transparent; color:#fff; border:1px solid rgba(255,255,255,0.45); }

@media (max-width: 720px) {
  .abtc-cc__inner { flex-direction: column; align-items: stretch; }
  .abtc-cc__actions { justify-content: flex-start; }
}

/* Modal */
.abtc-cc-modal, .abtc-cc-modal * { box-sizing: border-box; font-family: inherit; }
.abtc-cc-modal {
  position: fixed;
  inset: 0;
  z-index: 1000000;
}
.abtc-cc-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}
.abtc-cc-modal__panel {
  position: relative;
  max-width: 720px;
  margin: 8vh auto;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 60px rgba(0,0,0,0.35);
}
.abtc-cc-modal__head {
  display:flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid #e6e6e6;
}
.abtc-cc-modal__title { font-weight: 800; font-size: 16px; color:#111; }
.abtc-cc-modal__x {
  border:0; background: transparent; cursor:pointer;
  font-size: 22px; line-height: 1; padding: 2px 6px; color:#111;
}
.abtc-cc-modal__body { padding: 14px 16px; }
.abtc-cc-modal__foot { padding: 14px 16px; border-top: 1px solid #e6e6e6; display:flex; justify-content:flex-end; }

.abtc-cc-cat { border:1px solid #eee; border-radius: 8px; padding: 12px; margin-bottom: 10px; }
.abtc-cc-cat__row { display:flex; align-items:center; justify-content: space-between; gap: 10px; }
.abtc-cc-cat__name { font-weight: 700; color:#111; }
.abtc-cc-cat__desc { margin-top: 6px; color:#444; font-size: 13px; line-height: 1.35; }
.abtc-cc-cat--locked { background: #fafafa; }
.abtc-cc-pill { display:inline-block; font-weight:700; font-size:12px; padding: 4px 8px; border-radius: 999px; background:#111; color:#fff; }
