/* Cookie consent banner - green and white, accept or reject */
#cookieConsentBanner{
  position:fixed;
  left:14px;
  right:14px;
  bottom:12px;
  z-index:2147483000;
  max-width:1180px;
  margin:0 auto;
  background:#fff;
  color:#17221c;
  border:1.5px solid #12b76a;
  border-radius:14px;
  box-shadow:0 8px 28px rgba(12,91,53,.16);
  font-family:inherit;
}
.cookie-consent-inner{
  margin:0 auto;
  padding:13px 15px calc(13px + env(safe-area-inset-bottom));
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
}
.cookie-consent-message{
  min-width:0;
  display:flex;
  align-items:center;
  gap:12px;
}
.cookie-consent-icon{
  width:38px;
  height:38px;
  flex:0 0 38px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#dff8ea;
  color:#079455;
  font-size:20px;
  line-height:1;
}
.cookie-consent-copy{
  min-width:0;
}
.cookie-consent-title{
  display:block;
  margin:0 0 2px;
  color:#17221c;
  font-size:15px;
  line-height:1.35;
  font-weight:700;
}
.cookie-consent-text{
  margin:0;
  max-width:680px;
  color:#5f6d65;
  font-size:12px;
  line-height:1.5;
}
.cookie-consent-text a{
  color:#078c50;
  text-decoration:underline;
  text-underline-offset:2px;
}
.cookie-consent-actions{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  flex:0 0 auto;
}
.cookie-consent-btn{
  appearance:none;
  border:1px solid #12b76a;
  border-radius:8px;
  padding:8px 17px;
  min-height:38px;
  font:inherit;
  font-size:13px;
  font-weight:700;
  cursor:pointer;
  white-space:nowrap;
  transition:background .18s ease,color .18s ease,border-color .18s ease,transform .18s ease;
}
.cookie-consent-btn--reject{
  background:#fff;
  color:#079455;
}
.cookie-consent-btn--accept{
  background:#12b76a;
  color:#fff;
}
.cookie-consent-btn--reject:hover{background:#effcf5}
.cookie-consent-btn--accept:hover{background:#0e9f5d;border-color:#0e9f5d}
.cookie-consent-btn:active{transform:translateY(1px)}
.cookie-consent-btn:focus-visible{outline:3px solid rgba(18,183,106,.28);outline-offset:2px}
@media (max-width:760px){
  #cookieConsentBanner{
    left:8px;
    right:8px;
    bottom:calc(8px + env(safe-area-inset-bottom));
    border-radius:12px;
    box-shadow:0 6px 20px rgba(12,91,53,.13);
  }
  .cookie-consent-inner{
    padding:8px 9px calc(8px + env(safe-area-inset-bottom));
    display:grid;
    grid-template-columns:minmax(0,1fr) auto;
    align-items:center;
    gap:8px;
  }
  .cookie-consent-message{display:block;min-width:0}
  .cookie-consent-icon{display:none}
  .cookie-consent-title{font-size:12px;line-height:1.25;margin-bottom:1px}
  .cookie-consent-text{font-size:9.5px;line-height:1.35;max-width:230px}
  .cookie-consent-actions{width:auto;gap:5px}
  .cookie-consent-btn{flex:0 0 auto;min-width:67px;padding:6px 8px;min-height:34px;font-size:10.5px;white-space:nowrap;border-radius:7px}
}
@media (max-width:390px){
  .cookie-consent-inner{grid-template-columns:minmax(0,1fr) auto;gap:6px}
  .cookie-consent-actions{flex-direction:row;gap:4px}
  .cookie-consent-btn{width:auto;min-width:58px;padding-left:6px;padding-right:6px;font-size:10px}
}

.cookie-consent-icon svg{width:34px;height:34px;display:block;overflow:visible}
.cookie-consent-icon svg circle{fill:#8de3b8;stroke:#079455;stroke-width:1.8}
.cookie-svg-cookie{fill:#c9f4dc;stroke:#079455;stroke-width:2.3;stroke-linejoin:round}
.cookie-svg-shield{fill:#fff;stroke:#079455;stroke-width:2.5;stroke-linejoin:round}
.cookie-svg-check{fill:none;stroke:#079455;stroke-width:3;stroke-linecap:round;stroke-linejoin:round}
