/* ═══════════════════════════════════════════════
   CCSC PRICE ESTIMATOR — Complete Style Sheet
   Brand: Gold #8E7B2B | Black #000 | Off-white #f7f5f0
   ═══════════════════════════════════════════════ */

.ccsc-pe {
  --ccsc-gold:        #8E7B2B;
  --ccsc-gold-dark:   #6b5c1f;
  --ccsc-gold-light:  #B0A486;
  --ccsc-gold-pale:   #e8e0cc;
  --ccsc-black:       #0d0d0d;
  --ccsc-black-card:  #1a1a1a;
  --ccsc-white:       #ffffff;
  --ccsc-off-white:   #f7f5f0;
  --ccsc-text-dark:   #111111;
  --ccsc-text-body:   #2a2a2a;
  --ccsc-text-mid:    #444444;
  --ccsc-text-light:  #666666;
  --ccsc-border:      rgba(142,123,43,0.25);
  --ccsc-border-mid:  rgba(142,123,43,0.45);
  --ccsc-border-str:  rgba(142,123,43,0.7);
  --ccsc-font-serif:  'Cormorant Garamond', Georgia, serif;
  --ccsc-font-sans:   'Montserrat', Arial, sans-serif;
  --ccsc-shadow-sm:   0 2px 8px rgba(0,0,0,0.08);
  --ccsc-shadow-md:   0 6px 24px rgba(0,0,0,0.12);
  --ccsc-shadow-lg:   0 12px 40px rgba(0,0,0,0.18);
  --ccsc-radius:      4px;

  background: var(--ccsc-off-white);
  color: var(--ccsc-text-body);
  font-family: var(--ccsc-font-sans);
  font-size: 14px;
  line-height: 1.6;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}

.ccsc-pe *, .ccsc-pe *::before, .ccsc-pe *::after {
  box-sizing: border-box;
}

/* ── LEAD FORM (inline section) ── */
.ccsc-pe .ccsc-lead-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 20px 56px;
  background: var(--ccsc-off-white);
  min-height: 70vh;
}

.ccsc-pe-modal {
  background: var(--ccsc-black);
  border: 1px solid var(--ccsc-border-str);
  border-radius: var(--ccsc-radius);
  padding: 44px 40px 36px;
  max-width: 500px;
  width: 100%;
  box-shadow: var(--ccsc-shadow-lg), 0 0 0 1px rgba(142,123,43,0.15);
  color: var(--ccsc-white);
  font-family: var(--ccsc-font-sans);
}
.ccsc-pe-modal * { box-sizing: border-box; }

.ccsc-pe-modal-logo { text-align: center; margin-bottom: 12px; }
.ccsc-pe-modal-logo img { height: 48px; width: auto; }

.ccsc-pe-modal-title {
  font-family: var(--ccsc-font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--ccsc-white);
  text-align: center;
  margin: 0 0 8px;
  line-height: 1.2;
}
.ccsc-pe-modal-title em { color: var(--ccsc-gold-light); font-style: italic; }

.ccsc-pe-modal-ornament {
  width: 48px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--ccsc-gold), transparent);
  margin: 0 auto 20px;
}

.ccsc-pe-modal-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.82);
  text-align: center;
  margin: 0 0 26px;
  line-height: 1.65;
}

.ccsc-pe-name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}

