/* --- ИТОГОВАЯ ПЕРЕСТАНОВКА КАРТОЧКИ (ВСЁ В ОДНОМ) --- */

/* 1. Включаем Flexbox для всей карточки */
.product-info {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
}

/* 2. НАЗВАНИЕ (order: 1) */
.product-info h1 {
    order: 1 !important;
    width: 100% !important;
    font-size: 26px !important;
    margin-bottom: 15px !important;
}

/* 3. ДАННЫЕ (Производитель, Модель) (order: 2) */
/* Мы находим их в правой колонке и заставляем слушаться порядка */
.product-info > .right {
    order: 2 !important;
    display: contents !important; 
}

.product-info .description {
    order: 2 !important;
    width: 100% !important;
    background: #f9f9f9;
    padding: 15px !important;
    border-left: 4px solid #38B0E3;
    margin-bottom: 20px !important;
    box-sizing: border-box;
}

/* 4. КАРТИНКИ (order: 3) - НА ВСЮ ШИРИНУ */
.product-info > .left {
    order: 3 !important;
    width: 100% !important;
    float: none !important;
    margin: 0 0 25px 0 !important;
    text-align: center !important;
}

.product-info .image {
    float: none !important;
    display: inline-block !important;
    /* Увеличиваем ширину контейнера для картинки */
    width: 75% !important; 
    max-width: 800px !important; /* Чтобы на ПК не раздуло во весь экран */
}

.product-info .image img {
    /* Теперь картинка будет занимать все 100% от своего нового широкого контейнера */
    width: 100% !important;
    height: auto !important;
    border: 1px solid #eee;
    padding: 5px;
    box-sizing: border-box;
}

/* Добавьте это, чтобы картинки НЕ переносились на новую строку */
.image-additional ul {
    display: block !important; 
    list-style: none;
    padding: 0;
    margin: 0;
    width: 2000px !important; /* КРИТИЧНО: чтобы 6 фото встали в одну длинную линию */
}

/* Добавьте этот блок, чтобы видеть только 3 фото, а остальные спрятать */
.jcarousel-clip-horizontal {
    width: 240px !important; /* 3 фото по 80px */
    overflow: hidden !important; /* КРИТИЧНО: обрезает лишние фото */
    margin: 0 auto !important;
}

/* Уточните отступы для кнопок, чтобы они не перекрывали фото */
.product-info .image-additional {
    order: 3 !important;
    width: 360px !important; 
    margin: 20px auto !important; 
    display: block !important;
    position: relative;
    padding: 0 50px !important; 
    box-sizing: border-box !important; /* Чтобы padding не раздувал ширину */
}

.image-additional li {
    display: block !important;
    float: left !important;
    width: 80px !important; /* Ширина одной картинки */
    text-align: center;
}

.image-additional img {
    width: 70px !important;
    height: auto;
    border: 1px solid #eee;
    padding: 3px;
}

/* СТРЕЛКИ (Кнопки) */
/* СТРЕЛКИ (Белый фон, голубые символы) */
.jcarousel-next-horizontal, .jcarousel-prev-horizontal {
    position: absolute;
    top: 50%;
    margin-top: -15px;
    width: 30px;
    height: 30px;
    background: #ffffff !important; /* БЕЛЫЙ ФОН */
    color: #38B0E3 !important;      /* ГОЛУБОЙ ЦВЕТ СТРЕЛКИ */
    text-align: center;
    line-height: 24px;
    cursor: pointer;
    z-index: 100;
    border-radius: 50%;
    border: 1px solid #38B0E3 !important; /* ГОЛУБАЯ ОБОРОТКА */
    font-size: 24px !important;
    font-weight: bold;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* 3. Отодвигаем сами кнопки к краям нового широкого контейнера */
.jcarousel-next-horizontal { 
    right: 0px !important; /* Прижали вплотную к правому краю блока 360px */
}
.jcarousel-prev-horizontal { 
    left: 0px !important;  /* Прижали вплотную к левому краю блока 360px */
}

/* Символы скобок */
.jcarousel-next-horizontal:after { content: '›' !important; }
.jcarousel-prev-horizontal:after { content: '‹' !important; }

/* ЭФФЕКТ ПРИ НАВЕДЕНИИ: голубоватый фон кружка */
.jcarousel-next-horizontal:hover, .jcarousel-prev-horizontal:hover {
    background: #38B0E3 !important; /* ГОЛУБОЙ ФОН ПРИ НАВЕДЕНИИ */
    color: #ffffff !important;      /* БЕЛАЯ СТРЕЛКА ПРИ НАВЕДЕНИИ */
}


/* 5. ЦЕНА (order: 4) - КРУПНО ПО ЦЕНТРУ */
.product-info .price {
    order: 4 !important;
    width: 100% !important;
    text-align: center !important;
    font-size: 32px !important;
    color: #e31e24 !important;
    font-weight: 800 !important;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 15px 0 !important;
    margin: 20px 0 !important;
}

/* 6. ОПИСАНИЕ (order: 5) - ВНИЗУ В РАМКЕ */
#tab-description {
    order: 5 !important;
    display: block !important;
    background: #ffffff;
    border: 1px solid #e1e1e1 !important;
    padding: 20px !important;
    margin-top: 10px !important;
    border-radius: 4px;
    clear: both;
}

#tab-description:before {
    content: "Описание товара";
    display: block;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #38B0E3;
}

/* Прячем всё лишнее (кнопки, вкладки, отзывы) */
#tabs, .tabs, .cart, #button-cart, #tab-review, .review, .share {
    display: none !important;
}

/* УЛУЧШАЕМ ДОПОЛНИТЕЛЬНЫЕ ФОТО */
.product-info .image-additional img {
    width: 100px !important; /* Делаем миниатюры чуть крупнее */
    height: auto !important;
    border: 1px solid #ddd;
    margin: 5px;
    padding: 2px;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s;
}

.product-info .image-additional img:hover {
    border-color: #38B0E3; /* Подсветка при наведении */
}

/* Если миниатюр много, они будут аккуратно переноситься на новую строку по центру */
.product-info .image-additional {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}












/* Полная чистка карточки товара: закладки, сравнение, соцсети и лишний текст */
.share, .addthis_toolbox, .addthis_button_compact, .at-share-btn-elements,
.wishlist, .compare, .product-info .extra, .product-info .compare, .product-info .wishlist,
.product-list .wishlist, .product-list .compare, .box-product .wishlist, .box-product .compare,
.product-info .cart span, .product-info .cart .links, #button-cart + span, #button-cart + a, #button-cart + br {
    display: none !important;
}

/* Убираем блок "Поделиться" и лишние отступы */
.product-info .share, .product-info .cart > div:not(.quantity) {
    display: none !important;
}


/* ПОЛНОЕ УДАЛЕНИЕ ЗАКЛАДОК, СРАВНЕНИЯ И ТЕКСТА "- ИЛИ -" */
.wishlist, 
.compare, 
.product-info .extra,
.product-info .compare,
.product-info .wishlist,
.product-list .wishlist,
.product-list .compare,
.box-product .wishlist,
.box-product .compare,
.product-info .cart span,
.product-info .cart .links,
.product-info .cart a[onclick*="wishlist"],
.product-info .cart a[onclick*="compare"] {
    display: none !important;
}

/* Скрываем текст "- или -" и лишние переносы строк после кнопки корзины */
#button-cart + span, 
#button-cart + br,
#button-cart + a {
    display: none !important;
}

/* Убираем лишние рамки и отступы в блоке корзины внутри товара */
.product-info .cart {
    border-bottom: none !important;
    padding-bottom: 0 !important;
    margin-bottom: 10px !important;
}

/* Если текст "- или -" остался внутри блока .cart */
.product-info .cart > div:not(.quantity) {
    display: none !important;
}




html {
	overflow-y: scroll;
	margin: 0;
	padding: 0;
}
body {
	background-color: #ffffff;
background: #ffffff url("../image/fon2.png");
background-repeat: no-repeat;
   background-position: top center;
   background-size: cover;
background-attachment: fixed;


	color: #000000;
	font-family: Arial, Helvetica, sans-serif;
	margin: 0px;
	padding: 0px;
}
body, td, th, input, textarea, select, a {
	font-size: 12px;

}
h1, .welcome {
	color: #636E75;
	font: Verdana;
	margin-top: 0px;
	margin-bottom: 20px;
	font-size: 32px;
	font-weight: normal;
	text-shadow: 0 0 1px rgba(0, 0, 0, .01);
}
h2 {
	color: #000000;
	font-size: 16px;
	margin-top: 0px;
	margin-bottom: 5px;
}
p {
	margin-top: 0px;
	margin-bottom: 20px;
}
a, a:visited, a b {
	color: #38B0E3;
	text-decoration: underline;
	cursor: pointer;
}
a:hover {
	text-decoration: none;
}
a img {
	border: none;
}
form {
	padding: 0;
	margin: 0;
	display: inline;
}
input[type='text'], input[type='password'], textarea {
	background: #F8F8F8;
	border: 1px solid #CCCCCC;
	padding: 3px;
	margin-left: 0px;
	margin-right: 0px;
}
select {
	background: #F8F8F8;
	border: 1px solid #CCCCCC;
	padding: 2px;
}
label {
	cursor: pointer;
}
/* layout */
#container {
	width: 980px;
	margin-left: auto;
	margin-right: auto;
	text-align: left;
