/* ==========================================================================
   Climatex cookiebar + Google Consent Mode
   DRVisual, september 2026
   ========================================================================== */

.climatex-cookiebar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  background: #191919;
  color: #cfcfcf;
  font-family: 'Open Sans', Arial, sans-serif;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, .25);
}

.climatex-cookiebar-inner {
  max-width: 1170px;
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.climatex-cookiebar-inner p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: #cfcfcf;
  flex: 1 1 500px;
}

.climatex-cookiebar-inner a {
  color: #a1c066;
  text-decoration: underline;
}

.climatex-cookiebar-inner a:hover {
  color: #b8d183;
}

.climatex-cookiebar-actions {
  flex: 0 0 auto;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.climatex-cookiebar-btn {
  background: #a1c066;
  color: #fff;
  border: 2px solid #a1c066;
  padding: 9px 24px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  cursor: pointer;
  border-radius: 2px;
  transition: background .2s ease-in-out, border-color .2s ease-in-out, color .2s ease-in-out;
}

.climatex-cookiebar-btn:hover {
  background: #8aa854;
  border-color: #8aa854;
  color: #fff;
}

.climatex-cookiebar-btn-outline {
  background: transparent;
  color: #cfcfcf;
  border: 2px solid #555;
}

.climatex-cookiebar-btn-outline:hover {
  background: #2a2a2a;
  border-color: #777;
  color: #fff;
}

/* Plaatshouder voor reCAPTCHA zolang er geen toestemming is */
.climatex-recaptcha-placeholder {
  margin-bottom: 15px;
}

.climatex-recaptcha-note {
  margin: 0;
  padding: 12px 15px;
  background: #f3f3f3;
  border-left: 3px solid #a1c066;
  font-size: 13px;
  line-height: 1.6;
  color: #666;
}

.climatex-recaptcha-note a {
  color: #a1c066;
  text-decoration: underline;
  cursor: pointer;
}

@media (max-width: 767px) {
  .climatex-cookiebar-inner {
    padding: 15px;
  }
  .climatex-cookiebar-actions {
    width: 100%;
  }
  .climatex-cookiebar-btn {
    flex: 1 1 auto;
  }
}
