

/* Start:/local/templates/.default/components/bitrix/news/all/bitrix/news.detail/.default/style.css?1753125891772*/
div.news-detail
{
	word-wrap: break-word;
}

div.news-detail h1 {
	margin-bottom: 20px;
	font-size: 36px;
}

div.news-detail img.detail_picture
{
	float:left;
	margin:0 0 12px 0;
	width: 100%;
	height: auto;
}
.news-date-time
{
	color:#486DAA;
}

.news-detail--inner {
	background-image: url(/local/images/logonews.png);
	background-repeat: no-repeat;
	min-height: 300px;
	padding-left: 230px;
	margin-top: 40px;
	margin-bottom: 40px;
	background-position-y: 12px;
}

.news-detail--inner h2, .news-detail--inner h3{
	font-weight: 200;
}

@media (max-width: 720px) {
	div.news-detail h1 {
		font-size: 24px;
		line-height: 28px;
	}
	.news-detail--inner {
		background-image: none;
		min-height: initial;
		padding-left: 0;
		margin-top: 20px;
		margin-bottom: 20px;
  	}
}

/* End */


/* Start:/local/lib/carousel/carousel-products.css?17889860286011*/
/**
 * Стили для карусели товаров Битрикс согласно макета
 */

.carousel-wrapper {
    position: relative;
    width: 100%;
    margin: 30px 0;
    background: #ffffff;
    padding: 0;
    border-radius: 0;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    gap: 20px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-slide {
    flex: 0 0 calc(25% - 15px);
    min-width: 250px;
    transition: none;
}

.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    border: 1px solid #e8e8e8;
    transition: box-shadow 0.2s ease;
    position: relative;
}

.product-card:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Кнопка избранного */
.product-favorite {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.2s ease;
    padding: 0;
    color: #999;
}

.product-favorite:hover {
    color: #d32f2f;
    transform: scale(1.1);
}

.product-favorite svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
}

/* Изображение товара */
.product-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-image--empty {
    color: #999;
}

.product-image-placeholder {
    font-size: 14px;
    color: #999;
}

/* Цена */
.product-price {
    padding: 12px 16px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}


/* Название товара */
.product-name {
    margin: 0;
    padding: 0 16px;
    font-size: 16px;
    font-weight: 400 !important;
    font-family: var(--tmp-font);
    color: #1a1a1a;
    line-height: 1.4;
    min-height: 48px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Артикул */
.product-article {
    margin: 8px 16px 0;
    font-size: 12px;
    color: #999;
    line-height: 1.2;
}

.product-article span {
    color: #666;
    font-weight: 500;
}

/* Рейтинг */
.catalog-item__stars {
    margin-left: 14px!important;
}

/* Кнопка купить */
.btn-buy {
    display: block;
    width: calc(100% - 32px);
    margin: 12px 16px;
    padding: 12px 20px;
    background: var(--tmp-olive);
    color: white;
    text-decoration: none;
    text-align: center;
    border-radius: 0;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-buy:hover {
    background: var(--tmp-olive);
}

a.btn-buy:hover {
    color: #ffffff;
    text-decoration: none;
}

a.btn-buy:active {
    color: #ffffff;
    text-decoration: none;
}

.btn-buy:active {
    background: var(--tmp-olive);
}

/* Кнопки навигации */
.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: rgba(0, 0, 0, 0.8);
}

.carousel-prev::before {
    content: '‹';
    font-size: 30px;
    margin-top: -6px;
}

.carousel-next::before {
    content: '›';
    font-size: 30px;
    margin-top: -6px;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .carousel-slide {
        flex: 0 0 calc(50% - 10px);
        min-width: 200px;
    }

    .product-name {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .carousel-wrapper {
        margin: 20px 0;
    }

    .carousel-slide {
        flex: 0 0 calc(50% - 10px);
        min-width: calc(50% - 10px);
    }

    .product-image {
        height: 200px;
    }

    .product-name {
        font-size: 12px;
        min-height: 32px;
    }

    .product-price {
        padding: 8px 12px;
    }

    .price-value {
        font-size: 18px;
    }

    .btn-buy {
        margin: 10px 12px;
        width: calc(100% - 24px);
        padding: 10px 15px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .carousel-wrapper {
        margin: 15px 0;
    }

    .carousel-track {
        gap: 10px;
    }

    .carousel-slide {
        min-width: calc(100vw - 50px);
    }

    .carousel-prev,
    .carousel-next {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .carousel-prev::before,
    .carousel-next::before {
        font-size: 24px;
    }

    .product-image {
        height: 180px;
    }

    .product-name {
        font-size: 11px;
        min-height: 28px;
    }

    .product-article {
        font-size: 11px;
    }

    .price-value {
        font-size: 16px;
    }

    .btn-buy {
        margin: 8px 10px;
        width: calc(100% - 20px);
        padding: 8px 12px;
        font-size: 11px;
    }
}

.carousel-wrapper.empty {
    text-align: center;
    padding: 40px 20px;
    color: #999;
}

.carousel-empty-message {
    margin: 0;
    color: #999;
    font-size: 16px;
}

/* End */
/* /local/templates/.default/components/bitrix/news/all/bitrix/news.detail/.default/style.css?1753125891772 */
/* /local/lib/carousel/carousel-products.css?17889860286011 */
