
.cnum0 {
    display: none !important;
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 300 800;
    font-display: swap;
    src: url('fonts/open-sans/OpenSans-Cyrillic.woff2') format('woff2');
}

/* Скрытый блок «Показать» (лимит) в категориях и поиске */
.product-limit-block {
    display: none !important;
}

/* Добавляем в конец style в filter.twig или в общий CSS */
@media (max-width: 767px) {
  .col-module {
    display: block !important;
  }
}

.model-tile__view img {
    width: 180px; /* Фиксированная ширина */
    height: 90px; /* Фиксированная высота */
    object-fit: cover; /* Сохраняет пропорции и обрезает изображение, если оно не соответствует размеру */
}

/* Изображение модели в category-model-image-block: строго 180×90 */
.category-model-image-block img {
    width: 180px;
    height: 90px;
    object-fit: cover;
}

.ask-us {
    color: #007bff;
    text-decoration: underline;
    cursor: pointer;
}
.ask-us:hover {
    color: #0056b3;
}
/* Обёртка для иконки износа */
.wearout-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-left: 10px;
}

/* Стили для иконки износа */
.wearout-icon {
    color: #e74c3c; /* Красный цвет для привлечения внимания */
    font-size: 16px;
    cursor: pointer;
    animation: pulse 2s infinite; /* Пульсация */
}

/* Анимация пульсации */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Стили для всплывающей подсказки */
.wearout-icon-wrapper .tooltip {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 1000;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Показываем подсказку при наведении */
.wearout-icon-wrapper:hover .tooltip {
    visibility: visible;
    opacity: 1;
}

/* Треугольник для подсказки */
.wearout-icon-wrapper .tooltip::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px 5px 0;
    border-style: solid;
    border-color: #333 transparent transparent;
}

/* Иконка руля в карточке товара (group-rad): левый — светло-серый, правый — чёрный */
.product-card-steering-icon {
    font-size: 16px;
    color: #555;
    cursor: help;
}
.product-card-steering-icon.fa-arrow-left {
    color: #aaa;
}

/* Стили для блока совместимости */
.product-compatibility {
    margin-top: 20px;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #f5f5f5;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Стили для заголовка блока совместимости */
.product-compatibility h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2c3e50;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

/* Стили для текста совместимости */
.product-compatibility p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Стили для списка совместимости (если используется ul/li) */
.product-compatibility ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0;
}

.product-compatibility li {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 5px;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 767px) {
    .product-compatibility {
        padding: 10px;
        margin-top: 15px;
    }

    .product-compatibility h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .product-compatibility p,
    .product-compatibility li {
        font-size: 13px;
    }
}
.bundle-info-popup {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 30px;
    right: 0;
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    width: 250px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 4px;
}

.bundle-info-popup strong {
    font-weight: bold;
}

.group-rad {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 15px; /* Увеличиваем расстояние между иконками */
}

/* Карточка товара: 2 строки по 3 иконки в ряду */
.product .name-block .group-rad {
    display: grid;
    grid-template-columns: repeat(3, 27px);
    gap: 8px;
    justify-content: center;
}

.product .name-block .group-rad .wearout-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 27px;
    height: 27px;
    margin-left: 0;
}

.group-rad .rad-btn {
    cursor: pointer;
}

.contact-popup {
    visibility: hidden;
    opacity: 0;
    pointer-events: none; /* Не перехватывать клики когда скрыт */
    position: absolute;
    top: 100%; /* Позиционирование прямо под кнопкой */
    right: 0; /* Прижимаем к правой стороне */
    background: #2c3e50;
    color: white;
    padding: 10px;
    border-radius: 4px;
    z-index: 1000;
    white-space: nowrap;
}

.contact-popup a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 5px 10px;
    transition: all 0.2s ease;
}

.contact-popup a:hover {
    background: #34495e;
}
/* Вид "Список": отступ от колонки с фильтром (при листовой категории) */
.row-c.product-view-list,
#content.product-view-list .row-c {
    padding-left: 20px;
    padding-right: 20px;
}
/* Выравнивание хлебных крошек, H1 и «Б/у запчасти» по левому краю голубой линии над товарами */
#content.product-view-list .category-header-block {
    padding-left: 5px;
    padding-right: 20px;
}
@media (min-width: 768px) {
    .row-flex.has-products #content.product-view-list {
        padding-left: 24px;
    }
}
/* Стили для вида "Список" */
.product-list .product-thumb {
    padding: 15px 0;
    margin-bottom: 0;
    margin-right: 0;
    width: 100% !important;
    border: none;
    border-bottom: 1px solid #F8F8F8 !important;
}

.product-list .product-layout:last-child .product-thumb {
    border-bottom: none !important;
}

.product-list .product-list-inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

/* Верхняя строка: артикул производителя, название (с переносом слов), иконки и артикул поставщика — иконки всегда на своём месте */
.product-list .product-list-top-line {
    display: flex;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 12px;
    width: 100%;
    min-width: 0;
    background-color: #f5f5f5;
    padding: 8px 10px;
    border-radius: 2px;
}
.product-list .product-list-mpn-block {
    flex: 0 0 115px;
    width: 115px;
    min-width: 115px;
}
.product-list .product-list-top-line .product-list-title {
    flex: 1 1 auto;
    min-width: 0;
    margin: 0;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.35;
    white-space: normal;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}
.product-list .product-list-top-line .product-list-title a {
    white-space: normal;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}
.product-list .product-list-top-line .product-list-meta-above {
    flex: 0 0 auto;
    flex-shrink: 0;
    min-width: 0;
}

/* Нижняя строка: изображение, срок/кол-во/цена, кнопки */
.product-list .product-list-bottom-row {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    flex-wrap: nowrap;
}

.product-list .product-list-image {
    flex: 0 0 auto;
    width: 120px;
    min-width: 120px;
    position: relative;
}

.product-list .product-list-image .image {
    margin: 0;
    overflow: hidden;
    display: block;
}

/* В поиске: иконка фотоаппарата вместо изображения — только для новых товаров (search-section-new) */
.search-section-new .product-list-image-icon .image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
}
.search-section-new .product-list-image-icon .image .fa-camera {
    font-size: 18px;
    color: #999;
}
@media (max-width: 767px) {
    .search-section-new .product-list-image-icon .image .fa-camera {
        font-size: 16px;
    }
}

/* Поиск: стоимость прижата к избранному и корзине с интервалом — только б/у и новые */
.page-product-search .search-section-new .product-list-supplier .product-list-bottom-row,
.page-product-search .search-section-used .product-list-supplier .product-list-bottom-row {
    gap: 12px;
}
.page-product-search .search-section-new .product-list-supplier .product-list-delivery-row,
.page-product-search .search-section-used .product-list-supplier .product-list-delivery-row {
    flex: 1;
    min-width: 0;
}
.page-product-search .search-section-new .product-list-supplier .product-list-delivery-row .product-list-price,
.page-product-search .search-section-new .product-list-supplier .product-list-delivery-row .price,
.page-product-search .search-section-used .product-list-supplier .product-list-delivery-row .product-list-price,
.page-product-search .search-section-used .product-list-supplier .product-list-delivery-row .price {
    margin-left: auto;
}

.product-list .product-list-image .image img {
    width: 100%;
    height: auto;
    max-height: 90px;
    object-fit: contain;
    transition: transform 0.25s ease;
}

.product-list .product-list-image .image:hover img {
    transform: scale(1.1);
}

