/* Strat vizual separat, ușor de ajustat fără a atinge logica checkout-ului. */
body {
  background:
    radial-gradient(circle at 8% 6%, rgba(34, 126, 80, .10), transparent 26rem),
    radial-gradient(circle at 92% 22%, rgba(202, 157, 52, .08), transparent 24rem),
    #f4f7f5;
}

.checkout-top {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #061522 0%, #0a2b2a 62%, #12472f 100%);
  box-shadow: 0 10px 35px rgba(6, 21, 34, .16);
}

.checkout-top::after {
  content: "";
  position: absolute;
  inset: auto -8% -85px 35%;
  height: 150px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  transform: rotate(-4deg);
  pointer-events: none;
}

.checkout-nav,
.checkout-steps { position: relative; z-index: 1; }
.checkout-brand-mark { box-shadow: 0 8px 22px rgba(0, 0, 0, .22); }
.checkout-back { padding: 9px 13px; border-radius: 9px; transition: background .2s ease; }
.checkout-back:hover { background: rgba(255, 255, 255, .09); }

.checkout-card {
  border-color: rgba(18, 63, 43, .12);
  box-shadow: 0 18px 48px rgba(7, 34, 24, .08);
}

.checkout-card-head {
  background: linear-gradient(180deg, #fff, #fbfdfb);
}

.form-section h2 {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #123823;
}

.form-section h2::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d0a334;
  box-shadow: 0 0 0 5px rgba(208, 163, 52, .12);
}

.field input,
.field textarea,
.field select { transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.field input:hover,
.field textarea:hover,
.field select:hover { border-color: #9eb8aa; }
.choice { transition: border-color .2s ease, background .2s ease, transform .2s ease; }
.choice:not(.disabled):hover { border-color: #67a582; transform: translateY(-1px); }
.submit-order { min-height: 54px; transition: transform .2s ease, box-shadow .2s ease; }
.submit-order:not(:disabled):hover { transform: translateY(-2px); box-shadow: 0 11px 25px rgba(23, 104, 59, .3); }
.summary-item img { border: 1px solid #e7ede9; }
.secure-box { border: 1px solid #e7ece9; }

@media (max-width: 560px) {
  .checkout-brand span:last-child { font-size: .79rem; }
  .checkout-brand-mark { width: 38px; height: 38px; }
  .checkout-card { border-radius: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
