/* ==========================================================================
   Информационные вкладки карточки товара
   (Доставка / Оплата / Гарантия / 100% Оригинал)
   Подключается один раз на страницу через catalog/catalog_tabs_func.php
   ========================================================================== */

.catalog-tab {
  font-family: system-ui, -apple-system, sans-serif;
  color: #333;
  max-width: 900px;
  padding: 0 16px;
}

.catalog-tab__intro {
  font-size: 14px;
  color: #555;
  margin-bottom: 32px;
}

.catalog-tab__block {
  margin-bottom: 36px;
}

.catalog-tab__block h2,
.catalog-tab__title {
  font-size: 22px;
  font-weight: 700;
  color: #111;
  margin: 0 0 16px;
}

.catalog-tab__note {
  font-size: 13.5px;
  color: #333;
  margin-top: 14px;
}

.catalog-tab__note strong {
  font-weight: 700;
}

.catalog-tab__section {
  border-radius: 20px;
  padding: 24px;
  width: 100%;
  max-width: 900px;
}

.catalog-tab__cards {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.catalog-tab__card {
  background: #ffffff;
  border: 1px solid #ebebeb;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 18px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  flex: 1;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.catalog-tab__card:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.10);
  transform: translateY(-2px);
}

.catalog-tab__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.catalog-tab__icon img {
  width: 52px;
  height: 52px;
}

.catalog-tab__text {
  font-size: 13.5px;
  line-height: 1.45;
  color: #333333;
  font-weight: 500;
}

.catalog-tab__text b {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #111;
  margin-bottom: 2px;
}

.catalog-tab__closing {
  font-size: 13.5px;
  color: #555;
  font-style: italic;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .catalog-tab__cards {
    flex-direction: column;
  }

  .catalog-tab__card {
    flex: unset;
    width: 100%;
  }
}