/* ===================================================================
   Nawafeth Web — new-pages.css  v1.0
   Styles for all new pages matching Flutter mobile app 1:1
   =================================================================== */

/* ══════════════════════════════════════════════
   Shared — Page Shell & Card Components
   ══════════════════════════════════════════════ */
.page-shell { max-width: 800px; margin: 0 auto; padding: var(--space-lg); }
.detail-card { background: #fff; border-radius: 16px; padding: 20px; margin-bottom: 16px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.loading-center { display: flex; justify-content: center; align-items: center; min-height: 200px; }
.text-muted { color: var(--color-text-secondary, #999); font-size: 13px; }

body.mobile-web-parity #top-navbar.nw-global-topbar {
  display: block !important;
}

/* Back button */
.btn-back { background: none; border: none; cursor: pointer; padding: 8px; color: var(--color-text, #333); }
.btn-back:hover { color: var(--color-primary, #663D90); }
.page-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.page-header h1 { flex: 1; font-size: 20px; font-weight: 700; margin: 0; }
.page-header .btn-icon { background: none; border: none; cursor: pointer; padding: 6px; color: var(--color-text, #333); }

/* Form elements */
.form-label { display: block; font-size: 14px; font-weight: 600; color: var(--color-primary, #663D90); margin-bottom: 8px; }
.form-row { display: flex; gap: 12px; }
.form-row .half, .form-group.half { flex: 1; }
.form-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.char-count { display: block; text-align: left; font-size: 12px; color: #999; margin-top: 4px; }

/* Badges */
.badge { display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.badge-success { background: #E8F5E9; color: #4CAF50; }
.badge-muted { background: #F5F5F5; color: #999; }
.badge-info { background: #E3F2FD; color: #2196F3; }
.badge-warning { background: #FFF3E0; color: #FF9800; }
.badge-danger { background: #FFEBEE; color: #F44336; }

/* Toggle label */
.toggle-label { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.toggle-label input[type="checkbox"] { width: 20px; height: 20px; accent-color: var(--color-primary, #663D90); }

/* Success card */
.success-card { background: #fff; border-radius: 16px; padding: 40px 20px; text-align: center; box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
.success-icon { width: 64px; height: 64px; border-radius: 50%; background: #4CAF50; color: #fff; font-size: 32px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.success-card h2 { margin: 0 0 12px; font-size: 22px; color: #333; }
.success-card p { color: #666; line-height: 1.6; margin-bottom: 20px; }

/* Button extras */
.btn-sm { padding: 6px 14px; font-size: 13px; border-radius: 8px; }
.btn-block { width: 100%; display: block; }
.btn-danger { background: #F44336; color: #fff; border: none; }
.btn-danger:hover { background: #D32F2F; }
.btn-danger-outline { background: transparent; color: #F44336; border: 1.5px solid #F44336; }
.btn-danger-outline:hover { background: #FFEBEE; }

/* Modal / Sheet */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1000; display: flex; align-items: flex-end; justify-content: center; }
.modal-sheet { background: #fff; border-radius: 20px 20px 0 0; width: 100%; max-width: 600px; max-height: 90vh; overflow-y: auto; padding: 0; animation: slideUp 0.3s ease; }
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.modal-header { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid #eee; }
.modal-header h2 { margin: 0; font-size: 18px; color: var(--color-primary, #663D90); }
.modal-header .btn-icon { font-size: 24px; background: none; border: none; cursor: pointer; color: #999; }
.modal-body { padding: 20px; }

@media (max-width: 640px) {
  .page-shell {
    padding: 14px 12px;
  }

  .page-header {
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 16px;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .form-row .half,
  .form-group.half {
    min-width: 0;
  }

  .modal-overlay {
    padding: 12px 0 0;
    align-items: flex-end;
  }

  .modal-sheet {
    width: min(100%, calc(100vw - 12px));
    max-height: min(88dvh, calc(100vh - 12px));
    border-radius: 20px 20px 0 0;
  }

  .modal-header,
  .modal-body {
    padding-inline: 16px;
  }

  .modal-header {
    flex-wrap: wrap;
  }
}

@media (max-width: 360px) {
  .page-shell {
    padding: 12px 10px;
  }

  .detail-card,
  .success-card {
    padding: 16px 14px;
    border-radius: 14px;
  }
}

/* ══════════════════════════════════════════════
   TwoFA Page
   ══════════════════════════════════════════════ */
body.page-twofa #top-navbar,
body.page-twofa #site-footer,
body.page-twofa #bottom-nav {
  display: none !important;
}

body.page-twofa .page-content {
  padding: 0;
}

body.page-twofa .auth-page.auth-page-twofa {
  min-height: 100dvh;
  padding: clamp(18px, 3vw, 34px);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 10%, rgba(255,255,255,.16), transparent 30%),
    radial-gradient(circle at 88% 86%, rgba(241,165,89,.22), transparent 36%),
    linear-gradient(145deg,#2b175f 0%,#4a2d8f 48%,#673ab7 100%);
}

body.page-twofa .auth-twofa-bg-shape {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
}

body.page-twofa .auth-twofa-bg-shape-a {
  width: min(46vw, 320px);
  height: min(46vw, 320px);
  top: -110px;
  inset-inline-end: -72px;
  background: radial-gradient(circle, rgba(255,255,255,.12), transparent 72%);
}

body.page-twofa .auth-twofa-bg-shape-b {
  width: min(52vw, 360px);
  height: min(52vw, 360px);
  bottom: -150px;
  inset-inline-start: -96px;
  background: radial-gradient(circle, rgba(255,255,255,.08), transparent 72%);
}

body.page-twofa .auth-twofa-container.container {
  width: min(100%, 460px);
  max-width: 460px;
  padding: 0;
  position: relative;
  z-index: 1;
}

body.page-twofa .auth-card.auth-card-twofa {
  max-width: 100%;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.42);
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.98), rgba(255,255,255,.86) 28%, rgba(249,246,255,.96) 100%);
  box-shadow: 0 30px 70px rgba(22,10,48,.34), inset 0 1px 0 rgba(255,255,255,.8);
  color: #1e1236;
  padding: clamp(20px, 3vw, 30px) clamp(16px, 2.8vw, 28px);
}

body.page-twofa .auth-header {
  margin-bottom: 18px;
}

body.page-twofa .auth-twofa-kicker {
  margin: 0 auto 10px;
  border-color: rgba(103,58,183,.28) !important;
  background: #fff !important;
  color: #4a2d8f !important;
  box-shadow: 0 8px 18px rgba(74,45,143,.12) !important;
}

body.page-twofa .twofa-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 10px;
  border-radius: 999px;
  background: linear-gradient(145deg, #fff 0%, #f4ecff 100%);
  color: #4a2d8f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 38px rgba(74,45,143,.24), inset 0 0 0 1px rgba(103,58,183,.16);
}

body.page-twofa .auth-twofa-logo {
  margin-bottom: 6px;
  font-size: clamp(40px, 7vw, 52px);
  line-height: 1.04;
}

body.page-twofa .auth-title {
  margin: 0 0 8px;
  color: #1b1230;
  font-size: clamp(30px, 5.2vw, 38px);
  font-weight: 800;
  line-height: 1.2;
  text-shadow: none;
}

body.page-twofa .auth-desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  color: #4f435f;
  font-weight: 700;
}

body.page-twofa .otp-info-card {
  margin-bottom: 18px;
  border-radius: 20px;
  border: 1px solid rgba(103,58,183,.18);
  background: rgba(255,255,255,.72);
  padding: 14px 16px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 8px 20px rgba(74,45,143,.08);
}

body.page-twofa .otp-info-label {
  margin: 0;
  text-align: center;
  color: #6b5f7a;
  font-size: 12px;
  font-weight: 700;
}

body.page-twofa .otp-info-phone {
  margin: 6px 0 0;
  text-align: center;
  color: #241c46;
  font-size: 20px;
  font-weight: 900;
}

body.page-twofa .otp-boxes {
  gap: 10px;
  margin-bottom: 16px;
}

body.page-twofa .otp-box {
  width: 62px;
  height: 66px;
  border-radius: 18px;
  border: 2px solid rgba(103,58,183,.22);
  background: #fff;
  color: #1f1633;
  font-size: 26px;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(54,31,94,.08);
  transition: border-color 0.16s ease, background-color 0.16s ease, box-shadow 0.16s ease;
}

body.page-twofa .otp-box.is-filled {
  border-color: rgba(103,58,183,.48);
  background: linear-gradient(180deg, #fff 0%, rgba(244,239,255,.95) 100%);
}

body.page-twofa .otp-box:focus {
  border-color: #4a2d8f;
  box-shadow: 0 0 0 4px rgba(103,58,183,.18), 0 14px 26px rgba(103,58,183,.12);
}

body.page-twofa #otp-error.form-error {
  margin-top: 0;
  margin-bottom: 14px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: #b42318;
  border-radius: 14px;
  background: rgba(211,47,47,.08);
  border: 1px solid rgba(211,47,47,.14);
  padding: 10px 12px;
}

body.page-twofa #btn-verify-otp,
body.page-twofa .auth-card-twofa .btn-faceid-login {
  min-height: 54px;
  border-radius: 16px;
  font-size: 14.5px;
  font-weight: 700;
}

body.page-twofa #btn-verify-otp {
  border: 1px solid rgba(255,255,255,.28);
  background: linear-gradient(135deg,#4a2d8f 0%,#673ab7 58%,#7d55d1 100%);
  color: #fff;
  box-shadow: 0 16px 34px rgba(74,45,143,.28);
}

body.page-twofa .auth-card-twofa .btn-faceid-login {
  border: 2px solid rgba(74,45,143,.42);
  background: #fff;
  color: #321b63;
  font-weight: 900;
}

body.page-twofa .auth-card-twofa .btn-faceid-login:hover {
  border-color: #4a2d8f;
  background: #f7f2ff;
}

body.page-twofa #resend-otp-spinner.spinner {
  width: 14px;
  height: 14px;
  border-width: 2px;
  border-color: rgba(103,58,183,.28);
  border-top-color: #673ab7;
}

body.page-twofa .twofa-countdown-pill {
  margin: 4px auto 0;
  width: fit-content;
  max-width: 100%;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(103,58,183,.22);
  background: rgba(103,58,183,.08);
  text-align: center;
}

body.page-twofa #resend-countdown-text {
  color: #4a2d8f;
  font-size: 12px;
  font-weight: 800;
}

body.page-twofa .twofa-faceid {
  margin-top: 4px;
}

body.page-twofa .twofa-faceid .auth-divider {
  margin: 10px 0;
}

body.page-twofa .auth-divider {
  color: #5f526f;
  font-weight: 800;
}

body.page-twofa .auth-divider::before,
body.page-twofa .auth-divider::after {
  background: linear-gradient(90deg,transparent,rgba(74,45,143,.34),transparent);
}

body.page-twofa .twofa-resend-row {
  margin-top: 18px;
  gap: 10px 14px;
}

body.page-twofa .twofa-resend-row .btn-link {
  font-size: 13px;
  font-weight: 700;
  color: #4f435f;
}

body.page-twofa .otp-resend-btn {
  min-height: 24px;
  padding: 0 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #4a2d8f;
  font-weight: 800;
}

body.page-twofa .twofa-toast {
  position: fixed;
  left: 50%;
  bottom: calc(var(--bottom-nav-height, 68px) + env(safe-area-inset-bottom, 0px) + 16px);
  transform: translate(-50%, 10px);
  min-width: 220px;
  max-width: min(92vw, 420px);
  padding: 10px 14px;
  border-radius: 12px;
  background: #166534;
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  z-index: 1200;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

body.page-twofa .twofa-toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

body.page-twofa .twofa-toast.error {
  background: #b91c1c;
}

@media (max-width: 420px) {
  body.page-twofa .auth-page.auth-page-twofa {
    padding: 14px;
  }

  body.page-twofa .auth-card.auth-card-twofa {
    border-radius: 24px;
    padding: 20px 14px;
  }

  body.page-twofa .auth-title {
    font-size: 32px;
  }

  body.page-twofa .otp-box {
    width: calc(25vw - 8px);
    max-width: 62px;
    min-width: 56px;
    height: 62px;
  }
}

/* ══════════════════════════════════════════════
   Provider Dashboard
   ══════════════════════════════════════════════ */
.pd-cover { position: relative; height: 180px; border-radius: 16px; overflow: hidden; background: linear-gradient(135deg, #663D90, #9C27B0); margin-bottom: 60px; }
.pd-cover img { width: 100%; height: 100%; object-fit: cover; }
.pd-cover-upload { position: absolute; bottom: 10px; right: 10px; background: rgba(0,0,0,0.5); color: #fff; border: none; border-radius: 50%; width: 36px; height: 36px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.pd-avatar { position: absolute; bottom: -50px; right: 20px; width: 100px; height: 100px; border-radius: 50%; border: 4px solid #fff; overflow: hidden; background: #f0f0f0; box-shadow: 0 2px 8px rgba(0,0,0,0.15); }
.pd-avatar img { width: 100%; height: 100%; object-fit: cover; }
.pd-avatar-upload { position: absolute; bottom: 0; right: 0; width: 28px; height: 28px; background: var(--color-primary, #663D90); color: #fff; border: none; border-radius: 50%; cursor: pointer; font-size: 14px; }
.pd-name-row { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.pd-name-row h2 { margin: 0; font-size: 20px; }
.pd-verified { color: #2196F3; }
.pd-mode-toggle { display: flex; align-items: center; gap: 8px; margin: 12px 0; }
.pd-mode-toggle .toggle-switch { position: relative; width: 48px; height: 26px; background: #ccc; border-radius: 13px; cursor: pointer; transition: 0.3s; }
.pd-mode-toggle .toggle-switch.active { background: var(--color-primary, #663D90); }
.pd-mode-toggle .toggle-switch::after { content: ""; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 50%; background: #fff; transition: 0.3s; }
.pd-mode-toggle .toggle-switch.active::after { left: 25px; }

.pd-stats { display: flex; justify-content: space-around; background: #fff; border-radius: 16px; padding: 16px; margin-bottom: 16px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.pd-stat { text-align: center; }
.pd-stat strong { display: block; font-size: 20px; color: var(--color-primary, #663D90); }
.pd-stat span { font-size: 12px; color: #999; }

.subscription-card { background: linear-gradient(135deg, #663D90, #9C27B0); color: #fff; border-radius: 16px; padding: 20px; margin-bottom: 16px; }
.subscription-card h3 { margin: 0 0 8px; font-size: 18px; }
.subscription-card .sub-info { display: flex; justify-content: space-between; align-items: center; }

.completion-card { background: #fff; border-radius: 16px; padding: 20px; margin-bottom: 16px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.completion-bar { height: 8px; background: #eee; border-radius: 4px; overflow: hidden; margin: 8px 0; }
.completion-bar-fill { height: 100%; background: var(--color-primary, #663D90); border-radius: 4px; transition: width 0.3s; }

.kpi-card { background: #fff; border-radius: 16px; padding: 16px; margin-bottom: 16px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.kpi-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.kpi-item { text-align: center; padding: 12px; background: #F9F5FF; border-radius: 12px; }
.kpi-item strong { display: block; font-size: 22px; color: var(--color-primary, #663D90); }

.pd-spotlights { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 8px; margin-bottom: 16px; }
.pd-spotlights::-webkit-scrollbar { display: none; }
.pd-spotlight-item { flex: 0 0 120px; height: 160px; border-radius: 12px; overflow: hidden; position: relative; }
.pd-spotlight-item img, .pd-spotlight-item video { width: 100%; height: 100%; object-fit: cover; }
.pd-spotlight-item .delete-spot { position: absolute; top: 4px; right: 4px; background: rgba(244,67,54,0.8); color: #fff; border: none; border-radius: 50%; width: 24px; height: 24px; font-size: 14px; cursor: pointer; }
.pd-spotlight-add { flex: 0 0 120px; height: 160px; border: 2px dashed #ccc; border-radius: 12px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: #999; font-size: 32px; }

.nav-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 16px; }
.nav-grid a { display: flex; align-items: center; gap: 12px; background: #fff; padding: 16px; border-radius: 14px; text-decoration: none; color: #333; box-shadow: 0 2px 6px rgba(0,0,0,0.05); transition: transform 0.15s, box-shadow 0.15s; }
.nav-grid a:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(102,61,144,0.15); }
.nav-grid .nav-icon { width: 40px; height: 40px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* ══════════════════════════════════════════════
   Provider Orders
   ══════════════════════════════════════════════ */
.orders-search { margin-bottom: 16px; }
.orders-search input { width: 100%; }
.status-tabs { display: flex; gap: 8px; overflow-x: auto; margin-bottom: 16px; padding-bottom: 4px; }
.status-tabs::-webkit-scrollbar { display: none; }
.status-tab { padding: 8px 16px; border-radius: 20px; border: 1.5px solid #ddd; background: #fff; font-size: 13px; cursor: pointer; white-space: nowrap; transition: 0.2s; }
.status-tab.active { background: var(--color-primary, #663D90); color: #fff; border-color: var(--color-primary, #663D90); }
.order-card { background: #fff; border-radius: 14px; padding: 16px; margin-bottom: 12px; box-shadow: 0 2px 6px rgba(0,0,0,0.05); cursor: pointer; transition: transform 0.15s; }
.order-card:hover { transform: translateY(-1px); }
.order-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.order-card h4 { margin: 0; font-size: 15px; }
.order-card p { margin: 6px 0; font-size: 13px; color: #666; }

body.page-provider-orders .po-search {
  border: 1px solid rgba(103, 58, 183, 0.14);
  box-shadow: 0 8px 20px rgba(20, 20, 38, 0.04);
}

body.page-provider-orders .page-content {
  background:
    radial-gradient(circle at 96% 0%, rgba(103, 58, 183, 0.12), transparent 34%),
    radial-gradient(circle at 8% 14%, rgba(33, 150, 243, 0.09), transparent 30%),
    var(--color-bg);
}

body.page-provider-orders .page-shell {
  max-width: 720px;
  padding: 16px 14px calc(var(--bottom-nav-height, 84px) + 24px);
}

body.page-provider-orders #porders-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

body.page-provider-orders .page-header {
  margin: 6px 0 12px;
}

body.page-provider-orders .po-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas:
    "back copy"
    "side side"
    "stats stats";
  column-gap: 14px;
  row-gap: 16px;
  padding: 18px;
  border-radius: 30px;
  border: 1px solid rgba(103, 58, 183, 0.14);
  background:
    radial-gradient(circle at 88% 10%, rgba(33, 150, 243, 0.22), transparent 42%),
    radial-gradient(circle at 12% 14%, rgba(103, 58, 183, 0.14), transparent 36%),
    linear-gradient(132deg, #ffffff 0%, #fbf7ff 48%, #edf7ff 100%);
  box-shadow:
    0 24px 48px rgba(37, 44, 97, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

body.page-provider-orders .po-header::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  inset-inline-start: -150px;
  top: -160px;
  background: radial-gradient(circle, rgba(103, 58, 183, 0.16), transparent 64%);
  z-index: -1;
}

body.page-provider-orders .po-header::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  inset-inline-end: -120px;
  bottom: -150px;
  background: radial-gradient(circle, rgba(33, 150, 243, 0.16), transparent 66%);
  z-index: -1;
}

body.page-provider-orders .po-back-btn {
  grid-area: back;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(103, 58, 183, 0.26);
  background: rgba(255, 255, 255, 0.88);
  color: #4b2e88;
  box-shadow: 0 6px 12px rgba(46, 34, 86, 0.08);
}

body.page-provider-orders .po-back-btn:hover {
  background: #f3efff;
  color: #3f2674;
}

body.page-provider-orders .po-header-copy {
  grid-area: copy;
  min-width: 0;
  align-self: start;
}

body.page-provider-orders .po-header-copy h1 {
  margin: 0;
  font-size: clamp(30px, 3.8vw, 56px);
  line-height: 1;
  letter-spacing: -0.035em;
  color: #171d32;
}

body.page-provider-orders .po-header-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-bottom: 6px;
  border-radius: 999px;
  padding: 0 10px;
  font-size: 11px;
  font-weight: 800;
  color: #3f2d74;
  border: 1px solid rgba(103, 58, 183, 0.26);
  background: linear-gradient(145deg, rgba(103, 58, 183, 0.16), rgba(103, 58, 183, 0.07));
}

body.page-provider-orders .po-header-subtitle {
  margin: 12px 0 0;
  font-size: 13.5px;
  line-height: 1.95;
  color: rgba(31, 27, 45, 0.72);
  max-width: 72ch;
}

body.page-provider-orders .po-header-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

body.page-provider-orders .po-header-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  padding: 0 12px;
  border: 1px solid rgba(23, 29, 50, 0.08);
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(8px);
  font-size: 11.5px;
  font-weight: 800;
  color: #24304c;
  box-shadow: 0 8px 16px rgba(18, 25, 48, 0.05);
}

body.page-provider-orders .po-header-side {
  grid-area: side;
}

body.page-provider-orders .po-header-side-card {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  background:
    linear-gradient(155deg, rgba(23, 29, 50, 0.92), rgba(48, 36, 94, 0.9)),
    radial-gradient(circle at top left, rgba(255,255,255,0.12), transparent 42%);
  color: #f7f8fe;
  padding: 18px 18px 16px;
  box-shadow: 0 18px 34px rgba(21, 20, 45, 0.22);
}

body.page-provider-orders .po-header-side-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border-radius: 999px;
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-size: 10.5px;
  font-weight: 800;
  margin-bottom: 10px;
}

body.page-provider-orders .po-header-side-card strong {
  display: block;
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 8px;
}

body.page-provider-orders .po-header-side-card p {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.8;
  color: rgba(247, 248, 254, 0.78);
}

body.page-provider-orders .po-header-side-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 8px;
}

body.page-provider-orders .po-header-side-list li {
  position: relative;
  padding-inline-start: 18px;
  font-size: 12px;
  line-height: 1.75;
  color: rgba(247, 248, 254, 0.88);
}

body.page-provider-orders .po-header-side-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7dd3fc, #c4b5fd);
  box-shadow: 0 0 0 4px rgba(255,255,255,0.08);
}

body.page-provider-orders .po-header-stats {
  grid-area: stats;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

body.page-provider-orders .po-header-stat {
  border-radius: 22px;
  border: 1px solid rgba(103, 58, 183, 0.12);
  padding: 14px 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.74));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 104px;
  gap: 6px;
  text-align: start;
  position: relative;
  overflow: hidden;
}

body.page-provider-orders .po-header-stat::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline: 0;
  height: 3px;
  background: rgba(103, 58, 183, 0.36);
}

body.page-provider-orders .po-header-stat span {
  font-size: 12px;
  color: rgba(31, 27, 45, 0.7);
  font-weight: 700;
}

body.page-provider-orders .po-header-stat strong {
  font-size: 34px;
  line-height: 1;
  color: #251b45;
}

body.page-provider-orders .po-header-stat-assigned {
  border-color: rgba(103, 58, 183, 0.3);
}

body.page-provider-orders .po-header-stat-assigned::before {
  background: rgba(103, 58, 183, 0.6);
}

body.page-provider-orders .po-header-stat-competitive {
  border-color: rgba(21, 101, 192, 0.3);
}

body.page-provider-orders .po-header-stat-competitive::before {
  background: rgba(21, 101, 192, 0.62);
}

body.page-provider-orders .po-header-stat-urgent {
  border-color: rgba(198, 40, 40, 0.28);
}

body.page-provider-orders .po-header-stat-urgent::before {
  background: rgba(198, 40, 40, 0.56);
}

body.page-provider-orders .po-smart-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding: 14px 16px;
  border-radius: 22px;
  border: 1px solid rgba(103, 58, 183, 0.12);
  background:
    linear-gradient(140deg, rgba(255,255,255,0.98) 0%, rgba(248,246,255,0.96) 58%, rgba(241,248,255,0.96) 100%);
  box-shadow: 0 12px 24px rgba(27, 20, 54, 0.06);
}

body.page-provider-orders .po-smart-bar-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

body.page-provider-orders .po-smart-bar-copy strong {
  font-size: 15px;
  font-weight: 900;
  color: #2a2340;
}

body.page-provider-orders .po-smart-bar-label-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

body.page-provider-orders .po-smart-bar-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border-radius: 999px;
  padding: 0 10px;
  background: rgba(103, 58, 183, 0.08);
  border: 1px solid rgba(103, 58, 183, 0.16);
  color: #5a33a2;
  font-size: 10.5px;
  font-weight: 800;
}

body.page-provider-orders .po-smart-bar-copy span {
  font-size: 12px;
  font-weight: 700;
  color: rgba(31, 27, 45, 0.7);
}

body.page-provider-orders .po-smart-bar-copy small {
  font-size: 11px;
  font-weight: 800;
  color: rgba(75, 46, 136, 0.78);
}

body.page-provider-orders .po-smart-bar-actions {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

body.page-provider-orders .po-sort-wrap {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 10px;
  border: 1px solid rgba(103, 58, 183, 0.18);
  background: rgba(255, 255, 255, 0.88);
  padding: 4px 8px;
}

body.page-provider-orders .po-sort-label {
  font-size: 11px;
  font-weight: 800;
  color: #4b2e88;
}

body.page-provider-orders .po-sort-select {
  border: 0;
  outline: none;
  background: transparent;
  color: #2a2340;
  font-family: 'Cairo', sans-serif;
  font-size: 11.5px;
  font-weight: 800;
  min-width: 112px;
  cursor: pointer;
}

body.page-provider-orders .po-toolbar-btn {
  border: 0;
  border-radius: 10px;
  min-height: 34px;
  padding: 0 12px;
  font-family: 'Cairo', sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #673AB7 0%, #4d2b8f 100%);
  cursor: pointer;
  transition: transform 0.14s ease, box-shadow 0.14s ease, opacity 0.14s ease;
}

body.page-provider-orders .po-toolbar-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(77, 43, 143, 0.25);
}

body.page-provider-orders .po-toolbar-btn:disabled,
body.page-provider-orders .po-toolbar-btn.is-disabled {
  opacity: 0.58;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

body.page-provider-orders .po-toolbar-btn-light {
  color: #4b2e88;
  background: rgba(103, 58, 183, 0.12);
  border: 1px solid rgba(103, 58, 183, 0.22);
}

body.page-provider-orders .po-search {
  transition: border-color 0.14s ease, box-shadow 0.14s ease;
}

body.page-provider-orders .po-search:focus-within {
  border-color: rgba(103, 58, 183, 0.34);
  box-shadow: 0 12px 26px rgba(35, 25, 68, 0.11);
}

body.page-provider-orders .po-status-legend {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-top: -6px;
  margin-bottom: 2px;
}

body.page-provider-orders .po-status-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  color: rgba(31, 27, 45, 0.76);
}

body.page-provider-orders .po-legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

body.page-provider-orders .po-legend-new { background: #a56800; }
body.page-provider-orders .po-legend-progress { background: #e67e22; }
body.page-provider-orders .po-legend-completed { background: #2e7d32; }
body.page-provider-orders .po-legend-cancelled { background: #c62828; }

body.page-provider-orders .po-controls-panel {
  border: 1px solid rgba(103, 58, 183, 0.14);
  border-radius: 24px;
  padding: 16px;
  background:
    radial-gradient(circle at 8% 8%, rgba(103, 58, 183, 0.08), transparent 45%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(249, 246, 255, 0.96));
  box-shadow: 0 14px 28px rgba(27, 20, 54, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

body.page-provider-orders .po-results-board {
  border: 1px solid rgba(103, 58, 183, 0.1);
  border-radius: 28px;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.99), rgba(255,255,255,0.95));
  box-shadow: 0 16px 32px rgba(27, 20, 54, 0.07);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

body.page-provider-orders .po-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

body.page-provider-orders .po-panel-head h2 {
  margin: 0;
  font-size: 17px;
  line-height: 1.3;
  color: #1a2136;
}

body.page-provider-orders .po-panel-head p {
  margin: 6px 0 0;
  font-size: 12.5px;
  line-height: 1.8;
  color: rgba(31, 27, 45, 0.66);
}

body.page-provider-orders .po-results-board #po-error {
  margin-bottom: 8px;
}

body.page-provider-orders .po-results-board #po-empty,
body.page-provider-orders .po-results-board #po-loading {
  margin-top: 4px;
}

body.page-provider-orders #po-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 292px), 1fr));
  gap: 14px;
  align-content: start;
}

body.page-provider-orders #po-list.is-single {
  grid-template-columns: minmax(0, 1fr);
}

body.page-provider-orders #po-list .po-card {
  margin-bottom: 0;
  height: 100%;
}

body.page-provider-orders .po-main-tabs {
  margin-bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  overflow: visible;
  padding-bottom: 0;
}

body.page-provider-orders .po-main-tabs .status-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
  width: 100%;
  min-height: 44px;
  padding: 8px 12px;
  font-size: 12px;
  border-width: 1px;
  border-color: rgba(103, 58, 183, 0.35);
  color: #673AB7;
  background: rgba(103, 58, 183, 0.08);
}

.po-tab-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  padding: 0 8px;
  background: rgba(103, 58, 183, 0.16);
  color: #673AB7;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}

body.page-provider-orders .po-main-tabs .status-tab.active .po-tab-count {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

body.page-provider-orders .po-main-tabs .status-tab[data-tab="competitive"] {
  color: #1565c0;
  border-color: rgba(21, 101, 192, 0.38);
  background: rgba(21, 101, 192, 0.08);
}

body.page-provider-orders .po-main-tabs .status-tab[data-tab="competitive"] .po-tab-count {
  color: #1565c0;
  background: rgba(21, 101, 192, 0.15);
}

body.page-provider-orders .po-main-tabs .status-tab[data-tab="urgent"] {
  color: #c62828;
  border-color: rgba(198, 40, 40, 0.36);
  background: rgba(198, 40, 40, 0.07);
}

body.page-provider-orders .po-main-tabs .status-tab[data-tab="urgent"] .po-tab-count {
  color: #c62828;
  background: rgba(198, 40, 40, 0.14);
}

body.page-provider-orders .po-main-tabs .status-tab.active {
  color: #fff;
}

body.page-provider-orders .po-main-tabs .status-tab.active[data-tab="assigned"] {
  border-color: #673AB7;
  background: #673AB7;
}

body.page-provider-orders .po-main-tabs .status-tab.active[data-tab="competitive"] {
  border-color: #1565c0;
  background: #1565c0;
}

body.page-provider-orders .po-main-tabs .status-tab.active[data-tab="urgent"] {
  border-color: #c62828;
  background: #c62828;
}

body.page-provider-orders .po-card {
  border: 1px solid rgba(103, 58, 183, 0.11);
  border-radius: 24px;
  box-shadow:
    0 8px 18px rgba(22, 16, 44, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  display: block;
  width: 100%;
  box-sizing: border-box;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
  opacity: 0;
  transform: translateY(8px);
  animation: po-card-in 0.34s ease forwards;
  animation-delay: var(--po-card-delay, 0ms);
  position: relative;
}

body.page-provider-orders .po-card::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 0 16px 16px 0;
  background: rgba(103, 58, 183, 0.3);
}

body.page-provider-orders .po-card.po-card-new::before { background: rgba(165, 104, 0, 0.75); }
body.page-provider-orders .po-card.po-card-in_progress::before { background: rgba(230, 126, 34, 0.78); }
body.page-provider-orders .po-card.po-card-completed::before { background: rgba(46, 125, 50, 0.78); }
body.page-provider-orders .po-card.po-card-cancelled::before { background: rgba(198, 40, 40, 0.78); }

body.page-provider-orders .po-card:hover {
  transform: translateY(-4px);
  border-color: rgba(103, 58, 183, 0.24);
  box-shadow: 0 22px 34px rgba(30, 22, 58, 0.16);
}

@keyframes po-card-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.page-provider-orders .po-card {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.po-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.po-card-head {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  min-width: 0;
}

body.page-provider-orders .order-card-body {
  min-width: 0;
}

body.page-provider-orders .order-card h4 {
  font-size: 14px;
  font-weight: 800;
  color: #2a2340;
  line-height: 1.45;
  word-break: break-word;
}

body.page-provider-orders .order-meta,
body.page-provider-orders .order-date {
  color: rgba(31, 27, 45, 0.62);
  font-size: 12px;
}

body.page-provider-orders .po-card-pills {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 9px;
}

body.page-provider-orders .po-card-pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border-radius: 999px;
  padding: 0 9px;
  border: 1px solid rgba(103, 58, 183, 0.28);
  background: rgba(103, 58, 183, 0.09);
  color: #673AB7;
  font-size: 10.5px;
  font-weight: 800;
}

body.page-provider-orders .po-card-pill-soft {
  border-color: rgba(21, 101, 192, 0.28);
  background: rgba(21, 101, 192, 0.09);
  color: #1565c0;
}

body.page-provider-orders .po-card-pill-warning {
  border-color: rgba(165, 104, 0, 0.34);
  background: rgba(165, 104, 0, 0.1);
  color: #a56800;
}

body.page-provider-orders .po-card-pill-info {
  border-color: rgba(21, 101, 192, 0.34);
  background: rgba(21, 101, 192, 0.11);
  color: #1565c0;
}

body.page-provider-orders .po-card-pill-success {
  border-color: rgba(46, 125, 50, 0.34);
  background: rgba(46, 125, 50, 0.11);
  color: #2e7d32;
}

body.page-provider-orders .po-card-footer {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

body.page-provider-orders .po-card-date {
  font-size: 11.5px;
  color: rgba(31, 27, 45, 0.62);
  font-weight: 700;
}

body.page-provider-orders .po-card-link {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border-radius: 999px;
  padding: 0 10px;
  font-size: 10.5px;
  font-weight: 900;
  color: #4b2e88;
  border: 1px solid rgba(103, 58, 183, 0.24);
  background: rgba(103, 58, 183, 0.08);
}

body.page-provider-orders .order-status {
  flex-shrink: 0;
  border-width: 1px;
  border-style: solid;
  border-radius: 22px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
}

body.page-provider-orders #po-error {
  margin-top: 2px;
}

body.page-provider-orders #po-list.is-loading {
  opacity: 0.52;
  pointer-events: none;
  filter: saturate(0.8);
}

body.page-provider-orders .po-loading-state {
  flex-direction: column;
  gap: 10px;
}

body.page-provider-orders .po-loading-state p {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  color: rgba(31, 27, 45, 0.68);
}

body.page-provider-orders .po-empty-state {
  border-radius: 18px;
  border: 1px dashed rgba(103, 58, 183, 0.34);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(248, 244, 255, 0.9));
  padding: 24px 18px;
}

body.page-provider-orders .po-empty-state p {
  margin: 10px 0 4px;
  font-weight: 800;
  color: #2a2340;
}

body.page-provider-orders .po-empty-state small {
  display: block;
  font-size: 12px;
  color: rgba(31, 27, 45, 0.64);
}

body.page-provider-orders .order-id {
  font-size: 14px;
  font-weight: 700;
  color: #1f1b2d;
  line-height: 1.35;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.page-provider-orders #po-status-tabs .status-tab {
  border-width: 1px;
  font-size: 12px;
  font-weight: 700;
}

body.page-provider-orders #po-status-tabs .status-tab[data-group="new"] {
  color: #a56800;
  border-color: rgba(165, 104, 0, 0.34);
  background: rgba(165, 104, 0, 0.08);
}

body.page-provider-orders #po-status-tabs .status-tab[data-group="in_progress"] {
  color: #e67e22;
  border-color: rgba(230, 126, 34, 0.34);
  background: rgba(230, 126, 34, 0.08);
}

body.page-provider-orders #po-status-tabs .status-tab[data-group="completed"] {
  color: #2e7d32;
  border-color: rgba(46, 125, 50, 0.34);
  background: rgba(46, 125, 50, 0.08);
}

body.page-provider-orders #po-status-tabs .status-tab[data-group="cancelled"] {
  color: #c62828;
  border-color: rgba(198, 40, 40, 0.34);
  background: rgba(198, 40, 40, 0.08);
}

body.page-provider-orders #po-status-tabs .status-tab.active {
  color: #fff;
}

body.page-provider-orders #po-status-tabs .status-tab.active[data-group="new"] {
  border-color: #a56800;
  background: #a56800;
}

body.page-provider-orders #po-status-tabs .status-tab.active[data-group="in_progress"] {
  border-color: #e67e22;
  background: #e67e22;
}

body.page-provider-orders #po-status-tabs .status-tab.active[data-group="completed"] {
  border-color: #2e7d32;
  background: #2e7d32;
}

body.page-provider-orders #po-status-tabs .status-tab.active[data-group="cancelled"] {
  border-color: #c62828;
  background: #c62828;
}

body.page-provider-orders #po-status-tabs .status-tab.active[data-group=""] {
  border-color: #673AB7;
  background: #673AB7;
}

body.page-provider-orders #po-status-tabs {
  margin-bottom: 0;
}

@media (max-width: 760px) {
  body.page-provider-orders .page-shell {
    padding: 10px 12px calc(var(--bottom-nav-height, 84px) + 20px);
  }

  body.page-provider-orders .po-header {
    grid-template-areas:
      "back copy"
      "side side"
      "stats stats";
  }

  body.page-provider-orders .po-header-tags {
    margin-top: 12px;
  }

  body.page-provider-orders .po-main-tabs {
    display: flex;
    overflow-x: auto;
    padding-bottom: 3px;
    margin-bottom: 0;
  }

  body.page-provider-orders .po-main-tabs .status-tab {
    width: auto;
    min-width: 146px;
    font-size: 13px;
    min-height: 46px;
    justify-content: flex-start;
  }

  body.page-provider-orders .po-smart-bar {
    padding: 10px;
  }

  body.page-provider-orders .po-controls-panel,
  body.page-provider-orders .po-results-board {
    border-radius: 20px;
    padding: 12px;
  }

  body.page-provider-orders .po-smart-bar-actions {
    width: 100%;
  }

  body.page-provider-orders .po-sort-wrap {
    flex: 1 1 100%;
    justify-content: space-between;
  }

  body.page-provider-orders .po-sort-select {
    min-width: 140px;
  }

  body.page-provider-orders .po-smart-bar-copy strong {
    font-size: 12px;
  }

  body.page-provider-orders .po-smart-bar-copy span {
    font-size: 11px;
  }

  body.page-provider-orders .po-toolbar-btn {
    min-height: 32px;
    font-size: 11.5px;
    padding: 0 10px;
    flex: 1;
  }

  body.page-provider-orders .order-id {
    font-size: 13px;
  }

  body.page-provider-orders .order-card h4 {
    font-size: 13px;
  }

  body.page-provider-orders .order-meta,
  body.page-provider-orders .order-date {
    font-size: 12px;
  }

  body.page-provider-orders .po-header {
    padding: 16px;
    border-radius: 24px;
    column-gap: 10px;
    row-gap: 12px;
  }

  body.page-provider-orders .po-header-subtitle {
    font-size: 12px;
    line-height: 1.7;
  }

  body.page-provider-orders .po-header-stats {
    gap: 7px;
  }

  body.page-provider-orders .po-header-stat {
    padding: 10px 10px;
    min-height: 84px;
  }

  body.page-provider-orders .po-header-stat strong {
    font-size: 26px;
  }

  body.page-provider-orders .po-card-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (min-width: 761px) {
  body.page-provider-orders .page-shell {
    max-width: 1160px;
    padding: 20px 24px calc(var(--bottom-nav-height, 84px) + 26px);
  }

  body.page-provider-orders .page-header {
    margin: 8px 0 14px;
  }

  body.page-provider-orders .page-header h1 {
    font-size: 34px;
    font-weight: 900;
  }

  body.page-provider-orders .po-header {
    padding: 22px;
    column-gap: 18px;
    row-gap: 18px;
    grid-template-columns: auto minmax(0, 1.2fr) minmax(280px, 0.8fr);
    grid-template-areas:
      "back copy side"
      "stats stats side";
  }

  body.page-provider-orders .po-smart-bar {
    padding: 12px 14px;
  }

  body.page-provider-orders .po-controls-panel,
  body.page-provider-orders .po-results-board {
    padding: 16px;
    border-radius: 24px;
  }

  body.page-provider-orders .po-sort-wrap {
    min-width: 170px;
  }

  body.page-provider-orders .po-status-legend {
    gap: 10px 14px;
  }

  body.page-provider-orders .po-header-subtitle {
    font-size: 15px;
    max-width: 64ch;
  }

  body.page-provider-orders .po-header-stats {
    grid-template-columns: repeat(3, minmax(140px, 1fr));
    max-width: none;
  }

  body.page-provider-orders .po-header-stat strong {
    font-size: 32px;
  }

  body.page-provider-orders .po-search {
    max-width: 580px;
  }

  body.page-provider-orders #po-status-tabs {
    flex-wrap: wrap;
    overflow: visible;
    row-gap: 10px;
  }

  body.page-provider-orders #po-list {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 16px;
  }

  body.page-provider-orders #po-list .po-card {
    margin-bottom: 0;
    height: 100%;
  }
}

@media (min-width: 1024px) {
  body.page-provider-orders #bottom-nav {
    display: flex !important;
  }

  body.page-provider-orders .page-shell {
    max-width: 1440px;
    padding: 26px 28px 34px;
  }

  body.page-provider-orders #porders-content {
    display: grid;
    grid-template-columns: minmax(320px, 380px) minmax(0, 1fr);
    grid-template-areas:
      "header header"
      "controls smart"
      "controls results"
      "controls results";
    align-items: start;
    column-gap: 22px;
    row-gap: 18px;
  }

  body.page-provider-orders .po-smart-bar {
    grid-area: smart;
    margin-bottom: 0;
  }

  body.page-provider-orders .po-controls-panel {
    grid-area: controls;
    position: sticky;
    top: 90px;
    align-self: start;
  }

  body.page-provider-orders .po-results-board {
    grid-area: results;
    min-height: 420px;
    padding: 20px;
  }

  body.page-provider-orders .po-header {
    grid-template-columns: auto minmax(0, 1.2fr) minmax(300px, 0.8fr);
    grid-template-areas:
      "back copy side"
      "stats stats side";
    align-items: start;
    column-gap: 18px;
    row-gap: 18px;
    padding: 26px 28px;
  }

  body.page-provider-orders .po-header-stats {
    justify-self: stretch;
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.page-provider-orders .po-search {
    margin-bottom: 0;
    max-width: 100%;
  }

  body.page-provider-orders .po-main-tabs {
    grid-template-columns: 1fr;
    margin-bottom: 0;
    gap: 12px;
  }

  body.page-provider-orders .po-main-tabs .status-tab {
    justify-content: space-between;
    min-height: 54px;
    font-size: 13px;
    padding: 12px 16px;
  }

  body.page-provider-orders #po-status-tabs {
    margin-bottom: 0;
  }

  body.page-provider-orders .po-status-legend {
    margin: -4px 0 0;
  }

  body.page-provider-orders #po-loading {
    min-height: 320px;
  }
}

@media (min-width: 1460px) {
  body.page-provider-orders .page-shell {
    max-width: 1480px;
  }

  body.page-provider-orders #po-list {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
}

.po-available-badge {
  border-radius: 999px;
  padding: 4px 9px;
  border: 1px solid rgba(30, 136, 229, 0.4);
  background: rgba(33, 150, 243, 0.12);
  color: #1565c0;
  font-size: 10px;
  font-weight: 800;
}

body.page-provider-orders .order-type-badge {
  border: 1px solid rgba(30, 136, 229, 0.34);
  border-radius: 999px;
  padding: 3px 8px;
  font-size: 10px;
  font-weight: 800;
  color: #1565c0;
  background: rgba(33, 150, 243, 0.1);
}

/* Provider Orders Refresh */
body.page-provider-orders {
  --po-primary: #673AB7;
  --po-primary-strong: #4b2e88;
  --po-primary-soft: rgba(103, 58, 183, 0.1);
  --po-primary-tint: #f7f3ff;
  --po-accent: #2563eb;
  --po-urgent: #c62828;
  --po-ink: #1f1b2d;
  --po-muted: #69657d;
  --po-line: rgba(103, 58, 183, 0.14);
  --po-surface: #ffffff;
  background:
    radial-gradient(circle at 10% -4%, rgba(103, 58, 183, 0.14), transparent 28%),
    radial-gradient(circle at 92% 0%, rgba(37, 99, 235, 0.1), transparent 24%),
    linear-gradient(180deg, #faf7ff 0%, #f6f7fc 48%, #f3f4fb 100%);
}

body.page-provider-orders .page-shell {
  width: min(1440px, calc(100% - 24px));
  max-width: none;
  margin: 0 auto;
  padding: 18px 0 32px;
}

body.page-provider-orders #porders-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas: none;
  column-gap: 0;
  row-gap: 18px;
}

body.page-provider-orders .po-app-shell,
body.page-provider-orders .po-workbench {
  display: grid;
  gap: 18px;
}

body.page-provider-orders .po-header {
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas:
    "back copy"
    "stats stats";
  align-items: start;
  gap: 16px;
  padding: 24px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  background:
    radial-gradient(circle at top right, rgba(103, 58, 183, 0.16), transparent 22%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(246, 243, 255, 0.94));
  box-shadow: 0 24px 46px rgba(27, 20, 54, 0.09);
}

body.page-provider-orders .po-back-btn {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(103, 58, 183, 0.15);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 24px rgba(29, 24, 51, 0.08);
}

body.page-provider-orders .po-header-copy {
  align-self: center;
}

body.page-provider-orders .po-header-eyebrow {
  margin-bottom: 10px;
  padding: 0 12px;
  min-height: 30px;
  border-radius: 999px;
  font-size: 11px;
  color: var(--po-primary-strong);
  border-color: rgba(103, 58, 183, 0.18);
  background: linear-gradient(145deg, rgba(103, 58, 183, 0.14), rgba(103, 58, 183, 0.05));
}

body.page-provider-orders .po-header h1 {
  margin: 0;
  color: var(--po-ink);
  font-size: clamp(1.85rem, 2vw, 2.45rem);
  line-height: 1.15;
}

body.page-provider-orders .po-header-subtitle {
  margin: 12px 0 0;
  max-width: 54ch;
  line-height: 1.7;
  color: var(--po-muted);
}

body.page-provider-orders .po-header-tags,
body.page-provider-orders .po-header-side {
  display: none !important;
}

body.page-provider-orders .po-header-stats {
  gap: 14px;
}

body.page-provider-orders .po-header-stat {
  min-height: 112px;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(103, 58, 183, 0.1);
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(246,243,255,0.82));
  box-shadow: 0 12px 26px rgba(30, 24, 51, 0.06);
}

body.page-provider-orders .po-header-stat span {
  color: rgba(31, 27, 45, 0.68);
}

body.page-provider-orders .po-header-stat strong {
  color: var(--po-ink);
}

body.page-provider-orders .po-main-tabs-wrap {
  border-radius: 26px;
  border: 1px solid var(--po-line);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 28px rgba(31, 24, 51, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px;
}

body.page-provider-orders .po-main-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

body.page-provider-orders .po-main-tabs .status-tab {
  min-height: 58px;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: 18px;
  font-size: 13px;
  background: rgba(103, 58, 183, 0.05);
}

body.page-provider-orders .po-tab-count {
  min-width: 28px;
  height: 28px;
  font-size: 11px;
}

body.page-provider-orders .po-smart-bar {
  gap: 16px;
  padding: 16px 18px;
  border-radius: 24px;
  border-color: var(--po-line);
  background: linear-gradient(140deg, rgba(255,255,255,0.98), rgba(247,243,255,0.95));
  box-shadow: 0 14px 30px rgba(27, 20, 54, 0.07);
}

body.page-provider-orders .po-smart-bar-copy {
  gap: 4px;
}

body.page-provider-orders .po-smart-bar-copy strong {
  font-size: 17px;
  color: var(--po-ink);
}

body.page-provider-orders .po-smart-bar-copy span {
  color: var(--po-muted);
}

body.page-provider-orders .po-smart-bar-badge {
  min-height: 28px;
  padding: 0 12px;
  font-size: 11px;
  color: var(--po-primary-strong);
}

body.page-provider-orders .po-smart-bar-actions {
  gap: 10px;
}

body.page-provider-orders .po-sort-wrap {
  min-height: 42px;
  border-radius: 14px;
  padding: 0 10px;
}

body.page-provider-orders .po-sort-label,
body.page-provider-orders .po-sort-select {
  font-size: 12px;
}

body.page-provider-orders .po-toolbar-btn {
  min-height: 42px;
  border-radius: 14px;
  padding: 0 16px;
  background: linear-gradient(135deg, var(--po-primary) 0%, var(--po-primary-strong) 100%);
}

body.page-provider-orders .po-toolbar-btn-light {
  color: var(--po-primary-strong);
  background: rgba(103, 58, 183, 0.08);
}

body.page-provider-orders .po-workbench {
  align-items: start;
}

body.page-provider-orders .po-controls-panel,
body.page-provider-orders .po-results-board {
  border-radius: 28px;
  border: 1px solid var(--po-line);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,245,255,0.92));
  box-shadow: 0 18px 34px rgba(27, 20, 54, 0.08);
}

body.page-provider-orders .po-controls-panel {
  padding: 20px;
  gap: 18px;
}

body.page-provider-orders .po-results-board {
  padding: 22px;
  min-height: 540px;
}

body.page-provider-orders .po-panel-head h2 {
  font-size: 18px;
  color: var(--po-ink);
}

body.page-provider-orders .po-panel-head p {
  margin-top: 6px;
  line-height: 1.65;
  color: var(--po-muted);
}

body.page-provider-orders .po-control-group {
  display: grid;
  gap: 10px;
}

body.page-provider-orders .po-control-label {
  font-size: 12px;
  font-weight: 800;
  color: var(--po-primary-strong);
}

body.page-provider-orders .po-search {
  min-height: 52px;
  padding-inline: 14px;
  border-radius: 18px;
  border: 1px solid rgba(103, 58, 183, 0.14);
  background: #fff;
}

body.page-provider-orders .po-search svg {
  flex-shrink: 0;
}

body.page-provider-orders #po-status-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body.page-provider-orders #po-status-tabs .status-tab {
  min-height: 40px;
  border-radius: 999px;
  padding: 0 16px;
}

body.page-provider-orders .po-status-legend {
  margin: 0;
  padding-top: 2px;
}

body.page-provider-orders .po-controls-foot {
  margin-top: auto;
  padding-top: 6px;
  border-top: 1px solid rgba(103, 58, 183, 0.08);
}

body.page-provider-orders .po-controls-foot small {
  font-size: 11px;
  font-weight: 800;
  color: rgba(75, 46, 136, 0.78);
}

body.page-provider-orders .po-results-head {
  margin-bottom: 4px;
}

body.page-provider-orders #po-list {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: 18px;
}

body.page-provider-orders .po-card {
  border-radius: 24px;
  border: 1px solid rgba(103, 58, 183, 0.12);
  background: linear-gradient(180deg, rgba(255,255,255,1), rgba(248,245,255,0.92));
  box-shadow: 0 16px 32px rgba(24, 18, 43, 0.08);
}

body.page-provider-orders .po-card::before {
  right: 18px;
  left: 18px;
  top: 0;
  bottom: auto;
  width: auto;
  height: 4px;
  border-radius: 999px;
}

body.page-provider-orders .po-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 40px rgba(24, 18, 43, 0.14);
}

body.page-provider-orders .po-card-top {
  align-items: flex-start;
  margin-bottom: 14px;
}

body.page-provider-orders .po-card-head {
  gap: 8px;
}

body.page-provider-orders .order-id {
  font-size: 13px;
  font-weight: 900;
  color: var(--po-primary-strong);
  white-space: normal;
}

body.page-provider-orders .order-status {
  min-height: 34px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  font-size: 11.5px;
  font-weight: 800;
}

body.page-provider-orders .order-card-body {
  display: grid;
  gap: 10px;
}

body.page-provider-orders .order-card h4 {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  color: var(--po-ink);
}

body.page-provider-orders .order-meta {
  min-height: 18px;
  margin: 0;
  font-size: 12px;
  color: rgba(31, 27, 45, 0.66);
}

body.page-provider-orders .order-date {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--po-muted);
}

body.page-provider-orders .po-card-pills {
  margin-top: 0;
  gap: 8px;
}

body.page-provider-orders .po-card-pill {
  min-height: 28px;
  padding: 0 11px;
  font-size: 11px;
}

body.page-provider-orders .po-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

body.page-provider-orders .po-card-meta {
  min-width: 0;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(103, 58, 183, 0.1);
  background: linear-gradient(180deg, rgba(247,243,255,0.78), rgba(255,255,255,0.96));
}

body.page-provider-orders .po-card-meta-label {
  display: block;
  margin-bottom: 4px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(31, 27, 45, 0.56);
}

body.page-provider-orders .po-card-meta-value {
  display: block;
  font-size: 12.5px;
  font-weight: 800;
  color: var(--po-ink);
  line-height: 1.5;
  word-break: break-word;
}

body.page-provider-orders .po-card-footer {
  margin-top: 2px;
  padding-top: 12px;
  border-top: 1px solid rgba(103, 58, 183, 0.08);
}

body.page-provider-orders .po-card-date {
  font-size: 11px;
}

body.page-provider-orders .po-card-link {
  min-height: 32px;
  padding: 0 13px;
  border-radius: 999px;
  font-size: 11px;
}

body.page-provider-orders .po-available-badge {
  min-height: 26px;
  padding: 0 10px;
  border-color: rgba(21, 101, 192, 0.25);
  background: rgba(21, 101, 192, 0.08);
  font-size: 10.5px;
}

body.page-provider-orders .order-type-badge {
  min-height: 26px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
}

body.page-provider-orders .order-type-badge-competitive {
  border-color: rgba(21, 101, 192, 0.28);
  color: #1565c0;
  background: rgba(21, 101, 192, 0.1);
}

body.page-provider-orders .order-type-badge-urgent {
  border-color: rgba(198, 40, 40, 0.25);
  color: #c62828;
  background: rgba(198, 40, 40, 0.08);
}

body.page-provider-orders .po-empty-state {
  min-height: 360px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 24px;
  border: 1px dashed rgba(103, 58, 183, 0.22);
  background:
    radial-gradient(circle at top, rgba(103, 58, 183, 0.08), transparent 35%),
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,244,255,0.92));
}

body.page-provider-orders .po-empty-state svg {
  margin: 0 auto;
  stroke: rgba(103, 58, 183, 0.42);
}

body.page-provider-orders .po-empty-state p {
  margin: 12px 0 6px;
  font-size: 18px;
}

body.page-provider-orders .po-empty-state small {
  font-size: 12.5px;
}

body.page-provider-orders .po-loading-state {
  min-height: 320px;
  justify-content: center;
}

@media (max-width: 760px) {
  body.page-provider-orders .page-shell {
    width: calc(100% - 16px);
    padding: 10px 0 calc(var(--bottom-nav-height, 84px) + 18px);
  }

  body.page-provider-orders .po-header {
    padding: 18px;
    border-radius: 24px;
  }

  body.page-provider-orders .po-header h1 {
    font-size: 1.75rem;
  }

  body.page-provider-orders .po-header-subtitle {
    font-size: 12.5px;
  }

  body.page-provider-orders .po-header-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  body.page-provider-orders .po-header-stat {
    min-height: 88px;
    padding: 12px 10px;
  }

  body.page-provider-orders .po-header-stat strong {
    font-size: 24px;
  }

  body.page-provider-orders .po-main-tabs-wrap,
  body.page-provider-orders .po-smart-bar,
  body.page-provider-orders .po-controls-panel,
  body.page-provider-orders .po-results-board {
    border-radius: 22px;
  }

  body.page-provider-orders .po-main-tabs {
    display: flex;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  body.page-provider-orders .po-main-tabs .status-tab {
    min-width: 160px;
    min-height: 54px;
    padding: 12px 14px;
    justify-content: flex-start;
  }

  body.page-provider-orders .po-smart-bar {
    padding: 14px;
  }

  body.page-provider-orders .po-smart-bar-actions {
    width: 100%;
  }

  body.page-provider-orders .po-sort-wrap {
    flex: 1 1 100%;
    justify-content: space-between;
  }

  body.page-provider-orders .po-toolbar-btn {
    flex: 1;
    min-width: 0;
  }

  body.page-provider-orders .po-controls-panel,
  body.page-provider-orders .po-results-board {
    padding: 16px;
  }

  body.page-provider-orders #po-status-tabs {
    gap: 8px;
  }

  body.page-provider-orders #po-status-tabs .status-tab {
    padding-inline: 14px;
    font-size: 11.5px;
  }

  body.page-provider-orders .po-card-grid {
    grid-template-columns: 1fr;
  }

  body.page-provider-orders .order-card h4 {
    font-size: 16px;
  }

  body.page-provider-orders .po-card-footer {
    flex-direction: row;
    align-items: center;
  }

  body.page-provider-orders .po-empty-state {
    min-height: 260px;
    padding: 22px 16px;
  }
}

@media (min-width: 1024px) {
  body.page-provider-orders #bottom-nav {
    display: none !important;
  }

  body.page-provider-orders .po-workbench {
    grid-template-columns: minmax(0, 1fr) 320px;
    grid-template-areas: "results controls";
  }

  body.page-provider-orders .po-results-board {
    grid-area: results;
  }

  body.page-provider-orders .po-controls-panel {
    grid-area: controls;
    position: sticky;
    top: 92px;
  }
}

@media (min-width: 1280px) {
  body.page-provider-orders .po-header {
    grid-template-columns: auto minmax(0, 1fr) minmax(360px, 420px);
    grid-template-areas: "back copy stats";
    align-items: center;
  }

  body.page-provider-orders .po-header-stats {
    grid-area: stats;
  }

  body.page-provider-orders #po-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ══════════════════════════════════════════════
   Provider Order Detail
   ══════════════════════════════════════════════ */
body.page-provider-order-detail #top-navbar,
body.page-provider-order-detail #site-footer {
  display: none !important;
}

body.page-provider-order-detail .pod-shell {
  max-width: 520px;
  margin: 0 auto;
  padding: 0 12px calc(var(--bottom-nav-height) + 28px);
}

body.page-provider-order-detail .pod-appbar {
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  align-items: center;
  gap: 8px;
  padding: 8px 0 6px;
}

body.page-provider-order-detail .pod-appbar-title {
  margin: 0;
  text-align: center;
  font-size: 26px;
  font-weight: 900;
  color: #1f1b2d;
}

body.page-provider-order-detail .pod-icon-btn {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #673AB7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

body.page-provider-order-detail .pod-screen-chip {
  width: fit-content;
  margin: 8px auto 12px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(103, 58, 183, 0.28);
  background: rgba(103, 58, 183, 0.09);
  color: #673AB7;
  font-size: 13px;
  font-weight: 800;
}

body.page-provider-order-detail .pod-card {
  background: #fff;
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 12px;
}

body.page-provider-order-detail .pod-client-card {
  background: rgba(103, 58, 183, 0.04);
  border: 1px solid rgba(103, 58, 183, 0.2);
}

body.page-provider-order-detail .pod-client-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

body.page-provider-order-detail .pod-client-head h3 {
  margin: 0;
  color: #673AB7;
  font-size: 14px;
  font-weight: 900;
}

body.page-provider-order-detail .pod-info-line {
  display: grid;
  grid-template-columns: 16px auto 1fr;
  align-items: center;
  column-gap: 8px;
  margin-bottom: 10px;
  font-size: 13px;
}

body.page-provider-order-detail .pod-info-line:last-child {
  margin-bottom: 0;
}

body.page-provider-order-detail .pod-info-label {
  color: #2a2732;
  font-weight: 800;
}

body.page-provider-order-detail .pod-info-value {
  color: #5b5866;
  font-weight: 700;
  text-align: end;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.page-provider-order-detail .pod-header-card {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

body.page-provider-order-detail .pod-header-main {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

body.page-provider-order-detail .pod-id-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

body.page-provider-order-detail .pod-display-id {
  font-size: 14px;
  font-weight: 900;
  color: #1f1b2d;
}

body.page-provider-order-detail .pod-type-badge {
  padding: 2px 6px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 800;
}

body.page-provider-order-detail .pod-meta-line {
  margin: 0;
  color: #706c79;
  font-size: 12px;
  font-weight: 700;
}

body.page-provider-order-detail .pod-status-pill {
  align-self: flex-start;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

body.page-provider-order-detail .pod-readonly-box {
  margin-bottom: 10px;
}

body.page-provider-order-detail .pod-readonly-box:last-child {
  margin-bottom: 0;
}

body.page-provider-order-detail .pod-readonly-box label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 800;
  color: #24212d;
}

body.page-provider-order-detail .pod-readonly-box p {
  margin: 0;
  border: 1px solid rgba(103, 58, 183, 0.3);
  border-radius: 12px;
  padding: 11px 12px;
  font-size: 13px;
  font-weight: 700;
  color: #393645;
  background: #fff;
}

body.page-provider-order-detail .pod-readonly-attachments {
  border: 1px solid rgba(103, 58, 183, 0.3);
  border-radius: 12px;
  padding: 8px 10px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

body.page-provider-order-detail .pod-readonly-attachments .pod-attachment-row {
  margin: 0;
}

body.page-provider-order-detail .pod-readonly-attachments-empty {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: #393645;
}

body.page-provider-order-detail .pod-multiline {
  min-height: 48px;
  white-space: pre-wrap;
  line-height: 1.5;
}

body.page-provider-order-detail .pod-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

body.page-provider-order-detail .pod-section-title {
  margin: 0;
  font-size: 15px;
  font-weight: 900;
  color: #1f1b2d;
}

body.page-provider-order-detail .pod-section-kicker {
  font-size: 11px;
  font-weight: 800;
  color: #716c7c;
}

body.page-provider-order-detail .pod-subsection-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

body.page-provider-order-detail .pod-subsection-title {
  margin: 0;
  font-size: 13px;
  font-weight: 900;
  color: #5b3f99;
}

body.page-provider-order-detail .pod-count-pill {
  min-width: 30px;
  height: 24px;
  border-radius: 999px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(91, 63, 153, 0.28);
  background: rgba(91, 63, 153, 0.1);
  color: #5b3f99;
  font-size: 11px;
  font-weight: 900;
}

body.page-provider-order-detail .pod-muted {
  margin: 0;
  color: #6d6977;
  font-size: 13px;
  font-weight: 700;
}

body.page-provider-order-detail .pod-attachment-group + .pod-attachment-group {
  margin-top: 14px;
}

body.page-provider-order-detail .pod-attachment-group {
  border: 1px solid rgba(103, 58, 183, 0.16);
  border-radius: 14px;
  padding: 10px;
  background: linear-gradient(150deg, #ffffff 0%, #fbf9ff 100%);
}

body.page-provider-order-detail .pod-attachment-group.is-provider {
  border-color: rgba(46, 125, 50, 0.24);
  background: linear-gradient(150deg, #ffffff 0%, #f4fff6 100%);
}

body.page-provider-order-detail .pod-attachment-group.is-provider .pod-subsection-title {
  color: #2e7d32;
}

body.page-provider-order-detail .pod-attachment-group.is-provider .pod-count-pill {
  border-color: rgba(46, 125, 50, 0.28);
  background: rgba(46, 125, 50, 0.1);
  color: #2e7d32;
}

body.page-provider-order-detail .pod-attachment-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
}

body.page-provider-order-detail .pod-attachment-row {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(103, 58, 183, 0.2);
  border-radius: 14px;
  padding: 10px 11px;
  background: linear-gradient(140deg, #ffffff 0%, #faf8ff 100%);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

body.page-provider-order-detail .pod-attachment-row:hover {
  border-color: rgba(103, 58, 183, 0.36);
  box-shadow: 0 8px 18px rgba(33, 20, 58, 0.08);
  transform: translateY(-1px);
}

body.page-provider-order-detail .pod-attachment-row.is-final {
  border-color: rgba(46, 125, 50, 0.34);
  background: linear-gradient(145deg, #ffffff 0%, #f2fff4 100%);
}

body.page-provider-order-detail .pod-attachment-icon {
  width: 38px;
  height: 28px;
  border-radius: 9px;
  background: rgba(103, 58, 183, 0.1);
  color: #673AB7;
  font-size: 10px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

body.page-provider-order-detail .pod-attachment-row.is-final .pod-attachment-icon {
  background: rgba(46, 125, 50, 0.14);
  color: #2e7d32;
}

body.page-provider-order-detail .pod-attachment-body {
  flex: 1;
  min-width: 0;
}

body.page-provider-order-detail .pod-attachment-name {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 800;
  color: #262330;
}

body.page-provider-order-detail .pod-attachment-meta {
  margin-top: 5px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

body.page-provider-order-detail .pod-attachment-type {
  border: 1px solid rgba(103, 58, 183, 0.28);
  border-radius: 999px;
  padding: 3px 9px;
  font-size: 10.5px;
  font-weight: 900;
  color: #673AB7;
  background: rgba(103, 58, 183, 0.09);
}

body.page-provider-order-detail .pod-attachment-date {
  font-size: 11px;
  font-weight: 700;
  color: #7a7488;
}

body.page-provider-order-detail .pod-attachment-open {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 900;
  color: #2e7d32;
}

body.page-provider-order-detail .pod-attachment-row:not([href]) .pod-attachment-open {
  color: #9a96a4;
}

body.page-provider-order-detail .pod-timeline {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

body.page-provider-order-detail .pod-log-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  animation: pod-fade-up .22s ease both;
}

body.page-provider-order-detail .pod-log-item:not(.is-last)::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 16px;
  width: 1px;
  bottom: -12px;
  background: rgba(103, 58, 183, 0.24);
}

body.page-provider-order-detail .pod-log-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 12px;
  background: #673AB7;
  box-shadow: 0 0 0 4px rgba(103, 58, 183, 0.16);
  flex-shrink: 0;
  z-index: 1;
}

body.page-provider-order-detail .pod-log-body {
  flex: 1;
  border: 1px solid rgba(103, 58, 183, 0.16);
  border-radius: 13px;
  padding: 10px 11px;
  background: linear-gradient(145deg, #ffffff 0%, #f8f7ff 100%);
}

body.page-provider-order-detail .pod-log-title {
  margin: 0;
  font-size: 13px;
  font-weight: 900;
  color: #1f1b2d;
}

body.page-provider-order-detail .pod-log-actor {
  margin: 5px 0 0;
  font-size: 11.5px;
  font-weight: 800;
  color: #5b3f99;
}

body.page-provider-order-detail .pod-log-note {
  margin: 6px 0 0;
  font-size: 12px;
  line-height: 1.6;
  color: #5e5a69;
}

body.page-provider-order-detail .pod-log-date {
  margin: 6px 0 0;
  font-size: 11px;
  font-weight: 700;
  color: #9a96a4;
}

body.page-provider-order-detail .pod-attachment-row {
  animation: pod-fade-up .2s ease both;
}

@keyframes pod-fade-up {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body.page-provider-order-detail .pod-action-title {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 900;
  color: #1f1b2d;
}

body.page-provider-order-detail .pod-input-label {
  display: block;
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 800;
  color: #292634;
}

body.page-provider-order-detail .pod-input,
body.page-provider-order-detail .pod-textarea {
  width: 100%;
  border: 1px solid rgba(103, 58, 183, 0.35);
  border-radius: 12px;
  padding: 10px 12px;
  font-family: 'Cairo', sans-serif;
  font-size: 13px;
  color: #1f1b2d;
  margin-bottom: 10px;
  background: #fff;
}

body.page-provider-order-detail .pod-textarea {
  resize: vertical;
  min-height: 72px;
}

body.page-provider-order-detail .pod-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

body.page-provider-order-detail .pod-btn {
  border: 0;
  border-radius: 14px;
  min-height: 44px;
  padding: 0 12px;
  font-family: 'Cairo', sans-serif;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

body.page-provider-order-detail .pod-btn-block {
  width: 100%;
}

body.page-provider-order-detail .pod-btn-primary { background: #673AB7; color: #fff; }
body.page-provider-order-detail .pod-btn-success { background: #2E7D32; color: #fff; }
body.page-provider-order-detail .pod-btn-danger { background: #C62828; color: #fff; }
body.page-provider-order-detail .pod-btn-warning { background: #E67E22; color: #fff; }
body.page-provider-order-detail .pod-btn-outline {
  border: 1px solid #673AB7;
  color: #673AB7;
  background: transparent;
}
body.page-provider-order-detail .pod-btn-outline-danger {
  border: 1px solid #C62828;
  color: #C62828;
  background: transparent;
}
body.page-provider-order-detail .pod-btn-outline-neutral {
  border: 1px solid #c9c7d1;
  color: #3b3846;
  background: transparent;
}
body.page-provider-order-detail .pod-btn[disabled] { opacity: 0.6; cursor: not-allowed; }

body.page-provider-order-detail .pod-divider {
  height: 1px;
  background: #ecebf1;
  margin: 14px 0;
}

body.page-provider-order-detail .pod-file-picker input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

body.page-provider-order-detail .pod-file-picker {
  display: block;
  position: relative;
  margin-bottom: 8px;
}

body.page-provider-order-detail .pod-file-list { margin: 8px 0; }

body.page-provider-order-detail .pod-file-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

body.page-provider-order-detail .pod-file-name {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
  color: #2a2732;
}

body.page-provider-order-detail .pod-file-remove {
  border: 0;
  border-radius: 10px;
  background: rgba(198, 40, 40, 0.12);
  color: #C62828;
  font-size: 11px;
  font-weight: 800;
  min-height: 30px;
  padding: 0 10px;
  cursor: pointer;
}

body.page-provider-order-detail .pod-back-wrap { margin-top: 8px; }

body.page-provider-order-detail .pod-error {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid #f5c2c7;
  background: #fdecef;
  color: #842029;
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 10px;
}

body.page-provider-order-detail .pod-error-retry {
  border: 0;
  border-radius: 10px;
  background: #fff;
  color: #842029;
  min-height: 30px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

body.page-provider-order-detail .pod-toast {
  position: fixed;
  left: 50%;
  bottom: calc(var(--bottom-nav-height, 68px) + env(safe-area-inset-bottom, 0px) + 16px);
  transform: translate(-50%, 8px);
  background: #25212f;
  color: #fff;
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 11.5px;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transition: all .2s ease;
  z-index: 600;
}

body.page-provider-order-detail .pod-toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 420px) {
  body.page-provider-order-detail .pod-appbar-title { font-size: 22px; }
  body.page-provider-order-detail .pod-grid-2 { grid-template-columns: 1fr; }
}

@media (min-width: 761px) {
  body.page-provider-order-detail .pod-shell {
    max-width: 1060px;
    padding: 8px 22px calc(var(--bottom-nav-height) + 24px);
  }

  body.page-provider-order-detail .pod-appbar {
    padding: 10px 0 8px;
  }

  body.page-provider-order-detail .pod-appbar-title {
    font-size: 34px;
  }

  body.page-provider-order-detail .pod-card {
    border: 1px solid rgba(103, 58, 183, 0.14);
    box-shadow: 0 8px 20px rgba(20, 18, 38, 0.06);
  }

  body.page-provider-order-detail .pod-attachment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  body.page-provider-order-detail #bottom-nav {
    display: flex !important;
  }

  body.page-provider-order-detail .pod-shell {
    max-width: 1240px;
    padding: 14px 28px 34px;
  }

  body.page-provider-order-detail #pod-detail {
    display: grid;
    grid-template-columns: minmax(320px, 380px) minmax(0, 1fr);
    grid-template-areas:
      "chip chip"
      "client info"
      "header attachments"
      "actions logs"
      "back back";
    align-items: start;
    column-gap: 18px;
    row-gap: 12px;
  }

  body.page-provider-order-detail #pod-detail > .pod-screen-chip {
    grid-area: chip;
    margin: 0;
  }

  body.page-provider-order-detail #pod-client-section {
    grid-area: client;
  }

  body.page-provider-order-detail #pod-order-info-section {
    grid-area: info;
  }

  body.page-provider-order-detail #pod-header-section {
    grid-area: header;
  }

  body.page-provider-order-detail #pod-attachments-section {
    grid-area: attachments;
  }

  body.page-provider-order-detail #pod-actions-section {
    grid-area: actions;
    position: sticky;
    top: 88px;
  }

  body.page-provider-order-detail #pod-logs-section {
    grid-area: logs;
  }

  body.page-provider-order-detail .pod-back-wrap {
    grid-area: back;
    margin-top: 0;
  }

  body.page-provider-order-detail #pod-loading,
  body.page-provider-order-detail #pod-error {
    max-width: 640px;
    margin-inline: auto;
  }

  body.page-provider-order-detail .pod-appbar-title {
    font-size: 40px;
  }

  body.page-provider-order-detail .pod-action-title {
    font-size: 15px;
  }

  body.page-provider-order-detail .pod-log-body {
    padding: 12px 14px;
  }
}

/* ══════════════════════════════════════════════
   Plans Page
   ══════════════════════════════════════════════ */
.plans-grid { display: grid; gap: 16px; }
@media (min-width: 600px) { .plans-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .plans-grid { grid-template-columns: repeat(3, 1fr); } }
.plan-card { border-radius: 18px; padding: 24px; color: #fff; position: relative; overflow: hidden; }
.plan-card h3 { margin: 0 0 8px; font-size: 20px; }
.plan-price { font-size: 28px; font-weight: 700; margin: 12px 0; }
.plan-price small { font-size: 14px; font-weight: 400; }
.plan-features { list-style: none; padding: 0; margin: 16px 0; }
.plan-features li { padding: 6px 0; font-size: 14px; display: flex; align-items: center; gap: 8px; }
.plan-features li::before { content: "✓"; font-weight: 700; }
.plan-subscribe { background: rgba(255,255,255,0.25); color: #fff; border: 2px solid rgba(255,255,255,0.5); padding: 12px 24px; border-radius: 12px; font-size: 16px; font-weight: 600; cursor: pointer; width: 100%; transition: 0.2s; }
.plan-subscribe:hover { background: rgba(255,255,255,0.4); }

body.page-plans .page-content {
  background:
    linear-gradient(180deg, #faf7ff 0%, #f5f0fb 38%, #f8f8fb 100%);
}

body.page-plans .page-shell {
  max-width: 1200px;
  padding: 16px 18px calc(var(--bottom-nav-height, 84px) + 18px);
}

body.page-plans #plans-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

body.page-plans .subs-compare-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

body.page-plans .subs-compare-head-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

body.page-plans .subs-compare-page-pill {
  display: none;
}

body.page-plans .subs-compare-user-pill {
  min-width: 0;
  min-height: 36px;
  padding: 6px 14px;
  border-radius: 10px;
  border: 1px solid #d9c4eb;
  background: #faf7ff;
  color: #3f2257;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

body.page-plans .subs-compare-head-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

body.page-plans .subs-compare-head-bottom h1 {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  color: #8b267f;
  line-height: 1.3;
}

body.page-plans .subs-compare-head-bottom p {
  margin: 0;
  max-width: 540px;
  color: #5f536d;
  line-height: 1.7;
  font-size: 13.5px;
}

body.page-plans #plans-state.empty-state {
  margin: 4px 0;
  padding: 20px 16px;
}

body.page-plans .subs-compare-stage {
  display: block;
}

body.page-plans .subs-compare-board {
  padding: 14px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(165, 129, 195, 0.18);
  box-shadow: 0 20px 40px rgba(97, 76, 132, 0.08);
}

body.page-plans .subs-compare-table-wrap {
  overflow-x: auto;
  overflow-y: hidden;
}

body.page-plans .subs-compare-table {
  width: 100%;
  min-width: 980px;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  direction: rtl;
}

body.page-plans .subs-compare-table thead th {
  padding: 0;
  vertical-align: stretch;
}

body.page-plans .subs-compare-feature-head {
  width: 27%;
  padding-inline: 18px;
  color: #3d2057;
  font-size: 16px;
  font-weight: 800;
  text-align: center;
  background: #fffdfd;
  border-bottom: 1px solid rgba(89, 58, 120, 0.16);
}

body.page-plans .subs-compare-plan-head-cell {
  width: 24.333%;
  border-inline-start: 1px solid rgba(89, 58, 120, 0.12);
}

body.page-plans .subs-plan-head {
  height: 100%;
  min-height: 104px;
  background: var(--subs-plan-shell);
  color: #fff;
}

body.page-plans .subs-plan-head-inner {
  display: flex;
  height: 100%;
  min-height: 104px;
  align-items: center;
  justify-content: center;
  padding: 18px 12px;
}

body.page-plans .subs-plan-title-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

body.page-plans .subs-plan-title {
  font-size: 21px;
  font-weight: 900;
  line-height: 1.2;
}

body.page-plans .plan-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  background: var(--subs-plan-badge, rgba(255,255,255,0.18));
  color: #fff6d8;
}

body.page-plans .subs-compare-table tbody th,
body.page-plans .subs-compare-table tbody td {
  padding: 12px 14px;
  text-align: center;
  border-bottom: 1px solid rgba(89, 58, 120, 0.16);
  vertical-align: middle;
}

body.page-plans .subs-compare-feature {
  background: #fffdfd;
  color: #231535;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
}

body.page-plans .subs-compare-value {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}

body.page-plans .subs-compare-table tbody tr td:nth-child(2) {
  background: linear-gradient(180deg, #b69bd7 0%, #c8b2e1 100%);
  color: #14356d;
}

body.page-plans .subs-compare-table tbody tr td:nth-child(3) {
  background: linear-gradient(180deg, #8f64be 0%, #a178cb 100%);
  color: #112456;
}

body.page-plans .subs-compare-table tbody tr td:nth-child(4) {
  background: linear-gradient(180deg, #6d2f9b 0%, #7f45af 100%);
  color: #fff;
}

body.page-plans .subs-actions-grid {
  display: grid;
  grid-template-columns: 27% repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 14px;
  align-items: start;
}

body.page-plans .subs-actions-grid-1 {
  grid-template-columns: 27% minmax(0, 1fr);
}

body.page-plans .subs-actions-grid-2 {
  grid-template-columns: 27% repeat(2, minmax(0, 1fr));
}

body.page-plans .subs-actions-spacer {
  min-height: 1px;
}

body.page-plans .subs-action-slot {
  display: flex;
  justify-content: center;
  padding: 0 10px;
}

body.page-plans .subs-plan-action {
  width: min(180px, 100%);
  min-height: 50px;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffc82b 0%, #f4aa00 100%);
  color: #3a2300;
  font-family: "Cairo", sans-serif;
  font-size: 17px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(244, 170, 0, 0.22);
}

body.page-plans .subs-plan-action.is-current,
body.page-plans .subs-plan-action.is-pending,
body.page-plans .subs-plan-action:disabled {
  background: linear-gradient(180deg, #e9ddf6 0%, #d7c6ee 100%);
  color: #6a5390;
  box-shadow: none;
  cursor: not-allowed;
}

body.page-plans .subs-compare-helper {
  margin: 16px 0 0;
  color: #8c2b8b;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

body.page-plans .plans-retry-btn {
  margin-top: 10px;
  min-width: 140px;
}

@media (max-width: 760px) {
  body.page-plans .page-shell {
    max-width: 100%;
    padding: 12px 10px calc(var(--bottom-nav-height, 84px) + 12px);
  }

  body.page-plans #plans-content {
    gap: 8px;
  }

  body.page-plans .subs-compare-head-top,
  body.page-plans .subs-compare-head-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  body.page-plans .subs-compare-page-pill,
  body.page-plans .subs-compare-user-pill {
    width: 100%;
  }

  body.page-plans .subs-compare-head-bottom h1 {
    font-size: 20px;
  }

  body.page-plans .subs-compare-board {
    padding: 10px;
    border-radius: 18px;
  }

  body.page-plans .subs-compare-table {
    min-width: 760px;
  }

  body.page-plans .subs-compare-feature-head {
    font-size: 14px;
  }

  body.page-plans .subs-plan-head,
  body.page-plans .subs-plan-head-inner {
    min-height: 84px;
  }

  body.page-plans .subs-plan-title {
    font-size: 18px;
  }

  body.page-plans .subs-compare-table tbody th,
  body.page-plans .subs-compare-table tbody td {
    padding: 10px 8px;
  }

  body.page-plans .subs-compare-feature,
  body.page-plans .subs-compare-value {
    font-size: 12px;
  }

  body.page-plans .subs-actions-grid {
    min-width: 760px;
  }

  body.page-plans .subs-plan-action {
    min-height: 44px;
    padding: 10px 14px;
    font-size: 14px;
  }
}

@media (max-width: 360px) {
  body.page-plans .page-shell {
    padding: 8px 10px calc(var(--bottom-nav-height, 84px) + 18px);
  }

  body.page-plans .subs-compare-page-pill {
    font-size: 15px;
    padding-inline: 14px;
  }

  body.page-plans .subs-compare-head-bottom h1 {
    font-size: 18px;
  }
}

@media (min-width: 761px) {
  body.page-plans .page-shell {
    max-width: 1220px;
    padding: 18px 18px calc(var(--bottom-nav-height, 84px) + 16px);
  }
}

/* ══════════════════════════════════════════════
   Plan Summary Page
   ══════════════════════════════════════════════ */
body.page-plan-summary .page-content {
  background: #f6f8fb;
}

body.page-plan-summary .page-shell {
  max-width: 760px;
  padding: 12px 12px calc(var(--bottom-nav-height, 84px) + 14px);
}

body.page-plan-summary #summary-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

body.page-plan-summary .page-header {
  margin: 4px 0 10px;
}

body.page-plan-summary .page-header h1 {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.4;
}

body.page-plan-summary #summary-empty.empty-state {
  margin: 4px 0;
  padding: 20px 16px;
}

body.page-plan-summary .plan-summary-layout {
  display: grid;
  gap: 16px;
}

body.page-plan-summary .ps-hero-card {
  background: linear-gradient(135deg, #0f4c5c, #2a9d8f);
  border-radius: 24px;
  padding: 20px;
  color: #fff;
  box-shadow: 0 12px 24px rgba(15, 76, 92, 0.14);
}

body.page-plan-summary .ps-hero-head {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
}

body.page-plan-summary .ps-hero-main {
  flex: 1;
  min-width: 0;
}

body.page-plan-summary .ps-hero-title {
  margin: 0;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.3;
}

body.page-plan-summary .ps-hero-description {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  font-size: 14px;
}

body.page-plan-summary .ps-price-chip {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.13);
  padding: 14px 16px;
  text-align: right;
}

body.page-plan-summary .ps-price-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.74);
}

body.page-plan-summary .ps-price-value {
  margin-top: 6px;
  font-size: 24px;
  font-weight: 800;
}

body.page-plan-summary .ps-price-cycle {
  margin-top: 4px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
}

body.page-plan-summary .ps-card {
  background: #fff;
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.07);
  border: 0;
}

body.page-plan-summary .ps-section-title {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
}

body.page-plan-summary .ps-details-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

body.page-plan-summary .ps-details-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
}

body.page-plan-summary .ps-details-row span {
  color: #64748b;
  font-size: 14px;
  flex: 1;
}

body.page-plan-summary .ps-details-row strong {
  color: #0f172a;
  font-weight: 700;
  font-size: 14px;
  text-align: left;
  flex: 1;
}

body.page-plan-summary .ps-details-row.ps-details-row-emphasis strong {
  color: #0f766e;
}

body.page-plan-summary .ps-features-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

body.page-plan-summary .ps-feature-item {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  padding: 6px 0;
  color: #1e293b;
  line-height: 1.7;
}

body.page-plan-summary .ps-feature-bullet {
  color: #0f766e;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

body.page-plan-summary .ps-compare-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
}

body.page-plan-summary .ps-compare-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
}

body.page-plan-summary .ps-compare-label {
  color: #64748b;
  font-size: 14px;
  flex: 1;
}

body.page-plan-summary .ps-compare-value {
  color: #0f172a;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  flex: 1;
}

body.page-plan-summary .ps-tax-panel {
  padding: 16px;
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

body.page-plan-summary .ps-tax-title {
  display: block;
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
}

body.page-plan-summary .ps-tax-text {
  margin: 0;
  color: #475569;
  line-height: 1.8;
  font-size: 14px;
}

body.page-plan-summary .ps-action-row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

body.page-plan-summary .ps-submit-btn {
  width: 100%;
  min-height: 50px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 700;
}

body.page-plan-summary .ps-btn-spinner {
  display: inline-block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #fff;
  animation: ps-btn-spin .8s linear infinite;
}

@keyframes ps-btn-spin {
  to { transform: rotate(360deg); }
}

body.page-plan-summary .ps-result-dialog-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(15, 23, 42, 0.42);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

body.page-plan-summary .ps-result-dialog {
  width: min(100%, 360px);
  background: #fff;
  border-radius: 18px;
  padding: 18px 16px;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.22);
}

body.page-plan-summary .ps-result-dialog h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
}

body.page-plan-summary .ps-result-dialog p {
  margin: 10px 0 0;
  color: #334155;
  line-height: 1.8;
  font-size: 14px;
}

body.page-plan-summary .ps-result-dialog .btn {
  width: 100%;
  margin-top: 14px;
}

body.page-plan-summary .ps-toast {
  position: fixed;
  left: 50%;
  bottom: calc(var(--bottom-nav-height, 68px) + env(safe-area-inset-bottom, 0px) + 18px);
  transform: translate(-50%, 14px);
  min-width: 240px;
  max-width: min(92vw, 420px);
  padding: 10px 14px;
  border-radius: 12px;
  background: #0f172a;
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  z-index: 1250;
  transition: opacity .18s ease, transform .18s ease;
}

body.page-plan-summary .ps-toast.error {
  background: #b91c1c;
}

body.page-plan-summary .ps-toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 760px) {
  body.page-plan-summary .page-shell {
    max-width: 560px;
    padding: 10px 10px calc(var(--bottom-nav-height, 84px) + 12px);
  }

  body.page-plan-summary .page-header h1 {
    font-size: 18px;
    line-height: 1.35;
  }

  body.page-plan-summary .ps-hero-card {
    border-radius: 22px;
    padding: 16px;
  }

  body.page-plan-summary .ps-hero-title {
    font-size: 24px;
  }

  body.page-plan-summary .ps-hero-description {
    font-size: 13px;
  }

  body.page-plan-summary .ps-price-value {
    font-size: 22px;
  }

  body.page-plan-summary .ps-card {
    border-radius: 20px;
    padding: 16px;
  }

  body.page-plan-summary .ps-section-title {
    font-size: 17px;
  }

  body.page-plan-summary .ps-details-row span,
  body.page-plan-summary .ps-details-row strong,
  body.page-plan-summary .ps-compare-label,
  body.page-plan-summary .ps-compare-value,
  body.page-plan-summary .ps-tax-text {
    font-size: 13px;
  }

  body.page-plan-summary .ps-tax-title {
    font-size: 15px;
  }

  body.page-plan-summary .ps-submit-btn {
    min-height: 46px;
    border-radius: 14px;
    font-size: 14px;
  }
}

@media (min-width: 761px) {
  body.page-plan-summary .page-shell {
    max-width: 780px;
    padding: 14px 12px calc(var(--bottom-nav-height, 84px) + 14px);
  }

  body.page-plan-summary .page-header {
    margin: 6px 0 12px;
  }

  body.page-plan-summary .page-header h1 {
    font-size: 20px;
  }
}

@media (max-width: 360px) {
  body.page-plan-summary .ps-hero-card,
  body.page-plan-summary .ps-card {
    border-radius: 18px;
    padding: 14px;
  }

  body.page-plan-summary .ps-hero-title {
    font-size: 22px;
  }

  body.page-plan-summary .ps-section-title {
    font-size: 16px;
  }

  body.page-plan-summary .ps-tax-panel {
    padding: 14px;
  }

  body.page-plan-summary .ps-submit-btn {
    min-height: 44px;
  }
}

body.page-plan-summary .page-content {
  background:
    linear-gradient(180deg, #fffdf8 0%, #fffefa 38%, #fff9ec 100%);
}

body.page-plan-summary .subsum-page-shell {
  max-width: 620px;
  padding: 18px 14px calc(var(--bottom-nav-height, 84px) + 20px);
}

body.page-plan-summary .subsum-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

body.page-plan-summary .subsum-loading {
  gap: 10px;
}

body.page-plan-summary .subsum-shell {
  border: 2px solid #c026d3;
  background: #ffffff;
  padding: 18px 12px 20px;
  display: grid;
  gap: 14px;
  box-shadow: 0 16px 36px rgba(192, 38, 211, 0.08);
}

body.page-plan-summary .subsum-header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

body.page-plan-summary .subsum-back {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border: 1px solid #e9d5ff;
  background: #fff;
  color: #7e22ce;
  border-radius: 999px;
}

body.page-plan-summary .subsum-title-pill {
  background: #fbbf24;
  color: #111827;
  font-size: 20px;
  font-weight: 800;
  padding: 10px 24px;
  text-align: center;
}

body.page-plan-summary .subsum-user-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #4b5563;
  font-size: 16px;
}

body.page-plan-summary .subsum-user-label {
  font-weight: 700;
}

body.page-plan-summary .subsum-user-handle {
  color: #1f2937;
  border: 2px solid #c026d3;
  padding: 2px 10px;
  min-width: 140px;
  text-align: center;
}

body.page-plan-summary .subsum-panel {
  border: 2px solid #c026d3;
  padding: 14px 10px 18px;
  display: grid;
  gap: 14px;
}

body.page-plan-summary .subsum-panel-copy {
  margin: 0;
  text-align: center;
  font-size: 18px;
  line-height: 1.7;
  color: #111827;
}

body.page-plan-summary .subsum-table-wrap {
  overflow-x: auto;
}

body.page-plan-summary .subsum-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

body.page-plan-summary .subsum-table th,
body.page-plan-summary .subsum-table td {
  border: 2px solid #c026d3;
  text-align: center;
  padding: 12px 8px;
  font-size: 18px;
  color: #111827;
}

body.page-plan-summary .subsum-table th {
  background: #a21caf;
  color: #fff;
  font-weight: 800;
}

body.page-plan-summary .subsum-duration-field {
  display: flex;
  align-items: center;
  justify-content: center;
}

body.page-plan-summary .subsum-duration-field input {
  width: 86px;
  border: 2px solid #facc15;
  background: #fffef0;
  text-align: center;
  font-size: 20px;
  font-weight: 800;
  color: #111827;
  padding: 6px 4px;
}

body.page-plan-summary .subsum-total-card {
  width: min(100%, 290px);
  margin-inline-start: auto;
  border: 2px solid #c026d3;
}

body.page-plan-summary .subsum-total-row {
  display: grid;
  grid-template-columns: 1fr 140px;
}

body.page-plan-summary .subsum-total-row span,
body.page-plan-summary .subsum-total-row strong {
  border-bottom: 2px solid #c026d3;
  border-left: 2px solid #c026d3;
  padding: 12px 10px;
  font-size: 18px;
  color: #111827;
}

body.page-plan-summary .subsum-total-row span {
  font-weight: 700;
}

body.page-plan-summary .subsum-total-row strong {
  text-align: center;
  font-weight: 500;
}

body.page-plan-summary .subsum-total-row.is-grand span,
body.page-plan-summary .subsum-total-row.is-grand strong {
  border-bottom: 0;
  background: #fff7ed;
  font-weight: 800;
}

body.page-plan-summary .subsum-hint {
  border: 1px solid #f5d0fe;
  background: #fdf4ff;
  color: #86198f;
  padding: 10px 12px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
}

body.page-plan-summary .subsum-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding-top: 100px;
}

body.page-plan-summary .subsum-btn {
  min-width: 136px;
  border: 0;
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: 800;
}

body.page-plan-summary .subsum-btn-primary,
body.page-subscription-payment .subpay-result-close {
  background: #fbbf24;
  color: #111827;
}

body.page-plan-summary .subsum-btn-secondary {
  background: #fbbf24;
  color: #111827;
}

body.page-plan-summary .subsum-btn:disabled {
  opacity: .55;
}

body.page-plan-summary .subsum-toast {
  position: fixed;
  left: 50%;
  bottom: calc(var(--bottom-nav-height, 68px) + env(safe-area-inset-bottom, 0px) + 18px);
  transform: translate(-50%, 12px);
  background: #111827;
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  opacity: 0;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 1250;
  font-weight: 700;
}

body.page-plan-summary .subsum-toast.error {
  background: #b91c1c;
}

body.page-plan-summary .subsum-toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

body.page-plan-summary .subpay-result-backdrop,
body.page-subscription-payment .subpay-result-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, 0.42);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 1300;
}

body.page-plan-summary .subpay-result-dialog,
body.page-subscription-payment .subpay-result-dialog {
  width: min(100%, 340px);
  background: #fff;
  border: 2px solid #c026d3;
  padding: 14px 16px 16px;
  display: grid;
  gap: 12px;
  text-align: center;
}

body.page-plan-summary .subpay-result-code,
body.page-subscription-payment .subpay-result-code {
  background: #fbbf24;
  padding: 10px 12px;
  font-weight: 800;
  color: #111827;
  font-size: 20px;
}

body.page-plan-summary .subpay-result-body,
body.page-subscription-payment .subpay-result-body {
  border: 2px solid #15803d;
  padding: 14px 10px;
  color: #111827;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

body.page-plan-summary .subpay-result-body p,
body.page-subscription-payment .subpay-result-body p {
  margin: 0;
}

body.page-plan-summary .subpay-result-close,
body.page-subscription-payment .subpay-result-close {
  border: 0;
  border-radius: 999px;
  min-width: 120px;
  justify-self: center;
  padding: 10px 22px;
  font-size: 18px;
  font-weight: 800;
}

@media (max-width: 640px) {
  body.page-plan-summary .subsum-title-pill {
    font-size: 17px;
    padding: 10px 16px;
  }

  body.page-plan-summary .subsum-user-row,
  body.page-plan-summary .subsum-panel-copy,
  body.page-plan-summary .subsum-table th,
  body.page-plan-summary .subsum-table td,
  body.page-plan-summary .subsum-total-row span,
  body.page-plan-summary .subsum-total-row strong,
  body.page-plan-summary .subsum-btn,
  body.page-plan-summary .subpay-result-body,
  body.page-plan-summary .subpay-result-code,
  body.page-plan-summary .subpay-result-close,
  body.page-subscription-payment .subpay-result-body,
  body.page-subscription-payment .subpay-result-code,
  body.page-subscription-payment .subpay-result-close {
    font-size: 15px;
  }

  body.page-plan-summary .subsum-actions {
    padding-top: 32px;
    flex-direction: column-reverse;
    align-items: stretch;
  }

  body.page-plan-summary .subsum-btn {
    width: 100%;
  }

  body.page-plan-summary .subsum-total-card {
    width: 100%;
  }

  body.page-plan-summary .subsum-total-row {
    grid-template-columns: 1fr 110px;
  }
}

/* ══════════════════════════════════════════════
   Verification Wizard
   ══════════════════════════════════════════════ */
.wizard-steps { display: flex; gap: 10px; margin: 0 0 18px; }
.wizard-progress { display: flex; align-items: center; gap: 0; margin-bottom: 24px; padding: 0 8px; }
.wizard-step { display: flex; flex-direction: column; align-items: center; gap: 4px; flex: 0 0 auto; }
.wizard-steps .wizard-step { flex: 1; background: #fff; border: 1px solid #ece7f6; border-radius: 16px; padding: 12px 10px; }
.step-num { width: 32px; height: 32px; border-radius: 50%; background: #e0e0e0; color: #999; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; transition: 0.3s; }
.wizard-step.active .step-num { background: var(--color-primary, #663D90); color: #fff; }
.wizard-step.done .step-num { background: #4CAF50; color: #fff; }
.step-label { font-size: 11px; color: #999; white-space: nowrap; }
.wizard-step.active .step-label { color: var(--color-primary, #663D90); font-weight: 600; }
.wizard-line { flex: 1; height: 2px; background: #e0e0e0; }
.wizard-panel { display: none; }
.wizard-panel.active { display: block; }
body.page-provider-register .page-content {
  background:
    radial-gradient(circle at 95% 0%, rgba(84, 41, 160, 0.13), transparent 34%),
    radial-gradient(circle at 6% 20%, rgba(0, 163, 196, 0.1), transparent 28%),
    radial-gradient(circle at 50% 100%, rgba(249, 115, 22, 0.08), transparent 34%),
    var(--color-bg);
}

body.page-provider-register .page-shell {
  max-width: 760px;
  padding: 12px 12px calc(var(--bottom-nav-height, 84px) + 22px);
}

body.page-provider-register .provider-reg-header {
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

body.page-provider-register .provider-reg-header-copy {
  display: grid;
  gap: 2px;
}

body.page-provider-register .provider-reg-header h1 {
  margin: 0;
  color: #1e1941;
  font-size: clamp(25px, 6vw, 34px);
  font-weight: 900;
  letter-spacing: -0.01em;
}

body.page-provider-register .provider-reg-header p {
  margin: 0;
  color: #615d78;
  font-size: 13px;
  font-weight: 700;
}

body.page-provider-register .reg-back {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(77, 41, 151, 0.18);
  background: rgba(255, 255, 255, 0.78);
  color: #3f2a79;
  box-shadow: 0 8px 22px rgba(36, 22, 70, 0.12);
}

body.page-provider-register .reg-back:hover {
  color: #fff;
  background: linear-gradient(135deg, #4d2997, #743eb8);
}

body.page-provider-register .provider-reg-progress {
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: 22px;
  border: 1px solid rgba(93, 52, 177, 0.16);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.95), rgba(247, 243, 255, 0.92));
  box-shadow: 0 14px 30px rgba(32, 20, 65, 0.08);
}

body.page-provider-register .wizard-step {
  gap: 6px;
}

body.page-provider-register .step-num {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(108, 78, 171, 0.24);
  background: #f7f4ff;
  color: #7a6a9e;
  font-size: 14px;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

body.page-provider-register .wizard-step.active .step-num {
  background: linear-gradient(135deg, #512c9f, #7c4ad2);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 14px 30px rgba(81, 44, 159, 0.34);
}

body.page-provider-register .wizard-step.done .step-num {
  background: linear-gradient(135deg, #149057, #26b26e);
  color: #fff;
  border-color: transparent;
}

body.page-provider-register .step-label {
  color: #7a748f;
  font-size: 11px;
  font-weight: 800;
}

body.page-provider-register .wizard-step.active .step-label {
  color: #38206f;
}

body.page-provider-register .wizard-line {
  height: 3px;
  border-radius: 999px;
  background: rgba(122, 106, 158, 0.24);
}

body.page-provider-register .wizard-step.done + .wizard-line {
  background: linear-gradient(90deg, #1ca164, #56c08b);
}

body.page-provider-register .wizard-panel {
  display: none;
}

body.page-provider-register .wizard-panel.active {
  display: block;
  animation: providerRegPanelIn .28s ease;
}

@keyframes providerRegPanelIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body.page-provider-register .reg-step-card {
  border-radius: 24px;
  border: 1px solid rgba(93, 52, 177, 0.16);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(246, 242, 255, 0.95)),
    radial-gradient(circle at top right, rgba(105, 65, 198, 0.11), transparent 40%);
  box-shadow: 0 20px 40px rgba(30, 18, 58, 0.1);
  padding: 18px 16px;
}

body.page-provider-register .wizard-panel-head {
  margin-bottom: 10px;
}

body.page-provider-register .wizard-panel-head h2 {
  margin: 0;
  color: #1f1a45;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

body.page-provider-register .form-group {
  margin-bottom: 13px;
}

body.page-provider-register .form-label {
  margin-bottom: 7px;
  color: #332e4f;
  font-size: 13px;
  font-weight: 800;
}

body.page-provider-register .form-input,
body.page-provider-register .form-select {
  min-height: 50px;
  border-radius: 14px;
  border-width: 1px;
  border-color: rgba(113, 99, 149, 0.25);
  padding-inline: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-weight: 700;
  color: #1e1a37;
}

body.page-provider-register textarea.form-input {
  min-height: 118px;
  line-height: 1.75;
  resize: vertical;
}

body.page-provider-register .form-input::placeholder {
  color: #9089a8;
  font-weight: 600;
}

body.page-provider-register .form-input:focus,
body.page-provider-register .form-select:focus {
  border-color: rgba(85, 43, 168, 0.52);
  box-shadow: 0 0 0 4px rgba(90, 45, 177, 0.12), 0 12px 24px rgba(39, 25, 74, 0.12);
}

body.page-provider-register #reg-type-chips {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

body.page-provider-register #reg-type-chips .chip {
  justify-content: center;
  min-height: 46px;
  border-radius: 14px;
  border-width: 1px;
  border-color: rgba(113, 99, 149, 0.24);
  background: rgba(255, 255, 255, 0.88);
  color: #4d4567;
  font-weight: 800;
}

body.page-provider-register #reg-type-chips .chip:hover {
  border-color: rgba(85, 43, 168, 0.5);
  color: #3a246f;
}

body.page-provider-register #reg-type-chips .chip.active {
  background: linear-gradient(135deg, #532ea6, #7a4cd1);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 14px 28px rgba(83, 46, 166, 0.34);
}

body.page-provider-register .category-suggest-box {
  border: 1px dashed rgba(92, 55, 174, 0.32);
  border-radius: 16px;
  padding: 12px;
  background: linear-gradient(180deg, rgba(111, 66, 193, 0.07), rgba(111, 66, 193, 0.03));
}

body.page-provider-register .category-suggest-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: right;
  padding: 0;
  border: 0;
  background: transparent;
  color: #35226b;
  cursor: pointer;
}

body.page-provider-register .category-suggest-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, #6f42c1 0%, #5b36ab 100%);
  box-shadow: 0 10px 20px rgba(91, 54, 171, 0.25);
  flex-shrink: 0;
}

body.page-provider-register .category-suggest-copy {
  display: grid;
  gap: 1px;
}

body.page-provider-register .category-suggest-copy strong {
  font-size: 14px;
  color: #2d1d60;
}

body.page-provider-register .category-suggest-copy small {
  font-size: 12px;
  color: #5f5a73;
  line-height: 1.65;
}

body.page-provider-register .category-suggest-form {
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(91, 54, 171, 0.18);
}

body.page-provider-register .reg-actions,
body.page-provider-register .category-suggest-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 6px;
}

body.page-provider-register .btn-split {
  width: 100%;
  min-height: 48px;
}

body.page-provider-register .btn-outline {
  border-color: rgba(85, 43, 168, 0.34);
  color: #4d2d92;
}

body.page-provider-register .btn-outline:hover {
  background: rgba(83, 46, 166, 0.08);
  border-color: rgba(83, 46, 166, 0.46);
}

body.page-provider-register .reg-main-btn,
body.page-provider-register .btn-primary {
  min-height: 50px;
  border-radius: 14px;
}

body.page-provider-register .btn-primary {
  background: linear-gradient(135deg, #512ca0, #7c4ad2);
  box-shadow: 0 14px 28px rgba(81, 44, 159, 0.25);
}

body.page-provider-register .btn-primary:hover {
  background: linear-gradient(135deg, #432586, #6b3ac1);
  box-shadow: 0 18px 32px rgba(67, 37, 134, 0.33);
}

body.page-provider-register #reg-suggest-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

body.page-provider-register #reg-suggest-submit-spinner.spinner {
  width: 16px;
  height: 16px;
  border-width: 2px;
  border-color: rgba(255, 255, 255, 0.34);
  border-top-color: #fff;
}

body.page-provider-register .reg-success-card {
  max-width: 760px;
  margin: 0 auto;
  border-radius: 24px;
  border: 1px solid rgba(68, 174, 115, 0.25);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(236, 252, 245, 0.95)),
    radial-gradient(circle at top right, rgba(37, 201, 128, 0.16), transparent 46%);
  box-shadow: 0 22px 42px rgba(21, 66, 46, 0.14);
}

body.page-provider-register .reg-success-card h2 {
  margin: 0 0 8px;
  color: #19402e;
  font-size: clamp(23px, 3vw, 30px);
  font-weight: 900;
}

body.page-provider-register .reg-success-card p {
  margin: 0 0 20px;
  color: #2e5343;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
}

body.page-provider-register .reg-success-card .success-icon {
  background: linear-gradient(135deg, #16a262, #22c379);
  color: #fff;
  box-shadow: 0 16px 30px rgba(21, 162, 98, 0.32);
  font-size: 30px;
  font-weight: 900;
}

body.page-provider-register .reg-success-card .btn {
  min-height: 50px;
  border-radius: 14px;
}

body.page-provider-register .reg-toast {
  position: fixed;
  left: 50%;
  bottom: calc(var(--bottom-nav-height, 68px) + env(safe-area-inset-bottom, 0px) + 16px);
  transform: translateX(-50%) translateY(14px);
  min-width: min(320px, calc(100vw - 28px));
  max-width: min(480px, calc(100vw - 28px));
  padding: 13px 16px;
  border-radius: 14px;
  background: #2e2650;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.7;
  box-shadow: 0 16px 40px rgba(20, 14, 38, 0.28);
  opacity: 0;
  pointer-events: none;
  z-index: 1100;
  transition: opacity .18s ease, transform .18s ease;
}

body.page-provider-register .reg-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

body.page-provider-register .reg-toast.success {
  background: #0f8b54;
}

body.page-provider-register .reg-toast.warning {
  background: #9a5b00;
}

body.page-provider-register .reg-toast.error {
  background: #b42318;
}

@media (max-width: 420px) {
  body.page-provider-register .provider-reg-progress {
    padding-inline: 10px;
  }

  body.page-provider-register .step-label {
    font-size: 10px;
  }

  body.page-provider-register .reg-actions,
  body.page-provider-register .category-suggest-actions {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) {
  body.page-provider-register .page-shell {
    max-width: min(1300px, calc(100vw - 64px));
    padding: 20px 26px var(--space-2xl);
  }

  body.page-provider-register .provider-reg-header {
    margin-bottom: 20px;
  }

  body.page-provider-register .provider-reg-progress {
    max-width: 1040px;
    margin: 0 auto 22px;
    padding: 14px 18px;
  }

  body.page-provider-register .wizard-panel[data-panel="1"] .reg-step-card,
  body.page-provider-register .wizard-panel[data-panel="2"] .reg-step-card,
  body.page-provider-register .wizard-panel[data-panel="3"] .reg-step-card {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 20px;
    align-items: end;
    padding: 22px 24px;
  }

  body.page-provider-register .wizard-panel .reg-step-card .form-group {
    margin-bottom: 0;
  }

  body.page-provider-register .wizard-panel .reg-step-card .wizard-panel-head,
  body.page-provider-register .wizard-panel .reg-step-card .form-group-wide,
  body.page-provider-register .wizard-panel .reg-step-card .form-row,
  body.page-provider-register .wizard-panel .reg-step-card > .btn {
    grid-column: 1 / -1;
  }

  body.page-provider-register .wizard-panel[data-panel="2"] .reg-step-card .category-suggest-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 16px;
    align-items: end;
  }

  body.page-provider-register .wizard-panel[data-panel="2"] .reg-step-card .category-suggest-form .form-group {
    margin-bottom: 0;
  }

  body.page-provider-register .wizard-panel[data-panel="2"] .reg-step-card .category-suggest-form .form-group-wide,
  body.page-provider-register .wizard-panel[data-panel="2"] .reg-step-card .category-suggest-form .form-row {
    grid-column: 1 / -1;
  }

  body.page-provider-register .wizard-panel[data-panel="success"] .reg-success-card {
    max-width: 940px;
  }
}

.badge-option { background: #fff; border: 2px solid #e0e0e0; border-radius: 16px; padding: 20px; margin-bottom: 12px; cursor: pointer; transition: 0.2s; }
.badge-option.selected { border-color: var(--color-primary, #663D90); background: #F9F5FF; }
.badge-option h3 { margin: 0 0 4px; font-size: 16px; }
.badge-option p { margin: 0; font-size: 13px; color: #666; }

.req-list { list-style: none; padding: 0; }
.req-list li { padding: 10px 0; border-bottom: 1px solid #f0f0f0; display: flex; align-items: center; gap: 8px; font-size: 14px; }
.req-list li::before { content: "•"; color: var(--color-primary, #663D90); font-size: 20px; }
.verify-step h2 { margin: 0 0 14px; font-size: 20px; font-weight: 800; color: #1f1b2f; }
.req-item { display: flex; align-items: flex-start; gap: 10px; padding: 12px 14px; margin-bottom: 10px; background: #fff; border: 1px solid #ece7f6; border-radius: 16px; font-size: 14px; line-height: 1.6; color: #2d2a3d; }
.req-num { display: inline-flex; align-items: center; justify-content: center; min-width: 24px; height: 24px; border-radius: 999px; background: rgba(102, 61, 144, 0.12); color: var(--color-primary, #663D90); font-size: 12px; font-weight: 800; }
.file-chip { display: inline-flex; align-items: center; gap: 6px; padding: 7px 10px; margin: 6px 6px 0 0; border-radius: 999px; background: rgba(102, 61, 144, 0.08); color: #4b3663; font-size: 12px; font-weight: 600; }
.payment-summary { background: #fff; border: 1px solid #ece7f6; border-radius: 18px; padding: 14px 16px; margin-bottom: 12px; }
.summary-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px solid #f0ecf8; font-size: 14px; }
.summary-row:last-child { border-bottom: 0; }
.summary-row span { color: #6c6680; }
.summary-row strong { color: #1f1b2f; font-weight: 800; }

/* ══════════════════════════════════════════════
   Service Detail
   ══════════════════════════════════════════════ */
.sd-provider-row {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
  transition: transform 0.16s ease, opacity 0.16s ease;
}
.sd-provider-avatar {
  position: relative;
  width: 48px;
  height: 48px;
  box-sizing: border-box;
  padding: 3px;
  border-radius: 50%;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--nw-avatar-ring-gradient);
  box-shadow: var(--nw-avatar-ring-shadow);
}
.sd-provider-avatar-media {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--nw-avatar-inner-bg);
}
.sd-provider-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.avatar-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--color-primary, #663D90); font-size: 22px; font-weight: 700; }
.sd-stats-row { display: flex; gap: 16px; margin: 8px 0; }
.sd-stat { display: flex; align-items: center; gap: 4px; font-size: 14px; color: #666; }
.sd-description { margin: 12px 0; font-size: 14px; line-height: 1.7; color: #444; }
.sd-price { font-size: 22px; font-weight: 700; color: var(--color-primary, #663D90); }

.sd-slider { position: relative; border-radius: 16px; overflow: hidden; margin-bottom: 16px; }
.sd-slider-track { display: flex; transition: transform 0.3s; }
.sd-slide { flex: 0 0 100%; }
.sd-slide img { width: 100%; height: 260px; object-fit: cover; }
.sd-slider-thumbs { display: flex; gap: 6px; padding: 8px; overflow-x: auto; }
.sd-thumb { width: 56px; height: 56px; border-radius: 8px; overflow: hidden; border: 2px solid transparent; cursor: pointer; flex-shrink: 0; }
.sd-thumb.active { border-color: var(--color-primary, #663D90); }
.sd-thumb img { width: 100%; height: 100%; object-fit: cover; }

.sd-actions { display: flex; flex-direction: column; gap: 10px; margin: 16px 0; }
.sd-provider-row:hover { transform: translateY(-1px); }
.sd-provider-row.is-disabled,
.sd-actions .is-disabled {
  pointer-events: none;
  opacity: 0.55;
}
.sd-provider {
  border: 1px solid rgba(103, 58, 183, 0.08);
  background:
    radial-gradient(circle at top right, rgba(103, 58, 183, 0.08), transparent 42%),
    #fff;
}
.sd-provider-avatar {
  box-shadow: var(--nw-avatar-ring-shadow);
}
.sd-description {
  color: #3f3a53;
}
.sd-price {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(103, 58, 183, 0.08);
}
.sd-actions .btn {
  min-height: 48px;
  border-radius: 14px;
  font-weight: 800;
}
.sd-actions .btn:hover {
  transform: translateY(-1px);
}
.sd-comments-section h3 {
  margin-bottom: 8px;
  font-size: 17px;
}
.sd-comment { padding: 12px 0; border-bottom: 1px solid #f0f0f0; }
.sd-comment strong { font-size: 14px; }
.sd-comment p { margin: 4px 0; font-size: 13px; color: #444; }

/* ══════════════════════════════════════════════
   Service Request Form
   ══════════════════════════════════════════════ */
.chip-group { display: flex; gap: 8px; flex-wrap: wrap; }
.attach-btns { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.attach-btns label { cursor: pointer; display: flex; align-items: center; gap: 6px; }
.attachments-preview { display: flex; gap: 8px; flex-wrap: wrap; }
.attach-item { position: relative; border-radius: 8px; overflow: hidden; }
.attach-item img { width: 80px; height: 80px; object-fit: cover; }
.attach-item.file-item { display: flex; align-items: center; gap: 8px; padding: 8px 12px; background: #F9F5FF; border-radius: 8px; }
.attach-item.file-item span { font-size: 13px; max-width: 150px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.attach-remove { position: absolute; top: 2px; right: 2px; width: 22px; height: 22px; border-radius: 50%; background: rgba(244,67,54,0.85); color: #fff; border: none; cursor: pointer; font-size: 14px; line-height: 22px; text-align: center; }
.file-item .attach-remove { position: static; background: none; color: #F44336; }

/* ══════════════════════════════════════════════
   Provider Services CRUD
   ══════════════════════════════════════════════ */
.services-list { display: flex; flex-direction: column; gap: 12px; }
.service-card { background: #fff; border-radius: 14px; padding: 16px; box-shadow: 0 2px 6px rgba(0,0,0,0.05); }
.svc-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.svc-header h3 { margin: 0; font-size: 16px; }
.svc-cat { font-size: 13px; color: #999; margin: 0 0 6px; }
.svc-desc { font-size: 13px; color: #666; margin: 0 0 10px; }
.svc-footer { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.svc-price { font-weight: 700; color: var(--color-primary, #663D90); }
.svc-price-type { font-size: 12px; color: #999; }
.svc-actions { display: flex; gap: 8px; }

.btn-add { background: var(--color-primary, #663D90); color: #fff; border: none; border-radius: 50%; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.btn-add:hover { background: #552E7A; }

body.page-provider-services .page-content {
  background:
    radial-gradient(circle at 94% 0%, rgba(103, 58, 183, 0.12), transparent 34%),
    radial-gradient(circle at 8% 18%, rgba(33, 150, 243, 0.08), transparent 28%),
    var(--color-bg);
}

body.page-provider-services .page-shell {
  max-width: 680px;
  padding: 12px 14px calc(var(--bottom-nav-height, 84px) + 24px);
}

body.page-provider-services .ps-intro-card {
  margin-bottom: 14px;
  border: 1px solid rgba(103, 58, 183, 0.14);
  border-radius: 22px;
  padding: 18px 18px 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(246, 243, 255, 0.92)),
    radial-gradient(circle at 100% 0%, rgba(103, 58, 183, 0.12), transparent 42%);
  box-shadow: 0 14px 30px rgba(35, 22, 71, 0.08);
}

body.page-provider-services .ps-intro-kicker {
  margin: 0 0 8px;
  color: #7b4fd3;
  font-size: 12px;
  font-weight: 900;
}

body.page-provider-services .ps-intro-card h2 {
  margin: 0;
  color: #231a42;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.45;
}

body.page-provider-services .ps-intro-card p:last-child {
  margin: 10px 0 0;
  color: #5d5874;
  line-height: 1.8;
  font-size: 14px;
}

body.page-provider-services .page-header {
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  align-items: center;
  gap: 8px;
  margin: 6px 0 12px;
}

body.page-provider-services .page-header h1 {
  text-align: center;
  font-size: 40px;
  font-weight: 900;
}

body.page-provider-services .btn-add {
  margin-inline-start: auto;
}

body.page-provider-services .service-card {
  border: 1px solid rgba(103, 58, 183, 0.14);
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(20, 18, 38, 0.06);
}

body.page-provider-services .svc-header h3 {
  font-size: 18px;
  font-weight: 900;
  color: #221c3c;
}

body.page-provider-services .svc-cat {
  color: #6f6a86;
  font-weight: 700;
}

body.page-provider-services .svc-desc {
  color: #59556f;
  line-height: 1.6;
}

body.page-provider-services .svc-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 4px;
}

body.page-provider-services .svc-urgent-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(198, 40, 40, 0.1);
  color: #b42318;
  font-size: 12px;
  font-weight: 900;
}

body.page-provider-services .svc-urgent-badge.is-muted {
  background: rgba(15, 23, 42, 0.06);
  color: #6b7280;
}

body.page-provider-services .svc-urgent-group {
  margin-top: 4px;
}

body.page-provider-services .svc-urgent-toggle {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 14px 12px;
  border: 1px solid rgba(103, 58, 183, 0.16);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(250, 247, 255, 0.96), rgba(255, 255, 255, 0.96));
  cursor: pointer;
}

body.page-provider-services .svc-urgent-toggle input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: #7b4fd3;
}

body.page-provider-services .svc-urgent-copy {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

body.page-provider-services .svc-urgent-copy strong {
  color: #241b43;
  font-size: 14px;
  font-weight: 900;
}

body.page-provider-services .svc-urgent-copy small {
  color: #6b6582;
  font-size: 12px;
  line-height: 1.7;
}

body.page-provider-services .svc-readonly {
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(33, 150, 243, 0.1);
  color: #1565c0;
  font-size: 12px;
  font-weight: 800;
}

@media (max-width: 760px) {
  body.page-provider-services .page-shell {
    padding: 10px 12px calc(var(--bottom-nav-height, 84px) + 20px);
  }

  body.page-provider-services .page-header h1 {
    font-size: 20px;
  }

  body.page-provider-services .ps-intro-card h2 {
    font-size: 18px;
  }
}

@media (min-width: 761px) {
  body.page-provider-services .page-shell {
    max-width: 1060px;
    padding: 18px 22px calc(var(--bottom-nav-height, 84px) + 24px);
  }

  body.page-provider-services .page-header {
    margin: 8px 0 14px;
  }

  body.page-provider-services .page-header h1 {
    font-size: 34px;
  }

  body.page-provider-services .services-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  body.page-provider-services .service-card {
    margin-bottom: 0;
    height: 100%;
  }
}

@media (min-width: 1024px) {
  body.page-provider-services #bottom-nav {
    display: flex !important;
  }

  body.page-provider-services .page-shell {
    max-width: 1240px;
    padding: 24px 28px 34px;
  }

  body.page-provider-services .services-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  body.page-provider-services .modal-overlay {
    align-items: center;
    padding: 20px;
  }

  body.page-provider-services .modal-sheet {
    max-width: 760px;
    max-height: calc(100vh - 40px);
    border-radius: 20px;
  }
}

/* ══════════════════════════════════════════════
   Provider Reviews
   ══════════════════════════════════════════════ */
.rv-summary { text-align: center; }
.rv-overall { margin-bottom: 16px; }
.rv-score { font-size: 48px; font-weight: 700; color: var(--color-primary, #663D90); display: block; }
.rv-stars { display: flex; justify-content: center; gap: 2px; margin: 4px 0; }
.star { font-size: 20px; }
.star.full, .star.half { color: #FFC107; }
.star.empty { color: #ddd; }
.rv-count { font-size: 14px; color: #999; }
.rv-breakdown { text-align: right; }
.rv-bar-row { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; font-size: 13px; }
.rv-bar-row span:first-child { width: 120px; text-align: right; color: #666; }
.rv-bar-row span:last-child { width: 30px; text-align: left; color: #333; font-weight: 600; }
.rv-bar { flex: 1; height: 6px; background: #eee; border-radius: 3px; overflow: hidden; }
.rv-bar-fill { height: 100%; background: #FFC107; border-radius: 3px; }

.rv-sort { margin-bottom: 16px; }
.rv-sort select { max-width: 200px; }

.review-card { background: #fff; border-radius: 14px; padding: 16px; margin-bottom: 12px; box-shadow: 0 2px 6px rgba(0,0,0,0.05); }
.rv-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.rv-card-stars { margin-bottom: 8px; }
.rv-card-text { font-size: 14px; line-height: 1.6; color: #444; margin: 0 0 8px; }
.rv-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.rv-actions .btn { border-radius: 999px; padding-inline: 10px; }
.rv-reply { background: #F9F5FF; padding: 10px; border-radius: 10px; font-size: 13px; margin-top: 8px; }
.rv-reply-form { display: flex; flex-direction: column; gap: 8px; margin-top: 10px; }
.rv-reply-input { font-size: 13px; }

body.page-provider-reviews .page-content {
  background:
    radial-gradient(circle at 92% 0%, rgba(103, 58, 183, 0.11), transparent 34%),
    radial-gradient(circle at 8% 18%, rgba(33, 150, 243, 0.08), transparent 28%),
    var(--color-bg);
}

body.page-provider-reviews .page-shell {
  max-width: 680px;
  padding: 12px 14px calc(var(--bottom-nav-height, 84px) + 24px);
}

body.page-provider-reviews .page-header {
  margin: 6px 0 12px;
}

body.page-provider-reviews #rv-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

body.page-provider-reviews #rv-error {
  margin-bottom: 8px;
}

body.page-provider-reviews .rv-sort {
  display: flex;
  justify-content: flex-end;
}

body.page-provider-reviews .review-card {
  border: 1px solid rgba(103, 58, 183, 0.14);
  box-shadow: 0 8px 20px rgba(20, 18, 38, 0.06);
}

body.page-provider-reviews .rv-actions .rv-report-btn {
  border-color: rgba(211, 47, 47, 0.18);
  background: rgba(254, 242, 242, 0.96);
  color: #b42318;
}

body.page-provider-reviews.rv-report-open {
  overflow: hidden;
}

body.page-provider-reviews .rv-report-modal {
  position: fixed;
  inset: 0;
  z-index: 1700;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 16px 14px;
}

body.page-provider-reviews .rv-report-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.6));
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.2s ease;
}

body.page-provider-reviews .rv-report-modal.open .rv-report-overlay {
  opacity: 1;
}

body.page-provider-reviews .rv-report-dialog {
  position: relative;
  width: min(560px, 100%);
  max-height: min(88vh, 760px);
  overflow-y: auto;
  padding: 20px 18px 18px;
  border-radius: 28px 28px 22px 22px;
  border: 1px solid rgba(103, 58, 183, 0.12);
  background:
    radial-gradient(circle at top right, rgba(103, 58, 183, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 248, 255, 1));
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.22);
  transform: translateY(28px) scale(0.98);
  opacity: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

body.page-provider-reviews .rv-report-dialog::before {
  content: "";
  display: block;
  width: 54px;
  height: 5px;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.45);
}

body.page-provider-reviews .rv-report-modal.open .rv-report-dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

body.page-provider-reviews .rv-report-close {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  color: #475569;
  cursor: pointer;
  transition: transform 0.16s ease, background 0.16s ease, color 0.16s ease;
}

body.page-provider-reviews .rv-report-close:hover,
body.page-provider-reviews .rv-report-close:focus-visible {
  background: #fff;
  color: #0f172a;
  transform: rotate(90deg);
}

body.page-provider-reviews .rv-report-close:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

body.page-provider-reviews .rv-report-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 247, 237, 0.92);
  border: 1px solid rgba(251, 146, 60, 0.2);
  color: #c2410c;
}

body.page-provider-reviews .rv-report-badge-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #fb923c, #f97316);
  color: #fff;
  box-shadow: 0 10px 22px rgba(249, 115, 22, 0.24);
}

body.page-provider-reviews .rv-report-badge-text {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

body.page-provider-reviews .rv-report-title {
  margin: 14px 0 6px;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.2;
  color: #150d2d;
}

body.page-provider-reviews .rv-report-subtitle {
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.8;
  color: #667085;
}

body.page-provider-reviews .rv-report-preview {
  padding: 14px;
  margin-bottom: 14px;
  border-radius: 20px;
  border: 1px solid rgba(103, 58, 183, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 244, 255, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

body.page-provider-reviews .rv-report-preview-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

body.page-provider-reviews .rv-report-preview-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

body.page-provider-reviews .rv-report-preview-label {
  font-size: 11px;
  font-weight: 800;
  color: #7c6ea8;
}

body.page-provider-reviews .rv-report-preview-author strong {
  font-size: 15px;
  font-weight: 900;
  color: #160f2f;
}

body.page-provider-reviews .rv-report-date {
  font-size: 11px;
  font-weight: 800;
  color: #64748b;
  white-space: nowrap;
}

body.page-provider-reviews .rv-report-stars {
  display: flex;
  gap: 3px;
  margin: 10px 0 12px;
}

body.page-provider-reviews .rv-report-stars .star {
  font-size: 18px;
}

body.page-provider-reviews .rv-report-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.9;
  color: #334155;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  overflow: hidden;
}

body.page-provider-reviews .rv-report-text.is-empty {
  color: #98a2b3;
}

body.page-provider-reviews .rv-report-label {
  display: block;
  margin: 12px 0 8px;
  font-size: 12px;
  font-weight: 900;
  color: #1f2937;
}

body.page-provider-reviews .rv-report-select,
body.page-provider-reviews .rv-report-textarea {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  color: #0f172a;
  font-size: 13px;
  line-height: 1.7;
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

body.page-provider-reviews .rv-report-select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #7c3aed 50%),
    linear-gradient(135deg, #7c3aed 50%, transparent 50%);
  background-position:
    calc(16px) calc(50% - 3px),
    calc(10px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-left: 32px;
}

body.page-provider-reviews .rv-report-textarea {
  resize: vertical;
  min-height: 132px;
}

body.page-provider-reviews .rv-report-select:focus,
body.page-provider-reviews .rv-report-textarea:focus {
  border-color: rgba(124, 58, 237, 0.5);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.12);
}

body.page-provider-reviews .rv-report-select:disabled,
body.page-provider-reviews .rv-report-textarea:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

body.page-provider-reviews .rv-report-helper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
}

body.page-provider-reviews .rv-report-helper-text {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.7;
  color: #667085;
}

body.page-provider-reviews .rv-report-counter {
  font-size: 11px;
  font-weight: 900;
  color: #7c6ea8;
  white-space: nowrap;
}

body.page-provider-reviews .rv-report-counter.is-limit {
  color: #c2410c;
}

body.page-provider-reviews .rv-report-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

body.page-provider-reviews .rv-report-action {
  flex: 1;
  min-height: 48px;
  border-radius: 16px;
  border: 0;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, opacity 0.16s ease;
}

body.page-provider-reviews .rv-report-action:hover,
body.page-provider-reviews .rv-report-action:focus-visible {
  transform: translateY(-1px);
}

body.page-provider-reviews .rv-report-action:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

body.page-provider-reviews .rv-report-action-cancel {
  border: 1px solid rgba(148, 163, 184, 0.26);
  background: rgba(255, 255, 255, 0.88);
  color: #475569;
}

body.page-provider-reviews .rv-report-action-submit {
  color: #fff;
  background: linear-gradient(135deg, #dc2626, #f97316);
  box-shadow: 0 16px 28px rgba(220, 38, 38, 0.22);
}

body.page-provider-reviews .rv-toast {
  position: fixed;
  right: 50%;
  bottom: calc(var(--bottom-nav-height, 68px) + env(safe-area-inset-bottom, 0px) + 16px);
  z-index: 1750;
  min-width: 200px;
  max-width: min(92vw, 360px);
  padding: 12px 16px;
  border-radius: 14px;
  background: #1f2937;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.7;
  text-align: center;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.28);
  transform: translate(50%, 16px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.16s ease, opacity 0.16s ease;
}

body.page-provider-reviews .rv-toast.show {
  opacity: 1;
  transform: translate(50%, 0);
}

body.page-provider-reviews .rv-toast.success {
  background: #166534;
}

body.page-provider-reviews .rv-toast.error {
  background: #991b1b;
}

@media (min-width: 761px) {
  body.page-provider-reviews .page-shell {
    max-width: 1060px;
    padding: 18px 22px calc(var(--bottom-nav-height, 84px) + 24px);
  }

  body.page-provider-reviews .page-header {
    margin: 8px 0 14px;
  }

  body.page-provider-reviews .page-header h1 {
    font-size: 34px;
    font-weight: 900;
  }

  body.page-provider-reviews #rv-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  body.page-provider-reviews #rv-list .review-card {
    margin-bottom: 0;
    height: 100%;
  }

  body.page-provider-reviews .rv-report-modal {
    align-items: center;
    padding: 24px;
  }

  body.page-provider-reviews .rv-report-dialog {
    border-radius: 28px;
    padding: 24px 24px 22px;
  }

  body.page-provider-reviews .rv-report-preview {
    padding: 16px;
  }
}

@media (min-width: 1024px) {
  body.page-provider-reviews #bottom-nav {
    display: flex !important;
  }

  body.page-provider-reviews .page-shell {
    max-width: 1240px;
    padding: 24px 28px 34px;
  }

  body.page-provider-reviews #rv-content {
    display: grid;
    grid-template-columns: minmax(300px, 360px) minmax(0, 1fr);
    grid-template-areas:
      "summary sort"
      "summary list"
      "summary empty";
    align-items: start;
    column-gap: 18px;
    row-gap: 12px;
  }

  body.page-provider-reviews .rv-summary {
    grid-area: summary;
    position: sticky;
    top: 86px;
  }

  body.page-provider-reviews .rv-sort {
    grid-area: sort;
    margin-bottom: 0;
  }

  body.page-provider-reviews #rv-list {
    grid-area: list;
    grid-template-columns: 1fr;
  }

  body.page-provider-reviews #rv-empty {
    grid-area: empty;
  }
}

@media (min-width: 1460px) {
  body.page-provider-reviews #rv-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Provider Reviews — Premium override */
body.page-provider-reviews .page-content {
  background:
    radial-gradient(circle at 92% 0%, rgba(103, 58, 183, 0.16), transparent 30%),
    radial-gradient(circle at 10% 18%, rgba(14, 165, 233, 0.14), transparent 26%),
    linear-gradient(180deg, #f5f8ff 0%, #f7f5fc 48%, #fbfcff 100%);
}

body.page-provider-reviews .page-shell {
  max-width: 1500px;
  padding: 18px 18px calc(var(--bottom-nav-height, 84px) + 28px);
}

body.page-provider-reviews .page-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 8px 0 22px;
  padding: 24px 26px;
  border-radius: 34px;
  border: 1px solid rgba(103, 58, 183, 0.1);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 243, 255, 0.96)),
    radial-gradient(circle at top right, rgba(103, 58, 183, 0.08), transparent 40%);
  box-shadow:
     0 18px 42px rgba(15, 23, 42, 0.07),
     inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

body.page-provider-reviews .page-header::after {
  content: "";
  position: absolute;
  inset: auto auto -42px -42px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.14) 0%, rgba(14, 165, 233, 0) 70%);
  pointer-events: none;
}

body.page-provider-reviews .page-header-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  max-width: 760px;
}

body.page-provider-reviews .page-header-kicker {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(103, 58, 183, 0.12);
  background: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 900;
  color: #6a4ca0;
  letter-spacing: 0.03em;
}

body.page-provider-reviews .page-header-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7c3aed, #06b6d4);
  box-shadow: 0 0 0 6px rgba(124, 58, 237, 0.08);
}

body.page-provider-reviews .page-header h1 {
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #160f2f;
}

body.page-provider-reviews .page-header-lead {
  margin: 0;
  max-width: 64ch;
  font-size: 15px;
  line-height: 1.95;
  color: #5c6679;
}

body.page-provider-reviews .page-header-meta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 0 0 auto;
}

body.page-provider-reviews .page-header-note {
  width: min(320px, 100%);
  padding: 18px 18px 16px;
  border-radius: 26px;
  border: 1px solid rgba(103, 58, 183, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(242, 247, 255, 0.9));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

body.page-provider-reviews .page-header-note strong {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 900;
  color: #160f2f;
}

body.page-provider-reviews .page-header-note span {
  display: block;
  font-size: 12px;
  line-height: 1.85;
  color: #667085;
}

body.page-provider-reviews .page-header .btn-back {
  width: 50px;
  height: 50px;
  align-self: flex-start;
  border: 1px solid rgba(103, 58, 183, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  color: #4c2f73;
  box-shadow: 0 12px 24px rgba(72, 46, 118, 0.12);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

body.page-provider-reviews .page-header .btn-back:hover,
body.page-provider-reviews .page-header .btn-back:focus-visible {
  transform: translateY(-1px);
  background: #fff;
  box-shadow: 0 16px 30px rgba(72, 46, 118, 0.16);
}

body.page-provider-reviews #rv-content {
  display: grid;
  gap: 22px;
}

body.page-provider-reviews #rv-error {
  margin-bottom: 10px;
  border-radius: 18px;
  border: 1px solid rgba(220, 38, 38, 0.12);
  background: rgba(254, 242, 242, 0.96);
  color: #991b1b;
  box-shadow: 0 12px 28px rgba(220, 38, 38, 0.08);
}

body.page-provider-reviews .rv-summary,
body.page-provider-reviews .rv-main-panel,
body.page-provider-reviews .review-card {
  border: 1px solid rgba(103, 58, 183, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 248, 255, 0.96));
  box-shadow:
    0 18px 42px rgba(15, 23, 42, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

body.page-provider-reviews .rv-summary {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border-radius: 32px;
  text-align: right;
}

body.page-provider-reviews .rv-summary::before {
  content: "";
  position: absolute;
  inset: auto -80px -80px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(103, 58, 183, 0.12) 0%, rgba(103, 58, 183, 0) 70%);
  pointer-events: none;
}

body.page-provider-reviews .rv-summary-top {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

body.page-provider-reviews .rv-summary-copy {
  max-width: 560px;
}

body.page-provider-reviews .rv-kicker,
body.page-provider-reviews .rv-panel-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 900;
  color: #6a4ca0;
  letter-spacing: 0.02em;
}

body.page-provider-reviews .rv-kicker::before,
body.page-provider-reviews .rv-panel-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7c3aed, #06b6d4);
  box-shadow: 0 0 0 6px rgba(124, 58, 237, 0.08);
}

body.page-provider-reviews .rv-summary-title {
  margin: 12px 0 10px;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 900;
  line-height: 1.2;
  color: #160f2f;
}

body.page-provider-reviews .rv-summary-subtitle {
  margin: 0;
  max-width: 56ch;
  font-size: 14px;
  line-height: 1.9;
  color: #5b6477;
}

body.page-provider-reviews .rv-summary-badge {
  min-width: 124px;
  padding: 16px 18px;
  border-radius: 24px;
  border: 1px solid rgba(103, 58, 183, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 239, 255, 0.96));
  text-align: center;
  box-shadow: 0 16px 30px rgba(85, 57, 138, 0.1);
}

body.page-provider-reviews .rv-summary-badge span {
  display: block;
  font-size: 11px;
  font-weight: 800;
  color: #6b7280;
}

body.page-provider-reviews .rv-summary-badge strong {
  display: block;
  margin-top: 8px;
  font-size: 28px;
  font-weight: 900;
  color: #5b33a6;
}

body.page-provider-reviews .rv-overall-wrap {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

body.page-provider-reviews .rv-overall,
body.page-provider-reviews .rv-distribution-panel,
body.page-provider-reviews .rv-breakdown-panel {
  position: relative;
  padding: 18px;
  border-radius: 26px;
  border: 1px solid rgba(103, 58, 183, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 244, 255, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 14px 30px rgba(15, 23, 42, 0.05);
}

body.page-provider-reviews .rv-overall {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 240px;
}

body.page-provider-reviews .rv-score {
  display: block;
  font-size: clamp(58px, 7vw, 78px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #5b33a6;
}

body.page-provider-reviews .rv-stars,
body.page-provider-reviews .rv-report-stars,
body.page-provider-reviews .rv-card-stars {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}

body.page-provider-reviews .rv-overall .rv-stars {
  justify-content: center;
  margin: 14px 0 10px;
}

body.page-provider-reviews .star {
  font-size: 20px;
  line-height: 1;
}

body.page-provider-reviews .star.full {
  color: #f5b61c;
}

body.page-provider-reviews .star.half {
  color: transparent;
  background: linear-gradient(90deg, #f5b61c 50%, #d7d9e2 50%);
  -webkit-background-clip: text;
          background-clip: text;
}

body.page-provider-reviews .star.empty {
  color: #d7d9e2;
}

body.page-provider-reviews .rv-count {
  font-size: 14px;
  font-weight: 800;
  color: #6b7280;
}

body.page-provider-reviews .rv-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

body.page-provider-reviews .rv-panel-head h3 {
  margin: 8px 0 0;
  font-size: 16px;
  font-weight: 900;
  color: #160f2f;
}

body.page-provider-reviews .rv-distribution {
  display: grid;
  gap: 10px;
}

body.page-provider-reviews .rv-distribution-row {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) 72px;
  align-items: center;
  gap: 10px;
}

body.page-provider-reviews .rv-distribution-label,
body.page-provider-reviews .rv-distribution-meta {
  font-size: 12px;
  font-weight: 800;
  color: #64748b;
}

body.page-provider-reviews .rv-distribution-meta {
  text-align: left;
}

body.page-provider-reviews .rv-distribution-bar {
  height: 10px;
  border-radius: 999px;
  background: #edf1f7;
  overflow: hidden;
}

body.page-provider-reviews .rv-distribution-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #7c3aed, #22c55e);
}

body.page-provider-reviews .rv-metrics-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

body.page-provider-reviews .rv-metric-card {
  padding: 14px 16px;
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

body.page-provider-reviews .rv-metric-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  color: #150d2d;
}

body.page-provider-reviews .rv-metric-card span {
  display: block;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.7;
  color: #5f6678;
}

body.page-provider-reviews .rv-metric-card.is-primary {
  background: linear-gradient(180deg, rgba(245, 243, 255, 0.92), rgba(255, 255, 255, 0.96));
}

body.page-provider-reviews .rv-metric-card.is-primary strong {
  color: #6d28d9;
}

body.page-provider-reviews .rv-metric-card.is-warm {
  background: linear-gradient(180deg, rgba(255, 247, 237, 0.92), rgba(255, 255, 255, 0.96));
}

body.page-provider-reviews .rv-metric-card.is-warm strong {
  color: #c2410c;
}

body.page-provider-reviews .rv-metric-card.is-cool {
  background: linear-gradient(180deg, rgba(240, 249, 255, 0.92), rgba(255, 255, 255, 0.96));
}

body.page-provider-reviews .rv-metric-card.is-cool strong {
  color: #0369a1;
}

body.page-provider-reviews .rv-breakdown {
  display: grid;
  gap: 12px;
}

body.page-provider-reviews .rv-breakdown-empty {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(241, 245, 249, 0.85);
  color: #5b6475;
  font-size: 12px;
  font-weight: 800;
  text-align: right;
}

body.page-provider-reviews .rv-bar-row {
  display: grid;
  grid-template-columns: minmax(0, 168px) minmax(0, 1fr) 44px;
  align-items: center;
  gap: 12px;
}

body.page-provider-reviews .rv-bar-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

body.page-provider-reviews .rv-bar-copy strong {
  font-size: 13px;
  font-weight: 900;
  color: #160f2f;
}

body.page-provider-reviews .rv-bar-copy span {
  font-size: 11px;
  font-weight: 800;
  color: #7b8190;
}

body.page-provider-reviews .rv-bar-track {
  min-width: 0;
}

body.page-provider-reviews .rv-bar {
  height: 11px;
  border-radius: 999px;
  background: #edf1f7;
  overflow: hidden;
}

body.page-provider-reviews .rv-bar-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #7c3aed, #06b6d4);
  box-shadow: 0 0 14px rgba(124, 58, 237, 0.18);
}

body.page-provider-reviews .rv-bar-value {
  font-size: 14px;
  font-weight: 900;
  color: #283245;
  text-align: left;
}

body.page-provider-reviews .rv-main-panel {
  padding: 24px;
  border-radius: 32px;
}

body.page-provider-reviews .rv-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

body.page-provider-reviews .rv-toolbar-copy h2 {
  margin: 8px 0 8px;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 900;
  color: #160f2f;
}

body.page-provider-reviews .rv-toolbar-copy p {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
  color: #667085;
}

body.page-provider-reviews .rv-sort {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  min-width: 188px;
  margin-bottom: 0;
}

body.page-provider-reviews .rv-sort label {
  font-size: 12px;
  font-weight: 900;
  color: #5b6477;
}

body.page-provider-reviews .rv-sort select {
  width: 100%;
  max-width: 220px;
  min-height: 50px;
  border: 1px solid rgba(103, 58, 183, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  color: #160f2f;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(85, 57, 138, 0.08);
}

body.page-provider-reviews #rv-list {
  display: grid;
  gap: 16px;
}

body.page-provider-reviews .review-card {
  padding: 18px;
  border-radius: 28px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

body.page-provider-reviews .review-card:hover {
  transform: translateY(-2px);
  border-color: rgba(103, 58, 183, 0.18);
  box-shadow:
    0 22px 48px rgba(15, 23, 42, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

body.page-provider-reviews .rv-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

body.page-provider-reviews .rv-card-author {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

body.page-provider-reviews .rv-card-avatar {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: linear-gradient(135deg, #673ab7, #2dd4bf);
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 14px 26px rgba(84, 51, 145, 0.2);
}

body.page-provider-reviews .rv-card-author-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

body.page-provider-reviews .rv-card-author-copy strong {
  font-size: 16px;
  font-weight: 900;
  color: #150d2d;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

body.page-provider-reviews .rv-card-author-copy span {
  font-size: 12px;
  font-weight: 800;
  color: #6b7280;
}

body.page-provider-reviews .rv-card-score-badge {
  padding: 10px 12px;
  min-width: 76px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.98), rgba(242, 247, 255, 0.96));
  border: 1px solid rgba(148, 163, 184, 0.18);
  text-align: center;
  flex: 0 0 auto;
}

body.page-provider-reviews .rv-card-score-badge strong {
  display: block;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  color: #4c2f73;
}

body.page-provider-reviews .rv-card-score-badge span {
  display: block;
  margin-top: 5px;
  font-size: 11px;
  font-weight: 800;
  color: #7b8190;
}

body.page-provider-reviews .rv-card-stars {
  margin-bottom: 12px;
}

body.page-provider-reviews .rv-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

body.page-provider-reviews .rv-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(103, 58, 183, 0.08);
  color: #5b33a6;
  font-size: 11px;
  font-weight: 900;
}

body.page-provider-reviews .rv-meta-pill.is-liked {
  background: rgba(249, 115, 22, 0.1);
  color: #c2410c;
}

body.page-provider-reviews .rv-criteria-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

body.page-provider-reviews .rv-criterion-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 14px;
  background: rgba(246, 248, 252, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.16);
}

body.page-provider-reviews .rv-criterion-chip strong {
  font-size: 13px;
  font-weight: 900;
  color: #160f2f;
}

body.page-provider-reviews .rv-criterion-chip span {
  font-size: 11px;
  font-weight: 800;
  color: #667085;
}

body.page-provider-reviews .rv-card-text {
  margin: 0;
  font-size: 14px;
  line-height: 2;
  color: #334155;
}

body.page-provider-reviews .rv-card-text.is-empty {
  color: #94a3b8;
}

body.page-provider-reviews .rv-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

body.page-provider-reviews .rv-actions .btn {
  min-height: 42px;
  border-radius: 14px;
  padding-inline: 14px;
  font-size: 12px;
  font-weight: 900;
  border-width: 1px;
  box-shadow: none;
}

body.page-provider-reviews .rv-actions .btn:disabled {
  opacity: 0.5;
}

body.page-provider-reviews .rv-like-btn {
  border-color: rgba(103, 58, 183, 0.16);
  background: rgba(103, 58, 183, 0.06);
  color: #5b33a6;
}

body.page-provider-reviews .rv-like-btn.is-active {
  border-color: rgba(124, 58, 237, 0.22);
  background: linear-gradient(135deg, #7c3aed, #8b5cf6);
  color: #fff;
  box-shadow: 0 14px 24px rgba(124, 58, 237, 0.22);
}

body.page-provider-reviews .rv-chat-btn {
  border-color: rgba(14, 165, 233, 0.18);
  background: rgba(240, 249, 255, 0.96);
  color: #0369a1;
}

body.page-provider-reviews .rv-request-btn {
  border-color: rgba(15, 23, 42, 0.1);
  background: rgba(248, 250, 252, 0.96);
  color: #334155;
}

body.page-provider-reviews .rv-actions .rv-report-btn {
  border-color: rgba(211, 47, 47, 0.18);
  background: rgba(254, 242, 242, 0.96);
  color: #b42318;
}

body.page-provider-reviews .rv-reply,
body.page-provider-reviews .rv-reply-form {
  margin-top: 16px;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(103, 58, 183, 0.1);
  background:
    linear-gradient(180deg, rgba(248, 246, 255, 0.96), rgba(255, 255, 255, 0.96));
}

body.page-provider-reviews .rv-reply-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

body.page-provider-reviews .rv-reply-head strong {
  font-size: 14px;
  font-weight: 900;
  color: #4c2f73;
}

body.page-provider-reviews .rv-reply-meta {
  font-size: 11px;
  font-weight: 800;
  color: #667085;
}

body.page-provider-reviews .rv-reply p {
  margin: 0;
  font-size: 13px;
  line-height: 1.9;
  color: #334155;
}

body.page-provider-reviews .rv-reply-label {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 900;
  color: #475569;
}

body.page-provider-reviews .rv-reply-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

body.page-provider-reviews .rv-reply-input {
  min-height: 100px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(255, 255, 255, 0.98);
  font-size: 13px;
  line-height: 1.9;
  color: #0f172a;
  resize: vertical;
}

body.page-provider-reviews .rv-reply-input:focus {
  border-color: rgba(124, 58, 237, 0.4);
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1);
}

body.page-provider-reviews .rv-reply-btn {
  align-self: flex-start;
  min-width: 136px;
  min-height: 44px;
  border-radius: 14px;
  box-shadow: 0 14px 26px rgba(103, 58, 183, 0.18);
}

body.page-provider-reviews #rv-empty {
  padding: 30px 20px;
  border: 1px dashed rgba(103, 58, 183, 0.2);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 243, 255, 0.94));
  text-align: center;
}

body.page-provider-reviews .rv-empty-illustration {
  width: 78px;
  height: 78px;
  margin: 0 auto 16px;
  border-radius: 26px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(103, 58, 183, 0.14), rgba(14, 165, 233, 0.12));
  color: #5b33a6;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

body.page-provider-reviews #rv-empty h3 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 900;
  color: #160f2f;
}

body.page-provider-reviews #rv-empty p {
  margin: 0 auto;
  max-width: 48ch;
  font-size: 14px;
  line-height: 1.9;
  color: #667085;
}

body.page-provider-reviews .rv-retry-row {
  display: flex;
  justify-content: center;
  margin-top: 14px;
}

@media (min-width: 761px) {
  body.page-provider-reviews .page-shell {
    padding: 24px 22px calc(var(--bottom-nav-height, 84px) + 28px);
  }

  body.page-provider-reviews .rv-metrics-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.page-provider-reviews #rv-list {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1040px) {
  body.page-provider-reviews .page-shell {
    padding: 28px 28px 40px;
  }

  body.page-provider-reviews .page-header {
    align-items: stretch;
    gap: 24px;
    padding: 30px 32px;
  }

  body.page-provider-reviews #rv-content {
    grid-template-columns: minmax(390px, 470px) minmax(0, 1fr);
    align-items: start;
    gap: 24px;
  }

  body.page-provider-reviews .rv-summary {
    position: sticky;
    top: calc(var(--navbar-height, 68px) + 24px);
  }

  body.page-provider-reviews .rv-main-panel {
    padding: 28px;
  }

  body.page-provider-reviews #bottom-nav {
    display: none !important;
  }
}

@media (min-width: 1280px) {
  body.page-provider-reviews .page-header {
    padding: 34px 36px;
  }

  body.page-provider-reviews .page-header-copy {
    max-width: 820px;
  }

  body.page-provider-reviews .page-header-note {
    width: 340px;
  }

  body.page-provider-reviews .rv-metrics-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1440px) {
  body.page-provider-reviews #rv-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  body.page-provider-reviews .page-header {
    flex-direction: column;
    align-items: stretch;
  }

  body.page-provider-reviews .page-header-meta {
    justify-content: space-between;
    align-items: stretch;
  }

  body.page-provider-reviews .page-header-note {
    width: auto;
  }

  body.page-provider-reviews .rv-overall-wrap {
    grid-template-columns: 1fr;
  }

  body.page-provider-reviews .rv-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  body.page-provider-reviews .rv-sort {
    align-items: stretch;
    min-width: 0;
  }

  body.page-provider-reviews .rv-sort select {
    max-width: none;
  }
}

@media (max-width: 760px) {
  body.page-provider-reviews .page-shell {
    padding-inline: 12px;
  }

  body.page-provider-reviews .page-header {
    padding: 16px;
    border-radius: 24px;
  }

  body.page-provider-reviews .page-header h1 {
    font-size: 30px;
  }

  body.page-provider-reviews .page-header-lead {
    font-size: 14px;
  }

  body.page-provider-reviews .page-header-meta {
    flex-direction: row;
    align-items: flex-start;
  }

  body.page-provider-reviews .page-header-note {
    padding: 14px 14px 12px;
    border-radius: 20px;
  }

  body.page-provider-reviews .page-header .btn-back {
    width: 44px;
    height: 44px;
    border-radius: 15px;
  }

  body.page-provider-reviews .rv-summary,
  body.page-provider-reviews .rv-main-panel,
  body.page-provider-reviews .review-card {
    border-radius: 24px;
  }

  body.page-provider-reviews .rv-summary {
    padding: 16px;
  }

  body.page-provider-reviews .rv-summary-top {
    flex-direction: column;
  }

  body.page-provider-reviews .rv-summary-badge {
    width: 100%;
    min-width: 0;
  }

  body.page-provider-reviews .rv-overall,
  body.page-provider-reviews .rv-distribution-panel,
  body.page-provider-reviews .rv-breakdown-panel {
    padding: 16px;
    border-radius: 22px;
  }

  body.page-provider-reviews .rv-metrics-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.page-provider-reviews .rv-bar-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  body.page-provider-reviews .rv-bar-value {
    text-align: right;
  }

  body.page-provider-reviews .rv-distribution-row {
    grid-template-columns: 58px minmax(0, 1fr) 58px;
    gap: 8px;
  }

  body.page-provider-reviews .rv-main-panel {
    padding: 16px;
  }

  body.page-provider-reviews .review-card {
    padding: 16px;
  }

  body.page-provider-reviews .rv-card-top,
  body.page-provider-reviews .rv-reply-head {
    flex-direction: column;
    align-items: flex-start;
  }

  body.page-provider-reviews .rv-card-score-badge {
    min-width: 0;
  }

  body.page-provider-reviews .rv-actions .btn,
  body.page-provider-reviews .rv-reply-btn {
    width: 100%;
    justify-content: center;
  }

  body.page-provider-reviews .rv-report-actions {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  body.page-provider-reviews .page-header-meta {
    flex-direction: column;
  }

  body.page-provider-reviews .rv-metrics-strip {
    grid-template-columns: 1fr;
  }

  body.page-provider-reviews .rv-distribution-row {
    grid-template-columns: 52px minmax(0, 1fr) 54px;
  }
}

/* Provider reviews: simple premium work surface */
body.page-provider-reviews .page-content {
  background:
    linear-gradient(180deg, #f8fbfc 0%, #f2f6f8 48%, #f8f6fb 100%) !important;
}

body.page-provider-reviews .page-shell {
  max-width: 1180px !important;
  padding: 18px 16px calc(var(--bottom-nav-height, 84px) + 26px) !important;
}

body.page-provider-reviews .page-header {
  margin: 8px 0 16px !important;
  padding: 18px 20px !important;
  border-radius: 24px !important;
  border: 1px solid rgba(103, 58, 183, 0.10) !important;
  background: rgba(255, 255, 255, 0.92) !important;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
  overflow: hidden;
}

body.page-provider-reviews .page-header::after {
  content: none !important;
}

body.page-provider-reviews .page-header-copy {
  gap: 8px !important;
}

body.page-provider-reviews .page-header-kicker {
  padding: 7px 12px !important;
  background: rgba(15, 118, 110, 0.08) !important;
  border-color: rgba(15, 118, 110, 0.16) !important;
  color: #115e59 !important;
}

body.page-provider-reviews .page-header-kicker::before {
  background: #0f766e !important;
  box-shadow: 0 0 0 5px rgba(15, 118, 110, 0.10) !important;
}

body.page-provider-reviews .page-header h1 {
  font-size: clamp(28px, 3.4vw, 42px) !important;
  letter-spacing: 0 !important;
}

body.page-provider-reviews .page-header-lead {
  max-width: 48ch !important;
  font-size: 14px !important;
  line-height: 1.85 !important;
}

body.page-provider-reviews .page-header-meta {
  align-items: center !important;
}

body.page-provider-reviews .page-header-note {
  width: min(280px, 100%) !important;
  padding: 14px 16px !important;
  border-radius: 18px !important;
  background: #fff !important;
}

body.page-provider-reviews .rv-jump-link {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(103, 58, 183, 0.16);
  background: linear-gradient(135deg, #4a2d8f, #673ab7 60%, #0f766e);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(74, 45, 143, 0.18);
  white-space: nowrap;
}

body.page-provider-reviews #rv-loading {
  min-height: 180px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(103, 58, 183, 0.08);
}

body.page-provider-reviews #rv-error {
  margin: 0 0 10px !important;
}

body.page-provider-reviews > .page-shell > .rv-retry-row,
body.page-provider-reviews .page-shell > .rv-retry-row {
  margin: 0 0 14px !important;
}

body.page-provider-reviews #rv-content {
  gap: 16px !important;
}

body.page-provider-reviews .rv-summary,
body.page-provider-reviews .rv-main-panel,
body.page-provider-reviews .review-card {
  border-radius: 24px !important;
  border-color: rgba(103, 58, 183, 0.10) !important;
  background: rgba(255, 255, 255, 0.94) !important;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
}

body.page-provider-reviews .rv-summary {
  padding: 18px !important;
}

body.page-provider-reviews .rv-summary::before {
  content: none !important;
}

body.page-provider-reviews .rv-summary-top {
  margin-bottom: 14px !important;
}

body.page-provider-reviews .rv-summary-title {
  margin: 9px 0 8px !important;
  font-size: clamp(20px, 2vw, 25px) !important;
}

body.page-provider-reviews .rv-summary-subtitle {
  font-size: 13px !important;
  line-height: 1.8 !important;
}

body.page-provider-reviews .rv-summary-badge {
  min-width: 108px !important;
  padding: 12px 14px !important;
  border-radius: 18px !important;
  box-shadow: none !important;
}

body.page-provider-reviews .rv-summary-badge strong {
  font-size: 24px !important;
}

body.page-provider-reviews .rv-overall-wrap {
  display: block !important;
  margin-bottom: 12px !important;
}

body.page-provider-reviews .rv-overall {
  min-height: 0 !important;
  padding: 20px 18px !important;
  border-radius: 22px !important;
  background:
    linear-gradient(135deg, rgba(248, 246, 255, 0.98), rgba(255, 255, 255, 0.98) 48%, rgba(236, 253, 245, 0.70)) !important;
}

body.page-provider-reviews .rv-score {
  font-size: clamp(48px, 5.5vw, 66px) !important;
  letter-spacing: 0 !important;
}

body.page-provider-reviews .rv-metrics-strip {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px !important;
  margin-bottom: 12px !important;
}

body.page-provider-reviews .rv-metric-card {
  padding: 12px 13px !important;
  border-radius: 17px !important;
  background: #fff !important;
}

body.page-provider-reviews .rv-metric-card strong {
  font-size: 19px !important;
}

body.page-provider-reviews .rv-metric-card span {
  font-size: 11px !important;
}

body.page-provider-reviews .rv-insights-details {
  border: 1px solid rgba(103, 58, 183, 0.10);
  border-radius: 20px;
  background: rgba(248, 250, 252, 0.76);
  overflow: hidden;
}

body.page-provider-reviews .rv-insights-details > summary {
  min-height: 58px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  list-style: none;
  color: #160f2f;
}

body.page-provider-reviews .rv-insights-details > summary::-webkit-details-marker {
  display: none;
}

body.page-provider-reviews .rv-insights-details > summary span {
  font-size: 13px;
  font-weight: 900;
}

body.page-provider-reviews .rv-insights-details > summary small {
  color: #667085;
  font-size: 11px;
  font-weight: 800;
}

body.page-provider-reviews .rv-insights-details > summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #4a2d8f;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
}

body.page-provider-reviews .rv-insights-details[open] > summary::after {
  content: "-";
}

body.page-provider-reviews .rv-insights-body {
  display: grid;
  gap: 12px;
  padding: 0 12px 12px;
}

body.page-provider-reviews .rv-distribution-panel,
body.page-provider-reviews .rv-breakdown-panel {
  border-radius: 18px !important;
  background: #fff !important;
}

body.page-provider-reviews .rv-main-panel {
  padding: 18px !important;
}

body.page-provider-reviews .rv-toolbar {
  align-items: center !important;
  margin-bottom: 14px !important;
}

body.page-provider-reviews .rv-toolbar-copy h2 {
  margin: 6px 0 !important;
  font-size: clamp(21px, 2vw, 26px) !important;
}

body.page-provider-reviews .rv-toolbar-copy p {
  font-size: 12.5px !important;
  line-height: 1.7 !important;
}

body.page-provider-reviews .rv-sort select {
  min-height: 46px !important;
  border-radius: 15px !important;
  box-shadow: none !important;
}

body.page-provider-reviews #rv-list {
  gap: 14px !important;
}

body.page-provider-reviews .review-card {
  padding: 16px !important;
}

body.page-provider-reviews .review-card:hover {
  transform: translateY(-1px) !important;
}

body.page-provider-reviews .rv-card-top {
  align-items: center !important;
  margin-bottom: 10px !important;
}

body.page-provider-reviews .rv-card-avatar {
  width: 42px !important;
  height: 42px !important;
  border-radius: 14px !important;
  background: linear-gradient(145deg, #4a2d8f, #673ab7 58%, #0f766e) !important;
}

body.page-provider-reviews .rv-card-score-badge {
  min-width: 64px !important;
  padding: 8px 10px !important;
  border-radius: 15px !important;
}

body.page-provider-reviews .rv-card-score-badge strong {
  font-size: 20px !important;
}

body.page-provider-reviews .rv-card-stars {
  margin-bottom: 10px !important;
}

body.page-provider-reviews .rv-meta-pill.is-replied {
  background: rgba(15, 118, 110, 0.10);
  color: #115e59;
}

body.page-provider-reviews .rv-meta-pill.is-pending {
  background: rgba(245, 158, 11, 0.11);
  color: #92400e;
}

body.page-provider-reviews .rv-card-text {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(248, 250, 252, 0.78);
  line-height: 1.85 !important;
}

body.page-provider-reviews .rv-actions {
  display: grid !important;
  grid-template-columns: minmax(120px, auto) repeat(3, auto);
  align-items: center;
  gap: 8px !important;
}

body.page-provider-reviews .rv-actions .btn {
  min-height: 40px !important;
  border-radius: 13px !important;
  padding-inline: 12px !important;
}

body.page-provider-reviews .rv-request-btn.btn-primary {
  border: 0 !important;
  background: linear-gradient(135deg, #4a2d8f, #673ab7 60%, #0f766e) !important;
  color: #fff !important;
  box-shadow: 0 10px 22px rgba(74, 45, 143, 0.16) !important;
}

body.page-provider-reviews .rv-like-btn.is-active {
  background: linear-gradient(135deg, #4a2d8f, #673ab7) !important;
  box-shadow: 0 10px 20px rgba(74, 45, 143, 0.16) !important;
}

body.page-provider-reviews .rv-actions .rv-report-btn {
  margin-inline-start: auto;
  border-color: transparent !important;
  background: transparent !important;
  color: #b42318 !important;
}

body.page-provider-reviews .rv-reply,
body.page-provider-reviews .rv-reply-form {
  border-radius: 18px !important;
  background: linear-gradient(180deg, rgba(248, 246, 255, 0.88), rgba(255, 255, 255, 0.98)) !important;
}

body.page-provider-reviews .rv-reply-input {
  min-height: 86px !important;
  border-radius: 15px !important;
}

body.page-provider-reviews .rv-reply-btn {
  align-self: flex-end !important;
  background: linear-gradient(135deg, #4a2d8f, #673ab7) !important;
  color: #fff !important;
}

body.page-provider-reviews #rv-empty {
  border-radius: 22px !important;
}

@media (min-width: 1040px) {
  body.page-provider-reviews .page-shell {
    padding: 22px 24px 36px !important;
  }

  body.page-provider-reviews #rv-content {
    grid-template-columns: minmax(320px, 360px) minmax(0, 1fr) !important;
    align-items: start !important;
  }

  body.page-provider-reviews .rv-summary {
    position: sticky !important;
    top: calc(var(--navbar-height, 68px) + 20px) !important;
  }

  body.page-provider-reviews #rv-list {
    grid-template-columns: 1fr !important;
  }
}

@media (min-width: 1380px) {
  body.page-provider-reviews #rv-list {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 920px) {
  body.page-provider-reviews .page-header-meta {
    display: grid !important;
    grid-template-columns: 1fr auto auto;
  }

  body.page-provider-reviews .rv-toolbar {
    align-items: stretch !important;
  }
}

@media (max-width: 760px) {
  body.page-provider-reviews .page-shell {
    padding-inline: 12px !important;
  }

  body.page-provider-reviews .page-header {
    padding: 16px !important;
  }

  body.page-provider-reviews .page-header-meta {
    grid-template-columns: 1fr auto !important;
  }

  body.page-provider-reviews .rv-jump-link {
    grid-column: 1 / -1;
    width: 100%;
  }

  body.page-provider-reviews .rv-summary-top,
  body.page-provider-reviews .rv-card-top,
  body.page-provider-reviews .rv-reply-head {
    flex-direction: row !important;
    align-items: center !important;
  }

  body.page-provider-reviews .rv-summary-badge {
    width: auto !important;
  }

  body.page-provider-reviews .rv-metrics-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.page-provider-reviews .rv-actions {
    grid-template-columns: 1fr 1fr !important;
  }

  body.page-provider-reviews .rv-actions .btn,
  body.page-provider-reviews .rv-reply-btn {
    width: 100% !important;
  }

  body.page-provider-reviews .rv-actions .rv-report-btn {
    margin-inline-start: 0;
  }

  body.page-provider-reviews .rv-reply-btn {
    align-self: stretch !important;
  }
}

@media (max-width: 430px) {
  body.page-provider-reviews .rv-summary-top,
  body.page-provider-reviews .rv-card-top {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  body.page-provider-reviews .rv-summary-badge,
  body.page-provider-reviews .rv-card-score-badge {
    width: 100% !important;
  }

  body.page-provider-reviews .rv-metrics-strip,
  body.page-provider-reviews .rv-actions {
    grid-template-columns: 1fr !important;
  }
}

/* ══════════════════════════════════════════════
   Provider Profile Edit
   ══════════════════════════════════════════════ */
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.tab {
  padding: 10px 16px;
  border: none;
  background: none;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  color: #999;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.tab.active {
  color: var(--color-primary, #663D90);
  border-bottom-color: var(--color-primary, #663D90);
}

body.page-provider-profile-edit {
  background: #F3F4FC;
}

body.page-provider-profile-edit #site-footer {
  display: none !important;
}

body.page-provider-profile-edit #bottom-nav {
  display: flex !important;
}

body.page-provider-profile-edit .page-content {
  padding-top: 0;
  padding-bottom: calc(var(--bottom-nav-height) + 18px);
  background:
    radial-gradient(circle at 100% 0%, rgba(103, 58, 183, 0.10), transparent 32%),
    linear-gradient(180deg, #f6f7fc 0%, #eef0f9 100%);
}

body.page-provider-profile-edit .pe-page-shell {
  max-width: 760px;
  margin: 0 auto;
  padding: 10px 14px calc(var(--bottom-nav-height) + 18px);
}

body.page-provider-profile-edit .pe-page-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

body.page-provider-profile-edit .pe-page-title {
  flex: 1;
  margin: 0;
  text-align: center;
  font-size: 24px;
  font-weight: 900;
  color: #15152C;
  line-height: 1.3;
}

body.page-provider-profile-edit .pe-page-header .btn-back,
body.page-provider-profile-edit .pe-head-action {
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #22243a;
  background: transparent;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

body.page-provider-profile-edit .pe-page-header .btn-back:hover,
body.page-provider-profile-edit .pe-head-action:hover {
  color: #673AB7;
  background: rgba(103, 58, 183, 0.08);
}

body.page-provider-profile-edit .pe-loading {
  min-height: 240px;
}

body.page-provider-profile-edit .pe-page-content,
body.page-provider-profile-edit .pe-layout,
body.page-provider-profile-edit .pe-sidebar,
body.page-provider-profile-edit .pe-main {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

body.page-provider-profile-edit .pe-identity-card {
  margin: 0;
  border: 1px solid rgba(103, 58, 183, 0.16);
  border-radius: 28px;
  background:
    radial-gradient(circle at 0% 0%, rgba(192, 132, 26, 0.15), transparent 42%),
    radial-gradient(circle at 100% 100%, rgba(103, 58, 183, 0.14), transparent 46%),
    linear-gradient(140deg, #ffffff 0%, #f8f5ff 55%, #f3f7ff 100%);
  box-shadow: 0 16px 34px rgba(30, 36, 71, 0.12);
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px 22px;
}

body.page-provider-profile-edit .pe-identity-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

body.page-provider-profile-edit .pe-avatar-shell {
  flex-shrink: 0;
}

body.page-provider-profile-edit .pe-avatar-wrap {
  width: 92px;
  height: 92px;
  border-radius: 26px;
  overflow: visible;
  position: relative;
  border: 3px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 24px rgba(37, 44, 88, 0.18);
  background: linear-gradient(145deg, #ece7ff 0%, #dce8ff 100%);
}

body.page-provider-profile-edit .pe-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 23px;
}

body.page-provider-profile-edit .pe-avatar-fallback {
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #4c2b87;
  font-size: 30px;
  font-weight: 900;
  border-radius: 23px;
  overflow: hidden;
}

body.page-provider-profile-edit .pe-avatar-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  max-width: 88%;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(16, 24, 40, 0.84);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.page-provider-profile-edit .pe-avatar-upload-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 24, 40, 0.55);
  color: #fff;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease;
  z-index: 14;
  border-radius: 0 0 23px 23px;
}

body.page-provider-profile-edit .pe-avatar-wrap > .nw-avatar-arc-badges {
  z-index: 18 !important;
}

body.page-provider-profile-edit .pe-avatar-upload-btn:hover {
  background: rgba(16, 24, 40, 0.72);
}

body.page-provider-profile-edit .pe-avatar-upload-btn svg {
  width: 16px;
  height: 16px;
}

body.page-provider-profile-edit .pe-avatar-file-input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}

body.page-provider-profile-edit .pe-identity-copy {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: right;
}

body.page-provider-profile-edit .pe-display-name {
  margin: 0;
  color: #15152c;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.35;
}

body.page-provider-profile-edit .pe-inline-badges {
  min-height: 26px;
}

body.page-provider-profile-edit .pe-name-excellence {
  justify-content: flex-start;
}

body.page-provider-profile-edit .pe-identity-subtitle {
  margin: 0;
  color: #505b7a;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.8;
}

body.page-provider-profile-edit .pe-congrats-banner {
  border-radius: 16px;
  border: 1px solid rgba(192, 132, 26, 0.35);
  background: linear-gradient(135deg, rgba(255, 248, 220, 0.92) 0%, rgba(255, 236, 179, 0.85) 100%);
  color: #5a3d03;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.8;
  padding: 10px 12px;
}

body.page-provider-profile-edit .pe-tabs-card {
  overflow: hidden;
  border: 1px solid #ECECF1;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(22, 26, 52, 0.06);
}

body.page-provider-profile-edit #pe-tabs {
  margin: 0;
  padding: 0 12px;
  border: 0;
  border-radius: 0;
  background: transparent;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: visible;
}

body.page-provider-profile-edit #pe-tabs .tab {
  min-height: 60px;
  padding: 12px 8px;
  border: none;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: #A096B1;
  font-size: 14px;
  font-weight: 800;
  font-family: 'Cairo', sans-serif;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.18s ease, border-color 0.18s ease;
}

body.page-provider-profile-edit #pe-tabs .tab.active {
  color: #673AB7;
  border-bottom-color: #673AB7;
}

body.page-provider-profile-edit .pe-portfolio-link,
body.page-provider-profile-edit .pe-helper-card {
  margin: 0;
}

body.page-provider-profile-edit .pe-portfolio-link {
  display: flex;
  align-items: center;
  gap: 12px;
  direction: rtl;
  text-decoration: none;
  color: #22243a;
  border: 1px solid #ECECF1;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(22, 26, 52, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

body.page-provider-profile-edit .pe-portfolio-link-no-icon {
  justify-content: space-between;
}

body.page-provider-profile-edit .pe-portfolio-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(103, 58, 183, 0.10);
  color: #673AB7;
}

body.page-provider-profile-edit .pe-portfolio-copy {
  flex: 1;
  min-width: 0;
  direction: rtl;
  text-align: right;
}

body.page-provider-profile-edit .pe-portfolio-copy strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: #15152C;
}

body.page-provider-profile-edit .pe-portfolio-copy .text-muted {
  margin-top: 4px;
  color: #4F5976;
  font-size: 13px;
  line-height: 1.6;
}

body.page-provider-profile-edit .pe-portfolio-arrow {
  flex-shrink: 0;
  color: #673AB7;
}

body.page-provider-profile-edit .pe-helper-card {
  display: none;
  border: 1px solid rgba(103, 58, 183, 0.12);
  background:
    radial-gradient(circle at 100% 0%, rgba(103, 58, 183, 0.12), transparent 35%),
    linear-gradient(180deg, #ffffff 0%, #fbfaff 100%);
  box-shadow: 0 12px 24px rgba(22, 26, 52, 0.08);
  border-radius: 24px;
}

body.page-provider-profile-edit .pe-helper-kicker {
  margin: 0;
  color: #673AB7;
  font-size: 12px;
  font-weight: 800;
}

body.page-provider-profile-edit .pe-helper-title {
  margin: 6px 0 0;
  font-size: 22px;
  font-weight: 900;
  color: #15152C;
  line-height: 1.3;
}

body.page-provider-profile-edit .pe-helper-desc {
  margin: 10px 0 0;
  color: #4F5976;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.8;
}

body.page-provider-profile-edit .pe-section-links-card {
  margin: 0;
  border: 1px solid rgba(103, 58, 183, 0.12);
  background: #fff;
  box-shadow: 0 10px 22px rgba(22, 26, 52, 0.08);
}

body.page-provider-profile-edit .pe-section-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}

body.page-provider-profile-edit .pe-section-progress {
  display: grid;
  gap: 10px;
  padding: 14px 14px 12px;
  border-radius: 20px;
  border: 1px solid rgba(14, 94, 133, 0.14);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(237,246,251,0.88));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

body.page-provider-profile-edit .pe-section-progress-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
}

body.page-provider-profile-edit .pe-section-progress-percent {
  color: #16324b;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

body.page-provider-profile-edit .pe-section-progress-title {
  color: #4d6277;
  font-size: 13px;
  font-weight: 800;
}

body.page-provider-profile-edit .pe-section-progress-bar {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(131, 146, 173, 0.18);
  overflow: hidden;
}

body.page-provider-profile-edit .pe-section-progress-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #0f766e 0%, #5c3ca9 100%);
  box-shadow: 0 4px 12px rgba(92, 60, 169, 0.2);
}

body.page-provider-profile-edit .pe-section-progress-hint {
  margin: 0;
  color: #6a7088;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.7;
}

body.page-provider-profile-edit .pe-section-links-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

body.page-provider-profile-edit .pe-section-link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 88px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(103, 58, 183, 0.10);
  text-decoration: none;
  color: #3F3A5D;
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(245,247,252,0.88));
  box-shadow: 0 8px 18px rgba(19, 39, 64, 0.05);
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

body.page-provider-profile-edit .pe-section-link-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

body.page-provider-profile-edit .pe-section-link-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

body.page-provider-profile-edit .pe-section-link-label {
  color: inherit;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
}

body.page-provider-profile-edit .pe-section-link-desc {
  color: #6a7088;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
}

body.page-provider-profile-edit .pe-section-link-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
}

body.page-provider-profile-edit .pe-section-link--violet .pe-section-link-icon {
  background: rgba(102, 61, 144, 0.1);
  color: #663d90;
}

body.page-provider-profile-edit .pe-section-link--indigo .pe-section-link-icon {
  background: rgba(63, 81, 181, 0.1);
  color: #3f51b5;
}

body.page-provider-profile-edit .pe-section-link--teal .pe-section-link-icon {
  background: rgba(0, 150, 136, 0.1);
  color: #009688;
}

body.page-provider-profile-edit .pe-section-link--blue .pe-section-link-icon {
  background: rgba(33, 150, 243, 0.1);
  color: #2196f3;
}

body.page-provider-profile-edit .pe-section-link--mint .pe-section-link-icon {
  background: rgba(15, 118, 110, 0.11);
  color: #0f766e;
}

body.page-provider-profile-edit .pe-section-link--rose .pe-section-link-icon {
  background: rgba(219, 39, 119, 0.1);
  color: #db2777;
}

body.page-provider-profile-edit .pe-section-link--slate .pe-section-link-icon {
  background: rgba(96, 125, 139, 0.1);
  color: #607d8b;
}

body.page-provider-profile-edit .pe-section-link.is-active {
  color: #5C3CA9;
  border-color: rgba(103, 58, 183, 0.28);
  background: linear-gradient(180deg, rgba(255,255,255,1), rgba(244,239,255,0.96));
  box-shadow: 0 14px 28px rgba(92, 60, 169, 0.12);
}

body.page-provider-profile-edit .pe-section-link.is-active .pe-section-link-desc {
  color: #5c3ca9;
}

body.page-provider-profile-edit .pe-section-link.is-complete {
  border-color: rgba(76, 175, 80, 0.22);
}

body.page-provider-profile-edit .pe-section-link.is-incomplete {
  border-color: rgba(160, 171, 189, 0.18);
}

body.page-provider-profile-edit .pe-section-hero {
  margin: 0;
  border: 1px solid rgba(103, 58, 183, 0.14);
  background:
    radial-gradient(circle at 100% 0%, rgba(103, 58, 183, 0.14), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fbf9ff 100%);
  box-shadow: 0 10px 22px rgba(22, 26, 52, 0.08);
}

body.page-provider-profile-edit .pe-section-kicker {
  margin: 0;
  color: #673AB7;
  font-size: 12px;
  font-weight: 900;
}

body.page-provider-profile-edit .pe-section-heading {
  margin: 8px 0 0;
  color: #15152C;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.35;
}

body.page-provider-profile-edit .pe-section-intro {
  margin: 10px 0 0;
  color: #56607C;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.9;
}

body.page-provider-profile-edit .pe-summary-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

body.page-provider-profile-edit .pe-summary-card {
  min-width: 0;
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid #ECECF1;
  background: #fff;
  box-shadow: 0 2px 10px rgba(22, 26, 52, 0.07);
}

body.page-provider-profile-edit .pe-summary-title {
  margin: 0 0 10px;
  color: #15152C;
  font-size: 17px;
  font-weight: 900;
}

body.page-provider-profile-edit .pe-summary-value {
  color: #17192D;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.9;
  word-break: break-word;
}

body.page-provider-profile-edit.pe-section-flow .pe-helper-card {
  display: none;
}

body.page-provider-profile-edit .pe-panel-grid {
  gap: 12px;
}

body.page-provider-profile-edit .pe-panel-grid.active {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

body.page-provider-profile-edit .pe-field {
  margin: 0;
  padding: 20px 22px;
  overflow: hidden;
  border: 1px solid #ECECF1;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(22, 26, 52, 0.06);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

body.page-provider-profile-edit .pe-field.is-editing {
  border-color: rgba(103, 58, 183, 0.42);
  box-shadow: 0 10px 24px rgba(103, 58, 183, 0.10);
}

body.page-provider-profile-edit .pe-field-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

body.page-provider-profile-edit .pe-field-title-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex: 1;
  min-width: 0;
}

body.page-provider-profile-edit .pe-field-icon {
  display: none;
}

body.page-provider-profile-edit .pe-field-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

body.page-provider-profile-edit .pe-field-label {
  font-size: 19px;
  font-weight: 900;
  color: #15152C;
}

body.page-provider-profile-edit .pe-field-hint {
  display: none;
}

body.page-provider-profile-edit .pe-field.pe-additional-field .pe-field-hint,
body.page-provider-profile-edit .pe-additional-overview-field .pe-field-hint {
  display: block;
  color: #667085;
  font-size: 13px;
  line-height: 1.8;
}

body.page-provider-profile-edit .pe-edit-btn {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  color: #673AB7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s ease, transform 0.18s ease;
}

body.page-provider-profile-edit .pe-field-display {
  color: #17192D;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.9;
  white-space: pre-wrap;
  word-break: break-word;
  text-align: right;
}

body.page-provider-profile-edit .pe-field[data-key="fullName"] .pe-field-display {
  font-size: 22px;
  font-weight: 900;
}

body.page-provider-profile-edit .pe-field[data-key="accountType"] .pe-field-display {
  color: #4c2b87;
  font-size: 18px;
  font-weight: 900;
}

body.page-provider-profile-edit .pe-field[data-key="phone"] .pe-field-display,
body.page-provider-profile-edit .pe-field[data-key="mobilePhone"] .pe-field-display,
body.page-provider-profile-edit .pe-field[data-key="website"] .pe-field-display,
body.page-provider-profile-edit .pe-field[data-key="xUrl"] .pe-field-display,
body.page-provider-profile-edit .pe-field[data-key="snapchatUrl"] .pe-field-display,
body.page-provider-profile-edit .pe-field[data-key="instagramUrl"] .pe-field-display,
body.page-provider-profile-edit .pe-field[data-key="facebookUrl"] .pe-field-display,
body.page-provider-profile-edit .pe-field[data-key="tiktokUrl"] .pe-field-display,
body.page-provider-profile-edit .pe-field[data-key="contactEmail"] .pe-field-display,
body.page-provider-profile-edit .pe-field[data-key="accountEmail"] .pe-field-display,
body.page-provider-profile-edit .pe-field[data-key="latitude"] .pe-field-display,
body.page-provider-profile-edit .pe-field[data-key="longitude"] .pe-field-display {
  direction: ltr;
  unicode-bidi: plaintext;
  text-align: right;
}

body.page-provider-profile-edit .pe-additional-overview-field {
  border-color: rgba(13, 148, 136, 0.18);
  background: linear-gradient(135deg, rgba(248, 255, 252, 0.98), rgba(240, 253, 250, 0.94));
  box-shadow: 0 18px 36px rgba(13, 148, 136, 0.08);
}

body.page-provider-profile-edit .pe-additional-overview-body,
body.page-provider-profile-edit .pe-additional-overview-grid {
  display: grid;
  gap: 14px;
}

body.page-provider-profile-edit .pe-additional-overview-card {
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.92);
}

body.page-provider-profile-edit .pe-additional-overview-card--story {
  border-color: rgba(13, 148, 136, 0.18);
}

body.page-provider-profile-edit .pe-additional-overview-card--qualifications {
  border-color: rgba(245, 158, 11, 0.20);
}

body.page-provider-profile-edit .pe-additional-overview-card--experience {
  border-color: rgba(99, 102, 241, 0.18);
}

body.page-provider-profile-edit .pe-additional-overview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

body.page-provider-profile-edit .pe-additional-overview-head strong {
  color: #111827;
  font-size: 15px;
  font-weight: 900;
}

body.page-provider-profile-edit .pe-additional-overview-head span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  color: #334155;
  font-size: 12px;
  font-weight: 900;
}

body.page-provider-profile-edit .pe-additional-overview-metric.is-ready {
  background: rgba(16, 185, 129, 0.14);
  color: #047857;
}

body.page-provider-profile-edit .pe-additional-overview-metric.is-empty {
  background: rgba(148, 163, 184, 0.16);
  color: #475569;
}

body.page-provider-profile-edit .pe-additional-overview-card p {
  margin: 0 0 12px;
  color: #5B607A;
  font-size: 13px;
  line-height: 1.8;
}

body.page-provider-profile-edit .pe-additional-overview-note {
  color: #111827;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 700;
}

body.page-provider-profile-edit .pe-additional-overview-preview,
body.page-provider-profile-edit .pe-additional-story-copy {
  color: #111827;
  font-size: 15px;
  line-height: 1.9;
  white-space: pre-wrap;
}

body.page-provider-profile-edit .pe-additional-tag-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

body.page-provider-profile-edit .pe-additional-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

body.page-provider-profile-edit .pe-additional-tag--qualification {
  background: rgba(245, 158, 11, 0.14);
  color: #92400E;
}

body.page-provider-profile-edit .pe-additional-list {
  display: grid;
  gap: 10px;
}

body.page-provider-profile-edit .pe-additional-list-item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(99, 102, 241, 0.06);
}

body.page-provider-profile-edit .pe-additional-list-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.14);
  color: #4338CA;
  font-size: 12px;
  font-weight: 900;
}

body.page-provider-profile-edit .pe-additional-list-copy {
  color: #1F2937;
  font-size: 14px;
  line-height: 1.8;
}

body.page-provider-profile-edit .pe-field.pe-additional-field {
  border-color: rgba(15, 23, 42, 0.06);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(250, 252, 255, 0.96));
}

body.page-provider-profile-edit .pe-field.pe-additional-field[data-key="details"] {
  border-color: rgba(13, 148, 136, 0.14);
}

body.page-provider-profile-edit .pe-field.pe-additional-field[data-key="qualification"] {
  border-color: rgba(245, 158, 11, 0.16);
}

body.page-provider-profile-edit .pe-field.pe-additional-field[data-key="experiences"] {
  border-color: rgba(99, 102, 241, 0.16);
}

body.page-provider-profile-edit .pe-field-readonly-action {
  margin-top: 6px;
  text-align: right;
}

body.page-provider-profile-edit .pe-field.pe-basic-field {
  border-color: rgba(103, 58, 183, 0.10);
  background:
    radial-gradient(circle at 100% 0%, rgba(122, 90, 248, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(250,248,255,0.94));
}

body.page-provider-profile-edit .pe-field.pe-basic-field .pe-field-head {
  margin-bottom: 14px;
}

body.page-provider-profile-edit .pe-field.pe-basic-field .pe-field-title-wrap {
  gap: 12px;
  align-items: flex-start;
}

body.page-provider-profile-edit .pe-field.pe-basic-field .pe-field-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(103, 58, 183, 0.10);
  color: #6b46c1;
  flex-shrink: 0;
}

body.page-provider-profile-edit .pe-field.pe-basic-field .pe-field-hint {
  display: block;
  color: #79809b;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}

body.page-provider-profile-edit .pe-field.pe-basic-field .pe-edit-btn {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(103, 58, 183, 0.14);
  box-shadow: 0 6px 16px rgba(103, 58, 183, 0.08);
}

body.page-provider-profile-edit .pe-field.pe-basic-field[data-key="accountType"] .pe-field-display {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(103, 58, 183, 0.10);
}

body.page-provider-profile-edit .pe-field.pe-basic-field[data-key="about"] .pe-field-display {
  color: #444b67;
  font-size: 16px;
  line-height: 1.95;
}

body.page-provider-profile-edit .pe-location-editor-shell {
  display: grid;
  gap: 14px;
}

body.page-provider-profile-edit .pe-location-overview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

body.page-provider-profile-edit .pe-location-pill {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(14, 116, 144, 0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(241,248,252,0.92));
}

body.page-provider-profile-edit .pe-location-pill-label {
  color: #6a7088;
  font-size: 12px;
  font-weight: 800;
}

body.page-provider-profile-edit .pe-location-pill-value {
  color: #16324b;
  font-size: 16px;
  font-weight: 900;
}

body.page-provider-profile-edit .pe-location-caption,
body.page-provider-profile-edit .pe-location-city-hint,
body.page-provider-profile-edit .pe-location-editor-meta {
  color: #5b607a;
  font-size: 14px;
  line-height: 1.8;
}

body.page-provider-profile-edit .pe-profile-location-map {
  width: 100%;
  min-height: 300px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(14, 116, 144, 0.14);
  background: #eef7fb;
}

body.page-provider-profile-edit .pe-location-editor-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

body.page-provider-profile-edit .pe-location-status,
body.page-provider-profile-edit .pe-location-coords {
  font-weight: 700;
  color: #334155;
}

body.page-provider-profile-edit .pe-location-status.is-ok,
body.page-provider-profile-edit .pe-location-city-hint.is-ok {
  color: #0f766e;
}

body.page-provider-profile-edit .pe-location-status.is-bad,
body.page-provider-profile-edit .pe-location-city-hint.is-bad {
  color: #c2410c;
}

body.page-provider-profile-edit .pe-location-inputs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

body.page-provider-profile-edit .pe-location-country-input[readonly],
body.page-provider-profile-edit .pe-location-city-input[readonly] {
  background: #f1f5f9;
  color: #475569;
  cursor: not-allowed;
  border-color: rgba(14, 116, 144, 0.15);
}

body.page-provider-profile-edit .pe-location-inputs .form-group::after {
  content: attr(data-map-only-label);
  display: block;
  font-size: 11px;
  color: #94a3b8;
  margin-top: 4px;
  font-weight: 600;
}

body.page-provider-profile-edit .pe-location-geocoding {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(14, 116, 144, 0.06);
  border-radius: 12px;
  color: #0f5a72;
  font-size: 13px;
  font-weight: 600;
  margin-top: 4px;
}

body.page-provider-profile-edit .pe-location-geocoding-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(14, 116, 144, 0.25);
  border-top-color: #0f766e;
  border-radius: 50%;
  animation: pe-location-spin 0.7s linear infinite;
  flex-shrink: 0;
}

@keyframes pe-location-spin {
  to { transform: rotate(360deg); }
}

body.page-provider-profile-edit .pe-location-use-current-btn {
  width: 100%;
}

body.page-provider-profile-edit .pe-field.pe-social-link-field .pe-field-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

body.page-provider-profile-edit .pe-language-summary,
body.page-provider-profile-edit .pe-map-caption,
body.page-provider-profile-edit .pe-category-caption,
body.page-provider-profile-edit .pe-radius-live,
body.page-provider-profile-edit .pe-radius-helper,
body.page-provider-profile-edit .pe-map-meta {
  color: #5B607A;
  font-size: 14px;
  line-height: 1.8;
}

body.page-provider-profile-edit .pe-langloc-overview-field {
  border-color: rgba(22, 163, 74, 0.14);
  background:
    radial-gradient(circle at top left, rgba(14, 165, 233, 0.10), transparent 32%),
    radial-gradient(circle at bottom right, rgba(16, 185, 129, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(248, 255, 252, 0.98), rgba(240, 249, 255, 0.96));
  box-shadow: 0 20px 42px rgba(14, 116, 144, 0.08);
}

body.page-provider-profile-edit .pe-langloc-overview-body,
body.page-provider-profile-edit .pe-langloc-overview-grid {
  display: grid;
  gap: 14px;
}

body.page-provider-profile-edit .pe-langloc-hero {
  display: grid;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(148, 163, 184, 0.14);
}

body.page-provider-profile-edit .pe-langloc-hero-copy {
  display: grid;
  gap: 6px;
}

body.page-provider-profile-edit .pe-langloc-hero-copy strong {
  color: #103b3f;
  font-size: 18px;
  font-weight: 900;
}

body.page-provider-profile-edit .pe-langloc-hero-copy span {
  color: #4b5563;
  font-size: 14px;
  line-height: 1.9;
}

body.page-provider-profile-edit .pe-langloc-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

body.page-provider-profile-edit .pe-langloc-stat {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(240,249,255,0.92));
  border: 1px solid rgba(14, 165, 233, 0.12);
  text-align: center;
}

body.page-provider-profile-edit .pe-langloc-stat strong {
  color: #0f766e;
  font-size: 20px;
  font-weight: 900;
}

body.page-provider-profile-edit .pe-langloc-stat em {
  font-style: normal;
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
}

body.page-provider-profile-edit .pe-langloc-overview-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.page-provider-profile-edit .pe-langloc-card {
  display: grid;
  gap: 10px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
}

body.page-provider-profile-edit .pe-langloc-card--language {
  border-color: rgba(124, 58, 237, 0.16);
}

body.page-provider-profile-edit .pe-langloc-card--location {
  border-color: rgba(14, 116, 144, 0.18);
}

body.page-provider-profile-edit .pe-langloc-card--radius {
  border-color: rgba(16, 185, 129, 0.18);
}

body.page-provider-profile-edit .pe-langloc-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

body.page-provider-profile-edit .pe-langloc-card-head strong {
  color: #152238;
  font-size: 15px;
  font-weight: 900;
}

body.page-provider-profile-edit .pe-langloc-card-head span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  color: #334155;
  font-size: 12px;
  font-weight: 900;
}

body.page-provider-profile-edit .pe-langloc-card p {
  margin: 0;
  color: #5b607a;
  font-size: 13px;
  line-height: 1.8;
}

body.page-provider-profile-edit .pe-langloc-tags,
body.page-provider-profile-edit .pe-langloc-scope-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

body.page-provider-profile-edit .pe-langloc-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}

body.page-provider-profile-edit .pe-langloc-tag--language {
  background: rgba(124, 58, 237, 0.12);
  color: #6d28d9;
}

body.page-provider-profile-edit .pe-langloc-tag--local {
  background: rgba(16, 185, 129, 0.14);
  color: #047857;
}

body.page-provider-profile-edit .pe-langloc-tag--remote {
  background: rgba(14, 165, 233, 0.14);
  color: #0f766e;
}

body.page-provider-profile-edit .pe-langloc-location-summary {
  display: grid;
  gap: 6px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(14, 116, 144, 0.06);
}

body.page-provider-profile-edit .pe-langloc-location-summary strong {
  color: #0f172a;
  font-size: 14px;
  font-weight: 900;
}

body.page-provider-profile-edit .pe-langloc-location-summary span {
  color: #4b5563;
  font-size: 13px;
  font-weight: 700;
}

body.page-provider-profile-edit .pe-langloc-field {
  border-color: rgba(14, 116, 144, 0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,251,253,0.94));
}

body.page-provider-profile-edit .pe-langloc-field .pe-field-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

body.page-provider-profile-edit .pe-langloc-field .pe-field-hint,
body.page-provider-profile-edit .pe-langloc-overview-field .pe-field-hint {
  display: block;
  color: #64748b;
  font-size: 13px;
  line-height: 1.8;
}

body.page-provider-profile-edit .pe-langloc-field--language .pe-field-icon {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.16), rgba(168, 85, 247, 0.10));
  color: #6d28d9;
}

body.page-provider-profile-edit .pe-langloc-field--map .pe-field-icon,
body.page-provider-profile-edit .pe-langloc-overview-field .pe-field-icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.16), rgba(16, 185, 129, 0.10));
  color: #0f766e;
}

body.page-provider-profile-edit .pe-langloc-field--radius .pe-field-icon {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.16), rgba(52, 211, 153, 0.10));
  color: #047857;
}

@media (max-width: 720px) {
  body.page-provider-profile-edit .pe-langloc-hero-stats,
  body.page-provider-profile-edit .pe-langloc-overview-grid {
    grid-template-columns: 1fr;
  }

  body.page-provider-profile-edit .pe-langloc-card-head,
  body.page-provider-profile-edit .pe-langloc-hero {
    gap: 12px;
  }
}

body.page-provider-profile-edit .pe-geo-scope-explainer {
  margin: 4px 0 2px;
}

body.page-provider-profile-edit .pe-geo-scope-explainer--compact {
  margin-top: 10px;
}

body.page-provider-profile-edit .pe-scope-summary-grid {
  display: grid;
  gap: 12px;
}

body.page-provider-profile-edit .pe-scope-card {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

body.page-provider-profile-edit .pe-scope-card--local {
  border-color: rgba(16, 185, 129, 0.18);
  background: linear-gradient(135deg, rgba(240, 253, 244, 0.96), rgba(236, 253, 245, 0.92));
}

body.page-provider-profile-edit .pe-scope-card--remote {
  border-color: rgba(14, 165, 233, 0.18);
  background: linear-gradient(135deg, rgba(240, 249, 255, 0.96), rgba(224, 242, 254, 0.92));
}

body.page-provider-profile-edit .pe-scope-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

body.page-provider-profile-edit .pe-scope-card-head strong {
  color: #16324b;
  font-size: 14px;
  font-weight: 900;
}

body.page-provider-profile-edit .pe-scope-card-head span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  color: #334155;
  font-size: 12px;
  font-weight: 900;
}

body.page-provider-profile-edit .pe-scope-card p {
  margin: 0 0 10px;
  color: #5B607A;
  font-size: 13px;
  line-height: 1.8;
}

body.page-provider-profile-edit .pe-scope-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

body.page-provider-profile-edit .pe-scope-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}

body.page-provider-profile-edit .pe-scope-tag--local {
  background: rgba(16, 185, 129, 0.14);
  color: #047857;
}

body.page-provider-profile-edit .pe-scope-tag--remote {
  background: rgba(14, 165, 233, 0.14);
  color: #0f766e;
}

body.page-provider-profile-edit .pe-category-note-band {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(103, 58, 183, 0.14);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 240, 255, 0.94));
  box-shadow: 0 14px 30px rgba(103, 58, 183, 0.08);
}

body.page-provider-profile-edit .pe-category-note-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  color: #6d28d9;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.16), rgba(168, 85, 247, 0.08));
}

body.page-provider-profile-edit .pe-category-note-copy {
  display: grid;
  gap: 4px;
}

body.page-provider-profile-edit .pe-category-note-copy strong {
  color: #241945;
  font-size: 15px;
  font-weight: 900;
}

body.page-provider-profile-edit .pe-category-note-copy span {
  color: #5b607a;
  font-size: 14px;
  line-height: 1.8;
}

body.page-provider-profile-edit .pe-category-summary {
  display: grid;
  gap: 12px;
}

body.page-provider-profile-edit .pe-category-summary-group {
  display: grid;
  gap: 10px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(103, 58, 183, 0.12);
  background: linear-gradient(135deg, rgba(251, 250, 255, 0.98), rgba(245, 241, 255, 0.92));
  box-shadow: 0 10px 24px rgba(103, 58, 183, 0.06);
}

body.page-provider-profile-edit .pe-category-summary-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

body.page-provider-profile-edit .pe-category-summary-head strong {
  color: #37285e;
  font-size: 15px;
  font-weight: 900;
}

body.page-provider-profile-edit .pe-category-summary-head span {
  color: #5b607a;
  font-size: 12px;
  font-weight: 800;
}

body.page-provider-profile-edit .pe-category-summary-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

body.page-provider-profile-edit .pe-category-summary-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(103, 58, 183, 0.08);
  color: #4c1d95;
  font-size: 13px;
  font-weight: 800;
}

body.page-provider-profile-edit .pe-category-summary-tag em {
  font-style: normal;
  color: #9a3412;
  font-size: 11px;
  font-weight: 900;
}

body.page-provider-profile-edit .pe-category-summary-tag.is-urgent {
  background: linear-gradient(135deg, rgba(251, 146, 60, 0.16), rgba(249, 115, 22, 0.08));
  color: #9a3412;
}

body.page-provider-profile-edit .pe-category-toolbar {
  display: flex;
}

body.page-provider-profile-edit .pe-category-toolbar .btn {
  width: 100%;
}

body.page-provider-profile-edit .pe-category-groups {
  display: grid;
  gap: 12px;
}

body.page-provider-profile-edit .pe-category-group {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(103, 58, 183, 0.12);
  background: linear-gradient(180deg, rgba(250, 248, 255, 0.96), rgba(255, 255, 255, 0.98));
  box-shadow: 0 18px 40px rgba(85, 51, 140, 0.08);
}

body.page-provider-profile-edit .pe-category-group-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

body.page-provider-profile-edit .pe-category-group-head-copy {
  display: grid;
  gap: 4px;
}

body.page-provider-profile-edit .pe-category-group-title {
  color: #241945;
  font-size: 15px;
  font-weight: 900;
}

body.page-provider-profile-edit .pe-category-group-meta {
  color: #6b7280;
  font-size: 13px;
  line-height: 1.7;
}

body.page-provider-profile-edit .pe-category-remove {
  border: none;
  background: transparent;
  color: #9f1239;
  font-size: 13px;
  font-weight: 800;
}

body.page-provider-profile-edit .pe-category-remove.hidden {
  display: none;
}

body.page-provider-profile-edit .pe-category-group-grid {
  display: grid;
  gap: 12px;
}

body.page-provider-profile-edit .pe-category-checklist {
  display: grid;
  gap: 12px;
}

body.page-provider-profile-edit .pe-category-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 68px;
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(103, 58, 183, 0.14);
  background: #fff;
  box-shadow: 0 10px 24px rgba(103, 58, 183, 0.05);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease, background .2s ease;
  position: relative;
  overflow: hidden;
}

body.page-provider-profile-edit .pe-category-option:hover {
  border-color: rgba(103, 58, 183, 0.24);
  transform: translateY(-1px);
}

body.page-provider-profile-edit .pe-category-option.is-selected {
  border-color: rgba(109, 40, 217, 0.28);
  background: linear-gradient(135deg, rgba(251, 250, 255, 0.98), rgba(245, 241, 255, 0.9));
}

body.page-provider-profile-edit .pe-category-option.is-urgent {
  border-color: rgba(249, 115, 22, 0.32);
  background: linear-gradient(135deg, rgba(255, 251, 245, 0.98), rgba(255, 243, 232, 0.94));
  box-shadow: 0 14px 32px rgba(249, 115, 22, 0.12);
}

body.page-provider-profile-edit .pe-category-option.is-remote {
  border-color: rgba(14, 116, 144, 0.28);
  background: linear-gradient(135deg, rgba(240, 249, 255, 0.98), rgba(224, 242, 254, 0.94));
  box-shadow: 0 14px 30px rgba(14, 116, 144, 0.10);
}

body.page-provider-profile-edit .pe-category-option.is-urgent::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, #fb923c, #f97316);
}

body.page-provider-profile-edit .pe-category-option.is-remote::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, #06b6d4, #0ea5e9);
}

body.page-provider-profile-edit .pe-category-option.is-remote.is-urgent::before {
  background: linear-gradient(180deg, #f97316, #0ea5e9);
}

body.page-provider-profile-edit .pe-category-option-check {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  cursor: pointer;
}

body.page-provider-profile-edit .pe-category-option-control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

body.page-provider-profile-edit .pe-category-option-control input {
  width: 18px;
  height: 18px;
  accent-color: #673ab7;
}

body.page-provider-profile-edit .pe-category-option-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

body.page-provider-profile-edit .pe-category-option-title {
  color: #2f3350;
  font-size: 15px;
  font-weight: 900;
}

body.page-provider-profile-edit .pe-category-option.is-urgent .pe-category-option-title {
  color: #7c2d12;
}

body.page-provider-profile-edit .pe-category-option-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.08);
  color: #5b21b6;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}

body.page-provider-profile-edit .pe-category-option-status.is-normal {
  background: rgba(103, 58, 183, 0.09);
  color: #5b21b6;
}

body.page-provider-profile-edit .pe-category-option-status.is-urgent {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.18), rgba(251, 146, 60, 0.28));
  color: #9a3412;
  box-shadow: inset 0 0 0 1px rgba(249, 115, 22, 0.18);
}

body.page-provider-profile-edit .pe-category-option-scope {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.14);
  color: #475569;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}

body.page-provider-profile-edit .pe-category-option-scope.is-local {
  background: rgba(16, 185, 129, 0.14);
  color: #047857;
}

body.page-provider-profile-edit .pe-category-option-scope.is-remote {
  background: rgba(14, 165, 233, 0.16);
  color: #0f766e;
}

body.page-provider-profile-edit .pe-category-option-note {
  color: #6b7280;
  font-size: 13px;
  line-height: 1.7;
}

body.page-provider-profile-edit .pe-category-option.is-urgent .pe-category-option-note {
  color: #9a3412;
  font-weight: 700;
}

body.page-provider-profile-edit .pe-category-option.is-remote .pe-category-option-note {
  color: #0f766e;
  font-weight: 700;
}

body.page-provider-profile-edit .pe-category-option-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

body.page-provider-profile-edit .pe-category-urgent-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  min-height: 42px;
  border: 1px solid rgba(249, 115, 22, 0.18);
  border-radius: 999px;
  background: rgba(255, 247, 237, 0.85);
  color: #9a3412;
  font-size: 13px;
  font-weight: 900;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease, opacity .2s ease;
}

body.page-provider-profile-edit .pe-category-urgent-toggle svg {
  flex: 0 0 auto;
}

body.page-provider-profile-edit .pe-category-urgent-toggle.is-active {
  border-color: rgba(249, 115, 22, 0.34);
  background: linear-gradient(135deg, rgba(255, 237, 213, 0.98), rgba(254, 215, 170, 0.95));
  box-shadow: 0 10px 20px rgba(249, 115, 22, 0.16);
  transform: translateY(-1px);
}

body.page-provider-profile-edit .pe-category-urgent-toggle:disabled {
  opacity: .5;
  cursor: not-allowed;
  box-shadow: none;
}

body.page-provider-profile-edit .pe-category-empty {
  margin: 0;
  color: #7a8098;
  font-size: 14px;
  line-height: 1.8;
}

body.page-provider-profile-edit .pe-language-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body.page-provider-profile-edit .pe-language-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 108px;
  min-height: 48px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(103, 58, 183, 0.18);
  background: #F7F4FF;
  color: #4D3688;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.18s ease;
}

body.page-provider-profile-edit .pe-language-chip input {
  display: none;
}

body.page-provider-profile-edit .pe-language-chip.is-selected {
  border-color: #673AB7;
  background: linear-gradient(135deg, #6B46C1 0%, #7C3AED 100%);
  color: #fff;
  box-shadow: 0 10px 18px rgba(103, 58, 183, 0.18);
}

body.page-provider-profile-edit .pe-language-other-wrap.hidden {
  display: none;
}

body.page-provider-profile-edit .pe-service-map {
  width: 100%;
  min-height: 320px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(103, 58, 183, 0.16);
  background: #EEF2FF;
}

body.page-provider-profile-edit .pe-map-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

body.page-provider-profile-edit .pe-map-city,
body.page-provider-profile-edit .pe-map-coords {
  color: #303550;
  font-weight: 700;
}

body.page-provider-profile-edit .pe-radius-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 110px;
  gap: 12px;
  align-items: center;
}

body.page-provider-profile-edit .pe-radius-range {
  width: 100%;
  accent-color: #673AB7;
}

body.page-provider-profile-edit .pe-seo-preview-shell {
  display: grid;
  gap: 16px;
}

body.page-provider-profile-edit .pe-seo-search-card {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(37, 99, 235, 0.14);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,249,255,0.96));
}

body.page-provider-profile-edit .pe-seo-search-title {
  color: #1a0dab;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

body.page-provider-profile-edit .pe-seo-search-url,
body.page-provider-profile-edit .pe-seo-slug-display,
body.page-provider-profile-edit .pe-seo-slug-preview {
  color: #188038;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
  direction: ltr;
  unicode-bidi: plaintext;
  text-align: left;
  word-break: break-all;
}

body.page-provider-profile-edit .pe-seo-search-description,
body.page-provider-profile-edit .pe-seo-preview-note {
  margin: 0;
  color: #4b5565;
  font-size: 14px;
  line-height: 1.8;
}

body.page-provider-profile-edit .pe-seo-metric-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

body.page-provider-profile-edit .pe-seo-metric-card {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(103, 58, 183, 0.12);
  background: rgba(247, 244, 255, 0.72);
}

body.page-provider-profile-edit .pe-seo-metric-card strong {
  color: #33275a;
  font-size: 16px;
}

body.page-provider-profile-edit .pe-seo-metric-card span,
body.page-provider-profile-edit .pe-seo-advice {
  color: #5d647b;
  font-size: 13px;
  line-height: 1.7;
}

body.page-provider-profile-edit .pe-seo-keywords-wrap {
  display: grid;
  gap: 10px;
}

body.page-provider-profile-edit .pe-seo-keywords-label {
  color: #42345f;
  font-size: 13px;
  font-weight: 800;
}

body.page-provider-profile-edit .pe-seo-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

body.page-provider-profile-edit .pe-seo-keyword-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: #1d4ed8;
  font-size: 12px;
  font-weight: 800;
}

body.page-provider-profile-edit .pe-seo-field-meta {
  display: grid;
  gap: 8px;
}

body.page-provider-profile-edit .pe-seo-counter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  background: rgba(100, 116, 139, 0.12);
  color: #475569;
}

body.page-provider-profile-edit .pe-seo-counter.is-good {
  background: rgba(46, 125, 50, 0.12);
  color: #2e7d32;
}

body.page-provider-profile-edit .pe-seo-counter.is-warning {
  background: rgba(245, 124, 0, 0.12);
  color: #ef6c00;
}

body.page-provider-profile-edit .pe-seo-counter.is-danger {
  background: rgba(211, 47, 47, 0.12);
  color: #c62828;
}

body.page-provider-profile-edit .pe-seo-counter.is-empty {
  background: rgba(100, 116, 139, 0.12);
  color: #64748b;
}

body.page-provider-profile-edit .pe-empty-value {
  color: #8A8FA7;
  font-size: 14px;
  font-weight: 700;
}

body.page-provider-profile-edit .pe-inline-link {
  color: #5C3CA9;
  text-decoration: none;
  word-break: break-all;
}

body.page-provider-profile-edit .pe-field-edit {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 4px;
}

body.page-provider-profile-edit .pe-field-edit .form-input,
body.page-provider-profile-edit .pe-field-edit .form-select,
body.page-provider-profile-edit .pe-field-edit .form-textarea {
  width: 100%;
  min-height: 58px;
  padding: 14px 18px;
  border-radius: 22px;
  border: 3px solid rgba(103, 58, 183, 0.88);
  background: #fff;
  box-shadow: none;
  color: #312B55;
  font-size: 18px;
  font-weight: 600;
}

body.page-provider-profile-edit .pe-field-edit .form-textarea,
body.page-provider-profile-edit .pe-field-edit textarea.pe-input {
  min-height: 120px;
  resize: vertical;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.8;
}

body.page-provider-profile-edit .pe-field-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

body.page-provider-profile-edit .pe-field-actions .btn {
  width: 100%;
  min-height: 46px;
  border-radius: 12px;
}

@media (hover: hover) and (pointer: fine) {
  body.page-provider-profile-edit .pe-edit-btn:hover {
    transform: translateY(-1px);
  }

  body.page-provider-profile-edit .pe-section-link:hover {
    transform: translateY(-1px);
    border-color: rgba(103, 58, 183, 0.2);
    background: rgba(103, 58, 183, 0.06);
  }

  body.page-provider-profile-edit .pe-portfolio-link:hover,
  body.page-provider-profile-edit .pe-field:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(22, 26, 52, 0.10);
  }
}

@media (min-width: 761px) {
  body.page-provider-profile-edit .pe-page-shell {
    max-width: 1060px;
    padding: 16px 22px calc(var(--bottom-nav-height) + 22px);
  }

  body.page-provider-profile-edit .pe-page-title {
    font-size: 34px;
  }

  body.page-provider-profile-edit .pe-layout {
    display: grid;
    grid-template-columns: minmax(280px, 320px) minmax(0, 1fr);
    align-items: start;
    gap: 20px;
  }

  body.page-provider-profile-edit .pe-sidebar {
    position: sticky;
    top: 18px;
  }

  body.page-provider-profile-edit .pe-helper-card {
    display: block;
  }

  body.page-provider-profile-edit .pe-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.page-provider-profile-edit .pe-panel-grid.active {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.page-provider-profile-edit #pe-panel-account.pe-panel-grid.active {
    grid-template-columns: minmax(0, 1.28fr) minmax(220px, 0.72fr);
    grid-template-areas:
      "fullName accountType"
      "about accountType"
      "mobilePhone mobilePhone"
      "location location"
      "accountEmail accountEmail";
    align-items: stretch;
  }

  body.page-provider-profile-edit #pe-panel-account .pe-field[data-key="fullName"] {
    grid-area: fullName;
    min-height: 136px;
  }

  body.page-provider-profile-edit #pe-panel-account .pe-field[data-key="accountType"] {
    grid-area: accountType;
    min-height: 136px;
  }

  body.page-provider-profile-edit #pe-panel-account .pe-field[data-key="about"] {
    grid-area: about;
    min-height: 148px;
  }

  body.page-provider-profile-edit #pe-panel-account .pe-field[data-key="mobilePhone"] {
    grid-area: mobilePhone;
  }

  body.page-provider-profile-edit #pe-panel-account .pe-field[data-key="location"] {
    grid-area: location;
  }

  body.page-provider-profile-edit #pe-panel-account .pe-field[data-key="accountEmail"] {
    grid-area: accountEmail;
  }

  body.page-provider-profile-edit.pe-section-flow .pe-layout {
    grid-template-columns: minmax(250px, 292px) minmax(0, 1fr);
  }

  body.page-provider-profile-edit.pe-section-flow .pe-panel-grid.active {
    grid-template-columns: 1fr;
  }

  body.page-provider-profile-edit .pe-field-wide {
    grid-column: 1 / -1;
  }

  body.page-provider-profile-edit .pe-field {
    padding: 22px;
  }

  body.page-provider-profile-edit .pe-field-label {
    font-size: 20px;
  }

  body.page-provider-profile-edit .pe-field-display {
    font-size: 17px;
  }

  body.page-provider-profile-edit .pe-field-actions {
    flex-direction: row;
    justify-content: flex-end;
  }

  body.page-provider-profile-edit .pe-field-actions.has-secondary {
    justify-content: space-between;
  }

  body.page-provider-profile-edit .pe-field-actions .btn {
    width: auto;
    min-width: 132px;
  }

  body.page-provider-profile-edit .pe-map-meta {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  body.page-provider-profile-edit .pe-location-editor-meta {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (max-width: 768px) {
  body.page-provider-profile-edit .pe-page-title {
    font-size: 21px;
  }

  body.page-provider-profile-edit .pe-avatar-wrap {
    width: 80px;
    height: 80px;
    border-radius: 22px;
  }

  body.page-provider-profile-edit .pe-radius-controls {
    grid-template-columns: 1fr;
  }

  body.page-provider-profile-edit .pe-display-name {
    font-size: 21px;
  }

  body.page-provider-profile-edit #pe-tabs .tab {
    min-height: 58px;
    font-size: 13px;
  }

  body.page-provider-profile-edit .pe-field-display {
    font-size: 16px;
  }

  body.page-provider-profile-edit .pe-field[data-key="fullName"] .pe-field-display {
    font-size: 18px;
  }

  body.page-provider-profile-edit .pe-location-overview,
  body.page-provider-profile-edit .pe-location-inputs {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1024px) {
  body.page-provider-profile-edit .pe-page-shell {
    max-width: 1240px;
    padding: 22px 28px 34px;
  }

  body.page-provider-profile-edit .pe-page-title {
    font-size: 40px;
  }

  body.page-provider-profile-edit .pe-sidebar {
    top: 86px;
  }
}

/* ------------------------------------------------------------------
   PROVIDER PROFILE EDIT PREMIUM REFINEMENT
   ------------------------------------------------------------------ */
body.page-provider-profile-edit.page-provider-profile-edit-premium {
  --pe-premium-ink: #16263a;
  --pe-premium-muted: #5b6f84;
  --pe-premium-main: #0f766e;
  --pe-premium-main-strong: #0a5a54;
  --pe-premium-line: rgba(15, 71, 116, 0.2);
  background:
    radial-gradient(680px 340px at 88% -8%, rgba(14, 116, 144, 0.22), transparent 62%),
    radial-gradient(620px 300px at -8% 18%, rgba(15, 118, 110, 0.16), transparent 62%),
    linear-gradient(180deg, #eff7fc 0%, #f4f7fb 50%, #f6f7fb 100%);
}

body.page-provider-profile-edit.page-provider-profile-edit-premium .page-content {
  background:
    radial-gradient(circle at 100% 0%, rgba(14, 116, 144, 0.16), transparent 30%),
    radial-gradient(circle at 8% 14%, rgba(15, 118, 110, 0.12), transparent 26%),
    linear-gradient(180deg, #f2f8fc 0%, #eef3f9 100%);
}

body.page-provider-profile-edit.page-provider-profile-edit-premium .pe-page-shell-premium {
  position: relative;
}

body.page-provider-profile-edit.page-provider-profile-edit-premium .pe-page-header {
  align-items: flex-start;
  margin-bottom: 14px;
}

body.page-provider-profile-edit.page-provider-profile-edit-premium .pe-page-title-wrap {
  flex: 1;
  display: grid;
  gap: 4px;
  text-align: center;
}

body.page-provider-profile-edit.page-provider-profile-edit-premium .pe-page-title {
  color: var(--pe-premium-ink);
  letter-spacing: -0.25px;
}

body.page-provider-profile-edit.page-provider-profile-edit-premium .pe-page-subtitle {
  margin: 0;
  color: var(--pe-premium-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.8;
}

body.page-provider-profile-edit.page-provider-profile-edit-premium .pe-tabs-card {
  border-color: rgba(14, 94, 133, 0.2);
  background:
    linear-gradient(180deg, rgba(237, 246, 251, 0.92), rgba(237, 246, 251, 0.7)),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 32px rgba(12, 34, 61, 0.12);
  backdrop-filter: blur(10px);
}

body.page-provider-profile-edit.page-provider-profile-edit-premium #pe-tabs {
  padding: 8px;
  gap: 8px;
  grid-template-columns: 1fr;
}

body.page-provider-profile-edit.page-provider-profile-edit-premium #pe-tabs .tab {
  min-height: 74px;
  border: 1px solid transparent;
  border-radius: 16px;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.56);
  color: #4f667a;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "icon main"
    "icon sub";
  column-gap: 8px;
  row-gap: 2px;
  align-content: center;
  text-align: right;
  padding: 10px 9px;
  min-width: 0;
  white-space: normal;
  overflow: hidden;
}

body.page-provider-profile-edit.page-provider-profile-edit-premium #pe-tabs .tab .pe-tab-icon {
  grid-area: icon;
  width: 24px;
  height: 24px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(14, 94, 133, 0.12);
  color: #4e687f;
}

body.page-provider-profile-edit.page-provider-profile-edit-premium #pe-tabs .tab .pe-tab-main {
  grid-area: main;
  color: var(--pe-premium-ink);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

body.page-provider-profile-edit.page-provider-profile-edit-premium #pe-tabs .tab .pe-tab-sub {
  grid-area: sub;
  color: var(--pe-premium-muted);
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1.3;
  min-width: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body.page-provider-profile-edit.page-provider-profile-edit-premium #pe-tabs .tab.active {
  color: var(--pe-premium-main-strong);
  border-color: rgba(15, 118, 110, 0.34);
  background: #fff;
  box-shadow: 0 10px 18px rgba(13, 48, 74, 0.14);
}

body.page-provider-profile-edit.page-provider-profile-edit-premium #pe-tabs .tab.active .pe-tab-icon {
  color: var(--pe-premium-main-strong);
  background: rgba(15, 118, 110, 0.14);
}

body.page-provider-profile-edit.page-provider-profile-edit-premium #pe-tabs .tab.active .pe-tab-main,
body.page-provider-profile-edit.page-provider-profile-edit-premium #pe-tabs .tab.active .pe-tab-sub {
  color: var(--pe-premium-main-strong);
}

body.page-provider-profile-edit.page-provider-profile-edit-premium .pe-workflow-card {
  border: 1px solid rgba(14, 94, 133, 0.2);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(14, 116, 144, 0.12), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(242, 251, 255, 0.95));
  box-shadow: 0 14px 30px rgba(12, 34, 61, 0.1);
  display: grid;
  gap: 12px;
}

body.page-provider-profile-edit.page-provider-profile-edit-premium .pe-workflow-head {
  display: grid;
  gap: 4px;
}

body.page-provider-profile-edit.page-provider-profile-edit-premium .pe-workflow-title {
  margin: 0;
  color: var(--pe-premium-ink);
  font-size: 16px;
  font-weight: 900;
}

body.page-provider-profile-edit.page-provider-profile-edit-premium .pe-workflow-progress {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

body.page-provider-profile-edit.page-provider-profile-edit-premium .pe-workflow-step {
  border: 1px solid rgba(14, 94, 133, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.84);
  min-height: 54px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 3px;
  cursor: pointer;
  transition: all 0.18s ease;
}

body.page-provider-profile-edit.page-provider-profile-edit-premium .pe-workflow-step-index {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 900;
  color: #3b5f78;
  background: rgba(14, 116, 144, 0.14);
}

body.page-provider-profile-edit.page-provider-profile-edit-premium .pe-workflow-step-label {
  font-size: 11px;
  font-weight: 800;
  color: #3e6079;
}

body.page-provider-profile-edit.page-provider-profile-edit-premium .pe-workflow-step.is-active {
  border-color: rgba(15, 118, 110, 0.36);
  background: rgba(15, 118, 110, 0.1);
}

body.page-provider-profile-edit.page-provider-profile-edit-premium .pe-workflow-step.is-active .pe-workflow-step-index {
  color: #fff;
  background: var(--pe-premium-main-strong);
}

body.page-provider-profile-edit.page-provider-profile-edit-premium .pe-workflow-step.is-active .pe-workflow-step-label {
  color: var(--pe-premium-main-strong);
}

body.page-provider-profile-edit.page-provider-profile-edit-premium .pe-workflow-tip {
  border: 1px dashed rgba(14, 94, 133, 0.28);
  border-radius: 14px;
  padding: 10px 12px;
  background: rgba(14, 116, 144, 0.07);
}

body.page-provider-profile-edit.page-provider-profile-edit-premium .pe-workflow-tip strong {
  color: var(--pe-premium-ink);
  font-size: 13px;
  font-weight: 900;
}

body.page-provider-profile-edit.page-provider-profile-edit-premium .pe-workflow-tip p {
  margin: 5px 0 0;
  color: var(--pe-premium-muted);
  font-size: 12px;
  line-height: 1.7;
}

body.page-provider-profile-edit.page-provider-profile-edit-premium .pe-helper-card {
  display: block;
  border-color: rgba(14, 94, 133, 0.2);
  background:
    radial-gradient(circle at top right, rgba(14, 116, 144, 0.14), transparent 44%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 251, 255, 0.95));
  box-shadow: 0 14px 30px rgba(12, 34, 61, 0.1);
}

body.page-provider-profile-edit.page-provider-profile-edit-premium .pe-helper-title {
  color: var(--pe-premium-ink);
}

body.page-provider-profile-edit.page-provider-profile-edit-premium .pe-helper-desc {
  color: var(--pe-premium-muted);
}

body.page-provider-profile-edit.page-provider-profile-edit-premium .pe-helper-points {
  margin-top: 10px;
  display: grid;
  gap: 6px;
}

body.page-provider-profile-edit.page-provider-profile-edit-premium .pe-helper-points span {
  display: block;
  padding: 7px 10px;
  border-radius: 10px;
  background: rgba(15, 118, 110, 0.1);
  color: #0f5c57;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.7;
}

body.page-provider-profile-edit.page-provider-profile-edit-premium .pe-field {
  border-color: rgba(14, 94, 133, 0.18);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 24px rgba(12, 34, 61, 0.08);
}

body.page-provider-profile-edit.page-provider-profile-edit-premium .pe-field-label {
  color: var(--pe-premium-ink);
  font-size: 18px;
}

body.page-provider-profile-edit.page-provider-profile-edit-premium .pe-field-hint {
  display: block;
  color: var(--pe-premium-muted);
  font-size: 11.5px;
  line-height: 1.6;
}

body.page-provider-profile-edit.page-provider-profile-edit-premium .pe-field-icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
  margin-top: 2px;
  color: #36637c;
}

body.page-provider-profile-edit.page-provider-profile-edit-premium .pe-field-title-wrap {
  gap: 8px;
}

@media (max-width: 768px) {
  body.page-provider-profile-edit.page-provider-profile-edit-premium #pe-tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  body.page-provider-profile-edit.page-provider-profile-edit-premium #pe-tabs::-webkit-scrollbar {
    display: none;
  }

  body.page-provider-profile-edit.page-provider-profile-edit-premium #pe-tabs .tab {
    flex: 0 0 auto;
    min-width: 138px;
    min-height: 56px;
    grid-template-areas: "icon main";
    align-items: center;
    padding: 8px 10px;
  }

  body.page-provider-profile-edit.page-provider-profile-edit-premium #pe-tabs .tab .pe-tab-sub {
    display: none;
  }

  body.page-provider-profile-edit.page-provider-profile-edit-premium #pe-tabs .tab .pe-tab-main {
    font-size: 12px;
  }

  body.page-provider-profile-edit.page-provider-profile-edit-premium .pe-workflow-progress {
    grid-template-columns: 1fr;
  }

  body.page-provider-profile-edit.page-provider-profile-edit-premium .pe-page-subtitle {
    font-size: 12px;
  }
}

/* ══════════════════════════════════════════════
   Provider Portfolio
   ══════════════════════════════════════════════ */
body.page-provider-portfolio {
  background: #F3F4FC;
}

body.page-provider-portfolio .page-content {
  background:
    radial-gradient(circle at 94% 0%, rgba(103, 58, 183, 0.12), transparent 34%),
    radial-gradient(circle at 8% 18%, rgba(33, 150, 243, 0.08), transparent 28%),
    linear-gradient(180deg, #f6f7fc 0%, #eef0f9 100%);
}

body.page-provider-portfolio #site-footer {
  display: none !important;
}

body.page-provider-portfolio .page-shell {
  max-width: 760px;
  margin: 0 auto;
  padding: 10px 14px calc(var(--bottom-nav-height, 84px) + 18px);
}

body.page-provider-portfolio .pf-page-header {
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

body.page-provider-portfolio .pf-page-header h1 {
  margin: 0;
  text-align: center;
  color: #15152C;
  font-size: 24px;
  font-weight: 900;
}

body.page-provider-portfolio .pf-add-btn {
  color: #673AB7;
}

body.page-provider-portfolio .pf-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  border: 1px solid rgba(103, 58, 183, 0.12);
  background:
    radial-gradient(circle at 100% 0%, rgba(103, 58, 183, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fbf9ff 100%);
  box-shadow: 0 12px 24px rgba(22, 26, 52, 0.08);
}

body.page-provider-portfolio .pf-hero-kicker {
  margin: 0;
  color: #673AB7;
  font-size: 12px;
  font-weight: 900;
}

body.page-provider-portfolio .pf-hero-title {
  margin: 8px 0 0;
  color: #15152C;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.45;
}

body.page-provider-portfolio .pf-hero-desc {
  margin: 10px 0 0;
  color: #56607C;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.9;
}

body.page-provider-portfolio .pf-hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

body.page-provider-portfolio .pf-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0 4px;
  padding: 12px 14px;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(22, 26, 52, 0.06);
}

body.page-provider-portfolio .pf-status.is-info {
  background: rgba(33, 150, 243, 0.12);
  color: #1565c0;
}

body.page-provider-portfolio .pf-status.is-success {
  background: rgba(46, 125, 50, 0.12);
  color: #2e7d32;
}

body.page-provider-portfolio .pf-status.is-warning {
  background: rgba(245, 124, 0, 0.12);
  color: #ef6c00;
}

body.page-provider-portfolio .pf-status.is-error {
  background: rgba(211, 47, 47, 0.12);
  color: #c62828;
}

body.page-provider-portfolio .pf-stat-card {
  min-height: 92px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(103, 58, 183, 0.12);
  background: rgba(255, 255, 255, 0.88);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

body.page-provider-portfolio .pf-stat-card strong {
  color: #15152C;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

body.page-provider-portfolio .pf-stat-card span {
  color: #56607C;
  font-size: 13px;
  font-weight: 800;
}

body.page-provider-portfolio #pf-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

body.page-provider-portfolio .pf-empty-note {
  display: block;
  margin-top: 6px;
  color: #72788B;
  font-size: 13px;
  line-height: 1.7;
}

body.page-provider-portfolio .pf-section {
  margin: 0;
  border: 1px solid rgba(103, 58, 183, 0.10);
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(22, 26, 52, 0.06);
  padding: 16px;
  background: #fff;
}

body.page-provider-portfolio .pf-section + .pf-section {
  margin-top: 12px;
}

body.page-provider-portfolio .pf-section-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

body.page-provider-portfolio .pf-section-copy {
  min-width: 0;
}

body.page-provider-portfolio .pf-section-copy h3 {
  margin: 0;
  color: #221c3c;
  font-size: 19px;
  font-weight: 900;
}

body.page-provider-portfolio .pf-section-desc {
  margin: 8px 0 0;
  color: #59556F;
  font-size: 13px;
  line-height: 1.8;
}

body.page-provider-portfolio .pf-section-desc.is-empty {
  color: #8A8FA7;
}

body.page-provider-portfolio .pf-section-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(103, 58, 183, 0.10);
  color: #673AB7;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

body.page-provider-portfolio .pf-section-tags {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

body.page-provider-portfolio .pf-section-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(33, 150, 243, 0.10);
  color: #1565c0;
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

body.page-provider-portfolio .pf-section-tag.is-saved {
  background: rgba(46, 125, 50, 0.10);
  color: #2e7d32;
}

body.page-provider-portfolio .pf-section-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

body.page-provider-portfolio .pf-upload-btn {
  cursor: pointer;
}

body.page-provider-portfolio .pf-upload-btn.is-loading,
body.page-provider-portfolio .pf-del-section.is-loading,
body.page-provider-portfolio #pf-section-submit.is-loading,
body.page-provider-portfolio .pf-item-delete.is-loading {
  pointer-events: none;
  opacity: 0.72;
}

body.page-provider-portfolio .pf-upload-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

body.page-provider-portfolio .pf-upload-btn input {
  display: none;
}

body.page-provider-portfolio .pf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

body.page-provider-portfolio .pf-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #EEF0F9;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}

body.page-provider-portfolio .pf-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(103,58,183,0.18);
}

body.page-provider-portfolio .pf-item:hover .pf-item-overlay {
  opacity: 1;
}

body.page-provider-portfolio .pf-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.page-provider-portfolio .pf-media-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6f7690;
  font-size: 12px;
  font-weight: 800;
}

body.page-provider-portfolio .pf-video-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 11px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

body.page-provider-portfolio .pf-item-overlay {
  position: absolute;
  inset: 0 0 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.45) 100%);
  opacity: 0;
  transition: opacity .2s ease;
  z-index: 3;
}

