.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  display: none;
  background: #111;
  color: #fff;
  border-radius: 14px;
  padding: 14px 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.cookie-banner.show { display: block; }

.cookie-banner__content {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cookie-banner__text { margin: 0; max-width: 900px; line-height: 1.35; }
.cookie-link { color: #fff; text-decoration: underline; }

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  border: 0;
  border-radius: 10px;
  padding: 10px 14px;
  cursor: pointer;
  font-weight: 600;
}
.btn-primary { background: #5da57f; color: #0b1a12; }
.btn-secondary { background: #2b2b2b; color: #fff; }
.btn-light { background: #f3f3f3; color: #111; }

.cookie-modal[hidden] { display: none; }
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
}
.cookie-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}
.cookie-modal__panel {
  position: relative;
  width: min(640px, calc(100% - 28px));
  margin: 8vh auto 0;
  background: #fff;
  color: #111;
  border-radius: 16px;
  box-shadow: 0 10px 35px rgba(0,0,0,.25);
  overflow: hidden;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.cookie-modal__header, .cookie-modal__footer {
  padding: 14px 16px;
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.cookie-modal__body { padding: 16px; }
.cookie-modal__close {
  font-size: 22px;
  line-height: 1;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  gap: 14px;
}
.cookie-option:last-child { border-bottom: 0; }
.muted { color: #666; font-size: 14px; margin-top: 2px; }
