@charset "UTF-8";
:root {
  --primary-color: #3498db;
  --success-color: #2ecc71;
  --danger-color: #e74c3c;
  --border-radius: 4px;
  --transition: all 0.2s ease;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

/* Убирает отступы у списков в Safari */
ul, ol {
  margin: 0;
  padding: 0;
  list-style-position: inside;
}

/* Корректное отображение изображений */
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.img--left,.img--right{margin-bottom:16px;max-width:100%;display:block}
.img--max{width:100%;height:auto}
*,
:after,
:before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
	height: 100%;
	overflow-x: hidden;
	font-family: 'Open Sans', sans-serif;
	font-size: 15px;
}

/* Sticky footer layout */
.wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.content { flex: 1; }
footer { flex: 0 0 auto; background: #333; color: white; padding: 40px 0; text-align: center; }

@font-face {
  font-family: 'Roboto';
  src: url('../font/Roboto-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'Open Sans';
  src: url('../font/OpenSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

.h1+*,.h2+*,.h3+*,.h4+*,.h5+*,.h6+*,.img-left+*,.img-right+*,.media+*,.message+*,address+*,caption+*,dd+*,dl+*,dt+*,figcaption+*,figure+*,h1+*,h2+*,h3+*,h4+*,h5+*,h6+*,hr+*,li+*,ol+*,p+*,pre+*,table+*,ul+*{margin-top:1rem}
.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{padding:0;font-weight: 600;font-family: 'Roboto', sans-serif;line-height:1.4;position:relative}
.h1,h1{font-size:2em}
.h2,h2{font-size:1.75em}
.h3,h3{font-size:1.5em}
.h4,h4{font-size:1.25em}
.h5,h5{font-size:1em}
.h6,h6{font-size:.75em}
p {
    margin-top: 0;
    margin-bottom: 1rem;
	line-height: 1.6;
}
small{font-size:.75em}
sub,sup{height:0;line-height:0;vertical-align:baseline;position:relative;font-size:80%}
sup{top:-5px}
sub{bottom:-5px}
pre{padding:0;display:table;table-layout:fixed;width:100%}
pre code{padding:20px;overflow:auto;width:100%}
code{margin:0;padding:0 3px;font-family:Consolas,Courier,monospace;font-size:12px;text-align:left;color:#f1f1f1;display:inline-block;vertical-align:middle;background-color:#111;border:1px solid #111;border-radius:3px;overflow:hidden;white-space:pre}
abbr[data-original-title],abbr[title]{border-bottom:1px dotted #999;cursor:help}
address{margin:26px 0;padding:0;display:block;font-style:normal;line-height:20px}
hr{margin: 20px 0;padding:0;border:0;border-top:1px solid #d6d6d6;height:1px;width:100%;display:block}
.txt-left{text-align:left}
.txt-right{text-align:right}
.txt-center{text-align:center}
/* Spacing utilities */
.mt-0 { margin-top: 0 !important; }
.mb-1 { margin-bottom: 1rem !important; }
.px-2 { padding-left: 2rem !important; padding-right: 2rem !important; }

/* Display */
.hidden { display: none !important; }
.visible { display: block !important; }

/* Flex utilities */
.flex-column { flex-direction: column; }
.align-start { align-items: flex-start; }
/* Message color */
.message{padding:.56em .8em;color:#fff;background-color:#26343e;border-radius:3px;width:100%;position:relative;box-sizing:border-box;-webkit-box-sizing:border-box;-moz-box-sizing:border-box}
.message-positive{background-color:#29b765}
+.message--positive { background-color: #29b765; }
.message-info{background-color:#3498db}
.message-warning{background-color:#ffc82c;color:#444}
+.message--warning { background-color: #ffc82c; }
.message-negative{background-color:#e74c3c}

/* ========== ТАБЛИЦЫ ========== */
.table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: white;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.table th {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  text-align: left;
  padding: 1rem;
  background-color: #f8f9fa;
  border-bottom: 2px solid #dee2e6;
}

.table td {
  padding: 1rem;
  border-bottom: 1px solid #dee2e6;
  vertical-align: top;
}

/* Чередование строк */
.table--stripes tr:nth-child(even) {
  background-color: #f8f9fa;
}

/* Ховер эффект */
.table tr:hover {
  background-color: #f1f3f5;
}


/* Особые стили для кнопок в таблице */
.table .actions {
  white-space: nowrap;
}

.table .btn--small {
  margin: 2px;
  padding: 4px 8px;
}

/* Container */
.container-fluid { width: 100%; padding: 0 20px; }
.container { width: 100%; max-width: 1440px; padding: 0 20px; margin: 0 auto; }


    /* Grid system */
    .row {
      display: flex;
      flex-wrap: wrap;
      margin-left: -10px;
      margin-right: -10px;
	  margin-top: 20px;
    }
    [class^="col-"] {
      padding-left: 10px;
      padding-right: 10px;
    }
    .col-1 { flex: 0 0 8.3333%; max-width: 8.3333%; }
    .col-2 { flex: 0 0 16.6667%; max-width: 16.6667%; }
    .col-3 { flex: 0 0 25%; max-width: 25%; }
    .col-4 { flex: 0 0 33.3333%; max-width: 33.3333%; }
    .col-5 { flex: 0 0 41.6667%; max-width: 41.6667%; }
    .col-6 { flex: 0 0 50%; max-width: 50%; }
    .col-7 { flex: 0 0 58.3333%; max-width: 58.3333%; }
    .col-8 { flex: 0 0 66.6667%; max-width: 66.6667%; }
    .col-9 { flex: 0 0 75%; max-width: 75%; }
    .col-10 { flex: 0 0 83.3333%; max-width: 83.3333%; }
    .col-11 { flex: 0 0 91.6667%; max-width: 91.6667%; }
    .col-12 { flex: 0 0 100%; max-width: 100%; }
    .col-auto { flex: 1 1 auto; width: auto; }

    /* Offset */
    .offset-1 { margin-left: 8.3333%; }
    .offset-2 { margin-left: 16.6667%; }
    .offset-3 { margin-left: 25%; }
    .offset-4 { margin-left: 33.3333%; }
    .offset-5 { margin-left: 41.6667%; }
    .offset-6 { margin-left: 50%; }
    .offset-7 { margin-left: 58.3333%; }
    .offset-8 { margin-left: 66.6667%; }
    .offset-9 { margin-left: 75%; }
    .offset-10 { margin-left: 83.3333%; }
    .offset-11 { margin-left: 91.6667%; }

    /* Alignment */
    .row-align-left { justify-content: flex-start; }
    .row-align-center { justify-content: center; }
    .row-align-right { justify-content: flex-end; }

    /* Ordering */
    .order-first { order: -1; }
    .order-last { order: 999; }
    .order-0 { order: 0; }
    .order-1 { order: 1; }
    .order-2 { order: 2; }
    .order-3 { order: 3; }
/* Columns */
.columns {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.column {
  width: 100%;
  padding: 20px 0;
  border-right: 1px solid #e5e5e5;
}

.columns .column {
	padding: 20px;
	margin: 0;
}

.column:first-child {
  border-top-color: transparent;
}

/* ========== INLINE ELEMENTS (адаптировано из Amazium) ========== */
.has-inline-elements {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.inline-child--grid-1 { flex: 0 0 calc(10% - 10px); width: calc(10% - 10px); }
.inline-child--grid-2 { flex: 0 0 calc(20% - 10px); width: calc(20% - 10px); }
.inline-child--grid-3 { flex: 0 0 calc(30% - 10px); width: calc(30% - 10px); }
.inline-child--grid-4 { flex: 0 0 calc(40% - 10px); width: calc(40% - 10px); }
.inline-child--grid-5 { flex: 0 0 calc(50% - 10px); width: calc(50% - 10px); }
.inline-child--grid-6 { flex: 0 0 calc(60% - 10px); width: calc(60% - 10px); }
.inline-child--grid-7 { flex: 0 0 calc(70% - 10px); width: calc(70% - 10px); }
.inline-child--grid-8 { flex: 0 0 calc(80% - 10px); width: calc(80% - 10px); }
.inline-child--grid-9 { flex: 0 0 calc(90% - 10px); width: calc(90% - 10px); }

/* Для элементов формы внутри inline-child */
.inline-child--grid-1 input,
.inline-child--grid-2 input,
.inline-child--grid-3 select { 
  width: 100%;
  height: 38px; /* Совпадает с высотой кнопок */
}

.product-characteristics {
/*  max-width: 800px; */
  margin: 0 auto;
  font-family: sans-serif;
  font-size: 14px;
  padding: 10px;
}

.product-characteristic {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
  border-bottom: 1px solid #eee;
  padding-bottom: 6px;
}

.label {
  flex: 0 0 30%;
  font-weight: bold;
  color: #333;
  padding-right: 10px;
}

.value {
  flex: 0 0 70%;
  color: #555;
}
/* 16-9 */
.sixteen-nine {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    margin-bottom: 1rem;
}

.sixteen-nine .content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.sixteen-nine img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.sixteen-nine:hover img {
    transform: scale(1.03);
}

.material-item {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.material-item h3 {
    margin: 0.5rem 0;
    flex-grow: 1;
}

/* ========== TABS (Равномерное распределение) ========== */
.tabs {
  margin-bottom: 2rem;
}

/* Навигация */
.tabs-nav {
  display: flex;
  width: 100%;
  border-bottom: 2px solid #eee;
}

.tabs-nav__item {
  flex: 1 1 0; /* Ключевое свойство для равной ширины */
  min-width: 100px; /* Минимальная ширина элемента */
  padding: 12px 10px;
  border: none;
  background: none;
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  color: #666;
  text-align: center;
  position: relative;
  transition: var(--transition);
  border-right: 1px solid #eee; /* Разделитель между табами */
}

.tabs-nav__item:last-child {
  border-right: none; /* Убираем разделитель у последнего элемента */
}

/* Активный таб */
.tabs-nav__item.active {
  color: var(--primary-color);
  background-color: #f8f9fa;
}

.tabs-nav__item.active:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
}

/* Контент */
.tabs-pane {
  display: none;
  padding: 20px;
  background: #fff;
  border: 1px solid #eee;
  border-top: none;
}

.tabs-pane.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ========== МЕДИАЗАПРОСЫ ========== */
/* Правильный порядок: от большего к меньшему */

@media (min-width: 1440px) {
      .container { max-width: 1440px; }
}

@media (min-width: 1220px) and (max-width: 1439px) {
      .container { max-width: 1220px; }
}

@media (min-width: 1024px) and (max-width: 1219px) {
      .container { max-width: 1024px; }
}

/* Desktop ≥ 1024px: 3 колонки */
@media (min-width: 1024px) {
  .columns-2-desktop .column {
    width: 50%;
  }
  .columns-2-desktop .column:nth-child(2n+1) {
    padding-left: 0;
  }
  .columns-2-desktop .column:nth-child(2n+2) {
    padding-right: 0;
    border-right-color: transparent;
  }
  .columns-2-desktop .column:nth-child(-n+2) {
    border-top-color: transparent;
  }

  .columns-3-desktop .column {
    width: 33.3333%;
  }
  .columns-3-desktop .column:nth-child(3n+1) {
    padding-left: 0;
  }
  .columns-3-desktop .column:nth-child(3n+3) {
    padding-right: 0;
    border-right-color: transparent;
  }
  .columns-3-desktop .column:nth-child(-n+3) {
    border-top-color: transparent;
  }

  .columns-4-desktop .column {
    width: 25%;
  }
  .columns-4-desktop .column:nth-child(4n+1) {
    padding-left: 0;
  }
  .columns-4-desktop .column:nth-child(4n+4) {
    padding-right: 0;
    border-right-color: transparent;
  }
  .columns-4-desktop .column:nth-child(-n+4) {
    border-top-color: transparent;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
      .container { max-width: 100%; }
	  
  .columns-2-tablet .column {
    width: 50%;
  }
  .columns-2-tablet .column:nth-child(2n+1) {
    padding-left: 0;
  }
  .columns-2-tablet .column:nth-child(2n+2) {
    padding-right: 0;
    border-right-color: transparent;
  }
  .columns-2-tablet .column:nth-child(-n+2) {
    border-top-color: transparent;
  }

  .columns-3-tablet .column {
    width: 33.3333%;
  }
  .columns-3-tablet .column:nth-child(3n+1) {
    padding-left: 0;
  }
  .columns-3-tablet .column:nth-child(3n+3) {
    padding-right: 0;
    border-right-color: transparent;
  }
  .columns-3-tablet .column:nth-child(-n+3) {
    border-top-color: transparent;
  }
  
  .tabs-nav {
    flex-wrap: wrap;
  }
  
  .tabs-nav__item {
    flex: 1 1 50%; /* 2 таба в ряд на узких экранах */
    min-width: auto;
    border-right: none;
    border-bottom: 1px solid #eee;
  }
	  
}

    /* Responsive */
@media (max-width: 767px) {
.row { flex-direction: column; }
[class^="col-"] { max-width: 100%; flex: 0 0 100%; }
.col-mobile-12 { flex: 0 0 100% !important; }
.column { padding: 20px 2%; }
	
.labels--inline label {
text-align: left;
margin-bottom: 0.5rem;
}

.select:after {
right: 8px;
}

select {
padding: 0.65rem;
}

  .has-inline-elements {
    flex-direction: column;
    align-items: stretch;
  }
  
  [class^="inline-child--grid"] {
    flex: 1 1 100% !important;
    width: 100% !important;
  }
  
  .table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .table td:last-child,
  .table th:last-child {
    border-right: none;
  }
/* Адаптив: на узких экранах — в колонку */
  .label, .value {
    flex: 0 0 100%;
    padding-right: 0;
  }

  .label {
    margin-bottom: 2px;
  }
}

@media print {
  .no-print { display: none !important; }
  body { font-size: 12pt; }
  .content-box { box-shadow: none; }
}

/* ========== Кнопки и группы кнопок ========== */

.v-center {
  display: flex;
  align-items: center;
}

/* === Базовый стиль для кнопок === */
button,
.btn {
  display: inline-flex; /* Изменил на inline-flex для лучшего выравнивания */
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  height: 36px; /* Добавил базовую высоту */
  font-size: 0.9rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  border-radius: 4px;
  background-color: #3498db;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  box-sizing: border-box; /* Важно для корректного расчета размеров */
}

/* === Hover / Focus === */
button:hover,
.btn:hover,
button:focus,
.btn:focus {
  background-color: #464646;
  outline: none;
}

/* === Disabled === */
button:disabled,
.btn:disabled {
  background-color: #ccc;
  border-color: #ccc;
  color: #666;
  cursor: not-allowed;
}

/* === Модификаторы цвета === */

.btn--positive {
  background-color: #2ecc71;
  border-color: #2ecc71;
}

.btn--positive:hover {
  background-color: #27ae60;
}

.btn--info {
  background-color: #3498db;
  border-color: #3498db;
}
.btn--info:hover {
  background-color: #2980b9;
  border-color: #2980b9;
}

.btn--success {
  background-color: #2ecc71;
  border-color: #2ecc71;
}
.btn--success:hover {
  background-color: #27ae60;
  border-color: #27ae60;
}

.btn--warning {
  background-color: #f39c12;
  border-color: #f39c12;
}
.btn--warning:hover {
  background-color: #d35400;
  border-color: #d35400;
}

.btn--danger {
  background-color: #e74c3c;
  border-color: #e74c3c;
}
.btn--danger:hover {
  background-color: #c0392b;
  border-color: #c0392b;
}

/* === Размеры кнопок === */
/* === Размеры кнопок === */
.btn--small {
  padding: 4px 10px; /* Уменьшил отступы */
  height: 28px; /* Явно задал высоту */
  font-size: 0.8rem;
}

.btn--large {
  padding: 12px 24px;
  height: 48px; /* Явно задал высоту */
  font-size: 1rem;
}

/* Круглая кнопка (базовый стиль) */
.btn--circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Размеры */
.btn--circle.btn--small {
  width: 36px;
  height: 36px;
}

.btn--circle.btn--large {
  width: 56px;
  height: 56px;
}

.btn--width-100{width:100%}
.btn--width-50{width:50%}

/* Стиль иконки внутри */
.btn--circle .icon {
  font-size: 1.25rem;
  line-height: 1;
}

/* Вариации цветов (используем вашу палитру) */
.btn--circle.btn--info {
  background-color: #34b1da;
}
.btn--circle.btn--info:hover {
  background-color: #2496bc;
}

.btn--circle.btn--success {
  background-color: #2ecc71;
}
.btn--circle.btn--success:hover {
  background-color: #27ae60;
}

/* Анимация нажатия */
.btn--circle:active {
  transform: scale(0.95);
  transition: transform 0.1s ease;
}

/* Для Font Awesome или аналогичных иконок */
.btn--circle .fa,
.btn--circle .material-icons {
  display: block;
}

/* Для поисковой кнопки */
.search-button {
  height: 38px; /* Оставил как было */
  padding: 0 14px;
}

/* === Расширение на всю ширину === */
.btn--block {
  display: block;
  width: 100%;
}

/* === Группы кнопок === */
.btn-group {
  display: flex;
  gap: 10px;
}
.btn-group-right {
    display: flex; /* Устанавливаем flexbox */
    justify-content: flex-end; /* Выровнять элементы по правому краю */
    gap: 10px; /* Задаем расстояние между кнопками */
}
.btn-group-full {
  display: flex;
  gap: 10px;
}
.btn-group-full .btn {
  flex: 1 1 auto;
}

/* === Стили для поиска === */
.search-container {
  display: flex;
  gap: 10px;
  align-items: center;
}

.search-field {
  flex: 1;
  padding: 0 10px;
  height: 38px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}
/* ========== ФОРМЫ ========== */

fieldset {
  border: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

label {
  display: block;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"] {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d6d6d6;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #3498db;
  outline: none;
  box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

/* Стили для селекта из Amazium */
.select {
  position: relative;
  display: block;
  width: 100%;
}

.select:after {
  content: '';
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #666;
  pointer-events: none;
}

select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d6d6d6;
  border-radius: 4px;
  appearance: none;
  background-color: white;
}

textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d6d6d6;
  border-radius: 4px;
  min-height: 100px;
  resize: vertical;
}

/* Состояния ошибок (добавить после базовых стилей) */
.invalid input,
.invalid select,
.invalid textarea {
  border-color: #e74c3c;
}
/* Checkboxes/Radio (адаптация из Amazium) */
input[type="checkbox"],
input[type="radio"] {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  vertical-align: middle;
}

/* Валидация */
input:invalid,
select:invalid,
textarea:invalid {
  border-color: var(--danger-color);
  box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
}

.invalid .message {
  background-color: #e74c3c;
  color: white;
  padding: 0.5rem;
  margin-top: 0.5rem;
  border-radius: 4px;
}

    /* Content box */
    .content-box {
      border: 1px solid #ccc;
	  box-shadow: 0 4px 16px rgba(128, 128, 128, 0.5);
      padding: 20px;
      margin-bottom: 20px;
    }
	.content-box > h1 {
	padding: 20px 0;
    color: #34b1da;
    }
    /* Demo box */
    .demo-box {
      background: #f0f0f0;
      border: 1px solid #ccc;
      padding: 20px;
      text-align: center;
      margin-bottom: 20px;
    }
	
	/* Colors */
	.color-bg-info {
    background-color: #34b1da;
	}
	.color-bg-infoDark {
    background-color: #3498DB;
	}
	.color-bg-Grey {
    background-color: #f2f2f2;
	}