background: #F8F8F8;

}
#column-left {
	float: left;
	width: 180px;

background: #adadad;
}
#column-right {
	float: right;
	width: 180px;

}
#content {
	min-height: 400px;
	margin-bottom: 25px;

}
#column-left + #column-right + #content, #column-left + #content {
	margin-left: 195px;

}
#column-right + #content {
	margin-right: 195px;
}
/* header */
#top {
	height: 30px;
	border-top: 1px solid #DBDEE1;
	border-bottom: 1px solid #DBDEE1;
	background: #F8F8F8;
}

#header {
	height: 90px;
	margin-bottom: 7px;
	padding-bottom: 4px;
	position: relative;
	z-index: 99;

}
#header #logo {
	position: absolute;
	top: 33px;
	left: 15px;

}
#language {
	position: absolute;
	top: 59px;
	left: 360px;
	width: 108px;
	color: #999;
	line-height: 17px;
}
#language img {
	cursor: pointer;
	margin-right: 5px;
	padding-left:5px;
}
#currency {
	width: 120px;
	position: absolute;
	top: 56px;
	left: 500px;
	color: #999;
	line-height: 17px;
}
#currency a {
	display: inline-block;
	padding: 2px 4px;
	color: #999;
	text-decoration: none;
	margin-right: 2px;
	margin-bottom: 2px;
}
#currency a b {
	color: #000;
	text-decoration: none;
}
#header #cart {
	position: absolute;
	top: 0px;
	right: 0px;
	z-index: 9;
	min-width: 300px;
}
#header #cart .heading {
	float: right;
	margin-right: 2px;
	height: 30px;
	padding-left: 14px;
	padding-right: 14px;
	background: url('../image/cart.png') 0% 50% no-repeat;
	position: relative;
	z-index: 1;
}
#header #cart .heading h4 {
	color: #333333;
	font-size: 15px;
	font-weight: bold;
	margin-top: 0px;
	margin-bottom: 3px;

}
#header #cart .heading a {
	color: #000;
	text-decoration: none;
	display: block;
}
#header #cart .heading a span {
	background: url('../image/arrow-down.png') 100% 50% no-repeat;
	padding-right: 15px;
	margin-left:30px;
	line-height: 30px;
}
#header #cart .content {
	clear: both;
	display: none;
	position: relative;
	top: 2px;
	padding: 8px;
	min-height: 150px;
	border-top: 1px solid #EEEEEE;
	border-left: 1px solid #EEEEEE;
	border-right: 1px solid #EEEEEE;
	border-bottom: 1px solid #EEEEEE;
	-webkit-border-radius: 0px 0px 7px 7px;
	-moz-border-radius: 0px 0px 7px 7px;
	-khtml-border-radius: 0px 0px 7px 7px;
	border-radius: 0px 0px 7px 7px;
	-webkit-box-shadow: 0px 2px 2px #DDDDDD;
	-moz-box-shadow: 0px 2px 2px #DDDDDD;
	box-shadow: 0px 2px 2px #DDDDDD;
	background: #FFF;
}
#header #cart.active .heading {
font-weight:700;	
}
#header #cart.active .content {
	display: block;
}
.mini-cart-info table {
	border-collapse: collapse;
	width: 100%;
	margin-bottom: 5px;
}
.mini-cart-info td {
	color: #000;
	vertical-align: top;
	padding: 10px 5px;
	border-bottom: 1px solid #EEEEEE;
}
.mini-cart-info .image {
	width: 1px;
}
.mini-cart-info .image img {
	border: 1px solid #EEEEEE;
	text-align: left;
}
.mini-cart-info .name small {
	color: #666;
}
.mini-cart-info .quantity {
	text-align: right;
}
.mini-cart-info td.total {
	text-align: right;
}
.mini-cart-info .remove {
	text-align: right;
}
.mini-cart-info .remove img {
	cursor: pointer;
}
.mini-cart-total {
	text-align: right;
}
.mini-cart-total table {
	border-collapse: collapse;
	display: inline-block;
	margin-bottom: 5px;
}
.mini-cart-total td {
	color: #000;
	padding: 4px;
}
#header #cart .checkout {
	text-align: right;
	clear: both;
}
#header #cart .empty {
	padding-top: 50px;
	text-align: center;
}
#header #search {
	position: absolute;
	top: 55px;
	right: 0px;
	width: 298px;
	z-index: 7;
}
#header .button-search {
	position: absolute;
	left: 0px;
	background: url('../image/button-search.png') center center no-repeat;
	width: 28px;
	height: 24px;
	border-right: 1px solid #CCCCCC;
	cursor: pointer;
}
#header #search input {
	background: #FFF;
	padding: 1px 1px 1px 33px;
	width: 262px;
	height: 21px;
	border: 1px solid #CCCCCC;
	-webkit-border-radius: 3px 3px 3px 3px;
	-moz-border-radius: 3px 3px 3px 3px;
	-khtml-border-radius: 3px 3px 3px 3px;
	border-radius: 3px 3px 3px 3px;
	-webkit-box-shadow: 0px 2px 0px #F0F0F0;
	-moz-box-shadow: 0px 2px 0px #F0F0F0;
	box-shadow: 0px 2px 0px #F0F0F0;

}
#header #welcome {
	position: absolute;
	top: 7px;
	left: 7px;
	z-index: 5;
	width: 298px;
	text-align: left;
	color: #999999;
}
#header #welcome a{
	color: #000;
}
#header .links {
	position: absolute;
	right: 10px;      /* ПРИЖИМАЕМ ВПРАВО (вместо left: 290px) */
	top: 2px;
	font-size: 10px;
	padding-right: 10px;
	z-index: 11;
}
#header .links a {
	float: left;
	display: block;
	padding: 0px 0px 0px 7px;
	color: #000;
	text-decoration: underline;
	font-size: 12px;
}
#header .links a:hover {
	text-decoration: none;
}
#header .links a + a {
	margin-left: 8px;
	border-left: 1px solid #CCC;
}
/* menu */
#menu {
	background: #585858;
	border-bottom: 1px solid #000000;
	height: 37px;
	margin-bottom: 15px;
	-webkit-border-radius: 5px 5px 5px 5px;
	-moz-border-radius: 5px 5px 5px 5px;
	-khtml-border-radius: 5px 5px 5px 5px;
	border-radius: 5px 5px 5px 5px;
	-webkit-box-shadow: 0px 2px 2px #DDDDDD;
	-moz-box-shadow: 0px 2px 2px #DDDDDD;
	box-shadow: 0px 2px 2px #DDDDDD;
	padding: 0px 5px;
}
#menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
#menu > ul > li {
	position: relative;
	float: left;
	z-index: 20;
	padding: 6px 5px 5px 0px;

}
#menu > ul > li:hover {
}
#menu > ul > li > a {
	font-size: 13px;
	color: #FFF;
	line-height: 14px;
	text-decoration: none;
	display: block;
	padding: 6px 10px 6px 10px;
	margin-bottom: 5px;
	z-index: 6;
	position: relative;
}
#menu > ul > li:hover > a, #menu > ul > li > a.active {
	background: #000000;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-khtml-border-radius: 5px;
	border-radius: 5px;
}
#menu > ul > li > div {
	display: none;
	background: #FFFFFF;
	position: absolute;
	z-index: 5;
	padding: 5px;
	border: 1px solid #000000;
	-webkit-border-radius: 0px 0px 5px 5px;
	-moz-border-radius: 0px 0px 5px 5px;
	-khtml-border-radius: 0px 0px 5px 5px;
	border-radius: 0px 0px 5px 5px;
	background: url('../image/menu.png');
}
#menu > ul > li:hover > div {
	display: table;
}
#menu > ul > li > div > ul {
	display: table-cell;
}
#menu > ul > li ul + ul {
	padding-left: 20px;
}
#menu > ul > li ul > li > a {
	text-decoration: none;
	padding: 4px;
	color: #FFFFFF;
	display: block;
	white-space: nowrap;
	min-width: 120px;
}
#menu > ul > li ul > li > a:hover {
	background: #000000;
}
#menu > ul > li > div > ul > li > a {
	color: #FFFFFF;
}
.breadcrumb {
	background: url('../image/background.png') repeat-x transparent;
	border: 1px solid #DBDEE1;
	-webkit-border-radius: 7px 7px 0px 0px;
	-moz-border-radius: 7px 7px 0px 0px;
	-khtml-border-radius: 7px 7px 0px 0px;
	border-radius: 7px 7px 0px 0px;
	color: #CCCCCC;
	height: 30px;
	line-height: 30px;
	margin-bottom: 10px;
	padding-left: 10px;
}
.breadcrumb a {
color:#000;
}


