/* Page-specific presentation for checkout.html. Keep behavior in assets/js. */
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: #07080f;
  color: #fff;
  font-family: Manrope, Arial;
}
.shell {
  max-width: 900px;
  margin: auto;
  padding: 0 28px;
}
.top {
  height: 76px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ffffff17;
}
.brand {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.055em;
}
.progress {
  color: #b8ffda;
  font-size: 12px;
  font-weight: 700;
  margin-left: 0;
}
main {
  padding: 43px 0 70px;
}
.eyebrow {
  color: #b8ffda;
  font-size: 11px;
  letter-spacing: 0.12em;
}
h1 {
  font-size: 43px;
  letter-spacing: -0.07em;
  margin: 10px 0 30px;
}
.layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 25px;
}
section,
.summary {
  border: 1px solid #ffffff18;
  border-radius: 16px;
  padding: 24px;
  background: #10121c;
}
h2 {
  font-size: 17px;
  margin: 0 0 20px;
}
label {
  font-size: 12px;
  font-weight: 700;
  display: block;
  margin: 15px 0 8px;
}
input,
select {
  width: 100%;
  background: #090b12;
  border: 1px solid #303443;
  color: #fff;
  border-radius: 9px;
  padding: 13px;
  font: 13px Manrope;
}
.save {
  margin-top: 17px;
  color: #aab0bd;
  font-size: 12px;
}
.save input {
  width: auto;
  accent-color: #b8ffda;
}
.line {
  display: flex;
  justify-content: space-between;
  color: #b6bbc7;
  font-size: 13px;
  margin: 12px 0;
}
.coupon-box {
  margin: 18px 0;
  padding: 14px;
  border: 1px solid #ffffff19;
  border-radius: 10px;
  background: #0b0d14;
}
.coupon-box label {
  margin-top: 0;
}
.coupon-entry {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}
.coupon-entry input,
.coupon-entry select {
  width: 100%;
  text-transform: uppercase;
}
.coupon-entry button {
  padding: 0 14px;
  border: 0;
  border-radius: 8px;
  color: #082018;
  background: #b8ffda;
  cursor: pointer;
  font-weight: 800;
}
.coupon-entry button:disabled {
  opacity: 0.55;
}
.coupon-choice {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 11px 0 0;
  color: #b8ffda;
  font-size: 11px;
}
.coupon-choice[hidden] {
  display: none !important;
}
.coupon-choice input {
  width: auto;
  accent-color: #b8ffda;
}
#couponMessage {
  min-height: 17px;
  margin: 8px 0 0;
  color: #ff9baa;
  font-size: 10px;
  line-height: 1.5;
}
#couponMessage.coupon-success,
.discount-line {
  color: #b8ffda;
}
.total {
  border-top: 1px solid #ffffff19;
  margin-top: 18px;
  padding-top: 17px;
  color: #fff;
  font-weight: 800;
}
.console-note {
  margin: 17px 0;
  border: 1px solid #69aaff66;
  border-left: 3px solid #69aaff;
  border-radius: 10px;
  padding: 12px;
  background: #0b1628;
  color: #c6d6ef;
  font-size: 11px;
  line-height: 1.55;
}
.console-note strong {
  display: block;
  margin-bottom: 4px;
  color: #9bc6ff;
  font-size: 10px;
  letter-spacing: 0.07em;
}
.total b {
  color: #b8ffda;
}
.next {
  border: 0;
  width: 100%;
  margin-top: 23px;
  border-radius: 10px;
  background: #b8ffda;
  color: #082018;
  padding: 14px;
  font: 800 14px Manrope;
  cursor: pointer;
}
.next:disabled {
  opacity: 0.55;
  cursor: wait;
}
.account-card {
  padding: 16px;
  border: 1px solid #ffffff14;
  border-radius: 11px;
  background: #0b0d14;
}
.account-card b,
.account-card span {
  display: block;
}
.account-card b {
  font-size: 14px;
}
.account-card span {
  margin-top: 4px;
  color: #aab0bd;
  font-size: 12px;
}
.terms {
  font-size: 10px;
  line-height: 1.5;
  color: #858b9a;
  text-align: center;
  margin: 13px 5px 0;
}
@media (max-width: 680px) {
  .shell {
    padding: 0 18px;
  }
  .layout {
    grid-template-columns: 1fr;
  }
  .top {
    min-height: 65px;
    height: auto;
    gap: 10px;
    padding-block: 10px;
  }
  .brand {
    max-width: 150px;
    font-size: 16px;
    line-height: 1.05;
  }
  main {
    padding: 34px 0 52px;
  }
  h1 {
    font-size: 37px;
  }
  section,
  .summary {
    padding: 19px;
  }
  input,
  select {
    font-size: 16px;
  }
}
@media (max-width: 430px) {
  .shell {
    padding-inline: 14px;
  }
  .brand {
    max-width: 32px;
    overflow: hidden;
    white-space: nowrap;
    font-size: 0;
  }
  .coupon-entry {
    grid-template-columns: 1fr;
  }
  .coupon-entry button {
    min-height: 44px;
  }
  input,
  select,
  .next {
    min-height: 46px;
  }
}
