/* ========== FONT FACE: MONT ========== */
@font-face {
    font-family: 'Mont';
    src: url('../fonts/Mont-Regular.woff2') format('woff2'),
         url('../fonts/Mont-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mont';
    src: url('../fonts/Mont-Bold.woff2') format('woff2'),
         url('../fonts/Mont-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ========== CONTENT COPY PROTECTION ========== */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Allow selection in form inputs and textareas */
input, textarea, select, [contenteditable="true"] {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

:root {
    --green-color: #36992b;
    --black-onyx: #171717;
    --light-blue: rgba(0, 109, 182, 0.65);
    --dark-green: #1c8410;
    --color: #fff;
    --color-2: #4a4a4a;
    --color-3: var(--black-onyx);
    --222222: #222;
    --909090: #909090;
    --light-gray: rgba(197, 197, 197, 0.8);
    --color-4: #f0f0f0;
    --color-5: #ffd618;
    --color-6: #a2c62c;
    --font-family: "Inter", sans-serif;
    --second-family: "Roboto Condensed", sans-serif;
    --mont-family: "Mont", sans-serif;
}

html {
    overflow-y: scroll;
}

body.site {
    margin: 0;
    font-family: var(--font-family);
    font-optical-sizing: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body.site > .footer {
    margin-top: auto;
}

/* ========== CONTAINER ========== */
.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 576px) {
    .container { max-width: 540px; }
}
@media (min-width: 768px) {
    .container { max-width: 720px; }
}
@media (min-width: 992px) {
    .container { max-width: 960px; }
}
@media (min-width: 1200px) {
    .container { max-width: 1140px; }
}
@media (min-width: 1400px) {
    .container { max-width: 1320px; }
}

.container-fluid {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* ========== GRID ========== */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.col, [class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
}

.col { flex: 1 0 0%; }
.col-auto { flex: 0 0 auto; width: auto; }
.col-1  { flex: 0 0 auto; width: 8.333333%; }
.col-2  { flex: 0 0 auto; width: 16.666667%; }
.col-3  { flex: 0 0 auto; width: 25%; }
.col-4  { flex: 0 0 auto; width: 33.333333%; }
.col-5  { flex: 0 0 auto; width: 41.666667%; }
.col-6  { flex: 0 0 auto; width: 50%; }
.col-7  { flex: 0 0 auto; width: 58.333333%; }
.col-8  { flex: 0 0 auto; width: 66.666667%; }
.col-9  { flex: 0 0 auto; width: 75%; }
.col-10 { flex: 0 0 auto; width: 83.333333%; }
.col-11 { flex: 0 0 auto; width: 91.666667%; }
.col-12 { flex: 0 0 auto; width: 100%; }

/* SM (≥576px) */
@media (min-width: 576px) {
    .col-sm-1  { flex: 0 0 auto; width: 8.333333%; }
    .col-sm-2  { flex: 0 0 auto; width: 16.666667%; }
    .col-sm-3  { flex: 0 0 auto; width: 25%; }
    .col-sm-4  { flex: 0 0 auto; width: 33.333333%; }
    .col-sm-5  { flex: 0 0 auto; width: 41.666667%; }
    .col-sm-6  { flex: 0 0 auto; width: 50%; }
    .col-sm-7  { flex: 0 0 auto; width: 58.333333%; }
    .col-sm-8  { flex: 0 0 auto; width: 66.666667%; }
    .col-sm-9  { flex: 0 0 auto; width: 75%; }
    .col-sm-10 { flex: 0 0 auto; width: 83.333333%; }
    .col-sm-11 { flex: 0 0 auto; width: 91.666667%; }
    .col-sm-12 { flex: 0 0 auto; width: 100%; }
}

/* MD (≥768px) */
@media (min-width: 768px) {
    .col-md-1  { flex: 0 0 auto; width: 8.333333%; }
    .col-md-2  { flex: 0 0 auto; width: 16.666667%; }
    .col-md-3  { flex: 0 0 auto; width: 25%; }
    .col-md-4  { flex: 0 0 auto; width: 33.333333%; }
    .col-md-5  { flex: 0 0 auto; width: 41.666667%; }
    .col-md-6  { flex: 0 0 auto; width: 50%; }
    .col-md-7  { flex: 0 0 auto; width: 58.333333%; }
    .col-md-8  { flex: 0 0 auto; width: 66.666667%; }
    .col-md-9  { flex: 0 0 auto; width: 75%; }
    .col-md-10 { flex: 0 0 auto; width: 83.333333%; }
    .col-md-11 { flex: 0 0 auto; width: 91.666667%; }
    .col-md-12 { flex: 0 0 auto; width: 100%; }
}

/* LG (≥992px) */
@media (min-width: 992px) {
    .col-lg-1  { flex: 0 0 auto; width: 8.333333%; }
    .col-lg-2  { flex: 0 0 auto; width: 16.666667%; }
    .col-lg-3  { flex: 0 0 auto; width: 25%; }
    .col-lg-4  { flex: 0 0 auto; width: 33.333333%; }
    .col-lg-5  { flex: 0 0 auto; width: 41.666667%; }
    .col-lg-6  { flex: 0 0 auto; width: 50%; }
    .col-lg-7  { flex: 0 0 auto; width: 58.333333%; }
    .col-lg-8  { flex: 0 0 auto; width: 66.666667%; }
    .col-lg-9  { flex: 0 0 auto; width: 75%; }
    .col-lg-10 { flex: 0 0 auto; width: 83.333333%; }
    .col-lg-11 { flex: 0 0 auto; width: 91.666667%; }
    .col-lg-12 { flex: 0 0 auto; width: 100%; }
}

/* XL (≥1200px) */
@media (min-width: 1200px) {
    .col-xl-1  { flex: 0 0 auto; width: 8.333333%; }
    .col-xl-2  { flex: 0 0 auto; width: 16.666667%; }
    .col-xl-3  { flex: 0 0 auto; width: 25%; }
    .col-xl-4  { flex: 0 0 auto; width: 33.333333%; }
    .col-xl-5  { flex: 0 0 auto; width: 41.666667%; }
    .col-xl-6  { flex: 0 0 auto; width: 50%; }
    .col-xl-7  { flex: 0 0 auto; width: 58.333333%; }
    .col-xl-8  { flex: 0 0 auto; width: 66.666667%; }
    .col-xl-9  { flex: 0 0 auto; width: 75%; }
    .col-xl-10 { flex: 0 0 auto; width: 83.333333%; }
    .col-xl-11 { flex: 0 0 auto; width: 91.666667%; }
    .col-xl-12 { flex: 0 0 auto; width: 100%; }
}

/* XXL (≥1400px) */
@media (min-width: 1400px) {
    .col-xxl-1  { flex: 0 0 auto; width: 8.333333%; }
    .col-xxl-2  { flex: 0 0 auto; width: 16.666667%; }
    .col-xxl-3  { flex: 0 0 auto; width: 25%; }
    .col-xxl-4  { flex: 0 0 auto; width: 33.333333%; }
    .col-xxl-5  { flex: 0 0 auto; width: 41.666667%; }
    .col-xxl-6  { flex: 0 0 auto; width: 50%; }
    .col-xxl-7  { flex: 0 0 auto; width: 58.333333%; }
    .col-xxl-8  { flex: 0 0 auto; width: 66.666667%; }
    .col-xxl-9  { flex: 0 0 auto; width: 75%; }
    .col-xxl-10 { flex: 0 0 auto; width: 83.333333%; }
    .col-xxl-11 { flex: 0 0 auto; width: 91.666667%; }
    .col-xxl-12 { flex: 0 0 auto; width: 100%; }
}

/* ========== GRID UTILITIES ========== */
.g-0  { --grid-gutter: 0; }
.g-1  { --grid-gutter: 0.25rem; }
.g-2  { --grid-gutter: 0.5rem; }
.g-3  { --grid-gutter: 1rem; }
.g-4  { --grid-gutter: 1.5rem; }
.g-5  { --grid-gutter: 3rem; }

.g-0 > *, .gx-0 > * { padding-left: 0; padding-right: 0; }
.g-0, .gy-0 { margin-top: 0; margin-bottom: 0; }
.g-1 > *, .gx-1 > * { padding-left: 0.25rem; padding-right: 0.25rem; }
.g-2 > *, .gx-2 > * { padding-left: 0.5rem; padding-right: 0.5rem; }
.g-3 > *, .gx-3 > * { padding-left: 1rem; padding-right: 1rem; }
.g-4 > *, .gx-4 > * { padding-left: 1.5rem; padding-right: 1.5rem; }
.g-5 > *, .gx-5 > * { padding-left: 3rem; padding-right: 3rem; }

.justify-content-start   { justify-content: flex-start; }
.justify-content-end     { justify-content: flex-end; }
.justify-content-center  { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.justify-content-around  { justify-content: space-around; }

.align-items-start   { align-items: flex-start; }
.align-items-end     { align-items: flex-end; }
.align-items-center  { align-items: center; }
.align-items-stretch { align-items: stretch; }

.d-none, .visually-hidden  { display: none; }
.d-flex  { display: flex; }
.d-block { display: block; }

.mb-60{
    margin-bottom: 60px;
}

/* ========== HEADER ========== */
.header {
    background-image: url('../images/bg/header.png');
    background-position: center;
    background-repeat: repeat;
    border-bottom: 7px solid var(--green-color);
}

.header__inner {
    height: 182px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.header__logo {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: inherit;
    margin-top: -18px;
}

.header__logo-img {
    width: 180px;
    height: auto;
}

.header__logo-text {
    display: flex;
    flex-direction: column;
    margin-top: 40px;
}

.header__logo-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--green-color);
    line-height: 1.3;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: var(--mont-family);
}

.header__logo-subtitle {
    font-size: 16px;
    line-height: 20px;
    color: #fff;
    background: var(--green-color);
    padding: 2px 6px 0;
    border-radius: 2px;
    margin-top: 10px;
    font-family: var(--mont-family);
    font-weight: 500;
    display: flex;
    justify-content: center;
}

/* Controls */
.header__controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin-top: 26px;
}

.header__search {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: -14px;
    position: relative;
    z-index: 2;
    transition: opacity 0.2s;
}

.header__search path {
    transition: fill 0.2s ease;
}

.header__search:hover path,
.header__search-wrap.is-open .header__search path {
    fill: var(--green-color);
}

/* Search wrap — anchor for the expanding input */
.header__search-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

/* The expanding input container */
.header__search-dropdown {
    position: absolute;
    right: calc(100% + 24px);
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    overflow: hidden;
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.header__search-wrap.is-open .header__search-dropdown {
    width: 300px;
}

/* The form inside */
.header__search-dropdown form {
    display: flex;
    align-items: stretch;
    background: #fff;
    border: 2px solid var(--green-color);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.13);
    white-space: nowrap;
    position: relative;
}

.header__search-dropdown input[type="text"],
.header__search-dropdown input[type="search"] {
    flex: 1;
    border: none;
    outline: none;
    padding: 9px 44px 9px 12px;
    font-size: 15px;
    color: #222;
    background: transparent;
    min-width: 0;
}

.header__search-dropdown input[type="text"]::placeholder,
.header__search-dropdown input[type="search"]::placeholder {
    color: #aaa;
}

/* X close button — absolute inside the form on the right */
.header__search-close {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 500;
    transition: color 0.2s;
    padding: 0;
}

.header__search-close:hover {
    color: var(--green-color);
}

/* ========== LANGUAGE SWITCHER ========== */
.mod-languages .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.mod-languages .mod-languages__select {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.mod-languages__arrow {
    margin-left: 8px;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.mod-languages__arrow path {
    transition: fill 0.2s ease;
}

.mod-languages .mod-languages__select:hover .mod-languages__arrow path {
    fill: var(--green-color);
}

.mod-languages .mod-languages__select.open .mod-languages__arrow {
    transform: rotate(-180deg);
}

.mod-languages .btn-secondary {
    width: 52px;
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--dark-green);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 4px 13px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    line-height: 1;
    transition: background 0.2s;
}

.mod-languages .btn-secondary:hover {
    background: var(--green-color);
}

.mod-languages .btn-secondary.dropdown-toggle::after {
    display: none;
}

.mod-languages .dropdown-menu {
    position: absolute;
    top: 100%;
    right: auto;
    left: 0;
    margin-top: 6px;
    padding: 6px 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    list-style: none;
    width: 52px;
    min-width: 52px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.mod-languages .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mod-languages .dropdown-menu li a {
    display: block;
    padding: 4px 0;
    color: var(--color-3);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    text-align: center;
    transition: background 0.15s, color 0.15s;
}

.mod-languages .dropdown-menu li a:hover {
    background: var(--color-4);
    color: var(--green-color);
}

.mod-languages .dropdown-menu li.lang-active a {
    color: var(--green-color);
    font-weight: 700;
}

/* ========== MOBILE MENU ========== */
/* Burger */
.header__burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 54px;
    height: 52px;
    background: var(--green-color);
    border: none;
    border-radius: 6px;
    padding: 10px;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}
.header__burger:hover {
    background: var(--dark-green);
}

.header__burger span {
    display: block;
    height: 5px;
    background: #fff;
    border-radius: 2px;
}
.mobile-menu__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu__backdrop--open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__panel {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    padding: 110px 0 50px;
    width: 400px;
    max-width: 90vw;
    background: var(--green-color);
    z-index: 9999;
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
}

.mobile-menu__panel--open {
    transform: translateX(0);
}

.mobile-menu__header {
    display: flex;
    align-items: center;
    padding: 18px 26px;
    position: relative;
    flex-wrap: wrap;
}

.mobile-menu__close {
    position: absolute;
    top: 42px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color);
    transition: opacity 0.2s ease;
}

.mobile-menu__close:hover {
    opacity: 0.9;
}

/* Title bar */
.mobile-menu__title-bar {
    padding: 0 26px 18px;
}

.mobile-menu__title-bar--sub {
    background: rgba(255, 255, 255, 0.74);
    padding: 16px 26px;
    font-family: var(--second-family);
    font-weight: 800;
    font-size: 20px;
    letter-spacing: 0.01em;
    color: var(--dark-green);
}

.mobile-menu__title {
    margin: 0;
    font-family: var(--second-family);
    font-weight: 800;
    font-size: 28px;
    letter-spacing: 0.01em;
    color: var(--color);
    text-transform: uppercase;
    line-height: 1.25;
}

.mobile-menu__title-bar--sub .mobile-menu__title {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark-green);
}


.mobile-menu__back {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 6px 22px;
    background: none;
    border: none;
    cursor: pointer;
    transition: background 0.15s ease;
    text-align: left;
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--color);
}
.mobile-menu__back:hover {
    background: var(--dark-green);
}

.mobile-menu__back svg {
    flex-shrink: 0;
    width: 20px;
    height: 18px;
}

.mobile-menu__list {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}

.mobile-menu__item {
    border-top: 2px solid var(--dark-green);
}

.mobile-menu__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 9px 22px 9px 26px;
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
    text-align: left;
    gap: 20px;
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: var(--color);
}

.mobile-menu__link:hover {
    background: var(--dark-green);
}

.mobile-menu__chevron {
    flex-shrink: 0;
    height: 17px;
    width: 20px;
}

/* Vehicles illustration at bottom of first level */
.mobile-menu__vehicles {
    padding: 30px 26px 0;
    margin-top: auto;
}

.mobile-menu__vehicles-img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========== SIDEBAR MENU ========== */
.catalog-sidebar-header,
.services-menu h3 {
    margin: 0 0 20px;
    padding: 12px 20px 9px;
    background: var(--green-color);
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    color: var(--color);
    line-height: 1.2;
}
.catalog-sidebar-header{
    margin: 0 0 5px;
}
.services-menu.catalog-menu h3 {
    background: rgba(54, 153, 43, 0.65);;
}

.services-menu .mod-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.services-menu .nav-item {
    margin-bottom: 5px;
}

.services-menu .nav-item:last-child {
    border-bottom: none;
}

.services-menu .nav-item a {
    display: flex;
    align-items: center;
    padding: 12px 30px 9px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 1.2;
    color: var(--222222);
    text-decoration: none;
    text-transform: uppercase;
    background: #d9d9d9;
    transition: background 0.15s ease, color 0.15s ease;
}

.services-menu .nav-item a:hover {
    background: #f0f0f0;
    color: var(--dark-green);
}

.services-menu .nav-item.current a {
    background: rgba(54, 153, 43, 0.4);
    font-weight: 700;
    font-size: 20px;
    color: var(--color);
}

/* ========== BREADCRUMBS ========== */
.breadcrumbs {
    margin: 0 auto;
}

.breadcrumbs .mod-breadcrumbs__wrapper {
    padding: 0;
}

.breadcrumbs .breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    padding: 20px 0 0;
    margin: 0;
    gap: 0;
}

