  /* ============================================
       DEALERS PAGE
       ============================================ */
    .dealers-page {
      padding-top: 145px;
      padding-bottom: 80px;
    }

    /* Page title */
    .dealers__title {
      font-family: "PF BeauSans Pro", var(--font-sans);
      font-weight: 600;
      font-size: 26px;
      line-height: 1.2;
      text-transform: uppercase;
      color: var(--color-primary);
      margin: 0 0 20px;
      padding-bottom: 15px;
      border-bottom: 1px solid #eee;
	      text-shadow: none;
    -webkit-text-stroke: 0px black;
    }

    /* Description text */
    .dealers-page__desc {
      font-family: "PF BeauSans Pro", var(--font-sans);
      font-size: 16px;
      line-height: 1.6;
      color: #4a4a4a;
      margin: 0 0 40px;
      max-width: 1100px;
    }

   

   /* Filters */
.dealers-filters {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.dealers-filters__group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dealers-filters__label {
  font-family: "PF BeauSans Pro", var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  color: #262626;
  white-space: nowrap;
}

/* Обертка для селекта и стрелки */
.dealers-filters__select-wrapper {
  position: relative;
  min-width: 200px;
}

/* Стили самого селекта */
.dealers-filters__select {
  width: 100%;
  height: 38px;
  padding: 0 40px 0 12px; /* Отступ справа под белый блок */
  border: 1px solid #2A6D7C;
  background: #E9E9E9;
  font-family: "PF BeauSans Pro", var(--font-sans);
  font-size: 14px;
  color: #262626;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color 0.2s;
}

/* Контейнер стрелки — на всю высоту, прижат к правому краю */
.dealers-filters__arrow {
  position: absolute;
  right: 0;           /* Плотно к правому краю */
  top: 0;
  bottom: 0;
  width: 35px;        /* Фиксированная ширина */
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
  border: 1px solid #2A6D7C;
  background: #FFFFFF;
  
}

/* SVG внутри контейнера */
.dealers-filters__arrow svg {
  width: 10px;
  height: 6px;
  display: block;
  transition: transform 0.2s ease;
}

.dealers-filters__arrow svg path {
  transition: stroke 0.2s;
}

/* Эффекты при наведении */
.dealers-filters__select-wrapper:hover .dealers-filters__arrow svg path {
  stroke: #358393;
}

.dealers-filters__select:hover,
.dealers-filters__select:focus {
  border-color: #358393;
  outline: none;
}

/* Поворот стрелки при фокусе */
.dealers-filters__select:focus ~ .dealers-filters__arrow {
  transform: translateY(0);
}

.dealers-filters__select:focus ~ .dealers-filters__arrow svg {
  transform: rotate(180deg);
}

/* Кнопка сброса */
.dealers-filters__reset {
  height: 38px;
  min-height: 38px;
  padding: 0 20px;
  font-size: 13px;
  font-weight: 500;
  background: linear-gradient(106.95deg, #358393 24.64%, #2A6D7C 77.55%);
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: "PF BeauSans Pro", var(--font-sans);
  transition: background 0.2s;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.dealers-filters__reset:hover {
  background: linear-gradient(106.95deg, #2A6D7C 24.64%, #358393 77.55%);
}

    /* Dealers grid */
    .dealers-grid {
      display: grid;
       grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 25px;
      margin-bottom: 50px;
    }

    /* Dealer card */
    .dealer-card {
      border: 1px solid #c4cacc;
      background: #fff;
      transition: box-shadow 0.25s, border-color 0.25s;
      position: relative;
    }

    .dealer-card:hover {
      box-shadow: 0 8px 30px rgba(0,0,0,0.1);
      border-color: #c4cacc;
    }

    .dealer-card__header {
      display: flex;
      align-items: center;
      gap: 15px;
      min-height: 50px;
	  margin: 20px
    }

    .dealer-card__logo {
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .dealer-card__logo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .dealer-card__logo-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      font-weight: 700;
      color: #2a6d7c;
      background: linear-gradient(135deg, #e8f4f7 0%, #d0e8ed 100%);
    }

    .dealer-card__name-block {
      flex: 1;
      min-width: 0;
    }

    .dealer-card__name {
      font-family: "PF BeauSans Pro", var(--font-sans);
      font-weight: 600;
      font-size: 18px;
      line-height: 1.3;
      color: #358393;
      margin: 0 0 3px;
    }

    .dealer-card__city {
      font-family: "PF BeauSans Pro", var(--font-sans);
      font-size: 14px;
      color: #358393;
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .dealer-card__city-icon {
      width: 10px;
      height: 12px;
      opacity: 0.5;
    }

    /* Card body info rows */
    .dealer-card__body {
      display: flex;
      flex-direction: column;
      gap: 8px;
	  margin: 20px;
    }

    .dealer-card__row {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      font-family: "PF BeauSans Pro", var(--font-sans);
      font-size: 16px;
      line-height: 1.45;
      color: #262626;
    }

    .dealer-card__row__wrap {
		flex-wrap: wrap;
	}

    .dealer-card__row-icon {
      width: 14px;
      height: 14px;
      flex-shrink: 0;
      margin-top: 1px;
      opacity: 0.55;
    }

    .dealer-card__row-label {
      font-weight: 500;
      color: #888!important;
      white-space: nowrap;
      margin-right: 2px;
    }

    .dealer-card__row a {
      color: #0D47A1;
      transition: color 0.2s;
	  font-size: 16px;
    }

    .dealer-card__row a:hover {
      color: #2a6d7c;
    }

    .dealer-card__divider {
      width: 100%;
      height: 1px;
      background: #c4cacc;
      margin: 4px 0;
    }

    

/* ============================================
       RESPONSIVE
       ============================================ */
    @media (max-width: 1100px) {
      .dealers-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
	@media (max-width: 1020px) {
		.dealers-page {
			padding-top: 80px;
		}
	}
    @media (max-width: 768px) {
      .dealers-page__title {
        font-size: 20px;
      }

	.dealers__title {
		font-size: 20px;
      }

      .dealers-filters {
        flex-direction: column;
        align-items: stretch;
      }
      .dealers-filters__group {
        flex-direction: column;
        align-items: stretch;
      }
      .dealers-filters__select {
        min-width: 100%;
      }

    }

    @media (max-width: 600px) {
      .dealers-grid {
        grid-template-columns: 1fr;
      }
      .dealers-section__title {
        font-size: 18px;
        text-align: center;
      }
      .dealers-page__title {
        font-size: 20px;
        text-align: center;
      }

    }
 @media (max-width: 540px) {
.dealers-page {
			padding-top: 60px;
		}
}