/* ======= Хлебные крошки (современный микс) ======= */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 14px;
  margin-bottom: 30px;
  padding: 10px 16px;
  border-radius: 8px;
  background: linear-gradient(90deg, #fafafa, #fff);
  border: 1px solid #eee;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  letter-spacing: 0.3px;
}

.breadcrumbs a {
  color: #333;
  text-decoration: none;
  padding: 4px 6px;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.breadcrumbs a:hover {
  background-color: #f3f3f3;
  color: #000;
}

.breadcrumbs span {
  color: #999;
  font-weight: 500;
  margin: 0 6px;
}

/* ======= Заголовок страницы ======= */
.page-title {
  font-size: 32px;
  font-weight: 700;
  color: #222;
  margin: 15px 0 35px;
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.3;
  position: relative;
}

.page-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #f7d663, #d19a00);
  border-radius: 2px;
  margin-top: 14px;
}

.page-title .icon {
  width: 30px;
  height: 30px;
  margin-left: 8px;
}

/* ======= Контейнер контента ======= */
.warranty-content {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: #333;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 35px;
  padding-bottom: 60px; /* отступ от подвала */
}

/* ======= Заголовки h2 с полоской ======= */
.warranty-content h2 {
  font-size: 22px;
  font-weight: 600;
  color: #111;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  padding-bottom: 10px;
  margin-top: 25px;
  margin-bottom: 15px;
}


/* ======= Заголовки h3 ======= */
.warranty-content h3 {
  font-size: 18px;
  font-weight: 500;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  margin-bottom: 8px;
}

/* ======= Иконки ======= */
.warranty-content .icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  opacity: 0.9;
}

.icon-question {
  width: 20px;
  height: 20px;
  margin-left: 2px;
  opacity: 0.9;
}

/* ======= Блоки для гарантий (аккуратные карточки) ======= */
.warranty-card {
  background: #fff;
  border-left: 4px solid #f7d663;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.warranty-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.warranty-card p {
  margin: 0;
  color: #444;
  line-height: 1.7;
}

.warranty-card strong {
  font-weight: 600;
  color: #000;
}

/* ======= Акценты для заголовков h3 ======= */
.warranty-card h3::before {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f7d663;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
}

/* ======= Адаптив ======= */
@media (max-width: 768px) {
  .page-title {
    font-size: 26px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .warranty-content {
    gap: 25px;
    font-size: 15px;
  }

  .warranty-card h3 {
    font-size: 17px;
  }
}