.ccsc-pe-field { margin-bottom: 16px; }
.ccsc-pe-field label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ccsc-gold-light);
  margin-bottom: 6px;
  font-weight: 600;
}
.ccsc-pe-field input {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(142,123,43,0.35);
  border-radius: var(--ccsc-radius);
  padding: 11px 14px;
  color: #ffffff !important;
  font-family: var(--ccsc-font-sans);
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.ccsc-pe-field input::placeholder { color: rgba(255,255,255,0.35) !important; }
.ccsc-pe-field input:focus {
  border-color: var(--ccsc-gold);
  background: rgba(255,255,255,0.10);
}

/* ── BUTTONS ── */
.ccsc-pe-btn, .ccsc-pe .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: var(--ccsc-radius);
  cursor: pointer;
  font-family: var(--ccsc-font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.2s;
  text-decoration: none;
}
.ccsc-pe-btn-gold, .ccsc-pe .btn-gold {
  background: var(--ccsc-gold);
  color: #ffffff !important;
  border: 1px solid var(--ccsc-gold);
  padding: 13px 24px;
  width: 100%;
  margin-top: 8px;
}
.ccsc-pe-btn-gold:hover, .ccsc-pe .btn-gold:hover {
  background: var(--ccsc-gold-dark);
  box-shadow: 0 4px 16px rgba(142,123,43,0.35);
  transform: translateY(-1px);
}
.ccsc-pe .btn-outline {
  background: transparent;
  border: 1px solid var(--ccsc-border-str);
  color: var(--ccsc-gold) !important;
  padding: 10px 20px;
  width: auto;
  margin-top: 0;
}
.ccsc-pe .btn-outline:hover { background: rgba(142,123,43,0.08); }
.ccsc-pe .btn-gold[disabled] { opacity: 0.6; cursor: not-allowed; transform: none; }

.ccsc-pe-privacy {
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  text-align: center;
  margin-top: 14px;
  line-height: 1.6;
}
.ccsc-pe-privacy a { color: var(--ccsc-gold-light); text-decoration: none; }

/* ── WIDGET HEADER ── */
.ccsc-pe .widget-header {
  background: var(--ccsc-black);
  border-bottom: 1px solid rgba(142,123,43,0.3);
  padding: 14px 32px 12px;
  text-align: center;
}
.ccsc-pe .ccsc-logo-header {
  height: 28px;
  width: auto;
  display: block;
  margin: 0 auto 7px;
}
.ccsc-pe .header-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}
.ccsc-pe .header-divider {
  width: 44px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--ccsc-gold), transparent);
  margin: 8px auto 0;
}

/* ── MAIN LAYOUT ── */
.ccsc-pe .widget-body {
  max-width: 1140px;
  margin: 0 auto;
  padding: 28px 20px 40px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 28px;
  align-items: start;
}

/* ── NOTE BOX ── */
.ccsc-pe .note-box {
  background: #fffbf0;
  border: 1px solid rgba(142,123,43,0.3);
  border-left: 3px solid var(--ccsc-gold);
  border-radius: var(--ccsc-radius);
  padding: 12px 16px;
  font-size: 12px;
  color: var(--ccsc-text-body);
  line-height: 1.65;
  margin-bottom: 20px;
}

/* ── CATEGORY TABS ── */
.ccsc-pe .category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.ccsc-pe .cat-tab {
  padding: 8px 16px;
  border: 1px solid #c8c0a8;
  border-radius: 2px;
  background: #ffffff;
  color: var(--ccsc-text-mid);
  font-family: var(--ccsc-font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.18s;
  white-space: nowrap;
}
.ccsc-pe .cat-tab:hover {
  border-color: var(--ccsc-gold);
  color: var(--ccsc-gold);
  background: #faf8f2;
}
.ccsc-pe .cat-tab.active {
  border-color: var(--ccsc-gold);
  background: var(--ccsc-black);
  color: #ffffff;
}

/* ── PROCEDURE SECTIONS ── */
.ccsc-pe .procedure-section { display: none; }
.ccsc-pe .procedure-section.active { display: block; }

.ccsc-pe .section-title {
  font-family: var(--ccsc-font-serif);
  font-size: 1.7rem;
  font-weight: 300;
  color: var(--ccsc-text-dark);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--ccsc-border);
  letter-spacing: 0.02em;
}

.ccsc-pe .procedure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
}

.ccsc-pe .procedure-card {
  background: #ffffff;
  border: 1px solid #d8d0ba;
  border-radius: var(--ccsc-radius);
  padding: 14px 16px 14px 16px;
  cursor: pointer;
  transition: all 0.18s;
  position: relative;
  box-shadow: var(--ccsc-shadow-sm);
}
.ccsc-pe .procedure-card:hover {
  border-color: var(--ccsc-gold);
  box-shadow: 0 4px 16px rgba(142,123,43,0.15);
  transform: translateY(-1px);
}
.ccsc-pe .procedure-card.selected {
  border-color: var(--ccsc-gold);
  background: #faf7ee;
  box-shadow: 0 0 0 1px var(--ccsc-gold), var(--ccsc-shadow-sm);
}
.ccsc-pe .proc-check {
  position: absolute;
  top: 11px; right: 11px;
  width: 18px; height: 18px;
  border: 1.5px solid #c8c0a8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: transparent;
  transition: all 0.18s;
  background: #fff;
}
.ccsc-pe .procedure-card.selected .proc-check {
  background: var(--ccsc-gold);
  border-color: var(--ccsc-gold);
  color: #ffffff;
}
.ccsc-pe .proc-name {
  font-family: var(--ccsc-font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ccsc-text-dark);
  line-height: 1.3;
  padding-right: 24px;
  margin-bottom: 4px;
}
.ccsc-pe .proc-price-range {
  font-size: 11px;
  color: var(--ccsc-text-light);
  letter-spacing: 0.04em;
}

