.checkout-code {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  background: var(--sage);
  box-shadow: var(--shadow);
  font-weight: bold;
}

.checkout-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 10px;
}

.checkout-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text);
  line-height: 1.45;
}

/* On cache la checkbox native */
.checkout-item input {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  border-radius: 4px;
  border: 1.5px solid rgba(0, 0, 0, 0.3);
  display: grid;
  place-items: center;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Case cochée */
.checkout-item input:checked {
  background: var(--sage);
  border-color: var(--sage);
}

/* Petit check */
.checkout-item input:checked::after {
  content: "✓";
  font-size: 12px;
  color: #000;
}

/* Texte quand coché */
.checkout-item input:checked + span {
  text-decoration: line-through;
  opacity: 0.6;
}
