.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px clamp(16px, 4vw, 28px);
  background: rgba(247, 243, 235, 0.96);
  border-top: 1px solid var(--mist, #e8e2d6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 -8px 32px rgba(20, 32, 31, 0.08);
}

.cookie-consent[hidden] {
  display: none !important;
}

.cookie-consent__inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
}

.cookie-consent__text {
  flex: 1 1 240px;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #3f524f;
}

.cookie-consent__text a {
  color: #0b3d3a;
  font-weight: 600;
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-consent__btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 16px;
  border-radius: 12px;
}

.cookie-consent__btn--accept {
  color: #fff;
  background: linear-gradient(135deg, #0b3d3a, #1a8a82);
}

.cookie-consent__btn--reject {
  color: #14201f;
  background: #fff;
  border: 1px solid #e8e2d6;
}
