.page_title {
	margin: 10px auto;
	font-size: 32px;
	color: #333a;
}

.product_card {
  display: flex;
  flex-direction: column;
  width: 30%;
  background: #fff;
  border: solid 1px grey;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  margin-bottom: 10px;
  text-align: center;
}

.product_info {
  padding: 5px;
}

.product_image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  background: #eee;
}

.product_title {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  margin-bottom: 8px;
  text-decoration: none;
}

.product_title:hover {
  color: #DB6800;
}

.product_descr {
  height: 40px;
  overflow: hidden;
  font-size: 14px;
  color: #666;
  line-height: 1.4;
  flex: 1;
  margin: 12px auto;
}

.product_price {
  font-size: 22px;
  font-weight: 700;
  color: #DB6800;
  margin-bottom: 14px;
}

.product_btn {
  display: inline-block;
  width: max-content;
  background: #DB6800;
  color: #fff;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s;
  margin-bottom: 10px;
}

.product_btn:hover {
  background: #5e2e05;
}

/* Контейнер пагинации */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* Все элементы пагинации */
.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s;
    box-sizing: border-box;
    flex-shrink: 0;
}

/* Активная страница */
.pagination .current {
	display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #DB6800;
    color: #fff;
	border: 1px solid #ddd;
    border-radius: 6px;
	min-width: 36px;
	height: 36px;
}

/* Наведение */
.pagination a:hover {
    background: #DB6800;
    color: #fff;
    border-color: #ddd;
}

/* Боковые кнопки */
.pagination .prev,
.pagination .next,
.pagination .first,
.pagination .last {
    padding: 0 16px;
}