.product-list .product-list-image .sale {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.product-list .product-list-image .bundle-label,
.product-list .product-list-image .contained-label,
.product-list .product-list-image .bundle-badge,
.product-list .product-list-image .contained-badge {
    position: absolute;
    top: 0;
    left: 0;
    width: 64px;
    height: 24px;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: normal;
    color: #3498db;
    background-color: #ffffff;
    border: 1px solid #3498db;
    border-radius: 0;
    z-index: 2;
    box-sizing: border-box;
}

.product-list .product-list-caption {
    flex: 1 1 auto;
    min-width: 0;
    margin-left: 0 !important;
    color: #333;
}

.product-list .product-list-caption .product-mpn,
.product-list .product-list-caption .product-sku,
.product-list .product-list-caption .product-comment,
.product-list .product-list-caption .product-wearout,
.product-list .product-list-caption .product-quantity {
    color: #333;
    font-size: 13px;
    margin: 2px 0;
}

.product-list .product-list-caption .product-mpn .label,
.product-list .product-list-caption .product-sku .label,
.product-list .product-list-caption .product-wearout .label,
.product-list .product-list-caption .product-quantity .label {
    color: #555;
}

.product-list .product-list-caption h4 {
    margin: 0 0 5px 0;
    font-size: 14px;
    font-weight: normal;
    white-space: normal;
    overflow: visible;
}

.product-list .product-list-caption .price {
    margin: 5px 0 0 0;
    font-weight: 700;
}

.product-list .product-list-caption .des-block {
    margin-top: 5px;
    font-size: 12px;
    color: #666;
}

.product-list .product-thumb .rating {
    position: static;
    margin: 3px 0;
}

/* Над блоком корзины: износ (иконка) и артикул № (как у поставщика) */
.product-list .product-list-right-meta {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    margin-left: auto;
    flex-shrink: 0;
}
.product-list .product-list-meta-above {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}
.product-list .product-list-wear-icon {
    font-size: 14px;
    cursor: help;
}
.product-list .product-list-wear-icon.wear-low {
    color: #278EFF;
}
.product-list .product-list-wear-icon.wear-mid {
    color: #f0ad4e;
}
.product-list .product-list-wear-icon.wear-high {
    color: #d9534f;
}
.product-list .product-list-sku-num {
    color: #1dace8;
    font-size: 11px;
}
.product-list a.product-list-sku-num {
    text-decoration: none;
}
.product-list a.product-list-sku-num:hover {
    text-decoration: underline;
}

.product-list .product-list-bottom-row .product-list-caption {
    flex: 1 1 auto;
    min-width: 0;
}
.product-list .product-list-bottom-row .product-list-actions {
    margin-left: auto;
}
.product-list .product-list-actions {
    flex: 0 0 auto;
    display: flex !important;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.product-list .product-list-actions i {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #333;
}

.product-list .product-list-actions i:hover {
    color: #337ab7;
}

.product-list .product-list-actions i.m-cart {
    color: #fafafa !important;
}

.product-list .product-list-actions .m-cart {
    padding: 8px 14px;
    background: black;
    color: #fafafa !important;
    border-radius: 4px;
}

.product-list .product-list-actions .m-cart:hover {
    background: #333;
    color: #fafafa !important;
}

.product-list .product-list-actions .m-cart.no-stock {
    background: #ccc;
    color: #fafafa !important;
    cursor: not-allowed;
}

/* Разделитель между товарами: синяя полоса 1px сверху у каждого product-thumb, как у поставщика */
.product-list.product-list-item .product-thumb {
    border-top: 1px solid #278EFF;
}

/* Одна строка как у поставщика: срок поставки, количество, стоимость */
.product-list .product-list-delivery-row {
    display: flex;
    align-items: baseline;
    gap: 10px 16px;
    flex-wrap: nowrap;
    margin: 4px 0 0 0;
    line-height: 1.4;
}
.product-list .product-list-delivery-days {
    font-size: 13px;
    color: #333;
    white-space: nowrap;
}
.product-list .product-list-quantity {
    font-size: 13px;
    color: #333;
    white-space: nowrap;
}
.product-list .product-list-delivery-row .product-list-price,
.product-list .product-list-delivery-row .price {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    color: #333;
    white-space: nowrap;
}
.product-list .product-list-delivery-row .price-tax {
    font-size: 12px;
    font-weight: normal;
    color: #666;
}

/* Вид как у поставщика: иконки без подписи, корзина — синяя кнопка */
.product-list-actions-supplier .product-list-action-label {
    display: none;
}
.product-list-actions-supplier {
    gap: 8px;
}
.product-list-actions-supplier .product-list-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    padding: 0;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    color: #555;
    background: #f0f0f0;
}
.product-list-actions-supplier .product-list-action-btn:hover {
    background: #e0e0e0;
    color: #333;
}
.product-list-actions-supplier .product-list-action-cart {
    background: #278EFF !important;
    color: #fff !important;
    width: 35px;
    height: 30px;
    min-width: 35px;
}
.product-list-actions-supplier .product-list-action-cart:hover {
    background: #1a7ae6 !important;
    color: #fff !important;
}
.product-list-actions-supplier .product-list-action-cart .fa-shopping-cart,
.product-list-actions-supplier .product-list-action-cart .picon,
.product-list-actions-supplier .product-list-action-cart .all-icon {
    color: #fff !important;
    font-size: 16px;
}
.product-list-actions-supplier .product-list-action-cart.no-stock {
    background: #ccc !important;
    cursor: not-allowed;
}
.product-list-actions-supplier .product-list-action-cart.no-stock .fa-shopping-cart {
    color: #fff !important;
}

/* Артикул производителя и бренд над изображением */
.product-list .product-mpn-above {
    padding: 0 0 4px 0;
    font-size: 12px;
    color: #333;
    line-height: 1.3;
    margin-bottom: 2px;
}
.product-list .product-mpn-above .product-mpn-link,
.product-list .product-mpn-above .product-mpn-text {
    display: block;
}
.product-list .product-mpn-link {
    color: #337ab7;
    text-decoration: none;
}
.product-list .product-mpn-link:hover {
    text-decoration: underline;
}
.product-list .product-brand {
    display: block;
    color: #999999;
    font-weight: normal;
    margin-top: 2px;
}

/* Иконки для Комплект и Элемент в виде списка */
.product-list .product-list-image {
    position: relative;
}
.product-list .bundle-badge,
.product-list .contained-badge {
    position: absolute;
    top: 0;
    left: 0;
    width: 64px;
    height: 24px;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: normal;
    color: #3498db;
    background-color: #ffffff;
    border: 1px solid #3498db;
    border-radius: 0;
    z-index: 2;
    box-sizing: border-box;
}

/* Иконка руль: левый (fa-arrow-left) — светло-серый, правый (fa-arrow-right) — чёрный */
.product-list .product-list-steering-icon {
    font-size: 14px;
    color: #555;
    cursor: help;
}
.product-list .product-list-steering-icon.fa-arrow-left {
    color: #aaa;
}
.product-list .right-hand-icon {
    font-size: 14px;
    color: #337ab7;
    margin-left: 4px;
    cursor: help;
}

/* Скрываем ненужные элементы в списке */
.product-list .more-point,
.product-list .info-block {
    display: none;
}

/* Адаптив для списка на мобильных */
@media (max-width: 767px) {
    .product-list .product-list-inner {
        flex-wrap: wrap;
    }
    /* Верхняя строка: артикул производителя слева, иконки (руль, износ, комплектность) и артикул поставщика справа на одной строке; название — на следующей */
    .product-list .product-list-top-line {
        flex-wrap: wrap;
        gap: 8px 12px;
    }
    .product-list .product-list-top-line .product-list-mpn-block {
        order: 1;
        flex: 0 0 auto;
    }
    .product-list .product-list-top-line .product-list-meta-above {
        order: 2;
        flex: 0 0 auto;
        margin-left: auto;
        margin-top: 0;
        padding-top: 0;
        border-top: none;
    }
    .product-list .product-list-top-line .product-list-title {
        order: 3;
        flex: 1 1 100%;
        width: 100%;
        min-width: 0;
    }
    .product-list .product-list-image {
        width: 80px;
        min-width: 80px;
    }
    /* Нижняя строка: изображение, срок/кол-во/цена и кнопки в одной линии на мобильных */
    .product-list .product-list-bottom-row {
        flex-wrap: nowrap;
        gap: 8px;
    }
    .product-list .product-list-bottom-row .product-list-image {
        order: 0;
    }
    .product-list .product-list-bottom-row .product-list-caption {
        order: 1;
        min-width: 0;
        flex: 1 1 auto;
        padding-right: 90px; /* Отступ под кнопки избранное + корзина, чтобы не накладывались на цену */
    }
    .product-list .product-list-bottom-row .product-list-actions {
        order: 2;
        flex: 0 0 auto;
        margin-left: auto;
        margin-top: 0;
        padding-top: 0;
        border-top: none;
        justify-content: flex-end;
        flex-wrap: nowrap;
    }
    /* Б/у в категориях: избранное над корзиной, корзина прижата к низу изображения */
    .page-product-category .product-list-supplier .product-list-bottom-row {
        align-items: flex-end;
    }
    .page-product-category .product-list-supplier .product-list-bottom-row .product-list-caption {
        padding-right: 50px; /* Только под одну колонку кнопок */
    }
    .page-product-category .product-list-supplier .product-list-bottom-row .product-list-actions {
        flex-direction: column;
        align-items: center;
        gap: 6px;
        justify-content: flex-end;
    }
}

/* Компактный вид новых товаров (категории и поиск): строка1 артикул+иконка+наименование, строка2 бренд+срок+кол-во+цена+кнопки */
.product-compact-new {
    display: grid;
    grid-template-columns: 115px 36px 1fr;
    grid-template-rows: auto auto;
    gap: 2px 12px;
    padding: 6px 0 6px 10px;
    background: #f8f8f8;
    border-bottom: 1px solid #e8e8e8;
    align-items: center;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}
/* Поиск: строчный вид новых товаров — артикул бренд | иконка камеры наименование | срок кол-во цена иконки */
.page-product-search .search-section-new .product-compact-new-inline {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 12px;
}
.page-product-search .search-section-new .product-compact-new-inline .product-compact-mpn-brand {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex-shrink: 0;
    min-width: 0;
    max-width: 140px;
}
.page-product-search .search-section-new .product-compact-new-inline .product-compact-mpn {
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.page-product-search .search-section-new .product-compact-new-inline .product-compact-mpn a {
    color: #337ab7;
}
.page-product-search .search-section-new .product-compact-new-inline .product-compact-brand {
    font-size: 12px;
    color: #999999;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.page-product-search .search-section-new .product-compact-new-inline .product-compact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 36px;
}
.page-product-search .search-section-new .product-compact-new-inline .product-compact-icon .fa-camera {
    font-size: 18px;
    color: #999;
}
.page-product-search .search-section-new .product-compact-new-inline .product-compact-desc {
    flex: 1;
    min-width: 0;
    font-size: 13px;
    color: #333;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.page-product-search .search-section-new .product-compact-new-inline .product-compact-desc a {
    color: inherit;
}
.page-product-search .search-section-new .product-compact-new-inline .product-compact-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    flex-shrink: 0;
}
.product-compact-new .product-compact-mpn {
    grid-column: 1;
    grid-row: 1;
    font-size: 13px;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.product-compact-new .product-compact-mpn a {
    color: #337ab7;
}
.product-compact-new .product-compact-icon {
    grid-column: 2;
    grid-row: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.product-compact-new .product-compact-icon .fa-camera {
    font-size: 18px;
    color: #999;
}
.product-compact-new .product-compact-desc {
    grid-column: 3;
    grid-row: 1;
    font-size: 13px;
    color: #333;
    min-width: 0;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    padding-right: 90px;
}
.product-compact-new .product-compact-desc a {
    color: inherit;
}
.product-compact-new .product-compact-brand {
    grid-column: 1;
    grid-row: 2;
    font-size: 12px;
    color: #999999;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.product-compact-new .product-compact-meta {
    grid-column: 3;
    grid-row: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    min-width: 0;
    padding-right: 0;
}
.product-compact-new .product-compact-meta .product-compact-qty {
    font-size: 12px;
    color: #666;
    flex-shrink: 0;
}
.product-compact-new .product-compact-meta .product-compact-price {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    flex-shrink: 0;
}
.product-compact-new .product-compact-meta .product-compact-actions {
    position: static;
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
@media (max-width: 767px) {
    .product-compact-new {
        grid-template-columns: minmax(28px, max-content) 1fr;
        grid-template-rows: auto auto auto;
        gap: 6px 8px;
        padding: 8px;
    }
    .product-compact-new .product-compact-mpn {
        grid-column: 1;
        grid-row: 1;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
    }
    .product-compact-new .product-compact-brand {
        grid-column: 2;
        grid-row: 1;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
        text-align: right;
        justify-self: end;
    }
    .product-compact-new .product-compact-icon {
        grid-column: 1;
        grid-row: 2;
        align-self: start;
    }
    .product-compact-new .product-compact-desc {
        grid-column: 2;
        grid-row: 2;
        padding-right: 0;
        word-break: normal;
        overflow-wrap: break-word;
        word-wrap: break-word;
        min-width: 0;
    }
    .product-compact-new .product-compact-meta {
        grid-column: 1 / -1;
        grid-row: 3;
        padding-right: 0;
        flex-wrap: wrap;
    }
    .product-compact-new .product-compact-meta .product-compact-actions {
        position: static;
        transform: none;
        margin-left: auto;
    }
    .product-compact-new .product-compact-icon .fa-camera {
        font-size: 16px;
    }
    .product-compact-new .product-compact-icon:empty {
        display: none;
    }
    .product-compact-new:not(:has(.product-compact-icon a)) .product-compact-desc {
        grid-column: 1 / -1;
    }
    /* Поиск: строчный вид новых товаров на мобильных — допускаем перенос */
    .page-product-search .search-section-new .product-compact-new-inline {
        flex-wrap: wrap;
        gap: 6px 8px;
        padding: 8px;
    }
    .page-product-search .search-section-new .product-compact-new-inline .product-compact-mpn-brand {
        max-width: none;
    }
    .page-product-search .search-section-new .product-compact-new-inline .product-compact-desc {
        white-space: normal;
        flex: 1 1 100%;
        min-width: 0;
    }
    .page-product-search .search-section-new .product-compact-new-inline .product-compact-meta {
        flex: 1 1 100%;
        justify-content: flex-end;
    }
}


.bundle-info-popup {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 30px;
    right: 0;
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    width: 250px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 4px;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.bundle-info-popup strong {
    font-weight: bold;
}

/* Обёртка изображения: метка Комплект/Элемент привязана к левому верхнему углу */
.product-thumb-image-wrap {
    position: relative;
    display: block;
}

/* Стили для ярлычка "Комплект" и "Элемент" на изображении: 64x24, без подсказки при наведении */
.bundle-label,
.contained-label {
    position: absolute;
    top: 0;
    left: 0;
    width: 64px;
    height: 24px;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: normal;
    color: #3498db;
    background-color: #ffffff;
    border: 1px solid #3498db;
    border-radius: 0;
    z-index: 2;
    box-sizing: border-box;
}

/* Иконка Комплект — первая в ряду (руль, износ, артикул), голубая; при наведении показывается длинное сообщение */
.product-list-bundle-icon {
    margin-right: 6px;
    color: #3498db;
    font-size: 14px;
    vertical-align: middle;
    cursor: help;
}

/* Иконка Элемент — жёлтая */
.product-list-contained-icon {
    margin-right: 6px;
    color: #f0ad4e;
    font-size: 14px;
    vertical-align: middle;
    cursor: help;
}

/* Внутренний номер на странице товара */
#sku {
    cursor: pointer;
    color: #2c3e50; /* Элегантный темно-серый */
    transition: color 0.3s ease-in-out;
    position: relative;
}

#sku:hover {
    color: #3498db; /* Нежный голубой (luxury) */
}

.tooltip {
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    text-align: center;
    padding: 5px 10px;
    border-radius: 5px;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s;
}

#sku:hover .tooltip {
    visibility: visible;
    opacity: 1;
}


/*чат с оператором*/
.group-rad {
    position: relative;
    display: inline-block;
}

.contact-popup {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 100%; /* Позиционирование прямо под кнопкой */
    left: 50%;
    transform: translateX(-50%);
    background: #2c3e50;
    color: white;
    padding: 10px;
    border-radius: 4px;
    z-index: 1000;
    white-space: nowrap;
}

.contact-popup a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 5px 10px;
    transition: all 0.2s ease;
}

.contact-popup a:hover {
    background: #34495e;
}

/* Hover для родительского контейнера (не для карточки товара — там по клику) */
.group-rad:not(.contact-popup-click-mode):hover .contact-popup {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}
.contact-popup {
    left: auto; /* Отменяем центрирование */
    right: 0;   /* Прижимаем окно к правой стороне кнопки */
    transform: none; /* Убираем трансформацию */
}
/* Анимация плавного мигания износа*/
@keyframes luxuryPulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
    100% { opacity: 1; transform: scale(1); }
}

.blink-luxury {
    animation: luxuryPulse 2s ease-in-out infinite;
    transition: all 0.3s ease;
}
html, body {
overflow-x: hidden;
}
html {
    /* Резервируем место под вертикальный скроллбар на всех страницах */
    overflow-y: scroll;
    scrollbar-gutter: stable;
}
html.mobile {
    overflow: auto;
}
html.open, .open body {
    overflow: hidden;
}
html.mobile .pp-scrollable {
    overflow: hidden !important;
    height: auto !important;
    margin: 0 !important;
    padding-top: 0;
}
body {
    font-family: 'Open Sans', 'Ubuntu', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    width: 100%;
    background: #f9f9f9;
}
.container {
    width: 100%;
    max-width: 1300px;
    padding: 0 40px;
}
.m-bottom {
    padding-bottom: 40px;
}
.content-bottom {
    padding-top: 40px;
}
.spanel .container {
    height: 100%;
} 
#menu.spanel .container {
    height: auto;
}
.flex {
    display: flex;
    align-items: center;
    height: 100%;
}
.inlineb {
    display: inline-block;
    width: auto;
}
.inlineb li {
  vertical-align: middle;  
}
.table {
  display: table;  
  width: 100%;
  height: 100%;
  margin: 0;
}
.table-cell {
   display: table-cell;
   vertical-align: middle;
}
.w65 {
    width: 90%;
    max-width: 350px;
    margin: 0 auto;
    padding-top: 80px;
}
.call-success {
   text-align: center; 
}
.a-success {
    font-size: 26px;
    line-height: 32px;
    font-weight: 900;
}
.a-success i {
    font-size: 52px;
    color: #4CAF50;
    margin-bottom: 15px;
}
h1, h2, h3, h4, h5, h6 {
    color: #000;
    position: relative;
    font-weight: 900;
}
/* default font size */
.fa {
    font-size: 14px;
}


/* Override the bootstrap defaults */

h1 {
    margin: 0 0 30px 0;
    font-weight: 900;
    font-size: 18px;
    text-transform: uppercase;
}
.category-page h1 {
    font-weight: normal;
    text-transform: none;
    font-size: 20px !important;
}

h2 {
    font-size: 27px;
    margin-bottom: 50px;
}
h3,.h3 {
    font-size: 18px;
    margin: 0 0px 40px 0;
    padding-left: 35px;
    font-weight: 600;
    display: inline-block;
    position: relative;
}
h3:after,.h3:after {
    content: "";
    position: absolute;
    width: 15px;
    height: 3px;
    left: 0;
    top: 7px;
    background: #333;
}
h4 {
    font-size: 15px;
}
h5 {
    font-size: 12px;
}
h6 {
    font-size: 10.2px;
}
b.title {
    font-size: 16px;
}
.h2 {
   font-weight: 900;
    font-size: 22px;
    margin: 0 0px 5px 0px;
}
a, a:hover, a:focus {
    color: #000000;
    text-decoration: none !important;
    outline: none;
}
.href {
    border-bottom: 1px solid;
    font-weight: 900;
    color: #006dff;
}
legend {
    padding: 7px 0px;
    font-weight: 900;
    font-size: 13px;
    text-transform: uppercase;
}
label {
    font-size: 12px;
    font-weight: normal;
}
.control-label {
   padding-top: 0 !important;
    text-align: left !important; 
}
select.form-control, textarea.form-control, input[type="text"].form-control, input[type="password"].form-control, input[type="datetime"].form-control, input[type="datetime-local"].form-control, input[type="date"].form-control, input[type="month"].form-control, input[type="time"].form-control, input[type="week"].form-control, input[type="number"].form-control, input[type="email"].form-control, input[type="url"].form-control, input[type="search"].form-control, input[type="tel"].form-control, input[type="color"].form-control {
    font-size: 16px;
}
.input-group input, .input-group select, .input-group .dropdown-menu, .input-group .popover {
    font-size: 12px;
    box-shadow: none !important;
}
.input-group .input-group-addon {
    font-size: 12px;
    height: 30px;
}
input[type='radio'] {
    width: 18px;
    height: 18px;
    display: none;
}
input:-webkit-autofill {
    -webkit-box-shadow: inset 0 0 0 50px #f0f0f0 !important;
}
.has-error input:-webkit-autofill {
    -webkit-box-shadow: inset 0 0 0 50px #f9d3d3 !important;
}
input[type='checkbox'] {
    display:none;
}
.checkbox label, .m-radio label {
    padding: 0px 0 0px 25px !important;
    margin: 0px 10px 0 0;
    position: relative;
    line-height: 16px;
    color: black;
    cursor: pointer;
    vertical-align: middle;
    min-height: 16px;
}
.checkbox label:before,.m-radio label:before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background: #dcdcdc;
}
.checkbox input:checked+label:after,.m-radio input:checked+label:after {
    position: absolute;
    top: 4px;
    left: 4px;
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background: black;
    background-size: contain;
    -webkit-animation: click-wave 0.2s;
    -moz-animation: click-wave 0.2s;
    animation: click-wave 0.2s;
}
a.consent-link,
a.consent-link:visited {
    color: #337ab7;
    text-decoration: underline;
}
a.consent-link:hover,
a.consent-link:focus {
    color: #23527c;
}
.m-radio label:before, .m-radio label:after {
   border-radius:30px; 
}

@keyframes click-wave {
 0% {
    transform: scale(0,0);
   opacity: 0;

  }
  100% {
    transform: scale(4,4);
     opacity: 0.35;

  }
}	
.panel-group .panel {
    border-radius: 0;
}
.no-border {
border: 0;
    box-shadow: none !important;
    background: #f0f0f0;
    padding: 16px 30px;
    min-height: 50px !important;
}
textarea.form-control {
    min-height: 80px !important;
}
.has-error .no-border {
background: #f9d3d3;
}
.m-login {
   margin-bottom: 50px; 
}
.m-login a, .agree b {
border-bottom: 1px dotted;
}
/* Fix some bootstrap issues */
span.hidden-xs, span.hidden-sm, span.hidden-md, span.hidden-lg {
    display: inline;
}

