.evt-cc * {
  box-sizing: border-box;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
}
.evt-cc__banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 99998;
  max-width: 460px;
  margin-left: auto;
  background: #ffffff;
  color: #333333;
  border-radius: 16px;
  box-shadow: 0px 8px 24px rgba(149, 157, 165, 0.2);
  border: 1px solid #e5e7eb;
  padding: 20px 22px;
  display: none;
}
.evt-cc__banner.evt-cc--visible {
  display: block;
}
.evt-cc__title {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 6px;
  color: #0F1E32;
}
.evt-cc__text {
  font-size: 13px;
  line-height: 1.5;
  color: #6c757d;
  margin: 0 0 14px;
}
.evt-cc__text a {
  color: #4364d3;
  text-decoration: underline;
}
.evt-cc__categories {
  display: none;
  margin: 0 0 14px;
  border-top: 1px solid #eef0f2;
  padding-top: 12px;
}
.evt-cc__categories.evt-cc--open {
  display: block;
}
.evt-cc__category {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
}
.evt-cc__category:not(:last-child) {
  border-bottom: 1px solid #f3f4f6;
}
.evt-cc__category-copy {
  flex: 1;
}
.evt-cc__category-name {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #333333;
}
.evt-cc__category-desc {
  display: block;
  font-size: 12px;
  color: #6c757d;
  margin-top: 2px;
}
.evt-cc__toggle {
  position: relative;
  flex-shrink: 0;
  width: 36px;
  height: 20px;
  margin-top: 2px;
}
.evt-cc__toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.evt-cc__toggle input:checked + span {
  background: #4364d3;
}
.evt-cc__toggle input:checked + span::before {
  transform: translateX(16px);
}
.evt-cc__toggle input:disabled + span {
  opacity: 0.6;
  cursor: not-allowed;
}
.evt-cc__toggle span {
  position: absolute;
  inset: 0;
  background: #cbd5e1;
  border-radius: 999px;
  transition: background 0.15s ease;
  cursor: pointer;
}
.evt-cc__toggle span::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.15s ease;
}
.evt-cc__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.evt-cc__btn {
  appearance: none;
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
  padding: 9px 16px;
  transition: opacity 0.15s ease;
}
.evt-cc__btn:hover {
  opacity: 0.85;
}
.evt-cc__btn--primary {
  background: #4364d3;
  color: #fff;
}
.evt-cc__btn--secondary {
  background: #eef1f5;
  color: #333333;
}
.evt-cc__btn--link {
  background: none;
  color: #6c757d;
  text-decoration: underline;
  padding: 9px 4px;
}
.evt-cc__trigger {
  cursor: pointer;
}
@media (max-width: 520px) {
  .evt-cc__banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
    padding: 16px 18px;
  }
}
