/* Privacy consent banner (see gluto-consent.js) */

.gluto-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  display: flex;
  justify-content: center;
  padding: 12px;
  pointer-events: none;
}

.gluto-consent-box {
  pointer-events: auto;
  max-width: 720px;
  width: 100%;
  background: #ffffff;
  border: 1px solid #e2e0da;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(20, 30, 25, 0.18);
  padding: 18px 20px;
  font-family: inherit;
  color: #22302a;
}

.gluto-consent-title {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 700;
}

.gluto-consent-text {
  margin: 0 0 12px;
  font-size: 0.86rem;
  line-height: 1.45;
  color: #4a564f;
}

.gluto-consent-text a {
  color: #1f7a4d;
  text-decoration: underline;
}

.gluto-consent-toggles {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 14px;
  padding: 12px;
  background: #f6f5f1;
  border-radius: 10px;
}

.gluto-consent-toggle {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.gluto-consent-toggle input {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: #1f7a4d;
  flex: 0 0 auto;
}

.gluto-consent-toggle-text strong {
  display: block;
  font-size: 0.85rem;
}

.gluto-consent-toggle-text small {
  display: block;
  font-size: 0.78rem;
  color: #5c675f;
  line-height: 1.35;
}

.gluto-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gluto-consent-btn {
  border: 1px solid #cfd6d0;
  background: #ffffff;
  color: #22302a;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}

.gluto-consent-btn:hover {
  background: #f0efe9;
}

.gluto-consent-btn.gluto-consent-accept {
  background: #1f7a4d;
  border-color: #1f7a4d;
  color: #fff;
}

.gluto-consent-btn.gluto-consent-accept:hover {
  background: #196540;
}

@media (max-width: 540px) {
  .gluto-consent-box {
    padding: 14px;
  }
  .gluto-consent-actions {
    flex-direction: column;
  }
  .gluto-consent-btn {
    width: 100%;
  }
}
