

/* Start:/local/templates/72snab/components/bitrix/catalog.element/detail_new/style.css?177643762210813*/
/* ===== ДЕТАЛЬНАЯ СТРАНИЦА ТОВАРА ПО FIGMA ===== */

/* Основной контейнер */
.detail-page {
    max-width: 1240px;
    margin: 0 auto;
}

.detail-content-row {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

/* ===== ЛЕВАЯ КОЛОНКА - МЕНЮ РАЗДЕЛОВ ===== */
.cat-left-sidebar {
    width: 295px;
    flex-shrink: 0;
    position: sticky;
    top: 150px;
    height: fit-content;
    z-index: 10;
    align-self: flex-start;
}

.cat-sidebar-menu {
    width: 295px;
    padding: 16px 8px 16px 16px;
    background: white;
    box-shadow: 0px 2.8px 2.27px rgba(0, 0, 0, 0.02), 0px 14px 14px rgba(0, 0, 0, 0.04);
    border-radius: 16px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    max-height: 508px;
}

.cat-sidebar-menu-content {
    flex: 1;
    overflow-y: auto;
    padding-right: 8px;
}

.cat-sidebar-menu-content::-webkit-scrollbar {
    width: 4px;
}

.cat-sidebar-menu-content::-webkit-scrollbar-track {
    background: #F2F2F3;
    border-radius: 900px;
}

.cat-sidebar-menu-content::-webkit-scrollbar-thumb {
    background: #E6E6E7;
    border-radius: 93px;
    min-height: 50px;
}

.cat-menu-item {
    margin-bottom: 8px;
    display: flex;
    flex-direction: column;
}

.cat-menu-item:last-child {
    margin-bottom: 0;
}

.cat-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 40px;
}

.cat-menu-header:hover .cat-menu-name {
    color: #E74F01;
}

.cat-menu-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.cat-menu-icon {
    width: 40px;
    height: 40px;
    background: #D9D9D9;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.cat-menu-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-menu-name {
    color: #989795;
    font-family: 'Inter Tight', sans-serif;
    font-size: 15px;
    font-weight: 600;
    word-wrap: break-word;
    transition: color 0.3s ease;
    text-decoration: none;
}

.cat-menu-name:hover {
    color: #E74F01;
}