.nav-tabs {
    margin-bottom: 15px;
}
div.required .control-label:after {
    content: "";
    background: red;
    width: 4px;
    height: 4px;
    border-radius: 30px;
    font-weight: bold;
    display: inline-block;
    top: -2px;
    left: 2px;
    position: relative;
}
.required.has-error .control-label:after {
    animation: animate-error 0.2s cubic-bezier(.9,.24,.62,.79) infinite;
    animation-iteration-count: 1;
}
/*HOME*/
.common-home .null {
    display: none;
}
.common-home.home-0 .null {
    display: block;
    padding-bottom: 50px;
}
/*.home-0 .first-container,*/
.home-2 .content-top .first-container {
    width: 100%;
    max-width: 100%;
    padding: 0;
}
.home-2 .madeshop-slide .item {
height: 100vh;
}

.home-1 .madeshop-slide .slick-slide {
    padding-top: 112px;
}

.home-2 .content-bottom {
    margin-top: 84px;
    height: calc(100vh - 84px);
    transform: none !important;
}
.open .content-bottom {
    overflow: hidden;
}

.pp-section {
    opacity:0;
}
.pp-section.active {
    opacity:1;
}
/*TOP-URL*/

.top0 .top-url {
display: none;
}
.top-url {
position: absolute;
    top: 0;
    line-height: 30px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid #efefef;
}
.top-url .list-inline {
    margin: 0;
}
#form-language, #form-currency,#madeshop-language,#madeshop-currency {
    display: inline-block;
    position: relative;
}
.noselect{
   border: 0;
    font-weight: 900;
    font-size: 10px;
    outline: none;
    background: transparent;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: -moz-none;
    -ms-user-select: none;
     user-select: none;
    -webkit-appearance: none;
    -moz-appearance: radio-container;
     appearance: none;
     min-width: 40px;
}
#call-url {
padding: 5px 9px;
    min-width: 94px;
    text-align: center;
    background: #eee;
    margin-left: 10px;
    border-radius: 30px;
    cursor: pointer;
    line-height: 12px;
    vertical-align: inherit;
}
#agree-block {
    padding-top: 65px;
}
#agree-block .back {
    padding: 5px 40px;
    display: inline-block;
    margin: 30px 0px;
    background: black;
    color: white;
    border-radius: 30px;
    position: relative;
    cursor: pointer;
}
#agree-block .back i {
    right: inherit;
    left: 0;
}
#agree-block .modal-title {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 15px;
}
/*SEARCH*/

#search {
    margin-bottom: 10px;
    margin-top: 90px;
    position: relative;
}
.top1 #search {
    margin-top: 120px;
}
#search .input-lg {
    height: 40px;
    line-height: 20px;
    /* Иконка поиска справа скрыта => убираем лишний отступ */
    padding: 0 20px 0px 0px;
    width: 100%;
    border: 0;
    background: transparent;
    border-bottom: 1px solid #d4d4d4;
    border-radius: 0;
    font-size: 36px;
    height: 75px;
    font-weight: 900;
}
#search .all-icon {
        margin: 0;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(50%);
    cursor: pointer;
}

/* Скрываем значок поиска в строке (оставляем сам input) */
#search .search-icon {
    display: none;
}

.header-search-toggle {
    display: inline-block;
}
.micon0 .header-search-toggle {
    display: none; /* на desktop в micon0 показываем inline-поиск */
}

/* Inline поиск в шапке (вместо "открывашки" поиска) */
.header-inline-search {
    display: block;
    width: 450px;
    max-width: 450px;
    margin: 15px 12px 0 0;
    float: left;
}
.header-inline-search .container {
    max-width: none;
    padding: 0;
    margin: 0;
    width: auto;
}
.header-inline-search #search {
    margin: 0;
    margin-bottom: 0;
    margin-top: 0;
    position: relative;
}
.header-inline-search #search p {
    display: none;
}

/* Иконка поиска справа внутри блока (как на скриншоте) */
.header-inline-search #search .search-icon {
    display: inline-block !important; /* перекрываем #search .search-icon {display:none;} */
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 0;
    cursor: pointer;
}
.header-inline-search #search .search-icon span {
    display: block;
}

.header-inline-search #search .input-lg {
    height: 30px;
    line-height: 20px;
    font-size: 16px;
    font-weight: 900;
    width: 100%;
    padding: 0 44px 0 14px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 999px;
    box-sizing: border-box;
}
.header-inline-search #search .input-lg:focus {
    outline: none;
    border-color: rgba(29, 172, 232, 0.55);
    box-shadow: 0 0 0 3px rgba(29, 172, 232, 0.16);
}

@media screen and (max-width: 1101px) {
    .header-inline-search {
        display: none;
    }
    .micon0 .header-search-toggle,
    .header-search-toggle {
        display: inline-block; /* на mobile/menu collapse возвращаем иконку */
    }
    .header-inline-search #search .input-lg {
        height: 32px;
        font-size: 14px;
    }
}

#search .dropdown-menu {
    background-color: transparent;
}
#search a {
    padding-left: 0;
}
#search .no-result {
position: absolute;
}
/*HEADER*/

header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    padding-top: 30px;
    z-index: 5;
    transition: 0.3s;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.common-home header {
   background: transparent;
}
.color2 header:after, .open header:after, header.color:after {
    content: "";
    background: #fff;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}
.color2 header {
top: -30px;
}
.null {
    padding-top: 112px;
}


.logo-block {
display: flex;
    position: absolute;
    height: 80px;
    align-items: center;
    width: 196px;
    overflow: hidden;
}
.text-logo {
    font-family: 'Roboto', 'Ubuntu', sans-serif;
    font-size: 42px;
    line-height: 42px;
    font-weight: 400;
    color: black;
    letter-spacing: -2px;
    position: relative;
}
.text-logo:after {
    content: ".ru";
    position: absolute;
    top: -1px;
    right: -23px;
    font-size: 13px;
    background: #cdd5e4;
    background: #ddd;
    line-height: 20px;
    width: 20px;
    text-align: center;
    border-radius: 30px;
    letter-spacing: 0px;
}

.menu-block {
padding-left: 120px;
    width: calc(100% - 265px);
    float: left;
}
.micon0 .menu-block {
    /* Освобождаем место в той же строке под inline-поиск */
    width: calc(100% - 650px);
}
.icon-block {
    float: right;
    margin-top: 30px;
}
.ib {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
}
.ib b {
    vertical-align: top;
    text-transform: uppercase;
    font-size: 9px;
    display: none;
    margin: 0px 0px 0px 7px;
    font-weight: 500;
}
.total {
    position: relative;
    background: #000000;
    font-size: 8px;
    font-weight: 900;
    color: white;
    width: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 30px;
    display: inline-block;
    vertical-align: top;
    margin: 0 0 0 5px;
    top: 0px;
}
.red {
    animation: animate-circle 0.2s cubic-bezier(.9,.24,.62,.79) infinite;
    animation-iteration-count: 1;
}
@keyframes animate-circle {
    0% {
        transform: scale(1);

    }
    100% {
        transform: scale(1.3);

    }
}
@keyframes animate-error {
    0% {
        transform: scale(1);

    }
    100% {
        transform: scale(3);

    }
}
.all-icon {
    width: 19px;
    height: 19px;
    position: relative;
    display: inline-block;
    margin-left: 10px;
}
.all-icon:before, .all-icon:after {
    content: '';
    position: absolute;
    transition: 0.2s;
    left: 0;
    transform: rotate(0deg);
}
.cart-icon:before {
    width: 100%;
    height: 73%;
    border: 2px solid;
    z-index: 1;
    bottom: 0px;
}
.cart-icon:after {
    width: 8px;
    height: 6px;
    left: 4px;
    bottom: 10px;
    border: 2px solid;
    border-bottom: 0;
}
.iclose .cart-icon:before {
    border-width: 1px;
    top: 8px;
    height: 2px;
    transform: rotate(135deg);
    transition-property: height, transform;
    transition-delay: 0s, 0.3s;
}
.iclose .cart-icon:after {
    height: 2px;
    border: solid 1px;
    width: 100%;
    border-radius: 0;
    transform: rotate(45deg);
    top: 8px;
    left: 0;
    transition-property: height, transform;
    transition-delay: 0s, 0.3s;
}
.search-icon:before {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    border: 2px solid;
}
.search-icon span {
    width: 2px;
    height: 5px;
    border: 1px solid;
    border-radius: 30px;
    right: 0;
    bottom: 0px;
    transform: rotate(135deg);
    display: block;
    position: absolute;
}
.search-icon:after {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    border: 2px solid transparent;
}
.iclose .search-icon:before {
    height: 2px;
    transform: rotate(135deg);
    border-width: 1px;
    top: 8px;
    transition-property: height, transform;
    transition-delay: 0s, 0.5s;
}
.iclose .search-icon span {
    display: none;
}
.iclose .search-icon:after {
    height: 2px;
    transform: rotate(45deg);
    border-width: 1px;
    top: 8px;
    transition-property: height, transform;
    transition-delay: 0s, 0.5s;
    border-color: inherit;
}
.login-icon:before {
    border-radius: 30px;
    border: 2px solid;
    width: 8px;
    height: 8px;
    left: 4px;
    top: 1px;
}
.login-icon:after {
    width: 100%;
    height: 30%;
    border-radius: 3px 3px 3px 3px;
    left: 0px;
    bottom: 0px;
    border: solid 2px transparent;
    border-color: inherit;
    border-bottom-color: transparent;
}
.iclose .login-icon:before {
    height: 2px;
    border: 1px solid;
    width: 100%;
    left: 0;
    top: 7px;
    transform: rotate(45deg);
    transition-property: height, transform;
    transition-delay: 0s, 0.3s;
}
.iclose .login-icon:after {
    border: 1px solid;
    height: 2px;
    bottom: 7px;
    transform: rotate(135deg);
    transition-property: height, transform;
    transition-delay: 0s, 0.3s;
}
.menu-icon:before {
    width: 100%;
    border: 1px solid;
    left: 0;
    z-index: 1;
    top: 1px;
}
.menu-icon:after {
    width: 100%;
    border: 2px solid;
    height: 2px;
    border-bottom: 0;
    left: 0;
    bottom: 3px;
}
.menu-icon span {
    height: 2px;
    border: 1px solid;
    width: 70%;
    display: inline-block;
    position: relative;
    top: -6px;
}
.iclose .menu-icon:before {
    transform: rotate(135deg);
    transition-property: top, transform;
    transition-delay: 0s, 0.3s;
    top: 7px;
}
.iclose .menu-icon:after {
    transform: rotate(45deg);
    transition-property: bottom, transform;
    transition-delay: 0s, 0.3s;
    bottom: 7px;
    width: 100%;
}
.iclose .menu-icon span {
    display: none;
}
/*MENU*/

.anim-border {
    background: #000;
    height: 2px;
    width: 0px;
    position: absolute;
    left: 0;
    bottom: -1px;
    -webkit-transition: all 250ms ease-out;
    transition: all 250ms ease-out;
    z-index: 9999;    pointer-events: none;
    display: none; /* old underline hover animation disabled */
}
.description-block {
    position: relative;
}
.anim-border2 {
   top: 41px; 
}
#menu-url {
    display:inline-block;
}
#menu {
    margin: 0;
    border: 0;
    position: static;
}
#menu .nav {
margin: 0;
height: 82px;
    overflow: hidden;
}
#menu .nav>li>a,.aname {
    color: #444;
    padding: 31px 25px;
    font-size: 16px;
    background: transparent;
    transition: color 0.12s ease, text-shadow 0.12s ease;
    font-size: 14px;
}
.micon0 #menu .nav>li>a:hover,
.micon0 #menu .aname:hover {
    color: #3d3d3d;
    /* контур шрифта при наведении */
    text-shadow:
      -0.25px -0.25px 0 #b9b9b9,
       0.25px -0.25px 0 #b9b9b9,
      -0.25px  0.25px 0 #b9b9b9,
       0.25px  0.25px 0 #b9b9b9;
}
.aname {
    cursor: default;
}

#menu .dropdown-inner a {
    min-width: 160px;
    display: inline-block;
    clear: both;
    line-height: 20px;
    color: #333333;
}
#menu .dropdown-inner a:hover {
    color: #444;
}
#menu .title {
    font-weight: 900;
}
#menu .title img {
    margin: 7px 15px 7px 0;
    border-radius: 100%;
}
.children-image img {
    display: none;
}
.navbar-nav>li {
    position: inherit;
    height: 100%;
}
.dropdown-menu {
    right: 0;
    box-shadow: none;
    border: 0;
    border-top: 1px solid #f7f7f7;
    margin: 0;
    
}
.dropdown-inner {
   overflow: hidden;
}
.dropdown-inner .dropdown-menu {
    border:0;
}
.no-style {
    padding-left: 0;
    list-style: none;
}



.next, .back i {
   position: absolute;
    padding: 10px 0px 10px 15px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 1;
    text-align: right; 
}
th.next {
    position: inherit;
    transform: inherit;
}
.target0 .next {
   left: 0;
}
.module {
    /*padding-bottom: 45px;*/
}
#menu .menu .see-all {
background: black;
    color: white !important;
    padding: 5px 15px !important;
    margin: 15px 0;
    border-radius: 30px;
    display: inline-block !important;
    font-size: 12px;
}
/*MADESHOP BANNER*/
.banners {
    padding-top:40px;
}
.banner {
    position: relative;
}
.banner1 {
    margin-bottom: 30px;
}
.banner img {
    width: 100%;
}
.b-info {
padding: 20px;
position: absolute;
    top: 0;
}
.bann-btn {
    background: black;
    width: 50px;
    line-height: 50px;
    text-align: right;
    border-radius: 30px;
    color: white !important;
    transition: width 0.3s;
    padding-right: 20px;
    position: absolute;
    bottom: 60px;
    left: 40px;
    overflow: hidden;
    font-size: 12px;
}

.bann-btn.small {
    width: 30px;
    line-height: 30px;
    padding-right: 12px;
}
.bann-btn.cathref {
    position: relative;
    display: inline-block;
    left: 10px;
    top: 10px;
    background: #ddd;
    color: black !important;
}
.bann-btn.cathref:hover {
    background: #444;
    color: #f9f9f9 !important;
}
.bann-btn span {
    position: absolute;
    top: -1px;
    left: -100%;
    opacity: 0;
    transition: 0.3s;
}
.banner:hover .bann-btn, .bann-btn:hover, .slick-active .bann-btn, .module:hover .bann-btn {
width: 140px;
}
.banner:hover span, .bann-btn:hover span, .module:hover span  {
left: 20px;
    opacity: 1;
}
.bann-btn.open span {
    left: 20px;
    opacity: 1;
}
/*SLIDER*/
.home-1 .madeshop-slide .slick-slide {
    height: 100vh;
}
.home-1 .m-top .first-container {
    padding: 0;
    max-width: 100%;
}
.mslide {
    position: relative;
}
.mslide .bann-btn.open span {
    opacity: 1 !important;
}
.madeshop-slide .container {
    height: 100%;
    position: relative;
}
.mtable {
    display: table;
    height: 100%;
}
.mtable div {
    display: table-cell;
    vertical-align: middle;
    padding-top: 80px;
    width: 50%;
}
.slide-block.abs {
    position: absolute;
    left: 40px;
    top: 50%;
    width: 50%;
}
.fullbg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.sl-title {
    font-weight: 900;
    font-size: calc(1em + 4vw);
    line-height: 0.9em;
    display: inline-block;
    margin-bottom: 35px;
    transition: .5s;
    transform: translateY(30px);
    opacity: 0;
    color: white; /* Добавлено для белого цвета текста */
}

