.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1030;
  padding: 24px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.cookie-consent.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.cookie-consent__inner {
  pointer-events: auto;
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  padding: 24px;
  background: rgba(12, 24, 14, 0.5);
  border-radius: 8px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}
.cookie-consent__text {
  flex: 1;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #ffffff;
}
.cookie-consent__link {
  color: #ffffff;
  text-decoration: underline;
  text-underline-position: from-font;
}
.cookie-consent__link:hover,
.cookie-consent__link:focus {
  color: #ffffff;
  text-decoration: underline;
}
.cookie-consent__ext {
  width: 12px;
  height: 12px;
  margin-left: 3px;
  vertical-align: -1px;
  flex: none;
}
.cookie-consent__nowrap {
  white-space: nowrap;
}
.cookie-consent__buttons {
  flex: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-consent__btn {
  box-sizing: border-box;
  min-width: 120px;
  height: 50px;
  padding: 14px 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  cursor: pointer;
  transition: opacity 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
.cookie-consent__btn:focus-visible {
  outline: 2px solid #ffdd2d;
  outline-offset: 2px;
}
.cookie-consent__btn--accept {
  background: #ffdd2d;
  border-color: #ffdd2d;
  color: #333333;
}
.cookie-consent__btn--accept:hover {
  opacity: 0.88;
}
.cookie-consent__btn--decline {
  background: transparent;
  border-color: #ffdd2d;
  color: #ffffff;
}
.cookie-consent__btn--decline:hover {
  background: #ffdd2d;
  color: #333333;
}
@media (max-width: 767px) {
  .cookie-consent {
    padding: 12px;
  }
  .cookie-consent__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 16px 20px;
  }
  .cookie-consent__buttons {
    width: 100%;
    gap: 8px;
  }
  .cookie-consent__btn {
    flex: 1 1 0;
    min-width: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .cookie-consent {
    transition: none;
    transform: none;
  }
}
