/* ═══════ CART — STEP BAR ══════════════════════════════════ */
.cst-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 32px 0;
  max-width: 480px;
  margin: 0 auto;
}
.cst-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.cst-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.3);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s;
}
.cst-lbl {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  transition: color 0.35s;
  white-space: nowrap;
}
.cst-line {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 10px;
  margin-bottom: 22px;
  border-radius: 1px;
  transition: background 0.35s;
}
.cst-line.done {
  background: var(--orange);
}
.cst-step.active .cst-num {
  background: linear-gradient(135deg, var(--red), var(--orange));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 18px rgba(232, 25, 44, 0.3);
}
.cst-step.active .cst-lbl {
  color: var(--white);
}
.cst-step.done .cst-num {
  background: rgba(244, 123, 32, 0.12);
  border-color: var(--orange);
  color: var(--orange);
}
.cst-step.done .cst-lbl {
  color: var(--orange);
}

/* ═══════ CART — STEP PANELS ═══════════════════════════════ */
.csp {
  max-width: 540px;
  margin: 28px auto 0;
  padding: 0 20px 64px;
}
.csp-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 22px;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.csp-nav {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}
.csp-back {
  flex: 0 0 auto;
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--btn-radius);
  background: rgba(255, 255, 255, 0.025);
  color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s,
    transform 0.2s var(--ease);
}
.csp-back:hover {
  border-color: rgba(255, 255, 255, 0.32);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}
.csp-next {
  flex: 1;
  padding: 15px 22px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  border: none;
  border-radius: var(--btn-radius);
  color: #fff;
  cursor: pointer;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 8px 22px rgba(244, 123, 32, 0.22);
  transition:
    opacity 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
}
.csp-next:hover {
  opacity: 0.95;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(244, 123, 32, 0.28);
}

/* ═══════ CART — STEP 3 MINI SUMMARY ═══════════════════════ */
.csp-mini-summary {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 14px 16px;
  margin-bottom: 4px;
}
.csp-mini-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}
.csp-mini-row:last-of-type {
  border-bottom: none;
}
.csp-mini-row strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}
.csp-mini-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0 0;
  margin-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.csp-mini-total span {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.csp-mini-total strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--yellow);
}

/* ═══════ CART — ITEMS (shared step 1 + mini summary) ══════ */
.cart-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.cart-item:last-child {
  border-bottom: none;
}
.cart-item-img {
  width: 68px;
  height: 102px;
  flex-shrink: 0;
  overflow: hidden;
}
.cart-item-img .img-placeholder {
  width: 100%;
  height: 100%;
}
.cart-item-info {
  flex: 1;
  min-width: 0;
}
.cart-item-name {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
  line-height: 1.2;
}
.cart-item-price {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--yellow);
  margin-bottom: 10px;
}
.cart-item-qty {
  display: flex;
  align-items: center;
}
.cart-item-qty button {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.2s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.cart-item-qty button:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(244, 123, 32, 0.45);
  transform: scale(1.06);
}
.cart-item-qty span {
  width: 34px;
  height: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 600;
}
.cart-item-remove {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.25);
  font-size: 13px;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s;
  align-self: flex-start;
  line-height: 1;
}
.cart-item-remove:hover {
  color: var(--red);
}
.cart-custom-badge {
  position: absolute;
  bottom: 4px;
  left: 4px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 5px;
  border-radius: 3px;
  line-height: 1.4;
  pointer-events: none;
}
/* Cart item variant (size + color) */
.cart-item-variant {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}
.cart-item-color-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
  display: inline-block;
}
.cart-item-variant-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.04em;
  text-transform: capitalize;
}
.cart-item-size-chip {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  padding: 1px 5px;
  color: rgba(255, 255, 255, 0.65);
}
/* Checkout mini-summary variant meta */
.csp-variant-meta {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0;
}
/* QV size required marker */
.qv-size-required {
  color: var(--red);
  margin-left: 2px;
}
.cart-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 4px;
}
.cart-total-row span {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.cart-total-row strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--yellow);
}
.cart-empty {
  text-align: center;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cart-empty p {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}
.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.pay-method-option {
  cursor: pointer;
  display: block;
}
.pay-method-option input[type="radio"] {
  display: none;
}
.pay-method-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  transition:
    border-color 0.2s,
    background 0.2s;
}
.pay-method-option input:checked + .pay-method-box {
  border-color: var(--orange);
  background: rgba(244, 123, 32, 0.07);
}
.pay-method-box:hover {
  border-color: rgba(255, 255, 255, 0.22);
}
.pay-method-icon {
  font-size: 20px;
  flex-shrink: 0;
}
.pay-method-box strong {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.pay-method-box span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.38);
  display: block;
}

/* ═══════ FREE SHIPPING PROGRESS BAR ══════════════════════ */
.ship-bar-wrap {
  padding: 18px 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 12px;
}
.ship-bar-msg {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 8px;
}
.ship-bar-msg strong {
  color: var(--yellow);
}
.ship-bar-msg.ship-bar-done {
  color: #4caf50;
}
.ship-bar-msg.ship-bar-done strong {
  color: #4caf50;
}
.ship-bar-track {
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
}
.ship-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--orange));
  border-radius: 2px;
  transition: width 0.5s var(--ease);
}
.ship-bar-done .ship-bar-fill {
  background: linear-gradient(90deg, #43a047, #4caf50);
}

/* ═══════ ORDER CONFIRMATION PAGE ══════════════════════════ */
.confirm-wrap {
  max-width: 600px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 96px) clamp(16px, 5vw, 40px);
  text-align: center;
}
.confirm-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 28px;
  background: rgba(76, 175, 80, 0.12);
  border: 2px solid rgba(76, 175, 80, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}
.confirm-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.confirm-title em {
  font-style: normal;
  color: #4caf50;
}
.confirm-icon-fail {
  background: rgba(232, 25, 44, 0.12);
  border-color: rgba(232, 25, 44, 0.4);
  color: #ff6b6b;
}
.confirm-title-fail em {
  color: #ff6b6b;
}
.confirm-icon-pending {
  background: rgba(245, 166, 35, 0.12);
  border-color: rgba(245, 166, 35, 0.4);
  color: #f5a623;
}
.confirm-title-pending em {
  color: #f5a623;
}
.confirm-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 28px;
}
.confirm-num span {
  color: var(--yellow);
}
.confirm-summary {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 20px 24px;
  margin-bottom: 24px;
  text-align: left;
}
.confirm-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
}
.confirm-summary-row:last-child {
  border-bottom: none;
}
.confirm-summary-row span {
  color: rgba(255, 255, 255, 0.5);
}
.confirm-summary-row strong {
  color: var(--white);
}
.confirm-notice {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  margin-bottom: 32px;
}
.confirm-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.confirm-wa-row {
  text-align: center;
}
.confirm-wa-btn {
  display: inline-block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #25d366;
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: 4px;
  padding: 10px 20px;
  text-decoration: none;
  transition:
    background 0.18s,
    color 0.18s;
}
.confirm-wa-btn:hover {
  background: rgba(37, 211, 102, 0.12);
}
.confirm-empty {
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  margin-bottom: 28px;
  font-size: 14px;
}