.madeshop-slide .bann-btn {
    position: relative;
    display: inline-block;
    bottom: auto;
    left: auto;
}

.pretitle, .destitle {
    transition: .8s;
    transform: translateY(80px);
    opacity: 0;
    margin-bottom: 30px;
    font-size: 16px;
    color: white; /* Добавлено для белого цвета текста */
}

.slick-active .pretitle, 
.slick-active .sl-title, 
.slick-active .destitle {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}


/* content */
#content {
    min-height: 400px;
}
.no-product {
    border: 1px solid #eaeaea;
    display: flex;
    align-items: center;
    text-align: center;
    margin-bottom: 80px;
}
.no-product .empty {
    margin-top: 25px;
}
.bot50 {
    padding-bottom: 50px;
} 
/* footer */
footer {
    color: #e2e2e2;
}
footer .text-logo {
    color: #454545;
}
footer .text-logo:after {
    background: #303030;
}
.fh2 {
    font-weight: 900;
    color: #454545;
    font-size: 18px;
    margin-bottom: 20px;
}
.news-block {
    border-top: 1px solid #e8e8e8;
    padding: 40px 0;
    color: #303030;
}
.news-block p {
    padding-right: 50px;
}
.footer-block {
   background: #303030;
}
.finfo {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 40px 0;
}
.finfo i {
margin-right: 11px;
    font-size: 18px;
    position: relative;
    top: 2px;
}
.furl {
    padding-top: 50px;
}
footer hr {
    border-top: none;
    border-bottom: 1px solid #3d3d3d;
}
footer a {
    color: #ccc;
}
footer a:hover {
    color: #fff;
}
footer h5 {
    font-size: 14px;
    font-weight: bold;
    color: #fff;
}
.b-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 10px;
    margin-top: 40px;
}
#fnews input {
    padding: 15px 20px;
    border: 0;
    width: 100%;
    background: #e8e8e8;
    border-radius: 30px;
    margin-top: 3px;
    outline: none;
}
#fnews button {
    padding: 8px 15px;
    background: #cdcdcd;
    color: #303030;
    margin-left: 10px;
    border-radius: 30px;
    width: auto;
    font-size: 10px;
    border: 0;
    outline: none;
    text-transform: uppercase;
    position: absolute;
    top: 10px;
    right: 23px;
}
.nsuc {
    line-height: 75px;
}
.nsuc i {
margin-right: 5px;
}
.f-share {
    position: fixed;
    right: 30px;
    bottom: -30px;transition: 0.5s;
    z-index: 3;
}
.f-share.open {
     bottom: 10px;
}
.f-share div {
width: 50px;
    height: 50px;
    padding: 16px;
    background: #ddd;
    border-radius: 30px;
    margin-bottom: 10px;
    cursor:pointer;
    transition: 0.5s;
}
.f-share .scrollup {
opacity:0;
 visibility: hidden;
}
.f-share.open .scrollup {
opacity:1;
 visibility: visible;
}
.share-btn {
    width: 100%;
    text-align: center;
}

.share_this li {
    background: #e5e5e5;
    padding: 5px 15px;
    border-radius: 30px;
    margin: 5px;
    cursor:pointer;
}
.share_this li:hover {
   background: black;
    color: white;
}

.soc li {
    padding: 0;
}
.soc i {
        width: 40px;
    line-height: 40px;
    text-align: center;
    color: #e2e2e2;
    background: #252525;
    border-radius: 5px;
    margin: 4px 7px 0 0;
    font-size: 18px;
}
.soc a:hover i {
    background: black;
    color: #fff;
}


/* alert */
.alert {
    padding: 8px 14px 8px 14px;
}
/*BREADCRUMB*/
.breadcrumb {
background-color: transparent;
    border-radius: 0;
    padding: 17px 0px;
    padding-bottom: 0;
}
/* Выравнивание хлебных крошек по верхней линии контейнера поиска на странице категории */
.category-page .breadcrumb {
    padding-top: 0;
}
.breadcrumb a, .breadcrumb li  {
    color: #9E9E9E;
        cursor: pointer;
}
.breadcrumb>li+li:before {
    padding: 0 10px;
    color: #ccc;
    content: "\f0da";
    font: normal normal normal 14px/1 FontAwesome;
}
#back i {
    margin-right: 10px;
    color: #d4cccc;;
}
.pagination {
    margin: 0;
}
/* buttons */
.btn {
    border: 0;
    outline: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    background: black !important;
    color: #fafafa !important;
    font-size: 11px;
}
.btn.btn-primary {
    line-height: 38px;
    width: 100%;
}
.btn:hover {
    background: #333 !important;
}
.made-btn {
   width: 100%;
    padding: 17px 0px;
    background: black;
    color: #fafafa !important;
    font-weight: 900;
    font-size: 14px;
}
.btn.btn-danger {
    background: #d9534f !important;
}
#open-cart {
    background: #6e8e6e !important;
}
#button-icart {
    background: #e0e0e0 !important;
    color: #1d1d1d !important;
    margin-left: 10px;
}
.made-btn.btn-gray {
    background: #e5e5e5 !important;
    color: #222 !important;
    margin-left: 10px;
}
.btn-gray:hover {
background: #ddd !important;
}
.made-btn.big {
   margin: 40px 0; 
}
.border-btn {
    border: 2px solid #d9d9d9;
    display: inline-block;
    padding: 5px 10px;
    cursor: pointer;
}
.border-btn:hover {
border-color: #000;
}
.rad-btn {
    width: 50px;
    line-height: 50px;
    color: #000;
    cursor: pointer;
    background: #e5e5e5;
    border-radius: 30px;
    display: inline-block;
    text-align: center;
    margin: 0px 0px 5px 5px;
}
.rad-btn.small {
    width: 27px;
    line-height: 27px;
    background: #e5e5e5;
}
.rad-btn.small:hover {
background: #ccc;
}
.input-group-btn button {
  padding: 17px 10px;  
}
#button-coupon {
 padding: 0 10px; 
}

/* list group */
.list-group a {
    border: 1px solid #DDDDDD;
    color: #888888;
    padding: 8px 12px;
}
.list-group a.active, .list-group a.active:hover, .list-group a:hover {
    color: #444444;
    background: #eeeeee;
    border: 1px solid #DDDDDD;
    text-shadow: 0 1px 0 #FFF;
}
/* carousel */
.carousel-caption {
    color: #FFFFFF;
    text-shadow: 0 1px 0 #000000;
}
.carousel-control .icon-prev:before {
    content: '\f053';
    font-family: FontAwesome;
}
.carousel-control .icon-next:before {
    content: '\f054';
    font-family: FontAwesome;
}

/*CATEGORY*/

.mcolumn {
    padding: 0;
    border: 1px solid #eaeaea;
    border-top: 0;
    padding-bottom: 89px;
}
.mcolumn:after {
    content: "";
    position: absolute;
    bottom: -1px;
    height: 90px;
    left: -1px;
    right: -1px;
    background: #f8f8f8;
    border-top: 1px solid #eaeaea;
}
.col-module {
    padding: 20px 25px;
    border-top: 1px solid #eaeaea;
        overflow: hidden;
}
#column-left {
    box-shadow: 1px 0 0 0 #eaeaea;
    border-right: 0;
}

.column-center {
   margin-bottom: 90px;
   min-height: auto !important;
}
.row-c {
   background: #F8F8F8;
}
.mcolumn .row-flex {
    display: block;
}
.mcolumn .col-sm-3 {
    width:100%;
}

.mcolumn h2 {
    font-size: 16px;
    border-left: 4px solid black;
    padding: 0px 15px;
    margin: 0 0 20px 0px;
}
.mcolumn .price {
    font-size: 14px !important;
}

.mcolumn .product-layout {
    padding-bottom: 0 !important;
}




.mcolumn .product-thumb {
    display: flex;
    border: 0;
    border-bottom: 1px solid #F8F8F8;
    align-items: center;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.mcolumn .product-layout:last-child .product-thumb {
    border-bottom: 0px !important;
}
.mcolumn .image {
width: 30%;
    margin: 0 10px 20px 0px !important;
    float: left;
}
.mcolumn img {
margin: 0 !important;
}
.mcolumn .l-icon,
.mcolumn .sticker,
.mcolumn .info-block,
.mcolumn .more-point,
.mcolumn .c-icon,.mcolumn .rating, .mcolumn .sale,.mcolumn .cathref
{
    display: none !important;
}
.mcolumn .caption {
width: 70%;
min-height:auto;
padding-left: 10px;
    margin: 0 !important;
}
.mcolumn .h3 {
    font-size: 14px;
    padding: 0;
    margin: 10px 0 18px 0px;
}
.mcolumn .h3:after {
    content:none;
}
.mcolumn h4 {
    height: auto;
}
.mcolumn .caption a {
    font-size: 12px;
    font-weight: 100;
}
.cdes-block {
    margin-bottom: 80px;
}
/*FILTER*/

#filter {
        font-weight: 900;
    padding: 3px 11px;
    background: #e8e9f7;
    border-radius: 30px;
    text-transform: uppercase;
    font-size: 10px;
    cursor: pointer;
}
.filter-block {
    padding: 15px 0px; 
}
.filter-name {
font-weight: 900;
    text-transform: uppercase;
    font-size: 10px;
}


/*PAGINATION*/
.pag-page {
    padding: 0;
    list-style: none;
    margin: 0;
    position: absolute;
    left: 15px;
    right: 0;
    margin-top: 27px;
    padding: 0 15px;
    text-align: right;
}

.madeshop-review .pag-page {
    position: static;
}
.r-page .pag-page {
   border-top: 1px solid #dddddd;
    padding: 30px 0; 
}
.pag-page li {
    
    display: inline-block;
}
.pag-page li.active span {
    background: #eaeaea;
    width: 35px;
    display: block;
    text-align: center;
    line-height: 35px;
    border-radius: 30px;
}
li.pag-btn {
    background: #DBDBDB;
    border-radius: 4px;
}
li.pag-btn:hover {
    background: #cccccc;
}
.pag-page a {
    color: #222;
    text-decoration: none;
    padding: 10px 20px;
    line-height: 35px;
}
.list-cat {
    padding: 10px 0;
    border-top: 1px solid #eaeaea;
    overflow: hidden;
}
.list-cat li {
    padding: 0;
    width: 25%;
    float: left;
}
.list-cat a {
    background: #efefef;
    padding: 5px 15px;
    border-radius: 3px;
    font-weight: 900;
    white-space: nowrap;
    display: flex;
    align-items: center;
    margin: 10px 5px;
}
.list-cat a:hover {
    background: #ddd;
}
.list-cat img {
    filter: brightness(0.94);
    margin-right: 10px;
}
.list-cat a:hover img { 
filter: brightness(0.87);
}
.sort-block {
    padding: 30px 0;
    padding-top: 0;
    text-align: right;
}
.no-select {
    border: 1px solid #fbfbfb;
    background: transparent;
    font-weight: 900;
    color: #000000;
    font-size: 10px;
    text-transform: uppercase;
    outline: none;
    opacity: 0;
    position: absolute;
    top: 0;
    cursor: pointer;
}
.w-select {
    position: relative;
    display: inline-block;
    padding-right: 23px;
    overflow: hidden;
    vertical-align: bottom;
    text-align: left;
}
.bline {
    color: black;
    font-weight: 900;
    font-size: 10px;
    text-transform: uppercase;
}
.bline:after, #form-currency:after, #form-language:after {
    content: "\f0d7";
    font: normal normal normal 12px FontAwesome;
    position: absolute;
    bottom: 0px;
    color: black;
    width: 22px;
    line-height: 20px;
    background: #f8f8f8;
    text-align: center;
}
 #form-currency:after, #form-language:after {
    bottom: 4px;
    right: -4px;
    background: #fff;
}
.sort-block span {
    font-size: 10px;
    color: #bbbbbb;
    font-weight: 900;
    margin-right: 10px;
    text-transform: uppercase;
}

/*CATEGORY MODULE*/

.cat-module {
    font-size: 16px;
}
.cat-module li {
    padding: 3px 0px;
}
.cat-module a {
    padding: 3px 7px;
    border-radius: 3px;
    position: relative;
}
.cat-module a:hover {
    background: #e0e0e0;
}
.mright {
    font-size: 12px;
    margin-left: 20px;
}
.mright2 {
    margin-left: 40px;
}
.cat-module a.open {
    background: #363636;
    color: white !important;
    padding: 3px 7px;
    border-radius: 3px;
    margin-left: 20px;
}
.cat-module .head {
    font-weight: 900;
    font-size: 13px;
}
.cat-module .active:before {
    content: "";
    position: absolute;
    width: 9px;
    height: 2px;
    background: black;
    border-radius: 30px;
    top: 8px;
    left: -15px;
}
.head.active:before {
top: 9px;
}
/* product list */

.row-flex {
    display: flex;
    z-index: 2;
    margin-bottom: 90px;
}
.row-flex:hover {
    z-index: 3;
}
.row-flex.slick-slider {
    margin-bottom: 0;
}
.product-layout {
   padding: 0;
   display: flex;
       position: relative;
}
.product-thumb {
    border: 1px solid #eaeaea;
    margin-right: -1px;
    margin-bottom: -1px;
    background: #f8f8f8;
        width: calc(100% + 1px);
}
.product-thumb.more {
background: #dddddd;
    padding: 30% 15%;
    width: calc( 100% + 1px);
    font-size: 40px;
    font-weight: 900;
    line-height: 45px;
    text-transform: uppercase;
    color: black;
    overflow: hidden;
}
.vplus {
    background: #ededed;
    width: 60px;
    line-height: 60px;
    border-radius: 30px;
    text-align: center;
    margin: 12px auto;
}
.product-thumb .image {
    text-align: center;
    margin: 15px 15px 42px 15px;
    overflow: hidden;
}
.product-thumb .image a {
    display: block;
}
.product-thumb .image img {
    transition: transform 0.25s ease;
}
.product-thumb .image:hover img {
    transform: scale(1.1);
}

.product-thumb img {
    margin-left: auto;
    margin-right: auto;
    filter: brightness(0.98);
}
.product-grid .product-thumb .image {
    float: none;
}
@media (min-width: 767px) {
.product-list .product-thumb .product-list-image .image {
    float: none;
    margin: 0;
}
}
.product-thumb h4 {
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* В виде «список» название целиком с переносом по словам */
.product-list .product-thumb h4.product-list-title {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
}
.product-list .product-thumb h4.product-list-title a {
    white-space: normal;
    word-wrap: break-word;
}
.product-thumb .caption {
    margin: 0 15px 20px 15px;
    position: relative;
}


.hp {
position: absolute;
    left: 0;
    top: -29px;
    z-index: 1;	
}
.hp div {
    background: #ddd;
    text-align: center;
    border-radius: 30px;
    display: inline-block;
    padding: 0px 8px;
}
.more-point {
background: #000000;
    color: white;
    width: 21px;
    line-height: 21px;
    border-radius: 30px;
    text-align: center;
    position: absolute;
    bottom: 19px;
    right: 16px;
}
.product-thumb:hover .more-point, .product-thumb:hover .sale {
    display: none;
}
.sale {
position: absolute;
    top: 9px;
    left: 11px;
    min-width: 30px;
    padding: 0 8px;
    line-height: 25px;
    background: #000000;
    color: white;
    font-size: 10px;
    border-radius: 30px;
    text-align: center;
    z-index: 1;
}
.l-icon {
    position: absolute;
    top: 15px;
    left: 25px;
    top: 9px;
    left: 9px;
    width: 34px;
    display: none;
}
.l-icon .fa-eye span, .l-icon .fa-spinner span {
    line-height: 10px;
    top: 6px;
}
.fa-spinner:before {
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
    display:block;
}
#content2 {
    margin-top: 65px;
    padding-top: 40px;
}
.product-thumb:hover .l-icon {
   display: block; 
}
.module .l-icon {
    left: 15px;
}
.l-icon i {
    font-size: 14px;
    padding: 10px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    margin-bottom: 5px;
    transition: 0.2s;
    box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 26px 2px;
    background: #1c1c1c;
    color: #e9eff2;
    left: 0;
    cursor: pointer;
}

