:root {
    --bs-body-font-family: "Raleway", sans-serif;
    scroll-behavior: auto;
}

html,
body {
    font-family: var(--bs-body-font-family);
    font-size: 13px;
}

body * {
    font-variant-numeric: lining-nums;
}

/* Global link styles */
a {
    color: #000;
    text-decoration: none;
}

a:hover {
    color: #000;
    text-decoration: none;
}

a:active {
    color: #000;
}

.site_body.body_fixed {
    height: 100%;
    overflow: hidden;
}

.noselect {
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Old versions of Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

/* BACKGROUND IMAGES */
.pic_bg_cover,
.pic_bg_contain {
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #D9D9D9;
}

.pic_bg_cover {
    background-size: cover;
}

.pic_bg_contain {
    background-size: contain;
}

.bg_gradient_down {
    background: rgb(255, 255, 255);
    background: -webkit-linear-gradient(bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    background: -moz-linear-gradient(bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    background: -o-linear-gradient(bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    background: -webkit-gradient(linear, 0 100%, 0 0, from(rgba(255, 255, 255, 1)), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.bg_gradient_next {
    background: rgb(255, 255, 255);
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(100%, rgba(255, 255, 255, 1)), to(rgba(251, 251, 251, 1)));
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%, rgba(251, 251, 251, 1) 100%);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%, rgba(251, 251, 251, 1) 100%);
}

/* LAYOUT */
.main_layout {
    margin: 0 auto;
}

.main_layout.min_h {
    min-height: 500px;
}

.main_layout,
.header_inner,
.footer_inner {
    max-width: 1440px;
}

/* .main_layout a {
    text-decoration: none;
} */

.main_layout a:hover {
    color: inherit;
}

.main_layout h1,
.main_layout h2,
.main_layout h3,
.main_layout h4,
.main_layout p,
.main_layout a {
    line-height: 120%;
}

.container_layout {
    max-width: 1070px;
    margin: 0 auto;
    width: 100%;
}

.adm_container_layout {
    padding: 40px 40px;
}

.container_layout.min_h {
    min-height: 500px;
}

.content_center {
    text-align: center;
}

.h_max {
    height: 100%;
}

/* GRID SYSTEM */
.base_grid {
    display: flex;
}

.base_grid_cell {
    width: 100%;
}

.base_grid_cell.base_grid_cell_2 {
    width: 16.666%;
}

.base_grid_cell.base_grid_cell_4 {
    width: 33.333%;
}

.base_grid_cell.base_grid_cell_6 {
    width: 50%;
}

.base_grid_cell.base_grid_cell_8 {
    width: 66.333%;
}

.base_grid_cell.no_padding {
    padding: 0 !important;
}

.base_grid_cell.no_padding_left {
    padding-left: 0 !important;
}

.base_grid_cell.no_padding_right {
    padding-right: 0 !important;
}

.base_grid_cell.no_padding_top {
    padding-top: 0 !important;
}

.base_grid_cell.no_padding_bottom {
    padding-bottom: 0 !important;
}

/* HEADER */
header {
    position: fixed;
    z-index: 999;
    top: 0px;
    width: 100%;
    background: #fff;
}

.header_spacer {
    height: 73px;
}

.header_inner {
    margin: 0 auto;
    padding: 19px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #000;
}

.header_col_left {
    display: flex;
    justify-content: flex-start;
    width: calc(100% - 400px);
}

.header_col_right {
    display: block;
}

.header_col_item {
    display: flex;
}

.header_block_logo {
    margin-right: 65px;
    display: flex;
    align-content: center;
    align-items: center;
}

.header_site_logo {
    width: 130px;
}

.header_block_menu {
    max-width: 572px;
    width: 100%;
    margin-top: 0px;
}

.login_active .header_block_menu {
    max-width: 711px;
}

.header_block_links {
    display: flex;
    align-items: center;
    gap: 24px;
}

@media (max-width: 750px) {
    .header_block_links {
        gap: 1.5vw;
    }
}

.header_icon_link {
    min-height: 10px;
    color: black;
    position: relative;
}

.header_icon_link:hover {
    color: #000;
}

.header_icon_link img {
    display: block;
    height: auto;
    max-width: 100%;
    margin: 0 auto;
}

.header_icon_link_mail {
    padding: 2px;
}

.header_favoute_active {
    position: absolute;
    width: 8px;
    height: 8px;
    background: red;
    top: 10px;
    right: -1px;
    border-radius: 5px;
    visibility: hidden;
}

.header_icon_link_notice {
    font-family: Inter, sans-serif;
    position: absolute;
    min-width: 16px;
    height: 16px;
    background: red;
    top: -5px;
    right: -5px;
    border-radius: 7px;
    color: #fff;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
}

#header_favorite_link.active .header_favoute_active,
.js_add-to-wishlist.active .header_favoute_active {
    visibility: visible;
}

.header_login_text {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.1em;
    display: block;
    text-align: right;
    position: relative;
    top: 0.5px;
}

#header_mail_link {
    display: none;
}

#header_person_link {
    display: none;
}

#header_login_link {
    display: flex;
    white-space: nowrap;
    align-items: center;
}

