:root {
  --cookie-green: #2d6a2d;
  --cookie-green-dark: #1e4620;
  --cookie-gold: #d4a017;
}

#sakhi-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: var(--cookie-green-dark);
  border-top: 2px solid var(--cookie-gold);
  padding: 1rem 1.25rem;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.35);
  font-family: system-ui, sans-serif;
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

#sakhi-cookie-banner.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.cookie-inner { max-width: 960px; margin: 0 auto; }

.cookie-title {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  color: #fff;
}

.cookie-lead {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.cookie-lead a { color: var(--cookie-gold); }

.cookie-panel--main {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-end;
  justify-content: space-between;
}

.cookie-panel__content { flex: 1 1 280px; }

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-actions button {
  font: inherit;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid transparent;
}

.cookie-actions .btn-accept {
  background: var(--cookie-gold);
  color: #1a1a1a;
}

.cookie-actions .btn-reject,
.cookie-actions .btn-back {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.cookie-actions .btn-customize,
.cookie-actions .btn-save {
  background: #fff;
  color: var(--cookie-green-dark);
}

.cookie-category {
  margin: 1rem 0;
  padding: 0.75rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
}

.cookie-category p { margin: 0.35rem 0 0; opacity: 0.85; }

.cookie-category__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-category__status {
  font-size: 0.8125rem;
  opacity: 0.7;
}

.cookie-toggle input { accent-color: var(--cookie-gold); }

.sakhi-privacy-settings-link {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}

.sakhi-privacy-settings-link:hover { text-decoration: underline; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
