/* Jaguargame checkout: provider-independent, light/dark storefront UI. */
body.jg-cart-body,
body.jg-guest-checkout-body{
  --checkout-bg:#0B1220;
  --checkout-card:#151F32;
  --checkout-soft:#111827;
  --checkout-text:#F8FAFC;
  --checkout-muted:#94A3B8;
  --checkout-primary:#3B82F6;
  --checkout-accent:#06B6D4;
  --checkout-success:#22C55E;
  --checkout-border:#263244;
  --checkout-danger:#EF4444;
  --checkout-shadow:0 20px 55px rgba(0,0,0,.24);
  background:var(--checkout-bg)!important;
  color:var(--checkout-text)!important;
  font-family:Inter,"Segoe UI",Arial,sans-serif!important;
}

html[data-theme="light"] body.jg-cart-body,
html[data-theme="light"] body.jg-guest-checkout-body{
  --checkout-bg:#F5F7FB;
  --checkout-card:#FFFFFF;
  --checkout-soft:#F8FAFC;
  --checkout-text:#0F172A;
  --checkout-muted:#64748B;
  --checkout-primary:#2563EB;
  --checkout-accent:#06B6D4;
  --checkout-success:#22C55E;
  --checkout-border:#E2E8F0;
  --checkout-shadow:0 18px 48px rgba(15,23,42,.09);
}

body.jg-cart-body .jg-cart-page,
body.jg-guest-checkout-body .jg-guest-checkout{
  min-height:60vh;
  padding:34px 0 60px!important;
  background:
    radial-gradient(circle at 12% 0,rgba(37,99,235,.08),transparent 28%),
    radial-gradient(circle at 90% 8%,rgba(6,182,212,.07),transparent 24%),
    var(--checkout-bg)!important;
}

body.jg-cart-body .jg-cart-wrap,
body.jg-guest-checkout-body .jg-guest-wrap{
  width:min(1180px,calc(100% - 32px));
  max-width:1180px!important;
  margin:0 auto;
  padding:0!important;
}

/* Compact progress instead of oversized decorative circles. */
body.jg-cart-body .jg-checkout-steps,
body.jg-guest-checkout-body .jg-guest-progress{
  display:flex!important;
  align-items:center;
  justify-content:flex-start!important;
  gap:8px!important;
  margin:0 0 22px!important;
  padding:6px!important;
  border:1px solid var(--checkout-border);
  border-radius:14px;
  background:var(--checkout-card);
  box-shadow:0 8px 22px rgba(15,23,42,.05);
}

body.jg-cart-body .jg-checkout-steps:before{display:none!important}

body.jg-cart-body .jg-step,
body.jg-guest-checkout-body .jg-progress-step{
  display:flex!important;
  align-items:center;
  gap:9px;
  min-width:0;
  padding:8px 12px;
  border-radius:10px;
  color:var(--checkout-muted)!important;
  font-size:12px!important;
  font-weight:750!important;
  text-align:left!important;
}

body.jg-cart-body .jg-step.active,
body.jg-guest-checkout-body .jg-progress-step.active{
  color:var(--checkout-primary)!important;
  background:rgba(37,99,235,.09)!important;
}

body.jg-cart-body .jg-step-icon,
body.jg-guest-checkout-body .jg-progress-icon{
  display:grid!important;
  place-items:center;
  width:30px!important;
  height:30px!important;
  flex:0 0 30px;
  margin:0!important;
  border:1px solid var(--checkout-border)!important;
  border-radius:9px!important;
  background:var(--checkout-soft)!important;
  color:var(--checkout-muted)!important;
  box-shadow:none!important;
}

body.jg-cart-body .jg-step.active .jg-step-icon,
body.jg-guest-checkout-body .jg-progress-step.active .jg-progress-icon,
body.jg-guest-checkout-body .jg-progress-step.done .jg-progress-icon{
  border-color:rgba(37,99,235,.22)!important;
  background:var(--checkout-primary)!important;
  color:#fff!important;
}

body.jg-cart-body .jg-step-icon svg,
body.jg-guest-checkout-body .jg-progress-icon svg{width:16px;height:16px}

body.jg-cart-body .jg-cart-grid,
body.jg-guest-checkout-body .jg-guest-grid{
  display:grid!important;
  grid-template-columns:minmax(0,1fr) 340px!important;
  align-items:start!important;
  gap:20px!important;
}

body.jg-cart-body .jg-cart-main,
body.jg-guest-checkout-body .jg-guest-main{
  display:flex;
  min-width:0;
  flex-direction:column;
  gap:20px;
}

body.jg-cart-body .jg-card,
body.jg-guest-checkout-body .jg-checkout-card{
  overflow:hidden;
  border:1px solid var(--checkout-border)!important;
  border-radius:16px!important;
  background:var(--checkout-card)!important;
  color:var(--checkout-text)!important;
  box-shadow:var(--checkout-shadow)!important;
}

body.jg-cart-body .jg-card-head,
body.jg-guest-checkout-body .jg-checkout-card-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  min-height:72px;
  padding:16px 18px!important;
  border-bottom:1px solid var(--checkout-border)!important;
  background:var(--checkout-card)!important;
}

body.jg-cart-body .jg-card-title,
body.jg-guest-checkout-body .jg-checkout-title{
  margin:0!important;
  color:var(--checkout-text)!important;
  font-size:17px!important;
  font-weight:800!important;
  line-height:1.25!important;
  letter-spacing:-.01em!important;
}

body.jg-cart-body .jg-card-title svg,
body.jg-guest-checkout-body .jg-checkout-title svg{
  width:19px;
  height:19px;
  color:var(--checkout-primary)!important;
  stroke:var(--checkout-primary)!important;
}

body.jg-cart-body .jg-badge{
  border:1px solid rgba(6,182,212,.24)!important;
  background:rgba(6,182,212,.09)!important;
  color:var(--checkout-accent)!important;
  font-size:11px!important;
  font-weight:750!important;
}

body.jg-cart-body .jg-products{padding:14px!important}

body.jg-cart-body .jg-product{
  border:1px solid var(--checkout-border)!important;
  border-radius:13px!important;
  background:var(--checkout-soft)!important;
  box-shadow:none!important;
}

body.jg-cart-body .jg-name,
body.jg-cart-body .jg-price strong,
body.jg-cart-body .jg-summary-row strong{color:var(--checkout-text)!important}
body.jg-cart-body .jg-link{color:var(--checkout-primary)!important}