body.page-provider-portfolio .pf-item-stat {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

body.page-provider-portfolio .pf-item-stat.active {
  color: #E1BEE7;
}

body.page-provider-portfolio .pf-item-delete {
  position: absolute;
  bottom: 6px;
  left: 6px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(244, 67, 54, 0.85);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 12px;
  z-index: 4;
  opacity: 0;
  transition: opacity .18s ease;
  backdrop-filter: blur(4px);
}

body.page-provider-portfolio .pf-item-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 48px;
  padding: 10px 12px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.02) 0%, rgba(15, 23, 42, 0.78) 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  z-index: 3;
}

body.page-provider-portfolio .pf-item-caption.is-empty {
  color: rgba(255, 255, 255, 0.72);
}

body.page-provider-portfolio .pf-item:hover .pf-item-delete {
  opacity: 1;
}

body.page-provider-portfolio .pf-section-empty {
  padding: 18px;
  border-radius: 18px;
  border: 1px dashed rgba(103, 58, 183, 0.18);
  background: rgba(103, 58, 183, 0.03);
  color: #68708A;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}

body.page-provider-portfolio .pf-modal-note {
  margin: 0 0 12px;
  color: #68708a;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.8;
}

@media (min-width: 761px) {
  body.page-provider-portfolio .page-shell {
    max-width: 1060px;
    padding: 16px 22px calc(var(--bottom-nav-height, 84px) + 22px);
  }

  body.page-provider-portfolio .pf-page-header h1 {
    font-size: 34px;
  }

  body.page-provider-portfolio .pf-hero {
    grid-template-columns: minmax(0, 1fr) 220px;
    align-items: stretch;
  }

  body.page-provider-portfolio .pf-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  body.page-provider-portfolio #bottom-nav {
    display: flex !important;
  }

  body.page-provider-portfolio .page-shell {
    max-width: 1240px;
    padding: 22px 28px 34px;
  }

  body.page-provider-portfolio .pf-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
  }

  body.page-provider-portfolio .pf-item {
    border-radius: 14px;
  }
}