#header_logout_link {
    display: none;
}

.login_active #header_mail_link {
    display: block;
}

.login_active #header_person_link {
    display: block;
}

.login_active #header_login_link {
    display: none;
}

.login_active #header_logout_link {
    display: block;
}

/* BREADCRUMBS */
.block_bs_nav {
    padding: 0;
}

.bs_nav_list {
    display: flex;
    padding: 35px 0;
    /* padding-top: 50px; */
    margin-left: -7px;
    padding-bottom: 24px;
}

span.bs_nav_item,
a.bs_nav_item {
    color: #9B9B9B;
    padding: 5px 6px;
    font-family: Raleway;
    font-size: 13px;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: 0.05em;
}

span.bs_nav_item {}

a.bs_nav_item {}

a.bs_nav_item:hover {
    text-decoration: none;
}

/* MAIN_PAGE: BANNER_TOP */
.banner_top_section {
    background: #000;
}

.banner_top_container {
    max-width: 1070px;
    margin: 0 auto;
}

.banner_top_content {
    background: #d9d9d9;
    height: 510px;
    position: relative;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.banner_top_text {
    font-size: 22px;
    font-weight: 500;
    line-height: 160%;
    letter-spacing: 0.02em;
    text-align: center;
    color: #000;
    max-width: 484px;
}

.banner_top_video_text {
    color: #989898;
    position: absolute;
    bottom: 63px;
    right: 90px;
    z-index: 1;
     
    font-size: 24px;
    font-weight: 400;
    line-height: 120%;
}

.banner_top_video_tutorial_text {
     
    font-size: 24px;
    font-weight: 400;
    line-height: 120%;
    color: #989898;
}

/* MAIN_PAGE: INTRO */
.main_intro_section {}

.main_intro_section_wrap {
    padding: 90px 0 0px 0;
}

.main_intro_cols {
    display: flex;
    margin-bottom: 32px;
}

.main_intro_col_left,
.main_intro_col_right {
    width: 50%;
}

.main_intro_col_left {
    padding-right: 75px;
}

.main_intro_col_right {
    padding-left: 75px;
}

.main_intro_register {
    text-align: center;
    padding-bottom: 50px;
}

.main_intro_grid_wrap {
    padding: 68px 0px 20px 0px;
}

.main_intro_grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.main_intro_grid_item {
    width: calc(33.333% - 45px);
    margin-bottom: 70px;
}

.main_intro_grid_item_pic {
    margin-bottom: 27px;
}

.main_intro_grid_item_pic img {
    display: block;
    max-width: 100%;
    height: auto;
}

.main_intro_grid_item_text {}

.gallery_block_section {
    margin-bottom: 30px;
}

.gallery_block_wrap {
    padding: 0px 0px 0px 0px;
}

.gallery_block_list {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.gallery_block_list_item {
    width: calc(25% - 16px);
    margin-bottom: 20px;
}

.gallery_item_pic {
    display: block;
    width: 100%;
    aspect-ratio: 1/1;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 16px;
}

.gallery_item_pic .image_holder {
    background-position: center center;
    background-repeat: no-repeat;
    max-width: 100%;
    max-height: 100%;
}

/* Классы bg-contain и bg-cover переопределяют background-size при необходимости */
.gallery_item_pic .image_holder.bg-contain {
    background-size: contain;
}

.gallery_item_pic .image_holder.bg-cover {
    background-size: cover;
}

/* Product Thumbnail Component */
.product-thumbnail-container {
    width: 100%;
    height: 100%;
}

.product-thumbnail-container .image_holder {
    background-position: center center;
    background-repeat: no-repeat;
}

.product-thumbnail-container .image_holder.bg-contain {
    background-size: contain;
}

.product-thumbnail-container .image_holder.bg-cover {
    background-size: cover;
}

.gallery_item_name {
    font-size: 14px;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.gallery_item_price {
     
    font-size: 12px;
    font-weight: 400;
    line-height: 120%;
}

/* Modal Product Selection */
.modal-product-item {
    cursor: pointer;
    transition: opacity 0.3s, transform 0.2s;
    position: relative;
}

.modal-product-item:hover {
    transform: scale(1.05);
}

.modal-product-item .add-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 123, 255, 0.9);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    pointer-events: none;
}

/* Products List in Modal */
.products-list {
    display: flex;
    flex-wrap: wrap;
}

.products-list .col,
.products-list .col-md-3,
.products-list .col-lg-3 {
    padding: 10px;
}

/* Size Selection Section in Modal */
.size-selection-section {
    display: none;
    margin-top: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.selected-product-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

/* PRODUCT LIST */
.product_list_section {}

.product_list_cols {
    display: flex;
    position: relative;
    margin-bottom: 90px;
}

.product_list_col_left,
.product_list_col_right {
    width: 50%;
    position: relative;
}

.product_list_col_left {
    padding-right: 10px;
}

.product_list_col_right {
    padding-left: 10px;
}

.product_list_main_pic {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #D9D9D9;
    background-size: cover;
}

.product_list_filter {
    display: flex;
    padding-bottom: 23px;
    /* position: relative; */
}

.product_list_filter_item {
    margin-right: 13px;
    position: relative;
}

.product_list_filter_caption {
    cursor: pointer;
    align-items: center;
    position: relative;
    padding-right: 13px;
}

.product_list_filter_caption_name {
     
    font-size: 12px;
    font-weight: 400;
    line-height: 100%;
}

.product_list_filter_caption_arrow {
    font-size: 28px;
    line-height: 23px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}

.product_list_filter_dropdown {
    display: none;
    position: absolute;
    top: 33px;
    left: -15px;
    z-index: 50;
    max-height: 370px;
    overflow-y: auto;
    border: 1px solid silver;
    border-radius: 5px;
    background: #fff;
    padding-top: 0;
    padding-bottom: 0;
    overflow-x: hidden;
}

.product_list_filter_item.open .product_list_filter_dropdown {
    display: block;
}

.product_list_filter_select {
    background: #fff;
    width: 250px;
    /* border: 1px solid silver; */
    list-style: none;
    padding: 4px 0 9px 0;
    margin: 0;
}

.product_list_filter_option {
    /* padding: 10px; */
    /* border-bottom: 1px solid silver; */
}

.product_list_filter_option_label {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 7px 14px;
}

.product_list_filter_option_label span {
     
    font-size: 14px;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: 0.02em;
    text-transform: capitalize;
}

.product_list_filter_option_checkbox {}

.product_list_filter_item.open .product_list_filter_caption_arrow {
    transform: translateY(-50%) rotate(180deg);
}

.product_list_info {
    max-height: 265px;
    overflow: hidden;
}

.product_list_text_info {
    margin-bottom: 19px;
}

.product_list_text_info,
.product_list_text_info p {
    color: #000;
    font-size: 22px;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0.02em;
}

.product_list_text_info p {
    margin-bottom: 0;
}

.product_list_text_comment {
    margin-bottom: 20px;
}

.product_list_text_comment,
.product_list_text_comment p {
     
    font-size: 15px;
    font-weight: 400;
    line-height: 150%;
    text-align: left;
}

.product_list_text_comment p {
    margin-bottom: 20px;
}

.product_list_catalog_container {
    overflow: hidden;
}

.product_list_catalog {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
}

.product_list_catalog_item {
    width: calc(100%/6 - 20px);
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 33px;
}

.product_list_catalog.top_list {
    position: absolute;
    bottom: 0;
    left: -10px;
    bottom: -88px;
    width: calc(100% + 10px);
    margin: 0;
}

.product_list_catalog.top_list .product_list_catalog_item {
    width: calc(100%/3 - 20px);
}

.product_list_catalog_outer {
    margin: 0;
    position: relative;
}

/* .product_list_catalog_outer.first_view {
    overflow: hidden;
    height: 429px;
} */

/* Removed rule that was hiding first 3 products */
.product_list_catalog_pagination {
    width: 100%;
    padding: 30px 0;
    text-align: center;
    background: rgb(255, 255, 255);
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 1)), to(rgba(255, 255, 255, 0)));
    background: -o-linear-gradient(bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.product_list_catalog_spacer {
    display: none;
    height: 100px;
}

.product_list_catalog_spacer.active {
    display: block;
}

.product_list_catalog_pagination .button_x {}

/* BRAND_LIST */
.brand_list_section {}

.brand_list_nav_border {
    border-bottom: 1px solid #D4D4D4;
    width: 100%;
}

.brand_list_nav_spacer {
    height: 102px;
}

.brand_list_nav {
    height: 107px;
    padding-top: 21px;
    width: 100%;
    position: fixed;
    top: 73px;
    background: #fff;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.brand_list_nav_list_container {
    overflow: hidden;
}

.brand_list_nav_list {
    display: flex;
    margin-left: -10px;
    margin-right: -10px;
    justify-content: space-between;
    background: #fff;
    padding-left: 4px;
}

.brand_list_nav_list a {
    display: inline-block;
    color: #000;
    padding: 10px;
    text-transform: uppercase;
     
    font-size: 12px;
    font-weight: 400;
    line-height: 120%;
    /* margin-right: 13px; */
    text-decoration: none;
}

.brand_list_nav_list a:hover {
    text-decoration: underline;
}

.brand_list_layout {
    padding: 48px 0px;
    border-bottom: 1px solid #D4D4D4;
    padding-bottom: 31px;
}

.brand_list_group {
    display: flex;
}

.brand_list_group_nav {
    width: 85px;
}

.brand_list_group_items {
    width: calc(100% - 85px);
    display: flex;
    flex-wrap: wrap;
    margin-top: -2px;
}

.brand_list_item {
    width: 33.333%;
    margin-bottom: 8px;
    padding-right: 10px;
}

.brand_list_item a {
    color: #000;
    display: inline-block;
    padding: 5px 10px;
     
    font-size: 15px;
    font-weight: 400;
    line-height: 120%;
}

.brand_list_item a:hover {
    text-decoration: underline;
}

/* SLIDERS */
.list_slider_outer {
    margin: 0 -9px;
    position: relative;
}

.list_slider_outer:before {
    content: '';
    display: block;
    position: absolute;
    width: 15px;
    height: 100%;
    background: #fff;
    left: -5px;
    z-index: 10;
    top: 0;
}

.list_slider_outer:after {
    content: '';
    display: block;
    position: absolute;
    width: 15px;
    height: 100%;
    background: #fff;
    right: -5px;
    z-index: 10;
    top: 0;
}

.gallery_block_list.list_slider {
    display: block;
}

.gallery_block_list_item.item_slider {
    width: 100%;
    margin-right: 10px;
    margin-left: 10px;
}

.gallery_nav_arrow_prev,
.gallery_nav_arrow_next {
    position: absolute;
    top: 40px;
    width: 16px;
    top: calc(50% - 60px);
    cursor: pointer;
    opacity: 1;
}

.gallery_nav_arrow_prev {
    left: -20px;
}

.gallery_nav_arrow_next {
    right: -20px;
}

.gallery_nav_arrow_prev.slick-disabled,
.gallery_nav_arrow_next.slick-disabled {
    opacity: 0.5;
}

.gallery_block_list .slick-dots li button:before {
    font-size: 10px;
}

.gallery_block_list.slick-dotted.slick-slider {
    margin-bottom: 55px;
}

.gallery_block_list_item.slick-slide {
    margin-bottom: 30;
}

/* CONTENT_LIST */
.content_list_section {}

.content_list {
    padding-top: 9px;
}

.content_list_outer {
    position: relative;
}

.content_list_outer.first_view {
    overflow: hidden;
    height: 820px;
}

.content_list_item {
    border-bottom: 1px solid #d4d4d4;
    padding-bottom: 54px;
    padding-top: 54px;
}

.content_list_item:first-child {
    padding-top: 0;
}

.content_list_cols {
    display: flex;
}

.content_list_cols.reversed_cols {
    display: flex;
    flex-direction: row-reverse;
}

.content_list_col_info,
.content_list_col_pic {
    width: 50%;
}

.content_list_col_info {
    padding-right: 35px;
}

.content_list_cols.reversed_cols .content_list_col_info {
    padding-right: 0px;
    padding-left: 48px;
}

.content_list_col_pic {}

h2.content_item_anonse {
    font-size: 22px;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: 0.02em;
    color: #000;
    margin-bottom: 21px;
}

h2.content_item_project_name {
    font-size: 26px;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: 0.02em;
    margin-bottom: 7px;
    margin-top: -13px;
}

p.content_item_project_author {
     
    font-size: 17px;
    font-weight: 400;
    line-height: 120%;
    margin-bottom: 26px;
}

.content_item_date {
     
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
    color: #a7a7a7;
    margin-bottom: 24px;
}

.content_item_text,
.content_item_text p {
     
    font-size: 15px;
    font-weight: 400;
    line-height: 170%;
}

.content_item_text p {
    margin-bottom: 15px;
}

.list_col_pic_bg {
    display: block;
    width: 100%;
    aspect-ratio: 1/0.77;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #D9D9D9;
    height: auto;
    background-size: cover;
}

.content_list_pagination {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 0;
    text-align: center;
    background: rgb(255, 255, 255);
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 1)), to(rgba(255, 255, 255, 0)));
    background: -o-linear-gradient(bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.completed_projects_title_layout .page_title_wrap {
    padding-top: 40px;
}

.completed_projects_title_layout h1.page_title_section {
    margin-bottom: 30px;
}

/* TEXT STYLES */
h1.page_title {
    font-family: Raleway;
    font-size: 26px;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

h1, h2, h3, h4, h5, h6 {
    font-family: Raleway;
    font-weight: 400;
    line-height: 120%;
    /* letter-spacing: 0.1em;
    text-transform: uppercase; */
}


h1 {
    font-size: 26px;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 22px;
}

h1.page_title_section,
h2.page_title_section {
    font-family: Raleway;
    font-size: 26px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 22px;
}

h2.gallery_block_caption {
    text-transform: uppercase;
    font-family: Raleway;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 120%;
    color: #000;
    margin-bottom: 16px;
}

.style_text_intro,
.style_text_intro p,
.style_text_intro li {
     
    font-size: 15px;
    font-weight: 400;
    line-height: 160%;
}

.style_text_intro.text_bold,
.style_text_intro.text_bold p,
.style_text_intro.text_bold li {
    font-weight: 500;
}

.style_text_intro p,
.style_text_intro li {
    margin-bottom: 15px;
}

h1.page_title_section.title_brands {
    padding-bottom: 0;
    margin-bottom: 7px;
}

h2.brand_list_group_caption {
    text-transform: uppercase;
    font-size: 26px;
    font-weight: 400;
    line-height: 120%;
    /* text-decoration: underline; */
    text-align: center;
}

.page_title_wrap {
    padding-top: 44px;
}

/* BUTTONS */
.button_x {
    display: inline-block;
    color: #fff;
    background: #929398;
    font-weight: 400;
    text-transform: uppercase;
    padding: 17px 23px;
    outline: none;
    border: none;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0.04em;
}

.button_x:hover,
a.button_x:hover {
    text-decoration: none;
    color: #fff;
}

.button_x:focus {
    outline: none;
    border: none;
    color: #fff;
}

.button_x.button_max_width {
    display: block;
    width: 100%;
}

/* FOOTER */
footer {
    width: 100%;
    margin: 0 auto;
}

footer p,
footer a {
    color: #9B9B9B;
}

footer a {
    text-decoration: none;
}

.footer_inner {
    padding: 10px 40px;
    padding-top: 26px;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #000;
    margin: 0 auto;
}

.footer_col_left {
    display: flex;
}

.footer_col_right {
    display: block;
    position: relative;
}

.footer_block_copyright {
    margin-right: 90px;
}

.footer_block_copyright_mobile {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
}

.footer_copyright_text {
     
    font-size: 12px;
    font-weight: 500;
    line-height: 120%;
}

ul.footer_menu {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}

ul.footer_menu li {
     
    font-size: 12px;
    font-weight: 500;
    line-height: 120%;
    margin-bottom: 18px;
    margin-right: 20px;
}

ul.footer_menu a {
    color: #9B9B9B;
}

ul.footer_menu a:hover {
    color: inherit;
}

.footer_block_menu {
    display: block;
}

.footer_block_socials {
    display: flex;
    position: relative;
    top: -5px;
}

.footer_icon_link {
    margin-left: 20px;
    display: block;
    height: 24px;
    width: 24px;
}

.footer_icon_link img {
    display: block;
    height: auto;
    width: 100%;
}

/* CUSTOM STYLES */

.border_test {
    border: 1px dashed silver;
}

.border_silver {
    border: 1px solid silver;
}

.border_green {
    border: 1px solid green;
}

.border_blue {
    border: 1px solid blue;
}

.border_red {
    border: 1px solid red;
}

.triangle_01 {
    display: block;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 7px 4px 0 4px;
    border-color: #000000 transparent transparent transparent;
    transform: rotate(0deg);
}

.triangle_01.plus1size {
    border-width: 9px 5px 0 5px;
}

/* CUSTOM CHECKBOXES */
.checkbox_01 {
    display: block;
    position: relative;
}

.checkbox_01 input[type='checkbox'] {
    display: none;
}

.checkbox_01 .checkbox-text {
    text-wrap: nowrap;
    color: #000;
    cursor: pointer;
    font-size: 14px;
    line-height: 150%;
    position: relative;
    padding-right: 46px;
    display: block;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s
}

.checkbox_01 .checkbox-text:before {
    background: #fff;
    right: 0;
    top: 2px;
    width: 16px;
    height: 16px;
    content: '';
    position: absolute;
    display: inline-block;
    border: 1px solid #BABABA;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    border-radius: 3px;
}

.checkbox_01 .checkbox-text:after {
    right: -2px;
    top: 0px;
    width: 16px;
    height: 16px;
    content: '';
    position: absolute;
    display: none;
    background: url(../img/icons/icon_checkbox.svg) 50% 50% transparent no-repeat;
}

.checkbox_01 .checkbox-text:hover {
    color: #333;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s
}

.checkbox_01 .checkbox-text:hover:before {
    border-color: #bebebe;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s
}

.checkbox_01 input[type='checkbox']:checked+.checkbox-text {
    color: #000;
}

.checkbox_01 input[type='checkbox']:checked+.checkbox-text:before {
    border-color: #bebebe !important;
}

.checkbox_01 input[type='checkbox']:checked+.checkbox-text:after {
    display: inline-block
}

.checkbox_01 a,
.checkbox_01 a:hover {
    text-decoration: underline;
    color: inherit;
}

.checkbox_01.notext .checkbox-text {
    padding: 0;
    margin: 0;
}

.checkbox_01.bigstyle01 {
    width: 25px;
    height: 25px;
    line-height: 25px;
}

.checkbox_01.bigstyle01 .checkbox-text:before {
    right: 1px;
    top: 0px;
    width: 24px;
    height: 24px;
    border: 2px solid #000;
    background: transparent;
}

.checkbox_01.bigstyle01 .checkbox-text:after {
    right: 0px;
    top: -2px;
    width: 20px;
    height: 20px;
    background-size: contain;
}

.checkbox_01.bigstyle02 {
    width: 20px;
    height: 20px;
    line-height: 20px;
}

.checkbox_01.bigstyle02 .checkbox-text:before {
    right: 1px;
    top: 0px;
    width: 20px;
    height: 20px;
    border: 1px solid #000;
    background: transparent;
}

.checkbox_01.bigstyle02 .checkbox-text:after {
    right: 0px;
    top: -2px;
    width: 18px;
    height: 18px;
    background-size: contain;
}

[contenteditable="true"] {
    outline: none;
    color: #000;
    border: 1px solid #000;
}

/* CUSTOM SCROLLBAR */
.scroll_01::-webkit-scrollbar {
    width: 5px;
}

.scroll_01::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Track */
.scroll_01::-webkit-scrollbar-thumb {
    background: #888;
}

/* Handle */
.scroll_01::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Handle on hover */

/* HEADER SEARCH */

.header_search.is_active .header_search_input {
    width: 130px;
}

.header_search_input {
    border: none;
    border-bottom: 1px solid var(--bs-gray-400);
    width: 0px;
    padding: 0;
    transition: all 0.3s;
    background-color: transparent;
    outline: none;
}

.icon_search {
    cursor: pointer;
}

.main_img {
    max-width: 100%;
    height: auto;
}

.brand_website_link {
    color: #9B9B9B;
    font-family: Raleway;
    font-size: 13px;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: 0.05em;
    text-decoration: underline;
}

.brand_website_link:hover {
    text-decoration: none;
}

.white-space-nowrap {
    white-space: nowrap;
}

/* ============================================
   PRODUCT LOADING OVERLAY
   ============================================ */

/**
 * Universal loading overlay for product lists
 * Used by ProductLoadingManager in both catalog and modal contexts
 * Requires parent container to have position: relative
 */
.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

/* Ensure parent containers have relative positioning */
.product_list_catalog_outer {
    position: relative;
}

#modal-products-list {
    position: relative;
}

.header_icon_link.header_icon_link_manager {
    margin-left: 0;
}
/* News page content images */
.news_page_content img {
    max-width: 100%;
}

/* Editor.js content blocks - remove max-width restriction */
.ce-block__content {
    max-width: none;
}
