/* Craft checkout consent — gleiche Struktur wie Dreams (.consent-overlay) */
.consent-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(11, 19, 16, 0.55);
  backdrop-filter: blur(6px);
}

.consent-overlay.show {
  display: flex;
}

.consent-box {
  max-width: 470px;
  width: 100%;
  background: linear-gradient(180deg, #ffffff, #f3f7f4);
  border: 1px solid rgba(15, 40, 28, 0.12);
  border-radius: 20px;
  padding: 30px 28px;
  box-shadow: 0 28px 70px rgba(13, 30, 20, 0.18);
}

.consent-box h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 12px;
  color: #0d1411;
}

.consent-box > p {
  color: #586460;
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0 0 18px;
}

.consent-check {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  color: #586460;
  font-size: 13.5px;
  line-height: 1.55;
  cursor: pointer;
  text-align: left;
}

.consent-check input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: #2fb34a;
}

.consent-check a {
  color: #1a8a39;
  text-decoration: underline;
}

.consent-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
  margin-top: 22px;
  flex-wrap: wrap;
}

.consent-cancel {
  background: none;
  border: 1px solid rgba(15, 40, 28, 0.14);
  color: #586460;
  padding: 12px 18px;
  border-radius: 100px;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
}

.consent-proceed {
  border: none;
  border-radius: 100px;
  padding: 12px 22px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  background: linear-gradient(135deg, #2fb34a, #1a8a39);
  color: #fff;
  box-shadow: 0 10px 24px rgba(47, 179, 74, 0.28);
  font-family: inherit;
}

.consent-proceed:disabled,
.consent-proceed.disabled {
  opacity: 0.4;
  pointer-events: none;
  box-shadow: none;
}
