
  /* --- LOCATOR SECTION WRAPPER --- */
  .propper-locator-section {
    background-color: #0a0a0a;
    padding: 100px 20px;
    font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #a1a1aa;
  }

  .propper-locator-container {
    max-width: 1200px;
    margin: 0 auto;
  }

  /* --- HEADER & SEARCH --- */
  .propper-locator-header {
    margin-bottom: 50px;
    text-align: center;
  }

  .propper-locator-title {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    letter-spacing: -1px;
  }

  .propper-locator-desc {
    font-size: 1.1rem;
    margin: 0 auto 30px auto;
    max-width: 600px;
  }

  /* Search Bar */
  .propper-search-wrap {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
  }

  .propper-search-input {
    flex: 1;
    background-color: #16161a;
    border: 1px solid #2d2d35;
    border-radius: 8px 0 0 8px;
    padding: 18px 20px;
    color: #ffffff;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s ease;
  }

  .propper-search-input:focus {
    border-color: #f59e0b;
  }

  .propper-search-btn {
    background-color: #f59e0b;
    color: #111111;
    border: none;
    border-radius: 0 8px 8px 0;
    padding: 0 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }

  .propper-search-btn:hover {
    background-color: #d97706;
  }

  /* --- MAP & LIST LAYOUT --- */
  .propper-locator-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* List takes less space, Map takes more */
    gap: 30px;
    background-color: #16161a;
    border: 1px solid #2d2d35;
    border-radius: 16px;
    overflow: hidden;
    height: 700px; /* Fixed height so the list scrolls inside it */
  }

  /* --- LEFT SIDE: DEALER LIST --- */
  .propper-dealer-list {
    padding: 30px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  /* Custom Sleek Scrollbar */
  .propper-dealer-list::-webkit-scrollbar {
    width: 6px;
  }
  .propper-dealer-list::-webkit-scrollbar-track {
    background: #111115; 
  }
  .propper-dealer-list::-webkit-scrollbar-thumb {
    background: #3f3f46; 
    border-radius: 10px;
  }
  .propper-dealer-list::-webkit-scrollbar-thumb:hover {
    background: #f59e0b; 
  }

  /* Individual Dealer Card */
  .propper-dealer-card {
    background-color: #0a0a0a;
    border: 1px solid #2d2d35;
    border-radius: 12px;
    padding: 25px;
    transition: border-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
  }

  .propper-dealer-card:hover, .propper-dealer-card.active {
    border-color: #f59e0b;
    transform: translateX(5px);
  }

  .propper-dealer-distance {
    color: #f59e0b;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
  }

  .propper-dealer-name {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 10px 0;
  }

  .propper-dealer-info {
    font-size: 0.95rem;
    color: #a1a1aa;
    line-height: 1.5;
    margin: 0 0 15px 0;
  }

  .propper-dealer-actions {
    display: flex;
    gap: 15px;
  }

  .propper-action-link {
    color: #e4e4e7;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
  }

  .propper-action-link:hover {
    color: #f59e0b;
  }

  .propper-action-link svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
  }

  /* --- RIGHT SIDE: MAP CONTAINER --- */
  .propper-map-container {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #111115;
    /* We use an image here as a placeholder for the Google Maps iFrame */
    background-image: url('https://images.unsplash.com/photo-1524661135-423995f22d0b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    /* Darken and grayscale the map to fit the brand */
    filter: grayscale(80%) brightness(0.6) contrast(1.2);
  }

  /* Fake Map Pins for the visual placeholder */
  .propper-map-pin {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #f59e0b;
    border: 3px solid #111111;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.6);
  }

  /* --- RESPONSIVENESS --- */
  @media (max-width: 992px) {
    .propper-locator-grid {
      grid-template-columns: 1fr;
      height: auto; /* Let it expand naturally on mobile */
    }
    .propper-map-container {
      height: 400px;
      order: -1; /* Puts the map ON TOP of the list on mobile */
    }
    .propper-dealer-list {
      max-height: 500px; /* Keeps the list scrollable under the map */
    }
  }

  @media (max-width: 600px) {
    .propper-locator-title { font-size: 2.2rem; }
    .propper-search-wrap { flex-direction: column; gap: 10px; }
    .propper-search-input { border-radius: 8px; }
    .propper-search-btn { border-radius: 8px; padding: 18px; }
  }
