/*NOTE: This file is intended for programmers. Aspro technical support is not advised to work with him.*/

/* Examples (uncomment to use):*/

/* Expand site width */
/* body .wrapper { max-width: 1400px !important;  } */

/* Set site background image */
/* body {  background: url(image_source) top no-repeat; }

/* Hide compare button */
/* a.compare_item { display: none !important;  }*/

/* Отступ снизу у выпадающего меню каталога, чтобы пункты не прилипали к краю (03.08.2026).
   Обычный wide-режим — .header-menu__wide-limiter; «большое меню» (список групп слева) —
   левая колонка .menu-navigation__scroll и панель контента .menu-navigation__content. */
.header-menu__wide-limiter.scrollbar,
.menu-navigation__scroll,
.menu-navigation__content {
	padding-bottom: 36px;
}

/* Таблицы в описании товара — «Модельная линия» и «Цена на продукцию» на витрине ledfavourite (06.08.2026).
   Приходят из свойств старой вёрстки: без рамок и отступов, поэтому оформляем сами.
   Обёртка .detail-table ставится скриптом local/scripts/sync_model_tables.php. */
.detail-table {
	margin: 16px 0 28px;
	overflow-x: auto;
}

.detail-table table {
	width: 100%;
	min-width: 620px;
	border-collapse: collapse;
	font-size: 14px;
	line-height: 1.4;
}

.detail-table table td,
.detail-table table th {
	padding: 9px 12px;
	border: 1px solid #e6e6e8;
	vertical-align: middle;
	text-align: left;
}

/* шапка таблицы: у этих таблиц она свёрстана обычными ячейками с <b> внутри */
.detail-table table tr:first-child td,
.detail-table table tr:first-child th,
.detail-table table th {
	background: #f6f6f7;
	font-weight: 500;
	white-space: nowrap;
}

.detail-table table tr:nth-child(even) td {
	background: #fcfcfd;
}

.detail-table table td b {
	font-weight: 500;
}

.detail-text h3,
.js-detail-description h3 {
	margin-top: 28px;
}