

/* Start:/local/templates/aspro_max/components/bitrix/catalog/product/style.css?17640864092828*/
.products-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.products-list button {
    z-index: 3;
}

.products-list__item {
    transition: transform 0.3s ease;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.products-list__img-wrapper {
    position: relative;
    aspect-ratio: 1/1;
}

.products-list__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.products-list__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    text-align: center;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: #fff;
    z-index: 3;
}

.products-list__title {
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 10px 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    color: #ffffff;
}

.products-list__order-btn {
    background: #8a6840;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
    z-index: 5;
}

.products-list__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateY(-20px);
}

.products-list__hover-text {
    font-size: 15px;
    line-height: 1.4;

}

.products-list__hover-text .characteristic {
    padding: 20px;
}

.products-list__hover-text .characteristic .char-item {
    display: inline-block;
}

.products-list__hover-text .characteristic .char-item .char-item_name {
    display: inline;
    font-weight: bold;
}

.products-list__hover-text .characteristic .char-item .item-info {
    display: inline;
}

.products-list__item:hover {
    transform: translateY(-5px);
}

.products-list__item:hover .products-list__img {
    transform: scale(1.05);
}

.products-list__item:hover .products-list__order-btn {
    opacity: 1;
    transform: translateY(0);
}

.products-list__item:hover .products-list__overlay {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .products-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .products-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .products-list {
        grid-template-columns: 1fr;
    }

    .products-list__title {
        font-size: 16px;
    }

    .products-list__hover-text {
        font-size: 14px;
    }

    .products-list__order-btn {
        padding: 6px 15px;
        font-size: 13px;
    }
}

.section {
    margin-bottom: 40px;
}
/* End */


/* Start:/local/templates/aspro_max/components/bitrix/catalog/product/bitrix/catalog.section.list/.default/style.css?17640864091647*/
.product-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin: 30px 0;
}

.product-list__item {
	transition: all 0.3s ease;
}

.product-list__img-wrapper {
	position: relative;
	padding-bottom: 100%;
	overflow: hidden;
	border-radius: 8px;
}

.product-list__img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.product-list__content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 20px;
	z-index: 2;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
	flex-wrap: wrap;
	flex-direction: column;
}

.product-list__title {
	font-size: 18px;
	font-weight: 600;
	margin: 0;
	color: white;
	text-shadow: 0 1px 3px rgba(0,0,0,0.5);
	transition: all 0.3s ease;

}

.product-list__content:hover {
	background: rgba(0, 0, 0, 0.55);
	transition: background 0.3s ease;
}

.product-list__hover-text {
	color: white;
	font-size: 16px;
	width: 100%;
	display: none;
}


.product-list__item:hover .product-list__title {
	transform: translateY(-20px);
}
.product-list__item:hover .product-list__hover-text {
	display: block;
}

.product-list__item:hover .product-list__img {
	transform: scale(1.1);
}

@media (max-width: 1024px) {
	.product-list {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 576px) {
	.product-list {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.product-list__title {
		font-size: 16px;
	}

	.product-list__hover-text {
		font-size: 14px;
	}
}

.product-list a {
	color: #d7d7d7 !important;
}
.product-list a:hover {
	color: #ffffff!important;
}
/* End */
/* /local/templates/aspro_max/components/bitrix/catalog/product/style.css?17640864092828 */
/* /local/templates/aspro_max/components/bitrix/catalog/product/bitrix/catalog.section.list/.default/style.css?17640864091647 */
