/* =============================================
   CLAIM OVERLAY — Multi-Step Wizard
   ============================================= */

/* ── BANNER ────────────────────────────────────── */
.co-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9990;
  background: #1a56db;
  color: #fff;
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 -4px 24px rgba(0,0,0,.4);
}
.co-banner.show      { transform: translateY(0); }
.co-banner.minimized { transform: translateY(calc(100% - 52px)); }

.co-banner-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.co-banner-left {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  font-size: 0.9375rem;
}
.co-banner-left > span { font-size: 1.25rem; flex-shrink: 0; }
.co-banner-copy { display: flex; align-items: baseline; gap: 0.5rem; white-space: nowrap; overflow: hidden; }
.co-banner-copy strong { font-weight: 800; }
.co-banner-copy span   { opacity: .85; overflow: hidden; text-overflow: ellipsis; }

.co-banner-right { display: flex; align-items: center; gap: 0.625rem; flex-shrink: 0; }

.co-btn-ghost {
  display: flex; align-items: center; gap: 0.35rem;
  padding: 0.375rem 0.875rem;
  background: rgba(255,255,255,.15);
  border: 1.5px solid rgba(255,255,255,.5);
  border-radius: 6px;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}
.co-btn-ghost:hover { background: rgba(255,255,255,.25); }

.co-btn-solid {
  padding: 0.4rem 1.125rem;
  background: #fff;
  color: #1a56db;
  border: none;
  border-radius: 6px;
  font-size: 0.9375rem;
  font-weight: 800;
  cursor: pointer;
  transition: opacity .2s, transform .2s;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.co-btn-solid:hover { opacity: .92; transform: translateY(-1px); }

.co-btn-icon {
  width: 34px; height: 34px;
  background: rgba(255,255,255,.15);
  border: 1.5px solid rgba(255,255,255,.4);
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
  flex-shrink: 0;
}
.co-btn-icon:hover { background: rgba(255,255,255,.25); }

/* ── BACKDROP ──────────────────────────────────── */
.co-backdrop {
  position: fixed; inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.82);
  display: flex; align-items: flex-start; justify-content: center;
  padding: 2rem 1rem 4rem;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
  overflow-y: auto;
}
.co-backdrop.open { opacity: 1; pointer-events: all; }

/* ── MODAL ─────────────────────────────────────── */
.co-modal {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 640px;
  position: relative;
  transform: translateY(-16px);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 32px 80px rgba(0,0,0,.45);
  overflow: hidden;
  margin: auto;
}
.co-backdrop.open .co-modal { transform: translateY(0); }

/* ── PROGRESS BAR ──────────────────────────────── */
.co-progress {
  height: 4px;
  background: #e5e7eb;
}
.co-progress-bar {
  height: 100%;
  background: #1a56db;
  transition: width .4s ease;
  width: 0%;
}

/* ── STEP INDICATORS ───────────────────────────── */
.co-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem 0;
  gap: 0;
  background: #fff;
}