/* ── ESTIMATE PANEL (RIGHT SIDEBAR) ── */
.ccsc-pe .estimate-panel {
  background: var(--ccsc-black);
  border: 1px solid rgba(142,123,43,0.4);
  border-radius: var(--ccsc-radius);
  overflow: hidden;
  position: sticky;
  top: 20px;
  box-shadow: var(--ccsc-shadow-md);
}

.ccsc-pe .panel-title {
  font-family: var(--ccsc-font-serif);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--ccsc-gold-pale);
  padding: 16px 18px 14px;
  border-bottom: 1px solid rgba(142,123,43,0.25);
  letter-spacing: 0.04em;
  background: rgba(142,123,43,0.06);
}

.ccsc-pe .selected-list {
  min-height: 60px;
  padding: 6px 0;
}

.ccsc-pe .selected-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 18px;
  border-bottom: 1px solid rgba(142,123,43,0.12);
  gap: 10px;
}
.ccsc-pe .selected-item:last-child { border-bottom: none; }

.ccsc-pe .sel-name {
  font-family: var(--ccsc-font-serif);
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.3;
  flex: 1;
  font-weight: 400;
}

.ccsc-pe .sel-remove {
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  padding: 2px 4px;
  transition: color 0.2s;
  flex-shrink: 0;
  border-radius: 2px;
}
.ccsc-pe .sel-remove:hover {
  color: #e05555;
  background: rgba(220,50,50,0.1);
}

.ccsc-pe .empty-state {
  text-align: center;
  padding: 28px 18px;
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  line-height: 1.7;
  font-style: italic;
  font-family: var(--ccsc-font-serif);
}

/* ── PANEL FOOTER (disclaimer + button) ── */
.ccsc-pe .panel-footer {
  padding: 14px 18px 18px;
  border-top: 1px solid rgba(142,123,43,0.2);
  background: rgba(0,0,0,0.2);
}

.ccsc-pe .disclaimer-text {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: 14px;
  font-style: italic;
}

.ccsc-pe .ccsc-lead-info {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  text-align: center;
  margin-top: 8px;
}

