.agro-cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 920;
  box-sizing: border-box;
  padding: clamp(14px,3vw,20px) clamp(16px,4vw,28px);
  padding-bottom: max(clamp(14px,3vw,20px),env(safe-area-inset-bottom,0px));
  background: #fff;
  border-top: 1px solid #e4e4e6;
  box-shadow: 0 -6px 28px rgba(37,37,41,.1);
  transform: translateY(100%);
  opacity: 0;
  transition: transform .35s ease,opacity .3s ease;
  pointer-events: none
}
.agro-cookie-consent.agro-cookie-consent--visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto
}
.agro-cookie-consent[hidden] {
  display: none!important
}
.agro-cookie-consent__inner {
  box-sizing: border-box;
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px,2.5vw,20px)
}
.agro-cookie-consent__text {
  margin: 0;
  flex: 1 1 16rem;
  font-family: Roboto,var(--font, system-ui),system-ui,sans-serif;
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.5;
  color: #59595b
}
.agro-cookie-consent__link {
  color: #513172;
  text-decoration: underline;
  text-underline-offset: 0.12em
}
.agro-cookie-consent__link:hover {
  text-decoration-thickness: 1.5px
}
.agro-cookie-consent__actions {
  flex: 0 0 auto;
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}
.agro-cookie-consent__btn {
  font-family: Montserrat,var(--font, system-ui),system-ui,sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
  padding: 12px 24px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background .2s ease,color .2s ease,box-shadow .2s ease
}
.agro-cookie-consent__btn--primary {
  background: #513172;
  color: #fff;
  box-shadow: 0 2px 8px rgba(81,49,114,.25)
}
.agro-cookie-consent__btn--primary:hover {
  background: #3d2560
}
.agro-cookie-consent__btn--primary:focus-visible {
  outline: 2px solid #513172;
  outline-offset: 2px
}
@media (max-width:600px) {
  .agro-cookie-consent {
    max-height: 25vh;
    overflow-y: auto
  }
  .agro-cookie-consent__inner {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start
  }
  .agro-cookie-consent__text {
    flex: 0 0 auto
  }
  .agro-cookie-consent__actions {
    justify-content: stretch
  }
  .agro-cookie-consent__btn {
    width: 100%
  }
}