.cookie-consent {
  position: fixed;
  right: 18px;
  bottom: 86px;
  z-index: 120;
  display: none;
  width: min(420px, calc(100% - 32px));
  padding: 1rem;
  color: #ffffff;
  background: #11100f;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 5px solid #ff6a00;
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
}

.cookie-consent.is-visible {
  display: grid;
  gap: 0.85rem;
}

.cookie-consent p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  line-height: 1.55;
}

.cookie-consent a {
  color: #ffffff;
  font-weight: 800;
  text-decoration: underline;
}

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

.cookie-consent button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 0.9rem;
  color: #11100f;
  background: #ff6a00;
  border: 0;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.cookie-consent button:last-child {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

@media (max-width: 767px) {
  .cookie-consent {
    right: 16px;
    bottom: 84px;
    left: 16px;
    width: auto;
  }
}
