
    /* Page header */
    .page-header {
      text-align: center;
      margin-bottom: 40px;
    }

    .page-header h1 {
      font-size: clamp(22px, 4vw, 32px);
      font-weight: 700;
      color: var(--primary-blue);
      letter-spacing: -0.02em;
    }

    .page-header p {
      font-size: 15px;
      color: var(--text-muted);
      margin-top: 6px;
    }

    .header-line {
      width: 48px;
      height: 4px;
      background: var(--primary-yellow);
      border-radius: 2px;
      margin: 12px auto 0;
    }

    /* Grid */
    .iw-cards-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      max-width: 1540px;
      margin: 0 auto;
      padding:40px 20px;
    }

    /* interested and wishlist iw-card */
    .iw-card {
      background: var(--white);
      border: 1.5px solid var(--iw-border);
      border-radius: var(--radius-iw-card);
      padding: 24px;
      display: flex;
      justify-content:space-between;
      flex-direction: column;
      gap: 18px;
      box-shadow: var(--shadow-iw-card);
      transition: box-shadow 0.25s ease, transform 0.2s ease, border-color 0.2s ease;
    }

    .iw-card:hover {
      box-shadow: var(--shadow-iw-hover);
      transform: translateY(-3px);
      border-color: rgba(7, 76, 159, 0.2);
    }

    /* iw-card top row */
    .iw-card-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 10px;
    }

    .owner-block {}

    .owner-label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .07em;
      text-transform: uppercase;
      color: var(--text-light);
      margin-bottom: 3px;
    }

    .owner-name {
      font-size: 18px;
      font-weight: 700;
      color: var(--primary-blue);
      letter-spacing: -0.01em;
    }

    .category-pill {
      flex-shrink: 0;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .05em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 50px;
      background: var(--primary-blue-light);
      color: var(--primary-blue);
    }

    /* Property ID badge */
    .pid-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--primary-yellow);
      color: var(--text);
      font-family: var(--font);
      font-size: 18px;
      font-weight: 500;
      padding: 7px 14px;
      border-radius: var(--radius-badge);
      letter-spacing: .04em;
    }

    .pid-badge .pid-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--primary-yellow-dark);
      flex-shrink: 0;
    }

    /* Details grid */
    .details-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border: 1.5px solid var(--iw-border);
      border-radius: 12px;
      overflow: hidden;
    }

    .detail-cell {
      padding: 11px 13px;
      border-right: 1.5px solid var(--iw-border);
      border-bottom: 1.5px solid var(--iw-border);
    }

    .detail-cell:nth-child(3n) {
      border-right: none;
    }

    .detail-cell:nth-last-child(-n+3) {
      border-bottom: none;
    }

    .detail-label {
      font-size: 14px;
      font-weight: 700;
      letter-spacing: .07em;
      text-transform: uppercase;
      color: #1e1e3feb;
      margin-bottom: 4px;
    }

    .iw-detail-value {
      font-size: 16px;
      font-weight: 600;
      color: var(--text);
      line-height: 1.3;
    }

    .iw-detail-value.highlight {
      color: var(--primary-blue);
    }

    /* Description */
    .desc-block {
      background: var(--accent-blue-light);
      border-left: 3px solid var(--accent-blue);
      border-radius: 0 10px 10px 0;
      padding: 11px 14px;
      font-size: 16px;
      color: #3a4f6a;
      line-height: 1.65;
      display: -webkit-box;
      -webkit-line-clamp: 6;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    /* Footer */
    .iw-card-footer {
      display: flex;
      align-items: center;
      justify-content: end;
      gap: 12px;
      margin-top: auto;
    }
    .iw-card-wishlist{
       justify-content: space-between; 
    }



    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(0.8); }
    }

    /* Button */
    .btn {
      background: var(--primary-blue);
      color: #fff;
      border: none;
      border-radius: var(--radius-btn);
      padding: 11px 24px;
      font-family: var(--font);
      font-size: 13.5px;
      font-weight: 600;
      cursor: pointer;
      letter-spacing: .02em;
      transition: background 0.18s, transform 0.12s, box-shadow 0.18s;
      box-shadow: 0 2px 8px rgba(7,76,159,0.25);
    }

    .btn:hover {
      background: var(--primary-blue-mid);
      transform: translateY(-1px);
      box-shadow: 0 4px 16px rgba(7,76,159,0.35);
    }

    .btn:active {
      transform: translateY(0);
      box-shadow: 0 1px 4px rgba(7,76,159,0.2);
    }

    /* Responsive: tablet */
    @media (max-width: 768px) {


      .iw-cards-grid {
        grid-template-columns: 1fr;
        gap: 18px;
      }

      .details-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .detail-cell:nth-child(3n) {
        border-right: 1.5px solid var(--iw-border);
      }

      .detail-cell:nth-child(2n) {
        border-right: none;
      }

      .detail-cell:nth-last-child(-n+3) {
        border-bottom: 1.5px solid var(--iw-border);
      }

      .detail-cell:nth-last-child(-n+2) {
        border-bottom: none;
      }
    }

    /* Responsive: mobile */
    @media (max-width: 480px) {
      .iw-card { padding: 18px 16px; }

      .iw-card-top { flex-direction: column; }

      .iw-card-footer { flex-direction: column; align-items: flex-start; }

      .btn { width: 100%; text-align: center; }

      .details-grid {
        grid-template-columns: 1fr 1fr;
      }
    }