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

.breadcrumb {
  margin-bottom: 30px;
  font-size: 14px;
  color: #444;
}

.breadcrumb a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: var(--dark-blue);
}

.breadcrumb span {
  color: #666;
  font-weight: bold;
}

.page-title {
  color: var(--primary-blue);
  text-align: center;
  margin-bottom: 10px;
  font-size: 36px;
  position: relative;
  padding-bottom: 15px;
}

.page-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-yellow);
}

.page-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #444;
  line-height: 1.6;
  font-size: 20px;
}

.products {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}

.product {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.product:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.product-img {
  height: 200px;
  background-color: #f8f9fa;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid #e9ecef;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product h3 {
  font-size: 18px;
  margin-bottom: 0;
  color: var(--primary-blue);
  flex-shrink: 0;
  text-align: center;
  font-weight: bold;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
}

.product-divider {
  height: 1px;
  background-color: #e9ecef;
  margin: 10px 0 10px 0;
  flex-shrink: 0;
}

.product-info {
  flex-grow: 1;
  margin-bottom: 1px;
  padding: 8px 0;
  min-height: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.product-info::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--primary-yellow);
  margin: auto 0;
}

.product p {
  margin-bottom: 2px; /* Отступ снизу */
  color: #444; /* Серый цвет */
  font-size: 14px; /* Размер шрифта */
  line-height: 1.3; /* Межстрочный интервал */
  text-align: center; /* Центрирование */
}

.btn-order {
  background: linear-gradient(135deg, var(--primary-yellow) 0%, #ffc600 100%);
  color: var(--text-dark);
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: bold;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 12px;
  width: 100%;
  text-align: center;
}

.btn-order:hover {
  background: linear-gradient(135deg, #ffc600 0%, #e6b800 100%);
  transform: translateY(-2px);
}

.btn-detail {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
  color: var(--text-light);
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: bold;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 12px;
  width: 100%;
  text-align: center;
  margin-bottom: 8px;
  display: block;
}

.btn-detail:hover {
  background: linear-gradient(135deg, var(--dark-blue) 0%, #002952 100%);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .products {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .page-title {
    font-size: 28px;
  }
  .products {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .products {
    grid-template-columns: 1fr;
  }
}