/** Shopify CDN: Minification failed

Line 16:12 Expected identifier but found whitespace
Line 16:14 Unexpected "{"
Line 16:23 Expected ":"
Line 16:50 Unexpected "0"
Line 16:53 Unexpected "{"
Line 16:62 Expected ":"
Line 16:91 Expected ":"

**/


/* CSS from section stylesheet tags */
.dealer-locator-section {
    padding: {{ section.settings.padding_top }}px 0 {{ section.settings.padding_bottom }}px;
  }

  .dealer-locator-title {
    text-align: center;
    margin-bottom: 2rem;
  }

  .page-width.custom-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 16px;
  }

  .dealer-locator-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
  }

  /* Filter Sidebar */
  .dealer-filters {
    background: #f9f9f9;
    padding: 0 1.5rem 1.5rem 1.5rem;
    border-radius: 8px;
    height: fit-content;
    position: sticky;
    top: 110px;
  }

  .filter-group {
    margin-bottom: 1.5rem;
  }

  .filter-group label {
    display: block;
    margin-bottom: 0.5rem;
  }

  .filter-input,
  .filter-select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
  }

  .filter-input:focus,
  .filter-select:focus {
    outline: none;
    border-color: #000;
  }

  .btn-reset {
    width: 100%;
    padding: 0.75rem;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 1rem;
  }

  .btn-reset:hover {
    background: #f0f0f0;
  }

  .results-count {
    text-align: center;
    padding: 1rem;
    background: #fff;
    border-radius: 4px;
  }

  /* Map and Content */
  .dealer-content {
    min-width: 0;
  }

  #map {
    height: 500px;
    margin-bottom: 2rem;
    border-radius: 8px;
    z-index: 1;
  }

  .dealer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
  }

  .dealer-locator-block {
    padding: 1.5rem;
  }

  .dealer-locator-block__content h3 {
    margin-bottom: 0.5rem;
  }

  .dealer-location {
    color: #666;
    margin-bottom: 0.5rem;
  }

  .dealer-address {
    color: #888;
    margin-bottom: 0.75rem;
  }

  .dealer-text {
    margin-bottom: 1rem;
    line-height: 1.6;
  }

  .dealer-website {
    color: #000;
    text-decoration: none;
  }

  .dealer-website:hover {
    text-decoration: underline;
  }

  .leaflet-popup-content {
    font-size: 13px !important;
  }

  .dealer-popup strong {
    display: block;
    margin-bottom: 4px;
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .dealer-locator-wrapper {
      grid-template-columns: 1fr;
    }

    .dealer-filters {
      position: static;
    }

    .dealer-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 768px) {
    .dealer-grid {
      grid-template-columns: 1fr;
    }

    #map {
      height: 400px;
    }
  }