@media (max-width: 760px) {
  body.page-provider-portfolio .pf-section-top {
    flex-direction: column;
  }

  body.page-provider-portfolio .pf-section-tags {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  body.page-provider-portfolio .pf-section-actions .btn {
    flex: 1 1 180px;
  }

  body.page-provider-portfolio .pf-item-delete {
    opacity: 1;
  }
}

/* ══════════════════════════════════════════════
   Profile Completion
   ══════════════════════════════════════════════ */
body.page-profile-completion {
  background: #F3F4FC;
}

body.page-profile-completion #site-footer {
  display: none !important;
}

body.page-profile-completion .page-shell {
  max-width: 760px;
  margin: 0 auto;
  padding: 10px 14px calc(var(--bottom-nav-height) + 18px);
}

body.page-profile-completion .pc-page-header {
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

body.page-profile-completion .pc-page-title {
  margin: 0;
  text-align: center;
  font-size: 24px;
  font-weight: 900;
  color: #15152C;
  line-height: 1.25;
}

body.page-profile-completion .pc-back-btn,
body.page-profile-completion .pc-page-spacer {
  width: 36px;
  height: 36px;
}

body.page-profile-completion #pc-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

body.page-profile-completion .pc-progress-card {
  border: 1px solid #ECECF1;
  border-radius: 24px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 12px 24px rgba(22, 26, 52, 0.08);
}

body.page-profile-completion .pc-progress-card h3 {
  margin: 0 0 12px;
  text-align: right;
  font-size: 18px;
  font-weight: 900;
  color: #131938;
}

body.page-profile-completion .pc-bar-wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  direction: ltr;
}

