.cookie-consent {
  position: fixed;
  z-index: 9999;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #0f0f10;
  color: #ffffff;
  padding: 14px 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

.cookie-consent__link {
  color: #ffffff;
  text-decoration: underline;
}

.cookie-consent__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-consent__btn {
  border: 1px solid #ffffff;
  background: #ffffff;
  color: #111111;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 13px;
  line-height: 1.2;
  cursor: pointer;
}

.cookie-consent__btn--ghost {
  background: transparent;
  color: #ffffff;
}

.cookie-preferences-trigger {
  background: none;
  border: 0;
  padding: 0;
  text-decoration: underline;
  cursor: pointer;
  color: inherit;
  font: inherit;
}

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

  .cookie-consent__actions {
    width: 100%;
  }

  .cookie-consent__btn {
    flex: 1;
  }
}
