/* Cookie consent banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  background: #2c2c2c;
  color: #f5f5f5;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.25);
  padding: 16px 12px;
  transform: translateY(0);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 1;
}

.cookie-banner--hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.cookie-banner__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-banner__text {
  flex: 1 1 320px;
  font-size: 14px;
  line-height: 1.45;
}

.cookie-banner__text p {
  margin: 0 0 6px;
}

.cookie-banner__text a {
  color: #9fd4ff;
  text-decoration: underline;
}

.cookie-banner__text a:hover,
.cookie-banner__text a:focus {
  color: #ffffff;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex: 0 0 auto;
}

.cookie-banner__btn {
  border: none;
  border-radius: 3px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  line-height: 1.2;
}

.cookie-banner__btn--accept {
  background: #47642f;
  color: #fff;
}

.cookie-banner__btn--accept:hover,
.cookie-banner__btn--accept:focus {
  background: #3a5226;
  color: #fff;
}

.cookie-banner__btn--reject {
  background: transparent;
  color: #f5f5f5;
  border: 1px solid #aaa;
}

.cookie-banner__btn--reject:hover,
.cookie-banner__btn--reject:focus {
  background: #444;
  color: #fff;
}

@media (max-width: 767px) {
  .cookie-banner__actions {
    width: 100%;
  }

  .cookie-banner__btn {
    flex: 1 1 auto;
    text-align: center;
  }
}
