.consent-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #0f172a;
  color: #e5e7eb;
  padding: 16px;
  padding-bottom: max(16px, env(safe-area-inset-bottom, 0px));
  border-top: 1px solid #1f2937;
  box-sizing: border-box;
}

.consent-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.consent-inner p {
  margin: 0;
  flex: 1 1 320px;
  font-size: 14px;
  line-height: 1.45;
}

.consent-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.consent-btn {
  border: 0;
  border-radius: 8px;
  padding: 10px 14px;
  font-weight: 600;
  cursor: pointer;
  font: inherit;
}

.consent-accept {
  background: #06b6d4;
  color: #041014;
}

.consent-essential {
  background: #101827;
  color: #e5e7eb;
  border: 1px solid #334155;
}

.consent-link {
  color: #93c5fd;
  text-decoration: underline;
}

@media (max-width: 480px) {
  .consent-inner {
    align-items: flex-start;
  }

  .consent-actions {
    width: 100%;
  }

  .consent-btn {
    flex: 1 1 auto;
  }
}