body.page-profile-completion .pc-bar {
  height: 12px;
  background: #E7E7EC;
  border-radius: 999px;
  overflow: hidden;
}

body.page-profile-completion .pc-bar-fill {
  height: 100%;
  width: 0;
  margin-left: auto;
  background: #673AB7;
  border-radius: 999px;
  transition: width 0.45s ease;
}

body.page-profile-completion .pc-percent {
  min-width: 64px;
  color: #131938;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

body.page-profile-completion .pc-hint {
  margin-top: 12px;
  color: #4F5976;
  font-size: 13px;
  line-height: 1.8;
  text-align: right;
}

body.page-profile-completion .pc-sections {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

body.page-profile-completion .pc-section-tile {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) 96px;
  align-items: center;
  gap: 14px;
  direction: rtl;
  padding: 16px 14px;
  border-radius: 22px;
  border: 1px solid #ECECF1;
  background: #fff;
  text-decoration: none;
  color: #222;
  box-shadow: 0 10px 20px rgba(24, 28, 50, 0.05);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

body.page-profile-completion .pc-section-tile.is-complete {
  border-color: rgba(76, 175, 80, 0.38);
}

body.page-profile-completion .pc-section-tile.is-incomplete {
  border-color: #ECECF1;
}

body.page-profile-completion .pc-check {
  width: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

body.page-profile-completion .pc-tile-body {
  min-width: 0;
  text-align: right;
}

body.page-profile-completion .pc-section-tile strong {
  display: block;
  margin-bottom: 4px;
  color: #131938;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.35;
}

body.page-profile-completion .pc-section-tile .text-muted {
  margin: 0;
  color: #4F5976;
  font-size: 13px;
  line-height: 1.75;
}

body.page-profile-completion .pc-tile-icon {
  width: 96px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

body.page-profile-completion .pc-section-tile-no-icon {
  grid-template-columns: 26px minmax(0, 1fr);
}

@media (hover: hover) and (pointer: fine) {
  body.page-profile-completion .pc-section-tile:hover {
    transform: translateY(-2px);
    border-color: rgba(103, 58, 183, 0.28);
    box-shadow: 0 14px 28px rgba(26, 29, 56, 0.10);
  }
}

@media (min-width: 761px) {
  body.page-profile-completion .page-shell {
    max-width: 1060px;
    padding: 16px 22px calc(var(--bottom-nav-height) + 22px);
  }

  body.page-profile-completion .pc-page-title {
    font-size: 34px;
  }

  body.page-profile-completion .pc-sections {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  body.page-profile-completion .pc-section-tile {
    min-height: 132px;
  }
}

@media (max-width: 768px) {
  body.page-profile-completion .pc-page-title {
    font-size: 21px;
  }

  body.page-profile-completion .pc-percent {
    font-size: 34px;
  }

  body.page-profile-completion .pc-section-tile {
    grid-template-columns: 24px minmax(0, 1fr) 84px;
    gap: 12px;
  }

  body.page-profile-completion .pc-section-tile-no-icon {
    grid-template-columns: 24px minmax(0, 1fr);
  }

  body.page-profile-completion .pc-section-tile strong {
    font-size: 15px;
  }

  body.page-profile-completion .pc-section-tile .text-muted {
    font-size: 12px;
  }

  body.page-profile-completion .pc-tile-icon {
    width: 84px;
    height: 58px;
  }
}

@media (min-width: 1024px) {
  body.page-profile-completion #top-navbar {
    display: block !important;
  }

  body.page-profile-completion #bottom-nav {
    display: flex !important;
  }

  body.page-profile-completion .page-shell {
    max-width: 1240px;
    padding: 22px 28px 34px;
  }

  body.page-profile-completion #pc-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
    grid-template-areas: "sections progress";
    align-items: start;
    column-gap: 20px;
  }

  body.page-profile-completion .pc-progress-card {
    grid-area: progress;
    position: sticky;
    top: 86px;
    min-height: 186px;
    margin: 0;
  }

  body.page-profile-completion .pc-percent {
    font-size: 52px;
  }

  body.page-profile-completion .pc-sections {
    grid-area: sections;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    grid-template-areas:
      "additional service basic"
      "content lang contact"
      ". seo .";
  }

  body.page-profile-completion .pc-section-tile[data-section="additional"] {
    grid-area: additional;
  }

  body.page-profile-completion .pc-section-tile[data-section="service_details"] {
    grid-area: service;
  }

  body.page-profile-completion .pc-section-tile[data-section="basic"] {
    grid-area: basic;
  }

  body.page-profile-completion .pc-section-tile[data-section="content"] {
    grid-area: content;
  }

  body.page-profile-completion .pc-section-tile[data-section="lang_loc"] {
    grid-area: lang;
  }

  body.page-profile-completion .pc-section-tile[data-section="contact_full"] {
    grid-area: contact;
  }

  body.page-profile-completion .pc-section-tile[data-section="seo"] {
    grid-area: seo;
    max-width: 340px;
    width: 100%;
    justify-self: center;
  }

  body.page-profile-completion .pc-section-tile {
    min-height: 180px;
    padding: 18px 16px;
    grid-template-columns: 28px minmax(0, 1fr) 112px;
    border-radius: 26px;
  }

  body.page-profile-completion .pc-tile-body {
    text-align: center;
  }

  body.page-profile-completion .pc-section-tile strong {
    font-size: 18px;
  }

  body.page-profile-completion .pc-tile-icon {
    width: 112px;
    height: 72px;
    justify-self: end;
  }
}

/* ══════════════════════════════════════════════
   Login Settings
   ══════════════════════════════════════════════ */
.ls-avatar { text-align: center; margin-bottom: 20px; }
.avatar-circle { width: 84px; height: 84px; border-radius: 50%; background: var(--color-primary, #663D90); display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.ls-avatar h2 { margin: 0 0 4px; font-size: 18px; }
.ls-danger { border: 1px solid #FFCDD2; }

/* ══════════════════════════════════════════════
   Promotion
   ══════════════════════════════════════════════ */
.promo-card { background: #fff; border-radius: 16px; padding: 16px; margin-bottom: 12px; box-shadow: 0 2px 6px rgba(0,0,0,0.05); }
.promo-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.promo-icon { width: 40px; height: 40px; border-radius: 12px; background: rgba(102,61,144,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.promo-info { flex: 1; }
.promo-info strong { display: block; font-size: 15px; }
.promo-info span { font-size: 12px; }
.promo-card-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 10px; border-top: 1px solid #f0f0f0; font-size: 13px; }

/* ══════════════════════════════════════════════
   Additional Services
   ══════════════════════════════════════════════ */
.as-page .page-header { margin-bottom: 14px; }
body.page-additional-services .page-content {
  padding-top: calc(var(--navbar-height) + 10px);
  padding-bottom: calc(var(--bottom-nav-height) + var(--space-lg));
  background:
    radial-gradient(820px 220px at 12% -120px, rgba(14, 116, 144, 0.22), transparent 60%),
    radial-gradient(780px 220px at 86% -120px, rgba(30, 64, 175, 0.2), transparent 60%),
    linear-gradient(180deg, #f2f8fb 0%, #edf4f8 100%);
}

.as-hero {
  margin-bottom: 14px;
  border: 1px solid #BAE6FD;
  background: linear-gradient(130deg, #E0F2FE 0%, #F0F9FF 44%, #ECFEFF 100%);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.as-hero h2 {
  margin: 0 0 8px;
  font-size: 18px;
  color: #0F172A;
}

.as-hero p {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
  color: #0F3A4D;
}

.as-hero-badge {
  flex-shrink: 0;
  border-radius: 999px;
  background: #0E7490;
  color: #fff;
  padding: 6px 10px;
  font-size: 11.5px;
  font-weight: 700;
}

.as-provider-strip {
  margin-bottom: 12px;
  border: 1px solid #BFDBFE;
  background: linear-gradient(135deg, #EFF6FF 0%, #F8FAFC 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.as-provider-label {
  font-size: 12px;
  font-weight: 700;
  color: #1E3A8A;
}

.as-provider-value {
  font-size: 14px;
  font-weight: 800;
  color: #0F172A;
}

.as-block { margin-bottom: 12px; }
.as-block-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 10px; }
.as-block-head h3 { margin: 0; font-size: 15px; color: #1F2937; }
.as-stack { display: flex; flex-direction: column; gap: 10px; }

.as-wizard-card {
  margin-bottom: 12px;
  border: 1px solid #D1E3EC;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FBFD 100%);
}

.as-wizard-head {
  margin-bottom: 12px;
}

.as-wizard-head h3 {
  margin: 0 0 4px;
  color: #0F172A;
  font-size: 16px;
}

.as-wizard-head p {
  margin: 0;
  font-size: 12.5px;
  color: #475569;
}

.as-main-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 12px;
}

.as-main-card {
  border: 1px solid #CBD5E1;
  background: #F8FAFC;
  color: #0F172A;
  border-radius: 14px;
  min-height: 66px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  text-align: right;
  cursor: pointer;
  transition: all 0.2s ease;
}

.as-main-card:hover {
  border-color: #38BDF8;
  background: #F0F9FF;
}

.as-main-card.is-active {
  border-color: #0369A1;
  background: linear-gradient(135deg, #E0F2FE 0%, #F0F9FF 100%);
  box-shadow: 0 10px 18px rgba(3, 105, 161, 0.16);
}

.as-main-card.has-selection {
  border-color: #0EA5E9;
}

.as-main-card-title {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
}

.as-main-card-count {
  min-width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid #BAE6FD;
  background: #ECFEFF;
  color: #0E7490;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}

.as-main-card-count.is-filled {
  border-color: #0369A1;
  background: #0369A1;
  color: #fff;
}

.as-section-panel {
  margin-bottom: 10px;
  border: 1px solid #D8E4ED;
  border-radius: 14px;
  padding: 12px;
  background: #fff;
}

.as-section-panel.is-active {
  animation: asFadeUp 0.22s ease;
}

.as-summary-panel {
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 12px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}

.as-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.as-enable-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #0F172A;
}

.as-enable-toggle input {
  width: 16px;
  height: 16px;
  accent-color: #0E7490;
}

.as-counter {
  font-size: 12px;
  color: #0E7490;
  background: #ECFEFF;
  border: 1px solid #BAE6FD;
  border-radius: 999px;
  padding: 4px 8px;
}

.as-options-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.as-option-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  border: 1px solid #D7E3EC;
  border-radius: 12px;
  padding: 9px 10px;
  font-size: 12.5px;
  color: #334155;
  background: #FCFDFE;
  cursor: pointer;
  transition: all 0.18s ease;
}

.as-option-item:hover {
  border-color: #67E8F9;
  background: #F0FDFF;
}

.as-option-item.is-selected {
  border-color: #22D3EE;
  background: #ECFEFF;
  color: #0C4A6E;
}

.as-option-item.is-unavailable {
  opacity: 0.55;
  cursor: not-allowed;
  border-color: #E2E8F0;
  background: #F8FAFC;
}

.as-option-item.is-unavailable:hover {
  border-color: #E2E8F0;
  background: #F8FAFC;
}

.as-coming-soon-badge {
  margin-right: auto;
  display: inline-flex;
  align-items: center;
  padding: 1px 8px;
  border-radius: 9999px;
  font-size: 10px;
  font-weight: 700;
  color: #92400E;
  background: #FEF3C7;
  white-space: nowrap;
}

.as-option-item input {
  margin-top: 2px;
  width: 15px;
  height: 15px;
  accent-color: #0E7490;
}

.as-inline-fields {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.as-inline-fields-single {
  grid-template-columns: minmax(0, 1fr);
}

.as-inline-fields label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.as-inline-fields span {
  color: #334155;
  font-size: 12px;
  font-weight: 600;
}

.as-inline-fields input,
.as-notes-field textarea {
  width: 100%;
  border: 1px solid #CBD5E1;
  border-radius: 10px;
  padding: 9px 10px;
  font-size: 13px;
  color: #0F172A;
  background: #fff;
}

.as-inline-fields input:focus,
.as-notes-field textarea:focus {
  border-color: #0891B2;
  outline: none;
  box-shadow: 0 0 0 3px rgba(14, 116, 144, 0.16);
}

.as-review-head h4 {
  margin: 0 0 4px;
  color: #0F172A;
}

.as-review-head p {
  margin: 0;
  font-size: 12.5px;
  color: #64748B;
}

.as-summary-sections {
  margin-top: 10px;
  display: grid;
  gap: 8px;
}

.as-summary-card {
  border: 1px solid #D8E4ED;
  border-radius: 12px;
  background: #F8FBFD;
  padding: 10px;
}

.as-summary-card h5 {
  margin: 0 0 6px;
  color: #0F172A;
  font-size: 13px;
}

.as-summary-card ul {
  margin: 0;
  padding-inline-start: 18px;
  color: #334155;
  font-size: 12px;
  line-height: 1.65;
}

.as-notes-field {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.as-notes-field span {
  font-size: 12px;
  font-weight: 700;
  color: #334155;
}

.as-inline-alert {
  margin-top: 10px;
  border: 1px solid #FECACA;
  background: #FEF2F2;
  color: #B91C1C;
  border-radius: 12px;
  padding: 10px;
  font-size: 12.5px;
}

.as-wizard-actions {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.as-wizard-actions .btn-primary,
.as-wizard-actions .btn-outline {
  min-width: 110px;
  min-height: 38px;
  border-radius: 10px;
  font-size: 12.5px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
}

.as-wizard-actions .btn-primary {
  background: #0E7490;
  color: #fff;
}

.as-wizard-actions .btn-primary:hover {
  background: #155E75;
}

.as-wizard-actions .btn-outline {
  background: #fff;
  color: #0F172A;
  border-color: #CBD5E1;
}

.as-wizard-actions .btn-outline:hover {
  background: #F8FAFC;
}

.as-wizard-actions button[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

.as-success-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.as-success-modal[hidden] {
  display: none !important;
}

.as-success-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.3);
  backdrop-filter: blur(2px);
}

.as-success-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 340px);
  border: 3px solid #F97316;
  background: #FFFFFF;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.16);
  padding: 14px 14px 18px;
  text-align: center;
}

.as-success-dialog-head {
  background: #F97316;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
  padding: 12px 10px;
  margin-bottom: 16px;
}

.as-success-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.as-success-eyebrow {
  margin: 0 0 6px;
  color: rgba(255, 247, 237, 0.9);
  font-size: 12px;
  font-weight: 700;
}

.as-success-dialog-body {
  border: 2px solid #F97316;
  padding: 12px 14px;
  margin-bottom: 16px;
}

.as-success-dialog-body p {
  margin: 0;
  color: #0F172A;
  font-size: 15px;
  line-height: 1.7;
}

.as-success-status {
  margin-top: 8px !important;
  color: #9A3412 !important;
  font-size: 13px !important;
  font-weight: 700;
}

.as-success-close-btn {
  min-width: 120px;
  min-height: 42px;
  border: none;
  border-radius: 999px;
  background: #F97316;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(249, 115, 22, 0.22);
}

.as-success-close-btn:hover {
  background: #EA580C;
}

.as-empty {
  padding: 14px;
  border-radius: 12px;
  border: 1px dashed #D1D5DB;
  background: #F9FAFB;
  color: #6B7280;
  font-size: 13px;
}

.as-error {
  margin-bottom: 12px;
  border: 1px solid #FECACA;
  background: #FEF2F2;
  color: #B91C1C;
  font-size: 13px;
  line-height: 1.6;
}

.as-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 3px 12px rgba(15, 23, 42, 0.04);
}

.as-card-highlight {
  border-color: #0F766E;
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.14), 0 16px 34px rgba(15, 118, 110, 0.16);
  animation: asCardHighlightPulse 1.4s ease-in-out 2;
}

.as-card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; margin-bottom: 10px; }
.as-card-head-side {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.as-title-wrap { flex: 1; min-width: 0; }
.as-title-wrap strong { display: block; font-size: 14px; color: #111827; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.as-sub { margin-top: 3px; font-size: 11.5px; color: #6B7280; }
.as-price { font-size: 13px; font-weight: 700; color: #0E7490; white-space: nowrap; }

.as-portal-entry {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1.5px solid rgba(14, 116, 144, 0.22);
  background: linear-gradient(135deg, #ecfeff, #f0fdfa);
  color: #0e7490;
  box-shadow: 0 2px 8px rgba(14, 116, 144, 0.10);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.as-portal-entry:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #cffafe, #ccfbf1);
  box-shadow: 0 6px 16px rgba(14, 116, 144, 0.18);
}

.as-portal-entry svg {
  width: 17px;
  height: 17px;
}

.as-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.as-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 700;
}
.as-pill.muted { color: #374151; background: #EEF2FF; }

.as-buy-btn {
  border: 0;
  border-radius: 10px;
  padding: 8px 12px;
  min-width: 108px;
  background: #0E7490;
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.as-buy-btn[disabled] {
  cursor: not-allowed;
  opacity: 0.55;
}

.as-meta-grid { display: grid; grid-template-columns: 1fr; gap: 6px; }
.as-meta-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: 12px; }
.as-meta-row span { color: #6B7280; }
.as-meta-row b { color: #111827; font-weight: 700; }

.as-section-list {
  margin-top: 10px;
  display: grid;
  gap: 8px;
}

.as-section-item {
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  background: #F8FAFC;
  padding: 8px 10px;
}

.as-section-item h6 {
  margin: 0 0 5px;
  font-size: 12px;
  color: #0F172A;
}

.as-section-item ul {
  margin: 0;
  padding-inline-start: 16px;
  color: #334155;
  font-size: 11.5px;
  line-height: 1.6;
}

.as-note {
  margin-top: 8px;
  font-size: 12px;
  color: #475569;
  line-height: 1.7;
}

/* ══════════════════════════════════════════════
   Additional Services (Premium Refinement)
   ══════════════════════════════════════════════ */
body.page-additional-services-premium .as-page {
  position: relative;
  isolation: isolate;
}

body.page-additional-services-premium .as-page::before,
body.page-additional-services-premium .as-page::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  z-index: -1;
  filter: blur(8px);
}

body.page-additional-services-premium .as-page::before {
  width: 210px;
  height: 210px;
  top: -36px;
  right: -62px;
  background: radial-gradient(circle at center, rgba(14, 116, 144, 0.2), transparent 72%);
}

body.page-additional-services-premium .as-page::after {
  width: 180px;
  height: 180px;
  bottom: 16px;
  left: -58px;
  background: radial-gradient(circle at center, rgba(217, 119, 6, 0.18), transparent 72%);
}

body.page-additional-services-premium .as-hero {
  border: 1px solid rgba(14, 116, 144, 0.24);
  border-radius: 20px;
  background:
    linear-gradient(140deg, rgba(224, 242, 254, 0.96) 0%, rgba(240, 249, 255, 0.98) 52%, rgba(255, 251, 235, 0.95) 100%);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

body.page-additional-services-premium .as-hero h2 {
  letter-spacing: 0.2px;
}

body.page-additional-services-premium .as-hero-points {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

body.page-additional-services-premium .as-hero-points li {
  position: relative;
  font-size: 12px;
  color: #164e63;
  font-weight: 600;
  padding-inline-start: 18px;
}

body.page-additional-services-premium .as-hero-points li::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  top: 6px;
  inset-inline-start: 0;
  background: linear-gradient(135deg, #0891b2, #0f766e);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.2);
}

body.page-additional-services-premium .as-hero-badge {
  background: linear-gradient(135deg, #0e7490, #155e75);
  box-shadow: 0 10px 22px rgba(8, 145, 178, 0.22);
}

body.page-additional-services-premium .as-provider-strip {
  border-color: rgba(14, 116, 144, 0.24);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(240, 249, 255, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

body.page-additional-services-premium .as-provider-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

body.page-additional-services-premium .as-provider-label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.2);
}

body.page-additional-services-premium .as-main-card {
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

body.page-additional-services-premium .as-main-card.is-active {
  border-color: #0369a1;
  box-shadow: 0 14px 26px rgba(3, 105, 161, 0.2);
}

body.page-additional-services-premium .as-section-panel,
body.page-additional-services-premium .as-summary-panel,
body.page-additional-services-premium .as-card {
  border-radius: 16px;
}

@keyframes asCardHighlightPulse {
  0% {
    transform: translateY(0);
    box-shadow: 0 0 0 0 rgba(20, 184, 166, 0.18), 0 3px 12px rgba(15, 23, 42, 0.04);
  }
  50% {
    transform: translateY(-2px);
    box-shadow: 0 0 0 8px rgba(20, 184, 166, 0.08), 0 20px 36px rgba(15, 118, 110, 0.2);
  }
  100% {
    transform: translateY(0);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.14), 0 16px 34px rgba(15, 118, 110, 0.16);
  }
}

body.page-additional-services-premium .as-loading-screen {
  position: relative;
  margin-bottom: 12px;
  padding: 22px 16px;
  border-radius: 18px;
  border: 1px solid rgba(125, 211, 252, 0.8);
  background: linear-gradient(145deg, rgba(236, 254, 255, 0.96), rgba(240, 249, 255, 0.96));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  overflow: hidden;
  box-shadow: 0 16px 30px rgba(2, 132, 199, 0.1);
}

body.page-additional-services-premium .as-loading-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 30%, rgba(255, 255, 255, 0.65) 50%, transparent 70%);
  transform: translateX(-120%);
  animation: asLoadingSweep 2.4s ease-in-out infinite;
}

body.page-additional-services-premium .as-loading-orb {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: radial-gradient(circle at 32% 30%, #67e8f9, #0891b2 72%);
  box-shadow: 0 0 0 8px rgba(103, 232, 249, 0.26);
  animation: asOrbPulse 1.8s ease-in-out infinite;
}

body.page-additional-services-premium .as-loading-screen strong {
  font-size: 14px;
  color: #0f172a;
}

body.page-additional-services-premium .as-loading-screen p {
  margin: 0;
  font-size: 12px;
  color: #155e75;
}

body.page-additional-services-premium .as-loading-skeleton {
  margin-top: 4px;
  width: min(100%, 380px);
  display: grid;
  gap: 6px;
}

body.page-additional-services-premium .as-loading-skeleton span {
  display: block;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(186, 230, 253, 0.9), rgba(240, 249, 255, 1), rgba(186, 230, 253, 0.9));
  background-size: 180% 100%;
  animation: asSkeletonFlow 1.4s linear infinite;
}

body.page-additional-services-premium .as-loading-skeleton span:nth-child(2) {
  width: 92%;
}

body.page-additional-services-premium .as-loading-skeleton span:nth-child(3) {
  width: 76%;
}

@keyframes asLoadingSweep {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(120%);
  }
}

@keyframes asOrbPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(103, 232, 249, 0.26);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 0 14px rgba(103, 232, 249, 0.12);
  }
}

@keyframes asSkeletonFlow {
  0% {
    background-position: 180% 0;
  }
  100% {
    background-position: -20% 0;
  }
}

@keyframes asFadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  .as-main-cards {
    grid-template-columns: 1fr;
  }

  .as-main-card {
    min-height: 58px;
  }

  .as-inline-fields {
    grid-template-columns: 1fr;
  }

  .as-wizard-actions {
    justify-content: stretch;
  }

  .as-wizard-actions .btn-primary,
  .as-wizard-actions .btn-outline {
    flex: 1;
    min-width: 0;
  }

  .as-hero {
    flex-direction: column;
    align-items: flex-start;
  }

  body.page-additional-services-premium .as-loading-screen {
    padding: 18px 12px;
  }

  body.page-additional-services-premium .as-loading-screen strong {
    font-size: 13px;
    text-align: center;
  }

  body.page-additional-services-premium .as-loading-screen p {
    text-align: center;
  }
}

/* ══════════════════════════════════════════════
   Responsive
   ══════════════════════════════════════════════ */
@media (max-width: 480px) {
  .page-shell { padding: var(--space-md, 12px); }
  .nav-grid { grid-template-columns: 1fr; }
  .kpi-row { grid-template-columns: repeat(2, 1fr); }
  .pd-stats { flex-wrap: wrap; gap: 8px; }
  .rv-bar-row span:first-child { width: 80px; font-size: 11px; }
  .plan-card { padding: 18px; }
}

/* ══════════════════════════════════════════════
   Add Service (Professional Polish)
   ══════════════════════════════════════════════ */
body.page-add-service .page-content {
  padding-top: calc(var(--navbar-height) + 10px);
  padding-bottom: calc(var(--bottom-nav-height) + var(--space-lg));
  background:
    radial-gradient(980px 300px at 100% -140px, rgba(103, 58, 183, 0.16), transparent 58%),
    linear-gradient(180deg, #f7f8fc 0%, #eef1f8 100%);
}

body.page-add-service #site-footer {
  display: none !important;
}

body.page-add-service #bottom-nav {
  display: flex !important;
}

body.page-add-service #btn-menu {
  display: none !important;
}

body.page-add-service .container {
  max-width: 1120px;
}

body.page-add-service .add-service-layout {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

body.page-add-service .add-service-title-wrap {
  min-width: 0;
  text-align: right;
}

body.page-add-service .add-service-title-wrap .mw-page-title {
  margin: 0;
  font-size: clamp(28px, 3.5vw, 36px);
  line-height: 1.15;
  color: #fff;
}

body.page-add-service .add-service-title-wrap p {
  margin: 6px 0 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

body.page-add-service .add-service-hero-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

body.page-add-service .add-service-top-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: all var(--transition-fast);
}

body.page-add-service .add-service-top-link:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

body.page-add-service .add-service-hero {
  margin: 0;
}

body.page-add-service .add-service-gradient-header {
  border-radius: 26px;
  padding: clamp(18px, 3.3vw, 28px);
  margin: 0;
  box-shadow: 0 20px 40px rgba(27, 35, 59, 0.14);
  background:
    radial-gradient(600px 240px at 100% -100px, rgba(255, 255, 255, 0.28), transparent 58%),
    linear-gradient(135deg, #5f39be, #2f6db5 80%);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  position: relative;
  overflow: hidden;
}

body.page-add-service .add-service-hero-copy {
  max-width: 680px;
}

body.page-add-service .add-service-hero-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.16);
  font-size: 12px;
  font-weight: 800;
}

body.page-add-service .add-service-gradient-header h2 {
  margin: 10px 0 0;
  font-size: clamp(26px, 3.1vw, 38px);
  line-height: 1.2;
  color: #fff;
  font-weight: 900;
}

body.page-add-service .add-service-gradient-header .page-subtitle {
  margin: 10px 0 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.94);
}

body.page-add-service .add-service-hero-actions {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

body.page-add-service .add-service-hero-overview {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
}

body.page-add-service .add-service-overview-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.10);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

body.page-add-service .add-service-overview-card strong {
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

body.page-add-service .add-service-overview-card span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
}

body.page-add-service .add-service-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  transition: all var(--transition-fast);
}

body.page-add-service .add-service-hero-btn.primary {
  background: #fff;
  color: #2f3f92;
  border: 1px solid transparent;
}

body.page-add-service .add-service-hero-btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 16px rgba(18, 24, 44, 0.18);
}

body.page-add-service .add-service-hero-btn.ghost {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.38);
}

body.page-add-service .add-service-hero-btn.ghost:hover {
  background: rgba(255, 255, 255, 0.24);
}

body.page-add-service .add-service-hero-art {
  justify-self: end;
  width: 88px;
  height: 88px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

body.page-add-service .add-service-actions-panel,
body.page-add-service .add-service-categories-panel {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(103, 58, 183, 0.13);
  border-radius: 24px;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
  padding: 16px;
  margin: 0;
}

body.page-add-service .add-service-section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

body.page-add-service .add-service-section-head h3,
body.page-add-service .add-service-section-head .section-title {
  margin: 0;
  font-size: 28px;
  color: #0f172a;
  font-weight: 900;
}

body.page-add-service .add-service-section-head p {
  margin: 0;
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
}

body.page-add-service .add-service-count-pill {
  min-width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #5f39be;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 20px rgba(95, 57, 190, 0.28);
}

body.page-add-service .add-service-section-subtitle {
  margin: -4px 0 10px;
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}

body.page-add-service .service-actions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

body.page-add-service .service-action-card {
  min-height: 122px;
  border-width: 1px;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
  align-items: center;
  padding: 14px;
  border: 1px solid #e1e7f0;
  border-radius: 18px;
  background: #fff;
}

body.page-add-service .service-action-card:hover {
  border-color: #cebcff;
  box-shadow: 0 14px 28px rgba(95, 57, 190, 0.14);
}

body.page-add-service .sac-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 5px;
}

body.page-add-service .sac-badge {
  display: inline-flex;
  align-items: center;
  min-height: 23px;
  border-radius: 999px;
  padding: 0 8px;
  font-size: 11px;
  font-weight: 800;
  color: #5f39be;
  background: #f1edff;
  border: 1px solid #d8cbff;
}

body.page-add-service .sac-body h3 {
  font-size: 21px;
  margin: 0;
  line-height: 1.4;
}

body.page-add-service .sac-body p {
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
}

body.page-add-service .sac-arrow svg {
  fill: #93a0b6;
}

body.page-add-service .categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
  align-items: stretch;
}

body.page-add-service .cat-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid #dcdff0;
  background: #fff;
  min-height: 154px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  padding: 18px;
  text-decoration: none;
  transition: all var(--transition-fast);
}

body.page-add-service .cat-item::after {
  content: '';
  position: absolute;
  inset-inline-end: -30px;
  top: -26px;
  width: 110px;
  height: 110px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(103, 58, 183, 0.10), transparent 68%);
  pointer-events: none;
}

