    /* ============================================
       DEALERS PAGE
       ============================================ */
    .dealers-page {
      padding-top: 100px;
      min-height: 100vh;
    }

    .dealers-wrapper {
      padding: 4vw var(--spacing-container) var(--spacing-padding);
    }

    .dealers-heading {
      font-size: clamp(2.5rem, 5vw, 4.5rem);
      font-weight: 200;
      line-height: 1.15;
      letter-spacing: -0.02em;
      margin-bottom: 20px;
      color: #1a1a1a;
    }

    .dealers-subtitle {
      font-size: clamp(0.9rem, 1.1vw, 1.1vw);
      font-weight: 300;
      color: rgba(0, 0, 0, 0.6);
      line-height: 1.6;
      max-width: 40vw;
      margin-bottom: 4vw;
    }

    .dealers-map-container {
      position: relative;
      width: 100%;
      height: 65vh;
      min-height: 400px;
      border-radius: 16px;
      overflow: hidden;
      margin-bottom: 4vw;
    }

    .dealers-map-container iframe,
    .dealers-map-inner {
      width: 100%;
      height: 100%;
      border: none;
    }

    /* Dealer cards */
    .dealers-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }

    .dealer-card {
      border: 1px solid rgba(0, 0, 0, 0.1);
      border-radius: 16px;
      padding: 30px;
      transition: all 0.4s ease;
    }

    .dealer-card:hover {
      border-color: var(--primary-500);
      box-shadow: 0 8px 30px rgba(77, 0, 255, 0.08);
    }

    .dealer-city {
      font-size: clamp(0.7rem, 1vw, 1vw);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--primary-500);
      font-weight: 500;
      margin-bottom: 12px;
    }

    .dealer-name {
      font-size: clamp(1.25rem, 1.6vw, 1.6vw);
      font-weight: 300;
      letter-spacing: -0.02em;
      color: #1a1a1a;
      margin-bottom: 16px;
    }

    .dealer-info {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .dealer-info p {
      font-size: clamp(0.85rem, 1vw, 1vw);
      font-weight: 300;
      color: rgba(0, 0, 0, 0.55);
      line-height: 1.6;
    }

    .dealer-info a {
      color: rgba(0, 0, 0, 0.55);
      transition: color 0.3s ease;
    }

    .dealer-info a:hover {
      color: var(--primary-500);
      opacity: 1;
    }

    /* Responsive */
    @media (max-width: 991px) {
      .dealers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
      }

      .dealers-subtitle {
        max-width: 100%;
        font-size: 1rem;
      }

      .dealers-wrapper {
        padding: 80px 30px;
      }

      .dealers-map-container {
        height: 50vh;
        border-radius: 12px;
      }
    }

    @media (max-width: 767px) {
      .dealers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .dealers-wrapper {
        padding: 60px 20px;
      }

      .dealers-map-container {
        height: 45vh;
        min-height: 300px;
        border-radius: 12px;
      }

      .dealer-card {
        padding: 24px;
        border-radius: 12px;
      }
    }

    @media (max-width: 479px) {
      .dealers-heading {
        font-size: 1.75rem;
      }

      .dealers-subtitle {
        font-size: 0.875rem;
        margin-bottom: 30px;
      }
    }