.breadcrumbs .breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    color: var(--color-2);
    line-height: 1.4;
}

.breadcrumbs .breadcrumb-item + .breadcrumb-item::before {
    content: '>';
    display: inline-block;
    padding: 0 10px;
    color: var(--909090);
    font-size: 16px;
    font-weight: 400;
}

.breadcrumbs .breadcrumb-item a {
    color: var(--color-2);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumbs .breadcrumb-item a:hover {
    color: var(--green-color);
}

.breadcrumbs .breadcrumb-item.active span {
    color: var(--color-2);
}

.breadcrumbs .breadcrumb-home {
    display: flex;
    align-items: center;
}

.breadcrumbs .breadcrumb-home-icon {
    display: block;
    width: 16px;
    height: 18px;
}

.breadcrumbs .breadcrumb-home:hover .breadcrumb-home-icon path {
    fill: var(--dark-green);
    transition: stroke 0.3s ease;
}

.breadcrumbs .mod-breadcrumbs__here {
    display: none;
}

/* ========== CONTENT ========== */
.content{
    margin-top: 26px;
    display: flex;
    gap: 50px;
}
.content-component-wrap{
    display: flex;
    gap: 50px;
}

.content__sidebar {
    flex: 0 0 285px;
    width: 285px;
}
.content__sidebar-menu {
    flex: 0 0 387px;
    width: 387px;
    max-width: 100%;
}

.content__main {
    flex: 1;
    min-width: 0;
}

@media (max-width: 991px) {
    .content {
        flex-direction: column;
        gap: 30px;
    }

    .content__sidebar {
        flex: 0 0 auto;
        width: 100%;
    }

    .content__sidebar-menu {
        flex: 0 0 auto;
        width: 100%;
    }
}

.content .page-header{
    margin-bottom: 20px;
}
.content .page-header h1{
    font-weight: 600;
    font-size: 30px;
    line-height: 1.35;
    color: var(--222222);
}
.content .com-content-article__body p{
    font-weight: 400;
    font-size: 17px;
    line-height: 1.4;
    color: var(--222222);
    margin-bottom: 1rem;
}
.content .com-content-article__body p.underImageP{
    margin-top: 34px;
}
.content .com-content-article__body strong{
    font-weight: 600;
}
.content .com-content-article__body ul{
    margin-left: 26px;
    margin-bottom: 1rem;
}
.content .com-content-article__body li{
    font-weight: 400;
    font-size: 17px;
    line-height: 1.4;
    color: var(--222222);
    margin-bottom: 6px;
}
.content .com-content-article__body img{
    max-width: 100%;
    height: auto;
    margin-bottom: 25px;
}

/* ========== ARTICLE INFO BLOCK ========== */
.content .article-info {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
}

.content .article-info .article-info-term {
    display: none;
}

.content .article-info dd {
    margin: 0;
    font-weight: 500;
    font-size: 17px;
    color: var(--909090);
    line-height: 1.4;
}

.content .article-info dd .icon-calendar,
.content .article-info dd .icon-fw {
    display: none;
}

/* ========== BLOG CATEGORY ========== */
.blog-articles h1{
    margin-bottom: 40px;
    font-weight: 800;
    font-size: 35px;
    text-transform: uppercase;
    color: var(--222222);
}
.blog-articles .blog-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.blog-articles .blog-items.items-leading .blog-item {
    flex: 0 0 100%;
    max-width: 100%;
}

.blog-articles .blog-items:not(.items-leading) .blog-item {
    flex: 0 0 50%;
    max-width: 44%;
}

.blog-articles .blog-item {
    padding: 20px 20px 30px;
    border-bottom: 1px solid #c5c5c5;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

/* Hide bottom border on last row (2-col: last 2 items if even count, last 1 if odd) */
.blog-articles .blog-items:not(.items-leading) .blog-item:last-child,
.blog-articles .blog-items:not(.items-leading) .blog-item:nth-last-child(2):nth-child(odd) {
    border-bottom: none;
}

/* For leading (single column): just last item */
.blog-articles .blog-items.items-leading .blog-item:last-child {
    border-bottom: none;
}

.blog-articles .blog-item .item-content {
    display: flex;
    flex-direction: column;
}

.blog-articles .blog-item h2,
.blog-articles .blog-item .page-header h2 {
    font-weight: 600;
    font-size: 20px;
    line-height: 1.35;
    color: var(--222222);
}

.blog-articles .blog-item h2 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-articles .blog-item h2 a:hover {
    color: var(--green-color);
}

.blog-articles .blog-item .readmore {
    margin: auto 0 0;
    padding: 0;
}

.blog-articles .blog-item .readmore .btn-readmore {
    display: inline-flex;
    align-items: center;
    gap: 26px;
    background: var(--dark-green);
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 10px 14px;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.3;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

.blog-articles .blog-item .readmore .btn-readmore:hover {
    background: var(--green-color);
}

.blog-articles .blog-item .readmore .btn-readmore svg {
    flex-shrink: 0;
    margin-top: 2px;
}

@media (max-width: 767px) {
    .blog-articles .blog-items:not(.items-leading) .blog-item {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .blog-articles .blog-items:not(.items-leading) .blog-item:nth-child(odd) {
        border-right: none;
    }
}

/* ========== NEWS CATEGORY ========== */
.blog-news h1 {
    font-weight: 800;
    font-size: 35px;
    text-transform: uppercase;
    color: var(--222222);
}

.blog-news__items {
    display: flex;
    flex-direction: column;
}

.blog-news__item {
    border-bottom: 1px solid #c5c5c5;
}

.blog-news__item:last-child {
    border-bottom: none;
}

.blog-news__content {
    display: flex;
    gap: 30px;
    padding: 35px 0;
    align-items: flex-start;
}

/* Image wrapper with date overlay */
.blog-news__image-wrap {
    position: relative;
    flex: 0 0 488px;
    width: 488px;
    overflow: hidden;
}

.blog-news__image-link {
    display: block;
    line-height: 0;
}

.blog-news__image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* Date above the title in body column */
.blog-news__date {
    display: inline-block;
    font-weight: 500;
    font-size: 17px;
    color: var(--909090);
    line-height: 1;
    margin-bottom: 14px;
    white-space: nowrap;
}


.blog-news__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.blog-news__title {
    font-weight: 600;
    font-size: 28px;
    line-height: 1.35;
    color: var(--222222);
    margin: 0 0 40px;
}

.blog-news__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
    display: block;
}

.blog-news__title a:hover {
    color: var(--green-color);
}

.blog-news__readmore {
    margin: auto 0 0;
    padding: 0;
}

.blog-news__readmore .btn-readmore {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    background: var(--dark-green);
    color: #fff;
    border: none;
    border-radius: 2px;
    padding: 10px 14px;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.3;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

.blog-news__readmore .btn-readmore:hover {
    background: var(--green-color);
}

.blog-news__readmore .btn-readmore svg {
    flex-shrink: 0;
    margin-top: 2px;
}

@media (max-width: 767px) {
    .blog-news__content {
        flex-direction: column;
        gap: 15px;
    }

    .blog-news__image-wrap {
        flex: 0 0 auto;
        width: 100%;
    }

    .blog-news__image {
        height: auto;
        max-height: 250px;
    }
}

/* ========== MODULE: ARTICLES CATEGORY ========== */
.mod-articlescategory-articles__items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.mod-articlescategory-articles__header{
    margin: 8px 0 0;
    padding: 8px 20px;
    background: var(--green-color);
    color: var(--color);
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
}

.mod-articlescategory-articles__item {
    padding: 20px 0;
    border-bottom: 1px solid #c5c5c5;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.mod-articlescategory-articles__item:last-child {
    border-bottom: none;
}

.mod-articlescategory-articles__title {
    font-weight: 600;
    font-size: 17px;
    line-height: 1.4;
    color: var(--222222);
    margin: 0 0 12px;
}

.mod-articlescategory-articles__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.mod-articlescategory-articles__title a:hover {
    color: var(--green-color);
}

.mod-articlescategory-articles__readmore {
    margin: auto 0 0;
    padding: 0;
}

.mod-articlescategory-articles__readmore .btn-readmore {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    background: var(--dark-green);
    border: none;
    border-radius: 4px;
    padding: 3px 9px;
    font-weight: 700;
    font-size: 15px;
    color: var(--color);
    line-height: 1.3;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

.mod-articlescategory-articles__readmore .btn-readmore:hover {
    background: var(--green-color);
}

.mod-articlescategory-articles__readmore .btn-readmore svg {
    flex-shrink: 0;
    margin-top: 1px;
    width: 14px;
    height: 12px;
}

.mod-articlescategory-articles__group-title {
    font-weight: 600;
    font-size: 22px;
    line-height: 1.35;
    color: var(--222222);
    margin: 0 0 20px;
}

@media (max-width: 767px) {
    .mod-articlescategory-articles__item {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* ========== MODULE: NEWS CATEGORY (SIDEBAR) ========== */
.mod-newscategory__header {
    margin: 8px 0 0;
    padding: 8px 20px;
    background: var(--green-color);
    color: var(--color);
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
}

.mod-newscategory__items {
    display: flex;
    flex-direction: column;
}

.mod-newscategory__item {
    padding: 20px 0;
    border-bottom: 1px solid #c5c5c5;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.mod-newscategory__item:last-child {
    border-bottom: none;
}

.mod-newscategory__date {
    display: inline-block;
    font-weight: 500;
    font-size: 14px;
    color: var(--909090);
    line-height: 1.2;
    margin-bottom: 8px;
}

.mod-newscategory__title {
    font-weight: 600;
    font-size: 17px;
    line-height: 1.4;
    color: var(--222222);
    margin: 0 0 12px;
}

.mod-newscategory__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.mod-newscategory__title a:hover {
    color: var(--green-color);
}

.mod-newscategory__readmore {
    margin: auto 0 0;
    padding: 0;
}

.mod-newscategory__readmore .btn-readmore {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    background: var(--dark-green);
    border: none;
    border-radius: 4px;
    padding: 3px 9px;
    font-weight: 700;
    font-size: 15px;
    color: var(--color);
    line-height: 1.3;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

.mod-newscategory__readmore .btn-readmore:hover {
    background: var(--green-color);
}

.mod-newscategory__readmore .btn-readmore svg {
    flex-shrink: 0;
    margin-top: 1px;
    width: 14px;
    height: 12px;
}

/* ========== PRODUCTS GRID ========== */
.main-page-products{
    margin-top: 80px;
}
.main-page-products h3{
    font-weight: 800;
    font-size: 35px;
    line-height: 1.2;
    color: var(--222222);
    text-transform: uppercase;
}
.products {
    margin-top: 15px;
}

.products__heading {
    font-weight: 800;
    font-size: 35px;
    line-height: 42px;
    text-transform: uppercase;
    color: var(--222222);
    margin: 0 0 20px;
}

.products__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
}

.products__card {
    position: relative;
    display: block;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    border-bottom: 8px solid var(--green-color);
    transition: border-color 0.3s ease;
}

.products__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.products__label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 20px 2px;
    background: rgba(23, 23, 23, 0.65);
    color: #fff;
    transition: background 0.3s ease;
}
.products__label::after {
    content: '';
    display: inline-block;
    width: 21px;
    height: 18px;
    flex-shrink: 0;
    background: url("../images/icons/arrows.svg") no-repeat center / contain;
    transition: transform 0.3s ease;
}
.products__card:hover .products__label::after {
    transform: translateX(4px);
}
.products__card:hover .products__label {
    background: rgba(23, 23, 23, 0.85);
}

.products__label-text {
    font-weight: 600;
    font-size: 28px;
    letter-spacing: 0.03em;
    color: var(--color);
}

@media (max-width: 575px) {
    .products__grid {
        grid-template-columns: 1fr;
    }
}

/* ========== MODULE: MAIN SLIDER (HOME) ========== */
.main-page-slider .n2-ss-slider-controls{
    align-items: end !important;
    margin: 10px 40px 0;
}
.main-page-slider .n2-ss-slider-controls .nextend-bullet-bar{
    gap: 10px;
}
.main-page-slider .n2-ss-slider-controls .n2-bullet{
    background: var(--light-gray) !important;
    width: 35px;
    height: 4px;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}
.main-page-slider .n2-ss-slider-controls .n2-bullet.n2-active{
    background: var(--dark-green) !important;
}

/* ========== MODULE: NEWS SLIDER (HOME) ========== */
.mod-news-slider {
    position: relative;
    margin-bottom: 120px;
}

.mod-news-slider__header {
    font-weight: 800;
    font-size: 35px;
    line-height: 42px;
    color: var(--222222);
    text-transform: uppercase;
    margin: 0 0 15px;
}

.mod-news-slider__track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
}

.mod-news-slider__track::-webkit-scrollbar {
    display: none;
}

.mod-news-slider__slide {
    flex: 0 0 calc((100% - 40px) / 3);
    min-width: 0;
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
}

.mod-news-slider__image-link {
    display: block;
    line-height: 0;
    margin-bottom: 10px;
}

.mod-news-slider__image {
    width: 100%;
    object-fit: cover;
    display: block;
}

.mod-news-slider__date {
    display: block;
    font-weight: 500;
    font-size: 18px;
    color: var(--909090);
    line-height: 1.2;
    margin-bottom: 12px;
}

.mod-news-slider__title {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.4;
    color: var(--222222);
    margin: 0;
}

.mod-news-slider__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
    display: block;
}

.mod-news-slider__title a:hover {
    color: var(--green-color);
}

.mod-news-slider__controls {
    display: none;
}

.mod-news-slider__btn {
    position: absolute;
    top: 48%;
    transform: translateY(-100%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    opacity: 0.6;
    border-radius: 6px;
    border: 1px solid var(--dark-green);
    background: var(--dark-green);
    color: #fff;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.mod-news-slider__btn--prev {
    left: 10px;
}

.mod-news-slider__btn--next {
    right: 10px;
}

.mod-news-slider__btn:hover {
    background: var(--green-color);
    border-color: var(--green-color);
    opacity: 1;
}

.mod-news-slider__btn:disabled {
    opacity: 0;
    cursor: default;
    pointer-events: none;
}

.mod-news-slider__btn svg {
    display: block;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .mod-news-slider__slide {
        flex: 0 0 calc((100% - 20px) / 2);
    }
}

@media (max-width: 575px) {
    .mod-news-slider__slide {
        flex: 0 0 100%;
    }
}

/* ========== PAGINATION ========== */
.pagination__wrapper {
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination__item {
    display: flex;
}

.pagination__link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    border: 1px solid var(--dark-green);
    background: var(--dark-green);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.pagination__link:hover {
    background: var(--green-color);
    border-color: var(--green-color);
    color: #fff;
}

/* Active page number */
.pagination__link--current {
    background: #fff;
    color: var(--dark-green);
    border-color: var(--dark-green);
}

.pagination__link--current:hover {
    background: var(--color-4);
    border-color: var(--dark-green);
    color: var(--dark-green);
}

/* Nav buttons (start, prev, next, end) */
.pagination__link--nav {
    background: var(--dark-green);
    color: #fff;
    border-color: var(--dark-green);
}

.pagination__link--nav:hover {
    background: var(--green-color);
    border-color: var(--green-color);
    color: #fff;
}

/* Disabled page numbers */
.pagination__link--disabled {
    color: var(--light-gray);
    border-color: var(--light-gray);
    background: #fff;
    cursor: default;
    pointer-events: none;
}

/* Disabled nav buttons */
.pagination__link--disabled.pagination__link--nav {
    background: var(--light-gray);
    border-color: var(--light-gray);
    color: #fff;
}

.pagination__link svg {
    display: block;
    flex-shrink: 0;
}

/* ========== FOOTER ========== */
.footer {
    background-image: url('../images/bg/footer.png');
    background-position: center;
    background-repeat: repeat;
    color: #fff;
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    gap: 90px;
    padding-top: 40px;
    padding-bottom: 50px;
}
.footer__left{
    display: flex;
    justify-content: space-between;
    gap: 90px;
}

.footer__logo {
    flex-shrink: 0;
}

.footer__logo-img {
    width: 135px;
    height: auto;
    margin-top: 28px;
}

.footer__info {
    flex: 1;
}

.footer__heading {
    font-family: var(--font-family);
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
}
.footer__heading-contacts{
    text-align: left;
}

.footer__info-columns {
    display: flex;
    gap: 100px;
}

.footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__links li {
    margin-bottom: 10px;
}
.footer__links li:last-child {
    margin-bottom: 0;
}

.footer__links a {
    color: #fff;
    font-family: var(--font-family);
    font-size: 18px;
    font-weight: 400;
    line-height: 25px;
    transition: opacity 0.2s;
}

.footer__links a:hover {
    opacity: 0.8;
}

.footer__contacts {
    flex-shrink: 0;
}

.footer__contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__contact-list li,
.footer__contact-list li a {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 6px;
    color: #fff;
    font-family: var(--font-family);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}
.footer__contact-list li{
    align-items: flex-start;
}

.footer__contact-list a {
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer__contact-list a:hover {
    opacity: 0.8;
}

/* Footer mobile */
@media (max-width: 991px) {
    .footer__inner {
        flex-direction: column;
        gap: 40px;
        align-items: center;
        text-align: center;
    }

    .footer__left {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .footer__logo {
        text-align: center;
    }

    .footer__logo-img {
        margin-top: 0;
    }

    .footer__info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer__heading {
        text-align: center;
    }

    .footer__heading-contacts {
        text-align: center;
    }

    .footer__info-columns {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .footer__links {
        text-align: center;
    }

    .footer__contacts {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer__contact-list {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer__contact-list li,
    .footer__contact-list li a {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 575px) {
    .header__logo-text,
    .header__logo-subtitle {
        display: none;
    }
    .footer__inner {
        gap: 30px;
        padding-top: 30px;
        padding-bottom: 35px;
    }

    .footer__heading {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .footer__links a {
        font-size: 16px;
    }

    .footer__contact-list li,
    .footer__contact-list li a {
        font-size: 16px;
        gap: 14px;
    }
}

/* ========== JSHOPPING: PRODUCT LIST ========== */
.jshop-products-list__items {
    display: flex;
    flex-direction: column;
}

.jshop-products-list__item {
    border-bottom: 1px solid #c5c5c5;
}

.jshop-products-list__item:last-child {
    border-bottom: none;
}
.jshop-products-list__item:first-child .jshop-card {
    padding-top: 0;
}
.jshop-products-list__item:last-child .jshop-card {
    padding-bottom: 0;
}

.jshop-card {
    display: flex;
    gap: 20px;
    padding: 30px 0;
    align-items: flex-start;
}

.jshop-card__image {
    flex: 0 0 356px;
    width: 356px;
    position: relative;
}

.jshop-card__image-link {
    display: block;
    line-height: 0;
}

.jshop-card__img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.jshop-card__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.jshop-products-list__item .jshop-card__name {
    margin-top: -5px;
}
.jshop-card__name {
    margin: 0 0 10px;
}

.jshop-card__name a {
    font-weight: 800;
    font-size: 20px;
    line-height: 135%;
    text-transform: uppercase;
    color: var(--222222);
    display: inline-block;
}

.jshop-card__name a:hover {
    color: var(--green-color);
}

.jshop-card__article {
    font-weight: 400;
    font-size: 17px;
    margin-bottom: 10px;
    color: var(--222222);
}
.jshop-card__article span{
    font-weight: 600;
}

.jshop-card__price {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 17px;
    color: var(--222222);
}

.jshop-card__price-label {
    font-weight: 600;
    font-size: 17px;
    color: var(--222222);
}

.jshop-card__price-value {
    font-weight: 700;
    font-size: 28px;
    letter-spacing: -0.03em;
}

.jshop-card__price-info-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.jshop-card__price-info {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: 8px;
    transition: opacity 0.2s ease;
}

.jshop-card__price-info:hover {
    opacity: 1;
}

.jshop-card__price-popover {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #333;
    font-size: 15px;
    line-height: 1.3;
    padding: 10px 14px;
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
    width: 200px;
    text-align: center;
    white-space: normal;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 10;
    font-weight: 500;
}

.jshop-card__price-popover::after {
    content: '';
    position: absolute;
    top: 100%;
    left: calc(50% + 4px);
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #fff;
}

.jshop-card__price-info-wrap:hover .jshop-card__price-popover {
    opacity: 1;
    visibility: visible;
}

.jshop-card__availability {
    font-weight: 400;
    font-size: 17px;
    margin-top: 20px;
    color: var(--222222);
}

.jshop-card__availability span {
    font-weight: 600;
}

.jshop-card__availability--0 span {
    color: #c00;
}

.jshop-card__availability--1 span {
    color: var(--green-color);
}

.jshop-card__availability--3 span {
    color: #777777;
}

.jshop-card__availability--2 span {
    color: var(--light-blue);
}

.jshop-card .price_extra_info {
    font-size: 14px;
    color: var(--909090);
    margin-bottom: 6px;
}

.jshop-card .price_extra_info:empty {
    display: none;
}

.jshop-card .product_label {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 2;
}

/* Hide default jshop elements we don't need */
.jshop_list_product .form_params,
.jshop_list_product .display_params {
    margin-bottom: 20px;
}

.jshop_pagination{
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

#list_product_image_thumb{
    display: flex;
    gap: 20px;
    padding: 0 5px;
}
.productfull .image_thumb_list .sblock0{
    max-width: 190px;
}

#list_product_image_thumb .sblock0 {
    border-bottom: 4px solid #c6c5c5;
    line-height: 0;
    padding: 0;
}

#list_product_image_thumb .sblock0.active {
    border-color: var(--green-color);
}

.productfull .image_middle{
    margin-bottom: 40px;
}
.image_thumb_list{
    margin-bottom: 20px;
}
img.jshop_img_thumb{
    margin-bottom: 4px;
}

.jshop-detail__divider {
    border: none;
    border-top: 1px solid #c5c5c5;
    margin: 20px 0;
}

.jshop-detail__short-desc {
    font-size: 16px;
    line-height: 1.4;
    color: var(--222222);
    margin-bottom: 16px;
}

.jshop-detail__back-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #d9d9d9;
    border: none;
    border-radius: 4px;
    padding: 8px 16px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease;
    letter-spacing: 0.02em;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.3;
    color: var(--color-2);
    max-width: 266px;
    text-align: left;
}

.jshop-detail__back-btn:hover {
    background: #cccccc;
}

.jshop-detail__back-btn svg {
    flex-shrink: 0;
}

.jshop_oiproduct{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.productfull .jshop h1{
    font-weight: 800;
    font-size: 28px;
    line-height: 1.3;
    margin-top: -5px;
    margin-bottom: 16px;
    text-transform: uppercase;
    color: var(--222222);
}
.jshop_oiproduct .manufacturer_name,
.jshop_oiproduct .manufacturer_code{
    font-weight: 400;
    font-size: 20px;
    color: var(--222222);
    line-height: 1.2;
    margin-bottom: 6px;
}
.jshop_oiproduct .manufacturer_name span,
.jshop_oiproduct .manufacturer_code span{
    font-weight: 600;
}
.jshop_oiproduct .jshop-card__price{
    font-weight: 500;
    font-size: 20px;
    color: var(--222222);
}
.productfull #block_price{
    font-weight: 700;
    font-size: 30px;
    letter-spacing: -0.03em;
    color: var(--222222);
}
.jshop_oiproduct .jshop-card__availability{
    font-weight: 400;
    font-size: 20px;
    margin-top: 22px;
    margin-bottom: 25px;
}
.jshop_oiproduct .jshop-card__availability span{
    font-weight: 600;
}
.jshop_oiproduct .jshop-detail__short-desc{
    margin-bottom: 40px;
}
.jshop_oiproduct .jshop-detail__short-desc p{
    margin-bottom: 10px;
}
.jshop_oiproduct .button_back{
    margin-bottom: 20px;
}

.product-bottom-info{
    margin-top: 80px;
    text-align: center;
    width: 100%;
}
.product-bottom-info p{
    font-weight: 500;
    font-size: 15px;
    line-height: 1.4;
    text-align: center;
    color: var(--222222);
    margin-bottom: 10px;
}
.product-bottom-info .prod-info-bottom-big-text{
    font-weight: 700;
    font-size: 17px;
    text-transform: uppercase;
    text-align: center;
    color: var(--dark-green);
    margin: 20px 0 15px;
}
.product-bottom-info .prod-bottom-contacts{
    display: flex;
    gap: 100px;
    justify-content: center;
    margin-top: 12px;
}
.product-bottom-info .prod-bottom-contacts a{
    display: inline-flex;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.3;
    padding-left: 25px;
    color: var(--dark-green);
}
.product-bottom-info .prod-bottom-contacts a:first-child{
    background: url("../images/icons/contacts/product/call.svg") no-repeat center left 0;
}
.product-bottom-info .prod-bottom-contacts a:last-child{
    background: url("../images/icons/contacts/product/mail.svg") no-repeat center left 0;
}

/* ========== JSHOPPING: PRODUCT ACCORDION ========== */
.jshop-accordion {
    margin-top: 40px;
}

.jshop-accordion__item {
    background: var(--color-4);
    margin-bottom: 25px;
}

.jshop-accordion__header {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    padding: 12px 25px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.15s ease;
    font-weight: 700;
    font-size: 25px;
    color: var(--dark-green);
}

.jshop-accordion__header::before {
    content: '';
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    background: url('../images/icons/info.svg') no-repeat center / contain;
}

.jshop-accordion__header::after {
    content: '';
    flex-shrink: 0;
    width: 22px;
    height: 14px;
    background: url('../images/icons/accordion-chevron.svg') no-repeat center / contain;
    transition: transform 0.3s ease;
    margin-left: auto;
}

.jshop-accordion__item--open .jshop-accordion__header::after {
    transform: rotate(180deg);
}

.jshop-accordion__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 25px;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: var(--black-onyx);
}
.jshop-accordion__body-two-cols{
    display: flex;
    gap: 100px;
}
.jshop-accordion__item--open .jshop-accordion__body {
    padding: 5px 25px 25px;
}

.jshop-accordion__body p,
.jshop-accordion__body ul {
    margin-bottom: 10px;
    line-height: 1.4;
}
.jshop-accordion__body ul,
.jshop-accordion__body ol{
    margin-left: 24px;
}
.jshop-accordion__body ul li,
.jshop-accordion__body ol li{
    margin-bottom: 5px;
}

.jshop-accordion__body img {
    max-width: 100%;
    height: auto;
}

/* ========== FINDER / SEARCH PAGE ========== */
.com-finder {
    padding: 0 0 20px;
}

/* Page heading */
.com-finder > h1 {
    font-weight: 800;
    font-size: 35px;
    line-height: 1.2;
    color: var(--222222);
}

/* ---- Search form ---- */
.com-finder__form {
    margin-bottom: 30px;
    margin-top: 16px;
}
.com-finder__form .form-inline label{
    display: none;
}

.js-finder-searchform .com-finder__search {
    border: none;
    padding: 0;
    margin: 0;
}

.js-finder-searchform .form-inline {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.js-finder-searchform .form-inline label {
    font-weight: 600;
    font-size: 17px;
    color: var(--222222);
    white-space: nowrap;
    margin: 0;
}

.js-finder-searchform .input-group {
    display: flex;
    align-items: stretch;
    flex: 1;
    min-width: 500px;
    max-width: 500px;
    border: 2px solid var(--green-color);
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}

.js-finder-searchform input.js-finder-search-query {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px 16px;
    font-size: 16px;
    color: var(--222222);
    background: transparent;
    min-width: 0;
}

.js-finder-searchform input.js-finder-search-query::placeholder {
    color: #aaa;
}

.js-finder-searchform .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-color);
    color: #fff;
    border: none;
    border-radius: 0;
    padding: 10px 20px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease;
    flex-shrink: 0;
}

.js-finder-searchform .btn-primary:hover {
    background: var(--dark-green);
}

.js-finder-searchform .btn-primary .icon-search,
.js-finder-searchform .btn-primary .icon-white {
    display: none;
}

.js-finder-searchform .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #d9d9d9;
    color: var(--222222);
    border: none;
    border-radius: 6px;
    padding: 10px 16px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.2s ease;
    flex-shrink: 0;
}

.js-finder-searchform .btn-secondary:hover {
    background: #c8c8c8;
}

/* ---- No Results ---- */
.com-finder__empty {
    padding: 5px 0 10px;
}

.com-finder__empty h2 {
    font-weight: 400;
    font-size: 20px;
    color: var(--222222);
    margin: 0 0 12px;
}

.com-finder__empty p {
    font-size: 17px;
    color: var(--color-2);
    line-height: 1.5;
    margin: 0;
}

/* ---- Results list ---- */
#search-result-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.result__item+.result__item{
    border-top: none;
    margin-top: 0;
}

#search-result-list li {
    border-bottom: 1px solid #c5c5c5;
    padding: 22px 0;
}

#search-result-list li:first-child {
    padding-top: 0;
}

#search-result-list li:last-child {
    border-bottom: none;
}

.com-finder__result-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 1.35;
    color: var(--222222);
    margin: 0 0 8px;
}

/* ---- Pagination / counter ---- */
.com-finder__navigation {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 30px;
}

.com-finder__counter {
    font-size: 15px;
    color: var(--909090);
}
.com-finder__results .result__title-link{
    text-decoration: none;
    font-weight: 500;
}
.com-finder__results .result__title-link .result__title-text{
    font-size: 20px;
    transition: color 0.2s;
}
.com-finder__results .result__title-link:hover .result__title-text{
    text-decoration: none;
    color: var(--dark-green);
}

/* Bootstrap pagination used by Joomla finder */
.com-finder__pagination .pagination {
    display: flex;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.com-finder__pagination .pagination .page-item .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-green);
    text-decoration: none;
    border: 1px solid var(--dark-green);
    background: #fff;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.com-finder__pagination .pagination .page-item .page-link:hover {
    background: var(--color-4);
    color: var(--green-color);
}

.com-finder__pagination .pagination .page-item.active .page-link {
    background: var(--dark-green);
    color: #fff;
    border-color: var(--dark-green);
}

.com-finder__pagination .pagination .page-item.disabled .page-link {
    color: var(--light-gray);
    border-color: var(--light-gray);
    background: #fff;
    pointer-events: none;
}

/* ========== DEMO FILES ========== */
.jshop .list_product_demo{
    display: flex;
    flex-direction: column;
    padding-top: 0;
    margin: 0 3px;
}
.demo-file {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 0;
    text-decoration: none;
    transition: opacity 0.2s ease;
}
.demo-file:hover {
    opacity: 0.75;
}
.demo-file__icon {
    flex-shrink: 0;
    width: 18px;
    height: 22px;
}
.demo-file__name {
    font-weight: 700;
    font-size: 17px;
    text-transform: uppercase;
    color: var(--222222);
    text-transform: uppercase;
}

@media (max-width: 1400px) {
    .blog-articles .blog-items:not(.items-leading) .blog-item{
        max-width: 46%;
    }
    .content__sidebar-menu {
        flex: 0 0 350px;
        width: 350px;
    }
    .content,
    .content-component-wrap{
        gap: 30px;
    }
    .productfull .image_thumb_list .sblock0 {
        max-width: 32%;
    }
    #list_product_image_thumb{
        gap: 2%;
    }
    .mod-spare-parts__fields{
        gap: 30px;
    }
}