i.fa-exchange {
    font-size: 12px;
    padding: 11px;
}
.l-icon i:hover {
padding-right: 119px;
}
.l-icon .m-cart:hover {
padding-right: 100px;
}
.l-icon span {
    position: absolute;
    width: 118px;
    font-size: 11px;
    line-height: 3px;
    top: 16px;
    left: 16px;
    font-family: sans-serif;
    font-weight: 900;
    padding-left: 18px;
}
.fa-exchange span {
top: 16px;
}
.l-icon .cart-icon {
    margin: 0;
}
.l-icon  .m-cart {
    padding: 0;
    display: inline-block;
    font-style: normal;
}
.picon {
    width: 34px;
    height: 34px;
    padding: 8px 0;
    color: #dddddd;
    z-index: 2;
    text-align: center;
}
.c-icon {
   position: absolute;
    background: #1f1f1f;
    border-radius: 30px;
    text-align: center;
    bottom: 15px;
    right: 15px;
    cursor: pointer;
}
.c-icon .all-icon {
margin: 0;
}
.no-stock {
    background: #ddd !important;
    color: #aaa !important;
}
.no-stock .picon {
color: #aaa;
}
.product-thumb .info-block {
border: 1px solid #eaeaea;
    border-top: 0;
    position: absolute;
    left: 0px;
    right: -1px;
    background: inherit;
    z-index: 2;
    display: none;
}
.product-thumb:hover .info-block {
    display: block;
}
.size-block, .attribute, .des-block {
    padding: 0 15px 15px 15px;
    margin: 0;
}
.size-block {
    padding: 0 13px 10px 13px;
}
.size-block label {
    background: #fafafa;
    min-width: 29px;
    padding: 0 7px;
    line-height: 27px;
    display: inline-block;
    border-radius: 28px;
    font-size: 10px;
    font-weight: 900;
    margin: 8px 2px;
    text-align: center;
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.08);
}
.size-block label:hover {
    background: #000;
    color: white;
}
.size-block label.out {
    pointer-events: none;
    background: #efefef;
    color: #b1b1b1;
}

.product-list .product-thumb .caption {
    margin-left: 230px;
}
.product-list .product-thumb .row .caption {
    margin-left: 0;
}

.product-thumb .rating {
    position: absolute;
    right: 5px;
    top: 13px;
    z-index: 1;
}
.rating .fa-stack {
    font-size: 8px;
}
.rating .fa-star-o {
    color: #999;
    font-size: 15px;
}
.rating .fa-star {
    color: #FC0;
    font-size: 15px;
}
.rating .fa-star + .fa-star-o {
    color: #E69500;
}
h2.price {
    margin: 0;
}
.product-thumb .price {
    font-weight: 900;
    font-size: 16px;
    color: #000;
}
.product-thumb .price-new {
    font-weight: 600;
}
.price-old {
   text-decoration: line-through;
}
.product-thumb .price-old {
    color: #aaa;
    margin-left: 10px;
    font-size: 13px;
    line-height: 0;
}

.product-thumb .price-tax {
    color: #999;
    font-size: 12px;
    display: block;
}
.product-list .product-thumb > .product-list-inner {
    display: flex;
    position: static;
}


/*PRODUCT*/

.name-block {
   display: flex; 
   margin-bottom: 8px;
}
a.manufacturer {
   font-weight: 900;
    padding: 2px 8px;
    background: #e5e5e5;
    color: #333;
    margin-right: 10px;
}
a.manufacturer:hover {
    background: #ccc;
}
.group-rad {
flex-grow: 1;
    text-align: right;
}
.price-block {
    margin-top:20px;
}
.psale {
    background: black;
    line-height: 25px;
    min-width: 25px;
    padding: 0 8px;
    font-size: 10px;
    display: inline-block;
    border-radius: 30px;
    text-align: center;
    color: white;
    position: relative;
    top: -4px;
}
.product {
    padding-bottom: 50px;
}
.product h1 {
    margin: 0;
    font-weight: 900;
    font-size: 26px;
    text-transform: uppercase;
}
.price {
    font-size: 19px;
}
.stock {
border: 1px solid #cbcbcb;
    padding: 0 6px;
    border-radius: 2px;
    float:right;
    display: inline-block;
    color: #969696;
}
.min_d {
    font-size: 14px;
    margin-top: 20px;
}
#product .form-group {
    margin: 15px 0;
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 10px;
}
#product .checkbox {
    display: inline-block;
}
.size-url {
    display: inline-block;
    margin-bottom: 30px;
    border-bottom: 1px solid gainsboro;
    cursor: pointer;
}
.minprice {
    color: #fff;
    padding: 3px 12px;
    background: #000;
    border-radius: 30px;
    cursor: pointer;
}
.minprice:hover {
    background: #333;
}
.reward {
    font-weight: 900;
    padding: 5px 15px;
    display: inline-block;
    background: #e5e5e5;
}
.options .text-danger {
    display: none;
}
.olabel {
    min-width: 135px;
    padding-right: 20px;
}
.tname {
    color: #999;
    font-size: 10px;
}
.hover-block {
overflow: hidden;
    border: 5px solid #dddcdc;
    background: #efefef;
    padding: 20px;
    margin: 45px 0px;
    cursor: help;
}
.hover-block .img2 {
    display:none;
}
.hover-block:hover .img1,.hover-block:hover .play-icon {
    display:none;
}
.hover-block:hover .img2 {
    display:block;
}
.play-block {
    float: left;
    width: 25%;
    position: relative;
}
.play-block img {
    width: 100%;
}
.in-block {
    float: left;
    width: 75%;
}
.play-icon {
background: url(https://www.divan.ru/svg/icons/play_grey.svg) center center no-repeat;
    background-size: 61%;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 70px;
    height: 70px;
    transform: translate(-50%, -50%);
}

.radio-block {
display: inline-block;
}
.radio-block label {
    min-width: 30px;
    padding: 0 8px;
    line-height: 30px;
    color: black;
    border-radius: 30px;
    text-align: center;
    cursor: pointer;
}
.radio-block input:checked+label, .radio-block:hover label {
    background: #000;
    color: #fff;
}
input:disabled+label {
    color: #bbb !important;
    background: none !important;
}
.color-input {
    margin: 0;
}
.color-input li {
    padding: 0;
    margin-right: 4px;
    position: relative;
}
.color-input .icolor {
    width: 30px;
    height: 30px;
}
.color-input .checked:after {
   content: "";
    position: absolute;
    border: 1px solid rgba(0, 0, 0, 0.1);
    left: -3px;
    right: -3px;
    top: -3px;
    bottom: -3px;
}

.color-input .icolor:after {
    border-radius: 30px;
}

.color-input img {
    width: 100%;
    filter: brightness(0.98);
}
.color-input a {
    display: block;
    height: 100%;
}
.icolor {
    border-radius: 30px;
}
label.img-label {
    background: transparent;
    padding: 0;
}
.img-label img {
    border-radius: 0;
    filter: brightness(0.98);
}
.radio-block input:checked+label img, .radio-block:hover label img {
    border-color: #000;
}
.hn {
    position: absolute;
    left: 20px;
    top: 5px;
    z-index: 1;
}
.hn.right {
    left: inherit;
    right: 35px;
}
.hn div {
    width: 65px;
    line-height: 65px;
    background: #ddd;
    text-align: center;
    border-radius: 100%;
    display: inline-block;
    margin-right: -12px;
}
div.new {
    background: #a6e3a2;
}

#one-image,#one-image2 {
    float: left;
    padding: 0; 
    cursor: zoom-in;
}
#one-image2 {
    cursor: default;
}
#one-image.left-thumb,#one-image2.left-thumb {
   padding: 0 0px 0px 25px;
   margin-bottom: 40px;
}
#image-additional,#image-additional2 {
    float: left;
    padding: 0;
    text-align: center;
}

#image-additional.bottom-thumb li,#image-additional2.bottom-thumb li {
    margin: 3px;
    border: 1px solid #dedede;
}

#image-additional .slick-current,#image-additional2 .slick-current {
    border-color: #333 !important;
}
/* Мгновенное переключение изображений без анимации */
.product .product-gallery .slick-track,
.product .product-gallery .slick-list {
    transition: none !important;
}
.product .slick-slide img {
    margin: 0 auto;
    max-width: 100%;
    background: #fff;
}
.product .over li {
filter: brightness(0.98);
    overflow: visible !important;
}
.product .izoom img {
    background: #fff;
}

.thumbnails {
    overflow: auto;
    clear: both;
    list-style: none;
    padding: 0;
    margin: 0;
}
.thumbnails > li {
    margin-left: 20px;
}
.thumbnails {
    margin-left: -20px;
}
.thumbnails > img {
    width: 100%;
}
.image-additional a {
    margin-bottom: 20px;
    padding: 5px;
    display: block;
    border: 1px solid #eaeaea;
}

.thumbnails .image-additional {
    float: left;
    margin-left: 20px;
}

.description-block {
    background: #f2f2f2;
}
.rel-block {
    padding-bottom: 80px;
    padding-top: 40px;
}
.tab-block {
    border-top: 1px solid #eaeaea;
}
.flex-tab {
    display: flex;
    padding: 0;
    margin: 0;
}
.flex-tab li {
flex-grow: 1;
font-size: 14px;
    font-weight: 900;
    margin-bottom: 0;
    border-bottom: 0;
}
.flex-tab li span {
line-height: 54px;
    display: inline-block;
    position: relative;
    cursor: pointer;
}
.flex-tab li.active span:after {
    content: "";
    position: absolute;
    background: #000;
    left: 0;
    right: 0;
    top: 0px;
    height: 4px;
}
.made-nav .li {
    overflow: hidden;
}
.made-nav .li .plus {
    position: absolute;
    width: 15px;
    height: 15px;
    right: 0;
    top: 17px;
}
.made-nav .li .plus:before,.made-nav .li .plus:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    border-bottom: 2px solid #333;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}
.made-nav .li .plus:before {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
    transform: translate(-50%, -50%) rotate(90deg);
}
.made-nav .li.active .plus:before {
    -webkit-transform: translate(-50%, -50%) rotate(0);
    transform: translate(-50%, -50%) rotate(0);
}
.made-nav .li .aclass {
    margin-bottom: -1px;
    padding: 15px 0px;
    font-size: 14px;
    font-weight: 900;
    background: transparent !important;
    display: none;
}
.made-nav .tab-pane {
float: left;
    width: 100%;
    padding: 60px 0px;
    display:none;
}
.made-nav .active .tab-pane {
    display:block;
}
.made-nav .active .aclass {
border-bottom: 3px solid black;
    color: black;
}
.attribute0 thead {
    display: none;
}

.attribute1 thead td {
    padding-top: 0 !important;
}
.attribute0 tbody tr:first-child td {
    border-top: 0;
    padding-top: 0;
}
.tmodel {
    border-width: 1px !important;
}
.tmodel td {
    padding: 8px !important;
}
.about-block li {
    width: 20%;
    text-align: center;
    border-right: 1px solid #ddd;
}
.about-block li:last-child {
    border-right: 0;
}
.about-block div {
    width: 100%;
    height: 95px;
}
.icon1 {
    background: url(../image/1.svg) no-repeat center;
}
.icon2 {
    background: url(../image/2.svg) no-repeat center;
}
.icon3 {
    background: url(../image/3.svg) no-repeat center;
}
.icon4 {
    background: url(../image/4.svg) no-repeat center;
}
.icon5 {
    background: url(../image/5.svg) no-repeat center;
}
.vblock {
    background: #efefef;
    padding-bottom: 40px;
}

.tag-block {
padding: 40px 0px;
}
.tag-block a {
    padding: 7px 13px;
    background: #e8e8e8;
    border-radius: 30px;
    margin-right: 5px;
    margin-bottom: 10px;
    display:inline-block;
}
.tag-block a:hover {
    background: #1f1f1f;
    color: #dddddd;
}
/* fixed colum left + content + right*/
@media (min-width: 768px) {
    #column-left  .product-layout .col-md-3 {
       width: 100%;
    }

    #column-left + #content .product-layout .col-md-3 {
       width: 50%;
    }

    #column-left + #content + #column-right .product-layout .col-md-3 {
       width: 100%;
    }

    #content + #column-right .product-layout .col-md-3 {
       width: 100%;
    }
}

/* fixed product layouts used in left and right columns */
#column-left .product-layout, #column-right .product-layout {
    width: 100%;
}

/* fixed mobile cart quantity input */
.input-group .form-control[name^=quantity] {
    min-width: 50px;
}

/* Missing focus and border color to overwrite bootstrap */
.btn-info:hover, .btn-info:active, .btn-info.active, .btn-info.disabled, .btn-info[disabled] {
    background-image: none;
    background-color: #df5c39;
}

.checkout-success #content a {
    border-bottom: 1px solid #d8d8d8;
    font-weight: 900;
}

/* LOGIN */
#forgotten, #forgotten2 {
   cursor:pointer; 
}
/*CART*/

#cart {
        padding-top: 30px;
        text-align: left;
}

.empty {
    font-size: 36px;
    line-height: 36px;
    font-weight: 900;
    color: #e6e6e6;
    text-transform: uppercase;
    margin-bottom: 25px;
    width: 100%;
}
#cart .empty {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    margin: 0;
    text-align: center;
}

