/** Shopify CDN: Minification failed

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

**/
/* START_SECTION:dealer-locatior (INDEX:10) */
.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.5rem;
  }

  .dealer-comment {
    color: #666;
    font-style: italic;
    font-size: 0.9em;
    margin-bottom: 0.75rem;
    padding-left: 0.75rem;
    border-left: 2px solid #e5e5e5;
  }

  /* Colours & accessories — icon only, label on hover */
  .dealer-badges {
    margin-bottom: 0.75rem;
  }

  .dealer-badges__label {
    display: block;
    font-size: 0.75em;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #888;
    margin-bottom: 0.35rem;
  }

  .dealer-badge-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .dealer-badge {
    display: block;
    cursor: help;
  }

  .dealer-badge__icon {
    width: 38px;
    height: 38px;
    object-fit: contain;
    display: block;
  }

  .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;
  }

  .dealer-popup__comment {
    display: block;
    font-style: italic;
    color: #666;
  }

  .dealer-popup__badges {
    list-style: none;
    margin: 6px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
  }

  .dealer-popup__badges li {
    display: block;
    cursor: help;
  }

  .dealer-popup__badges img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    display: block;
  }

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

    .dealer-locator-wrapper {
      grid-template-columns: 1fr;
    }

    .dealer-filters {
      position: static;
    }
  }

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

    #map {
      height: 400px;
    }
  }
/* END_SECTION:dealer-locatior */