@media (max-width: 1200px) {
    .blog-news__image-wrap{
        flex: 0 0 450px;
        width: 450px;
    }
    .blog-news__title {
        font-size: 24px;
        line-height: 1.25;
    }
    .footer__info-columns {
        gap: 40px;
    }
    .footer__inner,
    .footer__left{
        gap: 60px;
    }
    .content__sidebar-menu {
        flex: 0 0 300px;
        width: 300px;
    }
    .productfull .image_thumb_list .sblock0 {
        max-width: 140px;
    }
    .productfull .jshop h1 {
        font-weight: 700;
        font-size: 22px;
        line-height: 1.2;
    }
    .jshop-accordion {
        margin-top: 10px;
    }
    .jshop_oiproduct .manufacturer_name, .jshop_oiproduct .manufacturer_code{
        font-size: 18px;
    }
    .productfull .manufacturer_code {
        padding-bottom: 2px;
    }
    .jshop_oiproduct .jshop-card__availability{
        margin-top: 10px;
        margin-bottom: 15px;
    }
    .jshop_oiproduct .jshop-detail__short-desc {
        margin-bottom: 20px;
    }
    .mod-spare-parts__option{
        line-height: 1.2;
    }
    .mod-spare-parts__fields {
        gap: 20px;
    }
    .mod-spare-parts__form{
        gap: 30px;
    }
    .jshop-card__image {
        flex: 0 0 280px;
        width: 280px;
    }
    .jshop-card__name a{
        font-size: 18px;
        line-height: 125%;
        font-weight: 700;
    }
    .jshop-card__availability {
        font-size: 16px;
        margin-top: 15px;
    }
    .jshop-card__article{
        font-size: 16px;
    }
    .jshop-card__price-value{
        font-size: 24px;
    }
    .jshop-products-list__item .jshop-card__name {
        margin-top: -2px;
    }
    .content .com-content-article__body p{
        font-size: 16px;
    }
    .content .com-content-article__body li{
        font-size: 16px;
    }
}

