/* Блок с фильтрами*/
.t-store__parts-switch-btn.t-active {
    background-color: #d1d3d4;
    padding: 3px 9px;
    text-align: left;}
    
.t431__td.t-text {text-align:left !important}

/* Таблица с товаром */
.product-block {
  font-family: 'PT Sans', Arial, sans-serif;
  display: flex;
  justify-content: center;   /* центрирует весь блок по горизонтали */
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;            /* центрирует по центру страницы */
  padding: 40px 0;
}

.product-image {
  width: 400px;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.product-info {
  max-width: 500px;
}

@media (max-width: 768px) {
  .product-info {
    padding: 0 20px; /* увеличиваем на мобильных */
  }
}

.product-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.product-table {
  width: 100%;
  max-width: 500px;
  margin: 20px 0;
  border-collapse: separate;
  border-spacing: 0;
  font-family: 'Arial', sans-serif;
  border: 2px solid #cdcdcd;    
  border-radius: 8px;              /* скругленные углы */
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* мягкая тень */
}

.product-table td {
  padding: 14px 16px;
  text-align: left;
  font-size: 16px;
  color: #333;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  letter-spacing: 0.5px;
}

.product-table tr:nth-child(even) td {
  background-color: #f8f8f8;  /* светлые полосы для четных рядов */
}

.product-table tr:last-child td {
  border-bottom: none;
}

.product-price {
  font-size: 24px;            /* крупнее, но не слишком */
  font-weight: 700;           /* выделяем жирным */
  color: #eb181f;             /* зелёный, как кнопка */
  margin: 10px 0 20px 0;      /* отступ сверху и снизу */
  text-align: left;           /* можно center, если хочешь по центру */
  line-height: 1.2;
}

.product-btn {
    color: #ffffff;
    font-size: 14px;
    font-family: 'PT Sans', Arial, sans-serif;
    line-height: 1.55;
    font-weight: 600;
    border-radius: 7px;
    background-color: #09ab03;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
    transition: background-color 0.2s 
ease-in-out, color 0.2s 
ease-in-out, border-color 0.2s 
ease-in-out;
width: 180px;
text-align: center;
}

.product-btn-a {
color: #fff !important;
    text-transform: uppercase;
    padding: 10px 0;
    display: block;    
}

.product-btn:hover {
  background-color: #078f02;
}

@media (max-width: 768px) {
  .t118 {
    padding: 0 !important;
  }
}
