@charset "utf-8";
/* CSS Document */
.where-to-buy {
  background-color: #010b1c;
  color: #fff;
  padding: 60px 20px;
  font-family: 'Manrope', sans-serif;
  text-align: center;
}

.buy-container {
  max-width: 1000px;
  margin: 0 auto;
}

.buy-title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 40px;
  color: #FFFFFF;
}

.buy-logos {
  display: flex;
  justify-content: center;
  gap: 90px;
  flex-wrap: wrap;
}

.buy-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 200px;
}

.buy-item img {
  height: 100px;
  max-width: 200px;
  object-fit: contain;
  transition: transform 0.3s ease, opacity 0.3s ease;
  filter: brightness(0.95);
}

.buy-item img:hover {
  transform: scale(1.05);
  opacity: 0.85;
}

.buy-email {
  font-size: 15px;
  color: #ccc;
  word-break: break-all;
}

.buy-logo {
  height: 100px;
  max-width: 200px;
  object-fit: contain;
  transition: transform 0.3s ease, opacity 0.3s ease;
  filter: brightness(0.95);
	border-radius: 10px;
}

.buy-logo:hover {
  transform: scale(1.05);
  opacity: 0.85;
}

/* При необходимости — индивидуальные настройки: */
.scanland-logo {
  background-color: #FFFFFF;
	padding: 10px;
}

.trucksolution-logo {
  background-color: #FFFFFF;
	padding: 10px;
}

/* Адаптация */
@media (max-width: 600px) {
  .buy-title {
    font-size: 18px;
  }

  .buy-logos {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .buy-item img {
    height: 60px;
  }

  .buy-email {
    font-size: 14px;
  }
}
