/* Стили для таблицы */
.catalog-table {
    width: 100%; /* Обеспечивает растяжение таблицы на весь доступный контейнер */
	font-size: 14px;
}

.photo-column {
    display: none; /* По умолчанию скрываем фото */
}

.woocommerce-ordering {
	display: none !important;
}

/* Стили для третей колонки */
.catalog-table th:nth-child(3),
.catalog-table td:nth-child(3){
    width: 40%; /* Устанавливает ширину первой колонки */
    white-space: nowrap;
} 

/* Стили для таблицы с фото */
.catalog-table tbody th:first-child,
.catalog-table tbody td:first-child{
	padding: 0;
}

.catalog-table th:last-child,
.catalog-table td:last-child {
	width: 20%;
	white-space: nowrap;
}

.catalog-table th, .catalog-table td {
    border: 1px solid #ddd;
    padding: 8px;
	align-content: center;
}

.catalog-table th,
.catalog-table th a {
    font-weight: 600;
    background-color: #f59a57;
    color: white;
    text-transform: none;
}

.table-responsive {
	display: inline-block;
}

.home .catalog-table {
	font-size: 13px;
}

.home .catalog-table th:nth-child(3),
.home .catalog-table td:nth-child(3){
    width: 40%;
    white-space: pre-wrap;
}

/* Адаптивность для экранов меньше 768px */
@media (max-width: 768px) {
    .table-responsive {
		display: block;
        overflow-x: auto;
    }
