.cookie-consent {
  position: fixed;
  right: 10px;
  bottom: 10px;
  left: auto;
  z-index: 99999;
  max-width: min(100vw - 20px, 300px);
  margin: 0;
  font-family: inherit;
}
.cookie-consent[hidden] { display: none !important; }
.cookie-consent__box {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 6px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
  padding: 8px 10px;
}
.cookie-consent__row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.cookie-consent__text {
  color: #777;
  font-size: 11px;
  line-height: 1.35;
  margin: 0;
  flex: 1 1 140px;
}
.cookie-consent__link {
  color: #00a090;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-consent__link:hover { color: #00796b; }
.cookie-consent .btn.cookie-consent__btn {
  font-size: 11px !important;
  line-height: 1.1 !important;
  padding: 2px 10px !important;
  min-width: auto !important;
  min-height: 0 !important;
  height: auto !important;
  flex-shrink: 0;
  opacity: 0.9;
}
@media (max-width: 575.98px) {
  .cookie-consent {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    max-width: min(98vw, 340px);
    bottom: 12px;
  }
  .cookie-consent__box {
    padding: 6px 8px;
  }
  .cookie-consent__row {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 6px;
  }
  .cookie-consent__text {
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
    text-align: left;
    font-size: 10px;
    line-height: 1.25;
    white-space: nowrap;
  }
  .cookie-consent .btn.cookie-consent__btn {
    padding: 1px 10px !important;
    line-height: 1.05 !important;
    min-height: 0 !important;
    height: auto !important;
    flex-shrink: 0;
    align-self: center;
  }
}
