

/* Start:/bitrix/components/bitrix/system.pagenavigation/templates/round/style.min.css?15695626332530*/
.bx-pagination{margin:10px 0}.bx-pagination .bx-pagination-container{text-align:center;position:relative}.bx-pagination .bx-pagination-container ul{padding:0;margin:0;list-style:none;display:inline-block}.bx-pagination .bx-pagination-container ul li{display:inline-block;margin:0 2px 15px 2px}.bx-pagination .bx-pagination-container ul li span{-webkit-transition:color .3s ease,background-color .3s ease,border-color .3s ease;-moz-transition:color .3s ease,background-color .3s ease,border-color .3s ease;-ms-transition:color .3s ease,background-color .3s ease,border-color .3s ease;-o-transition:color .3s ease,background-color .3s ease,border-color .3s ease;transition:color .3s ease,background-color .3s ease,border-color .3s ease;background:#eff0f1;padding:0 8px;display:block;height:32px;min-width:32px;line-height:32px;color:#444;font-size:14px;border-radius:16px;vertical-align:middle;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bx-pagination .bx-pagination-container ul li a{text-decoration:none;display:block;border-radius:16px;height:32px;min-width:32px;line-height:32px;color:#444;vertical-align:middle}.bx-pagination .bx-pagination-container ul li a:hover span{background:#dadada}.bx-pagination .bx-pagination-container ul li.bx-active span{background:#0083d1;color:#fff}.bx-pagination .bx-pagination-container ul li.bx-pag-all a span,.bx-pagination .bx-pagination-container ul li.bx-pag-prev a span,.bx-pagination .bx-pagination-container ul li.bx-pag-next a span{background:#fff;border:2px solid #eff0f1;line-height:28px;padding:0 18px;color:#444}.bx-pagination .bx-pagination-container ul li.bx-pag-all span,.bx-pagination .bx-pagination-container ul li.bx-pag-prev span,.bx-pagination .bx-pagination-container ul li.bx-pag-next span{color:#aab1b4;background:#fff;border:2px solid #eff0f1;line-height:28px;padding:0 18px}.bx-pagination .bx-pagination-container ul li.bx-pag-all a:hover span,.bx-pagination .bx-pagination-container ul li.bx-pag-prev a:hover span,.bx-pagination .bx-pagination-container ul li.bx-pag-next a:hover span{background:#fff;border-color:#dadada;color:#000}.bx-pagination.bx-green .bx-pagination-container ul li.bx-active span{background:#3bc915;color:#fff}.bx-pagination.bx-yellow .bx-pagination-container ul li.bx-active span{background:#f9a91d;color:#fff}.bx-pagination.bx-red .bx-pagination-container ul li.bx-active span{background:#e22b2b;color:#fff}.bx-pagination.bx-blue .bx-pagination-container ul li.bx-active span{background:#0083d1;color:#fff}
/* End */


/* Start:/local/templates/dizel/components/bitrix/catalog.item/bootstrap_v4/style.css?176173079915618*/
/* ========================================
   ПЕРЕМЕННЫЕ И ОСНОВНЫЕ НАСТРОЙКИ
   ======================================== */
:root {
    --primary-color: #0083D1;
    --accent-color: #f9a91d;
    --text-dark: #3f3f3f;
    --text-muted: #6c757d;
    --text-light: #a5a5a5;
    --border-color: #e6e6e6;
    --bg-light: #f3f3f3;
    --white: #fff;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, .06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, .12);
    --transition: all 250ms ease;
    --border-radius: 6px;
}

/* ========================================
   КОНТЕЙНЕР ТОВАРА
   ======================================== */
.product-item-container {
    position: relative;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    padding: 0.875rem;
    margin-bottom: 15px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.product-item-container:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.product-item-container.hover {
    z-index: 17;
}

/* ========================================
   КАРТОЧКА ТОВАРА
   ======================================== */
.product-item {
    display: block;
    box-sizing: border-box;
    padding-top: 8px;
    width: 100%;
    border: 1px solid transparent;
    border-radius: var(--border-radius);
    background: var(--white);
    transition: var(--transition);
}

.product-item-line-card .product-item {
    border-bottom: 1px solid var(--border-color);
}

.bx-no-touch .product-item-container.hover .product-item {
    position: absolute;
    right: -12px;
    left: -12px;
    padding: 12px 12px 0;
    width: auto;
    box-shadow: var(--shadow-md);
    animation: product-item-hover 250ms ease;
}

@keyframes product-item-hover {
    0% {
        position: absolute;
        left: 0;
        right: 0;
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
        padding-left: 0;
        padding-right: 0;
    }
    100% {
        box-shadow: var(--shadow-md);
        left: -12px;
        right: -12px;
        padding-left: 12px;
        padding-right: 12px;
    }
}

/* ========================================
   ИЗОБРАЖЕНИЕ ТОВАРА
   ======================================== */
.product-item-image-wrapper {
    position: relative;
    display: block;
    padding-top: 100%;
    width: 100%;
    transition: var(--transition);
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 8px;
}

.product-item-container.hover.product-item-scalable-card .product-item-image-wrapper {
    padding-top: 54%;
}

.product-item-image-original,
.product-item-image-alternative {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transition: opacity 250ms linear;
}

.product-item-image-original {
    z-index: 11;
}

.product-item-image-alternative {
    z-index: 13;
    opacity: 0;
}

.bx-no-touch .product-item-container.hover .product-item-image-original {
    opacity: 0;
}

.bx-no-touch .product-item-container.hover .product-item-image-alternative {
    opacity: 1;
}

/* ========================================
   СЛАЙДЕР ИЗОБРАЖЕНИЙ
   ======================================== */
.product-item-image-slider-slide-container {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    overflow: hidden;
    width: 100%;
    height: 100%;
    transition: opacity 250ms ease;
}

.product-item-image-slide {
    position: relative;
    display: none;
    height: 100%;
    background-color: var(--white);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform .5s ease-in-out;
    backface-visibility: hidden;
}

.product-item-image-slider-slide-container > .active,
.product-item-image-slider-slide-container > .next,
.product-item-image-slider-slide-container > .prev {
    display: block;
}

.product-item-image-slider-control-container {
    position: absolute;
    right: 0;
    bottom: 8px;
    left: 0;
    z-index: 15;
    display: block;
    padding: 0;
    text-align: center;
    opacity: 0;
    transition: opacity 250ms ease;
}

.product-item-container.hover .product-item-image-slider-control-container {
    opacity: 1;
}

.product-item-image-slider-control {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0 2px;
    border-radius: 50%;
    background-color: rgba(128, 128, 128, .6);
    cursor: pointer;
    transition: var(--transition);
}

.product-item-image-slider-control:hover,
.product-item-image-slider-control.active {
    background-color: var(--primary-color);
    transform: scale(1.15);
}

/* ========================================
   МЕТКИ И СТИКЕРЫ
   ======================================== */
.product-item-label-text,
.product-item-label-ring {
    position: absolute;
    z-index: 15;
}

.product-item-label-text span {
    display: inline-block;
    margin-bottom: 3px;
    padding: 3px 8px;
    background: #f42c2c;
    color: var(--white);
    border-radius: 3px;
    font-weight: 600;
    font-size: 10px;
    line-height: 1.3;
    transition: var(--transition);
}

.product-item-label-ring {
    box-sizing: border-box;
    border-radius: 50%;
    font-weight: bold;
}

.product-item-label-text.product-item-label-small span {
    padding: 3px 7px;
    font-size: 9px;
}

.product-item-label-text.product-item-label-big span {
    padding: 4px 10px;
    font-size: 11px;
}

.product-item-label-top {
    top: 6px;
}

.product-item-label-left {
    left: 6px;
}

.product-item-label-right {
    right: 6px;
}

/* ========================================
   НАЗВАНИЕ ТОВАРА
   ======================================== */
.product-item-title {
    margin: 8px 0 6px;
    padding: 0;
    text-align: center;
    font-weight: normal;
    font-size: 13px;
    line-height: 1.3;
    min-height: 34px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-item-title a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    transition: color 200ms ease;
}

.product-item-title a:hover {
    color: var(--primary-color);
}

.product-item-big-card .product-item-title a {
    font-size: 16px;
}

.product-item-line-card .product-item-title {
    text-align: left;
}

/* ========================================
   ЦЕНА
   ======================================== */
.product-item-price-container {
    text-align: center;
    line-height: 1.2;
    margin: 8px 0;
}

.product-item-price-current {
    color: var(--text-dark);
    white-space: nowrap;
    font-weight: 700;
    font-size: 16px;
}

.product-item-price-old {
    color: var(--text-light);
    text-decoration: line-through;
    white-space: nowrap;
    font-size: 12px;
    margin-left: 6px;
}

.product-item-big-card .product-item-price-current {
    font-size: 20px;
}

/* ========================================
   ХАРАКТЕРИСТИКИ - КЛЮЧЕВЫЕ (КАРТОЧКИ)
   ======================================== */
.props-highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 8px;
    margin: 10px 0 12px;
}

.prop-card {
    display: flex;
    align-items: center;
    padding: 8px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background-color: var(--white);
    transition: var(--transition);
}

.prop-card:hover {
    box-shadow: 0 3px 8px rgba(0, 131, 209, 0.12);
    border-color: var(--primary-color);
    transform: translateY(-1px);
}

.prop-card__icon {
    flex-shrink: 0;
    margin-right: 8px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 131, 209, 0.08) 0%, rgba(0, 131, 209, 0.03) 100%);
    border-radius: 6px;
}