.success, .warning, .attention, .information {
	padding: 10px 10px 10px 33px;
	margin-bottom: 15px;
	color: #555555;
	-webkit-border-radius: 5px 5px 5px 5px;
	-moz-border-radius: 5px 5px 5px 5px;
	-khtml-border-radius: 5px 5px 5px 5px;
	border-radius: 5px 5px 5px 5px;
}
.success {
	background: #EAF7D9 url('../image/success.png') 10px center no-repeat;
	border: 1px solid #BBDF8D;
	-webkit-border-radius: 5px 5px 5px 5px;
	-moz-border-radius: 5px 5px 5px 5px;
	-khtml-border-radius: 5px 5px 5px 5px;
	border-radius: 5px 5px 5px 5px;
}
.warning {
	background: #FFD1D1 url('../image/warning.png') 10px center no-repeat;
	border: 1px solid #F8ACAC;
	-webkit-border-radius: 5px 5px 5px 5px;
	-moz-border-radius: 5px 5px 5px 5px;
	-khtml-border-radius: 5px 5px 5px 5px;
	border-radius: 5px 5px 5px 5px;
}
.attention {
	background: #FFF5CC url('../image/attention.png') 10px center no-repeat;
	border: 1px solid #F2DD8C;
	-webkit-border-radius: 5px 5px 5px 5px;
	-moz-border-radius: 5px 5px 5px 5px;
	-khtml-border-radius: 5px 5px 5px 5px;
	border-radius: 5px 5px 5px 5px;
}
.success .close, .warning .close, .attention .close, .information .close {
	float: right;
	padding-top: 4px;
	padding-right: 4px;
	cursor: pointer;
}
.required {
	color: #FF0000;
	font-weight: bold;
}
.error {
	display: block;
	color: #FF0000;
}
.help {
	color: #999;
	font-size: 10px;
	font-weight: normal;
	font-family: Verdana, Geneva, sans-serif;
	display: block;
}
table.form {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 20px;
}
table.form tr td:first-child {
	width: 150px;
}
table.form > * > * > td {
	color: #000000;
}
table.form td {
	padding: 4px;
}
input.large-field, select.large-field {
	width: 300px;
}
table.list {
	border-collapse: collapse;
	width: 100%;
	border-top: 1px solid #DDDDDD;
	border-left: 1px solid #DDDDDD;
	margin-bottom: 20px;
}
table.list td {
	border-right: 1px solid #DDDDDD;
	border-bottom: 1px solid #DDDDDD;
}
table.list thead td {
	background-color: #EFEFEF;
	padding: 0px 5px;
}
table.list thead td a, .list thead td {
	text-decoration: none;
	color: #222222;
	font-weight: bold;
}
table.list tbody td {
	padding: 0px 5px;
}
table.list .left {
	text-align: left;
	padding: 7px;
}
table.list .right {
	text-align: right;
	padding: 7px;
}
table.list .center {
	text-align: center;
	padding: 7px;
}
table.radio {
	width: 100%;
	border-collapse: collapse;
}
table.radio td {
	padding: 5px;
}
table.radio td label {
	display: block;
}
table.radio tr td:first-child {
	width: 1px;
}
table.radio tr td:first-child input {
	margin-top: 1px;
}
table.radio tr.highlight:hover td {
	background: #F1FFDD;
	cursor: pointer;
}
.pagination {
	border-top: 1px solid #EEEEEE;
	padding-top: 8px;
	display: inline-block;
	width: 100%;
	margin-bottom: 10px;
}
.pagination .links {
	float: left;
}
.pagination .links a {
	display: inline-block;
	border: 1px solid #EEEEEE;
	padding: 4px 10px;
	text-decoration: none;
	color: #A3A3A3;
}
.pagination .links b {
	display: inline-block;
	border: 1px solid #269BC6;
	padding: 4px 10px;
	font-weight: normal;
	text-decoration: none;
	color: #269BC6;
	background: #FFFFFF;
}
.pagination .results {
	float: right;
	padding-top: 3px;
}
/* button */
a.button, input.button {
	cursor: pointer;
	color: #FFFFFF;
	line-height: 12px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	background: url('../image/button.png') repeat-x;
	-webkit-border-radius: 3px 3px 3px 3px;
	-moz-border-radius: 3px 3px 3px 3px;
	-khtml-border-radius: 3px 3px 3px 3px;
	border-radius: 3px 3px 3px 3px;
	-webkit-box-shadow: 0px 2px 2px #DDDDDD;
	-moz-box-shadow: 0px 2px 2px #DDDDDD;
	box-shadow: 0px 2px 2px #DDDDDD;
}
a.button {
	display: inline-block;
	text-decoration: none;
	padding: 6px 12px 6px 12px;
}
input.button {
	margin: 0;
	border: 0;
	height: 24px;
	padding: 0px 22px 0px 22px;
}
a.button:hover, input.button:hover {
	background-position: 0px -24px;
}
.buttons {
	background: #FFFFFF;
	border: 1px solid #EEEEEE;
	overflow: auto;
	padding: 6px;
	margin-bottom: 20px;
}
.buttons .left {
	float: left;
	text-align: left;
}
.buttons .right {
	float: right;
	text-align: right;
}
.buttons .center {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}
.htabs {
	height: 30px;
	line-height: 16px;
	border-bottom: 1px solid #DDDDDD;
}
.htabs a {
	border-top: 1px solid #DDDDDD;
	border-left: 1px solid #DDDDDD;
	border-right: 1px solid #DDDDDD;
	background: #FFFFFF url('../image/tab.png') repeat-x;
	padding: 7px 15px 6px 15px;
	float: left;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	color: #000000;
	margin-right: 2px;
	display: none;
}
.htabs a.selected {
	padding-bottom: 7px;
	background: #FFFFFF;
}
.tab-content {
	border-left: 1px solid #DDDDDD;
	border-right: 1px solid #DDDDDD;
	border-bottom: 1px solid #DDDDDD;
	padding: 10px;
	margin-bottom: 20px;
	z-index: 2;
	overflow: auto;
}
/* box */
.box {
	margin-bottom: 20px;
}
.box .box-heading {
	-webkit-border-radius: 7px 7px 0px 0px;
	-moz-border-radius: 7px 7px 0px 0px;
	-khtml-border-radius: 7px 7px 0px 0px;
	border-radius: 7px 7px 0px 0px;
	border: 1px solid #DBDEE1;
	background: url('../image/background.png') repeat-x;
	padding: 8px 10px 7px 10px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	line-height: 14px;
	color: #333;
}
.box .box-content {
	background: #FFFFFF;
	-webkit-border-radius: 0px 0px 7px 7px;
	-moz-border-radius: 0px 0px 7px 7px;
	-khtml-border-radius: 0px 0px 7px 7px;
	border-radius: 0px 0px 7px 7px;
	border-left: 1px solid #DBDEE1;
	border-right: 1px solid #DBDEE1;
	border-bottom: 1px solid #DBDEE1;
	padding: 10px;
}
/* box products - исправленная сетка */
.box-product {
	width: 100%;
	overflow: auto;
}

/* Основная карточка товара */
.box-product > div {
	width: 168px; /* Ваша оригинальная ширина */
	display: inline-block;
	vertical-align: top;
	margin-right: 20px;
	margin-bottom: 20px;
	border: 1px solid #eee;
	padding: 10px;
	height: 300px; /* ФИКСИРУЕМ ВЫСОТУ КАРТОЧКИ */
	background: #fff;
	text-align: center;
	transition: all 0.3s ease;
	box-sizing: border-box; /* Чтобы padding не раздувал ширину */
}

/* Эффект при наведении (как в категориях) */
.box-product > div:hover {
	box-shadow: 0 10px 20px rgba(0,0,0,0.1);
	transform: translateY(-5px);
	border-color: #bbb;
}

/* Контейнер для картинки (убираем разницу в высоте фото) */
.box-product .image {
	display: block;
	height: 155px; /* ФИКСИРУЕМ ЗОНУ ФОТО */
	line-height: 155px;
	margin-bottom: 10px;
	text-align: center;
}

.box-product .image img {
	max-height: 150px;
	max-width: 100%;
	width: auto;
	height: auto;
	vertical-align: middle;
	display: inline-block;
	padding: 3px;
	border: 1px solid #E7E7E7;
	background: #fff;
}

/* Фиксируем блок названия (ровняем текст под фото) */
.box-product .name {
	height: 47px; /* Место строго под 3 строки */
	overflow: hidden;
	margin-bottom: 20px;
}

.box-product .name a {
	color: #38B0E3;
	font-weight: bold;
	text-decoration: none;
	display: block;
	font-size: 13px;
	line-height: 1.2;
}

/* Фиксируем блок цены */
.box-product .price {
	display: block;
	font-weight: bold;
	color: #333333;
	margin-bottom: 10px;
	height: 30px; /* Чтобы кнопки "Купить" стояли в ряд */
        font-size: 16px; /* Размер цены */
}

.box-product .price-old {
	color: #F00;
	text-decoration: line-through;
	font-size: 11px;
}

.box-product .price-new {
	font-weight: bold;
	color: #cc0000;
}