body.page-add-service .cat-item:hover {
  transform: translateY(-2px);
  border-color: #ccbfff;
  box-shadow: 0 10px 24px rgba(95, 57, 190, 0.12);
}

body.page-add-service .cat-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(103, 58, 183, 0.14), rgba(103, 58, 183, 0.08));
  box-shadow: 0 12px 26px rgba(103, 58, 183, 0.10);
}

body.page-add-service .cat-name {
  position: relative;
  z-index: 1;
  color: #221c3c;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.5;
}

body.page-add-service .cat-meta {
  position: relative;
  z-index: 1;
  color: #7a7b8d;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

body.page-add-service .cat-link-hint {
  position: relative;
  z-index: 1;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(103, 58, 183, 0.08);
  font-size: 11px;
  font-weight: 900;
  color: #5f39be;
}

body.page-add-service .add-service-cats-message {
  grid-column: 1 / -1;
  min-height: 120px;
  border-radius: 16px;
  border: 1px dashed #d4dbe8;
  background: #f8fafc;
  color: #64748b;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px;
}

@media (min-width: 769px) {
  body.page-add-service #top-navbar {
    display: block !important;
  }

  body.page-add-service .add-service-gradient-header {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  body.page-add-service .service-actions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  body.page-add-service .categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (min-width: 1200px) {
  body.page-add-service .service-actions-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.page-add-service .categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 768px) {
  body.page-add-service .page-content {
    padding-top: 10px;
  }

  body.page-add-service .add-service-title-wrap {
    text-align: right;
  }

  body.page-add-service .add-service-title-wrap .mw-page-title {
    font-size: 30px;
  }

  body.page-add-service .add-service-title-wrap p {
    font-size: 13px;
  }

  body.page-add-service .add-service-top-link {
    min-height: 34px;
    padding: 0 10px;
    font-size: 12px;
  }

  body.page-add-service .add-service-hero-head {
    align-items: flex-start;
    flex-direction: column;
  }

  body.page-add-service .add-service-gradient-header {
    border-radius: 20px;
    padding: 16px;
  }

  body.page-add-service .add-service-gradient-header h2 {
    font-size: 31px;
  }

  body.page-add-service .add-service-hero-actions {
    gap: 8px;
  }

  body.page-add-service .add-service-hero-btn {
    min-height: 36px;
    font-size: 12px;
    padding: 0 12px;
  }

  body.page-add-service .add-service-hero-art {
    width: 76px;
    height: 76px;
    border-radius: 20px;
  }

  body.page-add-service .add-service-actions-panel,
  body.page-add-service .add-service-categories-panel {
    border-radius: 18px;
    padding: 12px;
  }

  body.page-add-service .add-service-section-head h3,
  body.page-add-service .add-service-section-head .section-title {
    font-size: 25px;
  }

  body.page-add-service .sac-body h3 {
    font-size: 18px;
  }

  body.page-add-service .sac-body p {
    font-size: 13px;
  }

  body.page-add-service .categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  body.page-add-service .cat-item {
    min-height: 126px;
    padding: 14px;
  }

  body.page-add-service .cat-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
  }

  body.page-add-service .cat-name {
    font-size: 16px;
  }

  body.page-add-service .cat-meta {
    font-size: 11px;
  }
}

/* ══════════════════════════════════════════════
   Search Page (Professional Polish + size safety)
   ══════════════════════════════════════════════ */
body.page-search .search-mobile-body {
  max-width: 980px;
  margin-inline: auto;
}

body.page-search .search-mobile-header {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

body.page-search .search-mobile-title {
  font-size: 30px;
  font-weight: 900;
}

body.page-search .search-mobile-input-wrap .search-input {
  height: 46px;
  border-radius: 14px;
  font-size: 14px;
}

body.page-search .filter-row {
  margin-top: 10px;
  margin-bottom: 12px;
}

body.page-search .filter-chip {
  padding: 8px 14px;
  border-radius: 12px;
  font-size: 12px;
}

body.page-search .providers-list-compact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

body.page-search .provider-list-card {
  width: 100%;
  max-width: 100%;
  min-height: 114px;
  border-radius: 16px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

body.page-search .provider-list-media {
  width: 118px;
  min-width: 118px;
  height: 114px;
  flex: 0 0 118px;
  overflow: hidden;
}

body.page-search .provider-list-media img,
body.page-search .provider-list-media picture,
body.page-search .provider-list-avatar img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

body.page-search .provider-list-avatar {
  width: 44px;
  height: 44px;
}

body.page-search .provider-list-body {
  padding: 12px 12px;
}

body.page-search .provider-list-name {
  font-size: 14px;
  font-weight: 800;
}

body.page-search .provider-list-meta,
body.page-search .provider-list-distance,
body.page-search .provider-list-stat-chip {
  font-size: 11px;
}

body.page-search .search-mobile-actions-row {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

body.page-search .search-mobile-map-btn {
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text-primary);
  border-radius: 10px;
  min-height: 34px;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

body.page-search .search-map-modal {
  position: fixed;
  left: 50%;
  right: auto;
  bottom: 0;
  transform: translate(-50%, 20px);
  width: min(960px, calc(100vw - 20px));
  max-height: min(78vh, 720px);
  background: var(--color-surface);
  border-radius: 18px 18px 0 0;
  box-shadow: var(--shadow-lg);
  /* z-index intentionally omitted — search.html sets 2050 to sit above
     the shared #search-map-backdrop (2049). Setting it here forces 1300
     which puts the backdrop above the modal and blocks Google Maps markers. */
  opacity: 0;
  transition: transform .18s ease, opacity .18s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

body.page-search .search-map-modal.open {
  transform: translate(-50%, 0);
  opacity: 1;
}

body.page-search .search-map-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid var(--color-border);
}

body.page-search .search-map-head h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  color: var(--color-text-primary);
}

body.page-search .search-map-close {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text-secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

body.page-search .search-map-canvas {
  width: 100%;
  min-height: 360px;
  height: min(64vh, 560px);
}

body.page-search .search-map-provider-popup {
  min-width: 210px;
}

body.page-search .search-map-provider-avatar-link {
  width: 44px;
  height: 44px;
  margin: 0 auto 8px;
  border-radius: 50%;
  display: block;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

body.page-search .search-map-provider-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.page-search .search-map-provider-avatar-fallback {
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-subtle);
  color: var(--color-primary);
  font-size: 18px;
}

body.page-search .search-map-provider-name {
  font-size: 13px;
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: 6px;
}

body.page-search .search-map-provider-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--color-text-secondary);
  margin-bottom: 8px;
}

body.page-search .search-map-provider-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

body.page-search .map-provider-action {
  text-decoration: none;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-text-primary);
  background: var(--color-surface);
}

body.page-search .map-provider-action.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

@media (min-width: 1024px) {
  body.page-search #top-navbar {
    display: block !important;
  }

  body.page-search #site-footer {
    display: block !important;
  }

  body.page-search #bottom-nav {
    display: flex !important;
  }

  body.page-search .page-content {
    padding-top: calc(var(--navbar-height) + var(--space-lg));
    padding-bottom: var(--space-2xl);
    background:
      radial-gradient(circle at 100% 0%, rgba(103, 58, 183, 0.12), transparent 28%),
      radial-gradient(circle at 0% 20%, rgba(33, 150, 243, 0.08), transparent 24%),
      var(--color-bg);
  }

  body.page-search .providers-list-compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-lg);
  }

  body.page-search .search-mobile-header {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(103, 58, 183, 0.08);
  }

  body.page-search .container.search-mobile-body {
    position: relative;
  }

  body.page-search .search-mobile-title {
    font-size: 34px;
    letter-spacing: -0.02em;
  }

  body.page-search .search-mobile-input-wrap {
    max-width: 760px;
    margin-inline: auto;
    box-shadow: 0 16px 36px rgba(20, 20, 38, 0.08);
  }

  body.page-search .search-mobile-sort-row {
    margin-bottom: 18px;
    padding-inline: 4px;
    align-items: center;
  }

  body.page-search .results-count {
    font-size: 13px;
    font-weight: 800;
    color: #4a4462;
  }

  body.page-search .filter-row {
    padding: 4px 2px 6px;
  }

  body.page-search .filter-chip {
    border: 1px solid rgba(103, 58, 183, 0.12);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 6px 16px rgba(20, 20, 38, 0.04);
  }

  body.page-search .filter-chip.active {
    box-shadow: 0 10px 20px rgba(103, 58, 183, 0.16);
  }

  body.page-search .provider-list-card {
    border: 1px solid rgba(103, 58, 183, 0.08);
    box-shadow: 0 14px 30px rgba(20, 20, 38, 0.06);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  }

  body.page-search .provider-list-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(20, 20, 38, 0.1);
    border-color: rgba(103, 58, 183, 0.18);
  }

  body.page-search .provider-list-body {
    padding: 14px 14px;
  }

  body.page-search .provider-list-name {
    font-size: 17px;
    font-weight: 900;
    color: #241e3e;
  }

  body.page-search .provider-list-meta,
  body.page-search .provider-list-distance {
    font-size: 12.5px;
  }

  body.page-add-service #top-navbar,
  body.page-add-service #site-footer {
    display: block !important;
  }

  body.page-add-service #bottom-nav {
    display: flex !important;
  }

  body.page-add-service .page-content {
    padding-top: calc(var(--navbar-height) + 18px);
    padding-bottom: 40px;
    background:
      radial-gradient(circle at 100% 0%, rgba(103, 58, 183, 0.1), transparent 26%),
      radial-gradient(circle at 0% 20%, rgba(33, 150, 243, 0.06), transparent 22%),
      var(--color-bg);
  }

  body.page-add-service .container {
    max-width: 1120px;
  }

  body.page-add-service .add-service-actions-panel,
  body.page-add-service .add-service-categories-panel {
    box-shadow: 0 16px 34px rgba(20, 20, 38, 0.06);
  }

  body.page-add-service .add-service-gradient-header {
    min-height: 320px;
    padding: 32px;
  }

  body.page-add-service .add-service-gradient-header h2 {
    font-size: 36px;
    letter-spacing: -0.02em;
  }

  body.page-add-service .add-service-gradient-header .page-subtitle {
    font-size: 16px;
    line-height: 1.9;
    max-width: 560px;
  }

  body.page-add-service .add-service-hero-actions {
    gap: 12px;
  }

  body.page-add-service .add-service-hero-btn {
    min-height: 48px;
    padding-inline: 18px;
  }

  body.page-add-service .service-action-card,
  body.page-add-service .cat-item {
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  }

  body.page-add-service .service-action-card:hover,
  body.page-add-service .cat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(20, 20, 38, 0.08);
  }
}

