/* ═══════════════════════════════════════════════════
   WERBAVO Price Calculator — Stylesheet v1.1
   Fixed: replaced Claude.ai CSS vars with real values
          added theme isolation to prevent overrides
═══════════════════════════════════════════════════ */

/* ── CSS reset inside our wrapper ───────────────── */
.werb-wrap,
.werb-wrap * {
  box-sizing: border-box !important;
}

/* Isolate ALL buttons from theme styles */
.werb-wrap button,
.werb-wrap input[type="button"],
.werb-wrap input[type="submit"],
.werb-wrap input[type="reset"] {
  all: unset !important;
  box-sizing: border-box !important;
  cursor: pointer !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}

.werb-wrap input[type="number"],
.werb-wrap input[type="text"],
.werb-wrap input[type="email"] {
  all: unset !important;
  box-sizing: border-box !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  -webkit-appearance: none !important;
}

/* ── Variables (real values for WordPress) ───────── */
:root {
  --werb-coral:    #E84644;
  --werb-coral-dk: #c93a38;
  --werb-coral-lt: #fdecea;
  --werb-teal:     #00C0B1;
  --werb-teal-dk:  #00a095;
  --werb-teal-lt:  #e1f5f3;
  --werb-teal-mid: #5DCAA5;
  /* Real colors replacing Claude vars */
  --werb-bg:       #ffffff;
  --werb-bg2:      #f7f7f8;
  --werb-border:   #e5e7eb;
  --werb-border2:  #d1d5db;
  --werb-text:     #111827;
  --werb-text2:    #6b7280;
  --werb-info-bg:  #eff6ff;
  --werb-info-br:  #bfdbfe;
  --werb-info-tx:  #1d4ed8;
  --werb-radius:   8px;
  --werb-radius-lg:12px;
}

/* ── Base ────────────────────────────────────────── */
.werb-wrap {
  padding: 1.5rem 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  color: #111827;
  line-height: 1.5;
}