/* Адаптация для колонок (если товары в боковой панели) */
#column-left .box-product > div, #column-right .box-product > div {
	width: 100%; /* В колонке на всю ширину */
	margin-right: 0px;
}




/* box category */
ul.box-category, ul.box-category ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
ul.box-category > li:first-child {
	padding: 0px 8px 8px 0px;
}
ul.box-category > li {
	padding: 8px 8px 8px 0px;
}
ul.box-category > li + li {
	border-top: 1px solid #EEEEEE;
}
ul.box-category > li > a {
	text-decoration: none;
	color: #333;
}
ul.box-category > li ul {
	display: none;
}
ul.box-category > li a.active {
	font-weight: bold;
}
ul.box-category > li a.active + ul {
	display: block;
}
ul.box-category > li ul > li {
	padding: 5px 5px 0px 10px;
}
ul.box-category > li ul > li > a {
	text-decoration: none;
	display: block;
}
ul.box-category > li ul > li > a.active {
	font-weight: bold;
}
/* box filter */
ul.box-filter, ul.box-filter ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
ul.box-filter span {
	font-weight: bold;
	border-bottom: 1px solid #EEEEEE;	
	display: block;
	padding-bottom: 5px;
	margin-bottom: 8px;
}
ul.box-filter > li ul {
	padding-bottom: 10px;
}
/* content */
#content .content {
	padding: 10px;
	overflow: auto;
	margin-bottom: 20px;
	border: 1px solid #EEEEEE;
}
#content .content .left {
	float: left;
	width: 49%;
}
#content .content .right {
	float: right;
	width: 49%;
}
/* category */
.category-info {
	overflow: auto;
	margin-bottom: 20px;
}
.category-info .image {
	float: left;
	padding: 5px;
	margin-right: 15px;
	border: 1px solid #E7E7E7;
}


.category-list ul li  img{}

/* manufacturer */
.manufacturer-list {
	border: 1px solid #DBDEE1;
	padding: 5px;
	overflow: auto;
	margin-bottom: 20px;
}
.manufacturer-heading {
	background: #F8F8F8;
	font-size: 15px;
	font-weight: bold;
	padding: 5px 8px;
	margin-bottom: 6px;
}
.manufacturer-content {
	padding: 8px;
}
.manufacturer-list ul {
	float: left;
	width: 25%;
	margin: 0;
	padding: 0;
	list-style: none;
	margin-bottom: 10px;
}
/* product */
.product-filter {
	background: #F5F5F5;
	border-bottom: 1px solid #EEEEEE;
	padding: 5px;
	overflow: auto;
	margin-bottom:25px;
}
.product-filter .display {
	margin-right: 15px;
	float: left;
	padding-top: 4px;
	color: #333;
}
.product-filter .display a {
	font-weight: bold;
}
.product-filter .sort {
	float: right;
	color: #333;
}
.product-filter .limit {
	margin-left: 15px;
	float: right;
	color: #333;
}
.product-compare {
	float:left;
	padding-top: 5px;
	margin-left: 50px;
	font-weight: bold;
	
}
.product-compare a {
	text-decoration: none;
	font-weight: bold;
}
.product-list > div {
	overflow: auto;
	margin-bottom: 15px;
}
.product-list .right {
	height: 130px;
	float: right;
	padding-left: 18px;
	border-left: 1px solid #EEEEEE;
	
}
.product-list > div + div {
	border-top: 1px solid #EEEEEE;
	padding-top: 16px;
}
.product-list .image {
	float: left;
	margin-right: 10px;
}
.product-list .image img {
	padding: 3px;
	border: 1px solid #E7E7E7;
}
.product-list .name {
	margin-bottom: 3px;
}
.product-list .name a {
	color: #38B0E3;
	font-weight: bold;
	text-decoration: none;
        font-size: 15px;
}
.product-list .description {
	line-height: 15px;
	margin-bottom: 5px;
	color: #4D4D4D;
}
.product-list .rating {
	color: #7B7B7B;
}
.product-list .price {
	float: right;
	height: 130px;
	margin-left: 8px;
	text-align: center;
	color: #38B0E3;
	font-size: 15px;
	border-left: 1px solid #EEEEEE;
        font-weight: bold;
	
}
.product-list .price-old {
	color: #F00;
	text-decoration: line-through;
}
.product-list .price-new {
	font-weight: bold;
}
.product-list .price-tax {
	font-size: 12px;
	font-weight: normal;
	color: #BBBBBB;
}
.product-list .cart {
	margin-bottom: 3px;
}
.product-list .wishlist, .product-list .compare {
	margin-bottom: 3px;
}
.product-list .wishlist a {
	color: #333333;
	text-decoration: none;
	padding-left: 18px;
	display: block;
	background: url('../image/add.png') left center no-repeat;
}
.product-list .compare a {
	color: #333333;
	text-decoration: none;
	padding-left: 18px;
	display: block;
	background: url('../image/add.png') left 60% no-repeat;
}
.product-grid {
	width: 100%;
	overflow: auto;
}
.product-grid > div {
	width: 130px;
	display: inline-block;
	vertical-align: top;
	margin-right: 20px;
	margin-bottom: 15px;
}
#column-left + #column-right + #content .product-grid > div {
	width: 125px;
}
.product-grid .image {
	display: block;
	margin-bottom: 0px;
}
.product-grid .image img {
	padding: 3px;
	border: 1px solid #E7E7E7;
}
.product-grid .name a {
	color: #38B0E3;
	font-weight: bold;
	text-decoration: none;
	display: block;
	margin-bottom: 4px;
}
.product-grid .description {
	display: none;
}
.product-grid .rating {
	display: block;
	margin-bottom: 4px;
}
.product-grid .price {
	display: block;
	font-weight: bold;
	color: #333333;
	margin-bottom: 4px;
}
.product-grid .price-old {
	color: #F00;
	text-decoration: line-through;
}
.product-grid .price-new {
	font-weight: bold;
}
.product-grid .price .price-tax {
	display: none;
}
.product-grid .cart {
	margin-bottom: 3px;
}
.product-grid .wishlist, .product-grid .compare {
	margin-bottom: 3px;
}
.product-grid .wishlist a {
	color: #333333;
	text-decoration: none;
	padding-left: 18px;
	display: block;
	background: url('../image/add.png') left center no-repeat;
}
.product-grid .compare a {
	color: #333333;
	text-decoration: none;
	padding-left: 18px;
	display: block;
	background: url('../image/add.png') left center no-repeat;
}
/* Product */
.product-info {
	overflow: auto;
	margin-bottom: 20px;
}
.product-info > .left {
	float: left;
	margin-right: 15px;
}
.product-info > .left + .right {
	margin-left: 265px;
}
.product-info .image {
	border: 1px solid #E7E7E7;
	float: left;
	margin-bottom: 20px;
	padding: 10px;
	text-align: center;
}
.product-info .image-additional {
	width: 260px; /* Ширина всей карусели */
	clear: both;
	margin-bottom: 20px;
    position: relative;
}
.product-info .image-additional ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.product-info .image-additional li {
	float: left;
	width: 82px; /* Ширина фото + отступы */
	text-align: center;
}
.product-info .image-additional img {
	border: 1px solid #E7E7E7;
	padding: 5px;
    display: block;
    margin: 0 auto;
}
/* Стили для контейнера jcarousel (автоматически добавляется скриптом) */
.jcarousel-container-horizontal {
    padding: 0 20px; /* Место под стрелки слева и справа */
}
.jcarousel-clip-horizontal {
    overflow: hidden;
}




