/* Основные стили для 12-колоночной сетки */
.tilda-12col-footer {
  background: #000;
  color: #fff;
  padding: 50px 0 30px;
  font-family: Arial, sans-serif;
}

.t-footer-12col-container {
  max-width: 1200px; /* Стандартная ширина 12 колонок */
  margin: 0 auto;
  padding: 0 15px;
}

/* Расположение блоков */
.t-footer-flex-blocks {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.t-footer-contacts-12col {
  width: 45%;
  padding-right: 30px;
}

.t-footer-catalog-12col {
  width: 55%;
}

/* Стили контактов */
.t-footer-contacts-12col h3,
.t-footer-catalog-12col h3 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #fff;
}

.t-footer-contacts-12col p {
  margin: 8px 0;
  line-height: 1.5;
  font-size: 14px;
}

/* Табы с черным текстом и ховером */
.t-tabs-flex-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.t-tab-flex-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.t-tab-item {
  background: #fff;
  color: #000 !important; /* Черный текст */
  padding: 8px 15px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
  display: inline-block;
  transition: all 0.3s ease;
}

.t-tab-item:hover {
  background: #e0e0e0; /* Ховер-эффект */
  transform: translateY(-2px);
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.t-footer-links {
  margin-top: 15px;
  text-align: center
}

.t-footer-link {
  color: #ccc;
  text-decoration: none;
  font-size: 13px;
  margin: 0 5px;
}

.t-footer-link:hover {
  text-decoration: underline;
}


/* Копирайт */
.t-copyright-12col {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #333;
}

.t-copyright-12col p {
  margin: 5px 0;
  color: #aaa;
  font-size: 14px;
  line-height: 1.4;
}

/* Адаптивность */
@media (max-width: 768px) {
  .t-footer-flex-blocks {
    flex-direction: column;
  }
  
  .t-footer-contacts-12col,
  .t-footer-catalog-12col {
    width: 100%;
    padding-right: 0;
    margin-bottom: 30px;
  }
  
  .t-tab-item {
    padding: 6px 12px;
    font-size: 13px;
  }
}