/* =============================================
   GYMSQUAT CHECKOUT — FULL FLOW STYLES
   Steps: Cart → Auth → Details → Shipping → Payment → Confirm
============================================= */

/* ---- Overlay ---- */
.co-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: flex-end;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
  padding: 0;
}
.co-overlay.open { opacity: 1; pointer-events: all; }
.co-overlay.open .co-shell { transform: translate3d(0, 0, 0); }

.co-shell {
  background: #fff;
  width: 100%; max-width: 500px;
  margin: 0;
  border-radius: 0;
  height: 100vh;
  max-height: 100vh;
  display: flex; flex-direction: column;
  transform: translate3d(100%, 0, 0);
  will-change: transform;
  transition: transform 0.4s cubic-bezier(0.34,1.2,0.64,1);
  overflow: hidden;
  font-family: 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
}

/* ---- Header ---- */
.co-header {
  position: relative;
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 20px 28px 16px;
  border-bottom: 1px solid #f0f0f0;
  flex-shrink: 0;
}
.co-brand {
  display: flex; align-items: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 900; font-size: 20px;
  font-style: italic; letter-spacing: 0.04em;
}
.co-brand img { width: 22px; height: 28px; object-fit: cover; object-position: 30% center; margin-right: -1px; }
.co-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #f5f5f5; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; transition: background 0.2s, transform 0.2s;
  color: #0a0a0a;
  z-index: 10;
}
.co-close:hover { background: #e8e8e8; transform: scale(1.05); }
.co-close:hover { background: #e8e8e8; }

/* ---- Progress Bar ---- */
.co-progress {
  padding: 12px 28px 0;
  flex-shrink: 0;
}
.co-steps-bar {
  display: flex; align-items: center; gap: 0;
}
.co-step-dot {
  display: flex; flex-direction: column; align-items: center;
  gap: 4px; flex: 1; cursor: default;
}
.co-step-dot .dot {
  width: 28px; height: 28px; border-radius: 50%;
  background: #f0f0f0; border: 2px solid #e0e0e0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 700; font-size: 12px; color: #9ca3af;
  transition: all 0.3s;
}
.co-step-dot.active .dot { background: #0a0a0a; border-color: #0a0a0a; color: #fff; }
.co-step-dot.done .dot { background: #22c55e; border-color: #22c55e; color: #fff; }
.co-step-dot .label {
  font-family: 'Oswald', sans-serif;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #9ca3af;
}
.co-step-dot.active .label, .co-step-dot.done .label { color: #0a0a0a; }
.co-step-line { flex: 2; height: 2px; background: #e0e0e0; transition: background 0.3s; }
.co-step-line.done { background: #22c55e; }

/* ---- Body / Step Container ---- */
.co-body {
  flex: 1; overflow-y: auto;
  padding: 24px 28px 28px;
  scroll-behavior: smooth;
}
.co-body::-webkit-scrollbar { width: 4px; }
.co-body::-webkit-scrollbar-thumb { background: #e0e0e0; border-radius: 4px; }

/* ---- Step transitions ---- */
.co-step { display: none; animation: stepIn 0.3s ease; }
.co-step.active { display: block; }
@keyframes stepIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

/* ---- Two-column layout (steps 3, 4, 5) ---- */
.co-two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px; align-items: start;
}

/* ---- Step Title ---- */
.co-step-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 900; font-size: 28px;
  text-transform: uppercase; letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.co-step-subtitle {
  font-size: 16px; color: #4b5563; margin-bottom: 20px; line-height: 1.6;
}

/* ===== STEP 0: CART ===== */
.cart-product-row {
  display: flex; gap: 16px; align-items: center;
  padding: 16px; background: #f9f9f9;
  border-radius: 10px; margin-bottom: 16px;
}
.cart-prod-img {
  width: 80px; height: 80px; border-radius: 8px;
  object-fit: cover; flex-shrink: 0;
}
.cart-prod-info { flex: 1; }
.cart-prod-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 800; font-size: 17px;
  text-transform: uppercase; margin-bottom: 4px;
}
.cart-prod-sub { font-size: 15px; color: #6b7280; }
.cart-qty-ctrl {
  display: inline-flex; align-items: center; 
  border: 1.5px solid #d0d0d0; border-radius: 6px; overflow: hidden;
  margin-top: 8px; width: fit-content; background: #fff;
}
.cart-qty-btn {
  width: 32px; height: 32px; border: none; background: transparent;
  cursor: pointer; font-size: 16px; color: #0a0a0a;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.cart-qty-btn:hover { background: #f5f5f5; }
.cart-qty-num {
  font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 16px;
  width: 32px; text-align: center; color: #0a0a0a; border-left: 1px solid #e8e8e8; border-right: 1px solid #e8e8e8;
}
.cart-prod-price {
  font-family: 'Oswald', sans-serif;
  font-weight: 900; font-size: 20px;
}

/* Free shipping banner */
.free-ship-banner {
  background: linear-gradient(135deg, #0a0a0a, #333);
  color: #fff; border-radius: 8px; padding: 12px 16px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px; font-weight: 600;
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 20px;
}
.free-ship-bar-wrap { flex: 1; background: rgba(255,255,255,0.2); border-radius: 99px; height: 6px; }
.free-ship-bar { height: 6px; background: #22c55e; border-radius: 99px; transition: width 0.5s ease; }

/* Upsell */
.co-upsell-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 800; font-size: 15px;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: #6b7280; margin-bottom: 12px;
}
.upsell-grid { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 4px; }
.upsell-card {
  flex-shrink: 0; width: 140px; border: 1.5px solid #e8e8e8;
  border-radius: 10px; overflow: hidden; cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
}
.upsell-card:hover { border-color: #0a0a0a; transform: translateY(-2px); }
.upsell-card.added { border-color: #22c55e; }
.upsell-card img { width: 100%; height: 90px; object-fit: cover; }
.upsell-card-body { padding: 8px; }
.upsell-card-name { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 13px; text-transform: uppercase; }
.upsell-card-price { font-size: 13px; color: #555; margin-top: 2px; }
.upsell-add-btn {
  width: 100%; margin-top: 6px; padding: 6px;
  background: #0a0a0a; color: #fff; border: none;
  border-radius: 5px; font-family: 'Oswald', sans-serif;
  font-weight: 700; font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; cursor: pointer; transition: background 0.2s;
}
.upsell-card.added .upsell-add-btn { background: #22c55e; }

/* Cart order summary box */
.co-summary-box {
  background: #f9f9f9; border-radius: 12px;
  padding: 18px; margin-top: 20px;
}
.co-summary-row {
  display: flex; justify-content: space-between;
  font-size: 16px; color: #4b5563; margin-bottom: 8px;
}
.co-summary-row.total {
  font-family: 'Oswald', sans-serif;
  font-weight: 900; font-size: 20px; color: #0a0a0a;
  border-top: 1px solid #e8e8e8; padding-top: 12px; margin-top: 4px;
}
.co-summary-row .green { color: #22c55e; font-weight: 600; }

/* ===== STEP 1: AUTH ===== */
.auth-options { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
.auth-card {
  border: 2px solid #e8e8e8; border-radius: 12px;
  padding: 24px 20px; text-align: center; cursor: pointer;
  transition: all 0.25s;
}
.auth-card:hover, .auth-card.selected { border-color: #0a0a0a; background: #fafafa; }
.auth-card-icon { font-size: 32px; margin-bottom: 12px; }
.auth-card-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 800; font-size: 18px; text-transform: uppercase;
}
.auth-card-sub { font-size: 13px; color: #6b7280; margin-top: 4px; }

.co-auth-form { max-width: 400px; }
.social-btns { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.social-btn {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; width: 100%; padding: 12px 16px;
  border-radius: 10px; font-size: 14px; font-weight: 600;
  cursor: pointer; transition: all .15s; font-family: inherit; letter-spacing: .01em;
}
.social-btn-google {
  background: #fff; color: #333; border: 1.5px solid #ddd;
}
.social-btn-google:hover { background: #f7f7f7; box-shadow: 0 2px 8px rgba(0,0,0,.12); border-color: #bbb; }
.social-btn-apple {
  background: #0a0a0a; color: #fff; border: 1.5px solid #0a0a0a;
}
.social-btn-apple:hover { background: #333; }

/* Nav cart button + badge */
.nav-cart-btn {
  position: relative; background: none;
  border: 1.5px solid #d0d0d0;
  color: #333; font-size: 18px; width: 40px; height: 40px;
  border-radius: 8px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .15s, color .15s;
}
.nav-cart-btn:hover { border-color: #0a0a0a; color: #0a0a0a; }
.cart-badge {
  position: absolute; top: -6px; right: -6px;
  background: #c8ff00; color: #000;
  font-size: 10px; font-weight: 900;
  width: 18px; height: 18px; border-radius: 50%;
  display: none; align-items: center; justify-content: center;
}

.divider {
  display: flex; align-items: center; gap: 12px;
  color: #bbb; font-size: 13px; margin: 16px 0;
}
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: #e8e8e8; }


/* ===== FORMS ===== */
.co-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.co-form-grid.single { grid-template-columns: 1fr; }
.co-form-group { display: flex; flex-direction: column; gap: 6px; }
.co-form-group.full { grid-column: 1 / -1; }
.co-label {
  font-family: 'Oswald', sans-serif;
  font-weight: 700; font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase; color: #4b5563;
}
.co-input, .co-select {
  width: 100%; padding: 13px 14px;
  border: 1.5px solid #e0e0e0; border-radius: 8px;
  font-family: 'Inter', sans-serif; font-size: 16px;
  color: #0a0a0a; background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none; appearance: none;
}
.co-input:focus, .co-select:focus {
  border-color: #0a0a0a;
  box-shadow: 0 0 0 3px rgba(10,10,10,0.06);
}
.co-input.error { border-color: #ef4444; }
.co-input.valid { border-color: #22c55e; }
.co-error-msg { font-size: 12px; color: #ef4444; min-height: 16px; }

/* Phone group */
.phone-group { display: flex; gap: 8px; }
.phone-code {
  width: 100px; flex-shrink: 0;
  padding: 13px 10px;
  border: 1.5px solid #e0e0e0; border-radius: 8px;
  font-size: 14px; background: #fff;
  transition: border-color 0.2s; outline: none; cursor: pointer;
}
.phone-code:focus { border-color: #0a0a0a; }

/* Address label buttons */
.addr-labels { display: flex; gap: 10px; }
.addr-label-btn {
  flex: 1; padding: 11px; border: 1.5px solid #e0e0e0;
  border-radius: 8px; background: #fff; cursor: pointer;
  font-family: 'Oswald', sans-serif;
  font-weight: 700; font-size: 14px; text-transform: uppercase;
  letter-spacing: 0.06em; transition: all 0.2s;
}
.addr-label-btn:hover { border-color: #0a0a0a; }
.addr-label-btn.selected { border-color: #0a0a0a; background: #0a0a0a; color: #fff; }

/* Area autocomplete */
.autocomplete-wrap { position: relative; }
.autocomplete-list {
  position: absolute; top: calc(100% + 4px); left: 0; right: 0;
  background: #fff; border: 1.5px solid #e0e0e0;
  border-radius: 8px; z-index: 100;
  max-height: 200px; overflow-y: auto;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.autocomplete-item {
  padding: 10px 14px; cursor: pointer; font-size: 14px;
  transition: background 0.15s;
}
.autocomplete-item:hover { background: #f5f5f5; }

/* ===== ORDER SUMMARY SIDEBAR ===== */
.co-order-sidebar {
  background: #f9f9f9; border-radius: 12px;
  padding: 22px; position: relative; top: auto;
}
.co-sidebar-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 800; font-size: 16px;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.co-sidebar-product {
  display: flex; gap: 12px; margin-bottom: 16px;
  padding-bottom: 16px; border-bottom: 1px solid #e8e8e8;
}
.co-sidebar-product img { width: 56px; height: 56px; border-radius: 6px; object-fit: cover; }
.co-sidebar-prod-info { flex: 1; }
.co-sidebar-prod-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 800; font-size: 15px; text-transform: uppercase;
}
.co-sidebar-prod-qty { font-size: 13px; color: #6b7280; }
.co-sidebar-prod-price {
  font-family: 'Oswald', sans-serif;
  font-weight: 900; font-size: 17px;
}

/* ===== SHIPPING METHOD ===== */
.shipping-methods { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.ship-method {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px; border: 1.5px solid #e0e0e0;
  border-radius: 10px; cursor: pointer; transition: all 0.2s;
}
.ship-method.selected { border-color: #0a0a0a; background: #fafafa; }
.ship-method input[type=radio] { accent-color: #0a0a0a; width: 17px; height: 17px; cursor: pointer; }
.ship-method-label { flex: 1; }
.ship-method-name { font-weight: 600; font-size: 14px; }
.ship-method-eta { font-size: 13px; color: #4b5563; }
.ship-method-price {
  font-family: 'Oswald', sans-serif;
  font-weight: 800; font-size: 16px;
}

/* ===== PAYMENT ===== */
.pay-methods { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.pay-method {
  padding: 14px 16px; border: 2px solid #e0e0e0;
  border-radius: 10px; cursor: pointer;
  display: flex; align-items: center; gap: 10px;
  transition: all 0.2s;
}
.pay-method:hover { border-color: #888; }
.pay-method.selected { border-color: #0a0a0a; background: #fafafa; }
.pay-method-icon { font-size: 24px; }
.pay-method-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 800; font-size: 15px; text-transform: uppercase;
}
.pay-method-sub { font-size: 12px; color: #6b7280; }

/* Card form */
.card-form {
  background: #f9f9f9; border-radius: 12px;
  padding: 0; margin-bottom: 20px;
}
.card-number-wrap { position: relative; }
.card-brand-icon {
  position: absolute; right: 14px; top: 50%;
  transform: translateY(-50%); font-size: 22px;
}
.co-input.card-number { letter-spacing: 0.12em; font-family: monospace; }
.card-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* BNPL (Tamara/Tabby) */
.bnpl-info {
  background: #f9f9f9; border-radius: 12px;
  padding: 0; margin-bottom: 20px; text-align: center;
}
.bnpl-installments {
  display: flex; gap: 8px; justify-content: center;
  margin: 16px 0;
}
.bnpl-inst {
  flex: 1; background: #fff; border: 1px solid #e0e0e0;
  border-radius: 8px; padding: 10px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700; font-size: 14px; text-align: center;
}
.bnpl-inst .inst-amount { font-size: 18px; color: #0a0a0a; }
.bnpl-inst .inst-label { font-size: 11px; color: #6b7280; text-transform: uppercase; }

/* Trust badges */
.trust-badges {
  display: flex; gap: 16px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 20px;
}
.trust-badge {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: #4b5563; font-weight: 500;
}
.trust-badge-icon { font-size: 16px; }

/* ===== CONFIRMATION ===== */
.confirm-anim {
  text-align: center; padding: 32px 0 24px;
}
.confirm-check {
  width: 80px; height: 80px; border-radius: 50%;
  background: #22c55e; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 40px; margin: 0 auto 20px;
  animation: popIn 0.5s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes popIn {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.confirm-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 900; font-size: 36px; text-transform: uppercase;
}
.order-id-badge {
  display: inline-block;
  background: #0a0a0a; color: #fff;
  padding: 8px 20px; border-radius: 99px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700; font-size: 15px;
  letter-spacing: 0.1em; margin: 12px 0;
}
.delivery-eta-card {
  background: #f9f9f9; border-radius: 12px;
  padding: 16px; margin: 16px 0;
  display: flex; align-items: center; gap: 16px;
}
.confirm-actions { display: flex; gap: 12px; margin-top: 20px; }

/* ===== BUTTONS ===== */
.co-btn {
  width: 100%; padding: 16px;
  font-family: 'Oswald', sans-serif;
  font-weight: 800; font-size: 16px;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: 2px solid transparent; border-radius: 10px;
  cursor: pointer; transition: all 0.25s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.co-btn-primary { background: #0a0a0a; color: #fff; border-color: #0a0a0a; }
.co-btn-primary:hover:not(:disabled) { background: #333; border-color: #333; transform: translateY(-1px); }
.co-btn-primary:disabled { background: #9ca3af; border-color: #9ca3af; color: #fff; cursor: not-allowed; transform: none; }
.co-btn-outline { background: transparent; color: #0a0a0a; border-color: #0a0a0a; }
.co-btn-outline:hover { background: #0a0a0a; color: #fff; }
.co-btn-back {
  background: none; border: none; cursor: pointer;
  font-family: 'Oswald', sans-serif;
  font-weight: 700; font-size: 14px; letter-spacing: 0.08em;
  text-transform: uppercase; color: #6b7280;
  display: flex; align-items: center; gap: 6px;
  padding: 0; margin-bottom: 20px;
  transition: color 0.2s;
}
.co-btn-back:hover { color: #0a0a0a; }

/* ===== SECTION DIVIDER ===== */
.co-divider { height: 1px; background: #f0f0f0; margin: 20px 0; }

/* ===== ADDRESS REVIEW CARD ===== */
.addr-review-card {
  background: #f9f9f9; border-radius: 10px;
  padding: 14px 16px; margin-bottom: 16px;
  font-size: 14px; line-height: 1.7;
}
.addr-review-card strong {
  font-family: 'Oswald', sans-serif;
  font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
  color: #6b7280; display: block; margin-bottom: 4px;
}

/* ===== EXIT INTENT POPUP ===== */
.exit-popup {
  position: fixed; top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(0.9);
  z-index: 10000; background: #fff;
  border-radius: 0; padding: 40px 36px;
  max-width: 440px; width: 90%;
  box-shadow: 0 40px 80px rgba(0,0,0,0.3);
  text-align: center; opacity: 0; pointer-events: none;
  transition: all 0.35s cubic-bezier(0.34,1.2,0.64,1);
}
.exit-popup.show { opacity: 1; pointer-events: all; transform: translate(-50%,-50%) scale(1); }
.exit-popup-backdrop {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.5);
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.exit-popup-backdrop.show { opacity: 1; pointer-events: all; }
.exit-discount-badge {
  display: inline-block;
  background: #0a0a0a; color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 900; font-size: 48px;
  padding: 10px 20px; border-radius: 10px; margin-bottom: 16px;
}
.exit-code {
  background: #f5f5f5; border-radius: 8px;
  padding: 12px 24px; margin: 16px auto;
  font-family: monospace; font-size: 22px;
  letter-spacing: 0.2em; font-weight: 700;
  display: inline-block; border: 2px dashed #ccc;
}
.exit-close {
  position: absolute; top: 14px; right: 14px;
  background: none; border: none; font-size: 20px;
  cursor: pointer; color: #6b7280;
}

/* ===== ORDER TRACKING ===== */
.tracking-result {
  background: #f9f9f9; border-radius: 12px;
  padding: 0; margin-top: 16px;
}
.tracking-step {
  display: flex; gap: 12px; align-items: flex-start;
  margin-bottom: 16px;
}
.tracking-step-dot {
  width: 20px; height: 20px; border-radius: 50%;
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: #fff;
  margin-top: 2px;
}
.tracking-step-dot.done { background: #22c55e; }
.tracking-step-dot.current { background: #0a0a0a; }
.tracking-step-dot.pending { background: #ddd; }

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .co-shell { border-radius: 0; height: 100vh; max-height: 100vh; }
  .co-header { padding: 16px 20px 12px; }
  .co-body { padding: 20px 20px 28px; }
  .co-progress { padding: 10px 20px 0; }
  .co-step-dot .label { display: none; }
  .co-two-col { grid-template-columns: 1fr; }
  .co-order-sidebar { order: -1; position: static; }
  .co-sticky-footer { position: static; }
  .auth-options { grid-template-columns: 1fr; }
  .co-form-grid { grid-template-columns: 1fr; }
  .pay-methods { grid-template-columns: 1fr; }
  .co-btn { padding: 15px; font-size: 15px; }
  .confirm-actions { flex-direction: column; }
  .upsell-grid { gap: 10px; }
  .social-btns { flex-direction: column; }
}

/* Sticky footer on mobile */
@media (max-width: 768px) {
  
}


.cart-qty-ctrl {
  display: inline-flex; align-items: center; 
  border: 1.5px solid #d0d0d0; border-radius: 6px; overflow: hidden;
  margin-top: 8px; width: fit-content; background: #fff;
}
.cart-qty-btn {
  width: 32px; height: 32px; border: none; background: transparent;
  cursor: pointer; font-size: 16px; color: #0a0a0a;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.cart-qty-btn:hover { background: #f5f5f5; }
.cart-qty-num {
  font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 16px;
  width: 32px; text-align: center; color: #0a0a0a; border-left: 1px solid #e8e8e8; border-right: 1px solid #e8e8e8;
}
.co-sticky-footer {
  position: static;
  background: #fff;
  padding: 24px 0;
  display: flex;
  justify-content: center;
}
.co-sticky-footer .co-btn {
  width: 100%;
}

/* ===== WAITLIST MODAL ===== */
.wl-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.wl-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.wl-modal {
  background: #0a0a0a;
  color: #ffffff;
  width: 90%;
  max-width: 460px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 40px 32px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.8);
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-family: 'Inter', sans-serif;
}
.wl-overlay.open .wl-modal {
  transform: scale(1);
}
.wl-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: background 0.2s, transform 0.2s;
}
.wl-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}
.wl-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 900;
  font-size: 32px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
  text-align: center;
  background: linear-gradient(135deg, #ffffff 0%, #a3a3a3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.wl-subtitle {
  font-size: 14px;
  color: #a3a3a3;
  text-align: center;
  margin-bottom: 28px;
  line-height: 1.5;
}
.wl-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.wl-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.wl-label {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a3a3a3;
}
.wl-input {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.03);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
}
.wl-input:focus {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}
.wl-btn {
  width: 100%;
  padding: 16px;
  margin-top: 10px;
  font-family: 'Oswald', sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: #ffffff;
  color: #0a0a0a;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.wl-btn:hover {
  background: #e5e5e5;
  transform: translateY(-1px);
}
.wl-btn:disabled {
  background: #404040;
  color: #737373;
  cursor: not-allowed;
  transform: none;
}
.wl-note {
  font-size: 12px;
  color: #737373;
  text-align: center;
  margin-top: 12px;
  line-height: 1.4;
}
.wl-success {
  text-align: center;
  padding: 20px 0;
}
.wl-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
}
.wl-success-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 900;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.wl-success-desc {
  font-size: 14px;
  color: #a3a3a3;
  line-height: 1.6;
}