.product-info .description {
	border-top: 1px solid #E7E7E7;
	border-bottom: 1px solid #E7E7E7;
	padding: 5px 5px 10px 5px;
	margin-bottom: 10px;
	line-height: 20px;
	color: #4D4D4D;
}
.product-info .description span {
	color: #38B0E3;
}
.product-info .description a {
	color: #4D4D4D;
	text-decoration: none;
}
.product-info .price {
	overflow: auto;
	border-bottom: 1px solid #E7E7E7;
	padding: 0px 5px 10px 5px;
	margin-bottom: 10px;
	font-size: 15px;
	font-weight: bold;
	color: #333333;
}
.product-info .price-old {
	color: #F00;
	text-decoration: line-through;
}
.product-info .price-new {
}
.product-info .price-tax {
	font-size: 12px;
	font-weight: normal;
	color: #999;
}
.product-info .price .reward {
	font-size: 12px;
	font-weight: normal;
	color: #999;
}
.product-info .price .discount {
	font-weight: normal;
	font-size: 12px;
	color: #4D4D4D;
}
.product-info .options {
	border-bottom: 1px solid #E7E7E7;
	padding: 0px 5px 10px 5px;
	margin-bottom: 10px;
	color: #000000;
}
.product-info .option-image {
	margin-top: 3px;
	margin-bottom: 10px;
}
.product-info .option-image label {
	display: block;
	width: 100%;
	height: 100%;
}
.product-info .option-image img {
	margin-right: 5px;
	border: 1px solid #CCCCCC;
	cursor: pointer;
}
.product-info .cart {
	border-bottom: 1px solid #E7E7E7;
	padding: 0px 5px 10px 5px;
	margin-bottom: 20px;
	color: #4D4D4D;
}
.product-info .cart div > span {
	color: #999;
}
.product-info .cart .links {
	display: inline-block;
	vertical-align: middle;
}
.product-info .cart .minimum {
	padding-top: 5px;
	font-size: 11px;
	color: #999;
}
.product-info .review {
	color: #4D4D4D;
	border-top: 1px solid #E7E7E7;
	border-left: 1px solid #E7E7E7;
	border-right: 1px solid #E7E7E7;
	margin-bottom: 10px;
}
.product-info .review > div {
	padding: 8px;
	border-bottom: 1px solid #E7E7E7;
	line-height: 20px;
}
.product-info .review > div > span {
	color: #38B0E3;
}
.product-info .review .share {
	overflow: auto;
	line-height: normal;
	padding-bottom: 3px;
	padding-top: 8px;
}
.product-info .review .share a {
	text-decoration: none;
}
.review-list {
	padding: 10px;
	overflow: auto;
	margin-bottom: 20px;
	border: 1px solid #EEEEEE;
}
.review-list .author {
	float: left;
	margin-bottom: 20px;
}
.review-list .rating {
	float: right;
	margin-bottom: 20px;
}
.review-list .text {
	clear: both;
}
.attribute {
	border-collapse: collapse;
	width: 100%;
	border-top: 1px solid #DDDDDD;
	border-left: 1px solid #DDDDDD;
	margin-bottom: 20px;
}
.attribute thead td, .attribute thead tr td:first-child {
	color: #000000;
	font-size: 14px;
	font-weight: bold;
	background: #F7F7F7;
	text-align: left;
}
.attribute tr td:first-child {
	color: #000000;
	font-weight: bold;
	text-align: right;
	width: 20%;
}
.attribute td {
	padding: 7px;
	color: #4D4D4D;
	text-align: center;
	vertical-align: top;
	border-right: 1px solid #DDDDDD;
	border-bottom: 1px solid #DDDDDD;
}
.compare-info {
	border-collapse: collapse;
	width: 100%;
	border-top: 1px solid #DDDDDD;
	border-left: 1px solid #DDDDDD;
	margin-bottom: 20px;
}
.compare-info thead td, .compare-info thead tr td:first-child {
	color: #000000;
	font-size: 14px;
	font-weight: bold;
	background: #F7F7F7;
	text-align: left;
}
.compare-info tr td:first-child {
	color: #000000;
	font-weight: bold;
	text-align: right;
}
.compare-info td {
	padding: 7px;
	width: 20%;
	color: #4D4D4D;
	text-align: center;
	vertical-align: top;
	border-right: 1px solid #DDDDDD;
	border-bottom: 1px solid #DDDDDD;
}
.compare-info .name a {
	font-weight: bold;
}
.compare-info .price-old {
	font-weight: bold;
	color: #F00;
	text-decoration: line-through;
}
.compare-info .price-new {
	font-weight: bold;
}
/* wishlist */
.wishlist-info table {
	width: 100%;
	border-collapse: collapse;
	border-top: 1px solid #DDDDDD;
	border-left: 1px solid #DDDDDD;
	border-right: 1px solid #DDDDDD;
	margin-bottom: 20px;
}
.wishlist-info td {
	padding: 7px;
}
.wishlist-info thead td {
	color: #4D4D4D;
	font-weight: bold;
	background-color: #F7F7F7;
	border-bottom: 1px solid #DDDDDD;
}
.wishlist-info thead .image {
	text-align: center;
}
.wishlist-info thead .name, .wishlist-info thead .model, .wishlist-info thead .stock {
	text-align: left;
}
.wishlist-info thead .quantity, .wishlist-info thead .price, .wishlist-info thead .total, .wishlist-info thead .action {
	text-align: right;
}
.wishlist-info tbody td {
	vertical-align: top;
	border-bottom: 1px solid #DDDDDD;
}
.wishlist-info tbody .image img {
	border: 1px solid #DDDDDD;
}
.wishlist-info tbody .image {
	text-align: center;
}
.wishlist-info tbody .name, .wishlist-info tbody .model, .wishlist-info tbody .stock {
	text-align: left;
}
.wishlist-info tbody .quantity, .wishlist-info tbody .price, .wishlist-info tbody .total, .wishlist-info tbody .action {
	text-align: right;
}
.wishlist-info tbody .price s {
	color: #F00;
}
.wishlist-info tbody .action img {
	cursor: pointer;
}
.login-content {
	margin-bottom: 20px;
	overflow: auto;
}
.login-content .left {
	float: left;
	width: 48%;
}
.login-content .right {
	float: right;
	width: 48%
}
.login-content .left .content, .login-content .right .content {
	min-height: 190px;
}
/* orders */
.order-list {
	margin-bottom: 10px;
}
.order-list .order-id {
	width: 49%;
	float: left;
	margin-bottom: 2px;
}
.order-list .order-status {
	width: 49%;
	float: right;
	text-align: right;
	margin-bottom: 2px;
}
.order-list .order-content {
	padding: 10px 0px;
	display: inline-block;
	width: 100%;
	margin-bottom: 20px;
	border-top: 1px solid #EEEEEE;
	border-bottom: 1px solid #EEEEEE;
}
.order-list .order-content div {
	float: left;
	width: 33.3%;
}
.order-list .order-info {
	text-align: right;
}
.order-detail {
	background: #EFEFEF;
	font-weight: bold;
}
/* returns */
.return-list {
	margin-bottom: 10px;
}
.return-list .return-id {
	width: 49%;
	float: left;
	margin-bottom: 2px;
}
.return-list .return-status {
	width: 49%;
	float: right;
	text-align: right;
	margin-bottom: 2px;
}
.return-list .return-content {
	padding: 10px 0px;
	display: inline-block;
	width: 100%;
	margin-bottom: 20px;
	border-top: 1px solid #EEEEEE;
	border-bottom: 1px solid #EEEEEE;
}
.return-list .return-content div {
	float: left;
	width: 33.3%;
}
.return-list .return-info {
	text-align: right;
}
.return-product {
	overflow: auto;
	margin-bottom: 20px;
}
.return-name {
	float: left;
	width: 31%;
	margin-right: 15px;
}
.return-model {
	float: left;
	width: 31%;
	margin-right: 15px;
}
.return-quantity {
	float: left;
	width: 31%;
}
.return-detail {
	overflow: auto;
	margin-bottom: 20px;
}
.return-reason {
	float: left;
	width: 31%;
	margin-right: 15px;
}
.return-opened {
	float: left;
	width: 31%;
	margin-right: 15px;
}
.return-opened textarea {
	width: 98%;
	vertical-align: top;
}
.return-captcha {
	float: left;
}
.download-list {
	margin-bottom: 10px;
}
.download-list .download-id {
	width: 49%;
	float: left;
	margin-bottom: 2px;
}
.download-list .download-status {
	width: 49%;
	float: right;
	text-align: right;
	margin-bottom: 2px;
}
.download-list .download-content {
	padding: 10px 0px;
	display: inline-block;
	width: 100%;
	margin-bottom: 20px;
	border-top: 1px solid #EEEEEE;
	border-bottom: 1px solid #EEEEEE;
}
.download-list .download-content div {
	float: left;
	width: 33.3%;
}
.download-list .download-info {
	text-align: right;
}
/* cart */
.cart-info table {
	width: 100%;
	margin-bottom: 15px;
	border-collapse: collapse;
	border-top: 1px solid #DDDDDD;
	border-left: 1px solid #DDDDDD;
	border-right: 1px solid #DDDDDD;
}
.cart-info td {
	padding: 7px;
}
.cart-info thead td {
	color: #4D4D4D;
	font-weight: bold;
	background-color: #F7F7F7;
	border-bottom: 1px solid #DDDDDD;
}
.cart-info thead .image {
	text-align: center;
}
.cart-info thead .name, .cart-info thead .model, .cart-info thead .quantity {
	text-align: left;
}
.cart-info thead .price, .cart-info thead .total {
	text-align: right;
}
.cart-info tbody td {
	vertical-align: top;
	border-bottom: 1px solid #DDDDDD;
}
.cart-info tbody .image img {
	border: 1px solid #DDDDDD;
}
.cart-info tbody .image {
	text-align: center;
}
.cart-info tbody .name, .cart-info tbody .model, .cart-info tbody .quantity {
	text-align: left;
}
.cart-info tbody .quantity input[type='image'], .cart-info tbody .quantity img {
	position: relative;
	top: 4px;
	cursor: pointer;
}
.cart-info tbody .price, .cart-info tbody .total {
	text-align: right;
}
.cart-info tbody span.stock {
	color: #F00;
	font-weight: bold;
}
.cart-module > div {
	display: none;
}
.cart-total {
	border-top: 1px solid #DDDDDD;
	overflow: auto;
	padding-top: 8px;
	margin-bottom: 15px;
}
.cart-total table {
	float: right;
}
.cart-total td {
	padding: 3px;
	text-align: right;
}
/* checkout */
.checkout-heading {
	background: #F8F8F8;
	border: 1px solid #DBDEE1;
	padding: 8px;
	font-weight: bold;
	font-size: 13px;
	color: #555555;
	margin-bottom: 15px;
}
.checkout-heading a {
	float: right;
	margin-top: 1px;
	font-weight: normal;
	text-decoration: none;
}
.checkout-content {
	padding: 0px 0px 15px 0px;
	display: none;
	overflow: auto;
}
.checkout-content .left {
	float: left;
	width: 48%;
}
.checkout-content .right {
	float: right;
	width: 48%;
}
.checkout-content .buttons {
	clear: both;
}
.checkout-product table {
	width: 100%;
	border-collapse: collapse;
	border-top: 1px solid #DDDDDD;
	border-left: 1px solid #DDDDDD;
	border-right: 1px solid #DDDDDD;
	margin-bottom: 20px;
}
.checkout-product td {
	padding: 7px;
}
.checkout-product thead td {
	color: #4D4D4D;
	font-weight: bold;
	background-color: #F7F7F7;
	border-bottom: 1px solid #DDDDDD;
}
.checkout-product thead .name, .checkout-product thead .model {
	text-align: left;
}
.checkout-product thead .quantity, .checkout-product thead .price, .checkout-product thead .total {
	text-align: right;
}
.checkout-product tbody td {
	vertical-align: top;
	border-bottom: 1px solid #DDDDDD;
}
.checkout-product tbody .name, .checkout-product tbody .model {
	text-align: left;
}
.checkout-product tbody .quantity, .checkout-product tbody .price, .checkout-product tbody .total {
	text-align: right;
}
.checkout-product tfoot td {
	text-align: right;
	border-bottom: 1px solid #DDDDDD;
}
.contact-info {
	overflow: auto;
}
.contact-info .left {
	float: left;
	width: 48%;
}
.contact-info .right {
	float: left;
	width: 48%;
}
.sitemap-info {
	overflow: auto;
	margin-bottom: 40px;
}
.sitemap-info .left {
	float: left;
	width: 48%;
}
.sitemap-info .right {
	float: left;
	width: 48%;
}
/* footer */ 
#footer {
	clear: both;
	overflow: auto;
	min-height: 100px;
	padding: 20px;
	border-top: 1px solid #DBDEE1;
	border-bottom: 1px solid #DBDEE1;
	#background: #F8F8F8;
}
#footer h3 {
	color: #000000;
	font-size: 14px;
	margin-top: 0px;
	margin-bottom: 8px;


}
#footer .column {
	float: left;
	width: 25%;
	min-height: 100px;


}
#footer .column ul {
	margin-top: 0px;
	margin-left: 8px;
	padding-left: 12px;


}
#footer .column ul li {
	margin-bottom: 3px;


}
#footer .column a {
	text-decoration: none;
	color: #000;


}
#footer .column a:hover {
	text-decoration: underline;


}
#powered {
	margin-top: 5px;
	text-align: right;
	clear: both;
}
/* banner */
.banner div {
	text-align: center;
	width: 100%;
	display: none;
}
.banner div img {
	margin-bottom: 20px;
}
#header .links a.btn-call {
    background: #b71c1c; /* Яркий красный цвет */
    color: #ffffff !important;
    padding: 5px 12px;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    margin-left: 15px;
    border: 1px solid #8b0000; /* Темно-красная рамка */
    transition: background 0.3s;
    display: inline-block;
}

