#evz-cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border-top: 3px solid #98c9eb;
  padding: 22px 24px 24px;
  z-index: 99999;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
#evz-cookie-banner .cb-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: 2px solid #293540;
  border-radius: 6px;
  width: 30px;
  height: 30px;
  font-size: 14px;
  color: #293540;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
#evz-cookie-banner .cb-close:hover {
  background: #293540;
  color: #fff;
}
#evz-cookie-banner .cb-title {
  font-size: 16px;
  font-weight: 700;
  color: #293540;
  text-align: center;
  margin: 0 0 10px;
}
#evz-cookie-banner .cb-desc {
  font-size: 12px;
  color: #444;
  text-align: center;
  line-height: 1.6;
  margin: 0 auto 16px;
  max-width: 560px;
}
#evz-cookie-banner .cb-desc a {
  color: #98c9eb;
  text-decoration: underline;
}
#evz-cookie-banner .cb-categories {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
#evz-cookie-banner .cb-cat {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
#evz-cookie-banner .cb-cat input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: all .15s;
}
#evz-cookie-banner .cb-cat input[type="checkbox"]:checked {
  background: #98c9eb;
  border-color: #98c9eb;
}
#evz-cookie-banner .cb-cat input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
#evz-cookie-banner .cb-cat input[type="checkbox"]:disabled {
  background: #98c9eb;
  border-color: #98c9eb;
  opacity: 0.6;
  cursor: not-allowed;
}
#evz-cookie-banner .cb-cat input[type="checkbox"]:disabled::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
#evz-cookie-banner .cb-cat-label {
  font-size: 11px;
  font-weight: 700;
  color: #293540;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
#evz-cookie-banner .cb-btns {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}
#evz-cookie-banner .cb-btn {
  padding: 11px 28px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all .15s;
}
#evz-cookie-banner .cb-btn-accept {
  background: #98c9eb;
  color: #fff;
}
#evz-cookie-banner .cb-btn-accept:hover {
  background: #7ab5de;
}
#evz-cookie-banner .cb-btn-reject {
  background: #293540;
  color: #fff;
}
#evz-cookie-banner .cb-btn-reject:hover {
  background: #1a2330;
}
#evz-cookie-banner .cb-links {
  display: flex;
  justify-content: center;
  gap: 16px;
}
#evz-cookie-banner .cb-links a {
  font-size: 11px;
  color: #98c9eb;
  text-decoration: underline;
}

@media (max-width: 768px) {
  #evz-cookie-banner .cb-categories {
    gap: 12px;
  }
  #evz-cookie-banner .cb-cat-label {
    font-size: 10px;
  }
}