@media (max-width: 768px) {
  body.page-search .search-mobile-title {
    font-size: 22px;
  }

  body.page-search .provider-list-media {
    width: 84px;
    min-width: 84px;
    height: 96px;
    flex-basis: 84px;
  }

  body.page-search .provider-list-avatar {
    width: 36px;
    height: 36px;
  }
}

@media (min-width: 1024px) {
  body.page-search #bottom-nav,
  body.page-add-service #bottom-nav,
  body.page-provider-orders #bottom-nav,
  body.page-provider-order-detail #bottom-nav,
  body.page-plans #bottom-nav,
  body.page-plan-summary #bottom-nav,
  body.page-provider-services #bottom-nav,
  body.page-provider-reviews #bottom-nav,
  body.page-profile-completion #bottom-nav {
    display: flex !important;
  }

  body.page-search .page-content,
  body.page-add-service .page-content {
    padding-bottom: calc(var(--bottom-nav-height) + 40px);
  }

  body.page-provider-orders .page-shell,
  body.page-provider-order-detail .pod-shell,
  body.page-plans .page-shell,
  body.page-plan-summary .page-shell,
  body.page-provider-services .page-shell,
  body.page-provider-reviews .page-shell,
  body.page-profile-completion .page-shell {
    padding-bottom: calc(var(--bottom-nav-height) + 34px);
  }
}