.prop-card__icon svg {
    width: 18px;
    height: 18px;
    fill: var(--primary-color);
}

.prop-card__text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
    flex: 1;
}

.prop-card__value {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.prop-card__name {
    font-size: 9px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ========================================
   ХАРАКТЕРИСТИКИ - ОБЫЧНЫЕ (СПИСОК)
   ======================================== */
.product-item-detail-properties {
    margin: 12px 0;
}

.product-item-detail-properties-item {
    display: flex;
    align-items: center;
    padding: 5px 0;
    font-size: 11px;
    border-bottom: 1px solid rgba(230, 230, 230, 0.5);
}

.product-item-detail-properties-item:last-child {
    border-bottom: none;
}

.product-item-detail-properties-name {
    color: var(--text-muted);
    white-space: nowrap;
    font-size: 11px;
}

.product-item-detail-properties-dots {
    border-bottom: 1px dashed #ddd;
    flex-grow: 1;
    margin: 0 6px;
    min-width: 15px;
}

.product-item-detail-properties-value {
    text-align: right;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 11px;
}

/* ========================================
   КОЛИЧЕСТВО И КНОПКИ
   ======================================== */
.product-item-info-container {
    clear: both;
    margin: 12px 0;
    opacity: 1;
    transition: var(--transition);
}

.product-item-amount-field-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 120px;
    margin: 0 auto 10px;
    gap: 6px;
}

.product-item-amount-field-btn-plus,
.product-item-amount-field-btn-minus {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 4px;
    background-color: var(--bg-light);
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.product-item-amount-field-btn-plus:hover,
.product-item-amount-field-btn-minus:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.product-item-amount-field-btn-plus:hover::after,
.product-item-amount-field-btn-minus:hover::after {
    filter: brightness(0) invert(1);
}

.product-item-amount-field-btn-plus::after {
    content: "";
    width: 10px;
    height: 10px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23525C68" d="M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"/></svg>') center/contain no-repeat;
}

.product-item-amount-field-btn-minus::after {
    content: "";
    width: 10px;
    height: 10px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23525C68" d="M19 13H5v-2h14v2z"/></svg>') center/contain no-repeat;
}

.product-item-amount-field {
    flex: 1;
    height: 28px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: var(--white);
    color: var(--text-dark);
    text-align: center;
    font-weight: 600;
    font-size: 13px;
    transition: var(--transition);
}

.product-item-amount-field:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 131, 209, 0.08);
}

