

/* Start:/local/templates/nash/components/bitrix/news.detail/catalog/style.css?17828224055164*/
.product-detail__wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* .product-detai_title {
    padding: 29px 0;
    border-bottom: 1px solid #63E7FF;
}

.product-detai_title-item {
    font-size: 24px;
} */

.product-detail__grid {
    display: flex;
    gap: 64px;
    margin-top: 64px;
    margin-bottom: 64px;
}

.product-detail__card .news-item {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    max-width: 330px;
}

.product-detail__card .news-item img {
    width: 100%;
    height: auto;
    display: block;
}

.product-detail__card .catalog-item_preview-text {
    background: #F4F4F4;
}

.product-detail__card .catalog-item_preview-text h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.product-detail__card .preview-text-content {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

/* .product-detail__nomenclature {
    background: #fff;
    border-radius: 15px;
    padding: 25px 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
} */

.nomenclature-title {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #63E7FF;
}

.nomenclature-list {
    margin-bottom: 36px;
}

.nomenclature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
}

.nomenclature-item__controls {
    display: flex;
    align-items: center;
    gap: 1px;
    flex-shrink: 0;
}

.quantity-btn {
    width: 33px;
    height: 26px;
    background: #f5f5f5;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    flex-shrink: 0;
    user-select: none;
}



.quantity-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.quantity-btn.minus {
    border-radius: 8px 0 0 8px;
    border-right: none;
}

.quantity-btn.plus {
    border-radius: 0 8px 8px 0;
    border-left: none;
}

.quantity-display {
    width: 40px;
    height: 26px;
    border: none !important;
    border-radius: 0 !important;
    background: #f5f5f5;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    outline: none;
    padding: 0;
    box-sizing: border-box;
    -moz-appearance: textfield;
    appearance: textfield;
}

.quantity-display::-webkit-outer-spin-button,
.quantity-display::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* .quantity-display:focus {
    background: #ffffff;
    border-color: #63E7FF;
    box-shadow: 0 0 0 2px rgba(99, 231, 255, 0.3);
    z-index: 1;
} */

.nomenclature-item__info {
    flex: 1;
}

.nomenclature-item__name {
    font-size: 14px;
    color: #333;
}

.product-detail__file {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.btn-file {
    display: inline-block;
    padding: 10px 25px;
    background: #63E7FF;
    border-radius: 8px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.btn-file:hover {
    background: #BAF4FF;
}

.nomenclature-actions {
    text-align: end;
}

.btn-submit-order {
    /* width: 100%; */
    padding: 10px 22px;
    background: #63E7FF;
    border: none;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit-order:hover {
    background: #00b0d1;
}

.btn-submit-order:active {
    transform: scale(0.98);
}

.notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 15px 25px;
    border-radius: 12px;
    font-size: 16px;
    z-index: 9999;
    opacity: 0;
    transform: translateY(100px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.notification-success {
    background: #4CAF50;
    color: white;
}

.notification-error {
    background: #f44336;
    color: white;
}

.notification-icon {
    font-size: 20px;
    font-weight: bold;
}

@media (max-width: 1023px) {
    .product-detail__grid {
        flex-direction: column;
        padding: 0 32px;
        margin-top: 36px;
        margin-bottom: 36px;
        gap: 36px;
    }
    .nomenclature-actions {
        text-align: left;
    }
}

@media (max-width: 767px) {
    .product-detail__grid {
        padding: 0 16px;
    }

    .product-detail__card .news-item {
        max-width: 100%;
    }
    
    .product-detail__nomenclature {
        padding: 16px;
    }

    .nomenclature-item {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
    }

    .nomenclature-item__info {
        order: 1;
    }

    .nomenclature-item__controls {
        order: 2;
        justify-content: flex-start;
    }
    
    .notification {
        left: 15px;
        right: 15px;
        bottom: 15px;
        max-width: none;
    }

    .product-detail__nomenclature {
        padding: 0;
    }
}



/* End */
/* /local/templates/nash/components/bitrix/news.detail/catalog/style.css?17828224055164 */