/* Эффект при наведении курсора */
#header .links a.btn-call:hover {
    background: #8b0000; /* Темно-красный цвет при наведении */
    border-color: #5c0000;
}

/* Тут правка стиля категорий чтобы корректно отображалось */
/* Фиксируем высоту блока картинки в категориях */
.category-list {
    overflow: auto;
    margin-bottom: 20px;
}
.category-list ul {
    padding-left: 0;
    margin: 0;
    list-style: none;
}
.category-list ul li {
    border: 1px solid #eee;
    text-align: center;
    float: left;
    width: 22%;
    height: 190px; /* Фиксированная высота всей карточки */
    padding: 10px 5px;
    margin-bottom: 10px;
    margin-right: 10px;
    overflow: hidden;
    background: #fff;
}

/* Ссылка, внутри которой и фото, и текст */
.category-list ul li a {
    display: block;
    text-decoration: none;
    color: #333;
    height: 100%;
}

/* Сама картинка с рамкой */
.category-list ul li a img {
    display: block;
    width: 100px;           /* Фиксированная ширина рамки */
    height: 100px;          /* Фиксированная высота рамки */
    margin: 0 auto 10px auto;
    padding: 5px;
    border: 1px solid #f0f0f0;
    background: #ffffff;
    border-radius: 4px;
    object-fit: contain;    /* Картинка красиво впишется в рамку 100х100 */
}

/* Название категории (текст) */
.category-list ul li span, 
.category-list ul li a {
    font-size: 13px;
    line-height: 1.2;       /* Возвращаем нормальный интервал тексту */
    font-weight: normal;
}

/* Ограничиваем высоту текста, чтобы не раздувал блоки */
.category-list ul li span {
    display: block;
    height: 35px;
    overflow: hidden;
}

/* Плавность для всех изменений в карточке */
.category-list ul li {
    transition: all 0.3s ease; /* Анимация длительностью 0.3 секунды */
    position: relative;
    z-index: 1;
}

/* Эффект при наведении на блок */
.category-list ul li:hover {
    border-color: #bbb; /* Рамка становится чуть темнее */
    box-shadow: 0 10px 20px rgba(0,0,0,0.1); /* Мягкая тень снизу */
    transform: translateY(-5px); /* Блок приподнимается на 5 пикселей вверх */
    z-index: 10; /* Блок накладывается поверх соседей при увеличении */
}

/* Дополнительный эффект для самой картинки внутри */
.category-list ul li:hover img {
    transform: scale(1.05); /* Картинка внутри рамки чуть-чуть увеличивается */
    transition: transform 0.3s ease;
}











/* МОБИЛЬНАЯ ВЕРСИЯ */
/* --- ПОЛНАЯ МОБИЛЬНАЯ АДАПТАЦИЯ (ФИНАЛ) --- */
@media screen and (max-width: 767px) {
    /* 1. Сбрасываем жесткую ширину контейнера */
    #container {
        width: 100% !important;
        min-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
    }

    /* 2. Фон страницы */
    body {
        background-size: cover !important;
        background-attachment: scroll !important;
        background-position: center top !important;
    }

    /* 3. Логотип: по центру */
    #header {
        height: auto !important;
        min-height: 50px !important;
        padding-bottom: 10px !important;
    }
    #header #logo {
        position: static !important;
        display: block !important;
        text-align: center !important;
        margin: 15px auto !important;
        width: 100% !important;
    }
    #header #logo img {
        max-width: 250px !important; /* Чтобы лого не было на весь экран */
        height: auto !important;
    }

    /* 4. Поиск: на всю ширину */
    #header #search {
        position: relative !important;
        top: 0 !important;
        right: 0 !important;
        width: 90% !important;
        margin: 15px auto !important;
        display: block !important;
        z-index: 10;
        left: 0 !important;
    }
    #header #search input {
        width: 100% !important;
        height: 40px !important;
        padding: 5px 10px 5px 35px !important;
        box-sizing: border-box !important;
        font-size: 14px !important;
    }

    /* 5. Исправляем баннер 980px (анимацию) */
    img[style*="width: 980px"], 
    img[src*="banners"],
    #content img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important; /* Чтобы не сплющило */
        display: block !important;
        margin: 0 auto 15px auto !important;
    }

    /* 6. Товары: по 2 в ряд (КРУПНО) */
    .box-product {
        text-align: center !important;
        padding: 0 5px !important;
        display: block !important;
    }
    .box-product > div {
        width: 45% !important;
        margin: 10px 2% !important;
        display: inline-block !important;
        vertical-align: top !important;
        float: none !important;
        background: #fff;
        padding: 8px !important;
        box-sizing: border-box !important;
        border: 1px solid #ddd;
        min-height: 220px; /* Чтобы карточки были одной высоты */
    }
    .box-product .image img {
        width: 100% !important;
        height: auto !important;
    }
    .box-product .name a {
        font-size: 12px !important;
        line-height: 1.1 !important;
        display: block;
        margin-bottom: 5px;
    }

    /* 7. Прячем лишнее для мобилки */
    #column-left, 
    #column-right, 
    #language, 
    #currency, 
    #header #welcome, 
    #header .links,
    #header #cart {
        display: none !important; /* Прячем корзину в хедере, если она мешает поиску */
    }

    /* 8. Основной контент */
    #column-left + #column-right + #content, 
    #column-left + #content, 
    #column-right + #content {
        margin: 10px !important;
        width: auto !important;
        float: none !important;
        padding: 0 10px !important;
    }