#cart .trow {
    border-top: 1px solid #E6E6E6;
    border-bottom: 1px solid #E6E6E6;
    padding: 10px 0;
    width: 100%;
    transition: transform 0.5s;
    position: relative;
    margin-bottom: -1px;
}
#cart .shared-cart-header .tdes {
    width: 100%;
    padding-left: 0;
}
#cart .shared-cart-header ~ .shared-cart-header {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #E6E6E6;
}
#cart .shared-cart-name {
    border: none;
    box-shadow: none;
    background: #e3f2fd;
}
#cart .shared-cart-name:focus {
    outline: 1px dotted #ccc;
    border-radius: 2px;
}
#cart .shared-cart-actions-row input[type="checkbox"],
#cart #shared-cart-select-all,
#cart .tblock.tcb input.shared-cart-product-cb,
#cart .tblock.tcb input.shared-cart-product-select-cb,
#cart .shared-cart-select-all-products,
#cart .shared-cart-header input.shared-cart-select-all-products {
    display: inline-block !important;
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;
    margin: 0 6px 0 0;
    vertical-align: middle;
    appearance: checkbox;
    -webkit-appearance: checkbox;
    cursor: pointer;
}
#cart .trow.product-layout {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
}
#cart .trow.product-layout .tblock.tcb {
    flex: 0 0 28px;
    flex-shrink: 0;
    min-width: 28px;
    width: 28px;
    padding-top: 8px;
    display: flex !important;
    align-items: flex-start;
    visibility: visible !important;
    opacity: 1 !important;
}
#cart .trow.product-layout .tblock.tcb input.shared-cart-product-cb,
#cart .shared-cart-product .tblock.tcb input.shared-cart-product-select-cb {
    display: inline-block !important;
    cursor: pointer;
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;
    margin: 0;
    flex-shrink: 0;
    appearance: checkbox;
    -webkit-appearance: checkbox;
}
#cart .trow.product-layout .tblock.timage {
    flex: 0 0 70px;
}
#cart .trow.product-layout .tblock.tdes {
    flex: 1 1 auto;
    min-width: 0;
    padding-left: 22px;
}
#cart .shared-cart-product.trow {
    display: block;
}
#cart .shared-cart-product .tblock.tcb {
    flex: 0 0 28px;
    min-width: 28px;
    padding-top: 8px;
    display: flex !important;
    align-items: flex-start;
    visibility: visible !important;
    opacity: 1 !important;
}
#cart .shared-cart-product .tblock.timage {
    flex: 0 0 70px;
    width: 70px;
}
#cart .shared-cart-product .tblock.tdes {
    flex: 1 1 auto;
    min-width: 0;
    padding-left: 22px;
    display: flex;
    flex-wrap: nowrap;
}
#cart .shared-cart-product .tblock.tdes > .tblock {
    flex: 0 0 50%;
}
#cart .shared-cart-product .tblock.pname {
    display: flex;
    flex-wrap: nowrap;
}
#cart .shared-cart-product .tblock.pname .tblock.w50 {
    flex: 0 0 50%;
    width: auto;
}
#cart .shared-cart-product .tblock.pname > .tblock:last-child {
    flex: 0 0 50%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
#cart .shared-cart-product .tblock.tprice {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}
#cart .shared-cart-product .tblock.tprice > div {
    flex: 0 0 33.33%;
}
#cart .shared-cart-header-actions .btn,
#cart .shared-cart-header-actions a.btn {
    width: 35px;
    height: 35px;
    min-width: 35px;
    min-height: 35px;
    padding: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
#cart .shared-cart-header-actions .btn i,
#cart .shared-cart-header-actions a.btn i {
    margin: 0;
}
.shared-cart-link-toast {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px 28px;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  color: #0d47a1;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
  text-align: center;
  max-width: min(440px, calc(100vw - 24px));
  box-sizing: border-box;
  z-index: 9999;
  box-shadow: 0 8px 24px rgba(21, 101, 192, 0.25), 0 0 0 1px rgba(21, 101, 192, 0.1);
  opacity: 1;
  transition: opacity 0.3s ease;
}
.shared-cart-link-toast.fade-out {
  opacity: 0;
}
@media (max-width: 480px) {
  .shared-cart-link-toast {
    font-size: 17px;
    padding: 20px 24px;
    max-width: calc(100vw - 24px);
    line-height: 1.45;
  }
}
#shared-carts-block .shared-cart-product-select-cb,
#shared-carts-block .shared-cart-select-all-products {
    display: inline-block !important;
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;
    margin: 0 6px 0 0;
    vertical-align: middle;
    appearance: checkbox;
    -webkit-appearance: checkbox;
    cursor: pointer;
}
#cart .btn-create-link,
#shared-carts-block .btn-create-link {
    background-color: #FFFFFF !important;
    border: 1px solid #ccc !important;
    color: #333333 !important;
    padding: 0 10px !important;
    font-size: 12px !important;
    height: 28px !important;
    line-height: 26px !important;
    box-sizing: border-box !important;
}
#cart .btn-create-link:hover,
#shared-carts-block .btn-create-link:hover {
    background-color: #f5f5f5 !important;
    border: 1px solid #adadad !important;
    color: #333333 !important;
}
#cart-subcart-modal .modal-footer {
    display: flex;
    justify-content: space-between;
}
#cart-subcart-modal .modal-footer .btn-shared-cart-checkout {
    background-color: #1DACE8 !important;
    border-color: #1DACE8 !important;
    color: #FFFFFF !important;
    padding: 0 10px !important;
    font-size: 13px !important;
    height: 28px !important;
    line-height: 26px !important;
    box-sizing: border-box !important;
}
#cart-subcart-modal .modal-footer .btn-shared-cart-checkout:hover {
    background-color: #1899d4 !important;
    border-color: #1899d4 !important;
    color: #FFFFFF !important;
}
#cart-subcart-modal .modal-footer .btn-delete-selected-subcart {
    background-color: #FFFFFF !important;
    border: 1px solid #ccc !important;
    color: #333333 !important;
    padding: 0 10px !important;
    font-size: 12px !important;
    height: 28px !important;
    line-height: 26px !important;
    box-sizing: border-box !important;
}
#cart-subcart-modal .modal-footer .btn-delete-selected-subcart:hover {
    background-color: #f5f5f5 !important;
    border: 1px solid #adadad !important;
    color: #333333 !important;
}
#cart .btn-delete-subcart,
#cart .btn-delete-selected-subcart,
#shared-carts-block .btn-delete-subcart,
#shared-carts-block .btn-delete-selected-subcart {
    background-color: #FFFFFF !important;
    border: 1px solid #ccc !important;
    color: #333333 !important;
    padding: 0 10px !important;
    font-size: 12px !important;
    height: 28px !important;
    line-height: 26px !important;
    box-sizing: border-box !important;
}
#cart .btn-delete-subcart:hover,
#cart .btn-delete-selected-subcart:hover,
#shared-carts-block .btn-delete-subcart:hover,
#shared-carts-block .btn-delete-selected-subcart:hover {
    background-color: #f5f5f5 !important;
    border: 1px solid #adadad !important;
    color: #333333 !important;
}
#cart .btn-shared-cart-checkout,
#shared-carts-block .btn-shared-cart-checkout {
    background-color: #1DACE8 !important;
    border-color: #1DACE8 !important;
    color: #FFFFFF !important;
    padding: 0 10px !important;
    font-size: 13px !important;
    height: 28px !important;
    line-height: 26px !important;
    box-sizing: border-box !important;
}
#cart .btn-shared-cart-checkout:hover,
#shared-carts-block .btn-shared-cart-checkout:hover {
    background-color: #1899d4 !important;
    border-color: #1899d4 !important;
    color: #FFFFFF !important;
}
#cart li.shared-carts-label.shared-cart-item {
    display: none !important;
}
#cart .shared-cart-total-row {
    clear: both;
    text-align: left;
    width: 100%;
    position: relative;
    z-index: 2;
}
#cart .shared-cart-total-row .over {
    display: flex;
    justify-content: flex-start;
    overflow: visible;
}
#cart .shared-cart-total-row .shared-cart-actions-row {
    flex-shrink: 0;
    overflow: visible;
}
#cart .shared-cart-total-row .total-block {
    float: none;
    width: auto;
}
#cart .shared-carts-label.in50 {
    clear: both;
    margin-left: 0;
    padding-left: 0;
    vertical-align: top;
    text-align: left !important;
}
#cart .tblock {
display:inline-block;
    vertical-align: middle;
}
.w50 {
width: 50%;
}
.tdes>.tblock {
width: 50%;
}
.tprice>div {
    width: 33.3%;
}

/* Сетка строки корзины Madeshop: фото — номер — название — срок — кол-во — сумма */
#cart .cart-product-line {
    display: flex;
    align-items: flex-start;
    width: 100%;
    box-sizing: border-box;
}
#cart .cart-grid__cb {
    flex: 0 0 28px;
    width: 28px;
    text-align: center;
    padding-top: 4px;
    box-sizing: border-box;
}
#cart .cart-grid__cb--spacer {
    min-height: 1px;
}
#cart .cart-grid {
    flex: 1;
    min-width: 0;
    display: grid;
    align-items: start;
    gap: 8px 10px;
    /* minmax(0, …) — колонки могут сжиматься, иначе сумма уезжает за экран на мобильных */
    grid-template-columns: 78px minmax(0, 1fr) minmax(0, 2.2fr) minmax(0, 1fr) 86px minmax(0, 1.35fr);
    box-sizing: border-box;
}
#cart .cart-table-head-row {
    list-style: none;
    width: 100%;
    clear: both;
    padding: 4px 0 10px;
    margin: 0;
    border-bottom: 1px solid #ddd;
}
#cart .cart-table-head-row--sub {
    padding-top: 8px;
    margin-top: 4px;
}
#cart .cart-grid--head {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    align-items: end;
}
#cart .cart-grid__h-qty,
#cart .cart-grid__h-sum {
    text-align: right;
}
#cart .cart-grid__h-photo,
#cart .cart-grid__h-sku,
#cart .cart-grid__h-name,
#cart .cart-grid__h-term {
    text-align: left;
}
#cart .cart-grid__col.cart-grid__sku {
    font-size: 13px;
    word-break: break-word;
}
#cart .cart-grid__col.cart-grid__sku a {
    color: #337ab7;
    text-decoration: underline;
}
#cart .cart-grid__col.cart-grid__sku a:hover {
    color: #23527c;
}
#cart .cart-grid__col.cart-grid__name {
    min-width: 0;
}
#cart .cart-grid__col.cart-grid__term {
    font-size: 12px;
    color: #555;
}
#cart .cart-grid__col.cart-grid__qty {
    justify-self: end;
}
#cart .cart-grid__col.cart-grid__sum {
    min-width: 0;
    max-width: 100%;
}

/* Количество: слева уменьшить (‹), справа увеличить (›) */
#cart .cart-grid__qty .qty.qty--horizontal {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6px;
    vertical-align: middle;
}
#cart .cart-grid__qty .qty.qty--horizontal > div.plus,
#cart .cart-grid__qty .qty.qty--horizontal > div.minus {
    float: none;
    flex: 0 0 auto;
    width: 26px;
    line-height: 26px;
    text-align: center;
}
#cart .cart-grid__qty .qty.qty--horizontal .input-quantity {
    float: none !important;
    margin: 0;
}

/* Сумма строки + иконки удалить/избранное справа после стоимости */
#cart .tprice-col-total {
    vertical-align: middle;
}
#cart .tprice-total-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
    width: 100%;
    min-width: 0;
}
#cart .tprice-total-sum {
    white-space: nowrap;
}

@media (max-width: 767px) {
    /* строка корзины не вылезает за экран: прокрутка внутри строки при необходимости */
    #cart .cart-product-line {
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
    }
    /* мобильная раскладка: артикул под фото, больше места названию */
    #cart .cart-grid {
        column-gap: 8px;
        row-gap: 6px;
        grid-template-columns: 66px minmax(0, 2.2fr) minmax(52px, 0.75fr) max-content minmax(76px, 1fr);
    }
    #cart .cart-grid--head {
        font-size: 11px;
    }
    #cart .cart-grid--head .cart-grid__h-sku {
        display: none;
    }
    #cart .cart-grid--head .cart-grid__h-photo { grid-column: 1; }
    #cart .cart-grid--head .cart-grid__h-name { grid-column: 2; }
    #cart .cart-grid--head .cart-grid__h-term {
        grid-column: 3;
        padding-left: 8px;
    }
    #cart .cart-grid--head .cart-grid__h-qty { grid-column: 4; }
    #cart .cart-grid--head .cart-grid__h-sum { grid-column: 5; }
    #cart .cart-grid--body .cart-grid__photo {
        grid-column: 1;
        grid-row: 1;
    }
    #cart .cart-grid--body .cart-grid__sku {
        grid-column: 1;
        grid-row: 2;
        font-size: 11px;
        line-height: 1.15;
        overflow-wrap: anywhere;
        word-break: break-word;
        margin-top: -6px;
        margin-bottom: 14px;
        position: relative;
        z-index: 2;
    }
    #cart .cart-grid--body .cart-grid__sku a {
        display: inline-block;
        line-height: 1.2;
    }
    #cart .cart-grid--body .cart-grid__name {
        grid-column: 2;
        grid-row: 1 / span 2;
        padding-left: 2px;
        position: relative;
        overflow: visible;
    }
    #cart .cart-grid--body .cart-grid__name .mini-cart-meta {
        position: relative;
        left: -58px;
        margin-top: 22px;
        width: 112px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 3px;
        z-index: 1;
    }
    #cart .cart-grid--body .cart-grid__name .mini-cart-brand {
        margin-left: 0;
    }
    #cart .cart-grid--body .cart-grid__term {
        grid-column: 3;
        grid-row: 1;
        justify-self: start;
        padding-left: 8px;
    }
    #cart .cart-grid--body .cart-grid__qty {
        grid-column: 4;
        grid-row: 1;
    }
    #cart .cart-grid--body .cart-grid__sum {
        grid-column: 5;
        grid-row: 1;
    }
    #cart .cart-grid__col.cart-grid__qty {
        justify-self: end;
        align-self: start;
        min-width: 0;
        width: max-content;
        max-width: 100%;
        margin-left: auto;
        padding-left: 2px;
        transform: translateX(8px);
    }
    #cart .cart-grid__qty .qty.qty--horizontal {
        gap: 3px;
        padding-right: 0;
    }
    #cart .cart-grid__qty .qty.qty--horizontal > div.plus,
    #cart .cart-grid__qty .qty.qty--horizontal > div.minus {
        width: 16px;
        line-height: 16px;
        font-size: 9px;
    }
    #cart .cart-grid__qty .qty.qty--horizontal > div .fa {
        font-size: 11px;
        line-height: 1;
    }
    #cart .cart-grid__qty .qty.qty--horizontal .input-quantity {
        height: 18px !important;
        width: 18px !important;
        min-height: 18px;
        min-width: 18px;
        font-size: 8px;
        line-height: 18px;
        border-radius: 50%;
        float: none !important;
        display: block;
        margin: 0;
    }
    #cart .tprice-total-actions {
        flex-direction: column;
        align-items: flex-end;
        justify-content: flex-start;
        flex-wrap: nowrap;
        gap: 6px;
        min-width: 0;
    }
    #cart .tprice-row-icons {
        flex-shrink: 0;
        justify-content: flex-end;
    }
    #cart .tprice-total-sum {
        white-space: normal;
        text-align: right;
        line-height: 1.2;
        font-size: 13px;
        width: 100%;
    }
    #cart .tprice-row-icons i {
        width: 24px;
        line-height: 24px;
        font-size: 13px;
    }
    #cart .shared-cart-total-row .shared-cart-actions-row {
        display: flex !important;
        align-items: center;
        gap: 6px !important;
    }
    #cart .shared-cart-total-row .shared-cart-actions-row .btn {
        width: 28px !important;
        height: 28px !important;
        min-width: 28px !important;
        padding: 0 !important;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        line-height: 1 !important;
    }
    #cart .shared-cart-total-row .shared-cart-actions-row .btn .btn-label {
        display: none !important;
    }
    #cart .shared-cart-total-row .shared-cart-actions-row .btn .fa {
        margin: 0 !important;
        font-size: 13px;
        line-height: 1;
    }
    #cart .shared-cart-total-row .shared-cart-actions-row .btn-shared-cart-checkout .fa {
        font-size: 12px;
    }
}
#cart .tprice-row-icons {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}
#cart .tprice-row-icons i {
    width: 27px;
    line-height: 27px;
    text-align: center;
    background: #F8F8F8;
    border-radius: 100%;
    cursor: pointer;
}
#cart .tprice-row-icons i:hover {
    background: #000;
    color: #fff;
}

