.cookie-consent {
  position: fixed;
  z-index: 9999;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  max-width: 520px;
  margin: 0 auto;
  padding: 1.1rem 1.25rem;
  border-radius: 0.75rem;
  background: #ffffff;
  color: #212121;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(0, 0, 0, 0.08);
  transform: translateY(120%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
}

.cookie-consent.is-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.cookie-consent__title {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
}

.cookie-consent__text {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(33, 33, 33, 0.85);
}

.cookie-consent__text a {
  color: inherit;
  text-decoration: underline;
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-consent__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  font-family: inherit;
}

.cookie-consent__btn--accept {
  background-color: #f47f28;
  border-color: #f47f28;
  color: #ffffff;
}

.cookie-consent__btn--accept:hover,
.cookie-consent__btn--accept:focus-visible {
  background-color: #e06f1a;
  color: #ffffff;
}

.cookie-consent__btn--decline {
  background: transparent;
  border-color: #d1d5db;
  color: #374151;
}

.cookie-consent__btn--decline:hover,
.cookie-consent__btn--decline:focus-visible {
  background-color: #f3f4f6;
}

@media (min-width: 576px) {
  .cookie-consent {
    left: auto;
    right: 1.5rem;
    bottom: 1.5rem;
    margin: 0;
  }
}