/* --- АДАПТАЦИЯ МОДУЛЯ НОВОСТИ+ --- */
/* ИСПРАВЛЕНИЕ БЛОКА НОВОСТЕЙ */
/* ПОЛНОСТЬЮ СКРЫВАЕМ БЛОК НОВОСТЕЙ НА МОБИЛЬНЫХ */
.news-module, 
.box-news, 
#news-plus, 
.news-list,
div[class*="news"] { 
    display: none !important; 
}


/* --- АДАПТАЦИЯ МЕНЮ КАТЕГОРИЙ --- */
/* --- КАТЕГОРИИ ПЛИТКОЙ (ПО 2 В РЯД) --- */
/* --- ПЛИТКИ МЕНЮ С НЕОНОМ ПРИ НАЖАТИИ --- */
#menu {
    height: auto !important;
    background: transparent !important;
    margin: 10px 0 !important;
    padding: 0 5px !important;
    overflow: visible !important;
    /* Убираем подсветку на уровне всего контейнера */
    -webkit-tap-highlight-color: transparent !important;
}

#menu > ul {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: space-between !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
}

#menu > ul > li {
    flex: 0 0 49% !important;
    box-sizing: border-box !important;
    border: 1px solid #e2e2e2 !important;
    margin-bottom: 8px !important;
    list-style: none !important;
    background: #ffffff !important; /* Базовый белый фон */
    transition: all 0.3s ease !important;
    border-radius: 4px !important;
    /* Убираем подсветку на уровне плитки */
    -webkit-tap-highlight-color: transparent !important;
}

/* ЭФФЕКТ ПРИ НАЖАТИИ (ACTIVE) И НАВЕДЕНИИ */
#menu > ul > li:active, 
#menu > ul > li:hover {
    background: #ffffff !important; /* ПРИНУДИТЕЛЬНО БЕЛЫЙ ФОН (убирает черноту/красноту) */
    border-color: #d10014 !important; /* Красная рамка */
    box-shadow: 0 0 12px rgba(209, 0, 20, 0.4) !important; /* Неоновое свечение */
    position: relative;
    z-index: 5;
    /* Полный запрет системного выделения */
    -webkit-tap-highlight-color: rgba(0,0,0,0) !important;
    -webkit-tap-highlight-color: transparent !important;
}

#menu > ul > li > a {
    display: flex !important;
    padding: 12px 5px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-align: center !important;
    color: #333 !important;
    text-decoration: none !important;
    min-height: 45px !important;
    align-items: center;
    justify-content: center;
    /* Убираем вспышку на самой ссылке внутри плитки */
    -webkit-tap-highlight-color: transparent !important;
    outline: none !important;
    background: transparent !important;
}

/* Цвет текста при нажатии */
#menu > ul > li:active > a,
#menu > ul > li:hover > a {
    color: #d10014 !important;
    background: transparent !important; /* Фон ссылки всегда прозрачный */
}

/* Скрываем выпадающие меню */
#menu > ul > li > div {
    display: none !important;
}







/* НОВОЕ ПРЯЧЕМ МЕНЮ !!! */
/* 1. По умолчанию меню ВИДНО (для главной) */
#menu {
    display: block !important;
}

/* 2. Скрываем меню, если на странице есть Хлебные крошки (признак внутренней страницы) */
.breadcrumb + #menu,
.breadcrumb ~ #menu,
#content .breadcrumb + #menu {
    display: none !important;
}

/* 3. Если хлебные крошки внутри #content, а меню снаружи */
body:has(.breadcrumb) #menu {
    display: none !important;
}

/* 4. Глухое скрытие в категориях по стандартным классам OC 1.5 */
.product-category #menu, 
.product-product #menu {
    display: none !important;
    height: 0 !important;
    margin: 0 !important;
}








/* --- ИЗМЕНЕНИЕ ПОРЯДКА БЛОКОВ (Поиск -> Баннер -> Категории) --- */
/* --- ПЕРЕСТАНОВКА БЛОКОВ (ЛОГО -> ПОИСК -> БАННЕР -> МЕНЮ -> КОНТЕНТ -> ПОДВАЛ) --- */

/* --- СТАБИЛЬНАЯ ВЕРСТКА: ЛОГО -> ПОИСК -> БАННЕР -> ТОВАРЫ -> КАТЕГОРИИ -> ПОДВАЛ --- */

/* 1. Сбрасываем все экспериментальные flex и table */
#container, #header, #content, #footer {
    display: block !important;
    position: relative !important;
    width: 100% !important;
    float: none !important;
}

/* 2. ЛОГОТИП (Первый) */
#header #logo {
    position: relative !important;
    display: block !important;
    margin: 10px auto !important;
    text-align: center !important;
    top: 0 !important;
    left: 0 !important;
}

/* 3. ПОИСК (Второй) */
#header #search {
    position: relative !important;
    display: block !important;
    width: 90% !important;
    margin: 15px auto !important;
    top: 0 !important;
    right: 0 !important;
}

/* 4. БАННЕР (Третий - идет сразу в контенте) */
#content img[src*="download (5).gif"] {
    width: 100% !important;
    height: auto !important;
    margin: 10px 0 !important;
    display: block !important;
}

/* 5. ТОВАРЫ (Четвертые) */
.box-product {
    margin-bottom: 30px !important;
}

/* 6. КАТЕГОРИИ (Пятые - ПЕРЕНОСИМ ВНИЗ) */
/* Чтобы категории оказались ПОД товарами, мы используем простую хитрость 
   с порядком в обычном потоке, если они в коде стоят выше. 
   Но так как они в header.tpl, мы их просто "выключаем" сверху и "включаем" снизу 
   (если бы правили TPL). Через CSS только так: */

#menu {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
    clear: both !important;
}

/* 7. ПОДВАЛ (Шестой - Самый низ) */
#footer {
    clear: both !important;
    margin-top: 30px !important;
    border-top: 1px solid #ddd;
    padding-top: 10px;
}

/* Убираем наложение поиска на логотип */
#header {
    height: auto !important;
    padding-bottom: 10px !important;
}




/* --- АДАПТАЦИЯ ПОДВАЛА (FOOTER) --- */
/* Мобильный подвал: делаем 2 колонки в ряд */
#footer {
    width: 100% !important;
    padding: 20px 5px !important; /* Уменьшили боковые отступы */
    display: flex !important;
    flex-wrap: wrap !important;   /* Позволяет колонкам переноситься */
    justify-content: space-between !important;
    box-sizing: border-box !important;
}

#footer .column {
    float: none !important;
    flex: 0 0 48% !important;     /* Ровно две колонки в ряд (48% + зазор) */
    width: 48% !important;
    margin: 0 0 25px 0 !important; /* Отступ только снизу */
    padding: 0 !important;
    display: block !important;
    text-align: left !important;   /* Слева текст читается лучше, когда колонок две */
    box-sizing: border-box !important;
}

#footer .column h3 {
    margin-bottom: 12px !important;
    font-size: 15px !important;    /* Чуть меньше, чтобы влезало в узкую колонку */
    border-bottom: 1px solid #eee; 
    padding-bottom: 5px;
    font-weight: bold;
    color: #333;
    white-space: nowrap;           /* Заголовок в одну строку */
    overflow: hidden;
    text-overflow: ellipsis;       /* Если заголовок слишком длинный, он сократится */
}

#footer .column ul {
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
}

#footer .column ul li {
    margin-bottom: 10px !important; /* Удобный зазор для клика пальцем */
}

#footer .column ul li a {
    font-size: 13px !important;    /* Компактный размер ссылок */
    color: #666 !important;
    text-decoration: none !important;
    display: block;                /* Увеличивает область нажатия */
}

/* Копирайт (Powered by) — на всю ширину в самом низу */
#powered {
    flex: 0 0 100% !important;     /* Растягиваем на всю ширину под колонками */
    text-align: center !important;
    margin-top: 10px !important;
    padding: 15px 0 !important;
    border-top: 1px solid #eee;
    font-size: 12px;
    color: #999;
}


/* УВЕЛИЧИВАЕМ ЛОГОТИП НА МОБИЛЬНЫХ */
#header #logo {
    position: relative !important;
    display: block !important;
    text-align: center !important;
    margin: 15px auto !important; /* Отступы сверху и снизу */
    width: 100% !important;
    left: 0 !important;
    top: 0 !important;
}

#header #logo img {
    max-width: 95% !important; /* Логотип почти на всю ширину экрана */
    width: auto !important;    /* Сохраняем пропорции */
    height: auto !important;   /* Чтобы не сплющило */
    display: inline-block !important;
}



/* --- МОБИЛЬНАЯ АДАПТАЦИЯ КАРТОЧКИ ТОВАРА --- */

/* 1. Настройка главного контейнера товара */
.product-info {
    display: flex !important;
    flex-direction: column !important;
    padding: 10px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* 2. Название: делаем шрифт компактнее */
.product-info h1 {
    font-size: 20px !important;
    line-height: 1.3 !important;
    margin-bottom: 15px !important;
    text-align: left !important;
}

/* 3. Характеристики: убираем лишние отступы */
.product-info .description {
    font-size: 13px !important;
    padding: 10px !important;
    margin-bottom: 15px !important;
}

/* 4. Фото: растягиваем на весь экран без рамок */
.product-info > .left {
    width: 100% !important;
    margin: 0 0 20px 0 !important;
}

.product-info .image img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
}

