body.consent-open {
  overflow: hidden;
}

.consent-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 29, 35, 0.55);
  z-index: 9998;
}

.consent-banner {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: min(720px, calc(100% - 32px));
  background: #ffffff;
  color: #1f2933;
  border: 1px solid #d9d2c5;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  z-index: 9999;
  padding: 24px;
}

.consent-header h3 {
  margin: 0 0 12px 0;
  font-size: 1.35rem;
}

.consent-header p {
  margin: 0 0 12px 0;
  line-height: 1.6;
}

.consent-options {
  margin-top: 20px;
  display: grid;
  gap: 14px;
}

.consent-option {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  border: 1px solid #e5ddd0;
  border-radius: 16px;
  padding: 16px;
  background: #fcfbf8;
}

.consent-option strong {
  display: block;
  margin-bottom: 6px;
}

.consent-option p {
  margin: 0;
  color: #5b6b73;
  line-height: 1.5;
}

.consent-option input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
}

.consent-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.consent-actions button {
  appearance: none;
  border: 1px solid #d9d2c5;
  background: #ffffff;
  color: #1f2933;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  cursor: pointer;
}

.consent-actions .consent-button-primary {
  background: #d08b2e;
  border-color: #d08b2e;
  color: #ffffff;
}

@media (max-width: 640px) {
  .consent-banner {
    bottom: 16px;
    width: calc(100% - 20px);
    padding: 18px;
    border-radius: 18px;
  }

  .consent-option {
    flex-direction: column;
  }

  .consent-actions {
    flex-direction: column;
  }

  .consent-actions button {
    width: 100%;
  }
}