.co-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  cursor: default;
}
.co-step span {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #e5e7eb;
  color: #9ca3af;
  font-size: 0.8125rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: background .3s, color .3s;
}
.co-step label {
  font-size: 0.6875rem;
  font-weight: 600;
  color: #9ca3af;
  transition: color .3s;
}
.co-step.active span  { background: #1a56db; color: #fff; }
.co-step.active label { color: #1a56db; }
.co-step.done span    { background: #111; color: #fff; }
.co-step.done label   { color: #374151; }

.co-step-line {
  flex: 1;
  height: 2px;
  background: #e5e7eb;
  margin: 0 0.25rem;
  margin-bottom: 1rem;
  min-width: 24px;
  max-width: 60px;
}

/* ── CLOSE BUTTON ──────────────────────────────── */
.co-close {
  position: absolute; top: 0.875rem; right: 0.875rem;
  width: 32px; height: 32px;
  background: #f3f4f6;
  border: none; border-radius: 50%;
  color: #374151; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s;
  z-index: 10;
}
.co-close:hover { background: #e5e7eb; transform: rotate(90deg); }

/* ── PANELS ────────────────────────────────────── */
.co-panel { padding: 1.25rem 2rem 2rem; }
.co-panel.hidden { display: none; }

.co-panel-head {
  text-align: center;
  margin-bottom: 1.5rem;
}
.co-panel-icon { font-size: 2.5rem; margin-bottom: 0.5rem; }
.co-panel-head h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #000;
  margin: 0 0 0.4rem;
}
.co-panel-head p {
  font-size: 0.9375rem;
  color: #374151;
  margin: 0;
  line-height: 1.5;
}
.co-panel-head p strong { color: #000; }

/* ── FORM GRID ─────────────────────────────────── */
.co-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.co-field { display: flex; flex-direction: column; gap: 0.3rem; }
.co-field label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #111;
}
.co-field input {
  padding: 0.625rem 0.875rem;
  border: 1.5px solid #9ca3af;
  border-radius: 8px;
  font-size: 0.9375rem;
  color: #000;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.co-field input:focus {
  outline: none;
  border-color: #1a56db;
  box-shadow: 0 0 0 3px rgba(26,86,219,.12);
}

/* ── THEME GRID ────────────────────────────────── */
.co-theme-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.co-theme-card { cursor: pointer; }
.co-theme-card input[type="radio"] { display: none; }

.co-theme-inner {
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  padding: 0.875rem 0.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  height: 100%;
  box-sizing: border-box;
  transition: border-color .2s, box-shadow .2s;
}
.co-theme-card input:checked + .co-theme-inner {
  border-color: #1a56db;
  box-shadow: 0 0 0 3px rgba(26,86,219,.15);
}

.co-swatch {
  width: 100%;
  height: 44px;
  border-radius: 6px;
  margin-bottom: 0.35rem;
}

.co-theme-inner strong {
  font-size: 0.9375rem;
  font-weight: 800;
  color: #000;
  display: block;
}
.co-theme-inner > span {
  font-size: 0.75rem;
  color: #374151;
  display: block;
  line-height: 1.4;
}

.co-active-badge {
  display: none;
  margin-top: 0.35rem;
  background: #1a56db;
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 20px;
  white-space: nowrap;
}

/* ── INCLUDES COMPACT ──────────────────────────── */
.co-includes-compact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.co-inc-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #111;
  padding: 0.5rem 0.75rem;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 6px;
}
.co-tick {
  color: #16a34a;
  font-weight: 800;
  flex-shrink: 0;
}

/* ── ADD-ONS ───────────────────────────────────── */
.co-addons { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; }

.co-addon { cursor: pointer; }
.co-addon input[type="checkbox"] { display: none; }

.co-addon-inner {
  display: flex; align-items: flex-start; gap: 0.875rem;
  padding: 0.875rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  transition: border-color .2s, background .2s;
  position: relative;
}
.co-addon input:checked + .co-addon-inner {
  border-color: #1a56db;
  background: #eff6ff;
}

/* Checkbox indicator */
.co-addon-inner::before {
  content: '';
  position: absolute;
  top: 0.875rem;
  right: 0.875rem;
  width: 20px;
  height: 20px;
  border: 2px solid #d1d5db;
  border-radius: 4px;
  background: #fff;
  transition: background .2s, border-color .2s;
  flex-shrink: 0;
}
.co-addon input:checked + .co-addon-inner::before {
  background: #1a56db;
  border-color: #1a56db;
}
.co-addon-inner::after {
  content: '';
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  width: 6px;
  height: 10px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity .2s;
}
.co-addon input:checked + .co-addon-inner::after {
  opacity: 1;
}

.co-addon-icon { font-size: 1.375rem; flex-shrink: 0; margin-top: 1px; }
.co-addon-inner div { display: flex; flex-direction: column; gap: 0.2rem; padding-right: 1.75rem; }
.co-addon-inner strong {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #000;
  display: flex; align-items: center; flex-wrap: wrap; gap: 0.4rem;
}
.co-addon-inner span { font-size: 0.8125rem; color: #374151; line-height: 1.4; }
.co-price-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background: #1a56db;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
}
.co-price-badge {
  font-size: 0.7rem;
  font-weight: 700;
  color: #374151;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  padding: 0.1rem 0.45rem;
  border-radius: 4px;
  white-space: nowrap;
}

/* ── PRICE SUMMARY ─────────────────────────────── */
.co-price-summary {
  background: #f9fafb;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}
.co-price-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.3rem 0;
  font-size: 0.9375rem;
}
.co-price-row span  { color: #374151; font-weight: 500; }
.co-price-row strong { color: #000; font-weight: 700; }
.co-price-divider { height: 1.5px; background: #e5e7eb; margin: 0.5rem 0; }
.co-price-total { font-size: 1.0625rem; }
.co-price-total span  { color: #000; font-weight: 800; }
.co-price-total strong { font-size: 1.25rem; font-weight: 900; color: #000; }

/* ── PROMO CODE ────────────────────────────────── */
.co-promo-wrap {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  align-items: center;
}
.co-promo-wrap input {
  flex: 1;
  padding: 0.5rem 0.875rem;
  border: 1.5px solid #9ca3af;
  border-radius: 8px;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #111;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.co-promo-wrap input:focus { border-color: #1a56db; box-shadow: 0 0 0 3px rgba(26,86,219,.12); }
.co-promo-wrap input.co-promo-ok  { border-color: #16a34a; box-shadow: 0 0 0 3px rgba(22,163,74,.12); }
.co-promo-wrap input.co-promo-err { border-color: #dc2626; box-shadow: 0 0 0 3px rgba(220,38,38,.10); }
.co-promo-apply {
  padding: 0.5rem 1rem;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s;
}
.co-promo-apply:hover { background: #374151; }
.co-promo-apply:disabled { background: #9ca3af; cursor: not-allowed; }
.co-promo-msg {
  font-size: 0.8125rem;
  font-weight: 600;
  min-height: 1.2em;
  margin-bottom: 0.5rem;
}
.co-promo-msg.ok  { color: #16a34a; }
.co-promo-msg.err { color: #dc2626; }

/* ── PAYMENT CARDS ─────────────────────────────── */
.co-pay-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
  margin-bottom: 1.5rem;
}

.co-pay-card { cursor: pointer; position: relative; }
.co-pay-card input[type="radio"] { display: none; }

/* Disabled / coming-soon payment card */
.co-pay-card--disabled { cursor: not-allowed; }
.co-pay-card--disabled .co-pay-inner {
  opacity: 0.45;
  filter: grayscale(60%);
  pointer-events: none;
}
.co-pay-soon {
  position: absolute;
  top: 6px; right: 8px;
  background: #6b7280;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 20px;
  pointer-events: none;
}

.co-pay-inner {
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: border-color .2s, box-shadow .2s;
}
.co-pay-card input:checked + .co-pay-inner {
  border-color: #1a56db;
  box-shadow: 0 0 0 3px rgba(26,86,219,.15);
}
.co-pay-logo { width: 52px; height: 52px; border-radius: 10px; }
.co-pay-inner strong { font-size: 0.9375rem; font-weight: 800; color: #000; }
.co-pay-inner span   { font-size: 0.75rem; color: #374151; }

/* ── ORDER SUMMARY ─────────────────────────────── */
.co-order-summary {
  background: #f9fafb;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}
.co-os-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: #6b7280;
  margin-bottom: 0.625rem;
}
.co-os-row {
  display: flex; justify-content: space-between;
  padding: 0.3rem 0;
  font-size: 0.875rem;
  color: #374151;
  border-bottom: 1px solid #f3f4f6;
}
.co-os-row strong { color: #000; font-weight: 600; }
.co-os-total {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 0.625rem;
  font-size: 1rem;
  font-weight: 800;
  color: #000;
}
.co-os-total strong { font-size: 1.125rem; }

/* ── NAV ROW ───────────────────────────────────── */
.co-nav-row {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.co-back-btn {
  padding: 0.75rem 1.25rem;
  background: #f3f4f6;
  color: #374151;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}
.co-back-btn:hover { background: #e5e7eb; }

.co-next-btn, .co-submit-btn {
  flex: 1;
  padding: 0.875rem 1.5rem;
  background: #1a56db;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  transition: opacity .2s, transform .2s;
}
.co-next-btn:hover, .co-submit-btn:hover { opacity: .9; transform: translateY(-1px); }
.co-submit-btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }

/* Shake animation for validation */
@keyframes coShake {
  0%,100% { transform: translateX(0); }
  20%,60% { transform: translateX(-6px); }
  40%,80% { transform: translateX(6px); }
}
.shake { animation: coShake .4s ease; }

.co-disclaimer {
  text-align: center;
  font-size: 0.8125rem;
  color: #6b7280;
  margin-top: 0.75rem;
}

/* ── SUCCESS / INVOICE ─────────────────────────── */
.co-invoice-card {
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.co-inv-header {
  background: #111;
  color: #fff;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.co-inv-brand {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.co-inv-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.4);
  object-fit: cover;
  flex-shrink: 0;
}
.co-inv-brand div { display: flex; flex-direction: column; gap: 0.15rem; }
.co-inv-brand strong { font-size: 0.9375rem; font-weight: 700; }
.co-inv-brand span   { font-size: 0.75rem; opacity: .7; }

.co-inv-meta { text-align: right; flex-shrink: 0; }
.co-inv-label { font-size: 0.6875rem; font-weight: 700; letter-spacing: .1em; opacity: .55; margin-bottom: 0.2rem; }
.co-inv-num   { font-size: 1rem; font-weight: 800; }
.co-inv-date  { font-size: 0.75rem; opacity: .65; margin-top: 0.15rem; }

.co-inv-to {
  padding: 0.875rem 1.5rem;
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
}
.co-inv-to-label { font-size: 0.6875rem; font-weight: 700; letter-spacing: .08em; color: #9ca3af; margin-bottom: 0.2rem; }
.co-inv-to-name  { font-size: 0.9375rem; font-weight: 700; color: #000; }
.co-inv-to-email { font-size: 0.8125rem; color: #374151; }

.co-inv-table { width: 100%; border-collapse: collapse; }
.co-inv-table th {
  padding: 0.5rem 1.5rem;
  text-align: left;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: #9ca3af;
  border-bottom: 1px solid #e5e7eb;
  background: #fff;
}
.co-inv-table th:last-child { text-align: right; }
.co-inv-table td {
  padding: 0.5rem 1.5rem;
  color: #374151;
  border-bottom: 1px solid #f3f4f6;
  font-size: 0.875rem;
}
.co-inv-table td:last-child { text-align: right; font-weight: 600; color: #000; }
.co-inv-total-row td {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 800;
  color: #000;
  background: #f9fafb;
  border-bottom: none;
}
.co-inv-total-row td:last-child { font-size: 1.125rem; }

/* Thank you */
.co-thankyou { text-align: center; margin-bottom: 1.5rem; }
.co-ty-icon {
  font-size: 2.75rem;
  margin-bottom: 0.5rem;
  animation: coScaleIn .5s ease;
}
@keyframes coScaleIn {
  0%   { transform: scale(0); }
  60%  { transform: scale(1.15); }
  100% { transform: scale(1); }
}
.co-thankyou h2 { font-size: 1.5rem; font-weight: 800; color: #000; margin: 0 0 0.4rem; }
.co-thankyou p  { font-size: 0.9375rem; color: #374151; line-height: 1.6; margin: 0; }

/* Pay button */
.co-pay-btn-wrap { margin-bottom: 1.5rem; }

.co-pay-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-size: 1.0625rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity .2s, transform .2s;
}
.co-pay-action:hover { opacity: .9; transform: translateY(-2px); }
.co-pay-action .co-pay-logo { width: 38px; height: 38px; border-radius: 8px; flex-shrink: 0; }
.co-pay-action.venmo  { background: #3D95CE; color: #fff; }
.co-pay-action.paypal { background: #003087; color: #fff; }

/* Last 4 */
.co-last4-box {
  background: #FEF2F2;
  border: 2px solid #FCA5A5;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}
.co-last4-box p { font-size: 0.875rem; color: #111; margin: 0 0 0.75rem; line-height: 1.5; }
.co-last4 {
  font-size: 2.25rem;
  font-weight: 900;
  color: #DC2626;
  font-family: 'Courier New', monospace;
  letter-spacing: 0.5rem;
  text-align: center;
  padding: 0.625rem;
  background: #fff;
  border: 2px solid #DC2626;
  border-radius: 8px;
  animation: coLast4Pulse 2s infinite;
}
@keyframes coLast4Pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(220,38,38,.4); }
  50%      { box-shadow: 0 0 0 8px rgba(220,38,38,0); }
}

.co-close-btn {
  display: block; width: 100%;
  padding: 0.8125rem;
  background: #f3f4f6;
  color: #111;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
  text-align: center;
}
.co-close-btn:hover { background: #e5e7eb; }

/* ── RESPONSIVE ────────────────────────────────── */
@media (max-width: 600px) {
  .co-banner-inner { padding: 0 1rem; gap: 0.5rem; }
  .co-banner-copy span { display: none; }

  .co-backdrop { padding: 1rem 0.5rem 4rem; }
  .co-panel { padding: 1rem 1.25rem 1.5rem; }

  .co-grid-2 { grid-template-columns: 1fr; }
  .co-theme-grid { grid-template-columns: 1fr; }
  .co-pay-grid { grid-template-columns: 1fr; }
  .co-includes-compact { grid-template-columns: 1fr; }
  .co-logo-grid { grid-template-columns: 1fr; }

  .co-inv-header { flex-direction: column; gap: 0.75rem; }
  .co-inv-meta { text-align: left; }
  .co-inv-table th, .co-inv-table td, .co-inv-total-row td { padding: 0.5rem 0.875rem; }
}

/* ── Logo Choice Grid ──────────────────────────────────────────────────────── */
.co-logo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-height: 480px;
  overflow-y: auto;
  padding: 0.25rem;
  margin-bottom: 1.25rem;
}

/* ── Logo Card ─────────────────────────────────────────────────────────────── */
.co-logo-card {
  display: block;
  cursor: pointer;
  text-align: center;
}
.co-logo-card input[type="radio"] { display: none; }
.co-logo-img-wrap {
  position: relative;
  border: 2.5px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  height: 180px;
  background: #f8f9fa;
  transition: border-color 0.2s, box-shadow 0.2s;
  margin-bottom: 0.375rem;
}
.co-logo-card input:checked ~ .co-logo-img-wrap,
.co-logo-card:has(input:checked) .co-logo-img-wrap {
  border-color: var(--accent, #e8602c);
  box-shadow: 0 0 0 3px rgba(232, 96, 44, 0.2);
}
.co-logo-img-wrap img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 0.4rem;
}
.co-logo-check {
  display: none;
  position: absolute; top: 6px; right: 6px;
  background: var(--accent, #e8602c); color: #fff;
  border-radius: 50%; width: 22px; height: 22px;
  font-size: 0.75rem; align-items: center; justify-content: center;
  pointer-events: none;
}
.co-logo-card:has(input:checked) .co-logo-img-wrap .co-logo-check { display: flex; }
.co-logo-card span {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #374151;
}
