/* gratisnaechte.de – Cookie-Banner Styling
   Diese Datei ergänzt legal-style.css. Beide Dateien einbinden,
   oder den Inhalt in dein bestehendes Stylesheet übernehmen. */

#gn-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  padding: 16px;
  font-family: 'Georgia', 'Times New Roman', serif;
}

.gn-cb-card {
  background: #f7f2e8;
  border: 2px solid #0c4239;
  border-radius: 12px;
  max-width: 640px;
  width: 100%;
  padding: 22px 26px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

.gn-cb-title {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: bold;
  color: #0c4239;
}

.gn-cb-text {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.5;
  color: #232323;
}

.gn-cb-text a {
  color: #15695a;
}

.gn-cb-options {
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
  border-top: 1px solid #e4dccb;
  border-bottom: 1px solid #e4dccb;
  padding: 12px 0;
}

.gn-cb-option {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  color: #232323;
}

.gn-cb-option input {
  margin-top: 3px;
}

.gn-cb-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.gn-cb-btn {
  border: none;
  border-radius: 6px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  font-family: inherit;
}

.gn-cb-btn-primary {
  background: #e89b34;
  color: #0c4239;
}

.gn-cb-btn-primary:hover {
  background: #d68a25;
}

.gn-cb-btn-secondary {
  background: transparent;
  color: #0c4239;
  border: 1px solid #0c4239;
}

.gn-cb-btn-outline {
  background: transparent;
  color: #15695a;
  text-decoration: underline;
}

@media (max-width: 480px) {
  .gn-cb-actions {
    flex-direction: column;
  }
  .gn-cb-btn {
    width: 100%;
  }
}
