.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #1a2530;
  color: #e5e7eb;
  padding: 1.25rem 1.5rem;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner__inner {
  max-width: 1160px;
  margin-inline: auto;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-banner__text {
  flex: 1;
  min-width: 260px;
  font-size: 0.875rem;
  line-height: 1.6;
}
.cookie-banner__text a { color: #52b788; text-decoration: underline; }
.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 0.6rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s;
}
.cookie-btn:hover { opacity: 0.85; }
.cookie-btn--accept { background: #2d6a4f; color: #fff; }
.cookie-btn--reject { background: #374151; color: #d1d5db; }
.cookie-btn--settings { background: transparent; color: #9ca3af; font-size: 0.8rem; text-decoration: underline; cursor: pointer; border: none; }
.cookie-settings-panel {
  display: none;
  padding: 1rem 0 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 0.75rem;
  width: 100%;
}
.cookie-settings-panel.is-open { display: block; }
.cookie-settings-panel__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cookie-settings-panel__row:last-of-type { border-bottom: none; }
.cookie-settings-panel__label { font-size: 0.8rem; color: #d1d5db; }
.cookie-settings-panel__label span { display: block; font-size: 0.7rem; color: #6b7280; }
.cookie-settings-panel__toggle { display: flex; align-items: center; gap: 0.5rem; cursor: pointer; }
.cookie-settings-panel__toggle input { accent-color: #2d6a4f; width: 1rem; height: 1rem; }
.cookie-save-btn {
  margin-top: 0.75rem;
  background: #2d6a4f;
  color: #fff;
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
}
