.site-footer {
	background-color: #fff;
	padding: 40px 0 20px;
	color: #333;
	border-top: 1px solid #eaeaea;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

.footer-top {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 30px;
	margin-bottom: 30px;
}

.footer-col {
	flex: 1;
	min-width: 250px;
}

.logo-area {
	display: flex;
	align-items: end;
	gap: 15px;
}

.logo-img {
	height: auto;
	width: 60px;
}

.logo-text {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.sub-logo {
	display: block;
	font-size: 14px;
	color: #777;
	letter-spacing: 1px;
}
.footer-desc {
	margin-top: 10px;
	font-size: 14px;
	color: #555;
	line-height: 1.5;
}

/* Заголовки колонок */
.footer-col h3 {
	font-size: 18px;
	margin-bottom: 20px;
	color: #1a1a2e;
}

/* Ссылки и списки */
.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
	font-size: 15px;
}

.footer-links a {
	text-decoration: none;
	color: #555;
	transition: color 0.3s;
}

.footer-links a:hover {
	color: #000;
}

.footer-links li {
	display: flex;
	align-items: center;
	gap: 12px;
}

/* Иконки контактов */
.contact-links i {
	color: #777;
	font-size: 12px;
}

.contact-links-icon {
	width: 30px;
	height: 30px;
	background-color: #f0f0f0;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #555;
}

/* Соцсети (цветные кружки) */
.social-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	color: white !important;
	font-size: 20px;
}

.social-btn.instagram {
	background: linear-gradient(
		45deg,
		#f09433 0%,
		#e6683c 25%,
		#dc2743 50%,
		#cc2366 75%,
		#bc1888 100%
	);
}

.social-btn.telegram {
	background-color: #2aabee;
}

.social-text {
	color: #555;
}

/* Методы оплаты (Grid сетка) */
.payment-methods {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

/* Белая карточка-контейнер для логотипа */
.pay-card {
	width: 60px; /* Ширина карточки */
	height: 38px; /* Высота карточки */
	background-color: #fff;
	border: 1px solid #eaeaea;
	border-radius: 6px; /* Закругление углов */
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 5px;
	box-sizing: border-box;
}

/* Настройка самой картинки внутри карточки */
.pay-card img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain; /* Чтобы логотип не растягивался, а помещался целиком */
	display: block;
}

/* Нижняя часть (Копирайт) */
.footer-divider {
	height: 1px;
	background-color: #eee;
	margin: 20px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 15px;
  font-size: 13px;
  color: #777;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: #333;
  text-decoration: underline;
}

.footer-bottom-group {
  display: flex;
  gap: 8px;
}

/* --- АДАПТИВ (Мобильная версия) --- */
@media (max-width: 468px) {
  .footer-top {
    flex-direction: column;
    justify-content: center;
  }

  .footer-col {
    width: 100%;
    margin-bottom: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-bottom-group {
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }

  .footer-bottom-group span {
    display: none;
  }
}