@media (max-width: 992px) {
    .main-page-products h3,
    .mod-news-slider__header{
        font-size: 28px;
    }
    .products__label-text{
        font-size: 22px;
    }
    .footer__inner, .footer__left {
        gap: 40px;
    }
    .main-page-products {
        margin-top: 40px;
    }
    .blog-news__image-wrap {
        flex: 0 0 340px;
        width: 340px;
    }
    .blog-news__image {
        height: 240px;
    }
    .blog-news__title {
        font-size: 20px;
        line-height: 1.2;
        margin: 0 0 26px;
    }
    .blog-news h1 {
        font-size: 28px;
    }
    .content__sidebar{
        display: none;
    }
    .content-catalog__sidebar-menu{
        display: block;
    }
    .content .page-header h1 {
        font-size: 26px;
        line-height: 1.25;
    }
    .blog-articles .blog-items:not(.items-leading) .blog-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .blog-articles h1 {
        margin-bottom: 10px;
        font-size: 28px;
    }
    .blog-articles .blog-item .readmore .btn-readmore,
    .blog-news__readmore .btn-readmore{
        padding: 5px 14px;
    }
    .blog-articles .blog-item {
        padding: 14px 10px 21px;
    }
    .blog-news__content{
        padding: 25px 0;
    }
    .content__sidebar-menu {
        flex: 0 0 100%;
        width: 100%;
    }
    .content-component-wrap{
        flex-direction: column;
    }
    .spare-parts-menu__link{
        padding: 7px 0;
        font-size: 16px;
    }
    .mod-spare-parts__title{
        font-size: 28px;
    }
    .mod-spare-parts{
        padding: 25px 30px 35px;
    }
    .services-menu .nav-item a{
        padding: 8px 20px 6px;
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .header__logo-img {
        width: 140px;
    }
    .main-page-products {
        margin-top: 30px;
    }
    .main-page-products h3{
        font-size: 28px;
    }
    .products__label-text {
        font-size: 18px;
    }
    .main-page-products h3 {
        font-size: 28px;
    }
    .mod-spare-parts{
        padding: 25px 30px 35px;
    }
    .mod-spare-parts__fields,
    .mod-spare-parts__form{
        gap: 24px;
    }
    .mod-spare-parts__form{
        font-size: 28px;
    }
    .mod-languages__arrow{
        display: none;
    }
    .header__search{
        margin-left: 2px;
    }
    .header__search-dropdown{
        right: calc(100% + 10px);
    }
    .header__search-wrap.is-open .header__search-dropdown{
        width: 240px;
    }
    .js-finder-searchform .input-group{
        min-width: 100%;
    }
    .content__sidebar{
        display: none;
    }
    .blog-news__title{
        font-size: 20px;
        line-height: 1.25;
    }
    .content .page-header h1{
        font-size: 24px;
        line-height: 1.2;
    }
    .prod-bottom-contacts{
        flex-direction: column;
        margin-top: 20px;
        gap: 20px;
    }
    .productfull .jshop h1 {
        font-size: 20px;
        line-height: 1.2;
        margin-top: 0;
    }
    .jshop-accordion {
        margin-top: 0;
    }
    .header__logo-title,
    .header__logo-subtitle{
        display: none;
    }
    .header__inner {
        height: 150px;
    }
    .products__label{
        padding: 6px 12px 2px;
    }
    .blog-news__image-wrap {
        flex: 0 0 100%;
        width: 100%;
    }
    .footer__inner, .footer__left,
    .footer__info-columns{
        gap: 20px;
    }
    .jshop-card__image {
        flex: 0 0 auto;
        width: 100%;
    }
    .jshop-card__img {
        max-width: 356px;
        margin: 0 auto;
    }
    .jshop-card {
        flex-direction: column;
        gap: 30px;
    }
    .jshop-card__image {
        flex: 0 0 auto;
        width: 100%;
    }
    .jshop-card__name {
        font-size: 18px;
    }
    .jshop-card__price-value {
        font-size: 24px;
    }
    #list_product_image_thumb {
        gap: 2%;
    }
    .productfull .image_thumb_list .sblock0 {
        max-width: 32%;
    }
    .productfull .image_middle {
        margin-bottom: 30px;
    }
    .jshop_oiproduct .jshop-detail__short-desc p{
        font-size: 16px;
    }
    .jshop_oiproduct .manufacturer_name, .jshop_oiproduct .manufacturer_code {
        font-size: 16px;
    }
    .jshop_oiproduct .jshop-card__availability{
        font-size: 18px;
    }
    .productfull #block_price{
        font-size: 24px;
    }
    .jshop-accordion__header{
        font-size: 20px;
        padding: 8px 20px;
        line-height: 1.2;
    }
    .jshop-accordion__item{
        margin-bottom: 20px;
    }
    .product-bottom-info {
        margin: 50px 15px 10px;
    }
    .product-bottom-info .prod-bottom-contacts {
        gap: 16px;
        align-items: center;
        margin-top: 20px;
    }
    .demo-file__name {
        font-weight: 600;
        font-size: 16px;
        line-height: 1.2;
    }
    .jshop-card__price-popover {
        left: auto;
        right: 0;
        transform: none;
    }
    .jshop-card__price-popover::after {
        left: auto;
        right: 5px;
        transform: none;
    }
    .com-finder > h1 {
        font-size: 26px;
    }
    .js-finder-searchform .form-inline {
        flex-direction: column;
        align-items: stretch;
    }
    .js-finder-searchform .input-group {
        max-width: 100%;
    }
    .com-finder__navigation {
        flex-direction: column;
        align-items: flex-start;
    }
    .com-finder__results .result__title-link .result__title-text {
        line-height: 1.25;
    }
    .js-finder-searchform input.js-finder-search-query{
        width: 200px;
    }
    .com-finder__empty h2{
        font-size: 18px;
    }
    .mod-news-slider {
        position: relative;
        margin-bottom: 60px;
    }
    .jshop-card__price-popover{
        width: 140px;
    }
    .products__label::after{
        width: 18px;
    }
}

@media (max-width: 575px) {
}