/* Одна колонка с названием — на всю ширину блока pname */
#cart .tdes > .tblock.pname > .tblock.w50:only-child {
    width: 100%;
}
#cart .shared-cart-product .tblock.pname .tblock.w50:only-child {
    flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
}

#cart .trow.open {
transform: rotateY(180deg);
background:#e6e6e6;
}
#cart .trow.open div {
    opacity: 0;
}

/* Только оверлей «Удалить?» — не все span в строке (иначе скрываются бейджи/артикул в микрокорзине) */
#cart .trow > span.r-talert {
transform: rotateY(-180deg);
    position: absolute;
    top: 50%;
    margin-top: -32px;
    z-index: 9;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 11px;
    display: none;
}
#cart .trow.open > span.r-talert {
    display: block;
}
.r-talert b {
width: 33px;
    line-height: 33px;
    display: inline-block;
    background: #dcdcdc;
    border-radius: 30px;
    cursor: pointer;
}
.r-talert b:hover {
    background: #000;
    color:#fff;
}
#cart .pname i {
    width: 27px;
    line-height: 27px;
    text-align: center;
    background: #F8F8F8;
    border-radius: 100%;
    margin-left: 5px;
    cursor: pointer;
}
#cart .pname i:hover {
    background: #000;
    color: white;
}

.timage, #cart img {
    width: 70px;
    filter: brightness(0.99);
}
.timage .fa {
   background: red;
    color: white;
    position: absolute;
    right: -15px;
    top: -9px;
    border: 3px solid #f7f7f7;
    width: 27px;
    line-height: 21px;
    font-size: 10px;
    z-index: 2;
    border-radius: 30px;
    text-align: center; 
}
.tdes {
    width: calc(100% - 70px);
    padding-left: 22px;
}
#cart .btn-block {
max-width: 270px;
}
#cart .btn-block input, #button-coupon, #del-coupon {
    border-radius: 0;
    height: 33px;
    border: 0;
    vertical-align: middle;
    background: black;
    outline: none;
}

button#del-coupon,#cart .btn-block input {
background: #efefef;
}
#del-coupon {
    padding: 0 10px;
}
#cart .btn-block i{
    line-height: 27px;
}
.go-link {
    text-transform: uppercase;
    font-size: 10px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 10px;
    cursor: pointer;
    color: #9c9c9c;
}
.total-block {
    float: right;
    width: 100%;
}
.over {
    overflow: hidden;
}
.class50 {
    width:50%;
    float:left;
}
.marg30 {
    margin: 30px 0px;
}
.abtn {
    padding: 20px 90px;
    background: #1d1d1d;
    margin-top: 45px;
    display: inline-block;
    color: white !important;
    font-weight: 900;
    font-size: 14px;
    text-transform: uppercase;
}
#cart .abtn {
    width: 100%;
    text-align: center;
    cursor: pointer;
}
.fast-form-btn {
    background: #e0e0e0;
    color: #1d1d1d !important;
}
#cart strong {
padding-left: 15px;
}
.in50 {
    font-size: 21px;
    font-weight: 900;
    margin-bottom: 30px;
    width: 50%;
    display: inline-block;
}
.qty {
    display: inline-block;
    font-weight: 900;
    vertical-align: middle;
    padding-right: 10px;
}
.qty div {
    text-align: center;
    line-height: 20px;
    width: 35px;
    font-size: 12px;
    cursor: pointer;
}
#input-quantity,.input-quantity {
   color: black;
    height: 35px;
    width: 35px;
    text-align: center;
    outline: none;
    font-size: 10px;
    padding: 0;
    border: 0;
    float: left;
    background: #e5e5e5;
    border-radius: 30px;
}
.fast-form {
    visibility: hidden;
    height: 0;
    overflow: hidden;
    padding: 0;
    margin: 0;
    border: none;
}
.fast-form.iopen {
    visibility: visible;
    height: auto;
    overflow: visible;
}
.quantity-group {
    vertical-align: middle;
}
.quantity-group .btn-primary {
    padding: 6px;
}
/*REVIEW*/
.rev {
    margin-bottom: 20px;
    border-bottom: 1px dotted #ddd;
}
.r-page {
margin: 40px 0 80px 0;
}
.row-rev {
    margin: 0px -10px;
}
.r-line {
    width: 150px;
    height: 10px;
    background: #e3e3e3;
    border-radius: 30px;
    position: relative;
    margin: 13px 0px;
}
.r-line div {
    height: 100%;
    background: #444;
    border-radius: 30px;
}
.r-line span {
position: absolute;
    top: -5px;
}
.r-line .rating {
left: -29px;
    font-weight: 900;
    font-size: 10px;
    width: 20px;
    line-height: 20px;
    background: #dedede;
    color: #555;
    text-align: center;
    border-radius: 30px;
}
.r-line .count-r {
right: -11px;
color: #a0a0a0;
}
.r-top {
   overflow: hidden;
   border-bottom: 1px solid #ddd;
   margin-bottom: 25px;
    padding-bottom: 20px;
}
#madeshop-review {
    margin-bottom: 40px;
}

.review-block.slick-slide {
    box-shadow: rgba(0, 0, 0, 0.09) 0px 0px 21px;
    padding: 10px 25px;
    background: #f9f9f9;
    margin: 0 10px;
}
.rev-info {
    margin-bottom: 10px;
}
.rev-info ul {
    display: inline-block;
    vertical-align: middle;
    height: 18px;
    margin-right: 15px;
    margin-bottom: 0;
}
.rev-autor {
    display: inline-block;
    font-weight: 900;
    vertical-align: middle;
}
.rating-block {
    float: right;
    padding-right: 20px;
}
.rev-info li, .rating li {
    display: inline-block;
    width: 10px;
    height: 10px;
    line-height: 30px;
    text-align: center;
    background: #444;
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    font-size: 11px;
}
.rating {
    display: inline-block;
    margin-right: 10px;
}
.rating li {
    width: 8px;
    height: 8px;
}
.rev-info li.nocheck, .rating li.nocheck {
    background: #ccc;
}
.review-block:not(.slick-slide) .over {
    padding-bottom: 10px;
}
.rev-data {
    font-weight: 900;
    line-height: 39px;
    color: #a0a0a0;
}
.r-vote {
float: right;
vertical-align: middle;
}
.r-vote .fa {
    color: #cacaca;
    font-size: 18px;
    margin-right: 3px;
}
.r-vote div:hover .fa {
color: #333 !important;
}
.block-minus {
display: inline-block;
    margin-right: 10px;
    color: #ef5350;
    cursor: pointer;
}
.block-plus {
    display: inline-block;
    color: #4CAF50;
    margin-right: 15px;
    cursor: pointer;
}
.r-num {
display: inline-block;
}

.rate:not(:checked) > label {
  float: right;
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin-right: 3px;
    background: #dcdbdb;
    border-radius: 30px;
}

.rate:not(:checked) > label:before { content: ' ';border: none; }

.rate > input:checked ~ label { background: #000; }

.rate:not(:checked) > label:hover, .rate:not(:checked) > label:hover ~ label { background: #a0a0a0; }

.rate > input:checked + label:hover, .rate > input:checked + label:hover ~ label, .rate > input:checked ~ label:hover, .rate > input:checked ~ label:hover ~ label, .rate > label:hover ~ input:checked ~ label { background: #a0a0a0; }

#review .pag-page {
    position: static;
} 
.mtext {
    background: #eaeaea;
    padding: 15px 25px;
    margin-bottom: 30px;
}
.mtext b {
    display: block;
}
/* PANEL */

.spanel {
transform: translateY(-200%);
    position: fixed !important;
    z-index: 4;
    right: 0;
    top: 113px;
    padding-top: 0;
    left: 0;
    bottom: 0;
    overflow-y: auto;
    background: #fafafa;
    visibility: hidden;
    transition: 0.4s;
    transition-delay: .125s;
}


.spanel.open {
transform: none;
display: block !important;
visibility: visible;
}
.close-panel, .info-panel, .cart-panel {
    background: #fafafa;
    line-height: 64px;
    text-align: center;
    top: 0;
    position: absolute;
    left: 0;
    width: 100%;
    font-weight: 900;
    cursor: pointer;
    transition: .5s;
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    transform: translateY(-100%);
    border-bottom: 1px solid #efefef;
    z-index: 9;
    font-size: 14px;
}
/* #cart-panel: отступ сверху под кнопку «Закрыть» */
#cart-panel {
    padding-top: 65px;
}
/* cart-panel внутри #cart (fast-form) — не перекрывать подкорзины */
#cart .cart-panel {
    position: relative;
    left: auto;
    width: auto;
    top: auto;
    transform: none;
    z-index: auto;
}
.close-panel i {
    margin: 0 6px 0 -6px;
}
.info-panel i {
    margin-left: 8px;
    top: 2px;
    color: #cfcfcf;
    font-size: 18px;
    position: relative;
}
.account-url {
    margin: 0 auto;
    font-size: 20px;
    line-height: 37px;
    width: 130px;
}
.open .close-panel, .open .info-panel, .iopen .cart-panel {
    top: 65px;
    transition-delay: 0.5s;
}
.color2 .spanel {
    top: 84px;
}  
#clone {
    margin-top: 100px !important;
}
#clone img {
    margin: 0 auto;
    max-width: 100%;
    max-height: calc(100vh - 250px);
    object-fit: contain;
    filter: brightness(0.98);
}
#clone .zoom {
    background: none !important;
}
.zoom {
    background-color: #fff;
    background-repeat: no-repeat;	
}
.zoom0 .zoom, .zoom:not(:hover) {
    background-image: none !important;  
}
#clone.slick-slider{ 
    max-width: min(calc(100vw - 80px), calc((100vh - 250px) * 4 / 3));
    margin: 0 auto;
    margin-top: 60px;
    position: initial;
}
#clone .slick-track,
#clone .slick-list {
    transition: none !important;
}
#size-panel .container {
    margin-top: 110px;
    font-size: 14px;
    height: auto;
}
#size-panel table {
    overflow: hidden;
    width: 100%;
}

#size-panel td, #size-panel th {
  padding: 10px;
  position: relative;
  outline: 0;
}

body:not(.nohover) #size-panel tbody tr:hover {
  background-color: #f1f1f1;
}

#size-panel td:hover::after,
#size-panel thead th:not(:empty):hover::after,
#size-panel td:focus::after,
#size-panel thead th:not(:empty):focus::after { 
  content: '';  
  height: 10000px;
  left: 0;
  position: absolute;  
  top: -5000px;
  width: 100%;
  z-index: -1;
}

#size-panel td:hover::after,
#size-panel th:hover::after {
  background-color: #ddd;
}
#size-panel td:hover {
background-color: #000;
  color:#fff;
}

#size-panel td:focus::after,
#size-panel th:focus::after {
  background-color: #f1f1f1;
}

#size-panel td:focus::before,
#size-panel tbody th:focus::before {
  background-color: #f1f1f1;
  content: '';  
  height: 100%;
  top: 0;
  left: -5000px;
  position: absolute;  
  width: 10000px;
  z-index: -1;
}
#size-panel th {
    width: 25%;
}
#size-panel tr {
    border-bottom:1px solid #f1f1f1;
}
#size-panel table:not(:hover) tr:nth-child(odd) {
    background: #f1f1f1;
}

.color2 .top0 header {
    top: 0;
}
.top0 header {
    padding-top: 0;
}
.null {
    padding-top: 83px;
}

.color2 .spanel, .top0 .spanel {
    top: 82px;
}

@media screen and (max-width: 1101px) {
    .null {
    padding-top: 53px;
}
.home-2 .content-bottom {
    margin-top: 52px;
    height: calc(100vh - 52px);
}
.spanel {
    top: 52px !important;
}
    .container {
    padding: 0 25px;
}
    
    header,.logo-block {
    height: 53px;
    padding: 0;
    }
.icon-block {
    margin-top: 18px;
}
.color2 header {
    top: 0;
}
.color2 .spanel {
    top: 53px;
}
   .top-url {
    position: relative;
    font-size: 15px;
    background: #fafafa;
    border: 0;
    padding-top:15px;
    }
   .top-url li {
    display: block;
    padding: 0;
    border: 0 !important;
    }
    .top-url .pull-right {
        float:left!important;
    }
    .anim-border {
        display:none;
    }
.micon0 .logo-block {
    padding-left: 45px;
}
.micon0 #menu-url {
    position: absolute;
    left: 15px;
    top: 19px;
} 
.list-cat a {
    display: block;
    text-align: center;
    white-space: normal;
}
.list-cat img {
    display: block;
    margin: 0 auto;
}
#menu {
    display: none;
}
#menu li, .back {
    border-bottom: 1px solid #e6e6e6;
    background: #fafafa;
    float: none;
    position: relative;
} 

.back {
    padding: 10px 0;
    font-weight: 900;
}

 #menu .menu a,.aname {
    display: block !important;
    padding: 10px 0 !important;
}
 #menu .menu a div {
    display: inline-block;
}
#menu .title img {
    margin: 0px 15px 0px 0;
    width: 50px;
}
.children-image img {
    display: inline-block;
    margin: 0px 15px 0px 0;
    width: 50px;
    border-radius: 90px;
}
#menu .view-more {
    display: none !important;
}
#menu .nav {
    width: 100%;
    height: auto;
}
#menu .nav>li>a {
       padding:0;
   }
#menu .menu a.view-more {
    display: none !important;
}
.pod-li > .dropdown-menu {
    position: fixed;
    background: #fafafa;
    top: 52px;
    bottom: 0px;
    right: -100%;
    display: none;
    transition: 0.5s;
    width: 100%;
    left: inherit;
    float: none;
    overflow-y: scroll;
    padding: 0;
}
.flexMenu-popup {
    top: 0;
    display: block;
    padding: 0;
    
    position: relative !important;
    width: 100%;
}    
.flexMenu-popup>.container {
    width: auto;
    padding: 0;
}
.madeshop-slide .slick-next {
    display: none !important;
}
}
@media screen and (min-width: 1100px) {
 .mcolumn {
    width:20%;
}
 .blog-latest .mcolumn, .blog-category .mcolumn, .blog-article .mcolumn{
    width:25%;
}
.column-center {
   width:80%;
}   
    .top1 .null {
height: 112px;
}

    
    
    .color2 .top1 header {
    top: -30px;
}
.top1 header {
     padding-top: 30px;
 } 
 .no-cont {
   width:auto; 
   padding:0;
}

    .menu {
    height: 82px;
}

#menu-url {
    display: none;
}


    #menu.spanel {
       position: static !important;
    background: transparent;
    transform: initial;
    visibility: visible;
   }  

   .dropdown-block {
    display: none !important;
    right: 0 !important;
    padding: 20px 0;
   }
   .flexMenu-popup {
   display: none;
    top: 100%;
   }

   
   #menu .dropdown:hover>.dropdown-menu {
    display: block !important;
}
.dropdown-block .dropdown .dropdown-menu {
    display: block !important;
    position: static;
    float: none;
}
#menu .flexMenu-popup .first-li .dropdown-menu {
    display: none !important;
}


