/* feat-jc-inline-checkout (2026-06-03) — branded in-site Jungle Club checkout
   modal. Memphis card, site Pink accent. Replaces the Stripe-hosted Checkout
   redirect: the Payment Element mounts inside this overlay so the customer
   never leaves the site or sees Stripe chrome beyond the card fields. */
.jcc-overlay {
  position: fixed; inset: 0; z-index: 100000;
  display: none; align-items: center; justify-content: center;
  padding: 16px; background: rgba(8,8,8,0.80); backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.jcc-overlay.open { display: flex; }
.jcc-card {
  width: 100%; max-width: 440px; max-height: 92vh; overflow-y: auto;
  background: var(--cream, #f5f0e1); color: #111;
  border: 3px solid #111; border-radius: 16px;
  box-shadow: 8px 8px 0 var(--pink, #FF4DA6);
  font-family: 'Nunito', system-ui, sans-serif;
  -webkit-overflow-scrolling: touch;
}
.jcc-head {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 16px 18px; border-bottom: 2px solid rgba(17,17,17,0.12);
  position: sticky; top: 0; background: var(--cream, #f5f0e1); z-index: 1;
}
.jcc-title { font-family: 'Fredoka One', cursive; font-size: 1.12rem; line-height: 1.1; }
.jcc-x { background: none; border: 0; font-size: 1.6rem; line-height: 1; cursor: pointer; color: #111; padding: 0 4px; }
.jcc-body { padding: 18px; }
.jcc-sub { font-size: 0.86rem; color: rgba(17,17,17,0.66); margin: 0 0 14px; line-height: 1.5; }
.jcc-perks { list-style: none; padding: 0; margin: 0 0 16px; }
.jcc-perks li { font-size: 0.86rem; padding: 4px 0; color: rgba(17,17,17,0.8); }
.jcc-perks li::before { content: '\2713  '; color: #15863c; font-weight: 800; }
.jcc-field { margin-bottom: 12px; }
.jcc-field label {
  display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.07em;
  font-weight: 800; color: rgba(17,17,17,0.6); margin-bottom: 5px;
}
.jcc-input {
  width: 100%; box-sizing: border-box; padding: 12px 13px;
  border: 2px solid #111; border-radius: 9px; font-size: 1rem; font-family: inherit;
  background: #fff; color: #111;
}
.jcc-input:focus { outline: none; box-shadow: 3px 3px 0 var(--pink, #FF4DA6); }
.jcc-btn {
  width: 100%; padding: 13px; border: 2px solid #111; border-radius: 10px;
  background: var(--pink, #FF4DA6); color: #fff;
  font-family: 'Fredoka One', cursive; font-size: 1rem; cursor: pointer;
  box-shadow: 3px 3px 0 #111; transition: transform .08s, box-shadow .08s;
}
.jcc-btn:hover { transform: translate(-1px,-1px); box-shadow: 4px 4px 0 #111; }
.jcc-btn:active { transform: translate(2px,2px); box-shadow: 1px 1px 0 #111; }
.jcc-btn[disabled] { opacity: 0.6; cursor: not-allowed; transform: none; box-shadow: 3px 3px 0 #111; }
.jcc-link { background: none; border: 0; color: var(--pink, #d61f74); font: inherit; font-weight: 800; text-decoration: underline; cursor: pointer; padding: 0; }
.jcc-err { color: #c2143b; font-size: 0.85rem; margin-top: 10px; min-height: 1em; line-height: 1.4; }
.jcc-summary {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 12px 14px; background: #fff; border: 2px solid #111; border-radius: 10px; margin-bottom: 14px;
}
.jcc-summary .t { font-family: 'Fredoka One', cursive; font-size: 0.98rem; }
.jcc-summary .p { font-family: 'Fredoka One', cursive; color: var(--pink, #d61f74); font-size: 1.02rem; }
#jcc-stripe-element { margin-bottom: 14px; min-height: 40px; }
.jcc-secure { font-size: 0.72rem; color: rgba(17,17,17,0.5); text-align: center; margin-top: 10px; }
.jcc-success { text-align: center; padding: 12px 0 4px; }
.jcc-success .big { font-size: 2.6rem; line-height: 1; }
.jcc-success h3 { font-family: 'Fredoka One', cursive; margin: 10px 0 6px; font-size: 1.2rem; }