/* ══════════════════════════════════════════════
   Verification Intake Page
   ══════════════════════════════════════════════ */
body.page-verification {
  --verify-theme-accent: #2f66a6;
  --verify-theme-accent-strong: #214e81;
  --verify-theme-accent-soft: rgba(47, 102, 166, 0.12);
  --verify-theme-accent-surface: rgba(245, 250, 255, 0.98);
  --verify-theme-accent-border: rgba(47, 102, 166, 0.28);
  --verify-theme-accent-border-soft: rgba(95, 168, 232, 0.24);
  --verify-theme-accent-shadow: rgba(47, 102, 166, 0.1);
  --verify-theme-hero-glow-1: rgba(95, 168, 232, 0.18);
  --verify-theme-hero-glow-2: rgba(47, 102, 166, 0.12);
  --verify-theme-title: #214e81;
  --verify-theme-kicker: #2f66a6;
  --verify-theme-copy: #5f6576;
  --verify-theme-gradient: linear-gradient(135deg, #5fa8e8, #3b6fd2);
}

body.page-verification.verify-theme-blue {
  --verify-theme-accent: #2f66a6;
  --verify-theme-accent-strong: #214e81;
  --verify-theme-accent-soft: rgba(47, 102, 166, 0.12);
  --verify-theme-accent-surface: rgba(245, 250, 255, 0.98);
  --verify-theme-accent-border: rgba(47, 102, 166, 0.28);
  --verify-theme-accent-border-soft: rgba(95, 168, 232, 0.24);
  --verify-theme-accent-shadow: rgba(47, 102, 166, 0.1);
  --verify-theme-hero-glow-1: rgba(95, 168, 232, 0.18);
  --verify-theme-hero-glow-2: rgba(47, 102, 166, 0.12);
  --verify-theme-title: #214e81;
  --verify-theme-kicker: #2f66a6;
  --verify-theme-copy: #5f6576;
  --verify-theme-gradient: linear-gradient(135deg, #5fa8e8, #3b6fd2);
}

body.page-verification.verify-theme-green {
  --verify-theme-accent: #2b9958;
  --verify-theme-accent-strong: #1f7342;
  --verify-theme-accent-soft: rgba(43, 153, 88, 0.12);
  --verify-theme-accent-surface: rgba(241, 252, 246, 0.98);
  --verify-theme-accent-border: rgba(43, 153, 88, 0.28);
  --verify-theme-accent-border-soft: rgba(101, 190, 118, 0.24);
  --verify-theme-accent-shadow: rgba(43, 153, 88, 0.12);
  --verify-theme-hero-glow-1: rgba(101, 190, 118, 0.18);
  --verify-theme-hero-glow-2: rgba(43, 153, 88, 0.12);
  --verify-theme-title: #1f7342;
  --verify-theme-kicker: #2b9958;
  --verify-theme-copy: #566b5f;
  --verify-theme-gradient: linear-gradient(135deg, #65be76, #2b9958);
}

body.page-verification .verification-page-shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px 16px 88px;
}

body.page-verification .verify-page-hero {
  padding: 18px;
  border: 1px solid var(--verify-theme-accent-border-soft);
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, var(--verify-theme-hero-glow-1), transparent 36%),
    radial-gradient(circle at top right, var(--verify-theme-hero-glow-2), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), var(--verify-theme-accent-surface));
  box-shadow: 0 20px 48px var(--verify-theme-accent-shadow);
}

