
    /* ===== ROOT / THEME ===== */
    :root {
      --red:      #c0392b;
      --red-dark: #96281b;
      --red-soft: #fdf2f1;
      --gold:     #d4a017;
      --gold-lt:  #fdf6e3;
      --text:     #2c2c2c;
      --muted:    #777;
      --border:   #e8e0e0;
      --card-bg:  #ffffff;
      --bg:       #faf8f8;
      --radius:   14px;
      --shadow:   0 4px 24px rgba(0,0,0,.07);
      --shadow-hover: 0 10px 36px rgba(0,0,0,.13);
      font-family: 'Poppins', sans-serif;
    }

    body { background: var(--bg); color: var(--text); }

    /* ===================================================
       HERO SECTION
    =================================================== */
    .profiles-hero {
      position: relative;
      min-height: 380px;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: linear-gradient(135deg, #7b1c2e 0%, #c0392b 50%, #e74c3c 100%);
    }

    .profiles-hero::before {
      content: '';
      position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='28'/%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3Ccircle cx='30' cy='30' r='12'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    }

    .profiles-hero-glow {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      opacity: .25;
      pointer-events: none;
    }
    .ph-glow-1 { width:400px; height:400px; background:#ffd6c4; top:-100px; right:-80px; }
    .ph-glow-2 { width:300px; height:300px; background:#fff0b3; bottom:-80px; left:5%; }

    .profiles-hero-mandala {
      position: absolute;
      right: 6%;
      top: 50%;
      transform: translateY(-50%);
      width: 260px;
      opacity: .12;
      pointer-events: none;
    }

    .profiles-hero-content { position: relative; z-index: 2; padding: 60px 0; }

    .ph-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,.15);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,.25);
      color: #fff;
      font-size: 13px;
      font-weight: 600;
      padding: 6px 16px;
      border-radius: 30px;
      margin-bottom: 18px;
      letter-spacing: .5px;
    }

    .profiles-hero-content h1 {
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 800;
      color: #fff;
      line-height: 1.2;
      margin-bottom: 12px;
    }
    .profiles-hero-content h1 span { color: #ffd6a5; }

    .profiles-hero-content p {
      color: rgba(255,255,255,.82);
      font-size: 15px;
      max-width: 480px;
      margin-bottom: 24px;
    }

    .ph-breadcrumb {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: rgba(255,255,255,.7);
    }
    .ph-breadcrumb a { color: rgba(255,255,255,.85); text-decoration: none; }
    .ph-breadcrumb a:hover { color: #fff; }

    /* HERO QUICK STATS */
    .ph-stats {
      display: flex;
      align-items: center;
      gap: 0;
      background: rgba(255,255,255,.1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,.2);
      border-radius: 50px;
      padding: 10px 24px;
      margin-top: 28px;
      width: fit-content;
      flex-wrap: wrap;
    }
    .ph-stat-item { text-align: center; padding: 4px 20px; }
    .ph-stat-item strong { display: block; font-size: 18px; font-weight: 800; color: #fff; }
    .ph-stat-item span  { font-size: 11px; color: rgba(255,255,255,.7); white-space: nowrap; }
    .ph-stat-divider { width: 1px; height: 34px; background: rgba(255,255,255,.25); }

    /* HERO SEARCH BAR */
    .ph-hero-search {
      margin-top: 32px;
      display: flex;
      gap: 0;
      max-width: 560px;
      background: #fff;
      border-radius: 50px;
      padding: 6px 6px 6px 20px;
      box-shadow: 0 8px 30px rgba(0,0,0,.15);
      align-items: center;
    }
    .ph-hero-search input {
      border: none;
      outline: none;
      flex: 1;
      font-size: 14px;
      font-family: 'Poppins', sans-serif;
      color: var(--text);
      background: transparent;
    }
    .ph-hero-search input::placeholder { color: #aaa; }
    .ph-hero-search button {
      background: var(--red);
      color: #fff;
      border: none;
      border-radius: 50px;
      padding: 10px 22px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      white-space: nowrap;
      font-family: 'Poppins', sans-serif;
      transition: background .2s;
    }
    .ph-hero-search button:hover { background: var(--red-dark); }

    /* ===================================================
       MAIN LAYOUT — SIDEBAR + GRID
    =================================================== */
    .profiles-main { padding: 40px 0 60px; }

    /* ===================================================
       FILTER SIDEBAR
    =================================================== */
    .filter-sidebar {
      background: var(--card-bg);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      overflow: hidden;
      position: sticky;
      top: 80px;
    }

    .filter-sidebar-header {
      background: linear-gradient(135deg, #7b1c2e, #c0392b);
      color: #fff;
      padding: 16px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .filter-sidebar-header h5 {
      margin: 0;
      font-size: 15px;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .filter-clear-btn {
      background: rgba(255,255,255,.2);
      border: 1px solid rgba(255,255,255,.3);
      color: #fff;
      font-size: 11px;
      padding: 3px 10px;
      border-radius: 20px;
      cursor: pointer;
      font-family: 'Poppins', sans-serif;
      transition: background .2s;
    }
    .filter-clear-btn:hover { background: rgba(255,255,255,.35); }

    .filter-body { padding: 0; }

    /* Filter Group */
    .filter-group {
      border-bottom: 1px solid var(--border);
    }
    .filter-group:last-child { border-bottom: none; }

    .filter-group-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 18px;
      cursor: pointer;
      user-select: none;
      font-size: 13px;
      font-weight: 600;
      color: var(--text);
      transition: background .2s;
    }
    .filter-group-header:hover { background: var(--red-soft); }
    .filter-group-header .fgh-label {
      display: flex; align-items: center; gap: 8px;
    }
    .filter-group-header .fgh-label i { color: var(--red); font-size: 13px; }
    .filter-group-header .fgh-arrow {
      font-size: 11px; color: var(--muted);
      transition: transform .2s;
    }
    .filter-group.collapsed .fgh-arrow { transform: rotate(-90deg); }

    .filter-group-body {
      padding: 4px 18px 14px;
      display: block;
    }
    .filter-group.collapsed .filter-group-body { display: none; }

    /* Range Slider */
    .filter-range-labels {
      display: flex; justify-content: space-between;
      font-size: 11px; color: var(--muted); margin-bottom: 4px;
    }
    .filter-range {
      width: 100%;
      accent-color: var(--red);
    }
    .filter-range-val {
      text-align: center;
      font-size: 12px;
      font-weight: 600;
      color: var(--red);
      margin-top: 4px;
    }

    /* Checkbox Options */
    .filter-option {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 7px;
      cursor: pointer;
      font-size: 12.5px;
      color: #444;
    }
    .filter-option input[type="checkbox"] {
      accent-color: var(--red);
      width: 14px; height: 14px; cursor: pointer;
    }
    .filter-option:last-child { margin-bottom: 0; }
    .filter-option-count {
      margin-left: auto;
      font-size: 10px;
      color: var(--muted);
      background: #f2f2f2;
      padding: 1px 6px;
      border-radius: 10px;
    }

    /* Select Filter */
    .filter-select {
      width: 100%;
      padding: 7px 10px;
      border: 1px solid var(--border);
      border-radius: 8px;
      font-size: 12.5px;
      font-family: 'Poppins', sans-serif;
      color: var(--text);
      background: #fff;
      outline: none;
      margin-bottom: 6px;
    }
    .filter-select:focus { border-color: var(--red); }

    /* Applied filters bar */
    .active-filters-bar {
      background: var(--gold-lt);
      border: 1px solid #f0d980;
      border-radius: 10px;
      padding: 10px 14px;
      margin: 0 0 20px;
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px;
    }
    .active-filters-bar .af-label {
      font-size: 12px;
      font-weight: 600;
      color: #8a6200;
      white-space: nowrap;
    }
    .af-tag {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: #fff;
      border: 1px solid #e2c84e;
      border-radius: 20px;
      padding: 3px 10px;
      font-size: 11.5px;
      color: #6e5000;
      cursor: pointer;
    }
    .af-tag i { font-size: 9px; color: #c0392b; }

    /* Apply Filters Button */
    .filter-apply-btn {
      display: block;
      width: calc(100% - 36px);
      margin: 14px 18px 18px;
      background: linear-gradient(135deg, #7b1c2e, #c0392b);
      color: #fff;
      border: none;
      border-radius: 8px;
      padding: 10px;
      font-size: 13px;
      font-weight: 600;
      font-family: 'Poppins', sans-serif;
      cursor: pointer;
      transition: opacity .2s;
    }
    .filter-apply-btn:hover { opacity: .88; }

    /* ===================================================
       TOP BAR (sort / count / view toggle)
    =================================================== */
    .profiles-topbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 24px;
      background: var(--card-bg);
      padding: 14px 20px;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }

    .ptb-count { font-size: 14px; color: var(--muted); }
    .ptb-count strong { color: var(--text); font-weight: 700; }

    .ptb-right {
      display: flex; align-items: center; gap: 12px;
    }

    .ptb-sort {
      display: flex; align-items: center; gap: 8px;
      font-size: 13px; color: var(--muted);
    }
    .ptb-sort select {
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 6px 10px;
      font-size: 12.5px;
      font-family: 'Poppins', sans-serif;
      outline: none;
    }
    .ptb-sort select:focus { border-color: var(--red); }

    .ptb-view-toggle {
      display: flex;
      border: 1px solid var(--border);
      border-radius: 8px;
      overflow: hidden;
    }
    .ptb-view-btn {
      background: #fff;
      border: none;
      padding: 7px 12px;
      cursor: pointer;
      color: var(--muted);
      font-size: 14px;
      transition: all .2s;
    }
    .ptb-view-btn.active {
      background: var(--red);
      color: #fff;
    }

    /* ===================================================
       PROFILE CARDS — GRID VIEW
    =================================================== */
    .profiles-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(min(260px,100%), 1fr));
      gap: 22px;
    }

    .profile-card {
      background: var(--card-bg);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      overflow: hidden;
      transition: transform .25s, box-shadow .25s;
      position: relative;
      cursor: pointer;
    }
    .profile-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-hover);
    }

    /* Card Photo */
    .pc-photo-wrap {
      position: relative;
      height: 220px;
      overflow: hidden;
    }
    .pc-photo-wrap img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform .4s;
    }
    .profile-card:hover .pc-photo-wrap img { transform: scale(1.05); }

    .pc-photo-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 60%);
    }

    /* Badges on photo */
    .pc-badge-verified {
      position: absolute;
      top: 10px; left: 10px;
      background: #27ae60;
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      padding: 3px 9px;
      border-radius: 20px;
      display: flex; align-items: center; gap: 4px;
      letter-spacing: .3px;
    }
    .pc-badge-nri {
      position: absolute;
      top: 10px; right: 10px;
      background: #2980b9;
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      padding: 3px 9px;
      border-radius: 20px;
    }
    .pc-badge-new {
      position: absolute;
      top: 10px; right: 10px;
      background: var(--gold);
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      padding: 3px 9px;
      border-radius: 20px;
    }

    /* Quick info on photo bottom */
    .pc-photo-info {
      position: absolute;
      bottom: 10px; left: 12px; right: 12px;
      display: flex; align-items: flex-end; justify-content: space-between;
    }
    .pc-photo-info-name {
      font-size: 15px; font-weight: 700; color: #fff;
      text-shadow: 0 1px 4px rgba(0,0,0,.4);
    }
    .pc-photo-info-age {
      font-size: 12px; color: rgba(255,255,255,.85);
      font-weight: 500;
    }
    .pc-wishlist-btn {
      background: rgba(255,255,255,.2);
      backdrop-filter: blur(6px);
      border: 1px solid rgba(255,255,255,.35);
      color: #fff;
      width: 32px; height: 32px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      font-size: 14px;
      transition: all .2s;
    }
    .pc-wishlist-btn:hover, .pc-wishlist-btn.active {
      background: #e74c3c;
      border-color: #e74c3c;
    }

    /* Card Body */
    .pc-body { padding: 14px 16px 16px; }

    .pc-quick-tags {
      display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px;
    }
    .pc-tag {
      font-size: 11px;
      padding: 3px 10px;
      border-radius: 20px;
      font-weight: 500;
    }
    .pc-tag-red   { background: #fdf2f1; color: #c0392b; border: 1px solid #f5c6c6; }
    .pc-tag-green { background: #edfaf3; color: #27ae60; border: 1px solid #b8e8cd; }
    .pc-tag-blue  { background: #eaf4fb; color: #2980b9; border: 1px solid #b6d8f0; }
    .pc-tag-gold  { background: #fdf6e3; color: #a07800; border: 1px solid #e8d68a; }
    .pc-tag-gray  { background: #f3f3f3; color: #666;    border: 1px solid #ddd; }

    /* Details rows */
    .pc-details { list-style: none; padding: 0; margin: 0 0 14px; display: flex; flex-direction: column; gap: 6px; }
    .pc-details li {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 12.5px;
      color: #555;
    }
    .pc-details li i {
      width: 16px;
      color: var(--red);
      font-size: 12px;
      flex-shrink: 0;
    }
    .pc-details li strong { color: var(--text); }

    /* Card Actions */
    .pc-actions {
      display: flex; gap: 8px;
    }
    .pc-btn-primary {
      flex: 1;
      background: linear-gradient(135deg, #7b1c2e, #c0392b);
      color: #fff;
      border: none;
      border-radius: 8px;
      padding: 9px 10px;
      font-size: 12.5px;
      font-weight: 600;
      font-family: 'Poppins', sans-serif;
      cursor: pointer;
      transition: opacity .2s;
      display: flex; align-items: center; justify-content: center; gap: 5px;
    }
    .pc-btn-primary:hover { opacity: .88; }

    .pc-btn-secondary {
      background: #fff;
      color: var(--red);
      border: 1.5px solid var(--red);
      border-radius: 8px;
      padding: 9px 12px;
      font-size: 13px;
      cursor: pointer;
      transition: all .2s;
      display: flex; align-items: center; justify-content: center;
    }
    .pc-btn-secondary:hover { background: var(--red-soft); }

    /* ===================================================
       LIST VIEW (alternate)
    =================================================== */
    .profiles-list { display: flex; flex-direction: column; gap: 16px; }
    .profiles-list.d-none { display: none !important; }
    .profiles-grid.d-none { display: none !important; }

    .profile-list-card {
      background: var(--card-bg);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      display: flex;
      gap: 0;
      overflow: hidden;
      transition: box-shadow .25s;
      cursor: pointer;
    }
    .profile-list-card:hover { box-shadow: var(--shadow-hover); }

    .plc-photo {
      width: 160px;
      flex-shrink: 0;
      position: relative;
      overflow: hidden;
    }
    .plc-photo img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform .4s;
    }
    .profile-list-card:hover .plc-photo img { transform: scale(1.05); }
    .plc-photo-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to right, transparent 70%, rgba(0,0,0,.05));
    }

    .plc-body {
      padding: 18px 20px;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .plc-header {
      display: flex; align-items: flex-start; justify-content: space-between; gap: 12px;
      margin-bottom: 10px;
    }

    .plc-name { font-size: 17px; font-weight: 700; color: var(--text); margin: 0 0 3px; }
    .plc-sub  { font-size: 12.5px; color: var(--muted); }

    .plc-badges { display: flex; gap: 6px; flex-wrap: wrap; }
    .plc-badge {
      font-size: 10px; font-weight: 700;
      padding: 3px 9px; border-radius: 20px;
    }
    .plc-badge-verified { background: #edfaf3; color: #27ae60; border: 1px solid #b8e8cd; }
    .plc-badge-nri      { background: #eaf4fb; color: #2980b9; border: 1px solid #b6d8f0; }
    .plc-badge-new      { background: #fdf6e3; color: #a07800; border: 1px solid #e8d68a; }

    .plc-details-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
      margin-bottom: 14px;
    }
    .plc-detail-item { font-size: 12px; color: #555; display: flex; align-items: center; gap: 6px; }
    .plc-detail-item i { color: var(--red); font-size: 11px; width: 14px; }

    .plc-footer {
      display: flex; align-items: center; justify-content: space-between; gap: 12px;
    }

    .plc-tags { display: flex; gap: 6px; flex-wrap: wrap; }

    .plc-actions { display: flex; gap: 8px; flex-shrink: 0; }

    /* ===================================================
       PROFILE DETAIL MODAL / DRAWER
    =================================================== */
    .profile-detail-overlay {
      position: fixed; inset: 0;
      background: rgba(0,0,0,.55);
      backdrop-filter: blur(4px);
      z-index: 2000;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }
    .profile-detail-overlay.open { display: flex; }

    .profile-detail-modal {
      background: var(--card-bg);
      border-radius: 18px;
      box-shadow: 0 24px 80px rgba(0,0,0,.25);
      width: 100%;
      max-width: 820px;
      max-height: 90vh;
      overflow-y: auto;
      animation: modalIn .3s cubic-bezier(.16,1,.3,1);
    }
    @keyframes modalIn {
      from { opacity: 0; transform: scale(.95) translateY(20px); }
      to   { opacity: 1; transform: scale(1)  translateY(0); }
    }

    /* Modal Header */
    .pdm-header {
      position: relative;
      background: linear-gradient(135deg, #7b1c2e, #c0392b);
      padding: 28px 30px 22px;
      display: flex;
      align-items: flex-end;
      gap: 20px;
    }

    .pdm-avatar {
      width: 90px; height: 90px;
      border-radius: 50%;
      border: 3px solid rgba(255,255,255,.5);
      object-fit: cover;
      flex-shrink: 0;
    }

    .pdm-header-info { flex: 1; }
    .pdm-name   { font-size: 22px; font-weight: 800; color: #fff; margin: 0 0 4px; }
    .pdm-sub    { font-size: 13px; color: rgba(255,255,255,.8); margin: 0 0 10px; }
    .pdm-badges { display: flex; gap: 6px; flex-wrap: wrap; }
    .pdm-badge  {
      font-size: 10px; font-weight: 700;
      padding: 3px 10px; border-radius: 20px;
      background: rgba(255,255,255,.2);
      color: #fff;
      border: 1px solid rgba(255,255,255,.3);
    }

    .pdm-close {
      position: absolute; top: 16px; right: 16px;
      background: rgba(255,255,255,.2);
      border: 1px solid rgba(255,255,255,.3);
      color: #fff;
      width: 34px; height: 34px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; font-size: 16px;
      transition: background .2s;
    }
    .pdm-close:hover { background: rgba(255,255,255,.35); }

    /* Modal Body */
    .pdm-body { padding: 28px 30px; }

    /* Profile section inside modal */
    .pdm-section { margin-bottom: 26px; }
    .pdm-section-title {
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--red);
      margin-bottom: 14px;
      padding-bottom: 8px;
      border-bottom: 2px solid var(--red-soft);
      display: flex; align-items: center; gap: 8px;
    }
    .pdm-section-title i { font-size: 13px; }

    .pdm-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .pdm-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }

    .pdm-field {
      background: var(--bg);
      border-radius: 10px;
      padding: 12px 14px;
    }
    .pdm-field label {
      display: block;
      font-size: 11px;
      font-weight: 600;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: .5px;
      margin-bottom: 4px;
    }
    .pdm-field span {
      font-size: 14px;
      font-weight: 600;
      color: var(--text);
    }

    /* Modal actions footer */
    .pdm-footer {
      padding: 16px 30px 24px;
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      border-top: 1px solid var(--border);
    }
    .pdm-btn {
      flex: 1;
      min-width: 120px;
      padding: 11px 16px;
      border-radius: 10px;
      font-size: 13.5px;
      font-weight: 600;
      font-family: 'Poppins', sans-serif;
      cursor: pointer;
      border: none;
      display: flex; align-items: center; justify-content: center; gap: 7px;
      transition: opacity .2s;
    }
    .pdm-btn-primary { background: linear-gradient(135deg,#7b1c2e,#c0392b); color:#fff; }
    .pdm-btn-primary:hover { opacity:.88; }
    .pdm-btn-outline { background:#fff; color:var(--red); border:1.5px solid var(--red); }
    .pdm-btn-outline:hover { background:var(--red-soft); }
    .pdm-btn-green { background:#27ae60; color:#fff; }
    .pdm-btn-green:hover { opacity:.88; }

    /* ===================================================
       PAGINATION
    =================================================== */
    .profiles-pagination {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      margin-top: 40px;
      flex-wrap: wrap;
    }
    .pg-btn {
      width: 38px; height: 38px;
      border-radius: 10px;
      border: 1px solid var(--border);
      background: #fff;
      color: var(--text);
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: all .2s;
      font-family: 'Poppins', sans-serif;
    }
    .pg-btn:hover { border-color: var(--red); color: var(--red); }
    .pg-btn.active { background: var(--red); color: #fff; border-color: var(--red); }
    .pg-btn.arrow  { font-size: 14px; }

    /* ===================================================
       NO RESULTS
    =================================================== */
    .no-results-box {
      text-align: center;
      padding: 60px 20px;
      background: var(--card-bg);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }
    .no-results-box .nr-icon { font-size: 48px; color: #ddd; margin-bottom: 16px; }
    .no-results-box h5 { font-weight: 700; color: var(--text); margin-bottom: 8px; }
    .no-results-box p { font-size: 13.5px; color: var(--muted); max-width: 320px; margin: 0 auto 20px; }
    .nr-reset-btn {
      background: var(--red);
      color: #fff;
      border: none;
      padding: 10px 24px;
      border-radius: 8px;
      font-size: 13.5px;
      font-weight: 600;
      cursor: pointer;
      font-family: 'Poppins', sans-serif;
    }

    /* ===================================================
       MOBILE FILTER TOGGLE
    =================================================== */
    .mobile-filter-toggle {
      display: none;
      align-items: center;
      gap: 8px;
      background: var(--red);
      color: #fff;
      border: none;
      border-radius: 8px;
      padding: 9px 18px;
      font-size: 13.5px;
      font-weight: 600;
      cursor: pointer;
      font-family: 'Poppins', sans-serif;
      margin-bottom: 20px;
    }
    @media (max-width:991px) {
      .mobile-filter-toggle { display: flex; }
      .filter-sidebar {
        position: fixed;
        left: -320px;
        top: 0; bottom: 0;
        width: 300px;
        z-index: 1500;
        border-radius: 0;
        transition: left .3s;
        overflow-y: auto;
      }
      .filter-sidebar.open { left: 0; }
      .filter-overlay {
        display: none;
        position: fixed; inset: 0;
        background: rgba(0,0,0,.5);
        z-index: 1499;
      }
      .filter-overlay.open { display: block; }
    }

    @media (max-width:576px) {
      .ph-stats { flex-direction: column; border-radius: var(--radius); gap: 8px; padding: 14px 20px; }
      .ph-stat-divider { display: none; }
      .plc-photo { width: 110px; }
      .plc-details-grid { grid-template-columns: 1fr 1fr; }
      .pdm-grid-2, .pdm-grid-3 { grid-template-columns: 1fr; }
      .pdm-header { flex-direction: column; align-items: flex-start; }
      .profiles-hero-content h1 { font-size: 1.6rem; }
    }