.cs-cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #111;
  color: #fff;
  padding: 14px;
  font-size: 14px;
}

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

.cs-cookie-text {
  margin: 0;
  line-height: 1.4;
}

.cs-cookie-link {
  color: #fff;
  text-decoration: underline;
}

.cs-cookie-actions {
  display: flex;
  gap: 8px;
}

.cs-btn {
  border: 1px solid #fff;
  background: #fff;
  color: #111;
  padding: 8px 12px;
  cursor: pointer;
}

.cs-btn:focus {
  outline: 3px solid #8ab4f8;
  outline-offset: 2px;
}

.cs-btn-secondary {
  background: transparent;
  color: #fff;
}