#menu .back, #menu .next {
    display: none;
}
#menu .w20, .flexMenu-popup .first-li {
    width: 20%;
    float: left;
} 
 
.dropdown-block:after {
    content: "";
    position: absolute;
    background: #00000012;
    height: 100vh;
    width: 100%;
    top: 100%;
    pointer-events: none;
}

.pimage1 .title img {
  display:block;  
}

}
@media (min-width: 768px) { 
 .ib b, .made-nav .li .plus {
    display: none;
}   

}
@media (max-width: 991px) { 
   
   .pleft,.pright {
       width: 100%;
   } 
   
}
@media (max-width: 768px) { 
    .container {
    padding: 0 15px;
}
    .product-layout {
    width: 50%;
    }
    /* Вид «список»: карточки друг под другом, не рядом */
    #content.product-view-list .product-layout.product-list,
    .product-view-list .product-layout.product-list {
    width: 100% !important;
    }
    .class50 {
    width: 100%;
    }
    #image-additional {
       display:none; 
    }
    #one-image {
    width: 100% !important;
    padding: 0;
    }
    
    #one-image .slick-dots {
    text-align: center;
    display:block !important;
    }
    .pright {
    padding-left: 15px;
}
.price-block {
    text-align: left;
}
.price-block h2 {
    border-left: 0;
    margin: 20px 0 4px 0 !important;
}
.tab-block {
    display: none;
}
.made-nav .li {
    border-bottom: 1px solid #ddd;
}
.made-nav .li .aclass {
    display: block;
    border-bottom: 1px solid #ddd;
}
.made-nav .li.active, .made-nav .li:last-child {
    border-bottom: none;
}
.about-block li {
    width: 33%;
    border:0px;
}

}
@media (max-width: 1280px) { 
.slide-block {
/*vertical-align: top !important;*/
    /*padding-top: 150px;*/
}

}
.section {
    overflow: hidden;
}
.section .m-bottom {
transform: translateY(30%);
    transition: 0.5s;
    transition-delay: 0.3s;
}
.section.active .m-bottom, .mobile .m-bottom {
    transform: none;
}

.category-page .m-bottom  {
    border-top: 1px solid #eaeaea;
}
.anim-top {
    transition: .5s;
    opacity: 0;
    transform: translateY(10%);
}

.m-bottom.visible .anim-top {
   transform: none; 
   opacity: 1;
}

/*VIEWED*/
.viewed {
   padding-bottom: 30px;
}
.viewed .h2 {
    color: #444;
    margin: 35px 0px;
}
.viewed img {
   filter: brightness(0.98);
}
.viewed a {
   margin-right: 15px;
   position: relative;
}
.viewed .price {
position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    text-align: center;
    color: white;
    justify-content: center;
    align-content: space-between;
    align-items: center;
    flex-direction: column;
    font-size: 15px;
    line-height: 20px;
    opacity: 0;
    transition: 0.3s;
}
.viewed a:hover .price {
    opacity:1;
}
/* SLIDER */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
    outline: none;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}



/*RESET*/

.slick-track {
    margin: 0;
}
/*.module .slick-list {
    overflow: visible!important;
}

.module .slick-slide {
   opacity: 0;
    transition: opacity 0.5s;
}
.slick-slide.slick-active {
   opacity: 1;
}*/

.madeshop-slide .slick-next {
    position:absolute;
right: 0 !important;
    top: 0 !important;
    height: 100%;
    width: 50%;
    cursor: url(../image/right-arrow.png) 30 30,auto !important;
    background: transparent !important;
    border: 0;
    transform: none;
}
#sl-dots {
position: absolute;
    bottom: 29px;
    z-index: 2;
    left: 0;
    right: 0;
}

.slick-dots {
    padding: 0;
    margin: 0;
    list-style: none;
}
.slick-dots li {
    display: inline-block;
    width: 5px;
    height: 5px;
    margin-right: 12px;
    cursor: pointer;
    background: #ccc;
    border-radius: 30px;
    transition: 0.5s;
    position: relative;
}
.slick-dots li.slick-active:after {
    content: "";
    width: 7px;
    height: 7px;
    background: #333333;
    display: block;
    position: absolute;
    top: -1px;
    left: -1px;
    border-radius: 30px;
}

.slick-arrow, #clone .slick-arrow {
    width: 32px;
    line-height: 30px;
    cursor: pointer;
    z-index: 1;
}
.slick-arrow:hover, #clone .slick-arrow:hover {
    background: #222;
    color: #fff;
    border-color: #222;
}
.slick-arrow {
    top: -65px;
    right: 0;
    position: absolute;
    text-align: center;
    border: 1px solid #eaeaea;
    background: #eaeaea;
    border-radius: 30px;
}
.slick-dots {
   margin-left: 5px;
}
#clone .slick-arrow {
    position:absolute;
    top: 50%;
}
#clone .fa-chevron-left {
    left:50px;
}
#clone .fa-chevron-right {
    right:50px;
}

#clone .slick-dots {
    text-align: center;
}

.arrow-left {
    right: 50px;
}

.arr-middle .slick-arrow {
    top: 50%;
    transform: translateY(-50%);
}
.arr-middle .arrow-left {
    left: -15px;
    right: initial;
}
.arr-middle .arrow-right {
    left: initial;
    right: -15px;
}
.module .slick-list {
    overflow: visible;
}
.slick-slide {
    visibility: hidden;
}
.slick-slide.slick-active {
    visibility: visible;
}
.owl-wrapper-outer {
    box-shadow: none !important;
    border: 0 !important;
}
#image-additional.bottom-thumb {
    padding: 0px 18px;
}
.bottom-thumb .slick-arrow  {
    top: 50%;
    transform: translate(0, -50%);
}

.bottom-thumb .arrow-left {
    left: 4px;
}
.bottom-thumb .arrow-right {
    right: 4px;
}
#image-additional.slick-vertical {
    padding: 18px 0;
}
.slick-vertical .slick-arrow  {
    left: 50%;
    transform: translateX(-50%);
}
.slick-vertical .slick-arrow.fa-angle-up {
    top: 0px;
}
.slick-vertical .slick-arrow.fa-angle-down {
    bottom: 0px;
    top: auto;
}
/*BRANDS*/

.brands {
    padding: 30px 0;
}
.brands img {
    margin: 0 auto;
}

/*BANNERS*/

.banners .bann-btn {
    bottom: 20px;
    left: 20px;
}

.b-info b {
font-size: 20px;
}
.ban1 {
    background: #e6e6e6;
    background-size: 89%;
    height: 450px;
    padding: 11%;
}
/*BLOG*/

.article-block {
    padding: 25px 0;
    min-height: 150px;
}
.article-block h4 {
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 10px 0px;
}
.article-block p {
    display:none;
}
.article-block span {
    margin-right:4px;
}
.article-block svg {
    width: 12px;
    fill: #222;
    margin-right:4px;
}
.articles img {
width: 100%;
}
.mcolumn h3 {
    font-size: 14px;
    padding: 0;
    margin: 0px 5px 20px 0;
}
.mcolumn h4 {
    margin: 0;
}
.mcolumn h3:after {
    content: none;
}
.mcolumn .col-xs-12 {
width: 100%;
}
.mcolumn .article-block {
    padding: 0 5px;
    overflow: hidden;
    margin-bottom: 20px;
     min-height: auto;
}
.mcolumn .article-block p {
display: none;
}
.mcolumn h4 {  
    font-size: 10px;
}
.showcase-list {
    padding-bottom: 80px;
}
.col-sm-9.showcase-list  {
    padding-left: 55px;
}
.art .image {
    overflow: hidden;
}
.art img {
    transform: scale(1);
    transition: 1.3s;
}
.art:hover img {
    transform: scale(1.2);
}
.article-top {
    background: #f0f0f0;
    background: repeating-linear-gradient(90deg, #dfdfdf, 0.1em, transparent 0.1em, transparent 10em) rgb(239, 239, 239);
    text-align: center;
    padding: 30px 0px;
    margin-bottom: 80px;
}
.article-top .sort-block {
    text-align: center;
}
.article-top .bline:after {
    background: #f0f0f0;
}
.blog-text {
    font-size: 14px;
    line-height: 26px;
}
.flex-group {
    display: inline-flex;
    margin-right: 15px;
    color: #777;
    fill: #777;
    align-items: center;
}
.flex-group svg {
    margin-right: 5px;
    width: 20px;
}
.article-block .flex-group svg {
    width: 16px;
    fill: #777;
}
.bg-ra {
    padding: 45px 0;
    background: #f0f0f0;
}
.bg-rp {
    padding: 45px 0 60px 0;
}
.bg-rewp {
    padding: 45px 0;
    background: #f2f2f2;
}

@media (max-width: 767px) {
.list-cat li {
    width: 50%;
}
.product-list .product-thumb .product-list-caption {
    min-height: 0;
    margin: 0;
    padding: 0 10px;
}
.product-thumb .caption {
    min-height: 70px;
    margin: 0 10px;
    padding: 0;
}
.product-thumb .image {
    margin: 8px;
}
.product-thumb .price span {
    display: block;
    margin: 5px 0;
}
.w50, .column-center {
    width: 100%;
}
.col-sm-9.showcase-list {
    padding-left: 15px;
}
#cart .btn-block {
    max-width: 100%;
}
#cart .pname i {
    margin: 3px 0px 0px 0px;
}
#cart .shared-cart-product .tblock.pname {
    flex-wrap: wrap;
}
#cart .shared-cart-product .tblock.pname .tblock.w50,
#cart .shared-cart-product .tblock.pname > .tblock:last-child {
    flex: 0 0 100%;
    width: 100%;
}
#cart .shared-cart-product .tblock.pname > .tblock:last-child {
    margin-top: 6px;
}
.slick-arrow {
    top: 50%;
    transform: translateY(-50%);
}
.arrow-left {
    left: -15px;
    right: initial;
}
.arrow-right {
    left: initial;
    right: -15px;
}
.banner {
    margin-bottom: 30px;
}
.bann-btn.cathref {
    left: 5px;
    top: 6px;
    background: none;
}
.bann-btn.small {
    width: 20px !important;
    line-height: 20px;
    padding-right: 7px;
}
.bann-btn span {
    opacity: 0 !important;
}
.rating-block {
    float: left;
    padding-left: 30px;
}
#search .input-lg {
    font-size: 12px;
}
.sort-block span {
    display: none;
}
.sort-block {
    text-align: left;
}

.flogo {
    margin: 20px 0;
}
.b-footer {
    margin-top: 10px;
}
.b-footer .text-right {
    text-align: left;
    margin: 15px 3px;
}
}
#cookie-consent-popup {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    background: #fafafa;
    color: #333;
    left: 0;
    right: 0;
    bottom: -100%;
    transition: 0.4s;
    padding: 20px 20px;
    text-align: center;
    z-index: 999;
}
#cookie-consent-popup .cookie-text {
    max-width: 900px;
}
#cookie-consent-popup .cookie-policy-link {
    color: #1e90ff;
    text-decoration: underline;
    font-weight: 600;
}
#cookie-consent-popup .cookie-policy-link:hover {
    color: #87ceeb;
}
#cookie-consent-popup.active {
    bottom: 0;
}
#cclose {
    border: 1px solid #333;
    color: #333;
    padding: 0 15px;
    margin-left: 10px;
    cursor: pointer;
}
.insta .title {
    padding-bottom: 40px;
}
.insta b, .insta i {
    font-size: 34px;
}
.insta p {
margin-top: 10px;
}
.insta img {
width: 100%;
}

/* VK ID One Tap блок входа */
.vkid-login-block {
  padding: 24px;
  margin: 0;
}
.vkid-login-text {
  margin: 0 0 16px 0;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
  color: #333;
  text-align: center;
}
.vkid-button-wrap {
  min-height: 36px;
  margin-bottom: 16px;
}
.vkid-legal-text {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
  margin: 0;
  text-align: center;
}
.vkid-legal-text a {
  color: #2563eb;
  text-decoration: underline;
}
.vkid-legal-text a:hover {
  color: #1d4ed8;
}
/* Панель входа — блок выше, без лишнего пространства */
#login-panel .table {
  height: auto;
}
#login-panel .table-cell {
  vertical-align: top;
}
#login-panel .w65 {
  padding-top: 80px;
  padding-bottom: 24px;
}
/* Залогиненное состояние — отступ для списка ссылок (a + .container = после info-panel) */
#login-panel > a + .container {
  padding-top: 80px;
}

/* Попап галереи изображений в категории (клик по фото) */
.product-gallery-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.2s, opacity 0.2s;
}
.product-gallery-popup.product-gallery-popup-open {
  visibility: visible;
  opacity: 1;
}
.product-gallery-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  cursor: pointer;
}
.product-gallery-popup-inner {
  position: relative;
  z-index: 1;
  max-width: 95vw;
  max-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-gallery-popup-image-wrap {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
  position: relative;
  min-width: 200px;
  min-height: 150px;
}
.product-gallery-popup-spinner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 42px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.product-gallery-popup-lemark {
  display: inline-flex;
}
.product-gallery-popup-lemark span {
  opacity: 0.35;
  animation: product-gallery-lemark-char 1.8s ease-in-out infinite;
}
.product-gallery-popup-lemark span:nth-child(1) { animation-delay: 0s; }
.product-gallery-popup-lemark span:nth-child(2) { animation-delay: 0.15s; }
.product-gallery-popup-lemark span:nth-child(3) { animation-delay: 0.3s; }
.product-gallery-popup-lemark span:nth-child(4) { animation-delay: 0.45s; }
.product-gallery-popup-lemark span:nth-child(5) { animation-delay: 0.6s; }
.product-gallery-popup-lemark span:nth-child(6) { animation-delay: 0.75s; }
@keyframes product-gallery-lemark-char {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 1; }
}
.product-gallery-popup-image-wrap.product-gallery-popup-loaded .product-gallery-popup-spinner {
  display: none;
}
/* Скрыть кнопки навигации и zoom во время загрузки */
.product-gallery-popup-loading .product-gallery-popup-prev,
.product-gallery-popup-loading .product-gallery-popup-next,
.product-gallery-popup-loading .product-gallery-popup-zoom {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.product-gallery-popup-img {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.product-gallery-popup-image-wrap:not(.product-gallery-popup-loaded) .product-gallery-popup-img {
  visibility: hidden;
  position: absolute;
}
.product-gallery-popup-image-wrap.product-gallery-popup-zoomed {
  transform: scale(1.5);
  cursor: zoom-out;
}
.product-gallery-popup-close,
.product-gallery-popup-prev,
.product-gallery-popup-next,
.product-gallery-popup-zoom {
  position: absolute;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: none;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background 0.2s;
}
.product-gallery-popup-close:hover,
.product-gallery-popup-prev:hover,
.product-gallery-popup-next:hover,
.product-gallery-popup-zoom:hover {
  background: rgba(0, 0, 0, 0.75);
}
.product-gallery-popup-close {
  top: 12px;
  right: 12px;
}
.product-gallery-popup-prev {
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
}
.product-gallery-popup-next {
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}
.product-gallery-popup-zoom {
  bottom: 12px;
  right: 12px;
}
.product-gallery-popup-close,
.product-gallery-popup-prev,
.product-gallery-popup-next,
.product-gallery-popup-zoom {
  transition: visibility 0.2s, opacity 0.2s, background 0.2s;
}