/* ========================================
   КНОПКИ ДЕЙСТВИЙ
   ======================================== */
.product-item-button-container {
    text-align: center;
    margin-top: 10px;
}

.product-item-button-container .btn {
    display: inline-block;
    padding: 9px 18px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.product-item-button-container .btn:hover {
    background: #006ba8;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0, 131, 209, 0.25);
}

.product-item-button-container .btn:active {
    transform: translateY(0);
}

/* ========================================
   АДАПТИВНОСТЬ
   ======================================== */
@media (max-width: 1199px) {
    .props-highlight-grid {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    }
}

@media (max-width: 991px) {
    .product-item-container {
        padding: 0.75rem;
    }
    
    .props-highlight-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 6px;
    }
    
    .prop-card {
        padding: 6px;
    }
    
    .prop-card__icon {
        width: 28px;
        height: 28px;
        margin-right: 6px;
    }
    
    .prop-card__icon svg {
        width: 16px;
        height: 16px;
    }
    
    .prop-card__value {
        font-size: 12px;
    }
    
    .prop-card__name {
        font-size: 8px;
    }
}

@media (max-width: 767px) {
    .product-item-container {
        padding: 0.625rem;
        margin-bottom: 12px;
    }
    
    .props-highlight-grid {
        grid-template-columns: 1fr;
        gap: 6px;
        margin: 8px 0 10px;
    }
    
    .product-item-price-current {
        font-size: 15px;
    }
    
    .product-item-title {
        font-size: 12px;
        min-height: 30px;
        margin: 6px 0;
    }
    
    .product-item-button-container .btn {
        padding: 8px 16px;
        font-size: 11px;
    }
    
    .product-item-detail-properties-item {
        font-size: 10px;
    }
}

@media (max-width: 575px) {
    .product-item-container {
        padding: 0.5rem;
    }
    
    .prop-card {
        padding: 6px;
    }
    
    .prop-card__icon {
        width: 26px;
        height: 26px;
        margin-right: 6px;
    }
    
    .prop-card__icon svg {
        width: 14px;
        height: 14px;
    }
    
    .prop-card__value {
        font-size: 11px;
    }
    
    .prop-card__name {
        font-size: 8px;
    }
    
    .product-item-amount-field-container {
        max-width: 110px;
    }
    
    .product-item-amount-field-btn-plus,
    .product-item-amount-field-btn-minus {
        width: 26px;
        height: 26px;
    }
    
    .product-item-amount-field {
        height: 26px;
        font-size: 12px;
    }
}

/* ========================================
   УТИЛИТЫ
   ======================================== */
.no-select {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

input[type='number'] {
    -moz-appearance: textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* ========================================
   ДОПОЛНИТЕЛЬНЫЕ ОПТИМИЗАЦИИ
   ======================================== */
.product-item-image-wrapper {
    background: #fafafa;
}

.product-item-container {
    will-change: transform;
}

.product-item-button-container .btn {
    white-space: nowrap;
}

/* Улучшенная видимость меток */
.product-item-label-text span {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}
/* End */
/* /bitrix/components/bitrix/system.pagenavigation/templates/round/style.min.css?15695626332530 */
/* /local/templates/dizel/components/bitrix/catalog.item/bootstrap_v4/style.css?176173079915618 */