body.jg-cart-body .jg-info-input,
body.jg-cart-body .jg-readonly-input,
body.jg-cart-body .jg-qty,
body.jg-cart-body .jg-qty input{
  border-color:var(--checkout-border)!important;
  background:var(--checkout-card)!important;
  color:var(--checkout-text)!important;
}

body.jg-cart-body .jg-qty button{
  background:var(--checkout-soft)!important;
  color:var(--checkout-text)!important;
}

body.jg-cart-body .jg-qty button:hover{background:var(--checkout-primary)!important;color:#fff!important}

body.jg-cart-body .jg-cart-actions{padding:0 14px 14px!important}
body.jg-cart-body .jg-update-btn,
body.jg-cart-body .jg-login-btn{
  border:1px solid var(--checkout-border)!important;
  background:var(--checkout-soft)!important;
  color:var(--checkout-text)!important;
}

body.jg-cart-body .jg-summary,
body.jg-guest-checkout-body .jg-guest-summary{
  position:sticky!important;
  top:18px!important;
}

body.jg-cart-body .jg-summary{
  grid-column:2!important;
  grid-row:1 / span 2!important;
}

body.jg-cart-body .jg-summary-content{background:var(--checkout-card)!important}
body.jg-cart-body .jg-summary-row{border-color:var(--checkout-border)!important;color:var(--checkout-muted)!important}

body.jg-cart-body .jg-total,
body.jg-guest-checkout-body .jg-guest-total{
  border:1px solid rgba(37,99,235,.23)!important;
  background:linear-gradient(135deg,rgba(37,99,235,.12),rgba(6,182,212,.07))!important;
  box-shadow:none!important;
}

body.jg-cart-body .jg-total:before{background:linear-gradient(90deg,var(--checkout-primary),var(--checkout-accent))!important}
body.jg-cart-body .jg-total span,
body.jg-guest-checkout-body .jg-guest-total span{color:var(--checkout-muted)!important}
body.jg-cart-body .jg-total strong,
body.jg-guest-checkout-body .jg-guest-total strong{color:var(--checkout-text)!important}

body.jg-cart-body .jg-pay-btn,
body.jg-cart-body .jg-guest-btn,
body.jg-guest-checkout-body .jg-guest-pay-btn{
  border:0!important;
  background:linear-gradient(135deg,var(--checkout-primary),var(--checkout-accent))!important;
  color:#fff!important;
  box-shadow:0 12px 28px rgba(37,99,235,.20)!important;
}

body.jg-cart-body .jg-secure,
body.jg-guest-checkout-body .jg-security-note{
  border:1px solid var(--checkout-border)!important;
  background:var(--checkout-soft)!important;
  color:var(--checkout-muted)!important;
}

/* Invoice card */
body.jg-cart-body .jg-invoice-card{grid-column:1!important;grid-row:2!important}

.jg-invoice-heading{
  display:flex;
  min-width:0;
  align-items:center;
  gap:12px;
}

.jg-invoice-heading-icon,
.jg-checkout-heading-icon{
  display:grid;
  place-items:center;
  width:40px;
  height:40px;
  flex:0 0 40px;
  border:1px solid rgba(37,99,235,.20);
  border-radius:11px;
  background:rgba(37,99,235,.10);
  color:var(--checkout-primary);
}

.jg-invoice-heading-icon svg,
.jg-checkout-heading-icon svg{width:19px;height:19px}

.jg-invoice-heading p,
.jg-checkout-heading-copy p{
  margin:4px 0 0!important;
  color:var(--checkout-muted)!important;
  font-size:12px!important;
  font-weight:500!important;
  line-height:1.4!important;
}

.jg-private-chip{
  display:inline-flex;
  align-items:center;
  gap:7px;
  flex:0 0 auto;
  padding:7px 10px;
  border:1px solid var(--checkout-border);
  border-radius:999px;
  background:var(--checkout-soft);
  color:var(--checkout-muted);
  font-size:11px;
  font-weight:700;
}

.jg-private-chip svg{width:14px;height:14px;color:var(--checkout-success)}

body.jg-cart-body .jg-invoice-body{padding:18px!important}

body.jg-cart-body .jg-invoice-type,
body.jg-guest-checkout-body .jg-guest-invoice-type{
  display:grid!important;
  grid-template-columns:repeat(2,minmax(0,1fr))!important;
  gap:10px!important;
  margin:0 0 18px!important;
}

body.jg-cart-body .jg-invoice-type label,
body.jg-guest-checkout-body .jg-guest-invoice-type label{
  position:relative;
  display:flex!important;
  align-items:center;
  gap:11px!important;
  min-height:43px!important;
  padding:8px 10px!important;
  border:1px solid var(--checkout-border)!important;
  border-radius:12px!important;
  background:var(--checkout-soft)!important;
  color:var(--checkout-text)!important;
  cursor:pointer;
}

body.jg-cart-body .jg-invoice-type label:has(input:checked),
body.jg-guest-checkout-body .jg-guest-invoice-type label:has(input:checked){
  border-color:var(--checkout-primary)!important;
  background:rgba(37,99,235,.08)!important;
  box-shadow:0 0 0 3px rgba(37,99,235,.08)!important;
}

.jg-invoice-type-copy strong{display:block;color:var(--checkout-text);font-size:13px;font-weight:800}
.jg-invoice-type-copy small{display:block;margin-top:3px;color:var(--checkout-muted);font-size:11px;font-weight:500}

body.jg-cart-body .jg-invoice-type input,
body.jg-guest-checkout-body .jg-guest-invoice-type input{accent-color:var(--checkout-primary)!important}

.jg-invoice-group + .jg-invoice-group{margin-top:20px;padding-top:18px;border-top:1px solid var(--checkout-border)}
.jg-invoice-group-title{display:flex;align-items:center;gap:8px;margin:0 0 12px;color:var(--checkout-text);font-size:12px;font-weight:800}
.jg-invoice-group-title svg{width:15px;height:15px;color:var(--checkout-accent)}

body.jg-cart-body .jg-invoice-fields,
body.jg-guest-checkout-body .jg-guest-fields{
  display:grid!important;
  grid-template-columns:repeat(2,minmax(0,1fr))!important;
  gap:13px!important;
}

body.jg-cart-body .jg-invoice-field.full,
body.jg-guest-checkout-body .jg-guest-field.full{grid-column:1/-1!important}

body.jg-cart-body .jg-invoice-field label,
body.jg-guest-checkout-body .jg-guest-field label{
  display:flex!important;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  margin:0 0 6px!important;
  color:var(--checkout-text)!important;
  font-size:11.5px!important;
  font-weight:700!important;
}

.jg-field-optional{color:var(--checkout-muted);font-size:10px;font-weight:600}

body.jg-cart-body .jg-invoice-field input,
body.jg-cart-body .jg-invoice-field textarea,
body.jg-guest-checkout-body .jg-guest-field input,
body.jg-guest-checkout-body .jg-guest-field textarea{
  width:100%!important;
  min-height:46px!important;
  margin:0!important;
  padding:0 13px!important;
  border:1px solid var(--checkout-border)!important;
  border-radius:10px!important;
  background:var(--checkout-soft)!important;
  color:var(--checkout-text)!important;
  font-size:13px!important;
  font-weight:500!important;
  outline:none!important;
  box-shadow:none!important;
}

body.jg-cart-body .jg-invoice-field textarea,
body.jg-guest-checkout-body .jg-guest-field textarea{min-height:92px!important;padding-top:12px!important;resize:vertical}

body.jg-cart-body .jg-invoice-field input:focus,
body.jg-cart-body .jg-invoice-field textarea:focus,
body.jg-guest-checkout-body .jg-guest-field input:focus,
body.jg-guest-checkout-body .jg-guest-field textarea:focus{
  border-color:var(--checkout-primary)!important;
  box-shadow:0 0 0 3px rgba(37,99,235,.09)!important;
}

body.jg-cart-body .jg-invoice-hint,
body.jg-guest-checkout-body .jg-invoice-hint{
  display:flex;
  align-items:flex-start;
  gap:9px;
  margin:17px 0 0!important;
  padding:11px 12px;
  border:1px solid rgba(6,182,212,.18);
  border-radius:10px;
  background:rgba(6,182,212,.06);
  color:var(--checkout-muted)!important;
  font-size:11.5px!important;
  line-height:1.5!important;
}

.jg-invoice-hint svg{width:15px;height:15px;flex:0 0 15px;margin-top:1px;color:var(--checkout-accent)}

/* Guest checkout */
.jg-guest-hero{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  margin-bottom:18px;
  padding:20px 22px;
  border:1px solid var(--checkout-border);
  border-radius:16px;
  background:var(--checkout-card);
  box-shadow:var(--checkout-shadow);
}

.jg-guest-hero-copy{display:flex;align-items:center;gap:14px;min-width:0}
.jg-guest-hero-copy h1{margin:0!important;color:var(--checkout-text)!important;font-size:22px!important;font-weight:850!important;letter-spacing:-.02em!important}
.jg-guest-hero-copy p{margin:5px 0 0!important;color:var(--checkout-muted)!important;font-size:12.5px!important;line-height:1.5!important}
.jg-guest-amount{text-align:right;flex:0 0 auto}
.jg-guest-amount span{display:block;color:var(--checkout-muted);font-size:11px;font-weight:700}
.jg-guest-amount strong{display:block;margin-top:3px;color:var(--checkout-text);font-size:24px;font-weight:850}

.jg-payment-panel{margin-bottom:20px}
.jg-payment-options{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;padding:16px}

.jg-payment-option{
  position:relative;
  display:flex;
  width:100%;
  min-height:78px;
  align-items:center;
  gap:13px;
  padding:13px 14px;
  border:1px solid var(--checkout-border);
  border-radius:12px;
  background:var(--checkout-soft);
  color:var(--checkout-text);
  text-align:left;
  cursor:pointer;
  transition:border-color .18s ease,background .18s ease,transform .18s ease;
}

.jg-payment-option:hover{transform:translateY(-1px);border-color:rgba(37,99,235,.45)}
.jg-payment-option.active{border-color:var(--checkout-primary);background:rgba(37,99,235,.08);box-shadow:0 0 0 3px rgba(37,99,235,.07)}
.jg-payment-icon{display:grid;place-items:center;width:42px;height:42px;flex:0 0 42px;border-radius:11px;background:linear-gradient(135deg,var(--checkout-primary),var(--checkout-accent));color:#fff}
.jg-payment-icon svg{width:20px;height:20px}
.jg-payment-copy{min-width:0;flex:1}
.jg-payment-copy strong{display:block;color:var(--checkout-text);font-size:13.5px;font-weight:800}
.jg-payment-copy span{display:block;margin-top:4px;color:var(--checkout-muted);font-size:11.5px;line-height:1.35}
.jg-payment-check{display:grid;place-items:center;width:24px;height:24px;flex:0 0 24px;border:1px solid var(--checkout-border);border-radius:50%;color:transparent}
.jg-payment-option.active .jg-payment-check{border-color:var(--checkout-primary);background:var(--checkout-primary);color:#fff}
.jg-payment-check svg{width:14px;height:14px}
.jg-payment-empty{grid-column:1/-1;padding:20px;border:1px dashed var(--checkout-border);border-radius:12px;color:var(--checkout-muted);text-align:center;font-size:13px}

.jg-checkout-heading-copy{min-width:0}
.jg-checkout-heading{display:flex;align-items:center;gap:12px;min-width:0}
.jg-guest-invoice-body{padding:18px}

.jg-guest-summary-body{padding:17px}
.jg-guest-summary-row{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:12px 0;border-bottom:1px dashed var(--checkout-border);color:var(--checkout-muted);font-size:12.5px;font-weight:650}
.jg-guest-summary-row strong{color:var(--checkout-text);font-size:13px;font-weight:800}
.jg-guest-total{margin:17px 0 13px;padding:16px;border-radius:12px}
.jg-guest-total span{display:block;font-size:11px;font-weight:700}
.jg-guest-total strong{display:block;margin-top:4px;font-size:27px;font-weight:850}
.jg-commission-line{display:flex;justify-content:space-between;gap:10px;margin-bottom:13px;color:var(--checkout-muted);font-size:11.5px}
.jg-commission-line strong{color:var(--checkout-text)}
.jg-guest-pay-btn{display:flex!important;width:100%!important;min-height:52px!important;align-items:center!important;justify-content:center!important;gap:9px!important;border-radius:11px!important;font-size:13.5px!important;font-weight:800!important}
.jg-guest-pay-btn:disabled{cursor:not-allowed!important;opacity:.52!important;box-shadow:none!important}
.jg-guest-pay-btn svg{width:19px;height:19px}
.jg-security-note{display:flex;align-items:flex-start;gap:9px;margin-top:13px;padding:12px;border-radius:10px;font-size:11px;line-height:1.5}
.jg-security-note svg{width:15px;height:15px;flex:0 0 15px;margin-top:1px;color:var(--checkout-success)}

@media(max-width:992px){
  body.jg-cart-body .jg-cart-grid,
  body.jg-guest-checkout-body .jg-guest-grid{grid-template-columns:1fr!important}
  body.jg-cart-body .jg-summary,
  body.jg-guest-checkout-body .jg-guest-summary{position:relative!important;top:auto!important}
  body.jg-cart-body .jg-summary{grid-column:1!important;grid-row:3!important}
  body.jg-cart-body .jg-invoice-card{grid-column:1!important;grid-row:2!important}
  body.jg-guest-checkout-body .jg-guest-summary{grid-column:auto!important;grid-row:auto!important}
}

@media(max-width:768px){
  body.jg-cart-body .jg-cart-page,
  body.jg-guest-checkout-body .jg-guest-checkout{padding:20px 0 42px!important}
  body.jg-cart-body .jg-cart-wrap,
  body.jg-guest-checkout-body .jg-guest-wrap{width:min(100% - 20px,1180px)}
  body.jg-cart-body .jg-checkout-steps,
  body.jg-guest-checkout-body .jg-guest-progress{overflow-x:auto;flex-wrap:nowrap!important;margin-bottom:14px!important}
  body.jg-cart-body .jg-step,
  body.jg-guest-checkout-body .jg-progress-step{flex:0 0 auto;padding:7px 9px}
  body.jg-cart-body .jg-step span{font-size:11px!important}
  body.jg-cart-body .jg-card-head,
  body.jg-guest-checkout-body .jg-checkout-card-head{min-height:64px;padding:13px 14px!important}
  body.jg-cart-body .jg-invoice-body,
  .jg-guest-invoice-body{padding:14px!important}
  body.jg-cart-body .jg-invoice-type,
  body.jg-guest-checkout-body .jg-guest-invoice-type,
  body.jg-cart-body .jg-invoice-fields,
  body.jg-guest-checkout-body .jg-guest-fields,
  .jg-payment-options{grid-template-columns:1fr!important}
  .jg-private-chip{display:none}
  .jg-invoice-heading p,.jg-checkout-heading-copy p{display:none}
  .jg-guest-hero{align-items:flex-start;padding:16px;flex-direction:column}
  .jg-guest-amount{text-align:left}
  .jg-guest-hero-copy h1{font-size:19px!important}
  .jg-guest-amount strong{font-size:22px}
  .jg-payment-options{padding:12px}
  .jg-payment-option{min-height:70px}
}

@media(max-width:480px){
  body.jg-cart-body .jg-product{grid-template-columns:60px minmax(0,1fr) 36px!important;padding:11px!important}
  body.jg-cart-body .jg-img{width:60px!important;height:60px!important}
  body.jg-cart-body .jg-qty{grid-column:1/3!important;width:128px!important}
  body.jg-cart-body .jg-card-title,
  body.jg-guest-checkout-body .jg-checkout-title{font-size:15px!important}
}

/* Saved invoice profiles inside member checkout */
body.jg-site .jg-saved-invoices {
  margin:0 0 20px!important;
  padding:15px!important;
  border-radius:18px!important;
  background:var(--theme-soft,#111827)!important;
  border:1px solid var(--theme-border,#263244)!important;
}
body.jg-site .jg-saved-invoices-head {
  display:flex!important;
  align-items:center!important;
  justify-content:space-between!important;
  gap:12px!important;
  margin-bottom:12px!important;
}
body.jg-site .jg-saved-invoices-head strong {
  display:block!important;
  color:var(--theme-text,#F8FAFC)!important;
  font-size:15px!important;
  font-weight:950!important;
}
body.jg-site .jg-saved-invoices-head span {
  display:block!important;
  margin-top:3px!important;
  color:var(--theme-muted,#94A3B8)!important;
  font-size:12px!important;
}
body.jg-site .jg-saved-add {
  min-height:38px!important;
  border:1px solid rgba(6,182,212,.28)!important;
  border-radius:12px!important;
  padding:0 12px!important;
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  gap:7px!important;
  background:rgba(6,182,212,.12)!important;
  color:var(--theme-accent,#06B6D4)!important;
  font-size:12px!important;
  font-weight:900!important;
  cursor:pointer!important;
}
body.jg-site .jg-saved-add svg{width:16px!important;height:16px!important}
body.jg-site .jg-saved-invoice-grid {
  display:grid!important;
  grid-template-columns:repeat(2,minmax(0,1fr))!important;
  gap:10px!important;
}
body.jg-site .jg-saved-invoice-card {
  position:relative!important;
  min-height:82px!important;
  text-align:left!important;
  border:1px solid var(--theme-border,#263244)!important;
  border-radius:16px!important;
  background:var(--theme-card,#151F32)!important;
  color:var(--theme-text,#F8FAFC)!important;
  padding:14px!important;
  cursor:pointer!important;
  overflow:hidden!important;
  box-shadow:none!important;
  transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease!important;
}
body.jg-site .jg-saved-invoice-card:hover,
body.jg-site .jg-saved-invoice-card.selected {
  transform:translateY(-2px)!important;
  border-color:rgba(6,182,212,.62)!important;
  box-shadow:0 18px 34px rgba(6,182,212,.10)!important;
}
body.jg-site .jg-saved-check {
  position:absolute!important;
  top:12px!important;
  right:12px!important;
  width:24px!important;
  height:24px!important;
  border-radius:999px!important;
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  background:rgba(34,197,94,.14)!important;
  color:var(--theme-success,#22C55E)!important;
  border:1px solid rgba(34,197,94,.25)!important;
  opacity:0!important;
}
body.jg-site .jg-saved-invoice-card.selected .jg-saved-check{opacity:1!important}
body.jg-site .jg-saved-check svg{width:14px!important;height:14px!important}
body.jg-site .jg-saved-title {
  display:block!important;
  max-width:calc(100% - 32px)!important;
  color:var(--theme-text,#F8FAFC)!important;
  font-size:14px!important;
  font-weight:950!important;
  white-space:nowrap!important;
  overflow:hidden!important;
  text-overflow:ellipsis!important;
}
body.jg-site .jg-saved-type {
  display:inline-flex!important;
  align-items:center!important;
  margin:8px 0 10px!important;
  min-height:24px!important;
  padding:0 9px!important;
  border-radius:999px!important;
  background:rgba(6,182,212,.12)!important;
  color:var(--theme-accent,#06B6D4)!important;
  font-size:11px!important;
  font-weight:900!important;
}
body.jg-site .jg-saved-invoice-card b,
body.jg-site .jg-saved-invoice-card small {
  display:block!important;
  min-width:0!important;
  white-space:nowrap!important;
  overflow:hidden!important;
  text-overflow:ellipsis!important;
}
body.jg-site .jg-saved-invoice-card b {
  color:var(--theme-text,#F8FAFC)!important;
  font-size:13px!important;
  font-weight:900!important;
}
body.jg-site .jg-saved-invoice-card small {
  margin-top:5px!important;
  color:var(--theme-muted,#94A3B8)!important;
  font-size:12px!important;
}
body.jg-site .jg-saved-empty {
  display:flex!important;
  align-items:center!important;
  gap:12px!important;
  padding:12px!important;
  border-radius:15px!important;
  background:var(--theme-card,#151F32)!important;
  border:1px dashed var(--theme-border,#263244)!important;
  color:var(--theme-muted,#94A3B8)!important;
  font-size:12px!important;
}
body.jg-site .jg-saved-empty svg{color:var(--theme-accent,#06B6D4)!important;flex:0 0 20px!important}
body.jg-site .jg-saved-empty button {
  margin-left:auto!important;
  min-height:34px!important;
  border:0!important;
  border-radius:11px!important;
  padding:0 12px!important;
  background:var(--theme-primary,#3B82F6)!important;
  color:#fff!important;
  font-weight:900!important;
}
body.jg-site .jg-cart-invoice-modal {
  position:fixed!important;
  inset:0!important;
  z-index:9999!important;
  display:none!important;
  align-items:center!important;
  justify-content:center!important;
  padding:18px!important;
  background:rgba(2,6,23,.72)!important;
}
body.jg-site .jg-cart-invoice-modal.open{display:flex!important}
body.jg-site .jg-cart-invoice-modal-card {
  width:min(760px,100%)!important;
  max-height:calc(100vh - 36px)!important;
  overflow:auto!important;
  border-radius:24px!important;
  background:var(--theme-card,#151F32)!important;
  border:1px solid var(--theme-border,#263244)!important;
  box-shadow:0 32px 90px rgba(0,0,0,.42)!important;
  color:var(--theme-text,#F8FAFC)!important;
}
body.jg-site .jg-cart-modal-head,
body.jg-site .jg-cart-modal-footer {
  padding:18px 20px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:space-between!important;
  gap:12px!important;
  border-bottom:1px solid var(--theme-border,#263244)!important;
}
body.jg-site .jg-cart-modal-footer {
  justify-content:flex-end!important;
  border-top:1px solid var(--theme-border,#263244)!important;
  border-bottom:0!important;
}
body.jg-site .jg-cart-modal-head h3 {
  margin:0!important;
  color:var(--theme-text,#F8FAFC)!important;
  font-size:21px!important;
  font-weight:950!important;
}
body.jg-site .jg-cart-modal-head p {
  margin:5px 0 0!important;
  color:var(--theme-muted,#94A3B8)!important;
  font-size:12px!important;
}
body.jg-site .jg-cart-modal-close {
  width:40px!important;
  height:40px!important;
  border-radius:12px!important;
  border:1px solid var(--theme-border,#263244)!important;
  background:var(--theme-soft,#111827)!important;
  color:var(--theme-text,#F8FAFC)!important;
  cursor:pointer!important;
}
body.jg-site .jg-cart-modal-close svg{width:18px!important;height:18px!important}
body.jg-site .jg-cart-modal-body{padding:20px!important}
body.jg-site .jg-cart-profile-form-grid {
  display:grid!important;
  grid-template-columns:repeat(2,minmax(0,1fr))!important;
  gap:14px!important;
}
body.jg-site .jg-cart-profile-field.full,
body.jg-site .jg-cart-profile-types {grid-column:1/-1!important}
body.jg-site .jg-cart-profile-types {
  display:grid!important;
  grid-template-columns:repeat(2,minmax(0,1fr))!important;
  gap:10px!important;
}
body.jg-site .jg-cart-profile-types label {
  min-height:48px!important;
  border-radius:14px!important;
  border:1px solid var(--theme-border,#263244)!important;
  background:var(--theme-soft,#111827)!important;
  color:var(--theme-text,#F8FAFC)!important;
  display:flex!important;
  align-items:center!important;
  gap:10px!important;
  padding:0 13px!important;
  font-weight:900!important;
  cursor:pointer!important;
}
body.jg-site .jg-cart-profile-field label {
  display:block!important;
  margin:0 0 7px!important;
  color:var(--theme-text,#F8FAFC)!important;
  font-size:12px!important;
  font-weight:900!important;
}
body.jg-site .jg-cart-profile-field label span{color:var(--theme-muted,#94A3B8)!important;font-size:11px!important}
body.jg-site .jg-cart-profile-field input,
body.jg-site .jg-cart-profile-field textarea {
  width:100%!important;
  min-height:46px!important;
  border-radius:13px!important;
  border:1px solid var(--theme-border,#263244)!important;
  background:var(--theme-soft,#111827)!important;
  color:var(--theme-text,#F8FAFC)!important;
  padding:0 13px!important;
  outline:none!important;
}
body.jg-site .jg-cart-profile-field textarea {
  min-height:106px!important;
  resize:vertical!important;
  padding:13px!important;
}
body.jg-site .jg-cart-modal-btn {
  min-height:44px!important;
  border:0!important;
  border-radius:13px!important;
  padding:0 16px!important;
  background:linear-gradient(135deg,var(--theme-primary,#3B82F6),var(--theme-accent,#06B6D4))!important;
  color:#fff!important;
  font-weight:950!important;
  cursor:pointer!important;
}
body.jg-site .jg-cart-modal-btn.secondary {
  background:var(--theme-soft,#111827)!important;
  color:var(--theme-text,#F8FAFC)!important;
  border:1px solid var(--theme-border,#263244)!important;
}
@media(max-width:767.98px){
  body.jg-site .jg-saved-invoices-head,
  body.jg-site .jg-saved-empty{align-items:stretch!important;flex-direction:column!important}
  body.jg-site .jg-saved-add,
  body.jg-site .jg-saved-empty button{width:100%!important}
  body.jg-site .jg-saved-invoice-grid,
  body.jg-site .jg-cart-profile-form-grid,
  body.jg-site .jg-cart-profile-types{grid-template-columns:1fr!important}
}

/* Compact professional invoice selector */
body.jg-site .jg-saved-invoices {
  margin-bottom:14px!important;
  padding:11px!important;
  border-radius:14px!important;
}
body.jg-site .jg-saved-invoices-head {
  margin-bottom:9px!important;
}
body.jg-site .jg-saved-invoices-head strong {
  font-size:13px!important;
}
body.jg-site .jg-saved-invoices-head span {
  font-size:11px!important;
}
body.jg-site .jg-saved-add {
  min-height:32px!important;
  border-radius:10px!important;
  padding:0 10px!important;
  font-size:11px!important;
}
body.jg-site .jg-saved-invoice-grid {
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
  gap:8px!important;
}
body.jg-site .jg-saved-invoice-card {
  min-height:82px!important;
  border-radius:12px!important;
  padding:10px!important;
}
body.jg-site .jg-saved-invoice-card:hover,
body.jg-site .jg-saved-invoice-card.selected {
  transform:translateY(-1px)!important;
  box-shadow:0 10px 22px rgba(6,182,212,.08)!important;
}
body.jg-site .jg-saved-check {
  top:8px!important;
  right:8px!important;
  width:19px!important;
  height:19px!important;
}
body.jg-site .jg-saved-check svg {
  width:11px!important;
  height:11px!important;
}
body.jg-site .jg-saved-title {
  max-width:calc(100% - 24px)!important;
  font-size:12px!important;
}
body.jg-site .jg-saved-type {
  min-height:19px!important;
  margin:5px 0 7px!important;
  padding:0 7px!important;
  font-size:9.5px!important;
}
body.jg-site .jg-saved-invoice-card b {
  font-size:11.5px!important;
}
body.jg-site .jg-saved-invoice-card small {
  margin-top:3px!important;
  font-size:10.5px!important;
}
body.jg-site .jg-saved-empty {
  padding:9px!important;
  border-radius:12px!important;
  font-size:11px!important;
}
body.jg-site .jg-saved-empty button {
  min-height:30px!important;
  border-radius:9px!important;
  font-size:11px!important;
}
body.jg-site .jg-cart-invoice-modal-card {
  width:min(640px,100%)!important;
  border-radius:18px!important;
}
body.jg-site .jg-cart-modal-head,
body.jg-site .jg-cart-modal-footer {
  padding:13px 15px!important;
}
body.jg-site .jg-cart-modal-head h3 {
  font-size:18px!important;
}
body.jg-site .jg-cart-modal-head p {
  font-size:11px!important;
}
body.jg-site .jg-cart-modal-close {
  width:34px!important;
  height:34px!important;
  border-radius:10px!important;
}
body.jg-site .jg-cart-modal-body {
  padding:15px!important;
}
body.jg-site .jg-cart-profile-form-grid {
  gap:10px!important;
}
body.jg-site .jg-cart-profile-types label,
body.jg-site .jg-cart-profile-field input,
body.jg-site .jg-cart-profile-field textarea {
  min-height:40px!important;
  border-radius:11px!important;
  font-size:12.5px!important;
}
body.jg-site .jg-cart-profile-field textarea {
  min-height:84px!important;
}
body.jg-site .jg-cart-modal-btn {
  min-height:39px!important;
  border-radius:11px!important;
  padding:0 13px!important;
  font-size:12px!important;
}
@media(max-width:1199.98px){
  body.jg-site .jg-saved-invoice-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}
}
@media(max-width:767.98px){
  body.jg-site .jg-saved-invoice-grid{grid-template-columns:1fr!important}
}

/* Compact main invoice form: avoid oversized checkout blocks */
body.jg-cart-body .jg-invoice-card .jg-card-head {
  min-height:54px!important;
  padding:11px 13px!important;
  gap:10px!important;
}
body.jg-cart-body .jg-invoice-heading {
  gap:9px!important;
}
body.jg-cart-body .jg-invoice-heading-icon {
  width:32px!important;
  height:32px!important;
  flex-basis:32px!important;
  border-radius:9px!important;
}
body.jg-cart-body .jg-invoice-heading-icon svg {
  width:15px!important;
  height:15px!important;
}
body.jg-cart-body .jg-invoice-card .jg-card-title {
  font-size:15px!important;
}
body.jg-cart-body .jg-invoice-heading p {
  display:none!important;
}
body.jg-cart-body .jg-private-chip {
  padding:5px 8px!important;
  font-size:10px!important;
}
body.jg-cart-body .jg-invoice-body {
  padding:12px!important;
}
body.jg-cart-body .jg-invoice-type {
  gap:8px!important;
  margin-bottom:11px!important;
}
body.jg-cart-body .jg-invoice-type label {
  min-height:43px!important;
  padding:8px 10px!important;
  border-radius:10px!important;
  gap:8px!important;
}
body.jg-cart-body .jg-invoice-type-copy strong {
  font-size:12px!important;
}
body.jg-cart-body .jg-invoice-type-copy small {
  display:none!important;
}
body.jg-cart-body .jg-invoice-group + .jg-invoice-group {
  margin-top:12px!important;
  padding-top:11px!important;
}
body.jg-cart-body .jg-invoice-group-title {
  margin-bottom:8px!important;
  font-size:11.5px!important;
}
body.jg-cart-body .jg-invoice-fields {
  gap:9px!important;
}
body.jg-cart-body .jg-invoice-field label {
  margin-bottom:4px!important;
  font-size:11px!important;
}
body.jg-cart-body .jg-invoice-field input,
body.jg-cart-body .jg-invoice-field textarea {
  min-height:38px!important;
  border-radius:9px!important;
  padding:0 10px!important;
  font-size:12px!important;
}
body.jg-cart-body .jg-invoice-field textarea {
  min-height:64px!important;
  padding-top:9px!important;
}
body.jg-cart-body .jg-invoice-hint {
  margin-top:10px!important;
  padding:8px 10px!important;
  border-radius:9px!important;
  font-size:10.8px!important;
  line-height:1.4!important;
}
body.jg-cart-body .jg-invoice-hint svg {
  width:13px!important;
  height:13px!important;
  flex-basis:13px!important;
}

/* Final member checkout invoice UX: saved profiles first, manual form only on demand/no profile */
body.jg-cart-body .jg-invoice-card {
  overflow:hidden!important;
}

body.jg-cart-body .jg-invoice-body {
  padding:14px!important;
}

body.jg-cart-body .jg-saved-invoices {
  margin:0!important;
  padding:14px!important;
  border-radius:16px!important;
  background:
    linear-gradient(135deg, rgba(37,99,235,.08), rgba(6,182,212,.06)),
    var(--checkout-soft, var(--theme-soft,#111827))!important;
  border:1px solid var(--checkout-border, var(--theme-border,#263244))!important;
}

body.jg-cart-body .jg-saved-invoices-head {
  margin-bottom:12px!important;
  align-items:center!important;
}

body.jg-cart-body .jg-saved-invoices-head strong {
  color:var(--checkout-text, var(--theme-text,#F8FAFC))!important;
  font-size:14px!important;
  letter-spacing:-.01em!important;
}

body.jg-cart-body .jg-saved-invoices-head span {
  max-width:420px!important;
  color:var(--checkout-muted, var(--theme-muted,#94A3B8))!important;
  font-size:11.5px!important;
}

body.jg-cart-body .jg-saved-add {
  min-height:34px!important;
  border-radius:10px!important;
  border:1px solid rgba(6,182,212,.32)!important;
  background:rgba(6,182,212,.12)!important;
  color:var(--checkout-accent, var(--theme-accent,#06B6D4))!important;
  box-shadow:none!important;
}

body.jg-cart-body .jg-saved-invoice-grid {
  display:grid!important;
  grid-template-columns:repeat(auto-fit, minmax(210px, 260px))!important;
  gap:10px!important;
  align-items:stretch!important;
}

body.jg-cart-body .jg-saved-invoice-card {
  min-height:96px!important;
  padding:12px!important;
  border-radius:14px!important;
  background:var(--checkout-card, var(--theme-card,#151F32))!important;
  border:1px solid var(--checkout-border, var(--theme-border,#263244))!important;
  box-shadow:0 10px 22px rgba(15,23,42,.06)!important;
}

body.jg-cart-body .jg-saved-invoice-card:hover,
body.jg-cart-body .jg-saved-invoice-card.selected {
  transform:translateY(-1px)!important;
  border-color:rgba(6,182,212,.60)!important;
  box-shadow:0 14px 30px rgba(6,182,212,.10)!important;
}

body.jg-cart-body .jg-saved-invoice-card.selected:before {
  content:""!important;
  position:absolute!important;
  inset:0 auto 0 0!important;
  width:3px!important;
  background:linear-gradient(180deg,var(--checkout-primary,#2563EB),var(--checkout-accent,#06B6D4))!important;
}

body.jg-cart-body .jg-saved-title {
  font-size:12.5px!important;
}

body.jg-cart-body .jg-saved-type {
  margin:6px 0 8px!important;
  min-height:20px!important;
  border-radius:999px!important;
  background:rgba(37,99,235,.10)!important;
  color:var(--checkout-primary, var(--theme-primary,#2563EB))!important;
}

body.jg-cart-body .jg-selected-invoice-summary {
  display:flex!important;
  align-items:center!important;
  gap:12px!important;
  margin-top:12px!important;
  padding:12px!important;
  border-radius:14px!important;
  border:1px solid rgba(34,197,94,.25)!important;
  background:
    linear-gradient(135deg, rgba(34,197,94,.08), rgba(6,182,212,.06)),
    var(--checkout-card, var(--theme-card,#151F32))!important;
  color:var(--checkout-text, var(--theme-text,#F8FAFC))!important;
}

body.jg-cart-body .jg-selected-invoice-icon {
  display:grid!important;
  place-items:center!important;
  width:38px!important;
  height:38px!important;
  flex:0 0 38px!important;
  border-radius:12px!important;
  background:rgba(34,197,94,.12)!important;
  color:var(--checkout-success, var(--theme-success,#22C55E))!important;
  border:1px solid rgba(34,197,94,.22)!important;
}

body.jg-cart-body .jg-selected-invoice-icon svg {
  width:18px!important;
  height:18px!important;
}

body.jg-cart-body .jg-selected-invoice-copy {
  min-width:0!important;
  flex:1!important;
}

body.jg-cart-body .jg-selected-invoice-copy span {
  display:block!important;
  color:var(--checkout-muted, var(--theme-muted,#94A3B8))!important;
  font-size:10.5px!important;
  font-weight:800!important;
  text-transform:uppercase!important;
  letter-spacing:.03em!important;
}

body.jg-cart-body .jg-selected-invoice-copy strong,
body.jg-cart-body .jg-selected-invoice-copy small {
  display:block!important;
  min-width:0!important;
  overflow:hidden!important;
  text-overflow:ellipsis!important;
  white-space:nowrap!important;
}

body.jg-cart-body .jg-selected-invoice-copy strong {
  margin-top:3px!important;
  color:var(--checkout-text, var(--theme-text,#F8FAFC))!important;
  font-size:13px!important;
  font-weight:950!important;
}

body.jg-cart-body .jg-selected-invoice-copy small {
  margin-top:3px!important;
  color:var(--checkout-muted, var(--theme-muted,#94A3B8))!important;
  font-size:11.5px!important;
}

body.jg-cart-body .jg-selected-invoice-actions {
  display:flex!important;
  align-items:center!important;
  gap:8px!important;
  flex:0 0 auto!important;
}

body.jg-cart-body .jg-selected-invoice-actions button,
body.jg-cart-body .jg-selected-link {
  min-height:32px!important;
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  border-radius:10px!important;
  padding:0 10px!important;
  font-size:11px!important;
  font-weight:900!important;
  text-decoration:none!important;
  cursor:pointer!important;
}

body.jg-cart-body .jg-selected-invoice-actions button {
  border:0!important;
  background:linear-gradient(135deg,var(--checkout-primary,#2563EB),var(--checkout-accent,#06B6D4))!important;
  color:#fff!important;
}

body.jg-cart-body .jg-selected-link {
  border:1px solid var(--checkout-border, var(--theme-border,#263244))!important;
  background:var(--checkout-soft, var(--theme-soft,#111827))!important;
  color:var(--checkout-text, var(--theme-text,#F8FAFC))!important;
}

body.jg-cart-body .jg-invoice-manual-panel.is-collapsed {
  display:none!important;
}

body.jg-cart-body .jg-invoice-manual-panel:not(.is-collapsed) {
  margin-top:12px!important;
  padding:12px!important;
  border-radius:14px!important;
  background:var(--checkout-card, var(--theme-card,#151F32))!important;
  border:1px solid var(--checkout-border, var(--theme-border,#263244))!important;
}

body.jg-cart-body .jg-invoice-manual-head {
  display:flex!important;
  align-items:center!important;
  justify-content:space-between!important;
  gap:12px!important;
  margin-bottom:12px!important;
  padding-bottom:12px!important;
  border-bottom:1px solid var(--checkout-border, var(--theme-border,#263244))!important;
}

body.jg-cart-body .jg-invoice-manual-head strong,
body.jg-cart-body .jg-invoice-manual-head span {
  display:block!important;
}

body.jg-cart-body .jg-invoice-manual-head strong {
  color:var(--checkout-text, var(--theme-text,#F8FAFC))!important;
  font-size:13px!important;
  font-weight:950!important;
}

body.jg-cart-body .jg-invoice-manual-head span {
  margin-top:3px!important;
  color:var(--checkout-muted, var(--theme-muted,#94A3B8))!important;
  font-size:11px!important;
}

body.jg-cart-body .jg-invoice-manual-head button {
  min-height:32px!important;
  border:1px solid rgba(6,182,212,.30)!important;
  border-radius:10px!important;
  padding:0 10px!important;
  background:rgba(6,182,212,.10)!important;
  color:var(--checkout-accent, var(--theme-accent,#06B6D4))!important;
  font-size:11px!important;
  font-weight:900!important;
  cursor:pointer!important;
}

@media(max-width:767.98px){
  body.jg-cart-body .jg-saved-invoices-head,
  body.jg-cart-body .jg-selected-invoice-summary,
  body.jg-cart-body .jg-invoice-manual-head {
    align-items:stretch!important;
    flex-direction:column!important;
  }
  body.jg-cart-body .jg-saved-invoice-grid {
    grid-template-columns:1fr!important;
  }
  body.jg-cart-body .jg-selected-invoice-actions {
    width:100%!important;
  }
  body.jg-cart-body .jg-selected-invoice-actions button,
  body.jg-cart-body .jg-selected-link,
  body.jg-cart-body .jg-saved-add,
  body.jg-cart-body .jg-invoice-manual-head button {
    width:100%!important;
  }
}

/* Softer typography + wallet promo in cart summary */
body.jg-cart-body .jg-card-title,
body.jg-cart-body .jg-name,
body.jg-cart-body .jg-price strong,
body.jg-cart-body .jg-summary-row strong,
body.jg-cart-body .jg-total strong,
body.jg-cart-body .jg-saved-invoices-head strong,
body.jg-cart-body .jg-saved-title,
body.jg-cart-body .jg-saved-invoice-card b,
body.jg-cart-body .jg-selected-invoice-copy strong,
body.jg-cart-body .jg-invoice-heading p,
body.jg-cart-body .jg-invoice-field label,
body.jg-cart-body .jg-invoice-type-copy strong,
body.jg-cart-body .jg-pay-btn,
body.jg-cart-body .jg-update-btn,
body.jg-cart-body .jg-login-btn,
body.jg-cart-body .jg-guest-btn,
body.jg-cart-body .jg-link,
body.jg-cart-body .jg-badge,
body.jg-cart-body .jg-step {
  font-weight:600!important;
}

body.jg-cart-body .jg-summary-row,
body.jg-cart-body .jg-summary-row span,
body.jg-cart-body .jg-total span,
body.jg-cart-body .jg-secure,
body.jg-cart-body .jg-saved-invoices-head span,
body.jg-cart-body .jg-saved-invoice-card small,
body.jg-cart-body .jg-selected-invoice-copy small,
body.jg-cart-body .jg-invoice-hint,
body.jg-cart-body .jg-private-chip,
body.jg-cart-body .jg-price small {
  font-weight:400!important;
}

body.jg-cart-body .jg-card-title {
  font-size:16px!important;
  letter-spacing:0!important;
}

body.jg-cart-body .jg-name {
  font-size:14.5px!important;
  letter-spacing:0!important;
}

body.jg-cart-body .jg-summary-row strong {
  font-size:13px!important;
}

body.jg-cart-body .jg-total strong {
  font-size:27px!important;
}

body.jg-cart-body .jg-cart-alert {
  border:1px solid var(--checkout-border)!important;
  border-radius:14px!important;
  padding:12px 14px!important;
  background:var(--checkout-card)!important;
  color:var(--checkout-text)!important;
  font-size:13px!important;
  font-weight:500!important;
  box-shadow:var(--checkout-shadow)!important;
}

body.jg-cart-body .jg-cart-alert.alert-success {
  border-color:rgba(34,197,94,.35)!important;
  background:rgba(34,197,94,.10)!important;
  color:var(--checkout-text)!important;
}

body.jg-cart-body .jg-cart-alert.alert-danger {
  border-color:rgba(239,68,68,.35)!important;
  background:rgba(239,68,68,.10)!important;
  color:var(--checkout-text)!important;
}

body.jg-cart-body .jg-cart-promo {
  margin:14px 0!important;
  padding:12px!important;
  border:1px solid var(--checkout-border)!important;
  border-radius:13px!important;
  background:var(--checkout-soft)!important;
}

body.jg-cart-body .jg-cart-promo-head {
  display:flex!important;
  align-items:center!important;
  gap:9px!important;
  margin-bottom:10px!important;
}

body.jg-cart-body .jg-cart-promo-head > svg {
  width:17px!important;
  height:17px!important;
  color:var(--checkout-accent)!important;
  flex:0 0 17px!important;
}

body.jg-cart-body .jg-cart-promo-head strong,
body.jg-cart-body .jg-cart-promo-head span {
  display:block!important;
}

body.jg-cart-body .jg-cart-promo-head strong {
  color:var(--checkout-text)!important;
  font-size:12.5px!important;
  font-weight:600!important;
}

body.jg-cart-body .jg-cart-promo-head span {
  margin-top:2px!important;
  color:var(--checkout-muted)!important;
  font-size:11px!important;
  font-weight:400!important;
}

body.jg-cart-body .jg-cart-promo-field {
  display:grid!important;
  grid-template-columns:minmax(0,1fr) 82px!important;
  gap:8px!important;
}

body.jg-cart-body .jg-cart-promo-field input {
  width:100%!important;
  min-height:38px!important;
  border:1px solid var(--checkout-border)!important;
  border-radius:10px!important;
  background:var(--checkout-card)!important;
  color:var(--checkout-text)!important;
  padding:0 11px!important;
  outline:none!important;
  font-size:12px!important;
  font-weight:400!important;
  text-transform:uppercase!important;
}

body.jg-cart-body .jg-cart-promo-field input:focus {
  border-color:var(--checkout-primary)!important;
  box-shadow:0 0 0 3px rgba(37,99,235,.09)!important;
}

body.jg-cart-body .jg-cart-promo-field button {
  min-height:38px!important;
  border:0!important;
  border-radius:10px!important;
  background:linear-gradient(135deg,var(--checkout-primary),var(--checkout-accent))!important;
  color:#fff!important;
  font-size:12px!important;
  font-weight:600!important;
  cursor:pointer!important;
}

@media(max-width:480px){
  body.jg-cart-body .jg-cart-promo-field {
    grid-template-columns:1fr!important;
  }
}
