/* checkout-cart.css — generated by build-os-course.mjs. DO NOT EDIT. Edit the matching file under src/. */
/* src/css/checkout-cart.css */
[data-checkout] {
  --bvc-ink: #1c1c1c;
  --bvc-muted: #5c6470;
  --bvc-line: #cfd4dc;
  --bvc-accent: #005596;
  --bvc-error: #b3261e;
  --bvc-error-bg: #fdf1f0;
  --bvc-radius: 6px;
  --bvc-gap: 1rem;
  color: var(--bvc-ink);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  line-height: 1.5;
}
.bvc-progress {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}
.bvc-progress__item {
  flex: 1;
  border-top: 3px solid var(--bvc-line);
  padding-top: 0.5rem;
  font-size: 0.8125rem;
  color: var(--bvc-muted);
  list-style: none;
}
.bvc-progress__item::marker {
  content: none;
}
.bvc-progress__item.is-current {
  border-top-color: var(--bvc-accent);
  color: var(--bvc-ink);
  font-weight: 600;
}
.bvc-progress__item.is-complete {
  border-top-color: var(--bvc-accent);
}
.bvc-step[hidden] {
  display: none;
}
.bvc-actions [data-back][hidden] {
  display: none;
}
.bvc-step__heading {
  font-size: 1.5rem;
  margin: 0 0 0.25rem;
}
.bvc-step__heading:focus-visible {
  outline: 2px solid var(--bvc-accent);
  outline-offset: 4px;
}
.bvc-step__intro {
  color: var(--bvc-muted);
  margin: 0 0 1.5rem;
}
.bvc-grid {
  display: grid;
  gap: var(--bvc-gap);
  grid-template-columns: 1fr;
}
@media (min-width: 40rem) {
  .bvc-grid {
    grid-template-columns: 1fr 1fr;
  }
  .bvc-field--wide {
    grid-column: 1 / -1;
  }
}
.bvc-field[hidden] {
  display: none;
}
.bvc-field__label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.bvc-field__optional {
  font-weight: 400;
  color: var(--bvc-muted);
}
.bvc-field__required {
  color: var(--bvc-error);
  margin-left: 0.15rem;
}
.bvc-field input,
.bvc-field select {
  width: 100%;
  min-height: 44px;
  padding: 0.5rem 0.65rem;
  border: 1px solid var(--bvc-line);
  border-radius: var(--bvc-radius);
  background: #fff;
  color: inherit;
  font: inherit;
}
.bvc-field input:focus-visible,
.bvc-field select:focus-visible {
  outline: 2px solid var(--bvc-accent);
  outline-offset: 1px;
  border-color: var(--bvc-accent);
}
.bvc-field__hint {
  margin: 0.25rem 0 0;
  font-size: 0.8125rem;
  color: var(--bvc-muted);
}
.bvc-field__error {
  margin: 0.25rem 0 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--bvc-error);
}
.bvc-field__error[hidden] {
  display: none;
}
.bvc-field.is-invalid input,
.bvc-field.is-invalid select {
  border-color: var(--bvc-error);
  background: var(--bvc-error-bg);
}
.bvc-subheading {
  font-size: 1.125rem;
  margin: 1.75rem 0 0.75rem;
}
.bvc-step__heading + .bvc-step__intro + .bvc-subheading {
  margin-top: 1rem;
}
.bvc-check--billing {
  font-weight: 600;
}
.bvc-billing {
  margin-top: 0.5rem;
}
.bvc-billing[hidden] {
  display: none;
}
.bvc-cart-summary {
  margin: 1rem 0 1.5rem;
}
.bvc-cart-summary:empty {
  display: none;
}
.bvc-consent {
  margin-top: 2rem;
}
.bvc-consent__title {
  font-size: 1.125rem;
  margin: 0 0 0.5rem;
}
.bvc-terms-box {
  max-height: 14rem;
  overflow-y: auto;
  padding: 1rem;
  border: 1px solid var(--bvc-line);
  border-radius: var(--bvc-radius);
  background: #fafbfc;
  font-size: 0.9375rem;
  -webkit-overflow-scrolling: touch;
}
.bvc-terms-box:focus-visible {
  outline: 2px solid var(--bvc-accent);
}
.bvc-check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: 0.85rem;
  min-height: 44px;
}
.bvc-check input {
  margin-top: 0.2rem;
  width: 1.15rem;
  height: 1.15rem;
  flex: none;
}
.bvc-check input:disabled + span {
  color: var(--bvc-muted);
}
.bvc-actions {
  display: flex;
  flex-direction: column-reverse;
  gap: 0.75rem;
  margin-top: 2rem;
}
@media (min-width: 40rem) {
  .bvc-actions {
    flex-direction: row;
    justify-content: space-between;
  }
}
.bvc-button {
  min-height: 48px;
  padding: 0.7rem 1.5rem;
  border: 1px solid var(--bvc-accent);
  border-radius: var(--bvc-radius);
  background: var(--bvc-accent);
  color: #fff;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}
.bvc-button--secondary {
  background: transparent;
  color: var(--bvc-accent);
}
.bvc-button.is-disabled {
  opacity: 0.55;
}
.bvc-button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.bvc-summary {
  margin: 1rem 0 0;
  padding: 0.75rem 1rem;
  border-left: 4px solid var(--bvc-error);
  background: var(--bvc-error-bg);
  color: var(--bvc-error);
  font-weight: 600;
}
.bvc-summary[hidden] {
  display: none;
}
.bvc-notice {
  margin: 1rem 0;
  padding: 0.75rem 1rem;
  border-left: 4px solid var(--bvc-accent);
  background: #eef4fa;
}
.bvc-notice[hidden] {
  display: none;
}
.bvc-choice {
  display: grid;
  gap: var(--bvc-gap);
  grid-template-columns: 1fr;
}
@media (min-width: 40rem) {
  .bvc-choice {
    grid-template-columns: 1fr 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
  }
}