/* Header */
.werb-hdr { display: flex; align-items: center; gap: 12px; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid #e5e7eb; }
.werb-logo { width: 38px; height: 38px; background: #E84644; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 15px; flex-shrink: 0; }
.werb-title { font-size: 17px; font-weight: 700; color: #111827; }
.werb-title span { color: #00C0B1; }
.werb-sub { font-size: 12px; color: #6b7280; margin-top: 2px; }

/* Layout */
.werb-main-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 1rem; align-items: start; }
.werb-left { display: flex; flex-direction: column; gap: 14px; }
.werb-right { display: flex; flex-direction: column; gap: 10px; position: sticky; top: 1rem; }

/* Cards */
.werb-card,
.werb-pay-card { background: #ffffff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 1rem; }
.werb-accent { height: 3px; background: #00C0B1; border-radius: 0 0 6px 6px; margin: -1rem -1rem 10px; }
.werb-slbl { font-size: 11px; font-weight: 600; color: #6b7280; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.werb-snum { width: 18px; height: 18px; background: #E84644; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; color: #fff; flex-shrink: 0; }

/* Upload zone */
.werb-uz { border: 1.5px dashed #d1d5db; border-radius: 8px; padding: 1.5rem 1rem; text-align: center; cursor: pointer; transition: .15s; background: #ffffff; }
.werb-uz:hover,
.werb-uz.drag { border-color: #00C0B1 !important; background: #e1f5f3 !important; }
.werb-uz .ti { font-size: 28px; color: #00C0B1; margin-bottom: 6px; display: block; }
.werb-uz-title { font-size: 14px; font-weight: 600; color: #111827; }
.werb-uz-sub { font-size: 12px; color: #6b7280; margin-top: 3px; }
.werb-uz-fmt { font-size: 11px; color: #6b7280; margin-top: 6px; padding-top: 6px; border-top: 1px solid #e5e7eb; }

/* Add file button */
.werb-add-file-btn {
  display: none;
  width: 100% !important;
  padding: 9px !important;
  border: 1px dashed #e5e7eb !important;
  border-radius: 8px !important;
  background: #f7f7f8 !important;
  color: #6b7280 !important;
  font-size: 13px !important;
  cursor: pointer !important;
  text-align: center !important;
  transition: .15s !important;
}
.werb-add-file-btn:hover { border-color: #00C0B1 !important; color: #00C0B1 !important; }

/* Job card */
.werb-job-card { background: #ffffff; border: 1.5px solid #E84644; border-radius: 12px; overflow: hidden; }
.werb-jc-head { display: flex; align-items: center; gap: 8px; padding: 10px 12px; background: #E84644; border-bottom: none; }
.werb-jc-num { font-size: 11px; font-weight: 600; background: rgba(255,255,255,.22); color: #fff; padding: 2px 8px; border-radius: 10px; flex-shrink: 0; }
.werb-jc-file { font-size: 12px; font-weight: 600; color: #fff; flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.werb-jc-sub { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.9); flex-shrink: 0; }

/* Remove button */
.werb-jc-rm {
  background: none !important;
  border: none !important;
  cursor: pointer !important;
  color: rgba(255,255,255,.7) !important;
  padding: 2px 4px !important;
  display: flex !important;
  align-items: center !important;
  line-height: 1 !important;
  border-radius: 4px !important;
}
.werb-jc-rm:hover { color: #fff !important; }

.werb-jc-body { padding: 12px; }
.werb-jc-section { margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px solid #e5e7eb; }
.werb-jc-section:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.werb-sec-lbl { font-size: 10px; font-weight: 600; color: #6b7280; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 8px; }

/* Preflight */
.werb-pfw { border: 1px solid #e5e7eb; border-radius: 8px; overflow: hidden; margin-bottom: 8px; }
.werb-pfh { background: #f7f7f8; padding: 5px 10px; font-size: 10px; font-weight: 600; color: #6b7280; display: flex; align-items: center; gap: 5px; text-transform: uppercase; }
.werb-pfr { display: flex; align-items: center; gap: 6px; padding: 5px 10px; border-top: 1px solid #e5e7eb; background: #ffffff; font-size: 12px; }
.werb-pf-ok .ti { color: #0F6E56; }
.werb-pf-wn .ti { color: #854F0B; }
.werb-pfl { color: #6b7280; flex: 1; }
.werb-bdg { font-size: 9px; padding: 2px 7px; border-radius: 8px; white-space: nowrap; }
.werb-bok { background: #e1f5ee; color: #085041; }
.werb-bwn { background: #faeeda; color: #633806; }

/* Info boxes */
.werb-ib { border-radius: 8px; padding: 8px 10px; margin-bottom: 8px; display: flex; gap: 8px; align-items: flex-start; font-size: 12px; }
.werb-ib-g { background: #e1f5f3; border: 1px solid #5DCAA5; }
.werb-ib-g .ti,
.werb-ib-g .werb-ib-t { color: #085041; }
.werb-ib-b { background: #eff6ff; border: 1px solid #bfdbfe; }
.werb-ib-b .ti,
.werb-ib-b .werb-ib-t { color: #1d4ed8; }
.werb-ib-a { background: #faeeda; border: 1px solid #EF9F27; }
.werb-ib-a .ti,
.werb-ib-a .werb-ib-t { color: #633806; }
.werb-ib-t { font-weight: 600; }
.werb-ib-x { color: #6b7280; margin-top: 2px; line-height: 1.4; font-size: 11px; }

/* Dimensions + qty row */
.werb-dq-row { display: grid; grid-template-columns: 1fr 1fr auto; gap: 8px; align-items: end; }
.werb-fw { display: flex; flex-direction: column; gap: 3px; }
.werb-fw label { font-size: 11px; color: #6b7280; display: flex; align-items: center; gap: 4px; }
.werb-atag { font-size: 9px; background: #e1f5f3; color: #085041; padding: 1px 5px; border-radius: 5px; font-weight: 600; }
.werb-dim-in {
  border: 1px solid #d1d5db !important;
  border-radius: 8px !important;
  padding: 7px 8px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  background: #ffffff !important;
  color: #111827 !important;
  width: 100% !important;
  outline: none !important;
  transition: border-color .15s !important;
  display: block !important;
}
.werb-dim-in:focus { border-color: #00C0B1 !important; }
.werb-dim-in.af { border-color: #00C0B1 !important; background: #e1f5f3 !important; }

/* Quantity buttons */
.werb-qty-sm { display: flex; align-items: center; gap: 4px; }
.werb-qty-sm button {
  width: 28px !important;
  height: 30px !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  color: #111827 !important;
  font-size: 16px !important;
  line-height: 1 !important;
}
.werb-qty-sm button:hover { border-color: #00C0B1 !important; color: #00C0B1 !important; }
.werb-qty-sm span { font-size: 14px; font-weight: 600; min-width: 24px; text-align: center; color: #111827; }

.werb-area-sm { display: none; align-items: center; gap: 5px; font-size: 12px; color: #6b7280; margin-top: 6px; padding-top: 6px; border-top: 1px solid #e5e7eb; }
.werb-area-sm strong { color: #00C0B1; font-weight: 700; }

/* Material options */
.werb-mat-opts { display: flex; flex-direction: column; gap: 5px; }
.werb-mat-opt { display: flex; align-items: center; gap: 8px; padding: 7px 9px; border: 1px solid #e5e7eb; border-radius: 8px; cursor: pointer; background: #ffffff; transition: .15s; }
.werb-mat-opt:hover { border-color: #00C0B1; }
.werb-mat-opt.sel { border-color: #00C0B1; background: #e1f5f3; }
.werb-mo-r { width: 12px; height: 12px; border-radius: 50%; border: 1.5px solid #d1d5db; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.werb-mat-opt.sel .werb-mo-r { border-color: #00C0B1; background: #00C0B1; }
.werb-mo-d { width: 4px; height: 4px; border-radius: 50%; background: #fff; }
.werb-mo-info { flex: 1; min-width: 0; }
.werb-mo-name { font-size: 12px; font-weight: 600; color: #111827; }
.werb-mat-opt.sel .werb-mo-name { color: #085041; }
.werb-mo-ref { font-size: 10px; color: #6b7280; font-family: monospace; }
.werb-mo-tags { display: flex; gap: 3px; margin-top: 3px; flex-wrap: wrap; }
.werb-tg { font-size: 9px; padding: 1px 5px; border-radius: 5px; }
.werb-tg-out { background: #e1f5f3; color: #085041; }
.werb-tg-in { background: #e6f1fb; color: #0C447C; }
.werb-tg-lt { background: #f1efe8; color: #5F5E5A; }
.werb-tg-st { background: #fdecea; color: #993C1D; }
.werb-mo-p { font-size: 13px; font-weight: 700; color: #E84644; flex-shrink: 0; }

/* Finishing */
.werb-fin-list { display: flex; flex-direction: column; gap: 3px; }
.werb-fin-row { display: flex; align-items: center; gap: 7px; padding: 5px 7px; border-radius: 7px; cursor: pointer; font-size: 12px; transition: background .1s; }
.werb-fin-row:hover { background: #f7f7f8; }
.werb-fin-row.on { background: #e1f5f3; }
.werb-fin-cb { width: 14px; height: 14px; border: 1px solid #d1d5db; border-radius: 3px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; background: #ffffff; transition: .15s; }
.werb-fin-cb.on { background: #00C0B1; border-color: #00C0B1; }
.werb-fin-cb .ti { font-size: 10px; color: #fff; }
.werb-fin-lbl { flex: 1; color: #111827; }
.werb-fin-p { color: #6b7280; font-size: 11px; }

/* ── Delivery buttons ────────────────────────────── */
.werb-og { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }

.werb-op {
  padding: 8px 6px !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 8px !important;
  font-size: 11px !important;
  background: #ffffff !important;
  color: #6b7280 !important;
  cursor: pointer !important;
  text-align: center !important;
  line-height: 1.4 !important;
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  font-weight: 400 !important;
  transition: border-color .15s !important;
  border-radius: 8px !important;
}
.werb-op:hover { border-color: #00C0B1 !important; }
.werb-op.sel { background: #e1f5f3 !important; border-color: #00C0B1 !important; color: #085041 !important; }
.werb-op .ti { display: block !important; font-size: 16px !important; margin-bottom: 3px !important; line-height: 1.2 !important; }

.werb-addr-wrap { margin-top: 8px; }
.werb-addr-wrap label { font-size: 11px; color: #6b7280; display: block; margin-bottom: 3px; }
.werb-addr-wrap input[type="text"] {
  width: 100% !important;
  border: 1px solid #d1d5db !important;
  border-radius: 8px !important;
  padding: 7px 9px !important;
  font-size: 12px !important;
  background: #ffffff !important;
  color: #111827 !important;
  display: block !important;
  outline: none !important;
}
.werb-addr-wrap input[type="text"]:focus { border-color: #00C0B1 !important; }

/* Summary */
.werb-sum-title { font-size: 13px; font-weight: 600; color: #111827; margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.werb-sum-job { display: flex; justify-content: space-between; align-items: flex-start; padding: 5px 0; border-bottom: 1px solid #e5e7eb; }
.werb-sj-num { font-size: 10px; background: #E84644; color: #fff; padding: 1px 5px; border-radius: 6px; margin-right: 4px; flex-shrink: 0; }
.werb-sj-name { font-size: 12px; color: #6b7280; flex: 1; }
.werb-sj-val { font-size: 13px; font-weight: 700; color: #111827; flex-shrink: 0; margin-left: 8px; }
.werb-sum-empty { font-size: 12px; color: #6b7280; text-align: center; padding: 12px 0; }
.werb-sr { display: flex; justify-content: space-between; align-items: center; padding: 4px 0; font-size: 12px; color: #6b7280; }
.werb-sr span:last-child { color: #111827; font-weight: 500; }
.werb-sdv { border: none; border-top: 1px solid #e5e7eb; margin: 7px 0; }
.werb-vbl { border: 1px solid #e5e7eb; border-radius: 8px; overflow: hidden; margin-top: 7px; }
.werb-vr { display: flex; justify-content: space-between; align-items: center; padding: 6px 9px; font-size: 12px; }
.werb-vr span:first-child { color: #6b7280; }
.werb-vr span:last-child { color: #111827; font-weight: 600; }
.werb-vr.nt,
.werb-vr.mw { background: #f7f7f8; }
.werb-vr.mw { border-top: 1px solid #e5e7eb; }
.werb-vr.br { background: #E84644; border-top: 1px solid rgba(0,0,0,.08); }
.werb-vr.br span:first-child { color: rgba(255,255,255,.85); font-weight: 500; }
.werb-vr.br span:last-child { color: #fff !important; font-size: 16px; font-weight: 700; }
.werb-vbdg { font-size: 9px; background: rgba(255,255,255,.22); color: #fff; padding: 1px 6px; border-radius: 5px; margin-left: 5px; }
.werb-dlb { background: #f7f7f8; border-radius: 8px; padding: 8px 10px; margin-top: 7px; display: none; }
.werb-dlr { display: flex; justify-content: space-between; font-size: 11px; padding: 2px 0; }
.werb-dlr span:first-child { color: #6b7280; }
.werb-dlr span:last-child { color: #111827; font-weight: 600; }
.werb-dld { font-size: 12px; font-weight: 700; color: #00C0B1; margin-top: 5px; display: flex; align-items: center; gap: 4px; }

/* ── Payment section ─────────────────────────────── */

/* PDF Quote button */
.werb-pdf-btn {
  width: 100% !important;
  padding: 10px !important;
  background: #ffffff !important;
  color: #00C0B1 !important;
  border: 1.5px solid #00C0B1 !important;
  border-radius: 8px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  margin-bottom: 10px !important;
  transition: background .15s !important;
}
.werb-pdf-btn:hover { background: #e1f5f3 !important; }
.werb-pdf-btn:disabled { opacity: .4 !important; cursor: not-allowed !important; }

.werb-pay-divider { height: 1px; background: #e5e7eb; margin-bottom: 10px; }
.werb-pay-title { font-size: 11px; font-weight: 600; color: #6b7280; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }

/* PayPal button */
.werb-paypal-btn {
  width: 100% !important;
  height: 44px !important;
  background: #FFC439 !important;
  border: none !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  transition: filter .15s !important;
  padding: 0 !important;
}
.werb-paypal-btn:hover { filter: brightness(.95) !important; }
.werb-paypal-btn:disabled { opacity: .45 !important; cursor: not-allowed !important; }

.werb-pp-logo { font-size: 16px; font-style: italic; font-weight: 800; letter-spacing: -.5px; }
.werb-pp-logo .p1 { color: #003087; }
.werb-pp-logo .p2 { color: #009cde; }
.werb-pp-sub { font-size: 13px; color: #003087; opacity: .75; font-weight: 400; }

.werb-or-div { display: flex; align-items: center; gap: 8px; margin: 10px 0; color: #6b7280; font-size: 11px; }
.werb-or-div::before,
.werb-or-div::after { content: ''; flex: 1; height: 1px; background: #e5e7eb; }

/* Card pay button */
.werb-card-pay-btn {
  width: 100% !important;
  padding: 10px 12px !important;
  border: 1px solid #d1d5db !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  transition: border-color .15s !important;
}
.werb-card-pay-btn:hover { border-color: #00C0B1 !important; }
.werb-card-pay-btn:disabled { opacity: .45 !important; cursor: not-allowed !important; }
.werb-cpb-left { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: #111827; }
.werb-logos { display: flex; gap: 4px; }

.werb-sec-badge { display: flex; align-items: center; justify-content: center; gap: 5px; margin-top: 8px; font-size: 10px; color: #6b7280; }

/* ── Modals ───────────────────────────────────────── */
.werb-modal-ov {
  position: fixed !important;
  inset: 0 !important;
  background: rgba(0,0,0,.55) !important;
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 99999 !important;
  padding: 1rem !important;
}
.werb-modal-ov.open { display: flex !important; }
.werb-modal-box {
  background: #ffffff;
  border-radius: 16px;
  width: 100%;
  max-width: 400px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.25);
}
.werb-modal-bar { height: 3px; background: #00C0B1; }
.werb-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid #e5e7eb;
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}
.werb-modal-head button {
  background: none !important;
  border: none !important;
  cursor: pointer !important;
  font-size: 22px !important;
  color: #6b7280 !important;
  padding: 2px 6px !important;
  line-height: 1 !important;
  border-radius: 4px !important;
}
.werb-modal-head button:hover { color: #E84644 !important; }

/* Card visual */
.werb-cv { height: 126px; border-radius: 14px; margin: 14px 16px 0; padding: 14px 16px; position: relative; overflow: hidden; }
.cv-default { background: linear-gradient(135deg, #c93a38 0%, #E84644 55%, #f07a55 100%); }
.cv-visa { background: linear-gradient(135deg, #c73230 0%, #E84644 60%, #ff6b50 100%); }
.cv-mc { background: linear-gradient(135deg, #00a095 0%, #00C0B1 60%, #00d4c4 100%); }
.werb-cv-chip { width: 30px; height: 22px; background: linear-gradient(135deg, #d4a843, #f5cc60); border-radius: 4px; margin-bottom: 12px; }
.werb-cv-num { font-family: monospace; font-size: 15px; font-weight: 500; color: rgba(255,255,255,.92); letter-spacing: 2px; }
.werb-cv-bot { display: flex; justify-content: space-between; align-items: flex-end; margin-top: 8px; }
.werb-cv-lbl { font-size: 9px; color: rgba(255,255,255,.55); margin-bottom: 2px; text-transform: uppercase; }
.werb-cv-name { font-size: 11px; color: rgba(255,255,255,.9); text-transform: uppercase; }
.werb-cv-exp { font-size: 12px; color: rgba(255,255,255,.9); font-family: monospace; }
.werb-cv-logo { position: absolute; right: 14px; top: 14px; }
.werb-cv-mark { font-size: 11px; font-weight: 700; color: rgba(255,255,255,.7); letter-spacing: 1px; }

/* Card form */
.werb-cf { padding: 14px 16px; }
.werb-cf-field { margin-bottom: 10px; }
.werb-cf-field label { font-size: 11px; color: #6b7280; display: block; margin-bottom: 4px; }
.werb-cf-in {
  width: 100% !important;
  border: 1px solid #d1d5db !important;
  border-radius: 8px !important;
  padding: 9px 10px !important;
  font-size: 14px !important;
  background: #ffffff !important;
  color: #111827 !important;
  display: block !important;
  outline: none !important;
  transition: border-color .15s, box-shadow .15s !important;
  font-family: monospace !important;
}
.werb-cf-in:focus { border-color: #00C0B1 !important; box-shadow: 0 0 0 3px rgba(0,192,177,.1) !important; }
.werb-cf-in.valid { border-color: #00C0B1 !important; }
.werb-cf-in.invalid { border-color: #E84644 !important; box-shadow: 0 0 0 3px rgba(232,70,68,.1) !important; }
.werb-cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

/* Pay Now button */
.werb-pay-now-btn {
  width: 100% !important;
  padding: 12px !important;
  background: #E84644 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  margin-top: 4px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  transition: background .15s !important;
}
.werb-pay-now-btn:hover { background: #c93a38 !important; }
.werb-pay-now-btn.loading { background: #aaa !important; cursor: wait !important; }

.werb-modal-sec { display: flex; align-items: center; justify-content: center; gap: 4px; font-size: 10px; color: #6b7280; margin-top: 10px; padding-top: 10px; border-top: 1px solid #e5e7eb; }

/* PayPal modal */
.werb-pp-body { padding: 16px; }
.werb-pp-logo-lg { font-size: 18px; font-style: italic; font-weight: 800; }
.werb-pp-logo-lg .p1 { color: #003087; }
.werb-pp-logo-lg .p2 { color: #009cde; }
.werb-pp-amt { text-align: center; font-size: 22px; font-weight: 700; color: #111827; margin: 10px 0; }
.werb-pp-amt span { font-size: 12px; color: #6b7280; font-weight: 400; display: block; margin-top: 2px; }
.werb-pp-field { margin: 12px 0; }
.werb-pp-field label { font-size: 11px; color: #6b7280; display: block; margin-bottom: 4px; }
.werb-pp-field input[type="email"] {
  width: 100% !important;
  border: 1px solid #d1d5db !important;
  border-radius: 8px !important;
  padding: 9px 10px !important;
  font-size: 14px !important;
  background: #ffffff !important;
  color: #111827 !important;
  display: block !important;
  outline: none !important;
}
.werb-pp-field input[type="email"]:focus { border-color: #00C0B1 !important; }

.werb-pp-pay-btn {
  width: 100% !important;
  padding: 12px !important;
  background: #FFC439 !important;
  color: #003087 !important;
  border: none !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
}
.werb-pp-pay-btn:hover { filter: brightness(.95) !important; }

/* Success screen */
.werb-success { padding: 24px 16px; text-align: center; display: none; }
.werb-success-icon { width: 56px; height: 56px; background: #e1f5f3; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; font-size: 24px; color: #00C0B1; }
.werb-success-title { font-size: 16px; font-weight: 700; color: #111827; margin-bottom: 6px; }
.werb-success-sub { font-size: 13px; color: #6b7280; }
.werb-success-ref { font-size: 11px; color: #6b7280; margin-top: 10px; font-family: monospace; background: #f7f7f8; padding: 5px 12px; border-radius: 8px; display: inline-block; }

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 700px) {
  .werb-main-grid { grid-template-columns: 1fr !important; }
  .werb-right { position: static !important; }
}

/* ═══════════════════════════════════════════════════
   RUSH ORDER
═══════════════════════════════════════════════════ */
#werb-rush-opts { display: flex; flex-direction: column; gap: 5px; }

.werb-rush-opt {
  padding: 9px 11px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  background: #fff;
  transition: border-color .15s, background .15s;
}
.werb-rush-opt:hover { border-color: #E84644; }
.werb-rush-opt.sel   { border-color: #E84644; background: #fdecea; }

.werb-rush-label {
  font-size: 12px;
  font-weight: 600;
  color: #111827;
}
.werb-rush-opt.sel .werb-rush-label { color: #c93a38; }

.werb-rush-meta {
  font-size: 11px;
  color: #6b7280;
  margin-top: 2px;
}
.werb-rush-opt.sel .werb-rush-meta { color: #c93a38; opacity: .8; }

/* ═══════════════════════════════════════════════════
   ARTWORK CHECK
═══════════════════════════════════════════════════ */
.werb-artwork-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  background: #fff;
  transition: border-color .15s, background .15s;
}
.werb-artwork-row:hover { border-color: #00C0B1; }
.werb-artwork-row.on    { border-color: #00C0B1; background: #e1f5f3; }

/* ═══════════════════════════════════════════════════
   FILE PREVIEW
═══════════════════════════════════════════════════ */
.werb-file-preview {
  border-top: 1px solid #e5e7eb;
  overflow: hidden;
  background: #f7f7f8;
}
.werb-file-preview img {
  max-height: 130px;
  max-width: 100%;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* Rush line in summary */
#werb-rush-line {
  background: #fdecea !important;
}
#werb-rush-line span { color: #c93a38 !important; }
