

/* Start:/local/templates/main_new/components/bitrix/catalog.smart.filter/v_colors_filter/style.css?17750445844362*/
/* .colour_collection_section_filter .checkbox input {
	display: none;
}

.colour_collection_section_filter .color-filter-inner form {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
}

.colour_collection_section_filter .filter-options .checkbox label {
	cursor: pointer;
	min-height: 20px;
	padding-left: 20px;
	margin-bottom: 0;
	font-weight: normal;
}

.colour_collection_section_filter .filter-options .checkbox {
	margin: 0px;
	padding: 0px;
	width: 100%;
	height: auto;
}

.colour_collection_section_filter .filter-options .checkbox img {
	width: 100%;
	height: auto;
	margin-bottom: 6px;
}

.colour_collection_section_filter .filter-options .checkbox .filter-label {
	padding-left: 0px;
}

.colour_collection_section_filter .filter-options .checkbox .filter-label:hover {
	opacity: 0.7;
}

.colour_collection_section_filter .color-filter .bx-filter-popup-result {
	display: none !important;
}

.colour_collection_section_filter .color-filter #set_filter {
	display: none !important;
}

.colour_collection_section_filter .checkbox.checked {
	border-bottom: 4px solid var(--accent);
}

.colour_collection_section_filter .color-filter .bx-filter {
	margin-bottom: 30px;
}

.colour_collection_section_filter .color-filter .bx-filter .bx-filter-section {
	padding-top: 20px;
	padding-right: 0px;
}

.colour_collection_section_filter .color-filter .filter-right {
	align-self: flex-end;
}

.colour_collection_section_filter .color-filter .filter-right .bx-filter-parameters-box-container {
	padding-bottom: 0px;
}

.colour_collection_section_filter .clear-filter {
	margin-top: 40px;
}

.colour_collection_section_filter .filter-options {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
	gap: 30px;
}

@media (max-width: 640px) {
	.colour_collection_section_filter .filter-options {
		gap: 20px;
	}

	.colour_collection_section_filter .filter-options .checkbox img {
		margin-bottom: 4px;
	}
} */

.colour_collection_section_filter .checkbox input {
    display: none;
}

.colour_collection_section_filter .color-filter-inner form {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.colour_collection_section_filter .filter-options .checkbox label {
    cursor: pointer;
    min-height: 20px;
    padding-left: 20px;
    margin-bottom: 0;
    font-weight: normal;
}

.colour_collection_section_filter .filter-options .checkbox {
    margin: 0px;
    padding: 0px;
    width: 65px;
    height: auto;
}

.colour_collection_section_filter .filter-options .checkbox img {
    width: 65px;
    height: 65px;
    object-fit: contain;
    margin-bottom: 6px;
    display: block;
}

.colour_collection_section_filter .filter-options .checkbox .filter-label {
    padding-left: 0px;
    display: block;
    text-align: center;
}

.colour_collection_section_filter .filter-options .checkbox .filter-label:hover {
    opacity: 0.7;
}

.colour_collection_section_filter .color-filter .bx-filter-popup-result {
    display: none !important;
}

.colour_collection_section_filter .color-filter #set_filter {
    display: none !important;
}

.colour_collection_section_filter .checkbox.checked {
    border-bottom: 4px solid var(--accent);
}

.colour_collection_section_filter .color-filter .bx-filter {
    margin-bottom: 30px;
}

.colour_collection_section_filter .color-filter .bx-filter .bx-filter-section {
    padding-top: 20px;
    padding-right: 0px;
}

.colour_collection_section_filter .color-filter .filter-right {
    align-self: flex-start;
}

.colour_collection_section_filter .color-filter .filter-right .bx-filter-parameters-box-container {
    padding-bottom: 0px;
}

.colour_collection_section_filter .clear-filter {
    margin-top: 40px;
}

.colour_collection_section_filter .filter-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, 65px);
    gap: 30px;
    justify-content: start;
}

@media (max-width: 640px) {
    .colour_collection_section_filter .filter-options {
        grid-template-columns: repeat(auto-fill, 55px);
        gap: 20px;
    }

    .colour_collection_section_filter .filter-options .checkbox,
    .colour_collection_section_filter .filter-options .checkbox img {
        width: 55px;
        height: 55px;
    }

    .colour_collection_section_filter .filter-options .checkbox img {
        margin-bottom: 4px;
    }
}
/* End */


/* Start:/local/templates/main_new/components/bitrix/catalog.section/v_colors/style.css?17750471351904*/
.color-section {
    padding: 86px 0 !important;
    background-color: var(--gray-bg);
}

.color-section__title {
    margin-bottom: 60px;
    margin-top: 0;
    max-width: 750px;
    font-size: 32px;
}

.color-texture-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.color-item {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--white);
    text-decoration: none;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.color-item:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.color-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease-out;
    z-index: 5;
}

.color-item:hover::after {
    transform: scaleX(1);
}

.color-item__img {
    aspect-ratio: 310 / 220;
    width: 100%;
    overflow: hidden;
    transition: opacity 0.3s ease;
}

.color-item:hover .color-item__img {
    opacity: 0.9;
}

.color-item__name {
    padding: 20px 30px;
    font-size: 18px;
    font-weight: var(--weight-regular);
    color: var(--text-color);
    border-top: 1px solid var(--border-color);
}

@media (max-width: 960px) {
    .color-section {
        padding: 78px 0 !important;
    }

    .color-section__title {
        margin-bottom: 40px;
    }

    .color-texture-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .color-item__name {
        padding: 15px 20px;
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .color-section {
        padding: 68px 0 !important;
    }

    .color-section__title {
        margin-bottom: 30px;
    }

    .color-texture-list {
        grid-template-columns: 1fr;
    }

    .color-item__name {
        padding: 12px 20px;
    }
}
/* End */
/* /local/templates/main_new/components/bitrix/catalog.smart.filter/v_colors_filter/style.css?17750445844362 */
/* /local/templates/main_new/components/bitrix/catalog.section/v_colors/style.css?17750471351904 */