.cat-section-arrow {
    width: 9px;
    height: 6px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cat-section-arrow svg {
    width: 9px;
    height: 6px;
    display: block;
}

.cat-section-arrow path {
    transition: fill 0.3s ease;
}

.cat-menu-item--expanded .cat-section-arrow {
    transform: rotate(180deg);
}

.cat-menu-item--expanded .cat-menu-name,
.cat-menu-header:hover .cat-menu-name {
    color: #E74F01;
}

.cat-menu-item--expanded .cat-section-arrow path,
.cat-menu-header:hover .cat-section-arrow path {
    fill: #E74F01;
}

.cat-menu-item--active > .cat-menu-header .cat-menu-name {
    color: #E74F01;
}

.cat-menu-subsections {
    display: none;
    padding: 8px 0 16px 0;
    border-top: 1px solid rgba(152, 151, 149, 0.25);
    margin-top: 8px;
}

.cat-menu-item--expanded > .cat-menu-subsections {
    display: block;
}

.cat-menu-subsection {
    display: block;
    color: #989795;
    font-family: 'Inter Tight', sans-serif;
    font-size: 15px;
    font-weight: 400;
    padding: 8px 0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cat-menu-subsection:hover {
    color: #E74F01;
}

.cat-menu-subsection--active {
    color: #E74F01;
}

/* ===== ПРАВАЯ КОЛОНКА ===== */
.detail-right-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
}

/* Верхняя строка с изображением и информацией */
.detail-top-row {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

/* ===== КАРТОЧКА ИЗОБРАЖЕНИЯ ===== */
.detail-image-card {
    width: 295px;
    height: 304px;
    background: white;
    box-shadow: 0px 2.8px 2.27px rgba(0, 0, 0, 0.02), 0px 14px 14px rgba(0, 0, 0, 0.04);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.detail-product-image {
    width: 262px;
    height: 145px;
    object-fit: contain;
}

.detail-no-image {
    color: #989795;
    font-size: 16px;
    font-family: 'Inter Tight', sans-serif;
    text-align: center;
}

/* ===== КАРТОЧКА ИНФОРМАЦИИ ===== */
.detail-info-card {
    width: 610px;
    padding: 40px;
    background: white;
    box-shadow: 0px 2.8px 2.27px rgba(0, 0, 0, 0.02), 0px 14px 14px rgba(0, 0, 0, 0.04);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    box-sizing: border-box;
    flex-shrink: 0;
}

/* Название товара */
.detail-product-title {
    color: #333333;
    font-family: 'Inter Tight', sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 32px;
    margin: 0;
    word-wrap: break-word;
}

/* Строка с артикулом, ценой и количеством */
.detail-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Блок с артикулом и ценой */
.detail-price-block {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    height: 53px;
}

.detail-article {
    color: #989795;
    font-family: 'Inter Tight', sans-serif;
    font-size: 15px;
    font-weight: 400;
}

.detail-price {
    display: flex;
    align-items: flex-end;
    gap: 2px;
}

.detail-price-value {
    color: #333333;
    font-family: 'Inter Tight', sans-serif;
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
}

.detail-price-unit {
    color: #333333;
    font-family: 'Inter Tight', sans-serif;
    font-size: 15px;
    font-weight: 600;
}

/* Селектор количества */
.detail-quantity {
    display: flex;
    align-items: center;
    gap: 4px;
}

.detail-quantity-btn {
    width: 40px;
    height: 40px;
    background: #F2F2F3;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.detail-quantity-btn:hover {
    background: #E6E6E7;
}

.detail-quantity-btn svg {
    width: 13px;
    height: 13px;
}

.detail-quantity-input {
    width: 84px;
    height: 40px;
    background: #F2F2F3;
    border: none;
    border-radius: 6px;
    text-align: center;
    color: #989795;
    font-family: 'Inter Tight', sans-serif;
    font-size: 14px;
    font-weight: 600;
}

.detail-quantity-input:focus {
    outline: none;
}

/* Кнопки действий */
.detail-actions {
    display: flex;
    gap: 8px;
}

.detail-btn {
    flex: 1;
    height: 56px;
    padding: 0 16px;
    border: none;
    border-radius: 6px;
    font-family: 'Inter Tight', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.detail-btn:hover {
    opacity: 0.9;
}

.detail-btn-question {
    background: #333333;
    color: white;
}

.detail-btn-cart {
    background: linear-gradient(225deg, #E74F01 0%, #C71201 100%);
    color: white;
}

/* ===== СЕКЦИИ (ХАРАКТЕРИСТИКИ И ОПИСАНИЕ) ===== */
.detail-section-card {
    width: 925px;
    padding: 40px;
    background: white;
    box-shadow: 0px 2.8px 2.27px rgba(0, 0, 0, 0.02), 0px 14px 14px rgba(0, 0, 0, 0.04);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    box-sizing: border-box;
}

.detail-section-title {
    color: #333333;
    font-family: 'Inter Tight', sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 32px;
    margin: 0;
}

/* Список характеристик */
.detail-properties-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.detail-property-row {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 4px;
}

.detail-property-name {
    color: #818084;
    font-family: 'Inter Tight', sans-serif;
    font-size: 16px;
    font-weight: 400;
    white-space: nowrap;
}

.detail-property-dots {
    flex: 1;
    height: 0;
    border-bottom: 1px solid #E1E1E1;
    position: relative;
    bottom: 3px;
}

.detail-property-value {
    color: #818084;
    font-family: 'Inter Tight', sans-serif;
    font-size: 16px;
    font-weight: 400;
    white-space: nowrap;
    text-align: right;
}

/* Описание */
.detail-description-text {
    color: #989795;
    font-family: 'Inter Tight', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    word-wrap: break-word;
}

.detail-description-text p {
    margin: 0 0 16px 0;
}

.detail-description-text p:last-child {
    margin-bottom: 0;
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 1240px) {
    .detail-page {
        padding: 0 20px;
    }

    .detail-section-card {
        width: 100%;
        max-width: 925px;
    }
}

@media (max-width: 1024px) {
    .cat-left-sidebar {
        display: none;
    }

    .detail-top-row {
        flex-wrap: wrap;
    }

    .detail-image-card {
        width: 100%;
        max-width: 295px;
    }

    .detail-info-card {
        flex: 1;
        min-width: 300px;
    }
}

@media (max-width: 768px) {
    .detail-top-row {
        flex-direction: column;
    }

    .detail-image-card {
        width: 100%;
        max-width: none;
        height: auto;
        min-height: 200px;
    }

    .detail-product-image {
        width: 80%;
        max-width: 262px;
        height: auto;
        max-height: 200px;
    }

    .detail-info-card {
        width: 100%;
        padding: 24px;
    }

    .detail-product-title {
        font-size: 24px;
        line-height: 28px;
    }

    .detail-meta-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .detail-actions {
        flex-direction: column;
    }

    .detail-section-card {
        padding: 24px;
    }

    .detail-section-title {
        font-size: 24px;
        line-height: 28px;
    }
}

@media (max-width: 480px) {
    .detail-quantity {
        width: 100%;
    }

    .detail-quantity-input {
        flex: 1;
    }

    .detail-property-row {
        flex-wrap: wrap;
        gap: 8px;
    }

    .detail-property-dots {
        display: none;
    }

    .detail-property-name,
    .detail-property-value {
        width: 100%;
        white-space: normal;
        text-align: left;
    }

    .detail-property-value {
        font-weight: 500;
        margin-bottom: 12px;
    }
}

/* End */


/* Start:/local/templates/72snab/components/bitrix/catalog.section/similar.products/style.css?17764376226608*/
/* ===== ПОХОЖИЕ ТОВАРЫ - СТИЛИ ПО FIGMA ===== */

.similar-products-section {
    max-width: 1240px;
    margin: 64px auto 0;
    padding: 0 0px;
    box-sizing: border-box;
}

.similar-products-title {
    color: #333333;
    font-family: 'Inter Tight', sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 32px;
    margin: 0 0 20px 0;
    word-wrap: break-word;
}

.similar-products-grid {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    gap: 20px;
    width: 100%;
}

/* ===== КАРТОЧКА ТОВАРА ===== */
.similar-product-card {
    flex: 1 1 0;
    min-width: 0;
    padding: 12px;
    background: white;
    box-shadow: 0px 2.8px 2.27px rgba(0, 0, 0, 0.02), 0px 14px 14px rgba(0, 0, 0, 0.04);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.similar-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.04), 0px 20px 20px rgba(0, 0, 0, 0.06);
}

/* ===== ИЗОБРАЖЕНИЕ ===== */
.similar-product-image {
    height: 208px;
    position: relative;
    background: white;
    overflow: hidden;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.similar-product-image img {
    width: 270px;
    height: 150px;
    object-fit: contain;
}

.similar-product-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #989795;
    font-family: 'Inter Tight', sans-serif;
    font-size: 14px;
    background: #F2F2F3;
}

/* ===== ИНФОРМАЦИЯ ===== */
.similar-product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Название */
.similar-product-name {
    color: #989795;
    font-family: 'Inter Tight', sans-serif;
    font-size: 15px;
    font-weight: 600;
    word-wrap: break-word;
    line-height: 1.4;
    flex: 1;
    display: flex;
    align-items: flex-start;
}

.similar-product-name a {
    color: #989795;
    text-decoration: none;
    transition: color 0.3s ease;
}

.similar-product-name a:hover {
    color: #E74F01;
}

/* Строка с ценой и артикулом - всегда прижата к низу */
.similar-product-price-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 6px;
}

/* Цена */
.similar-product-price {
    display: flex;
    align-items: flex-end;
    gap: 2px;
}

.similar-product-price-value {
    color: #333333;
    font-family: 'Inter Tight', sans-serif;
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
}

.similar-product-price-unit {
    color: #333333;
    font-family: 'Inter Tight', sans-serif;
    font-size: 15px;
    font-weight: 600;
}

/* Артикул */
.similar-product-articul {
    color: #989795;
    font-family: 'Inter Tight', sans-serif;
    font-size: 13px;
    font-weight: 400;
}

/* ===== КНОПКИ ===== */
.similar-product-actions {
    display: flex;
    gap: 4px;
    margin-top: auto;
}

.similar-product-btn {
    height: 40px;
    padding: 0 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.similar-product-btn:hover {
    opacity: 0.9;
}

.similar-product-btn-details {
    flex: 1;
    background: #333333;
}

.similar-product-btn-details .similar-product-btn-text {
    color: white;
}

.similar-product-btn-cart {
    background: linear-gradient(225deg, #E74F01 0%, #C71201 100%);
    padding: 0 16px;
}

.similar-product-btn-cart .similar-product-btn-text {
    color: white;
}

.similar-product-btn-text {
    font-family: 'Inter Tight', sans-serif;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 1024px) {
    .similar-products-grid {
        flex-wrap: wrap;
    }
    
    .similar-product-card {
        flex: 1 1 calc(33.333% - 14px);
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .similar-products-title {
        font-size: 24px;
        line-height: 28px;
    }
    
    .similar-product-card {
        flex: 1 1 calc(50% - 10px);
        min-width: 180px;
    }
    
    .similar-product-image {
        height: 160px;
    }
    
    .similar-product-image img {
        width: 200px;
        height: 110px;
    }
    
    .similar-product-actions {
        flex-direction: column;
    }
    
    .similar-product-btn-cart {
        min-width: auto;
        flex: 1;
    }
}

@media (max-width: 480px) {
    .similar-products-grid {
        flex-direction: column;
    }
    
    .similar-product-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
    
    .similar-product-price-value {
        font-size: 18px;
    }
}

/* ===== УВЕДОМЛЕНИЯ ===== */
#notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    pointer-events: none;
}

.notification {
    background: linear-gradient(225deg, #E74F01 0%, #C71201 100%);
    color: #fff;
    padding: 10px 24px;
    border-radius: 6px;
    margin-bottom: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    animation: slideIn 0.3s ease;
    font-family: 'Inter Tight', sans-serif;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 150px;
    position: relative;
    overflow: hidden;
    pointer-events: auto;
}

.notification.error {
    background: #dc3545;
}

.notification-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notification-content {
    flex: 1;
    font-size: 12px;
    line-height: 1.5;
}

.notification-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    width: 100%;
    animation: progressBar 3s linear forwards;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes progressBar {
    from {
        width: 100%;
    }
    to {
        width: 0%;
    }
}

/* End */
/* /local/templates/72snab/components/bitrix/catalog.element/detail_new/style.css?177643762210813 */
/* /local/templates/72snab/components/bitrix/catalog.section/similar.products/style.css?17764376226608 */
