.didda-cookie-consent {
  position: fixed;
  inset: auto 0 0;
  z-index: 9999;
  background: #111;
  color: #fff;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

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

.didda-cookie-consent__inner {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.didda-cookie-consent__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}

.didda-cookie-consent__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.didda-cookie-consent__link,
.didda-cookie-consent__button {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.didda-cookie-consent__link {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.didda-cookie-consent__button {
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  padding: 8px 14px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.didda-cookie-consent__button:hover,
.didda-cookie-consent__button:focus-visible {
  background: #fff;
  color: #111;
}

@media (max-width: 800px) {
  .didda-cookie-consent__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .didda-cookie-consent__actions {
    width: 100%;
    justify-content: space-between;
  }
}
