/* Simple Cookie Consent (Free) */
.scc-banner{
  position: fixed;
  left: 0;
  right: 0;
  z-index: 999999;
  padding: 12px;
  background: rgba(20,20,20,.96);
  color: #fff;
  font-size: 14px;
  line-height: 1.35;
}
.scc-top{ top: 0; }
.scc-bottom{ bottom: 0; }

.scc-inner{
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.scc-message{ flex: 1; }
.scc-link{ color: #fff; text-decoration: underline; margin-left: 8px; }

.scc-actions{ display: flex; gap: 8px; flex-wrap: wrap; }
.scc-btn{
  border: 0;
  border-radius: 8px;
  padding: 10px 12px;
  cursor: pointer;
  font-weight: 600;
}
.scc-accept{ background: #ffffff; color: #111; }
.scc-reject{ background: rgba(255,255,255,.14); color: #fff; }
.scc-prefs{ background: rgba(255,255,255,.14); color: #fff; }

.scc-modal{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 999999;
  display: none;
  padding: 18px;
}
.scc-modal.scc-open{ display: flex; align-items: center; justify-content: center; }

.scc-modal-card{
  width: min(620px, 100%);
  background: #fff;
  color: #111;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  overflow: hidden;
}

.scc-modal-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.scc-modal-title{ font-size: 16px; font-weight: 700; }
.scc-close{
  border: 0;
  background: transparent;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.scc-modal-body{ padding: 10px 16px 16px; }

.scc-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.scc-row:last-child{ border-bottom: 0; }

.scc-row-title{ font-weight: 700; }
.scc-row-desc{ font-size: 13px; opacity: .85; margin-top: 2px; }

.scc-toggle{
  width: 52px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(0,0,0,.10);
  position: relative;
  cursor: pointer;
  padding: 0;
}

.scc-toggle[aria-pressed="true"]{ background: rgba(16, 185, 129, .35); }

.scc-knob{
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,.18);
  transition: transform .16s ease;
}

.scc-toggle[aria-pressed="true"] .scc-knob{ transform: translateX(22px); }

.scc-disabled{ opacity: .55; cursor: not-allowed; }

.scc-modal-actions{ display: flex; justify-content: flex-end; padding-top: 14px; }
.scc-save{ background: #111; color: #fff; }

.scc-manage{
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 999998;
  border: 0;
  border-radius: 999px;
  padding: 10px 12px;
  background: rgba(17,17,17,.92);
  color: #fff;
  cursor: pointer;
  font-weight: 700;
  font-size: 13px;
}

@media (max-width: 640px){
  .scc-inner{ flex-direction: column; align-items: stretch; }
  .scc-actions{ justify-content: flex-start; }
}