/* Миниатюры (доп. фото): делаем сеткой по 3-4 в ряд */
.product-info .image-additional {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 5px !important;
}

.product-info .image-additional img {
    width: 70px !important; /* Уменьшаем размер для телефона */
    height: auto !important;
}

/* 5. Цена: выделяем, но не делаем гигантской */
.product-info .price {
    font-size: 26px !important;
    padding: 10px 0 !important;
    margin: 15px 0 !important;
}

/* 6. Описание: подгоняем рамку под экран телефона */
#tab-description {
    padding: 15px !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

#tab-description:before {
    font-size: 16px !important;
}





/* ФИНАЛЬНОЕ ВЫРАВНИВАНИЕ ИКОНОК (2 В РЯД) */
/* МОБИЛЬНЫЕ ПОДКАТЕГОРИИ: ФИКСИРОВАННАЯ РАМКА 80x80 */
.category-list ul li {
    width: 45% !important; /* 2 в ряд */
    margin: 8px 2% !important;
    min-height: 160px !important; /* Общая высота карточки */
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    box-sizing: border-box !important;
    border: 1px solid #eee !important;
    background: #fff !important;
    padding: 10px 5px !important;
}

/* СОЗДАЕМ ЖЕСТКИЙ КВАДРАТ 80x80 КАК В АДМИНКЕ */
.category-list ul li a img {
    width: 80px !important;       /* СТРОГО 80px */
    height: 80px !important;      /* СТРОГО 80px */
    min-width: 80px !important;
    min-height: 80px !important;
    max-width: 80px !important;
    max-height: 80px !important;
    padding: 4px !important;
    border: 1px solid #f0f0f0 !important; /* Ваша светлая рамка */
    background: #ffffff !important;
    object-fit: contain !important; /* Картинка впишется без искажений */
    margin: 0 auto 10px auto !important;
    display: block !important;
    box-sizing: border-box !important;
}

/* ТЕКСТ (Название подкатегории) */
.category-list ul li a, 
.category-list ul li span {
    font-size: 13px !important;
    font-weight: bold !important;
    line-height: 1.3 !important;
    text-align: center !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    overflow: visible !important;
    color: #333 !important;
    -webkit-tap-highlight-color: transparent !important; /* Убирает синий фон при клике */
    outline: none !important;                             /* Убирает рамку фокуса */

}




 /* ОТОБРАЖЕНИЕ ТОВАРОВ В СПИСКЕ КАТЕГОРИИ  */

/* Контейнер карточки */
/* Контейнер всей карточки — БЕЗ ИЗМЕНЕНИЙ */
.product-list > div {
    position: relative !important;
    display: block !important;
    padding: 15px !important;
    margin-bottom: 12px !important;
    background: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    min-height: 220px !important;
    box-sizing: border-box;
    overflow: hidden;
}

/* ФОТО: ТЕПЕРЬ СВЕРХУ СЛЕВА */
.product-list .image {
    float: left !important;
    width: 170px !important;   /* Было 200 */
    height: 170px !important;  /* Было 200 */
    margin: 0 15px 0 0 !important; /* Уменьшили зазор до названия */
    display: block !important; 
    text-align: center !important;
}

.product-list .image img {
    max-width: 170px !important;  /* Было 200 */
    max-height: 170px !important; /* Было 200 */
    object-fit: contain;
    vertical-align: top !important; 
}

/* НАЗВАНИЕ: Пододвигаем влево под новый размер фото */
.product-list .name {
    margin-left: 185px !important; /* Было 220 (170 фото + 15 зазор) */
    margin-right: 0 !important;
    padding-top: 5px !important;
    display: block !important;
}



.product-list .name a {
    font-size: 20px !important;
    font-weight: bold;
    color: #333;
    line-height: 1.2em;
    text-decoration: none;
    display: -webkit-box !important;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 3.6em;
}

/* ЦЕНА — БЕЗ ИЗМЕНЕНИЙ */
.product-list .right,
.product-list .price {
    position: absolute !important;
    bottom: 5px !important;   
    right: 15px !important;    
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
    box-shadow: none !important;
    width: auto !important;
    height: auto !important;
    text-align: right !important;
}

.product-list .price {
    font-size: 22px !important;
    color: #d10014 !important;
    display: block !important;
}

.product-list .price::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #e2e2e2;
    margin-bottom: 4px;
}

.product-list .price-old {
    display: block !important;
    font-size: 13px !important;
    text-decoration: line-through !important;
    color: #999 !important;
    font-weight: normal !important;
    line-height: 1em !important;
}

/* Прячем мусор — БЕЗ ИЗМЕНЕНИЙ */
.product-list .description, 
.product-list .rating, 
.product-list .cart, 
.product-list .wishlist, 
.product-list .compare,
.product-list br { 
    display: none !important; 
}




/* Плавность для всех изменений внутри карточки */
.product-list > div {
    transition: all 0.3s ease-in-out !important;
    cursor: pointer;
}

/* Эффект при наведении на карточку */
.product-list > div:hover {
    border-color: #ccc !important; /* Делаем рамку чуть темнее */
    box-shadow: 0 8px 16px rgba(0,0,0,0.1) !important; /* Красивая мягкая тень */
    transform: translateY(-2px); /* Карточка слегка приподнимается */
    z-index: 10;
}

/* Подсвечиваем название при наведении на всю карточку */
.product-list > div:hover .name a {
    color: #d10014 !important; /* Цвет названия меняется на цвет цены */
    transition: color 0.2s ease;
}

/* Эффект для фото (легкое увеличение) */
.product-list > div:hover .image img {
    transform: scale(1.03); /* Картинка чуть-чуть увеличивается */
    transition: transform 0.3s ease;
}

/* Плавное появление карточек при загрузке страницы */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-list > div {
    animation: fadeInUp 0.5s ease backwards;
}



/* Эффект неонового свечения при наведении */
.product-list > div {
    transition: all 0.4s ease !important; /* Плавный переход */
}

.product-list > div:hover {
    /* Неоновое свечение (выбери цвет: красный под цену или голубой) */
    box-shadow: 0 0 15px rgba(209, 0, 20, 0.4), 0 0 30px rgba(209, 0, 20, 0.2) !important;
    border-color: rgba(209, 0, 20, 0.5) !important;
    background: linear-gradient(90deg, #fff 0%, #fffefb 100%) !important;
    transform: scale(1.01); /* Легкое увеличение */
    z-index: 5;
}

/* Оживляем свечение (пульсация неона) */
@keyframes neon-pulse {
    0% { box-shadow: 0 0 10px rgba(209, 0, 20, 0.3); }
    50% { box-shadow: 0 0 20px rgba(209, 0, 20, 0.6); }
    100% { box-shadow: 0 0 10px rgba(209, 0, 20, 0.3); }
}

.product-list > div:hover {
    animation: neon-pulse 1.5s infinite ease-in-out;
}






/*  ДЛЯ ПК ВЕРСИИ - Состояние карточки, когда она "подсвечена" при скролле */
/* 1. Базовое состояние всех карточек (добавляем плавность) */
.product-list > div {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    z-index: 1;
}

/* 2. Эффект НЕОНА (активируется скриптом через класс .neon-active) */
.product-list > div.neon-active {
    border-color: rgba(209, 0, 20, 0.8) !important; /* Цвет как у цены */
    box-shadow: 0 0 15px rgba(209, 0, 20, 0.4), 0 0 35px rgba(209, 0, 20, 0.2) !important;
    transform: scale(1.02) !important; /* Легкое увеличение */
    background: #fff !important;
    z-index: 10 !important;
}

/* 3. Дополнительный блеск на названии, когда карточка в центре */
.product-list > div.neon-active .name a {
    color: #d10014 !important;
    transition: color 0.4s ease;
}

}


/* 1. Базовые стили для всех режимов (Список и Сетка) */
.product-list > div, 
.product-grid > div {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    z-index: 1;
    will-change: transform, box-shadow;
}

/* 2. Эффект НЕОНА (активируется и при скролле, и при наведении мышкой) */
.product-list > div.neon-active, 
.product-grid > div.neon-active,
.product-list > div:hover, 
.product-grid > div:hover {
    border-color: rgba(209, 0, 20, 0.8) !important; /* Цвет твоей цены */
    box-shadow: 0 0 20px rgba(209, 0, 20, 0.5), 0 0 40px rgba(209, 0, 20, 0.2) !important;
    transform: translateY(-3px) scale(1.02) !important; /* Приподнимаем карточку */
    background: #fff !important;
    z-index: 99 !important;
}

/* 3. Подсветка названия внутри активной карточки */
.product-list > div.neon-active .name a,
.product-grid > div.neon-active .name a,
.product-list > div:hover .name a,
.product-grid > div:hover .name a {
    color: #d10014 !important;
    transition: color 0.3s ease;
}