body.page-verification .verify-page-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

body.page-verification .verify-back-btn {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 16px;
  background: var(--verify-theme-accent-soft);
  color: var(--verify-theme-accent-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

body.page-verification .verify-section-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--verify-theme-gradient);
  color: #fff;
  font-weight: 800;
}

body.page-verification .verify-section-pill-icon {
  width: 28px;
  height: 28px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

body.page-verification .verify-page-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

body.page-verification .verify-page-kicker {
  margin: 0 0 8px;
  font-size: 13px;
  color: var(--verify-theme-kicker);
  font-weight: 700;
}

body.page-verification .verify-page-heading h1 {
  margin: 0;
  font-size: 24px;
  line-height: 1.3;
  color: var(--verify-theme-title);
}

body.page-verification .verify-page-subtitle {
  margin: 10px 0 0;
  max-width: 760px;
  color: var(--verify-theme-copy);
  line-height: 1.8;
}

body.page-verification .verify-provider-chip {
  min-width: 180px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--verify-theme-accent-border-soft);
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  gap: 10px;
}

body.page-verification .verify-provider-chip-label {
  font-size: 11.5px;
  color: #6b6476;
  white-space: nowrap;
}

body.page-verification .verify-provider-chip strong {
  color: #2b2334;
  font-size: 15px;
}

body.page-verification .verify-provider-chip span:last-child {
  color: var(--verify-theme-kicker);
  font-weight: 700;
}

body.page-verification .verify-badge-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

body.page-verification .verify-badge-tab {
  border: 1px solid rgba(112, 84, 138, 0.14);
  border-radius: 24px;
  padding: 16px 18px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: right;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

body.page-verification .verify-badge-tab.is-active {
  transform: translateY(-2px);
  border-color: var(--verify-theme-accent-border);
  box-shadow: 0 16px 30px var(--verify-theme-accent-shadow);
}

body.page-verification .verify-badge-tab-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  flex: 0 0 auto;
}

body.page-verification .verify-badge-tab-icon.is-blue {
  background: linear-gradient(135deg, #5fa8e8, #3b6fd2);
}

body.page-verification .verify-badge-tab-icon.is-green {
  background: linear-gradient(135deg, #65be76, #2b9958);
}

body.page-verification .verify-badge-tab-text {
  display: grid;
  gap: 4px;
}

body.page-verification .verify-badge-tab-text strong {
  color: #3c3650;
}

body.page-verification .verify-badge-tab.is-active .verify-badge-tab-text strong {
  color: var(--verify-theme-title);
}

body.page-verification .verify-badge-tab-text small {
  color: #6f687c;
}

body.page-verification .verify-flow-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

body.page-verification .verify-flow-step {
  min-height: 72px;
  padding: 12px 14px;
  border: 1px solid rgba(112, 84, 138, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  display: flex;
  align-items: center;
  gap: 12px;
  color: #6c6378;
}

body.page-verification .verify-flow-index {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(102, 61, 144, 0.09);
  color: #6d3a91;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  flex: 0 0 auto;
}

body.page-verification .verify-flow-step span:last-child {
  display: grid;
  gap: 2px;
}

body.page-verification .verify-flow-step strong {
  color: #3a2b47;
  font-size: 0.95rem;
}

body.page-verification .verify-flow-step small {
  color: #7b7488;
  font-size: 0.82rem;
}

body.page-verification .verify-flow-step.is-active {
  border-color: var(--verify-theme-accent-border);
  background: linear-gradient(180deg, var(--verify-theme-accent-surface), rgba(255, 255, 255, 0.98));
  box-shadow: 0 12px 28px var(--verify-theme-accent-shadow);
}

body.page-verification .verify-flow-step.is-active .verify-flow-index {
  background: var(--verify-theme-accent);
  color: #fff;
}

body.page-verification .verify-flow-step.is-complete {
  border-color: rgba(43, 153, 88, 0.28);
  background: rgba(239, 252, 246, 0.92);
}

body.page-verification .verify-flow-step.is-complete .verify-flow-index {
  background: #2b9958;
  color: #fff;
}

body.page-verification .verify-detail-board,
body.page-verification .verify-summary-card,
body.page-verification .verify-success-card,
body.page-verification .verify-pricing-strip {
  margin-top: 18px;
  padding: 20px;
  border: 1px solid var(--verify-theme-accent-border);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), var(--verify-theme-accent-surface));
  box-shadow: 0 18px 40px var(--verify-theme-accent-shadow);
}

body.page-verification .verify-panel {
  display: none;
}

body.page-verification .verify-panel.is-active {
  display: block;
}

body.page-verification .verify-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

body.page-verification .verify-panel-header h2,
body.page-verification .verify-pricing-head h2,
body.page-verification .verify-success-card h2 {
  margin: 0;
  color: var(--verify-theme-title);
  font-size: 1.5rem;
}

body.page-verification .verify-panel-header p,
body.page-verification .verify-pricing-head p,
body.page-verification .verify-summary-note,
body.page-verification .verify-success-card p {
  margin: 8px 0 0;
  color: var(--verify-theme-copy);
  line-height: 1.8;
}

body.page-verification .verify-inline-note {
  padding: 10px 14px;
  border-radius: 16px;
  background: rgba(255, 214, 10, 0.14);
  color: #7d5f00;
  font-size: 0.9rem;
  font-weight: 700;
}

body.page-verification .verify-blue-layout {
  display: grid;
  grid-template-columns: 1.05fr 1.05fr 0.9fr;
  gap: 18px;
}

body.page-verification .verify-lookup-card,
body.page-verification .verify-attachments-card,
body.page-verification .verify-green-list-card,
body.page-verification .verify-green-card {
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(112, 84, 138, 0.14);
  background: #fff;
}

body.page-verification .verify-lookup-card.is-current,
body.page-verification .verify-green-option.is-selected,
body.page-verification .verify-green-card:has(.verify-green-toggle:checked) {
  border-color: var(--verify-theme-accent-border);
  box-shadow: 0 14px 32px var(--verify-theme-accent-shadow);
}

body.page-verification .verify-lookup-card.is-approved {
  border-color: rgba(43, 153, 88, 0.35);
}

body.page-verification .verify-card-head {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

body.page-verification .verify-subject-choice,
body.page-verification .verify-check-row,
body.page-verification .verify-green-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--verify-theme-title);
  font-weight: 800;
}

body.page-verification .verify-subject-choice input,
body.page-verification .verify-check-row input,
body.page-verification .verify-green-check input {
  accent-color: var(--verify-theme-accent);
}

body.page-verification .verify-card-head p {
  margin: 0;
  color: #6b6476;
  line-height: 1.8;
}

body.page-verification .verify-card-head strong {
  color: var(--verify-theme-title);
  font-size: 1rem;
}

body.page-verification .verify-form-stack {
  display: grid;
  gap: 10px;
}

body.page-verification .form-label {
  color: var(--verify-theme-title);
  font-size: 0.92rem;
  font-weight: 700;
}

body.page-verification .verify-inline-actions,
body.page-verification .verify-page-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 18px;
}

body.page-verification .verify-preview-card {
  margin-top: 16px;
  padding: 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, var(--verify-theme-accent-surface), rgba(255, 255, 255, 0.98));
  border: 1px solid var(--verify-theme-accent-border);
}

body.page-verification .verify-preview-chip {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--verify-theme-accent-soft);
  color: var(--verify-theme-accent-strong);
  font-size: 0.86rem;
  font-weight: 800;
}

body.page-verification .verify-preview-field {
  display: grid;
  gap: 6px;
  margin-top: 14px;
}

body.page-verification .verify-preview-field span {
  color: #6a6476;
  font-size: 0.92rem;
}

body.page-verification .verify-preview-field strong {
  color: #2b2334;
  font-size: 1.05rem;
}

body.page-verification .verify-upload-hint {
  margin-top: 8px;
  color: #8a8396;
  font-size: 0.86rem;
}

body.page-verification .verify-upload-box {
  min-height: 132px;
  border: 1.5px dashed var(--verify-theme-accent-border);
  border-radius: 22px;
  background: linear-gradient(180deg, var(--verify-theme-accent-surface), rgba(255, 255, 255, 0.98));
  display: grid;
  place-items: center;
  gap: 10px;
  padding: 18px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

body.page-verification .verify-upload-box:hover {
  border-color: var(--verify-theme-accent);
  box-shadow: 0 14px 28px var(--verify-theme-accent-shadow);
  transform: translateY(-1px);
}

body.page-verification .verify-upload-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: var(--verify-theme-accent-soft);
  color: var(--verify-theme-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

body.page-verification .verify-upload-icon.is-green {
  background: rgba(43, 153, 88, 0.12);
  color: #2b9958;
}

body.page-verification .verify-upload-copy {
  display: grid;
  gap: 4px;
}

body.page-verification .verify-upload-copy strong {
  color: #2d3140;
  font-size: 1rem;
}

body.page-verification .verify-upload-copy small {
  color: #6f687c;
  line-height: 1.7;
}

body.page-verification .verify-file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

body.page-verification .verify-file-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

body.page-verification .verify-file-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--verify-theme-accent-soft);
  color: var(--verify-theme-accent-strong);
  font-size: 0.84rem;
  font-weight: 700;
}

body.page-verification .verify-file-empty {
  color: #8b8398;
  font-size: 0.88rem;
}

body.page-verification .verify-files-feedback {
  margin-top: 12px;
  color: #7a7387;
  font-size: 0.9rem;
}

body.page-verification .verify-files-feedback.is-success {
  color: #187a4e;
  font-weight: 700;
}

body.page-verification .verify-green-layout {
  display: grid;
  grid-template-columns: 1.45fr 0.8fr;
  gap: 18px;
}

body.page-verification .verify-green-list {
  display: grid;
  gap: 14px;
}

body.page-verification .verify-green-option {
  display: block;
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(112, 84, 138, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 247, 253, 0.98));
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

body.page-verification .verify-green-option:hover {
  transform: translateY(-1px);
}

body.page-verification .verify-green-option-main {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

body.page-verification .verify-green-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

body.page-verification .verify-green-option-indicator {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  margin-top: 2px;
  border-radius: 6px;
  border: 2px solid var(--verify-theme-accent-border);
  background: #fff;
  position: relative;
}

body.page-verification .verify-green-option.is-selected .verify-green-option-indicator::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 3px;
  background: linear-gradient(135deg, #65be76, #2b9958);
}

body.page-verification .verify-green-option-text {
  color: var(--verify-theme-title);
  line-height: 1.9;
  font-weight: 700;
}

body.page-verification .verify-green-attachments-card {
  align-self: flex-start;
}

body.page-verification .verify-pricing-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

body.page-verification .verify-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

body.page-verification .verify-plan-card {
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(82, 69, 100, 0.12);
  background: #fff;
  display: grid;
  gap: 12px;
}

body.page-verification .verify-plan-card.is-current {
  border-color: rgba(43, 153, 88, 0.26);
  box-shadow: 0 16px 30px rgba(43, 153, 88, 0.08);
}

body.page-verification .verify-plan-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

body.page-verification .verify-plan-card-title-wrap {
  display: grid;
  gap: 4px;
}

body.page-verification .verify-plan-card-head strong {
  color: #2e2438;
}

body.page-verification .verify-plan-card-head span,
body.page-verification .verify-plan-foot {
  color: #756e82;
  font-size: 0.9rem;
}

body.page-verification .verify-plan-chip {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(47, 102, 166, 0.1);
  color: #2f66a6;
  font-size: 0.85rem;
  font-weight: 800;
}

body.page-verification .verify-plan-desc {
  margin: 0;
  color: #59516a;
  font-size: 0.92rem;
  line-height: 1.8;
}

body.page-verification .verify-plan-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 0;
  border-top: 1px solid #f1ecf6;
}

body.page-verification .verify-plan-price-row strong {
  color: #356e3c;
}

body.page-verification .verify-plan-price-row-main {
  border-top: 0;
  padding-top: 0;
}

body.page-verification .verify-plan-price-row-main strong {
  color: #2f66a6;
}

body.page-verification .verify-plan-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

body.page-verification .verify-plan-bullet {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  border-radius: 12px;
  background: rgba(245, 241, 250, 0.95);
  color: #4f4760;
  font-size: 0.82rem;
  font-weight: 700;
}

body.page-verification .verify-plan-meta {
  display: grid;
  gap: 8px;
  padding-top: 10px;
  border-top: 1px solid #f1ecf6;
}

body.page-verification .verify-plan-meta-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  color: #6a6279;
  font-size: 0.86rem;
}

body.page-verification .verify-plan-meta-row strong {
  color: #2f2a38;
  text-align: left;
}

body.page-verification .verify-summary-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

body.page-verification .verify-summary-shell {
  max-width: 720px;
  margin-inline: auto;
}

body.page-verification .verify-summary-title-bar {
  width: fit-content;
  min-width: 220px;
  margin: 0 auto 12px;
  padding: 12px 22px;
  border-radius: 0;
  background: var(--verify-theme-accent);
  color: #fff;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 800;
}

body.page-verification .verify-summary-provider-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

body.page-verification .verify-summary-provider-label {
  color: var(--verify-theme-kicker);
  font-weight: 700;
}

body.page-verification .verify-summary-provider-value {
  min-width: 180px;
  padding: 7px 14px;
  border: 1px solid var(--verify-theme-accent-border);
  color: var(--verify-theme-title);
  text-align: center;
  font-weight: 700;
  background: #fff;
}

body.page-verification .verify-summary-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 16px;
}

body.page-verification .verify-summary-chip {
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(112, 84, 138, 0.13);
  background: rgba(255, 255, 255, 0.94);
  display: grid;
  gap: 4px;
  text-align: center;
}

body.page-verification .verify-summary-chip small {
  color: #7b7488;
  font-size: 0.8rem;
  font-weight: 700;
}

body.page-verification .verify-summary-chip strong {
  color: #2f2a38;
  font-size: 0.96rem;
}

body.page-verification .verify-summary-chip.is-blue {
  border-color: rgba(47, 102, 166, 0.28);
  background: rgba(246, 250, 255, 0.98);
}

body.page-verification .verify-summary-chip.is-green {
  border-color: rgba(43, 153, 88, 0.26);
  background: rgba(239, 252, 246, 0.98);
}

body.page-verification .verify-summary-caption {
  margin: 0 0 16px;
  color: #2b2334;
  text-align: center;
  font-size: 1.05rem;
  font-weight: 700;
}

body.page-verification .verify-summary-table-wrap {
  border: 1px solid var(--verify-theme-accent-border);
  background: #fff;
  overflow: hidden;
}

body.page-verification .verify-summary-table {
  width: 100%;
  border-collapse: collapse;
}

body.page-verification .verify-summary-table thead th {
  padding: 14px 18px;
  background: var(--verify-theme-accent);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  text-align: center;
}

body.page-verification .verify-summary-table tbody td {
  padding: 18px;
  border-top: 1px solid var(--verify-theme-accent-border);
  color: #5b5667;
  text-align: center;
  min-height: 54px;
}

body.page-verification .verify-summary-actions {
  justify-content: center;
}

body.page-verification .verify-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(112, 84, 138, 0.12);
}

body.page-verification .verify-summary-row span {
  color: #665f73;
}

body.page-verification .verify-summary-row strong {
  color: #261f2f;
}

body.page-verification .verify-summary-row.is-highlight {
  border-color: rgba(43, 153, 88, 0.26);
  background: rgba(234, 250, 244, 0.82);
}

body.page-verification .verify-success-card {
  text-align: center;
  max-width: 520px;
  margin-inline: auto;
}

body.page-verification .verify-success-dialog {
  display: grid;
  gap: 16px;
}

body.page-verification .verify-success-request-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 18px;
  background: var(--verify-theme-accent);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
}

body.page-verification .verify-success-message-box {
  padding: 18px 20px;
  border: 2px solid var(--verify-theme-accent-border);
  background: #fff;
}

body.page-verification .verify-success-message-box strong {
  display: block;
  margin-bottom: 8px;
  color: #2c2a33;
  font-size: 1.05rem;
}

body.page-verification .verify-success-message-box p {
  margin: 0;
  color: #504a5e;
  line-height: 1.8;
}

body.page-verification .verify-success-actions {
  justify-content: center;
}

body.page-verification .verify-status-notice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 248, 235, 0.98), rgba(255, 242, 214, 0.98));
  border: 1px solid rgba(216, 156, 43, 0.22);
  box-shadow: 0 20px 42px rgba(133, 92, 24, 0.12);
}

body.page-verification .verify-status-notice.is-error {
  background: linear-gradient(135deg, rgba(255, 244, 244, 0.98), rgba(255, 233, 233, 0.98));
  border-color: rgba(197, 64, 64, 0.2);
  box-shadow: 0 20px 42px rgba(142, 39, 39, 0.12);
}

body.page-verification .verify-status-notice-copy {
  display: grid;
  gap: 6px;
}

body.page-verification .verify-status-notice-copy strong {
  color: #5b3510;
  font-size: 15px;
  font-weight: 800;
}

body.page-verification .verify-status-notice.is-error .verify-status-notice-copy strong {
  color: #8a1f1f;
}

body.page-verification .verify-status-notice-copy p {
  margin: 0;
  color: #6f5b48;
  font-size: 13px;
  line-height: 1.8;
}

body.page-verification .verify-status-notice.is-error .verify-status-notice-copy p {
  color: #7a4a4a;
}

body.page-verification .verify-status-notice .btn {
  flex-shrink: 0;
}

body.page-verification .verify-tracking-strip {
  margin-top: 18px;
  padding: 20px;
  border: 1px solid var(--verify-theme-accent-border);
  border-radius: 26px;
  background: linear-gradient(180deg, var(--verify-theme-accent-surface), rgba(255, 255, 255, 0.98));
  box-shadow: 0 16px 34px var(--verify-theme-accent-shadow);
}

body.page-verification .verify-tracking-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

body.page-verification .verify-tracking-head h2 {
  margin: 0;
  color: var(--verify-theme-title);
  font-size: 1.22rem;
}

body.page-verification .verify-tracking-head p {
  margin: 6px 0 0;
  color: var(--verify-theme-copy);
  line-height: 1.8;
}

body.page-verification .verify-tracking-list {
  display: grid;
  gap: 12px;
}

body.page-verification .verify-track-card {
  border: 1px solid rgba(112, 84, 138, 0.14);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
}

body.page-verification .verify-track-card::before {
  content: "";
  display: block;
  height: 4px;
  background: transparent;
}

body.page-verification .verify-track-card.is-badge-blue {
  border-color: rgba(47, 102, 166, 0.22);
}

body.page-verification .verify-track-card.is-badge-blue::before {
  background: linear-gradient(135deg, #5fa8e8, #3b6fd2);
}

body.page-verification .verify-track-card.is-badge-blue .verify-track-summary {
  background: linear-gradient(180deg, rgba(245, 250, 255, 0.98), rgba(255, 255, 255, 0.98));
}

body.page-verification .verify-track-card.is-badge-green {
  border-color: rgba(43, 153, 88, 0.22);
}

body.page-verification .verify-track-card.is-badge-green::before {
  background: linear-gradient(135deg, #65be76, #2b9958);
}

body.page-verification .verify-track-card.is-badge-green .verify-track-summary {
  background: linear-gradient(180deg, rgba(241, 252, 246, 0.98), rgba(255, 255, 255, 0.98));
}

body.page-verification .verify-track-card.is-badge-mixed {
  border-color: rgba(38, 132, 120, 0.24);
}

body.page-verification .verify-track-card.is-badge-mixed::before {
  background: linear-gradient(90deg, #5fa8e8 0%, #3b6fd2 50%, #65be76 50%, #2b9958 100%);
}

body.page-verification .verify-track-card.is-badge-mixed .verify-track-summary {
  background: linear-gradient(180deg, rgba(245, 250, 255, 0.98), rgba(241, 252, 246, 0.98));
}

body.page-verification .verify-track-card.has-rejected {
  border-color: rgba(197, 64, 64, 0.28);
  box-shadow: 0 14px 28px rgba(136, 45, 45, 0.08);
}

body.page-verification .verify-track-summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

body.page-verification .verify-track-summary::-webkit-details-marker {
  display: none;
}

body.page-verification .verify-track-main {
  display: grid;
  gap: 4px;
}

body.page-verification .verify-track-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

body.page-verification .verify-track-badge-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  border: 1px solid transparent;
}

body.page-verification .verify-track-badge-chip.is-blue {
  background: rgba(47, 102, 166, 0.12);
  border-color: rgba(47, 102, 166, 0.22);
  color: #2f66a6;
}

body.page-verification .verify-track-badge-chip.is-green {
  background: rgba(43, 153, 88, 0.12);
  border-color: rgba(43, 153, 88, 0.22);
  color: #2b9958;
}

body.page-verification .verify-track-badge-chip.is-mixed {
  background: linear-gradient(90deg, rgba(47, 102, 166, 0.12) 0%, rgba(47, 102, 166, 0.12) 50%, rgba(43, 153, 88, 0.12) 50%, rgba(43, 153, 88, 0.12) 100%);
  border-color: rgba(38, 132, 120, 0.24);
  color: #256d66;
}

body.page-verification .verify-track-main strong {
  color: #2f2a38;
}

body.page-verification .verify-track-meta {
  color: #6d667b;
  font-size: 0.88rem;
}

body.page-verification .verify-track-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
  border: 1px solid transparent;
}

body.page-verification .verify-track-pill.is-info {
  background: rgba(47, 102, 166, 0.12);
  color: #2f66a6;
}

body.page-verification .verify-track-pill.is-success {
  background: rgba(43, 153, 88, 0.12);
  color: #2b9958;
}

body.page-verification .verify-track-pill.is-warning {
  background: rgba(212, 134, 32, 0.14);
  color: #985f00;
}

body.page-verification .verify-track-pill.is-error {
  background: rgba(197, 64, 64, 0.12);
  color: #a12b2b;
}

body.page-verification .verify-track-pill.is-muted {
  background: rgba(105, 106, 118, 0.12);
  color: #575d70;
}

body.page-verification .verify-track-body {
  border-top: 1px solid rgba(112, 84, 138, 0.12);
  padding: 14px 16px 16px;
  display: grid;
  gap: 12px;
}

body.page-verification .verify-track-section {
  display: grid;
  gap: 8px;
}

body.page-verification .verify-track-section h4 {
  margin: 0;
  color: var(--verify-theme-title);
  font-size: 0.97rem;
}

body.page-verification .verify-track-mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
}

body.page-verification .verify-track-mini-grid div {
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(112, 84, 138, 0.12);
  background: rgba(252, 247, 253, 0.72);
  display: grid;
  gap: 4px;
}

body.page-verification .verify-track-mini-grid span {
  color: #6f687e;
  font-size: 0.83rem;
}

body.page-verification .verify-track-mini-grid strong {
  color: #2f2a38;
}

body.page-verification .verify-track-reject-note {
  border: 1px solid rgba(197, 64, 64, 0.2);
  border-radius: 14px;
  padding: 10px 12px;
  background: rgba(255, 244, 244, 0.9);
}

body.page-verification .verify-track-reject-note strong {
  color: #8a1f1f;
}

body.page-verification .verify-track-reject-note p {
  margin: 4px 0 0;
  color: #714545;
  line-height: 1.8;
}

body.page-verification .verify-track-req-table-wrap {
  border: 1px solid rgba(112, 84, 138, 0.12);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

body.page-verification .verify-track-req-table {
  width: 100%;
  border-collapse: collapse;
}

body.page-verification .verify-track-req-table thead th {
  text-align: right;
  background: var(--verify-theme-accent-soft);
  color: var(--verify-theme-title);
  padding: 10px 12px;
  font-size: 0.84rem;
}

body.page-verification .verify-track-req-table tbody td {
  padding: 10px 12px;
  border-top: 1px solid rgba(112, 84, 138, 0.1);
  color: #4f4a5d;
  font-size: 0.9rem;
  vertical-align: top;
}

body.page-verification .verify-track-req-title {
  color: #2f2a38;
  font-weight: 700;
  line-height: 1.7;
}

body.page-verification .verify-track-req-table small {
  color: #7a7489;
}

body.page-verification .verify-track-lines {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

body.page-verification .verify-track-lines li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(112, 84, 138, 0.1);
  background: rgba(255, 255, 255, 0.94);
}

body.page-verification .verify-track-lines li span {
  color: #6f687e;
}

body.page-verification .verify-track-lines li strong {
  color: #2f2a38;
  text-align: left;
}

body.page-verification .verify-track-inquiries {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

body.page-verification .verify-track-empty,
body.page-verification .verify-track-empty-inner {
  padding: 14px;
  border-radius: 14px;
  border: 1px dashed rgba(112, 84, 138, 0.24);
  color: #6f687e;
  background: rgba(255, 255, 255, 0.9);
}

body.page-verification .verify-toast {
  position: fixed;
  left: 50%;
  bottom: calc(var(--bottom-nav-height, 68px) + env(safe-area-inset-bottom, 0px) + 16px);
  transform: translate(-50%, 16px);
  width: min(92vw, 420px);
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(24, 31, 46, 0.96);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
  box-shadow: 0 18px 42px rgba(12, 18, 31, 0.28);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 9999;
}

body.page-verification .verify-toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

body.page-verification .verify-toast.success {
  background: rgba(26, 110, 72, 0.96);
}

body.page-verification .verify-toast.error {
  background: rgba(157, 42, 42, 0.96);
}

body.page-verification .verify-toast.warning {
  background: rgba(125, 76, 18, 0.96);
}

body.page-verification .verify-green-grid {
  display: grid;
  gap: 14px;
}

body.page-verification .verify-green-upload {
  margin-top: 14px;
}

body.page-verification .verify-green-empty {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 247, 235, 0.9);
  color: #8a5e00;
  font-weight: 700;
}

@media (max-width: 1100px) {
  body.page-verification .verify-page-heading,
  body.page-verification .verify-panel-header,
  body.page-verification .verify-pricing-head,
  body.page-verification .verify-tracking-head {
    flex-direction: column;
  }

  body.page-verification .verify-blue-layout,
  body.page-verification .verify-green-layout,
  body.page-verification .verify-plan-grid {
    grid-template-columns: 1fr;
  }

  body.page-verification .verify-provider-chip {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 720px) {
  body.page-verification .verification-page-shell {
    padding-inline: 12px;
  }

  body.page-verification .verify-page-hero,
  body.page-verification .verify-detail-board,
  body.page-verification .verify-summary-card,
  body.page-verification .verify-pricing-strip,
  body.page-verification .verify-success-card {
    padding: 16px;
    border-radius: 22px;
  }

  body.page-verification .verify-page-heading h1 {
    font-size: 1.6rem;
  }

  body.page-verification .verify-badge-tabs {
    grid-template-columns: 1fr;
  }

  body.page-verification .verify-flow-steps,
  body.page-verification .verify-summary-meta {
    grid-template-columns: 1fr;
  }

  body.page-verification .verify-inline-actions,
  body.page-verification .verify-page-actions,
  body.page-verification .verify-summary-row,
  body.page-verification .verify-plan-card-head,
  body.page-verification .verify-plan-price-row,
  body.page-verification .verify-track-lines li,
  body.page-verification .verify-track-summary {
    flex-direction: column;
    align-items: stretch;
  }

  body.page-verification .verify-track-req-table-wrap {
    overflow-x: auto;
  }

  body.page-verification .verify-status-notice {
    align-items: stretch;
  }

  body.page-verification .verify-status-notice .btn {
    width: 100%;
  }
}

@media (min-width: 1024px) {
  body.mobile-web-parity .page-shell {
    max-width: min(1220px, calc(100vw - 72px));
    padding: 18px 24px var(--space-2xl);
  }

  body.mobile-web-parity .detail-card {
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  }

  body.mobile-web-parity .page-header h1 {
    font-size: clamp(24px, 2vw, 32px);
  }
}

/* ══════════════════════════════════════════════
   Verification Payment Page
   ══════════════════════════════════════════════ */
body.page-verification-payment .verify-pay-page-shell {
  max-width: 860px;
  padding-block: 16px 24px;
}

body.page-verification-payment .verify-pay-page {
  display: grid;
  gap: 16px;
}

body.page-verification-payment .verify-pay-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  border: 1px solid rgba(47, 125, 30, 0.2);
  border-radius: 22px;
  background: linear-gradient(140deg, #ffffff, #f5fff2 58%, #f4f8ff 100%);
}

body.page-verification-payment .verify-pay-back {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(47, 125, 30, 0.3);
  border-radius: 14px;
  background: #fff;
  color: #245f17;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

body.page-verification-payment .verify-pay-header-copy p {
  margin: 0;
  font-size: 12px;
  color: #4b6f42;
  font-weight: 700;
}

body.page-verification-payment .verify-pay-header-copy h1 {
  margin: 4px 0 0;
  font-size: 1.45rem;
  color: #1f2937;
}

body.page-verification-payment .verify-pay-card {
  border: 1px solid rgba(98, 72, 142, 0.15);
  border-radius: 24px;
  padding: 18px;
  background: #fff;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
}

body.page-verification-payment .verify-pay-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 180px;
  color: #4f5d75;
  font-weight: 700;
}

body.page-verification-payment .verify-pay-error {
  border-radius: 14px;
  border: 1px solid #fecdd3;
  background: #fff1f2;
  color: #9f1239;
  font-weight: 700;
  padding: 14px;
  text-align: center;
}

body.page-verification-payment .verify-pay-field-error {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 800;
  color: #b42318;
  line-height: 1.5;
}

body.page-verification-payment .verify-pay-card-grid .form-input.is-invalid {
  border-color: #ef4444;
  background: #fff7f7;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.14);
}

body.page-verification-payment .verify-pay-methods.is-invalid {
  border: 1px solid #ef4444;
  border-radius: 14px;
  padding: 8px;
  background: #fff7f7;
}

body.page-verification-payment .verify-pay-toast {
  position: fixed;
  top: calc(env(safe-area-inset-top, 0px) + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  width: min(520px, calc(100vw - 24px));
  padding: 12px 14px;
  border-radius: 14px;
  background: #1f2937;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.7;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.25);
  opacity: 0;
  pointer-events: none;
  z-index: 1300;
  transition: opacity .18s ease, transform .18s ease;
}

body.page-verification-payment .verify-pay-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

body.page-verification-payment .verify-pay-toast.success {
  background: #166534;
}

body.page-verification-payment .verify-pay-toast.error {
  background: #991b1b;
}

body.page-verification-payment .verify-pay-toast.warning {
  background: #92400e;
}

body.page-verification-payment .verify-pay-status {
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #334155;
  padding: 10px 12px;
  font-size: 0.93rem;
  line-height: 1.8;
}

body.page-verification-payment .verify-pay-status.is-success {
  border-color: #bbf7d0;
  background: #f0fdf4;
  color: #166534;
}

body.page-verification-payment .verify-pay-status.is-error {
  border-color: #fecdd3;
  background: #fff1f2;
  color: #9f1239;
}

body.page-verification-payment .verify-pay-status.is-warning {
  border-color: #fde68a;
  background: #fffbeb;
  color: #92400e;
}

body.page-verification-payment .verify-pay-body {
  display: grid;
  gap: 12px;
}

body.page-verification-payment .verify-pay-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

body.page-verification-payment .verify-pay-summary-item {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
  padding: 10px;
  display: grid;
  gap: 4px;
}

body.page-verification-payment .verify-pay-summary-item span {
  font-size: 12px;
  color: #64748b;
  font-weight: 700;
}

body.page-verification-payment .verify-pay-summary-item strong {
  color: #1f2937;
  font-size: 0.95rem;
}

body.page-verification-payment .verify-pay-amount-row {
  border: 1px solid #d6e8d4;
  border-radius: 12px;
  background: #f8fff7;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

body.page-verification-payment .verify-pay-amount-row span {
  color: #4b5563;
  font-weight: 700;
}

body.page-verification-payment .verify-pay-amount-row strong {
  color: #1f7a1f;
  font-size: 1.1rem;
}

body.page-verification-payment .verify-pay-brand-box {
  margin: 4px auto 0;
  width: min(100%, 360px);
  border: 2px dashed #d8c9ea;
  border-radius: 14px;
  background: #fff;
  text-align: center;
  padding: 18px 12px;
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #111827;
}

body.page-verification-payment .verify-pay-methods {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

body.page-verification-payment .verify-pay-method-option {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid #d9c4eb;
  border-radius: 999px;
  padding: 8px;
  background: #fff;
  color: #4b2d73;
  font-weight: 700;
  cursor: pointer;
}

body.page-verification-payment .verify-pay-method-option.is-selected {
  border-color: #2f7d1e;
  background: #f5fff2;
  box-shadow: 0 0 0 2px rgba(47, 125, 30, 0.12);
}

body.page-verification-payment .verify-pay-method-option input {
  accent-color: #2f7d1e;
}

body.page-verification-payment .verify-pay-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

body.page-verification-payment .verify-pay-card-grid .form-group {
  margin: 0;
}

body.page-verification-payment .verify-pay-card-grid .form-group:not(.half) {
  grid-column: span 2;
}

body.page-verification-payment .verify-pay-security {
  border: 1px solid #dcefd7;
  border-radius: 12px;
  background: #f5fff2;
  padding: 10px 12px;
}

body.page-verification-payment .verify-pay-security strong {
  color: #2f7d1e;
  display: block;
  margin-bottom: 4px;
}

body.page-verification-payment .verify-pay-security ul {
  margin: 0;
  padding-inline-start: 18px;
  color: #475569;
  font-size: 12px;
  line-height: 1.7;
}

body.page-verification-payment .verify-pay-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

body.page-verification-payment .verify-pay-actions .btn {
  min-width: 190px;
  min-height: 44px;
}

@media (max-width: 760px) {
  body.page-verification-payment .verify-pay-page-shell {
    padding-inline: 12px;
  }

  body.page-verification-payment .verify-pay-summary-grid,
  body.page-verification-payment .verify-pay-card-grid {
    grid-template-columns: 1fr;
  }

  body.page-verification-payment .verify-pay-card-grid .form-group,
  body.page-verification-payment .verify-pay-card-grid .form-group:not(.half) {
    grid-column: span 1;
  }

  body.page-verification-payment .verify-pay-methods {
    grid-template-columns: 1fr;
  }

  body.page-verification-payment .verify-pay-actions .btn {
    width: 100%;
  }
}