.ccsc-pe .ccsc-estimate-btn {
  width: 100%;
  padding: 13px;
  background: var(--ccsc-gold);
  color: #ffffff !important;
  border: none;
  border-radius: var(--ccsc-radius);
  font-family: var(--ccsc-font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}
.ccsc-pe .ccsc-estimate-btn:hover {
  background: var(--ccsc-gold-dark);
  box-shadow: 0 4px 16px rgba(142,123,43,0.35);
  transform: translateY(-1px);
}

/* ── TOTALS (shown after submit) ── */
.ccsc-pe .ccsc-totals {
  border-top: 1px solid rgba(142,123,43,0.2);
  padding: 14px 18px;
  background: rgba(142,123,43,0.05);
}
.ccsc-pe .total-row {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  margin-bottom: 5px;
  color: rgba(255,255,255,0.75);
}
.ccsc-pe .total-grand {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid rgba(142,123,43,0.3);
  margin-top: 8px;
}
.ccsc-pe .total-grand-label {
  font-family: var(--ccsc-font-serif);
  font-size: 1rem;
  color: #ffffff;
  font-weight: 400;
}
.ccsc-pe .total-grand-value {
  font-family: var(--ccsc-font-serif);
  font-size: 1.5rem;
  color: var(--ccsc-gold-light);
  font-weight: 400;
}
.ccsc-pe .fee-breakdown-toggle {
  font-size: 11px;
  color: var(--ccsc-gold-light);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  background: none;
  border: none;
  padding: 6px 0 0;
  font-family: var(--ccsc-font-sans);
  display: block;
}
.ccsc-pe .fee-breakdown { display: none; margin-top: 8px; }
.ccsc-pe .fee-breakdown.open { display: block; }
.ccsc-pe .fee-row {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  padding: 4px 0;
  border-bottom: 1px dotted rgba(142,123,43,0.15);
}
.ccsc-pe .fee-row:last-child { border-bottom: none; }

/* ── SCREENS ── */
.ccsc-pe .screen { display: none; }
.ccsc-pe .screen.active { display: block; }

/* ── SUCCESS SCREEN ── */
.ccsc-pe .success-screen {
  text-align: center;
  padding: 48px 28px;
  max-width: 560px;
  margin: 0 auto;
}
.ccsc-pe .success-icon {
  width: 64px; height: 64px;
  border: 1.5px solid var(--ccsc-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 24px;
  color: var(--ccsc-gold);
}
.ccsc-pe .success-title {
  font-family: var(--ccsc-font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--ccsc-text-dark);
  margin-bottom: 12px;
}
.ccsc-pe .success-sub {
  font-size: 14px;
  color: var(--ccsc-text-body);
  line-height: 1.75;
  margin-bottom: 10px;
}
.ccsc-pe .tel-link { color: var(--ccsc-gold); text-decoration: none; }

/* ── LOADING SPINNER ── */
.ccsc-pe .loading-spin {
  display: inline-block;
  width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: ccscSpin 0.7s linear infinite;
}
@keyframes ccscSpin { to { transform: rotate(360deg); } }
@keyframes ccscFadeIn { from { opacity: 0 } to { opacity: 1 } }

/* ── TOAST ── */
.ccsc-pe-toast {
  position: fixed !important;
  bottom: 22px !important;
  right: 22px !important;
  background: #1a1a1a !important;
  border: 1px solid rgba(142,123,43,0.6) !important;
  border-radius: var(--ccsc-radius) !important;
  padding: 11px 20px !important;
  font-size: 12px !important;
  font-family: var(--ccsc-font-sans) !important;
  color: #ffffff !important;
  box-shadow: var(--ccsc-shadow-md) !important;
  z-index: 99999 !important;
  opacity: 0 !important;
  transform: translateY(8px) !important;
  transition: all 0.3s !important;
  pointer-events: none !important;
  max-width: 320px !important;
}
.ccsc-pe-toast.show { opacity: 1 !important; transform: translateY(0) !important; }
.ccsc-pe-toast.success { border-color: rgba(76,175,137,0.6) !important; }
.ccsc-pe-toast.error { border-color: rgba(220,80,80,0.6) !important; }

/* ── ADMIN TOGGLE ── */
.ccsc-pe-admin-toggle {
  background: transparent;
  border: 1px solid rgba(142,123,43,0.3);
  color: rgba(142,123,43,0.55);
  padding: 7px 16px;
  border-radius: var(--ccsc-radius);
  cursor: pointer;
  font-family: var(--ccsc-font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: all 0.2s;
}
.ccsc-pe-admin-toggle:hover {
  border-color: var(--ccsc-gold);
  color: var(--ccsc-gold);
}

/* ── ADMIN OVERLAY ── */
.ccsc-pe-admin-open {
  position: fixed !important;
  inset: 0 !important;
  background: rgba(0,0,0,0.97) !important;
  z-index: 99995 !important;
  overflow-y: auto !important;
  display: block !important;
  font-family: var(--ccsc-font-sans) !important;
  color: #ffffff !important;
}
.ccsc-pe-admin-hidden { display: none !important; }

.ccsc-pe .admin-panel { max-width: 960px; margin: 0 auto; padding: 28px 20px 60px; }
.ccsc-pe .admin-header {
  position: sticky; top: 0; z-index: 10;
  background: #0d0d0d;
  padding: 18px 24px;
  margin: -28px -20px 28px;
  border-bottom: 1px solid rgba(142,123,43,0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.ccsc-pe .admin-header h2 {
  font-family: var(--ccsc-font-serif);
  font-size: 1.7rem;
  font-weight: 300;
  color: var(--ccsc-gold-light);
  margin: 0;
}
.ccsc-pe .admin-section {
  background: #141414;
  border: 1px solid rgba(142,123,43,0.25);
  border-radius: var(--ccsc-radius);
  margin-bottom: 24px;
  overflow: hidden;
}
.ccsc-pe .admin-section-header {
  padding: 14px 20px;
  background: rgba(142,123,43,0.06);
  border-bottom: 1px solid rgba(142,123,43,0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ccsc-pe .admin-section-header h3 {
  font-family: var(--ccsc-font-serif);
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 400;
  margin: 0;
}
.ccsc-pe .admin-table { width: 100%; border-collapse: collapse; }
.ccsc-pe .admin-table th {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ccsc-gold-light);
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid rgba(142,123,43,0.2);
  background: rgba(0,0,0,0.3);
}
.ccsc-pe .admin-table td {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(142,123,43,0.08);
  font-size: 12px;
  color: rgba(255,255,255,0.82);
  vertical-align: middle;
}
.ccsc-pe .admin-table tr:last-child td { border-bottom: none; }
.ccsc-pe .admin-table tr:hover td { background: rgba(142,123,43,0.04); }
.ccsc-pe .price-input {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(142,123,43,0.3);
  border-radius: var(--ccsc-radius);
  padding: 5px 8px;
  color: #ffffff;
  font-family: var(--ccsc-font-sans);
  font-size: 12px;
  width: 90px;
  outline: none;
}
.ccsc-pe .price-input:focus { border-color: var(--ccsc-gold); }
.ccsc-pe .add-proc-form {
  padding: 16px 20px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr auto;
  gap: 10px;
  align-items: end;
  border-top: 1px solid rgba(142,123,43,0.2);
  background: rgba(0,0,0,0.2);
}
.ccsc-pe .add-proc-form .form-group { margin-bottom: 0; }
.ccsc-pe .add-proc-form input {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(142,123,43,0.3);
  border-radius: var(--ccsc-radius);
  padding: 8px 10px;
  color: #fff;
  font-family: var(--ccsc-font-sans);
  font-size: 12px;
  outline: none;
}
.ccsc-pe .add-proc-form input:focus { border-color: var(--ccsc-gold); }
.ccsc-pe .add-proc-form label {
  display: block;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ccsc-gold-light);
  margin-bottom: 5px;
  font-weight: 600;
}
.ccsc-pe .status-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 2px;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}
.ccsc-pe .badge-active { background: rgba(76,175,137,0.15); color: #5dc99a; border: 1px solid rgba(76,175,137,0.3); }
.ccsc-pe .badge-inactive { background: rgba(220,80,80,0.12); color: #e07070; border: 1px solid rgba(220,80,80,0.3); }
.ccsc-pe .flex-row { display: flex; gap: 8px; align-items: center; }
.ccsc-pe .admin-login-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  gap: 14px;
  max-width: 360px;
  margin: 60px auto;
}
.ccsc-pe .admin-login-wrap h3 {
  font-family: var(--ccsc-font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--ccsc-gold-light);
  text-align: center;
  margin: 0;
}
.ccsc-pe .admin-login-wrap input {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(142,123,43,0.3);
  border-radius: var(--ccsc-radius);
  padding: 11px 14px;
  color: #fff;
  font-family: var(--ccsc-font-sans);
  font-size: 13px;
  outline: none;
}
.ccsc-pe .admin-login-wrap input:focus { border-color: var(--ccsc-gold); }
.ccsc-pe .admin-login-wrap label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ccsc-gold-light);
  margin-bottom: 5px;
  font-weight: 600;
}
.ccsc-pe .btn-sm { padding: 7px 14px; font-size: 10px; }
.ccsc-pe .btn-danger { background: #c03030; color: white !important; border: 1px solid #c03030; }
.ccsc-pe .btn-danger:hover { background: #a02020; }

/* ── RESPONSIVE: MOBILE ── */
@media(max-width: 768px) {
  .ccsc-pe .widget-body {
    grid-template-columns: 1fr;
    padding: 16px 12px 32px;
    gap: 20px;
  }
  .ccsc-pe .estimate-panel {
    position: static;
    order: -1; /* show panel ABOVE procedures on mobile */
  }
  .ccsc-pe .widget-header { padding: 10px 16px 8px; }
  .ccsc-pe .ccsc-logo-header { height: 22px; }
  .ccsc-pe .category-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .ccsc-pe .category-nav::-webkit-scrollbar { display: none; }
  .ccsc-pe .cat-tab { flex-shrink: 0; font-size: 9px; padding: 7px 12px; }
  .ccsc-pe .procedure-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .ccsc-pe-modal { padding: 28px 20px 24px; }
  .ccsc-pe-name-row { grid-template-columns: 1fr; gap: 0; }
  .ccsc-pe .section-title { font-size: 1.4rem; }
  .ccsc-pe .success-screen { padding: 32px 16px; }

  /* Hide admin on mobile */
  .ccsc-pe-admin-toggle,
  [id^="ccscAdmin_"],
  [id^="ccscAdminToggle_"] { display: none !important; }
}

@media(max-width: 480px) {
  .ccsc-pe .procedure-grid { grid-template-columns: 1fr; }
  .ccsc-pe .proc-name { font-size: 1rem; }
  .ccsc-pe-modal-title { font-size: 1.8rem; }
}
