:root {
    --color-black: #000;
    --color-white: #fff;
    --accent-color: #ff8533;
    --accent-color-2: #a13912;
    --accent-background-color: #f6f4f5;
    --page-max-width: 1920px;
    --container-padding: 123px;
    --container-margin-bottom: 80px;
    --fancybox-bg: rgba(24, 24, 27, 0.5);
    --input-error-background-color: #fce7e7;
    --input-error-border-color: #faababbd;
    --tooltip-background-color: #fff;
    --hs-menu-line-color: #da2127;
    --font-family-main: 'Poppins', sans-serif;
    --font-family-accent: 'Playfair Display', serif;
}

@media (max-width: 1600px) {
    :root {
        --container-padding: 5%;
    }
}
@media (max-width: 1500px) {
    :root {
        --container-padding: 3%;
    }
}
@media (max-width: 768px) {
    :root {
        --container-padding: 20px;
    }
}
.custom-checkbox__field:checked + .custom-checkbox__content::after {
    opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
    outline: 2px solid #f00;
    outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
    opacity: 0.4;
    pointer-events: none;
}

html {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--font-family-main);
}

body {
    margin: 0;
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
}

main {
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
}

p {
    font-family: var(--font-family-main);
}

.site-container {
    min-height: 400px;
}

.is-hidden {
    display: none !important;
}

.btn-reset {
    border: none;
    padding: 0;
    background: transparent;
    cursor: pointer;
}

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

.js-focus-visible :focus:not(.focus-visible) {
    outline: none;
}

.header {
    --header-height: 80px;
    --header-bg-light: rgba(255, 255, 255, 0.95);
    --header-bg-dark: rgba(0, 0, 0, 0.95);
    --header-text-light: #000;
    --header-border-light: rgba(0, 0, 0, 0.1);
    --header-border-dark: rgba(255, 255, 255, 0.1);
}
@media (max-width: 1200px) {
    .header {
        --header-height: 70px;
    }
}
@media (max-width: 768px) {
    .header {
        --header-height: 60px;
    }
}

.top-bar {
    --top-bar-height: 40px;
    --top-bar-text-color: #333;
}
@media (max-width: 1200px) {
    .top-bar {
        --top-bar-height: 35px;
    }
}
@media (max-width: 768px) {
    .top-bar {
        --top-bar-height: auto;
    }
}

@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@-webkit-keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.top-bar {
    font-size: 12px;
    color: var(--top-bar-text-color);
    transition: all 0.3s ease;
    background-color: var(--accent-background-color);
}
.top-bar__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 8px var(--container-padding);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    -moz-column-gap: 15px;
    column-gap: 15px;
}
.top-bar__left {
    display: flex;
    gap: 30px;
    align-items: center;
}
.top-bar__phone,
.top-bar__address {
    display: flex;
    align-items: center;
    gap: 8px;
}
.top-bar__phone a,
.top-bar__address a {
    color: var(--top-bar-text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}
.top-bar__phone a:hover,
.top-bar__address a:hover {
    color: var(--accent-color-2);
}
.top-bar__icon {
    width: 14px;
    height: 14px;
    opacity: 0.7;
}
.top-bar__return {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--top-bar-text-color);
    text-decoration: underline;
    font-weight: 500;
    transition: all 0.3s ease;
}
.top-bar__return:hover {
    color: var(--accent-color-2);
}
.top-bar__return:hover .top-bar__arrow {
    transform: translateX(3px);
}
.top-bar__arrow {
    width: 10px;
    height: 10px;
    transition: transform 0.3s ease;
}
@media (max-width: 1200px) {
    .top-bar__left {
        gap: 20px;
    }
    .top-bar__phone,
    .top-bar__address {
        font-size: 11px;
    }
}
@media (max-width: 768px) {
    .top-bar__container {
        display: none;
        flex-direction: column;
        gap: 8px;
        padding: 10px var(--container-padding);
    }
    .top-bar__left {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
}
@media (max-width: 600px) {
    .top-bar__phone,
    .top-bar__address {
        flex-direction: column;
        gap: 2px;
        text-align: center;
    }
    .top-bar__icon {
        display: none;
    }
}

.header {
    position: -webkit-sticky;
    position: sticky;
    overflow: hidden;
    top: 0;
    z-index: 1000;
    background: var(--header-bg-light);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.header__search-bar {
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: var(--accent-color);
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}
.header__search-bar.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
@media (max-width: 768px) {
    .header__search-bar {
        width: 100%;
        left: 0;
    }
}
.header__search-container {
    width: 100%;
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}
.header__search-form {
    display: flex;
    align-items: stretch;
    background: var(--color-white);
    border-radius: 0;
    overflow: hidden;
    margin: 15px 0;
}
.header__search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px 20px;
    font-size: 16px;
    font-family: var(--font-family-main);
    background: transparent;
}
.header__search-input::-moz-placeholder {
    color: #999;
}
.header__search-input:-ms-input-placeholder {
    color: #999;
}
.header__search-input::placeholder {
    color: #999;
}
@media (max-width: 768px) {
    .header__search-input {
        padding: 12px 15px;
        font-size: 14px;
    }
}
.header__search-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}
.header__search-submit:hover {
    color: var(--accent-color);
}
@media (max-width: 768px) {
    .header__search-submit {
        padding: 12px 15px;
    }
}
.header__search-close {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    background: none;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    color: #fff;
    background-color: var(--accent-color);
    transition: color 0.3s ease;
}
.header__search-close:hover {
    color: var(--accent-color-2);
}
@media (max-width: 768px) {
    .header__search-close {
        padding: 12px 15px;
    }
}
.header__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    height: var(--header-height);
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
}
.header__logo {
    flex: 1;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.header__logo-img {
    max-height: 50px;
    width: auto;
    -o-object-fit: contain;
    object-fit: contain;
}
.header__logo-img[data-light] {
    display: block;
}
.header__logo-img[data-dark] {
    display: none;
}
@media (max-width: 768px) {
    .header__logo-img {
        height: 35px;
    }
}
.header__nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}
.header__nav-list {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}
.header__nav-item {
    position: relative;
}
.header__nav-link {
    text-decoration: none;
    color: var(--header-text-light);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    padding: 10px 0;
    position: relative;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.header__nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}
.header__nav-link:hover {
    color: var(--accent-color);
}
.header__nav-link:hover::after {
    width: 100%;
}
.header__nav-link--active {
    color: var(--accent-color);
}
.header__nav-link--active::after {
    width: 100%;
}
@media (max-width: 1450px) {
    .header__nav-list {
        gap: 25px;
    }
    .header__nav-link {
        font-size: 12px;
    }
}
@media (max-width: 1200px) {
    .header__nav-list {
        gap: 20px;
    }
    .header__nav-link {
        font-size: 12px;
    }
}
.header__cta {
    display: flex;
    align-items: center;
    background: var(--accent-color);
    color: var(--color-white);
    text-decoration: none;
    padding: 5px 15px;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.header__cta-icon {
    display: none;
}
.header__cta:hover {
    background: var(--accent-color-2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 133, 51, 0.3);
}
@media (max-width: 1200px) {
    .header__cta {
        font-size: 12px;
        padding: 4px 12px;
        letter-spacing: 1px;
    }
}
.header__search {
    background: none;
    border: none;
    color: var(--header-text-light);
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.header__search:hover {
    color: var(--accent-color);
    background: rgba(255, 133, 51, 0.1);
}
.header__search svg {
    display: block;
}
.header__mobile-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
}
.header__mobile-toggle.active .header__mobile-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.header__mobile-toggle.active .header__mobile-line:nth-child(2) {
    opacity: 0;
}
.header__mobile-toggle.active .header__mobile-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}
.header__mobile-line {
    width: 24px;
    height: 2px;
    background: var(--header-text-light);
    transition: all 0.3s ease;
}
.header__mobile-nav {
    display: none;
    background: var(--header-bg-light);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--header-border-light);
    -webkit-animation: slideDown 0.3s ease;
    animation: slideDown 0.3s ease;
}
.header__mobile-nav.active {
    display: block;
}
.header__mobile-list {
    list-style: none;
    padding: 20px var(--container-padding);
}
.header__mobile-item {
    border-bottom: 1px solid var(--header-border-light);
}
.header__mobile-item:last-child {
    border-bottom: none;
}
.header__mobile-link {
    display: block;
    text-decoration: none;
    color: var(--header-text-light);
    font-weight: 500;
    font-size: 16px;
    padding: 15px 0;
    transition: all 0.3s ease;
}
.header__mobile-link:hover {
    color: var(--accent-color);
    padding-left: 10px;
}
.header__mobile-link--cta {
    background: var(--accent-color);
    color: var(--color-white);
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 4px;
    text-align: center;
}
.header__mobile-link--cta:hover {
    background: var(--accent-color-2);
    padding-left: 20px;
}
.page:not(.page--home) .header {
    background: var(--header-bg-dark);
}
.page:not(.page--home) .header .header__nav-link,
.page:not(.page--home) .header .header__search,
.page:not(.page--home) .header .header__mobile-line,
.page:not(.page--home) .header .header__mobile-link {
    color: var(--color-white);
}
.page:not(.page--home) .header .header__mobile-line {
    background: var(--header-bg-light);
}
.page:not(.page--home) .header .header__mobile-nav {
    background: var(--header-bg-dark);
    border-top-color: var(--header-border-dark);
}
.page:not(.page--home) .header .header__mobile-item {
    border-bottom-color: var(--header-border-dark);
}
@media (max-width: 1100px) {
    .header__nav {
        display: none;
    }
    .header__mobile-toggle {
        display: flex;
    }
    .header__container {
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .header__container {
        gap: 15px;
    }
}
@media (max-width: 500px) {
    .header__cta > span {
        display: none;
    }
    .header__cta-icon {
        display: flex;
    }
}

.page:not(.page--home) .top-bar {
    background-color: var(--color-black);
    color: var(--color-white);
}
.page:not(.page--home) .top-bar a {
    color: var(--color-white);
}
.page:not(.page--home) .top-bar a:hover {
    color: var(--accent-color-2);
}
.page:not(.page--home) .header__logo-img[data-light] {
    display: none;
}
.page:not(.page--home) .header__logo-img[data-dark] {
    display: block;
}

/* [_paragraph start] */
.par {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    grid-template-areas: 'par__img par__txt';
    -moz-column-gap: 5%;
    column-gap: 5%;
    padding-block: 20px;
    max-width: var(--page-max-width);
    margin: auto;
}
.par.par--bg-accent .par__txt {
    background-color: var(--accent-color);
    color: #fff;
}
.par.par--bg-accent .par__txt ul li {
    color: #fff;
}
.par.par--bg-accent .par__txt p {
    color: #fff;
}
.par.par--bg-accent .par__txt .par__txt-footer a {
    color: #fff;
}
.par.par--bg-accent .par__txt .par__text-link {
    color: #fff;
    border-color: #fff;
}
.par.par--bg-accent .par__txt .par__text-link:hover {
    background-color: #fff;
    color: var(--accent-color);
}
.par.par--bg-accent .par__txt .par__subttl {
    color: #fff;
}
.par.par--bg-accent .par__txt .par__subttl::after {
    background-color: var(--accent-color-2);
}
.par.par--bg-accent .par__txt ul li::after {
    background-color: #fff;
}
.par__txt {
    grid-area: par__txt;
    display: flex;
    flex-direction: column;
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 150%;
}
.par__txt ul:not(.styled-list) {
    padding: 30px 0 30px 30px;
}
.par__txt-footer {
    border-top: 1px solid #bdbdbd;
    margin-bottom: 25px;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    -moz-column-gap: 15px;
    column-gap: 15px;
    row-gap: 20px;
}
.par__txt-footer__item {
    text-transform: uppercase;
    font-size: clamp(12px, 1vw, 18px);
    display: flex;
    align-items: center;
    -moz-column-gap: 5px;
    column-gap: 5px;
}
.par__txt-footer__item a {
    color: #000;
}
.par__txt-footer__item svg {
    color: var(--accent-color-2);
}
.par__img {
    grid-area: par__img;
    position: relative;
    display: flex;
    align-items: flex-start;
}
.par__img img {
    display: block;
    margin: 0 auto;
    overflow: hidden;
    -o-object-fit: cover;
    object-fit: cover;
    position: -webkit-sticky;
    position: sticky;
    top: 230px;
}
.par__ttl {
    font-size: clamp(25px, 4vw, 40px);
    line-height: 110%;
    color: #000;
    margin-bottom: 10px;
    font-weight: 400;
}
.par__subttl {
    font-weight: 600;
    font-size: 18px;
    color: #000000;
}
.par__subttl--center {
    text-align: center;
}
.par__subttl--center::after {
    left: 50%;
    transform: translateX(-50%);
}
.par__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #000000;
    margin-top: 40px;
    padding-bottom: 25px;
}
.par__text > img {
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
}
.par__text-link {
    margin-top: 35px;
    display: inline-block;
    border: 1px solid var(--accent-color);
    padding: 10px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    color: var(--accent-color);
    transition: 0.3s ease-in-out;
}
.par__text-link:hover {
    background-color: var(--accent-color);
    color: var(--color-white);
}
@media (max-width: 768px) {
    .par__text {
        margin-top: 0px;
    }
}
@media (max-width: 768px) {
    .par {
        grid-template-columns: 100% !important;
        grid-template-areas: 'par__img' 'par__txt' !important;
        row-gap: unset;
    }
    .par .par__txt {
        padding-top: 5%;
    }
    .par .par__img {
        display: block;
        margin: 0 auto;
    }
    .par .par__img img {
        display: block;
        margin: 0 auto;
    }
}

.par.par--left {
    grid-template-columns: 1fr 1.2fr;
    grid-template-areas: 'par__img par__txt';
}

.par.par--right {
    grid-template-columns: 1.2fr 1fr;
    grid-template-areas: 'par__txt par__img';
}

.par.par--center {
    grid-template-columns: 100%;
    grid-template-areas: 'par__img' 'par__txt ';
}
.par.par--center .par__img {
    display: block;
    margin: 0 auto;
}
.par.par--center .par__img img {
    display: block;
    margin: 0 auto;
}
.par.par--center .par__txt {
    padding: 0;
}

.par__txt.par__txt--center {
    justify-content: center;
}

/* [_paragraph end] */
.footer {
    background: var(--color-white);
    padding: 60px 0 0 0;
}
.footer__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}
.footer__main {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
}
@media (max-width: 1200px) {
    .footer__main {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 30px;
    }
}
@media (max-width: 768px) {
    .footer__main {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}
@media (max-width: 480px) {
    .footer__main {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}
.footer__logo-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
}
@media (max-width: 1200px) {
    .footer__logo-col {
        grid-column: 1/-1;
        align-items: center;
        text-align: center;
    }
}
@media (max-width: 768px) {
    .footer__logo-col {
        grid-column: 1/-1;
        align-items: center;
        text-align: center;
    }
}
.footer__logo-link {
    display: inline-block;
}
.footer__logo {
    width: auto;
}
.footer__social {
    display: flex;
    gap: 15px;
}
@media (max-width: 768px) {
    .footer__social {
        justify-content: center;
    }
}
.footer__social-link {
    color: #666;
    transition: color 0.3s ease;
}
.footer__social-link:hover {
    color: var(--accent-color);
}
@media (max-width: 480px) {
    .footer__nav-col {
        text-align: center;
    }
}
.footer__nav-title {
    font-family: var(--font-family-main);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-black);
    margin: 0 0 20px 0;
}
@media (max-width: 768px) {
    .footer__nav-title {
        margin-bottom: 15px;
    }
}
.footer__nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
@media (max-width: 768px) {
    .footer__nav-list {
        gap: 10px;
    }
}
.footer__nav-link {
    font-family: var(--font-family-main);
    font-size: 16px;
    font-weight: 400;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer__nav-link:hover {
    color: var(--accent-color);
}
@media (max-width: 1200px) {
    .footer__contact-col {
        grid-column: 1/-1;
    }
}
@media (max-width: 768px) {
    .footer__contact-col {
        grid-column: 1/-1;
    }
}
@media (max-width: 480px) {
    .footer__contact-col {
        text-align: center;
    }
}
.footer__contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
@media (max-width: 1200px) {
    .footer__contact-info {
        flex-direction: row;
    }
}
@media (max-width: 480px) {
    .footer__contact-info {
        flex-direction: column;
        align-items: center;
    }
}
.footer__contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
@media (max-width: 480px) {
    .footer__contact-item {
        justify-content: center;
        text-align: left;
    }
}
.footer__contact-icon {
    color: var(--accent-color);
    flex-shrink: 0;
    margin-top: 2px;
}
.footer__contact-text {
    font-family: var(--font-family-main);
    font-size: 14px;
    font-weight: 400;
    color: #666;
    line-height: 1.4;
}
.footer__contact-text div {
    margin-bottom: 2px;
}
.footer__contact-text div:last-child {
    margin-bottom: 0;
}
.footer__bottom {
    border-top: 5px solid var(--accent-color);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
@media (max-width: 768px) {
    .footer__bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}
.footer__bottom p,
.footer__bottom a {
    font-family: var(--font-family-main);
    font-size: 14px;
    font-weight: 400;
    color: #999;
    margin: 0;
}
@media (max-width: 768px) {
    .footer__bottom-left,
    .footer__bottom-right {
        width: 100%;
    }
}

:root {
    --bg-table-stripe: var(--accent-color-3);
    --b-table: #e3e3e2;
    --caption: #242423;
}

table {
    background-color: transparent;
    border-collapse: collapse;
    font-family: Arial, Helvetica, sans-serif;
}

th {
    text-align: left;
}

.dcf-txt-center {
    text-align: center !important;
}

.dcf-txt-left {
    text-align: left !important;
}

.dcf-txt-right {
    text-align: right !important;
}

.dcf-table caption {
    color: var(--caption);
    font-size: 1.13em;
    font-weight: 700;
    padding-bottom: 0.56rem;
}

.dcf-table thead {
    font-size: 0.84em;
}

.dcf-table tbody {
    border-bottom: 1px solid var(--b-table);
    border-top: 1px solid var(--b-table);
    font-size: 0.84em;
}

.dcf-table tfoot {
    font-size: 0.84em;
}

.dcf-table td,
.dcf-table th {
    padding-right: 1.78em;
}

.dcf-table-bordered,
.dcf-table-bordered td,
.dcf-table-bordered th {
    border: 1px solid var(--b-table);
}

.dcf-table-bordered td,
.dcf-table-bordered th,
.dcf-table-striped td,
.dcf-table-striped th {
    padding-left: 1em;
    padding-right: 1em;
}

.dcf-table-bordered tr:not(:last-child),
.dcf-table-striped tr:not(:last-child) {
    border-bottom: 1px solid var(--b-table);
}

.dcf-table-striped tbody tr:nth-of-type(2n) {
    background-color: var(--bg-table-stripe);
}

.dcf-table thead td,
.dcf-table thead th {
    padding-top: 21px;
    padding-bottom: 11px;
    vertical-align: bottom;
    background-color: #dddddd;
    color: #000;
    font-weight: 400;
    font-size: clamp(12px, 2vw, 14px);
    line-height: 120%;
    text-transform: uppercase;
}

.dcf-table tbody td,
.dcf-table tbody th,
.dcf-table tfoot td,
.dcf-table tfoot th {
    padding-top: 0.75em;
    vertical-align: middle;
    background-color: var(--accent-color-3);
    border-color: #fff;
}

.dcf-table tbody td,
.dcf-table tbody th {
    padding-bottom: 0.75em;
}

.dcf-table-bordered thead th {
    padding-top: 1.33em;
}

.dcf-wrapper-table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    left: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding-bottom: 1em;
    position: relative;
    right: 50%;
    width: 100vw;
}

@media only screen and (max-width: 800px) {
    .dcf-table-responsive thead {
        clip: rect(0 0 0 0);
        -webkit-clip-path: inset(50%);
        clip-path: inset(50%);
        height: 1px;
        overflow: hidden;
        position: absolute;
        width: 1px;
        white-space: nowrap;
    }

    .dcf-table-responsive tr {
        display: block;
    }

    .dcf-table-responsive td {
        -moz-column-gap: 3.16vw;
        column-gap: 3.16vw;
        display: grid;
        grid-template-columns: 1fr 2fr;
        text-align: left !important;
    }

    .dcf-table-responsive.dcf-table-bordered,
    .dcf-table-responsive.dcf-table-bordered thead th {
        border-width: 0;
    }

    .dcf-table-responsive.dcf-table-bordered tbody td {
        border-top-width: 0;
    }

    .dcf-table-responsive:not(.dcf-table-bordered) tbody tr {
        padding-bottom: 0.75em;
    }

    .dcf-table-responsive:not(.dcf-table-bordered) tbody td {
        padding-bottom: 0;
    }

    .dcf-table-responsive:not(.dcf-table-bordered):not(.dcf-table-striped) tbody td {
        padding-right: 0;
    }

    .dcf-table-responsive.dcf-table-bordered tbody tr:last-child td:last-child {
        border-bottom-width: 0;
    }

    .dcf-table-responsive tbody td:before {
        content: attr(data-label);
        float: left;
        font-weight: 700;
        padding-right: 1.78em;
    }
}
.dcf-overflow-x-auto {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
}

.dcf-w-100\% {
    width: 100% !important;
}

.quote-popup {
    padding: 0;
    max-width: 1100px;
    width: 100%;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.283);
    background-color: var(--accent-background-color);
}
.quote-popup > form {
    width: 100%;
}
@media (max-width: 700px) {
    .quote-popup > form {
        grid-template-columns: 100%;
    }
}
.quote-popup__form-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: -webkit-max-content;
    grid-auto-rows: max-content;
    justify-content: flex-start;
    grid-gap: 20px 35px;
    padding: 50px 50px 50px 50px;
    max-width: 1000px;
    margin: 0 auto;
}
.quote-popup__form-block * {
    font-family: var(--font-style-3);
}
.quote-popup__form-block__head {
    grid-column: 1/-1;
}
.quote-popup__form-block__subtitle {
    grid-column: 1/-1;
    font-weight: 400;
    font-size: clamp(28px, 4vw, 46px);
    line-height: 100%;
    line-height: 100%;
    letter-spacing: -0.04em;
    position: relative;
    text-align: center;
    color: var(--color-black);
    margin-bottom: 20px;
    font-family: var(--font-family-accent);
}
.quote-popup__form-block > input,
.quote-popup__form-block .jfilestyle input,
.quote-popup__form-block > select,
.quote-popup__form-block > textarea {
    border: none;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    padding: 17px;
}
.quote-popup__form-block .btn {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
}
.quote-popup__form-block__file {
    display: flex;
    align-items: center;
    -moz-column-gap: 20px;
    column-gap: 20px;
    grid-column: 1/-1;
}
@media (max-width: 1000px) {
    .quote-popup__form-block {
        padding: 45px;
    }
}
@media (max-width: 700px) {
    .quote-popup__form-block {
        grid-template-columns: 100%;
    }
}
@media (max-width: 550px) {
    .quote-popup__form-block {
        padding: 50px 5%;
    }
}
.quote-popup.fancybox__content {
    --carousel-button-svg-width: 14px;
    --carousel-button-svg-height: 14px;
}
.quote-popup.fancybox__content > .carousel__button.is-close {
    top: 10px;
    right: 10px;
    border: 3px solid #fff;
}

.quote-popup__form-block > div[style*='text-align: center'] {
    font-size: 13px;
    margin: 15px 0 5px 0;
}

.quote-popup__form-block select {
    padding: 17px;
    border: none;
    font-family: var(--font-style-3);
    background: #fff;
    color: #3a3a3a;
}

.quote-popup__form-block input[type='date'] {
    color: #444;
}

.quote-popup__form-block__sub-subtitle {
    font-family: var(--font-family-main);
    grid-column: 1/-1;
    font-size: 20px;
    margin-bottom: 10px;
    text-align: center;
    letter-spacing: 2px;
}

.login-popup {
    padding: 0;
    max-width: 900px;
    width: 100%;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.283);
    border-radius: 20px;
    background-color: #fdfdfd;
}
.login-popup > form {
    width: 100%;
}
@media (max-width: 700px) {
    .login-popup > form {
        grid-template-columns: 100%;
    }
}
.login-popup__login-form {
    max-width: 600px;
    margin: 0 auto;
}
.login-popup__login-form-block {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
    color: var(--accent-color);
}
.login-popup__login-form-block a {
    color: var(--accent-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    -webkit-text-decoration-style: solid;
    text-decoration-style: solid;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}
.login-popup__register-form .login-popup__form-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 25px;
}
.login-popup__register-form .login-popup__form-block .login-popup__form-block__address {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 10px;
    grid-column: 1/-1;
}
.login-popup__register-form .login-popup__form-block p {
    color: var(--accent-color);
}
.login-popup__register-form .login-popup__form-block p a {
    color: var(--accent-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    -webkit-text-decoration-style: solid;
    text-decoration-style: solid;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}
@media (max-width: 700px) {
    .login-popup__register-form .login-popup__form-block {
        grid-template-columns: 100%;
        row-gap: 20px;
    }
    .login-popup__register-form .login-popup__form-block .login-popup__form-block__address {
        grid-template-columns: 100%;
        row-gap: 20px;
    }
}
.login-popup__form-block {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: -webkit-max-content;
    grid-auto-rows: max-content;
    justify-content: flex-start;
    grid-gap: 40px 35px;
    padding: 50px 50px 50px 50px;
    max-width: 1000px;
    margin: 0 auto;
}
.login-popup__form-block * {
    font-family: var(--font-style-3);
}
.login-popup__form-block__head {
    grid-column: 1/-1;
}
.login-popup__form-block__title {
    font-family: var(--font-family-accent);
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    text-transform: uppercase;
    padding: 10px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
}
.login-popup__form-block__subtitle {
    grid-column: 1/-1;
    font-weight: 400;
    font-size: clamp(28px, 4vw, 36px);
    line-height: 100%;
    line-height: 100%;
    letter-spacing: -0.04em;
    position: relative;
    text-align: center;
    color: var(--accent-color-2);
}
.login-popup__form-block__slogan {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 150%;
    color: #333333;
}
.login-popup__form-block__slogan a {
    font-weight: 600;
    color: #333333;
}
.login-popup__form-block input,
.login-popup__form-block .jfilestyle input,
.login-popup__form-block select,
.login-popup__form-block textarea {
    border: 1px solid #4f4f4f;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    border-radius: 6px;
    padding: 17px;
}
.login-popup__form-block .btn {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
}
.login-popup__form-block__checkboxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 10px;
    -moz-column-gap: 15px;
    column-gap: 15px;
}
.login-popup__form-block__checkboxes-wrapper {
    display: flex;
    margin-top: 15px;
    margin-bottom: 15px;
    -moz-column-gap: 10px;
    column-gap: 10px;
}
@media (max-width: 1550px) {
    .login-popup__form-block__checkboxes-wrapper {
        flex-direction: column;
        row-gap: 10px;
    }
}
.login-popup__form-block__file {
    display: flex;
    align-items: center;
    -moz-column-gap: 20px;
    column-gap: 20px;
}
@media (max-width: 1000px) {
    .login-popup__form-block {
        padding: 45px;
    }
}
@media (max-width: 700px) {
    .login-popup__form-block {
        grid-template-columns: 100%;
    }
}
@media (max-width: 550px) {
    .login-popup__form-block {
        padding: 50px 5%;
    }
}
.login-popup__image-block img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
@media (max-width: 700px) {
    .login-popup__image-block {
        display: none;
    }
}
.login-popup.fancybox__content {
    --carousel-button-svg-width: 14px;
    --carousel-button-svg-height: 14px;
}
.login-popup.fancybox__content > .carousel__button.is-close {
    top: 10px;
    right: 10px;
    border: 3px solid #fff;
}

.hero {
    --hero-height: 725px;
    --hero-min-height: 600px;
    --hero-bg-gradient: linear-gradient(90deg, #000 30.31%, rgba(25, 25, 25, 0.8) 94.06%);
    --hero-product-gradient: radial-gradient(
        62.8% 61.77% at 49.18% 54.56%,
        rgba(250, 243, 237, 0.365) 0%,
        rgba(0, 0, 0, 0) 60%
    );
    --hero-nav-bottom: 80px;
}
@media (max-width: 1200px) {
    .hero {
        --hero-height: 650px;
        --hero-min-height: 550px;
        --hero-nav-bottom: 60px;
    }
}
@media (max-width: 768px) {
    .hero {
        --hero-height: 80vh;
        --hero-min-height: 500px;
        --hero-nav-bottom: 40px;
    }
}

.hero {
    position: relative;
    height: var(--hero-height);
    min-height: var(--hero-min-height);
    overflow: hidden;
}
.hero__slider {
    height: 100%;
    width: 100%;
}
.hero__slider .swiper-wrapper {
    height: 100%;
}
.hero__slide {
    position: relative;
    height: var(--hero-height) !important;
    min-height: var(--hero-min-height) !important;
    max-height: var(--hero-height) !important;
    display: flex;
    align-items: center;
    overflow: hidden;
}
@media (max-width: 1200px) {
    .hero__slide {
        height: 650px !important;
        min-height: 550px !important;
        max-height: 650px !important;
    }
}
@media (max-width: 768px) {
    .hero__slide {
        height: 80vh !important;
        min-height: 500px !important;
        max-height: 80vh !important;
    }
}
.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--hero-bg-gradient);
    z-index: 2;
}
.hero__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.hero__img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}
.hero__container {
    position: relative;
    z-index: 3;
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}
@media (max-width: 1200px) {
    .hero__container {
        gap: 30px;
    }
}
@media (max-width: 768px) {
    .hero__container {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr auto;
        margin-bottom: 100px;
        gap: 20px;
        padding: 40px var(--container-padding);
    }
}
.hero__product {
    position: relative;
    display: flex;
    justify-content: center;
    height: 100%;
}
@media (max-width: 768px) {
    .hero__product {
        min-height: 300px;
    }
}
.hero__product-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--hero-product-gradient);
    z-index: 1;
}
.hero__product-img {
    position: relative;
    z-index: 2;
    max-width: 80%;
    max-height: 70%;
    width: auto;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition: all 1s ease;
}
@media (max-width: 1200px) {
    .hero__product-img {
        max-width: 85%;
        max-height: 75%;
    }
}
@media (max-width: 768px) {
    .hero__product-img {
        max-width: 90%;
        max-height: 80%;
    }
}
.swiper-slide-active .hero__product-img {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.2s;
}
.hero__content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}
@media (max-width: 768px) {
    .hero__content {
        justify-content: center;
        height: auto;
    }
}
.hero__text {
    color: var(--color-white);
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}
@media (max-width: 768px) {
    .hero__text {
        text-align: center;
        margin-bottom: 40px;
        transform: translateY(30px);
    }
}
.swiper-slide-active .hero__text {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.4s;
}
@media (max-width: 768px) {
    .swiper-slide-active .hero__text {
        transform: translateY(0);
    }
}
.hero__subtitle {
    display: block;
    font-family: var(--font-family-main);
    font-size: 40px;
    font-weight: 200;
    letter-spacing: 3px;
    margin-bottom: 5px;
    opacity: 0.9;
    text-transform: uppercase;
}
@media (max-width: 768px) {
    .hero__subtitle {
        font-size: 14px;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }
}
.hero__title {
    font-family: var(--font-family-accent);
    font-size: 80px;
    font-weight: 700;
    line-height: 0.9;
    margin-bottom: 50px;
    text-transform: uppercase;
}
@media (max-width: 1400px) {
    .hero__title {
        font-size: 70px;
        margin-bottom: 40px;
    }
}
@media (max-width: 1200px) {
    .hero__title {
        font-size: 60px;
        margin-bottom: 35px;
    }
}
@media (max-width: 768px) {
    .hero__title {
        font-size: 48px;
        margin-bottom: 30px;
        line-height: 1;
    }
}
@media (max-width: 480px) {
    .hero__title {
        font-size: 36px;
        margin-bottom: 25px;
    }
}
.hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--accent-color);
    text-decoration: none;
    font-family: var(--font-family-main);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}
.hero__cta::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}
.hero__cta:hover {
    color: var(--color-white);
}
.hero__cta:hover::after {
    width: calc(100% - 28px);
}
.hero__cta:hover .hero__cta-arrow {
    transform: translateX(5px);
}
@media (max-width: 768px) {
    .hero__cta {
        font-size: 13px;
        letter-spacing: 1.5px;
        gap: 10px;
    }
}
.hero__cta-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.hero__navigation {
    position: absolute;
    bottom: var(--hero-nav-bottom);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0;
    z-index: 5;
}
.hero__nav-btn {
    background: none;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    padding: 20px;
    transition: all 0.3s ease;
    opacity: 0.6;
}
.hero__nav-btn:hover {
    opacity: 1;
    color: var(--accent-color);
    transform: scale(1.1);
}
.hero__nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}
.hero__nav-btn:disabled:hover {
    transform: none;
    color: var(--color-white);
}
.hero__nav-btn svg {
    display: block;
}
@media (max-width: 768px) {
    .hero__nav-btn {
        padding: 15px;
    }
    .hero__nav-btn svg {
        width: 20px;
        height: 20px;
    }
}
.hero__nav-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
}
@media (max-width: 768px) {
    .hero__nav-divider {
        height: 40px;
    }
}
.hero .swiper-slide {
    transition-property: transform, opacity;
}
.hero .swiper-slide-active .hero__text {
    opacity: 1;
    transform: translateX(0);
}
@media (max-width: 768px) {
    .hero .swiper-slide-active .hero__text {
        transform: translateY(0);
    }
}
.hero .swiper-slide-active .hero__product-img {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.hero .swiper-slide-prev .hero__text,
.hero .swiper-slide-next .hero__text {
    opacity: 0;
    transform: translateX(50px);
}
@media (max-width: 768px) {
    .hero .swiper-slide-prev .hero__text,
    .hero .swiper-slide-next .hero__text {
        transform: translateY(30px);
    }
}
.hero .swiper-slide-prev .hero__product-img,
.hero .swiper-slide-next .hero__product-img {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
}

@-webkit-keyframes heroSlideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes heroSlideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@-webkit-keyframes heroSlideInMobile {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes heroSlideInMobile {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@-webkit-keyframes heroProductIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
@keyframes heroProductIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
.hero__slide.swiper-slide-active .hero__product-img {
    -webkit-animation: heroProductIn 1s ease 0.2s both;
    animation: heroProductIn 1s ease 0.2s both;
}
.hero__slide.swiper-slide-active .hero__subtitle {
    -webkit-animation: heroSlideIn 0.8s ease 0.4s both;
    animation: heroSlideIn 0.8s ease 0.4s both;
}
@media (max-width: 768px) {
    .hero__slide.swiper-slide-active .hero__subtitle {
        -webkit-animation: heroSlideInMobile 0.8s ease 0.4s both;
        animation: heroSlideInMobile 0.8s ease 0.4s both;
    }
}
.hero__slide.swiper-slide-active .hero__title {
    -webkit-animation: heroSlideIn 0.8s ease 0.6s both;
    animation: heroSlideIn 0.8s ease 0.6s both;
}
@media (max-width: 768px) {
    .hero__slide.swiper-slide-active .hero__title {
        -webkit-animation: heroSlideInMobile 0.8s ease 0.6s both;
        animation: heroSlideInMobile 0.8s ease 0.6s both;
    }
}
.hero__slide.swiper-slide-active .hero__cta {
    -webkit-animation: heroSlideIn 0.8s ease 0.8s both;
    animation: heroSlideIn 0.8s ease 0.8s both;
}
@media (max-width: 768px) {
    .hero__slide.swiper-slide-active .hero__cta {
        -webkit-animation: heroSlideInMobile 0.8s ease 0.8s both;
        animation: heroSlideInMobile 0.8s ease 0.8s both;
    }
}

.home-products {
    --home-products-padding: 40px;
    --home-products-card-width: 320px;
    --home-products-card-height: 240px;
    --home-products-gap: 30px;
    --home-products-nav-size: 50px;
}
@media (max-width: 1200px) {
    .home-products {
        --home-products-card-width: 280px;
        --home-products-card-height: 210px;
        --home-products-gap: 25px;
        --home-products-nav-size: 45px;
    }
}
@media (max-width: 768px) {
    .home-products {
        --home-products-padding: 20px;
        --home-products-card-width: 250px;
        --home-products-card-height: 190px;
        --home-products-gap: 20px;
        --home-products-nav-size: 40px;
    }
}

.home-products {
    padding: var(--home-products-padding) 0;
    background: var(--color-white);
}
.home-products__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}
.home-products__tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    gap: 0;
}
@media (max-width: 768px) {
    .home-products__tabs {
        margin-bottom: 20px;
    }
}
/* .home-products__tab {
  background: none;
  border: none;
  font-family: var(--font-family-main);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
  cursor: pointer;
  padding: 15px 40px;
  transition: all 0.3s ease;
  position: relative;
}
.home-products__tab:hover {
  color: var(--accent-color);
}
.home-products__tab--active {
  color: var(--accent-color);
}
@media (max-width: 768px) {
  .home-products__tab {
    font-size: 16px;
    padding: 12px 30px;
    letter-spacing: 1.5px;
  }
}
@media (max-width: 480px) {
  .home-products__tab {
    font-size: 14px;
    padding: 10px 20px;
    letter-spacing: 1px;
  }
}
.home-products__tab-divider {
  width: 1px;
  height: 30px;
  background: #ddd;
}
@media (max-width: 768px) {
  .home-products__tab-divider {
    height: 25px;
  }
} */
.home-products__tab {
    background: var(--color-white);
    border: 1px solid #ddd;
    border-right: none;
    color: var(--color-black);
    padding: 10px 50px;
    font-family: var(--font-family-main);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all var(--finish-list-animation-duration) ease;
    position: relative;
    cursor: pointer;
    white-space: nowrap;
}
.home-products__tab:last-child {
    border-right: 1px solid #ddd;
}
.home-products__tab:hover {
    background: var(--accent-background-color);
    color: var(--accent-color);
}
.home-products__tab--active {
    background: var(--accent-color);
    color: var(--color-white);
    border-color: var(--accent-color);
}

/* .home-products__tab--active + .home-products__tab {
    border-left-color: var(--accent-color);
  } */
.home-products__tab.home-products__tab--active {
    border-right: 1px solid var(--accent-color);
}
@media (max-width: 768px) {
    .home-products__tab {
        padding: 12px 20px;
        font-size: 13px;
    }
}
@media (max-width: 480px) {
    .home-products__tab {
        padding: 10px 16px;
        font-size: 12px;
    }
}
.finish-list__search {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}
@media (max-width: 768px) {
    .finish-list__search {
        margin-bottom: 40px;
    }
}
.home-products__content {
    position: relative;
}
.home-products__tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.home-products__tab-content--active {
    display: block;
    opacity: 1;
}
.home-products__slider {
    position: relative;
    padding: 0 70px;
}
@media (max-width: 768px) {
    .home-products__slider {
        padding: 0 60px;
    }
}
@media (max-width: 480px) {
    .home-products__slider {
        padding: 0 50px;
    }
}
.home-products__card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--accent-background-color);
    border-radius: 0;
    overflow: hidden;
    aspect-ratio: 6/4;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}
.home-products__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(50% 50% at 50% 50%, #fff 0%, #cbc9c9 100%);
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}
.home-products__card:hover::before {
    opacity: 1;
}
.home-products__card:hover .home-products__card-img {
    transform: scale(1.05);
}
.home-products__card:hover .home-products__card-title {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.home-products__card-image {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    overflow: hidden;
    position: relative;
    z-index: 2;
}
.home-products__card-img {
    max-width: 80%;
    max-height: 80%;
    /* max-width: 100%; */
    width: auto;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.home-products__card-title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--color-white);
    padding: 10px;
    font-family: var(--font-family-main);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-black);
    margin: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
    border-radius: 0;
    line-height: 1;
}
@media (max-width: 768px) {
    .home-products__card-title {
        bottom: 15px;
        left: 15px;
        padding: 6px 10px;
        font-size: 10px;
    }
}
@media (max-width: 480px) {
    .home-products__card-title {
        bottom: 12px;
        left: 12px;
        padding: 5px 8px;
        font-size: 9px;
    }
}
.home-products__navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}
.home-products__nav-btn {
    width: var(--home-products-nav-size);
    height: var(--home-products-nav-size);
    background: var(--color-black);
    border: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    color: var(--color-white);
}
.home-products__nav-btn:hover {
    background: var(--accent-color);
    transform: scale(1.05);
}
.home-products__nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}
.home-products__nav-btn:disabled:hover {
    background: var(--color-black);
    transform: none;
}
.home-products__nav-btn svg {
    display: block;
    width: 20px;
    height: 20px;
}
@media (max-width: 768px) {
    .home-products__nav-btn svg {
        width: 18px;
        height: 18px;
    }
}
.home-products__nav-prev {
    left: 0;
}
.home-products__nav-next {
    right: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.home-products__tab-content--active {
    -webkit-animation: fadeInUp 0.5s ease;
    animation: fadeInUp 0.5s ease;
}

.home-products__slider .swiper-slide {
    width: var(--home-products-card-width);
    height: auto;
}
.home-products__slider .swiper-wrapper {
    align-items: stretch;
}

.home-welcome {
    --home-welcome-padding: 40px;
    --home-welcome-max-width: 1350px;
}
@media (max-width: 768px) {
    .home-welcome {
        --home-welcome-padding: 20px;
        --home-welcome-max-width: 100%;
    }
}

.home-welcome {
    padding: var(--home-welcome-padding) 0;
    background: var(--color-white);
}
.home-welcome__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}
.home-welcome__content {
    max-width: var(--home-welcome-max-width);
    margin: 0 auto;
    text-align: center;
}
.home-welcome__title {
    font-family: var(--font-family-main);
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-black);
    margin: 0 0 40px 0;
    letter-spacing: 3px;
}
@media (max-width: 1200px) {
    .home-welcome__title {
        font-size: 32px;
        margin-bottom: 35px;
    }
}
@media (max-width: 768px) {
    .home-welcome__title {
        font-size: 28px;
        margin-bottom: 30px;
        letter-spacing: 1.5px;
    }
}
@media (max-width: 480px) {
    .home-welcome__title {
        font-size: 24px;
        margin-bottom: 25px;
        letter-spacing: 1px;
    }
}
.home-welcome__text {
    font-family: var(--font-family-main);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: #666;
    margin: 0 0 50px 0;
}
@media (max-width: 1200px) {
    .home-welcome__text {
        font-size: 15px;
        margin-bottom: 45px;
    }
}
@media (max-width: 768px) {
    .home-welcome__text {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 40px;
    }
}
@media (max-width: 480px) {
    .home-welcome__text {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 35px;
    }
}
.home-welcome__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
    text-decoration: none;
    font-family: var(--font-family-main);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}
.home-welcome__cta::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}
.home-welcome__cta:hover {
    color: var(--color-black);
}
.home-welcome__cta:hover::after {
    width: calc(100% - 24px);
}
.home-welcome__cta:hover .home-welcome__cta-arrow {
    transform: translateX(3px);
}
@media (max-width: 768px) {
    .home-welcome__cta {
        font-size: 13px;
        letter-spacing: 1.5px;
        gap: 6px;
    }
}
@media (max-width: 480px) {
    .home-welcome__cta {
        font-size: 12px;
        letter-spacing: 1px;
    }
}
.home-welcome__cta-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
@media (max-width: 768px) {
    .home-welcome__cta-arrow {
        width: 14px;
        height: 14px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.home-welcome__title {
    -webkit-animation: fadeInUp 0.8s ease 0.2s both;
    animation: fadeInUp 0.8s ease 0.2s both;
}
.home-welcome__text {
    -webkit-animation: fadeInUp 0.8s ease 0.4s both;
    animation: fadeInUp 0.8s ease 0.4s both;
}
.home-welcome__cta {
    -webkit-animation: fadeInUp 0.8s ease 0.6s both;
    animation: fadeInUp 0.8s ease 0.6s both;
}

@media (max-width: 768px) {
    .home-welcome__title,
    .home-welcome__text,
    .home-welcome__cta {
        -webkit-animation: none;
        animation: none;
    }
}
.home-application {
    --home-application-padding: 40px;
    --home-application-card-width: 320px;
    --home-application-card-height: 240px;
    --home-application-gap: 20px;
}
@media (max-width: 1200px) {
    .home-application {
        --home-application-card-width: 280px;
        --home-application-card-height: 210px;
        --home-application-gap: 15px;
    }
}
@media (max-width: 768px) {
    .home-application {
        --home-application-padding: 20px;
        --home-application-card-width: 250px;
        --home-application-card-height: 190px;
        --home-application-gap: 10px;
    }
}

.home-application {
    padding: var(--home-application-padding) 0;
    background: var(--accent-color-2);
    position: relative;
    overflow: hidden;
}
.home-application__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}
.home-application__header {
    text-align: center;
    margin-bottom: 25px;
    position: relative;
}
@media (max-width: 768px) {
    .home-application__header {
        margin-bottom: 15px;
    }
}
.home-application__title {
    font-family: var(--font-family-main);
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-white);
    margin: 0 0 10px 0;
    letter-spacing: 3px;
}
@media (max-width: 1200px) {
    .home-application__title {
        font-size: 32px;
        letter-spacing: 2.5px;
    }
}
@media (max-width: 768px) {
    .home-application__title {
        font-size: 28px;
        letter-spacing: 2px;
        margin-bottom: 12px;
    }
}
@media (max-width: 480px) {
    .home-application__title {
        font-size: 24px;
        letter-spacing: 1.5px;
        margin-bottom: 10px;
    }
}
.home-application__subtitle {
    font-family: var(--font-family-main);
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}
@media (max-width: 768px) {
    .home-application__subtitle {
        font-size: 15px;
    }
}
@media (max-width: 480px) {
    .home-application__subtitle {
        font-size: 14px;
    }
}
.home-application__navigation {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 0;
}
@media (max-width: 768px) {
    .home-application__navigation {
        position: relative;
        justify-content: center;
        margin-top: 20px;
    }
}
.home-application__nav-btn {
    background: none;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    padding: 15px;
    transition: all 0.3s ease;
    opacity: 0.8;
}
.home-application__nav-btn:hover {
    opacity: 1;
    transform: scale(1.1);
}
.home-application__nav-btn.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}
.home-application__nav-btn.swiper-button-disabled:hover {
    transform: none;
}
.home-application__nav-btn svg {
    display: block;
    width: 24px;
    height: 24px;
}
@media (max-width: 768px) {
    .home-application__nav-btn svg {
        width: 20px;
        height: 20px;
    }
}
.home-application__nav-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.6);
}
@media (max-width: 768px) {
    .home-application__nav-divider {
        height: 30px;
    }
}
.home-application__navigation:has(.home-application__nav-prev.swiper-button-lock):has(
        .home-application__nav-next.swiper-button-lock
    )
    .home-application__nav-divider {
    display: none;
}
.home-application__navigation.nav-buttons-locked .home-application__nav-divider {
    display: none;
}
.home-application__card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}
.home-application__card:hover .home-application__card-img {
    transform: scale(1.05);
}
.home-application__card:hover .home-application__card-arrow {
    background: var(--color-black);
    color: var(--accent-color);
}
.home-application__card-image {
    aspect-ratio: 9/8;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.home-application__card-img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    transition: transform 0.4s ease;
}
.home-application__card-arrow {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 46px;
    height: 46px;
    background: var(--accent-color);
    color: var(--color-white);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}
.home-application__card-arrow svg {
    width: 26px;
    height: 26px;
}
@media (max-width: 768px) {
    .home-application__card-arrow {
        width: 28px;
        height: 28px;
        margin-left: 12px;
    }
    .home-application__card-arrow svg {
        width: 14px;
        height: 14px;
    }
}
.home-application__card-content {
    padding: 13px 20px 20px;
}
@media (max-width: 768px) {
    .home-application__card-content {
        padding: 13px 15px 15px;
    }
}
.home-application__card-title {
    font-family: var(--font-family-main);
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-white);
    margin: 0;
    letter-spacing: 1.6px;
    flex: 1;
}
@media (max-width: 768px) {
    .home-application__card-title {
        font-size: 13px;
        letter-spacing: 0.5px;
    }
}
@media (max-width: 480px) {
    .home-application__card-title {
        font-size: 12px;
    }
}

.locations-news {
    --locations-news-height: 560px;
}
@media (max-width: 768px) {
    .locations-news {
        --locations-news-height: auto;
    }
}

.locations-news {
    min-height: var(--locations-news-height);
    background: var(--accent-background-color);
}
.locations-news__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: var(--locations-news-height);
    max-width: var(--page-max-width);
    margin: 0 auto;
}
@media (max-width: 768px) {
    .locations-news__container {
        grid-template-columns: 1fr;
        min-height: auto;
    }
}
.locations-news__locations {
    position: relative;
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff9d5c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    overflow: hidden;
}
@media (max-width: 1200px) {
    .locations-news__locations {
        padding: 50px 30px;
    }
}
@media (max-width: 768px) {
    .locations-news__locations {
        padding: 60px 30px;
    }
}
@media (max-width: 480px) {
    .locations-news__locations {
        padding: 50px 20px;
    }
}
.locations-news__locations-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: 1;
}
.locations-news__locations-bg-img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}
.locations-news__locations-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 2;
}
.locations-news__locations-content {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 100%;
    max-width: 600px;
}
.locations-news__locations-title {
    font-family: var(--font-family-main);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-white);
    margin: 0 0 40px 0;
    line-height: 1.2;
    text-align: left;
    position: relative;
}
@media (max-width: 1350px) {
    .locations-news__locations-title {
        text-align: center;
    }
}
@media (max-width: 768px) {
    .locations-news__locations-title {
        font-size: 22px;
        margin-bottom: 35px;
    }
}
@media (max-width: 480px) {
    .locations-news__locations-title {
        font-size: 20px;
        letter-spacing: 1.5px;
        margin-bottom: 30px;
    }
}
.locations-news__locations-form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
@media (max-width: 1350px) {
    .locations-news__locations-form {
        flex-direction: column;
        gap: 15px;
    }
}
.locations-news__location-btn {
    background: rgba(139, 69, 19, 0.8);
    border: none;
    color: var(--color-white);
    padding: 12px 24px;
    font-family: var(--font-family-main);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.locations-news__location-btn:hover {
    background: saddlebrown;
    transform: translateY(-2px);
}
@media (max-width: 480px) {
    .locations-news__location-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}
.locations-news__target-icon {
    flex-shrink: 0;
}
.locations-news__or {
    font-family: var(--font-family-main);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-shrink: 0;
}
.locations-news__zip-form {
    display: flex;
    background: var(--color-white);
    border-radius: 0;
    overflow: hidden;
    min-width: 280px;
}
@media (max-width: 480px) {
    .locations-news__zip-form {
        min-width: 250px;
    }
}
.locations-news__zip-input {
    flex: 1;
    border: none;
    padding: 12px 16px;
    font-family: var(--font-family-main);
    font-size: 14px;
    color: var(--color-black);
    background: transparent;
}
.locations-news__zip-input::-moz-placeholder {
    color: #999;
}
.locations-news__zip-input:-ms-input-placeholder {
    color: #999;
}
.locations-news__zip-input::placeholder {
    color: #999;
}
.locations-news__zip-input:focus {
    outline: none;
}
@media (max-width: 480px) {
    .locations-news__zip-input {
        padding: 10px 14px;
        font-size: 13px;
    }
}
.locations-news__zip-submit {
    background: #8b4513;
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.locations-news__zip-submit:hover {
    background: #a0522d;
}
@media (max-width: 480px) {
    .locations-news__zip-submit {
        padding: 10px 14px;
    }
}
.locations-news__chevron-icon {
    flex-shrink: 0;
}
.locations-news__news {
    background: var(--color-white);
    display: flex;
    align-items: center;
}
.locations-news__news-inner {
    width: 100%;
    padding: 60px 40px;
}
@media (max-width: 1200px) {
    .locations-news__news-inner {
        padding: 50px 30px;
    }
}
@media (max-width: 768px) {
    .locations-news__news-inner {
        padding: 60px 30px;
    }
}
@media (max-width: 480px) {
    .locations-news__news-inner {
        padding: 50px 20px;
    }
}
.locations-news__news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}
@media (max-width: 768px) {
    .locations-news__news-header {
        margin-bottom: 30px;
    }
}
@media (max-width: 480px) {
    .locations-news__news-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 25px;
    }
}
.locations-news__news-title {
    font-family: var(--font-family-main);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-black);
    margin: 0;
}
@media (max-width: 768px) {
    .locations-news__news-title {
        font-size: 22px;
    }
}
@media (max-width: 480px) {
    .locations-news__news-title {
        font-size: 20px;
        letter-spacing: 1.5px;
    }
}
.locations-news__news-link {
    font-family: var(--font-family-main);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}
.locations-news__news-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}
.locations-news__news-link:hover {
    color: var(--accent-color);
}
.locations-news__news-link:hover::after {
    width: calc(100% - 17px);
}
@media (max-width: 480px) {
    .locations-news__news-link {
        font-size: 11px;
    }
}
.locations-news__news-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
@media (max-width: 768px) {
    .locations-news__news-content {
        gap: 30px;
    }
}
.locations-news__article {
    border-left: 3px solid var(--accent-color);
    padding-left: 20px;
}
@media (max-width: 480px) {
    .locations-news__article {
        padding-left: 15px;
    }
}
.locations-news__article-title {
    font-family: var(--font-family-main);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-black);
    margin: 0 0 15px 0;
    line-height: 1.3;
}
@media (max-width: 768px) {
    .locations-news__article-title {
        font-size: 17px;
        margin-bottom: 12px;
    }
}
@media (max-width: 480px) {
    .locations-news__article-title {
        font-size: 16px;
        margin-bottom: 10px;
    }
}
.locations-news__article-excerpt {
    font-family: var(--font-family-main);
    font-size: 14px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    margin: 0 0 15px 0;
}
@media (max-width: 768px) {
    .locations-news__article-excerpt {
        font-size: 13px;
        margin-bottom: 12px;
    }
}
@media (max-width: 480px) {
    .locations-news__article-excerpt {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 10px;
    }
}
.locations-news__article-link {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-family: var(--font-family-main);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}
.locations-news__article-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}
.locations-news__article-link:hover {
    color: var(--accent-color);
}
.locations-news__article-link:hover::after {
    width: calc(100% - 17px);
}
@media (max-width: 480px) {
    .locations-news__article-link {
        font-size: 11px;
    }
}
.locations-news__arrow-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.locations-news__article-link:hover .locations-news__arrow-icon,
.locations-news__news-link:hover .locations-news__arrow-icon {
    transform: translateX(3px);
}

.about-welcome {
    background: var(--color-white);
    padding: 35px 0;
}
@media (max-width: 768px) {
    .about-welcome {
        padding: 25px 0;
    }
}
@media (max-width: 480px) {
    .about-welcome {
        padding: 20px 0;
    }
}
.about-welcome__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}
@media (max-width: 768px) {
    .about-welcome__container {
        padding: 0 15px;
    }
}
.about-welcome__content {
    max-width: 1250px;
    margin: 0 auto;
    text-align: center;
}
.about-welcome__title {
    font-family: var(--font-family-accent);
    font-size: 48px;
    font-weight: 400;
    color: var(--color-black);
    margin: 0 0 40px 0;
    line-height: 1.2;
}
@media (max-width: 1200px) {
    .about-welcome__title {
        font-size: 42px;
    }
}
@media (max-width: 768px) {
    .about-welcome__title {
        font-size: 36px;
        margin-bottom: 30px;
    }
}
@media (max-width: 480px) {
    .about-welcome__title {
        font-size: 32px;
        margin-bottom: 25px;
    }
}
.about-welcome__text {
    font-family: var(--font-family-main);
    font-size: 16px;
    font-weight: 300;
    color: #000;
    line-height: 1.6;
    letter-spacing: 0.48px;
    margin: 0;
}
@media (max-width: 768px) {
    .about-welcome__text {
        font-size: 16px;
        line-height: 1.5;
    }
}
@media (max-width: 480px) {
    .about-welcome__text {
        font-size: 15px;
    }
}

.about-facility {
    min-height: 650px;
    background: var(--accent-color-2);
}
@media (max-width: 768px) {
    .about-facility {
        min-height: auto;
    }
}
.about-facility__container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    min-height: 650px;
    max-width: var(--page-max-width);
    margin: 0 auto;
}
@media (max-width: 1200px) {
    .about-facility__container {
        grid-template-columns: 1fr;
        min-height: auto;
    }
}
.about-facility__content {
    background: var(--accent-color-2);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}
@media (max-width: 1200px) {
    .about-facility__content {
        padding: 50px 30px;
    }
}
@media (max-width: 768px) {
    .about-facility__content {
        padding: 60px 30px;
    }
}
@media (max-width: 480px) {
    .about-facility__content {
        padding: 50px 20px;
    }
}
.about-facility__text-wrapper {
    max-width: 400px;
    width: 100%;
}
@media (max-width: 1200px) {
    .about-facility__text-wrapper {
        max-width: 100%;
    }
}
.about-facility__text {
    font-family: var(--font-family-main);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-white);
    line-height: 1.6;
    margin: 0 0 25px 0;
}
.about-facility__text:last-child {
    margin-bottom: 0;
}
@media (max-width: 768px) {
    .about-facility__text {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 20px;
    }
}
@media (max-width: 480px) {
    .about-facility__text {
        font-size: 14px;
        margin-bottom: 18px;
    }
}
.about-facility__image {
    position: relative;
    overflow: hidden;
    min-height: 500px;
}
@media (max-width: 768px) {
    .about-facility__image {
        min-height: 300px;
    }
}
@media (max-width: 480px) {
    .about-facility__image {
        min-height: 250px;
    }
}
.about-facility__img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.about-points {
    position: relative;
    padding: 0px 0 0 0;
    background: #eee;
    overflow: hidden;
    --accent-color-rgb: 255, 133, 51;
}
.about-points::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse 800px 600px at center center,
        white 0%,
        white 30%,
        #e4e4e4 60%,
        transparent 100%
    );
    z-index: 1;
}
.about-points__bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle 1000px at center center, white 0%, transparent 70%);
    z-index: 2;
}
@media (max-width: 860px) {
    .about-points {
        padding: 0 0 50px 0;
    }
}
.about-points__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 3;
}
@media (max-width: 860px) {
    .about-points__container {
        padding: 0 15px;
    }
}
.about-points__content {
    position: relative;
    min-height: 800px;
    display: flex;
    justify-content: center;
}
@media (max-width: 860px) {
    .about-points__content {
        min-height: auto;
        align-items: center;
        flex-direction: column;
        gap: 50px;
    }
}
.about-points__center {
    position: relative;
    z-index: 0;
}
@media (max-width: 860px) {
    .about-points__center {
        order: 1;
    }
}
.about-points__center-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.8) 0%,
        rgba(255, 255, 255, 0.4) 30%,
        rgba(255, 255, 255, 0.05) 50%,
        transparent 100%
    );
    border-radius: 50%;
    z-index: -1;
    -webkit-animation: glow-pulse 4s ease-in-out infinite;
    animation: glow-pulse 4s ease-in-out infinite;
}
@media (max-width: 860px) {
    .about-points__center-glow {
        width: 300px;
        height: 300px;
    }
}
.about-points__center-image-wrapper {
    position: relative;
    z-index: 10;
}
.about-points__center-img {
    width: 600px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (max-width: 860px) {
    .about-points__center-img {
        width: 220px;
    }
}
@media (max-width: 480px) {
    .about-points__center-img {
        width: 180px;
    }
}
.about-points__point {
    position: absolute;
    max-width: 320px;
    opacity: 0;
    transform: translateY(50px) scale(0.8);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (max-width: 860px) {
    .about-points__point {
        position: relative;
        width: 100%;
        max-width: 100%;
        opacity: 1;
        transform: none;
    }
}
.about-points__point--animated {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.about-points__point--top-left {
    top: 10%;
    left: 10%;
}
@media (max-width: 860px) {
    .about-points__point--top-left {
        order: 2;
        left: 0;
    }
}
.about-points__point--top-right {
    top: 10%;
    right: 10%;
}
@media (max-width: 860px) {
    .about-points__point--top-right {
        order: 3;
        right: 0;
    }
}
.about-points__point--bottom-left {
    bottom: 10%;
    left: 10%;
}
@media (max-width: 860px) {
    .about-points__point--bottom-left {
        order: 4;
        left: 0;
    }
}
.about-points__point--bottom-right {
    bottom: 10%;
    right: 10%;
}
@media (max-width: 860px) {
    .about-points__point--bottom-right {
        order: 5;
        right: 0;
    }
}
.about-points__point-wrapper {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}
@media (max-width: 860px) {
    .about-points__point-wrapper {
        display: flex;
        align-items: center;
        gap: 20px;
        padding: 25px;
    }
}
.about-points__point-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.about-points__point-icon {
    width: 93px;
    height: 93px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #e67e22 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
@media (max-width: 860px) {
    .about-points__point-icon {
        margin: 0;
        flex-shrink: 0;
        width: 70px;
        height: 70px;
    }
    .about-points__point-icon svg {
        width: 40px;
        height: 40px;
    }
}
.about-points__point-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}
.about-points__point-icon:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 25px rgba(var(--accent-color-rgb), 0.4);
}
.about-points__point-icon:hover::before {
    left: 100%;
}
.about-points__point-content {
    text-align: center;
}
@media (max-width: 860px) {
    .about-points__point-content {
        text-align: left;
        flex: 1;
    }
}
.about-points__point-title {
    font-family: var(--font-family-main);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-black);
    margin: 0 0 12px 0;
    line-height: 1.3;
}
@media (max-width: 860px) {
    .about-points__point-title {
        font-size: 15px;
        margin-bottom: 8px;
    }
}
@media (max-width: 480px) {
    .about-points__point-title {
        font-size: 14px;
    }
}
.about-points__point-text {
    font-family: var(--font-family-main);
    font-size: 14px;
    font-weight: 300;
    color: #000;
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 860px) {
    .about-points__point-text {
        font-size: 13px;
        line-height: 1.5;
    }
}
.about-points--animated .about-points__center-img {
    -webkit-animation-play-state: running;
    animation-play-state: running;
}
.about-points--animated .about-points__line--animated:nth-child(1) {
    transition-delay: 0.8s;
}
.about-points--animated .about-points__line--animated:nth-child(2) {
    transition-delay: 1s;
}
.about-points--animated .about-points__line--animated:nth-child(3) {
    transition-delay: 1.2s;
}
.about-points--animated .about-points__line--animated:nth-child(4) {
    transition-delay: 1.4s;
}
.about-points--animated .about-points__point--animated:nth-child(3) {
    transition-delay: 0.3s;
}
.about-points--animated .about-points__point--animated:nth-child(4) {
    transition-delay: 0.6s;
}
.about-points--animated .about-points__point--animated:nth-child(5) {
    transition-delay: 0.9s;
}
.about-points--animated .about-points__point--animated:nth-child(6) {
    transition-delay: 1.2s;
}

@-webkit-keyframes glow-pulse {
    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.6;
    }
}

@keyframes glow-pulse {
    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.6;
    }
}
.contact-welcome {
    background: var(--color-white);
    padding: 35px 0;
}
@media (max-width: 768px) {
    .contact-welcome {
        padding: 25px 0;
    }
}
@media (max-width: 480px) {
    .contact-welcome {
        padding: 20px 0;
    }
}
.contact-welcome__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 20px;
}
@media (max-width: 768px) {
    .contact-welcome__container {
        padding: 0 15px;
    }
}
.contact-welcome__content {
    max-width: 1250px;
    margin: 0 auto;
    text-align: center;
}
.contact-welcome__title {
    font-family: var(--font-family-accent);
    font-size: 48px;
    font-weight: 400;
    color: var(--color-black);
    margin: 0 0 40px 0;
    line-height: 1.2;
}
@media (max-width: 1200px) {
    .contact-welcome__title {
        font-size: 42px;
    }
}
@media (max-width: 768px) {
    .contact-welcome__title {
        font-size: 36px;
        margin-bottom: 30px;
    }
}
@media (max-width: 480px) {
    .contact-welcome__title {
        font-size: 32px;
        margin-bottom: 25px;
    }
}
.contact-welcome__text {
    font-family: var(--font-family-main);
    font-size: 16px;
    font-weight: 300;
    color: #000;
    line-height: 1.6;
    margin: 0 0 30px 0;
}
@media (max-width: 768px) {
    .contact-welcome__text {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 25px;
    }
}
@media (max-width: 480px) {
    .contact-welcome__text {
        font-size: 15px;
        margin-bottom: 20px;
    }
}
.contact-welcome__cta {
    font-family: var(--font-family-main);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-black);
    line-height: 1.4;
    margin: 0;
}
@media (max-width: 768px) {
    .contact-welcome__cta {
        font-size: 16px;
    }
}
@media (max-width: 480px) {
    .contact-welcome__cta {
        font-size: 15px;
    }
}

.finishes-welcome {
    background: var(--color-white);
    padding: 35px 0;
}
@media (max-width: 768px) {
    .finishes-welcome {
        padding: 25px 0;
    }
}
@media (max-width: 480px) {
    .finishes-welcome {
        padding: 20px 0;
    }
}
.finishes-welcome__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 20px;
}
@media (max-width: 768px) {
    .finishes-welcome__container {
        padding: 0 15px;
    }
}
.finishes-welcome__content {
    max-width: 1250px;
    margin: 0 auto;
    text-align: center;
}
.finishes-welcome__title {
    font-family: var(--font-family-accent);
    font-size: 48px;
    font-weight: 400;
    color: var(--color-black);
    margin: 0 0 40px 0;
    line-height: 1.2;
}
@media (max-width: 1200px) {
    .finishes-welcome__title {
        font-size: 42px;
    }
}
@media (max-width: 768px) {
    .finishes-welcome__title {
        font-size: 36px;
        margin-bottom: 30px;
    }
}
@media (max-width: 480px) {
    .finishes-welcome__title {
        font-size: 32px;
        margin-bottom: 25px;
    }
}
.finishes-welcome__text {
    font-family: var(--font-family-main);
    font-size: 14px;
    font-weight: 300;
    color: #000;
    line-height: 1.6;
    margin: 0 0 30px 0;
}
@media (max-width: 768px) {
    .finishes-welcome__text {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 25px;
    }
}
@media (max-width: 480px) {
    .finishes-welcome__text {
        font-size: 15px;
        margin-bottom: 20px;
    }
}
.finishes-welcome__cta {
    font-family: var(--font-family-main);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-black);
    line-height: 1.4;
    margin: 0;
}
@media (max-width: 768px) {
    .finishes-welcome__cta {
        font-size: 16px;
    }
}
@media (max-width: 480px) {
    .finishes-welcome__cta {
        font-size: 15px;
    }
}

.find-distributor-welcome {
    background: var(--color-white);
    padding: 45px 0;
}
@media (max-width: 768px) {
    .find-distributor-welcome {
        padding: 25px 0;
    }
}
@media (max-width: 480px) {
    .find-distributor-welcome {
        padding: 20px 0;
    }
}
.find-distributor-welcome__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 20px;
}
@media (max-width: 768px) {
    .find-distributor-welcome__container {
        padding: 0 15px;
    }
}
.find-distributor-welcome__content {
    max-width: 1250px;
    margin: 0 auto;
    text-align: center;
}
.find-distributor-welcome__title {
    font-family: var(--font-family-accent);
    font-size: 48px;
    font-weight: 400;
    color: var(--color-black);
    line-height: 1.2;
}
@media (max-width: 1200px) {
    .find-distributor-welcome__title {
        font-size: 42px;
    }
}
@media (max-width: 768px) {
    .find-distributor-welcome__title {
        font-size: 36px;
    }
}
@media (max-width: 480px) {
    .find-distributor-welcome__title {
        font-size: 32px;
    }
}

.downloads-welcome {
    background: var(--color-white);
    padding: 45px 0;
}
@media (max-width: 768px) {
    .downloads-welcome {
        padding: 25px 0;
    }
}
@media (max-width: 480px) {
    .downloads-welcome {
        padding: 20px 0;
    }
}
.downloads-welcome__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 20px;
}
@media (max-width: 768px) {
    .downloads-welcome__container {
        padding: 0 15px;
    }
}
.downloads-welcome__content {
    max-width: 1250px;
    margin: 0 auto;
    text-align: center;
}
.downloads-welcome__title {
    font-family: var(--font-family-accent);
    font-size: 48px;
    font-weight: 400;
    color: var(--color-black);
    line-height: 1.2;
}
@media (max-width: 1200px) {
    .downloads-welcome__title {
        font-size: 42px;
    }
}
@media (max-width: 768px) {
    .downloads-welcome__title {
        font-size: 36px;
    }
}
@media (max-width: 480px) {
    .downloads-welcome__title {
        font-size: 32px;
    }
}

.contact-contact {
    background: var(--accent-background-color);
    min-height: 600px;
}
@media (max-width: 768px) {
    .contact-contact {
        min-height: auto;
    }
}
.contact-contact__container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    min-height: 600px;
    max-width: var(--page-max-width);
    margin: 0 auto;
}
@media (max-width: 768px) {
    .contact-contact__container {
        grid-template-columns: 1fr;
        min-height: auto;
    }
}
.contact-contact__info {
    background: var(--accent-background-color);
    display: flex;
    padding: 60px 40px 60px var(--container-padding);
}
@media (max-width: 1200px) {
    .contact-contact__info {
        padding: 50px 30px 50px var(--container-padding);
    }
}
@media (max-width: 768px) {
    .contact-contact__info {
        padding: 50px 30px 50px var(--container-padding);
    }
}
@media (max-width: 480px) {
    .contact-contact__info {
        padding: 40px 20px 40px var(--container-padding);
    }
}
.contact-contact__info-content {
    width: 100%;
    max-width: 400px;
}
@media (max-width: 768px) {
    .contact-contact__info-content {
        max-width: 100%;
    }
}
.contact-contact__section {
    margin-bottom: 50px;
}
.contact-contact__section:last-child {
    margin-bottom: 0;
}
@media (max-width: 768px) {
    .contact-contact__section {
        margin-bottom: 40px;
    }
}
.contact-contact__section-title {
    font-family: var(--font-family-main);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-black);
    margin: 0 0 25px 0;
}
@media (max-width: 768px) {
    .contact-contact__section-title {
        font-size: 15px;
        margin-bottom: 20px;
    }
}
.contact-contact__item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}
.contact-contact__item:last-child {
    margin-bottom: 0;
}
@media (max-width: 768px) {
    .contact-contact__item {
        margin-bottom: 20px;
    }
}
.contact-contact__icon {
    color: var(--accent-color);
    flex-shrink: 0;
    margin-top: 2px;
}
.contact-contact__details {
    font-family: var(--font-family-main);
    font-size: 14px;
    font-weight: 400;
    color: #666;
    line-height: 1.5;
}
.contact-contact__details a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}
.contact-contact__details a:hover {
    color: var(--accent-color);
}
.contact-contact__details div {
    margin-bottom: 2px;
}
.contact-contact__details div:last-child {
    margin-bottom: 0;
}
.contact-contact__details strong {
    font-weight: 600;
    color: var(--color-black);
}
.contact-contact__social-text {
    font-family: var(--font-family-main);
    font-size: 14px;
    font-weight: 400;
    color: #666;
    line-height: 1.5;
    margin: 0 0 20px 0;
}
@media (max-width: 768px) {
    .contact-contact__social-text {
        margin-bottom: 15px;
    }
}
.contact-contact__social {
    display: flex;
    gap: 15px;
}
.contact-contact__social-link {
    color: #666;
    transition: color 0.3s ease;
}
.contact-contact__social-link:hover {
    color: var(--accent-color);
}
.contact-contact__form {
    background: var(--accent-color-2);
    display: flex;
    align-items: center;
    padding: 60px var(--container-padding) 60px 40px;
}
@media (max-width: 1200px) {
    .contact-contact__form {
        padding: 50px var(--container-padding) 50px 30px;
    }
}
@media (max-width: 768px) {
    .contact-contact__form {
        padding: 50px var(--container-padding) 50px 30px;
    }
}
@media (max-width: 480px) {
    .contact-contact__form {
        padding: 40px var(--container-padding) 40px 20px;
    }
}
.contact-contact__form-content {
    width: 100%;
    max-width: 1000px;
}
@media (max-width: 768px) {
    .contact-contact__form-content {
        max-width: 100%;
    }
}
.contact-contact__form-title {
    font-family: var(--font-family-main);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-white);
    margin: 0 0 30px 0;
}
@media (max-width: 768px) {
    .contact-contact__form-title {
        font-size: 15px;
        margin-bottom: 25px;
    }
}
.contact-contact__form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-contact__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
@media (max-width: 480px) {
    .contact-contact__form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}
.contact-contact__form-group--full {
    grid-column: 1/-1;
}
.contact-contact__form-group input[type='file'] {
    width: 0;
}
.contact-contact__input {
    width: 100%;
    padding: 15px 16px;
    border: none;
    background: var(--color-white);
    font-family: var(--font-family-main);
    font-size: 14px;
    color: var(--color-black);
    transition: all 0.3s ease;
}
.contact-contact__input::-moz-placeholder {
    color: #999;
}
.contact-contact__input:-ms-input-placeholder {
    color: #999;
}
.contact-contact__input::placeholder {
    color: #999;
}
.contact-contact__input:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}
@media (max-width: 480px) {
    .contact-contact__input {
        padding: 10px 14px;
        font-size: 13px;
    }
}
.contact-contact__textarea {
    width: 100%;
    padding: 15px 16px;
    border: none;
    background: var(--color-white);
    font-family: var(--font-family-main);
    font-size: 14px;
    color: var(--color-black);
    resize: vertical;
    min-height: 120px;
    transition: all 0.3s ease;
}
.contact-contact__textarea::-moz-placeholder {
    color: #999;
}
.contact-contact__textarea:-ms-input-placeholder {
    color: #999;
}
.contact-contact__textarea::placeholder {
    color: #999;
}
.contact-contact__textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}
@media (max-width: 480px) {
    .contact-contact__textarea {
        padding: 10px 14px;
        font-size: 13px;
        min-height: 100px;
    }
}
.contact-contact__file-input {
    position: relative;
    display: flex;
}
.contact-contact__file-input-hidden {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.contact-contact__file-display {
    flex: 1;
    border-radius: 0;
}
.contact-contact__file-button {
    background: #999;
    color: var(--color-white);
    padding: 12px 20px;
    font-family: var(--font-family-main);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}
.contact-contact__file-button:hover {
    background: #777;
}
@media (max-width: 480px) {
    .contact-contact__file-button {
        padding: 10px 16px;
        font-size: 11px;
    }
}
.contact-contact__submit {
    background: #d5441c;
    border: none;
    color: var(--color-white);
    padding: 14px 24px;
    font-family: var(--font-family-main);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
}
.contact-contact__submit:hover {
    background: rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}
@media (max-width: 480px) {
    .contact-contact__submit {
        padding: 12px 20px;
        font-size: 13px;
    }
}
.contact-contact__submit-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.contact-contact__submit:hover .contact-contact__submit-icon {
    transform: translateX(3px);
}

.contact-map {
    background: var(--color-white);
    padding: 0;
}
.contact-map__container {
    background-image: url(/img/misc/sl_contact-map.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.contact-map__content {
    position: relative;
}
.contact-map__map-wrapper {
    position: relative;
    overflow: hidden;
}
.contact-map__map-link {
    display: block;
    position: relative;
    transition: all 0.3s ease;
    aspect-ratio: 32/13;
}
.contact-map__map-link:hover .contact-map__map-image {
    transform: scale(1.02);
}
.contact-map__map-link:hover .contact-map__map-overlay {
    opacity: 1;
}
.contact-map__map-image {
    width: 100%;
    height: 500px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    transition: transform 0.6s ease;
}
@media (max-width: 768px) {
    .contact-map__map-image {
        height: 400px;
    }
}
@media (max-width: 480px) {
    .contact-map__map-image {
        height: 300px;
    }
}
.contact-map__map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.contact-map__map-overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--color-white);
    text-align: center;
}
.contact-map__map-icon {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}
.contact-map__map-text {
    font-family: var(--font-family-main);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
@media (max-width: 480px) {
    .contact-map__map-text {
        font-size: 14px;
    }
}
.contact-map__button-wrapper {
    position: absolute;
    bottom: 30px;
    right: 50%;
    z-index: 10;
    width: 100%;
    transform: translateX(50%);
    max-width: var(--page-max-width);
    display: flex;
    justify-content: flex-end;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .contact-map__button-wrapper {
        bottom: 20px;
    }
}
@media (max-width: 480px) {
    .contact-map__button-wrapper {
        bottom: 15px;
    }
}
.contact-map__button {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    background: var(--color-white);
    color: var(--color-black);
    padding: 12px 20px;
    font-family: var(--font-family-main);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-right: 50px;
    transition: all 0.3s ease;
}
.contact-map__button:hover {
    background: #e67e22;
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.contact-map__button:hover .contact-map__button-arrow {
    transform: translateX(3px);
}
@media (max-width: 768px) {
    .contact-map__button {
        padding: 10px 16px;
        font-size: 13px;
    }
}
@media (max-width: 480px) {
    .contact-map__button {
        padding: 8px 14px;
        font-size: 12px;
        gap: 6px;
    }
}
.contact-map__button-icon {
    flex-shrink: 0;
}
.contact-map__button-arrow {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.products-layout {
    background: var(--color-white);
    position: relative;
}
.products-layout__container {
    display: grid;
    grid-template-columns: 350px calc(100% - 350px);
    max-width: var(--page-max-width);
    padding: 0 var(--container-padding);
    margin: 0 auto;
}
@media (max-width: 1024px) {
    .products-layout__container {
        grid-template-columns: 280px calc(100% - 280px);
    }
}
@media (max-width: 768px) {
    .products-layout__container {
        grid-template-columns: 100%;
    }
}
.products-layout__mobile-toggle {
    display: none;
    position: fixed;
    bottom: 30px;
    left: 20px;
    z-index: 5;
    background: var(--accent-color);
    border: none;
    border-radius: 4px;
    padding: 10px 15px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    color: #fff;
    font-family: var(--font-family-main);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
@media (max-width: 768px) {
    .products-layout__mobile-toggle {
        display: block;
    }
}
.products-layout__mobile-toggle:hover {
    background: #e67e22;
}
.products-layout__overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}
@media (max-width: 768px) {
    .products-layout__overlay.active {
        display: block;
    }
}
.products-layout__sidebar {
    background-color: #fff;
    position: -webkit-sticky;
    position: sticky;
    top: var(--header-height, 80px);
    height: calc(100vh - var(--header-height, 80px));
    overflow-y: auto;
    z-index: 2;
}
@media (max-width: 768px) {
    .products-layout__sidebar {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 320px;
        z-index: 1000;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        border-right: none;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }
    .products-layout__sidebar.open {
        transform: translateX(0);
    }
}
@media (max-width: 480px) {
    .products-layout__sidebar {
        width: 280px;
    }
}
.products-layout__sidebar-content {
    padding: 30px 20px;
}
@media (max-width: 768px) {
    .products-layout__sidebar-content {
        padding: 20px 15px;
        padding-top: 60px;
    }
}
.products-layout__sidebar-header {
    margin-bottom: 30px;
    position: relative;
}
@media (max-width: 768px) {
    .products-layout__sidebar-header {
        margin-bottom: 20px;
    }
}
.products-layout__sidebar-title {
    font-family: var(--font-family-main);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin: 0;
}
.products-layout__sidebar-close {
    display: none;
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 8px;
}
@media (max-width: 768px) {
    .products-layout__sidebar-close {
        display: block;
    }
}
.products-layout__sidebar-close:hover {
    color: var(--accent-color);
}
.products-layout__nav {
    margin-bottom: 30px;
}
.products-layout__section:last-child {
    margin-bottom: 0;
}
.products-layout__section--lvl1 {
    padding-bottom: 20px;
}
.products-layout__section--lvl1:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.products-layout__section-header {
    background: var(--accent-color);
    border: 1px solid var(--accent-color);
}
.products-layout__section-toggle {
    width: 100%;
    background: none;
    border: none;
    padding: 12px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
}
.products-layout__section-toggle[aria-expanded='true'] {
    background-color: var(--accent-color);
    box-shadow: 0px 11px 30px -11px #00000078;
}
.products-layout__section-toggle[aria-expanded='true'] .products-layout__section-title {
    color: var(--color-white);
}
.products-layout__section-toggle:hover {
    color: var(--accent-color);
}
.products-layout__section-toggle[aria-expanded='true'] .products-layout__icon-vertical {
    opacity: 0;
    transform: rotate(90deg);
}
.products-layout__section-title {
    font-family: var(--font-family-main);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-white);
}
.products-layout__section-icon {
    color: var(--color-black);
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.products-layout__icon-horizontal,
.products-layout__icon-vertical {
    transition: all 0.3s ease;
}
.products-layout__icon-vertical {
    transform-origin: center;
}
.products-layout__section-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    margin-top: 0;
}
.products-layout__section-content.expanded {
    margin-top: 15px;
    max-height: 2000px;
}
.products-layout__item {
    margin-bottom: 5px;
}
.products-layout__item--lvl2 {
    margin-bottom: 5px;
    margin-left: 0;
}
.products-layout__item--lvl3 {
    margin-bottom: 5px;
    margin-left: 35px;
}
.products-layout__item-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
}
.products-layout__item-toggle {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.products-layout__item-toggle:hover .products-layout__chevron path {
    stroke: #e67e22;
}
.products-layout__item-toggle[aria-expanded='true'] .products-layout__chevron {
    transform: rotate(90deg);
}
.products-layout__chevron {
    transition: transform 0.3s ease;
}
.products-layout__chevron path {
    transition: stroke 0.3s ease;
}
.products-layout__item-children {
    margin-left: 20px;
    padding-top: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}
.products-layout__item-children.expanded {
    /* max-height: 500px; */
    max-height: 1000vh;
    padding-top: 10px;
}
.products-layout__item-link {
    font-family: var(--font-family-main);
    font-size: 14px;
    font-weight: 400;
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}
.products-layout__item-link:hover {
    color: var(--accent-color);
}
.products-layout__item-link.active {
    color: var(--accent-color);
    font-weight: 600;
}
.products-layout__item-text {
    font-family: var(--font-family-main);
    font-size: 14px;
    font-weight: 400;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
}
.products-layout__item-text:hover {
    color: var(--accent-color);
}
.products-layout .products-layout__sidebar .pretty .state label {
    text-indent: 1.8em;
    font-weight: 500;
}
.products-layout .products-layout__sidebar .pretty .state label:after,
.products-layout .products-layout__sidebar .pretty .state label:before {
    background-color: transparent;
}
.products-layout__actions {
    display: flex;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
}
.products-layout__button {
    padding: 10px 16px;
    font-family: var(--font-family-main);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.products-layout__button--secondary {
    background: transparent;
    color: #666;
    border: 1px solid #ccc;
}
.products-layout__button--secondary:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}
.products-layout__grid {
    padding: 30px 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
@media (max-width: 1400px) {
    .products-layout__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}
@media (max-width: 1050px) {
    .products-layout__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .products-layout__grid {
        padding: 20px 15px;
    }
}
.products-layout__card {
    background: var(--accent-background-color);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
    color: inherit;
    display: block;
}
.products-layout__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(100% 50% at 50% 50%, #fff 0%, #b1b0b0 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}
.products-layout__card:hover::before {
    opacity: 1;
}
.products-layout__card:hover .products-layout__card-link {
    background: var(--color-black);
    color: var(--color-white);
}
.products-layout__card-image {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}
.products-layout__card-img {
    aspect-ratio: 51/47;
    width: 100%;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
    transition: transform 0.3s ease;
}
@media (max-width: 480px) {
    .products-layout__card-img {
        max-width: 150px;
        max-height: 150px;
    }
}
.products-layout__card-content {
    padding: 20px 10px;
    text-align: center;
    position: relative;
    z-index: 2;
}
@media (max-width: 480px) {
    .products-layout__card-content {
        padding: 20px 15px;
    }
}
.products-layout__card-title {
    font-family: var(--font-family-main);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-black);
    margin: 0 0 15px 0;
}
@media (max-width: 480px) {
    .products-layout__card-title {
        font-size: 20px;
        margin-bottom: 10px;
    }
}
.products-layout__card-description {
    font-family: var(--font-family-main);
    font-size: 16px;
    font-weight: 300;
    color: var(--color-black);
    line-height: 1.5;
    margin: 0 0 25px 0;
}
@media (max-width: 480px) {
    .products-layout__card-description {
        font-size: 14px;
        margin-bottom: 20px;
    }
}
.products-layout__card-link {
    font-family: var(--font-family-main);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-color);
    background: transparent;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
}
.products-layout__card-link:hover .products-layout__card-arrow {
    transform: translateX(3px);
}
@media (max-width: 480px) {
    .products-layout__card-link {
        font-size: 12px;
        padding: 10px 16px;
        gap: 8px;
    }
}
.products-layout__card-arrow {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.no-scroll {
    overflow: hidden;
}

.products-layout__button.cleared {
    background: #27ae60 !important;
    color: white !important;
}

.product-detail {
    --product-layout-gap: 60px;
}

.product-detail {
    padding: 30px 20px;
}
.product-detail__container {
    width: 100%;
}
.product-detail__header {
    margin-bottom: 40px;
}
.product-detail__back {
    margin-bottom: 30px;
}
.product-detail__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    gap: 30px;
}
.product-detail__content {
    display: grid;
    grid-template-columns: calc(50% - var(--product-layout-gap) / 2) calc(50% - var(--product-layout-gap) / 2);
    gap: var(--product-layout-gap);
    align-items: start;
}
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-black);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}
.back-link:hover {
    color: var(--accent-color);
}
.back-link:hover svg {
    transform: translateX(-3px);
}
.back-link svg {
    transition: transform 0.3s ease;
}

.product-header__badge {
    background: var(--color-black);
    color: var(--color-white);
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: inline-block;
}
.product-header__title {
    font-family: var(--font-family-accent);
    font-size: 46px;
    font-weight: 400;
    color: var(--color-black);
    margin: 0;
    letter-spacing: 2px;
}

.product-content__tabs {
    display: flex;
    gap: 0;
}
.product-content__tab {
    text-align: center;
    background: none;
    border: 1px solid #ddd;
    color: var(--color-black);
    padding: 10px 40px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}
.product-content__tab:last-child {
    border-right: 1px solid #ddd;
}
.product-content__tab:hover {
    background: var(--accent-background-color);
}
.product-content__tab--active {
    background: var(--accent-color);
    color: var(--color-white);
    border-color: var(--accent-color);
}
.product-content__tab--active:hover {
    background: var(--accent-color-2);
}
.product-content__actions {
    display: flex;
    gap: 20px;
    align-items: center;
}
.product-content__panel {
    display: none;
}
.product-content__panel--active {
    display: block;
    -webkit-animation: fadeInUp 0.4s ease;
    animation: fadeInUp 0.4s ease;
}

.product-action {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: var(--color-black);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.product-action:hover {
    color: var(--accent-color);
    background: rgba(255, 133, 51, 0.1);
}
.product-action:hover svg {
    transform: scale(1.1);
}
.product-action svg {
    transition: transform 0.3s ease;
}

.product-description__title {
    font-size: 20px;
    font-weight: 500;
    color: var(--color-black);
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.product-description__content {
    color: #666;
    line-height: 1.7;
}
.product-description__content p {
    margin-bottom: 16px;
}
.product-description__content ul {
    margin-left: 20px;
    margin-top: 10px;
}
.product-description__content ul li {
    margin-bottom: 8px;
}

.product-specs {
    margin-top: 25px;
}
.product-specs p {
    font-weight: 500;
    color: var(--color-black);
}

.product__media-carousel {
    margin-bottom: 40px;
}
.product__media-carousel .f-carousel__slide {
    display: flex;
    align-items: center;
    justify-content: center;
}
.product__media-carousel #myCarousel {
    --f-carousel-slide-width: 100%;
    --f-carousel-spacing: 10px;
    max-height: 400px;
    margin-bottom: 1rem;
    position: relative;
}
.product__media-carousel #myCarousel.f-carousel--featured::after {
    content: 'FEATURED';
    position: absolute;
    top: 30px;
    right: 0;
    background-color: var(--accent-color-2);
    color: var(--color-white);
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}
.product__media-carousel #myCarousel .product__media-carousel-zoom {
    position: absolute;
    bottom: 15px;
    right: 15px;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.product__media-carousel #myCarousel .f-carousel__slide {
    max-height: 400px;
    position: relative;
}
.product__media-carousel #myCarousel .f-carousel__slide a {
    width: 100%;
    max-height: 100%;
    padding-top: 65%;
    position: relative;
    overflow: hidden;
    display: block;
    background-color: var(--accent-background-color);
    outline: none;
}
.product__media-carousel #myCarousel .f-carousel__slide a .video__thmb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.product__media-carousel #myCarousel .f-carousel__slide a .video__thmb .video__thmb-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.product__media-carousel #myCarousel .f-carousel__slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
.product__media-carousel #myNavigation {
    --f-carousel-slide-width: 100px;
    --f-thumb-gap: 5px;
    --f-thumb-width: 96px;
    --f-thumb-height: 72px;
    --f-button-prev-pos: 0;
    --f-button-next-pos: 0;
    padding: 0 40px;
}
.product__media-carousel #myNavigation .f-carousel__slide {
    border: 2px solid transparent;
    position: relative;
    flex: 0 0 auto;
    box-sizing: content-box;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    width: var(--f-thumb-width);
    height: var(--f-thumb-height);
    margin: 0 var(--f-thumb-gap) 0 0;
    overflow: visible;
    cursor: pointer;
}
.product__media-carousel #myNavigation .f-carousel__slide.is-nav-selected {
    color: var(--color-white);
    border: 2px solid var(--accent-color);
}
.product__media-carousel #myNavigation .f-carousel__slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
.product__media-carousel #myNavigation .f-button.is-prev {
    left: 0;
}

.product-documents .product-documents__title {
    font-size: 20px;
    font-weight: 500;
    color: var(--color-black);
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

.document-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    border: 1px solid #ddd;
    text-decoration: none;
    color: var(--color-black);
    transition: all 0.3s ease;
    background: var(--color-white);
}
.document-item:hover {
    border-color: var(--accent-color);
    background: var(--accent-background-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.document-item__icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
}
.document-item__icon svg {
    width: 100%;
    height: 100%;
}
.document-item__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.document-item__name {
    font-weight: 700;
    font-size: 14px;
    color: var(--color-black);
    margin: 0;
}
.document-item__download {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: underline;
}
.document-item__download:hover {
    color: var(--accent-color-2);
}

.fancybox__container {
    background-color: #f6f4f5bb;
}

@media (max-width: 1320px) {
    .product-detail__nav {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }
    .product-detail__content {
        grid-template-columns: 100%;
        gap: 40px;
    }
    .product-detail__media {
        order: -1;
    }

    .product-content__actions {
        justify-content: center;
    }
}
@media (max-width: 768px) {
    .product-header__title {
        font-size: 36px;
    }

    .product-content__tabs {
        flex-direction: column;
    }
    .product-content__tabs .product-content__tab {
        border-radius: 0;
        border-right: 1px solid #ddd;
    }
    .product-content__tabs .product-content__tab:first-child {
        border-radius: 4px 4px 0 0;
    }
    .product-content__tabs .product-content__tab:last-child {
        border-radius: 0 0 4px 4px;
    }

    .product-content__actions {
        flex-direction: column;
        gap: 10px;
    }

    .product-action {
        width: 100%;
        justify-content: center;
    }

    .product__media-carousel #myNavigation {
        --f-thumb-width: 80px;
        --f-thumb-height: 60px;
        padding: 0 20px;
    }
}
.find-distributor {
    --find-distributor-padding-y: 60px;
    --find-distributor-padding-x: 40px;
    --find-distributor-button-bg: rgba(139, 69, 19, 0.8);
    --find-distributor-button-bg-hover: rgba(139, 69, 19, 1);
    --find-distributor-submit-bg: #8b4513;
    --find-distributor-submit-bg-hover: #a0522d;
    position: relative;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.find-distributor--small {
    padding: 120px var(--find-distributor-padding-x);
    min-height: 200px;
    background-image: url(/img/misc/sl_find-distr-sm.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: normal;
}
@media (max-width: 768px) {
    .find-distributor--small {
        padding: 35px 30px;
        min-height: 180px;
    }
}
@media (max-width: 480px) {
    .find-distributor--small {
        padding: 30px 20px;
        min-height: 160px;
    }
}
.find-distributor--large {
    padding: 156px var(--container-padding) 180px var(--container-padding);
    min-height: 300px;
    background-image: url(/img/misc/sl_find-distr-lg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: normal;
}
@media (max-width: 1200px) {
    .find-distributor--large {
        padding: 100px var(--container-padding);
        min-height: 280px;
    }
}
@media (max-width: 768px) {
    .find-distributor--large {
        padding: 80px 30px;
        min-height: 250px;
    }
}
@media (max-width: 480px) {
    .find-distributor--large {
        padding: 60px 20px;
        min-height: 220px;
    }
}
.find-distributor__container {
    max-width: var(--page-max-width);
    width: 100%;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 3;
}
.find-distributor__bg-img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}
.find-distributor__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 2;
}
.find-distributor__content {
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}
.find-distributor__title {
    font-family: var(--font-family-main);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-white);
    margin: 0 0 40px 0;
    line-height: 1.2;
}
.find-distributor--small .find-distributor__title {
    font-size: 20px;
    margin-bottom: 30px;
    letter-spacing: 1.5px;
}
@media (max-width: 768px) {
    .find-distributor__title {
        font-size: 22px;
        margin-bottom: 35px;
    }
    .find-distributor--small .find-distributor__title {
        font-size: 18px;
        margin-bottom: 25px;
    }
}
@media (max-width: 480px) {
    .find-distributor__title {
        font-size: 20px;
        letter-spacing: 1.5px;
        margin-bottom: 30px;
    }
    .find-distributor--small .find-distributor__title {
        font-size: 16px;
        margin-bottom: 20px;
        letter-spacing: 1px;
    }
}
.find-distributor__form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
@media (max-width: 768px) {
    .find-distributor__form {
        flex-direction: column;
        gap: 15px;
    }
}
.find-distributor__location-btn {
    background: var(--find-distributor-button-bg);
    border: none;
    color: var(--color-white);
    padding: 12px 24px;
    font-family: var(--font-family-main);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    border-radius: 0;
}
.find-distributor__location-btn:hover {
    background: var(--find-distributor-button-bg-hover);
    transform: translateY(-2px);
}
.find-distributor--small .find-distributor__location-btn {
    padding: 10px 20px;
    font-size: 13px;
}
@media (max-width: 480px) {
    .find-distributor__location-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}
.find-distributor__target-icon {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}
.find-distributor__or {
    font-family: var(--font-family-main);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-shrink: 0;
}
.find-distributor--small .find-distributor__or {
    font-size: 13px;
}
@media (max-width: 480px) {
    .find-distributor__or {
        font-size: 13px;
    }
}
.find-distributor__zip-form {
    display: flex;
    background: var(--color-white);
    border-radius: 0;
    overflow: hidden;
    min-width: 280px;
}
@media (max-width: 480px) {
    .find-distributor__zip-form {
        min-width: 250px;
    }
    .find-distributor--small .find-distributor__zip-form {
        min-width: 220px;
    }
}
.find-distributor__zip-input {
    flex: 1;
    border: none;
    padding: 12px 16px;
    font-family: var(--font-family-main);
    font-size: 14px;
    color: var(--color-black);
    background: transparent;
}
.find-distributor__zip-input::-moz-placeholder {
    color: #999;
}
.find-distributor__zip-input:-ms-input-placeholder {
    color: #999;
}
.find-distributor__zip-input::placeholder {
    color: #999;
}
.find-distributor__zip-input:focus {
    outline: none;
}
.find-distributor--small .find-distributor__zip-input {
    padding: 10px 14px;
    font-size: 13px;
}
@media (max-width: 480px) {
    .find-distributor__zip-input {
        padding: 10px 14px;
        font-size: 13px;
    }
}
.find-distributor__zip-submit {
    background: var(--find-distributor-submit-bg);
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.find-distributor__zip-submit:hover {
    background: var(--find-distributor-submit-bg-hover);
}
.find-distributor--small .find-distributor__zip-submit {
    padding: 10px 14px;
}
@media (max-width: 480px) {
    .find-distributor__zip-submit {
        padding: 10px 14px;
    }
}
.find-distributor__chevron-icon {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    color: var(--color-white);
}

.finishes-standard {
    --finishes-standard-bg: #f6f4f5;
    --finishes-standard-swatch-size: 200px;
    --finishes-standard-swatch-gap: 40px;
    --finishes-standard-animation-duration: 0.4s;
    --finishes-standard-hover-scale: 1.05;
    --finishes-standard-hover-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: var(--finishes-standard-bg);
    padding: 40px 0;
}
@media (max-width: 768px) {
    .finishes-standard {
        padding: 20px 0;
    }
}
.finishes-standard__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}
.finishes-standard__content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}
.finishes-standard__title {
    font-family: var(--font-family-main);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-black);
    margin: 0 0 60px 0;
    line-height: 1.2;
}
@media (max-width: 768px) {
    .finishes-standard__title {
        font-size: 20px;
        margin-bottom: 50px;
        letter-spacing: 1.5px;
    }
}
@media (max-width: 480px) {
    .finishes-standard__title {
        font-size: 18px;
        margin-bottom: 40px;
        letter-spacing: 1px;
    }
}
.finishes-standard__colors {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: var(--finishes-standard-swatch-gap);
    margin-bottom: 60px;
    flex-wrap: wrap;
}
@media (max-width: 1024px) {
    .finishes-standard__colors {
        gap: 30px;
    }
}
@media (max-width: 768px) {
    .finishes-standard__colors {
        gap: 25px;
        margin-bottom: 50px;
    }
}
@media (max-width: 640px) {
    .finishes-standard__colors {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        max-width: 400px;
        margin: 0 auto 50px auto;
    }
}
@media (max-width: 480px) {
    .finishes-standard__colors {
        gap: 20px;
        max-width: 300px;
    }
}
.finishes-standard__color-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all var(--finishes-standard-animation-duration) cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    -webkit-animation: fadeInUp 0.6s ease forwards;
    animation: fadeInUp 0.6s ease forwards;
}
.finishes-standard__color-item:hover {
    transform: translateY(-5px);
}
.finishes-standard__color-item:hover .finishes-standard__color-swatch {
    transform: scale(var(--finishes-standard-hover-scale));
    box-shadow: var(--finishes-standard-hover-shadow);
}
.finishes-standard__color-item:hover .finishes-standard__color-name {
    color: var(--accent-color);
}
.finishes-standard__color-item:nth-child(1) {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}
.finishes-standard__color-item:nth-child(2) {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}
.finishes-standard__color-item:nth-child(3) {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}
.finishes-standard__color-item:nth-child(4) {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}
.finishes-standard__color-swatch {
    position: relative;
    width: var(--finishes-standard-swatch-size);
    height: var(--finishes-standard-swatch-size);
    box-shadow: 0 0px 12px rgba(0, 0, 0, 0);
    overflow: hidden;
    margin-bottom: 20px;
    transition: all var(--finishes-standard-animation-duration) cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 1024px) {
    .finishes-standard__color-swatch {
        --finishes-standard-swatch-size: 180px;
    }
}
@media (max-width: 768px) {
    .finishes-standard__color-swatch {
        --finishes-standard-swatch-size: 160px;
        margin-bottom: 15px;
    }
}
@media (max-width: 640px) {
    .finishes-standard__color-swatch {
        --finishes-standard-swatch-size: 140px;
    }
}
@media (max-width: 480px) {
    .finishes-standard__color-swatch {
        --finishes-standard-swatch-size: 120px;
        margin-bottom: 12px;
    }
}
.finishes-standard__color-swatch:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    -webkit-animation: subtlePulse 2s ease-in-out infinite;
    animation: subtlePulse 2s ease-in-out infinite;
}
.finishes-standard__color-img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    transition: all var(--finishes-standard-animation-duration) ease;
}
.finishes-standard__color-item:hover .finishes-standard__color-img {
    transform: scale(1.1);
}
.finishes-standard__color-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-2) 100%);
    opacity: 0;
    transition: all var(--finishes-standard-animation-duration) ease;
    pointer-events: none;
}
.finishes-standard__color-name {
    font-family: var(--font-family-accent);
    font-size: 18px;
    font-weight: 400;
    color: var(--color-black);
    margin: 0;
    line-height: 1.3;
    transition: all var(--finishes-standard-animation-duration) ease;
}
@media (max-width: 768px) {
    .finishes-standard__color-name {
        font-size: 16px;
    }
}
@media (max-width: 480px) {
    .finishes-standard__color-name {
        font-size: 14px;
    }
}
.finishes-standard__info {
    margin-bottom: 30px;
}
@media (max-width: 768px) {
    .finishes-standard__info {
        margin-bottom: 25px;
    }
}
.finishes-standard__instruction {
    font-family: var(--font-family-main);
    font-size: 16px;
    font-weight: 400;
    color: #666;
    margin: 0 0 8px 0;
    line-height: 1.5;
}
.finishes-standard__instruction:last-child {
    margin-bottom: 0;
}
@media (max-width: 768px) {
    .finishes-standard__instruction {
        font-size: 15px;
    }
}
@media (max-width: 480px) {
    .finishes-standard__instruction {
        font-size: 14px;
    }
}
.finishes-standard__disclaimer {
    opacity: 0;
    -webkit-animation: fadeIn 0.8s ease 1s forwards;
    animation: fadeIn 0.8s ease 1s forwards;
}
.finishes-standard__disclaimer-text {
    font-family: var(--font-family-main);
    font-size: 13px;
    font-weight: 400;
    color: #999;
    margin: 0;
    line-height: 1.4;
    font-style: italic;
}
@media (max-width: 480px) {
    .finishes-standard__disclaimer-text {
        font-size: 12px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@-webkit-keyframes subtlePulse {
    0%,
    100% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }
}
@keyframes subtlePulse {
    0%,
    100% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }
}
.finishes-standard__color-item.animate-in {
    -webkit-animation: fadeInUp 0.6s ease forwards;
    animation: fadeInUp 0.6s ease forwards;
}

.finishes-standard__color-item.loading .finishes-standard__color-swatch::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    -webkit-animation: shimmer 1.5s infinite;
    animation: shimmer 1.5s infinite;
}

@-webkit-keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}
.finish-list {
    --finish-list-swatch-size: 120px;
    --finish-list-swatch-gap: 2px;
    --finish-list-row-gap: 20px;
    --finish-list-animation-duration: 0.3s;
    --finish-list-search-width: 565px;
    padding: 40px 0 80px 0;
}
@media (max-width: 768px) {
    .finish-list {
        padding: 30px 0 40px 0;
    }
}
@media (max-width: 480px) {
    .finish-list {
        padding: 20px 0 40px 0;
    }
}
.finish-list__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}
.finish-list__tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}
@media (max-width: 768px) {
    .finish-list__tabs {
        margin-bottom: 30px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 0 20px;
        justify-content: flex-start;
    }
}
.finish-list__tab {
    background: var(--color-white);
    border: 1px solid #ddd;
    border-right: none;
    color: var(--color-black);
    padding: 10px 50px;
    font-family: var(--font-family-main);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all var(--finish-list-animation-duration) ease;
    position: relative;
    white-space: nowrap;
}
.finish-list__tab:last-child {
    border-right: 1px solid #ddd;
}
.finish-list__tab:hover {
    background: var(--accent-background-color);
    color: var(--accent-color);
}
.finish-list__tab--active {
    background: var(--accent-color);
    color: var(--color-white);
    border-color: var(--accent-color);
}
.finish-list__tab--active + .finish-list__tab {
    border-left-color: var(--accent-color);
}
@media (max-width: 768px) {
    .finish-list__tab {
        padding: 12px 20px;
        font-size: 13px;
    }
}
@media (max-width: 480px) {
    .finish-list__tab {
        padding: 10px 16px;
        font-size: 12px;
    }
}
.finish-list__search {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}
@media (max-width: 768px) {
    .finish-list__search {
        margin-bottom: 40px;
    }
}
.finish-list__search-wrapper {
    position: relative;
    width: 100%;
    max-width: var(--finish-list-search-width);
}
@media (max-width: 768px) {
    .finish-list__search-wrapper {
        max-width: 100%;
    }
}
.finish-list__search-input {
    width: 100%;
    padding: 10px 50px 10px 20px;
    border: 1px solid #ddd;
    font-family: var(--font-family-main);
    font-size: 16px;
    color: var(--color-black);
    background: var(--color-white);
    transition: all var(--finish-list-animation-duration) ease;
}
.finish-list__search-input::-moz-placeholder {
    color: #999;
}
.finish-list__search-input:-ms-input-placeholder {
    color: #999;
}
.finish-list__search-input::placeholder {
    color: #999;
}
.finish-list__search-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(255, 133, 51, 0.1);
}
@media (max-width: 480px) {
    .finish-list__search-input {
        padding: 12px 45px 12px 16px;
        font-size: 15px;
    }
}
.finish-list__search-btn {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    transition: all var(--finish-list-animation-duration) ease;
}
.finish-list__search-btn:hover {
    color: var(--accent-color);
}
@media (max-width: 480px) {
    .finish-list__search-btn {
        width: 45px;
    }
}
.finish-list__search-icon {
    width: 20px;
    height: 20px;
}
@media (max-width: 480px) {
    .finish-list__search-icon {
        width: 18px;
        height: 18px;
    }
}
.finish-list__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(var(--finish-list-swatch-size), 1fr));
    column-gap: var(--finish-list-swatch-gap);
    row-gap: var(--finish-list-row-gap);
}
@media (max-width: 1200px) {
    .finish-list__grid {
        --finish-list-swatch-size: 110px;
    }
}
@media (max-width: 768px) {
    .finish-list__grid {
        --finish-list-swatch-size: 100px;
    }
}
@media (max-width: 480px) {
    .finish-list__grid {
        --finish-list-swatch-size: 90px;
    }
}
.finish-list__swatch {
    color: #000;
    width: 100%;
    /* height: 180px; */
    cursor: pointer;
    transition: all var(--finish-list-animation-duration) cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: scale(1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.finish-list__swatch:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.finish-list__swatch.filtering-out {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
    transition: none;
}
.finish-list__swatch.hidden {
    display: none;
}
.finish-list__swatch.clicked {
    transform: translateY(-3px) scale(0.98);
}
.finish-list__swatch-color {
    width: 100%;
    /* height: 100%; */
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    /* display: flex; */
    /* align-items: flex-end; */
    transition: all var(--finish-list-animation-duration) ease;
}
.finish-list__swatch:hover .finish-list__swatch-color {
    z-index: 11;
    transform: scale(1.05);
}
.finish-list__swatch-info {
    position: relative;
    z-index: 2;
    padding: 8px 10px;
    width: 100%;
}
@media (max-width: 480px) {
    .finish-list__swatch-info {
        padding: 6px 8px;
    }
}
.finish-list__swatch-code {
    display: block;
    font-family: var(--font-family-main);
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 2px;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}
@media (max-width: 480px) {
    .finish-list__swatch-code {
        font-size: 12px;
        margin-bottom: 1px;
    }
}
.finish-list__swatch-name {
    display: block;
    font-family: var(--font-family-main);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}
@media (max-width: 480px) {
    .finish-list__swatch-name {
        font-size: 12px;
    }
}
.finish-list__no-results {
    text-align: center;
    padding: 60px 20px;
    opacity: 1;
    transition: opacity var(--finish-list-animation-duration) ease;
}
.finish-list__no-results-text {
    font-family: var(--font-family-main);
    font-size: 16px;
    color: #666;
    margin: 0;
}
@media (max-width: 480px) {
    .finish-list__no-results-text {
        font-size: 15px;
    }
}

@-webkit-keyframes filterIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes filterIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.finish-list__swatch {
    opacity: 0;
    -webkit-animation: fadeInUp 0.5s ease forwards;
    animation: fadeInUp 0.5s ease forwards;
}
.finish-list__swatch:nth-child(1) {
    -webkit-animation-delay: 0.05s;
    animation-delay: 0.05s;
}
.finish-list__swatch:nth-child(2) {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}
.finish-list__swatch:nth-child(3) {
    -webkit-animation-delay: 0.15s;
    animation-delay: 0.15s;
}
.finish-list__swatch:nth-child(4) {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}
.finish-list__swatch:nth-child(5) {
    -webkit-animation-delay: 0.25s;
    animation-delay: 0.25s;
}
.finish-list__swatch:nth-child(6) {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}
.finish-list__swatch:nth-child(7) {
    -webkit-animation-delay: 0.35s;
    animation-delay: 0.35s;
}
.finish-list__swatch:nth-child(8) {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}
.finish-list__swatch:nth-child(9) {
    -webkit-animation-delay: 0.45s;
    animation-delay: 0.45s;
}
.finish-list__swatch:nth-child(10) {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}
.finish-list__swatch:nth-child(11) {
    -webkit-animation-delay: 0.55s;
    animation-delay: 0.55s;
}
.finish-list__swatch:nth-child(12) {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}
.finish-list__swatch:nth-child(13) {
    -webkit-animation-delay: 0.65s;
    animation-delay: 0.65s;
}
.finish-list__swatch:nth-child(14) {
    -webkit-animation-delay: 0.7s;
    animation-delay: 0.7s;
}
.finish-list__swatch:nth-child(15) {
    -webkit-animation-delay: 0.75s;
    animation-delay: 0.75s;
}
.finish-list__swatch:nth-child(16) {
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}
.finish-list__swatch:nth-child(17) {
    -webkit-animation-delay: 0.85s;
    animation-delay: 0.85s;
}
.finish-list__swatch:nth-child(18) {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
}
.finish-list__swatch:nth-child(19) {
    -webkit-animation-delay: 0.95s;
    animation-delay: 0.95s;
}
.finish-list__swatch:nth-child(20) {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.applications-layout__grid {
    padding: 30px 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 30px;
}
@media (max-width: 1200px) {
    .applications-layout__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 20px 15px;
    }
}
@media (max-width: 480px) {
    .applications-layout__grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 15px;
    }
}
.applications-layout__card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}
.applications-layout__card:hover .applications-layout__card-img {
    transform: scale(1.05);
}
.applications-layout__card:hover .applications-layout__card-arrow {
    background: var(--color-black);
    color: var(--accent-color);
}
.applications-layout__card-image {
    aspect-ratio: 9/7;
    width: 100%;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}
.applications-layout__card-img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    transition: transform 0.4s ease;
}
.applications-layout__card-arrow {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 46px;
    height: 46px;
    background: var(--accent-color);
    color: var(--color-white);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}
.applications-layout__card-arrow svg {
    width: 26px;
    height: 26px;
}
@media (max-width: 768px) {
    .applications-layout__card-arrow {
        width: 28px;
        height: 28px;
        margin-left: 12px;
    }
    .applications-layout__card-arrow svg {
        width: 14px;
        height: 14px;
    }
}
.applications-layout__card-content {
    padding: 13px 20px 20px;
    flex: 1;
    display: flex;
    align-items: flex-start;
    min-height: 60px;
}
@media (max-width: 768px) {
    .applications-layout__card-content {
        padding: 13px 15px 15px;
        min-height: 50px;
    }
}
.applications-layout__card-title {
    font-family: var(--font-family-main);
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--color-black);
    margin: 0;
    line-height: 1.4;
    width: 100%;
}
@media (max-width: 768px) {
    .applications-layout__card-title {
        font-size: 13px;
        letter-spacing: 0.5px;
    }
}
@media (max-width: 480px) {
    .applications-layout__card-title {
        font-size: 12px;
    }
}

.related-products {
    padding: 40px 0;
    margin-top: 40px;
    background: var(--color-white);
    border-top: 1px solid #000;
}
@media (max-width: 768px) {
    .related-products {
        padding: 20px 0;
        margin-top: 20px;
    }
}
.related-products__container {
    width: 100%;
    margin: 0 auto;
    position: relative;
}
.related-products__header {
    margin-bottom: 50px;
}
@media (max-width: 768px) {
    .related-products__header {
        margin-bottom: 40px;
    }
}
@media (max-width: 480px) {
    .related-products__header {
        margin-bottom: 30px;
    }
}
.related-products__title {
    font-family: var(--font-family-main);
    font-size: 24px;
    font-weight: 600;
    color: var(--color-black);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}
@media (max-width: 768px) {
    .related-products__title {
        font-size: 22px;
    }
}
@media (max-width: 480px) {
    .related-products__title {
        font-size: 20px;
    }
}
.related-products__swiper-container {
    position: relative;
    overflow: hidden;
}
.related-products__swiper {
    padding-bottom: 60px;
}
.related-products__swiper.swiper {
    overflow: visible;
    position: relative;
}
@media (max-width: 768px) {
    .related-products__swiper {
        padding-bottom: 50px;
    }
}
.related-products__swiper .swiper-slide {
    height: auto;
    display: flex;
}
.related-products__swiper .swiper-slide .products-layout__card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.related-products__nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}
.related-products__nav-btn {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--color-white);
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: #666;
}
.related-products__nav-btn:hover {
    background: var(--accent-color);
    color: var(--color-white);
    border-color: var(--accent-color);
    transform: scale(1.05);
}
.related-products__nav-btn:active {
    transform: scale(0.95);
}
.related-products__nav-btn.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}
.related-products__nav-btn svg {
    width: 20px;
    height: 20px;
}
.related-products__nav-prev {
    left: 2px;
}
.related-products__nav-next {
    right: 2px;
}
.related-products__pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
}
@media (max-width: 480px) {
    .related-products__pagination {
        margin-top: 25px;
    }
}
.related-products__pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1;
}
.related-products__pagination .swiper-pagination-bullet:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}
.related-products__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--accent-color);
    transform: scale(1.2);
}

.related-products__swiper .swiper-slide {
    transition: all 0.3s ease;
}
.related-products__swiper .swiper-slide:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .related-products__swiper .swiper-scrollbar {
        background: rgba(0, 0, 0, 0.1);
        height: 4px;
        border-radius: 2px;
        margin-top: 20px;
    }
    .related-products__swiper .swiper-scrollbar .swiper-scrollbar-drag {
        background: var(--accent-color);
        border-radius: 2px;
    }
}

.related-products__loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    color: #666;
    font-family: var(--font-family-main);
}
.related-products__loading::after {
    content: '';
    width: 30px;
    height: 30px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--accent-color);
    border-radius: 50%;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
    margin-left: 15px;
}

@-webkit-keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@media (max-width: 1200px) {
    .related-products__swiper .swiper-slide {
        width: calc(50% - 10px);
    }
}
@media (max-width: 768px) {
    .related-products__swiper .swiper-slide {
        width: calc(100% - 20px);
    }
}
.downloads-form__step-1 {
    background-color: var(--accent-background-color);
}
.downloads-form__step-1-content {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 30px var(--container-padding);
    display: flex;
    flex-wrap: wrap;
    -moz-column-gap: 25px;
    column-gap: 25px;
    row-gap: 20px;
    align-items: center;
    justify-content: center;
}
.downloads-form__step-1-content .pretty .state label {
    text-indent: 1.8em;
    font-size: 14px;
}
.downloads-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    width: 100%;
}
.downloads-placeholder__title {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    margin-top: 20vh;
    text-transform: uppercase;
}
.downloads-placeholder__description {
    font-size: 1rem;
    color: #666;
    text-align: center;
    max-width: 600px;
    margin-bottom: 1rem;
}
.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: var(--page-max-width);
    margin: 0 auto;
}

.agent-locator {
    padding: 0;
}
.agent-locator__container {
    max-width: 100%;
    margin: 0 auto;
}
.agent-locator__content {
    display: flex;
    height: 700px;
    position: relative;
}
@media (max-width: 768px) {
    .agent-locator__content {
        height: 500px;
    }
}
.agent-locator__sidebar {
    width: 400px;
    background: var(--accent-background-color);
    border-right: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
}
@media (max-width: 1024px) {
    .agent-locator__sidebar {
        width: 350px;
    }
}
@media (max-width: 768px) {
    .agent-locator__sidebar {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 320px;
        border-right: none;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
    }
    .agent-locator__sidebar.open {
        transform: translateX(0);
    }
}
@media (max-width: 480px) {
    .agent-locator__sidebar {
        width: 280px;
    }
}
@media (min-width: 769px) {
    .agent-locator__sidebar.collapsed {
        width: 0;
        border-right: none;
        overflow: hidden;
    }
}
.agent-locator__search {
    position: relative;
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
    flex-shrink: 0;
}
@media (max-width: 480px) {
    .agent-locator__search {
        padding: 15px;
    }
}
.agent-locator__search-input {
    width: 100%;
    padding: 12px 40px 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-family-main);
    font-size: 14px;
    color: var(--color-black);
    background: var(--color-white);
    transition: all 0.3s ease;
}
.agent-locator__search-input::-moz-placeholder {
    color: #999;
}
.agent-locator__search-input:-ms-input-placeholder {
    color: #999;
}
.agent-locator__search-input::placeholder {
    color: #999;
}
.agent-locator__search-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(255, 133, 51, 0.1);
}
.agent-locator__search-btn {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}
.agent-locator__search-btn:hover {
    color: var(--accent-color);
}
@media (max-width: 480px) {
    .agent-locator__search-btn {
        right: 20px;
    }
}
.agent-locator__results-count {
    padding: 15px 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    font-family: var(--font-family-main);
    font-size: 14px;
    color: #666;
    flex-shrink: 0;
}
@media (max-width: 480px) {
    .agent-locator__results-count {
        padding: 12px 15px;
    }
}
.agent-locator__count {
    font-weight: 600;
    color: var(--accent-color);
}
.agent-locator__locations {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}
.agent-locator__location {
    padding: 20px;
    border-bottom: 1px solid #d6d6d6;
    cursor: pointer;
    transition: all 0.3s ease;
}
.agent-locator__location:hover {
    background: #f8f9fa;
}
.agent-locator__location:last-child {
    border-bottom: none;
}
@media (max-width: 480px) {
    .agent-locator__location {
        padding: 15px;
    }
}
.agent-locator__location-name {
    font-family: var(--font-family-main);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-black);
    margin: 0 0 8px 0;
}
@media (max-width: 480px) {
    .agent-locator__location-name {
        font-size: 15px;
    }
}
.agent-locator__location-address {
    font-family: var(--font-family-main);
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    margin: 0 0 12px 0;
}
.agent-locator__location-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.agent-locator__location-phone {
    font-family: var(--font-family-main);
    font-size: 14px;
    color: var(--color-black);
    text-decoration: none;
}
.agent-locator__location-phone:hover {
    color: var(--accent-color);
}
.agent-locator__location-actions {
    display: flex;
    gap: 5px;
    margin-top: 12px;
    flex-wrap: wrap;
}
.agent-locator__location-btn {
    padding: 4px 9px;
    border: 1px solid var(--accent-color);
    background: transparent;
    color: var(--accent-color);
    font-family: var(--font-family-main);
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 3px;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.agent-locator__location-btn:hover {
    background: var(--accent-color);
    color: var(--color-white);
}
.agent-locator__location-btn--primary {
    background: var(--accent-color);
    color: var(--color-white);
}
.agent-locator__location-btn--primary:hover {
    background: #e67e22;
}
.agent-locator__no-results {
    padding: 40px 20px;
    text-align: center;
    color: #666;
    font-family: var(--font-family-main);
    font-size: 14px;
}
.agent-locator__map-container {
    flex: 1;
    position: relative;
    min-height: 400px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
    .agent-locator__map-container {
        width: 100%;
    }
}
@media (min-width: 769px) {
    .agent-locator__sidebar.collapsed + .agent-locator__map-container {
        flex: none;
        width: 100%;
    }
}
.agent-locator__map {
    width: 100%;
    height: 100%;
    z-index: 1;
}
.agent-locator__sidebar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
@media (min-width: 769px) {
    .agent-locator__sidebar-overlay {
        display: none;
    }
}
.agent-locator__sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}
.agent-locator__controls {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1002;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.agent-locator__control-btn {
    width: 40px;
    height: 40px;
    background: var(--color-white);
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.agent-locator__control-btn:hover {
    background: var(--accent-color);
    color: var(--color-white);
    border-color: var(--accent-color);
}
.agent-locator__control-btn:active {
    transform: translateY(1px);
}
@media (min-width: 769px) {
    .agent-locator__sidebar.collapsed ~ .agent-locator__map-container .agent-locator__sidebar-toggle svg {
        transform: scaleX(-1);
    }
}
@media (max-width: 768px) {
    .agent-locator__sidebar.open ~ .agent-locator__map-container .agent-locator__sidebar-toggle {
        background: var(--accent-color);
        color: var(--color-white);
        border-color: var(--accent-color);
    }
    .agent-locator__sidebar.open ~ .agent-locator__map-container .agent-locator__sidebar-toggle svg {
        transform: scaleX(-1);
    }
}

.leaflet-popup-content-wrapper {
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.leaflet-popup-content {
    margin: 15px;
    font-family: var(--font-family-main);
}
.leaflet-popup-content h4 {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-black);
}
.leaflet-popup-content p {
    margin: 0 0 8px 0;
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}
.leaflet-popup-content p:last-child {
    margin-bottom: 0;
}
.leaflet-popup-content a {
    color: var(--accent-color);
    text-decoration: none;
}
.leaflet-popup-content a:hover {
    text-decoration: underline;
}

.leaflet-popup-tip {
    background: var(--color-white);
}

.agent-locator__loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    color: #666;
    font-family: var(--font-family-main);
}
.agent-locator__loading::after {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid var(--accent-color);
    border-radius: 50%;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
    margin-left: 10px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.leaflet-container {
    transition: none;
}

.cta-block {
    --cta-block-padding: 120px;
    --cta-block-overlay-opacity: 0.4;
}
@media (max-width: 1200px) {
    .cta-block {
        --cta-block-padding: 100px;
    }
}
@media (max-width: 768px) {
    .cta-block {
        --cta-block-padding: 80px;
    }
}
@media (max-width: 480px) {
    .cta-block {
        --cta-block-padding: 60px;
    }
}

.cta-block {
    position: relative;
    padding: var(--cta-block-padding) 0;
    overflow: hidden;
    min-height: 560px;
    display: flex;
    align-items: center;
}
@media (max-width: 1200px) {
    .cta-block {
        min-height: 480px;
    }
}
@media (max-width: 768px) {
    .cta-block {
        min-height: 350px;
    }
}
@media (max-width: 480px) {
    .cta-block {
        min-height: 300px;
    }
}
.cta-block__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.cta-block__bg-img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}
.cta-block__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, var(--cta-block-overlay-opacity));
    z-index: 2;
}
.cta-block__container {
    position: relative;
    z-index: 3;
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
}
.cta-block__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .cta-block__content {
        max-width: 100%;
    }
}
.cta-block__subtitle {
    font-family: var(--font-family-main);
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 20px 0;
}
@media (max-width: 1200px) {
    .cta-block__subtitle {
        font-size: 20px;
        margin-bottom: 18px;
    }
}
@media (max-width: 1024px) {
    .cta-block__subtitle {
        font-size: 18px;
        letter-spacing: 1.5px;
        margin-bottom: 16px;
    }
}
@media (max-width: 768px) {
    .cta-block__subtitle {
        font-size: 13px;
        letter-spacing: 1.5px;
        margin-bottom: 15px;
    }
}
@media (max-width: 480px) {
    .cta-block__subtitle {
        font-size: 12px;
        letter-spacing: 1px;
        margin-bottom: 12px;
    }
}
.cta-block__title {
    font-family: var(--font-family-accent);
    font-size: 55px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-white);
    margin: 0 0 30px 0;
    line-height: 1.2;
}
@media (max-width: 1200px) {
    .cta-block__title {
        font-size: 42px;
        margin-bottom: 25px;
    }
}
@media (max-width: 768px) {
    .cta-block__title {
        font-size: 36px;
        letter-spacing: 1.5px;
        margin-bottom: 20px;
    }
}
@media (max-width: 480px) {
    .cta-block__title {
        font-size: 28px;
        letter-spacing: 1px;
        margin-bottom: 18px;
    }
}
.cta-block__text {
    font-family: var(--font-family-main);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-white);
    margin: 0;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .cta-block__text {
        font-size: 15px;
        letter-spacing: 0.5px;
    }
}
@media (max-width: 480px) {
    .cta-block__text {
        font-size: 14px;
        letter-spacing: 0.5px;
        line-height: 1.5;
    }
}
.cta-block__link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}
.cta-block__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}
.cta-block__link:hover {
    color: var(--color-white);
}
.cta-block__link:hover::after {
    width: 100%;
}
@media (max-width: 480px) {
    .cta-block__link {
        display: block;
        margin-top: 5px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.cta-block__subtitle {
    -webkit-animation: fadeInUp 0.8s ease 0.2s both;
    animation: fadeInUp 0.8s ease 0.2s both;
}
.cta-block__title {
    -webkit-animation: fadeInUp 0.8s ease 0.4s both;
    animation: fadeInUp 0.8s ease 0.4s both;
}
.cta-block__text {
    -webkit-animation: fadeInUp 0.8s ease 0.6s both;
    animation: fadeInUp 0.8s ease 0.6s both;
}

@media (max-width: 768px) {
    .cta-block__subtitle,
    .cta-block__title,
    .cta-block__text {
        -webkit-animation: none;
        animation: none;
    }
}
.cta-block--light-overlay {
    --cta-block-overlay-opacity: 0.4;
}
.cta-block--dark-overlay {
    --cta-block-overlay-opacity: 0.8;
}
.cta-block--compact {
    --cta-block-padding: 80px;
}
@media (max-width: 768px) {
    .cta-block--compact {
        --cta-block-padding: 60px;
    }
}
@media (max-width: 480px) {
    .cta-block--compact {
        --cta-block-padding: 40px;
    }
}

/* [MAIN CSS START] */
.relative {
    position: relative;
}

.main-container--margin {
    margin-top: 175px;
}

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

.text-block {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    line-height: 150%;
}
.text-block__text {
    margin-top: 30px;
}
.text-block__links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}
.text-block__links > a {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 10px;
    border: 1px solid var(--color-name-200, #9daac1);
    color: #000;
    transition: 0.2s ease;
}
.text-block__links > a.active {
    background-color: var(--color-name-200, #9daac1);
}
.text-block__links > a:hover {
    background-color: var(--color-name-200, #9daac1);
}

.container {
    margin: 0 auto;
    max-width: var(--page-max-width);
}
.container.container--block {
    display: block;
    margin: 0;
}
.container--mar-b-80 {
    margin-bottom: var(--container-margin-bottom);
}

.pa-inline {
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.pa-block {
    padding-top: 60px;
    padding-bottom: 60px;
}

.pa-before-footer {
    padding-bottom: 200px;
}

.bg-accent {
    background-color: var(--accent-background-color);
}

.bg-accent-2 {
    background-color: var(--accent-background-color-2);
}

.bg-accent-3 {
    background-color: var(--accent-background-color-3);
}

.bg-accent-4 {
    background-color: #005ea610;
}

input.error,
select.error,
textarea.error {
    border-color: var(--input-error-border-color);
    background-color: var(--input-error-background-color);
}

input,
select,
textarea {
    border: none;
    padding: 15px;
    width: 100%;
}

input:disabled,
select:disabled,
textarea:disabled {
    background-color: #eee;
    border: 1px solid #bdbdbd;
    opacity: 0.8;
}

.title {
    color: #000;
    font-size: clamp(32px, 3vw, 46px);
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    letter-spacing: 0.92px;
}
.title > span {
    color: var(--accent-color);
}
.title--center {
    text-align: center;
}
.title--large {
    font-size: clamp(40px, 2vw, 52px);
}
.title--small {
    font-weight: 600;
    font-size: clamp(20px, 2vw, 24px);
    margin-bottom: 5px;
}
.title--mar {
    margin-bottom: 40px;
}

.fc-accent {
    color: var(--accent-color);
}

.fc-white {
    color: var(--color-white);
}

.fc-black {
    color: var(--color-black);
}

.subtitle {
    color: var(--accent-color-2);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nowrap {
    white-space: nowrap;
}

.back-btn {
    display: flex;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    align-items: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
    color: #61769b;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.2s ease;
}
.back-btn:hover {
    color: var(--accent-color-2);
}

.btn {
    display: inline-block;
    border: 1px solid transparent;
    color: #fff;
    background: var(--accent-color-2);
    padding: 12px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1.12px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn:hover {
    color: #fff;
    background: var(--accent-color);
    box-shadow: 0 0 5px -2px #464646;
}
.btn.btn--small {
    padding: 5px 5px !important;
    font-size: 12px;
    text-transform: capitalize;
}

.btn.btn--flex {
    display: flex;
    align-items: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    -moz-column-gap: 10px;
    column-gap: 10px;
}

.btn.btn--transparent {
    border: 1px solid #fff;
    color: #fff;
    background: transparent;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}
.btn.btn--transparent:hover {
    background: var(--accent-color);
    color: var(--color-white);
    box-shadow: 0 5px 15px -2px rgba(0, 0, 0, 0.513);
}

.btn.btn--color-black,
.btn.btn--transparent.btn--color-black {
    color: #000;
    border-color: #000;
}
.btn.btn--color-black:hover,
.btn.btn--transparent.btn--color-black:hover {
    background: var(--accent-dark-color);
    color: #000;
}

.btn.btn--light {
    border: 1px solid var(--accent-color);
    color: #fff;
    background: var(--accent-color);
    padding: 15px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}
.btn.btn--light:hover {
    background: var(--accent-color-2);
    color: var(--color-white);
    border: 1px solid var(--accent-color-2);
    box-shadow: 0 0 5px -2px #464646;
}

.btn.btn--light2 {
    border: 1px solid var(--accent-color-3);
    color: #000;
    background: var(--accent-color-3);
    padding: 15px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}
.btn.btn--light2:hover {
    background: var(--accent-color);
    color: var(--color-white);
    border: 1px solid var(--accent-color);
    box-shadow: 0 0 5px -2px #464646;
}

.btn.btn--disabled {
    background: #ccc;
    color: #fff;
    border: 1px solid #ccc;
    pointer-events: none;
    cursor: not-allowed;
}

.btn.btn--loading {
    position: relative;
    pointer-events: none;
}
.btn.btn--loading:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1em;
    height: 1em;
    -webkit-animation: load6 1.7s infinite ease, round 1.7s infinite ease;
    animation: load6 1.7s infinite ease, round 1.7s infinite ease;
}
.btn.btn--loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background-color: inherit;
}

@-webkit-keyframes load6 {
    0% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em,
            0 -0.83em 0 -0.477em;
    }
    5%,
    95% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em,
            0 -0.83em 0 -0.477em;
    }
    10%,
    59% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em,
            -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
    }
    20% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em,
            -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
    }
    38% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em,
            -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
    }
    100% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em,
            0 -0.83em 0 -0.477em;
    }
}
@keyframes load6 {
    0% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em,
            0 -0.83em 0 -0.477em;
    }
    5%,
    95% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em,
            0 -0.83em 0 -0.477em;
    }
    10%,
    59% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em,
            -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
    }
    20% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em,
            -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
    }
    38% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em,
            -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
    }
    100% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em,
            0 -0.83em 0 -0.477em;
    }
}
@-webkit-keyframes round {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
@keyframes round {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
.line-clamp {
    display: block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    position: relative;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.line-clamp-1 {
    -webkit-line-clamp: 1;
    height: 1.2em;
}

.line-clamp-2 {
    -webkit-line-clamp: 2;
    height: 2.4em;
}

.line-clamp-3 {
    -webkit-line-clamp: 3;
    height: 3.6em;
}

.line-clamp-4 {
    -webkit-line-clamp: 4;
    height: 4.8em;
}

.line-clamp-5 {
    -webkit-line-clamp: 5;
    height: 6em;
}

/* End required CSS. */
/* [Pretty checkbox adjustments] */
.pretty {
    white-space: normal;
}
.pretty .state.p-padding label {
    padding-left: 31px;
}
.pretty .state label {
    text-indent: 0;
}
.pretty .state label:after,
.pretty .state label:before {
    top: 0;
    background-color: #fff;
    border-radius: 3px;
}
.pretty input:checked ~ .state.p-primary label:after {
    background-color: var(--accent-color) !important;
}
.pretty.p-default input:checked ~ .state label:after {
    background-color: var(--accent-color) !important;
}

.divider {
    border: none;
    border-bottom: 1px solid #bdbdbd;
}

.select2.select2-container .select2-choice {
    padding: 5px 10px;
}

.select2-container--default .select2-selection--single {
    border: none;
    height: 100%;
    padding: 15px;
}

.select2-container--default .select2-selection--single.select2--small {
    padding: 11px 15px;
}

.select2-container--default .select2-selection--single.select2--bordered {
    border: 1px solid #bdbdbd;
    border-radius: 0;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0;
    font-size: 14px;
    line-height: 1;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    background-image: linear-gradient(#e0e0e0, #e0e0e0);
    width: 28px;
    height: 100%;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    right: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #222222 #222222 #222222 #222222;
    border: 1px solid #222222;
    border-width: 0px 2px 2px 0px;
    width: 8px;
    height: 8px;
    margin: 0;
    position: relative;
    top: unset;
    left: unset;
    transform: rotate(45deg);
    transition: 0.3s ease;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: #222222 #222222 #222222 #222222;
    border: 1px solid #222222;
    border-width: 0px 2px 2px 0px;
    width: 8px;
    height: 8px;
    margin: 0;
    position: relative;
    top: unset;
    left: unset;
    transform: rotate(-135deg);
    transition: 0.3s ease;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    -moz-column-gap: 20px;
    column-gap: 20px;
    list-style: none;
}
.breadcrumbs.breadcrumbs--space-top {
    padding-top: 60px;
}
.breadcrumbs.breadcrumbs--space-bottom {
    padding-bottom: 15px;
}
.breadcrumbs li {
    display: flex;
    align-items: center;
    position: relative;
}
.breadcrumbs li:not(:last-child)::after {
    content: '/';
    font-size: 12px;
    color: #4f4f4f;
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    width: 5px;
    height: 100%;
}
.breadcrumbs li:last-child * {
    font-weight: 600;
}
.breadcrumbs a,
.breadcrumbs p {
    font-weight: 400;
    font-size: 12px;
    text-align: right;
    letter-spacing: 0.06px;
    color: #000;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    -moz-column-gap: 10px;
    column-gap: 10px;
    row-gap: 10px;
    padding: 50px;
}
.pagination .pagination__item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background-color: #f2f2f2;
    color: #828282;
    transition: 0.3s ease;
}
.pagination .pagination__item:hover {
    background-color: var(--accent-color-4);
    color: #fff;
}
.pagination .pagination__item.pagination__item--active {
    background-color: var(--accent-color-4);
    color: #fff;
}

.not-found-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}
.not-found-page__title {
    font-weight: 500;
    font-size: clamp(25px, 4vw, 38px);
    color: var(--accent-color-4);
    line-height: 100%;
    margin-bottom: 15px;
    padding-left: 20px;
    line-height: 100%;
    position: relative;
}
.not-found-page__subtitle {
    font-weight: 400;
    font-size: 18px;
    color: #000000;
    margin-bottom: 30px;
}

/* [MAIN CSS END] */
/* [TOOLTIPS START] */
.tippy-box {
    background-color: #fff;
    color: #000;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.tippy-box__inner {
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 25px;
}
.tippy-box__image {
    margin-bottom: 15px;
}
.tippy-box__text {
    text-align: center;
}

.tippy-arrow {
    color: #fff;
}

.tippy-box[data-placement^='left'] > .tippy-arrow:before {
    border-width: 14px 0 14px 14px;
    right: -13px;
    filter: drop-shadow(4px 0px 5px rgba(0, 0, 0, 0.1));
}

.tippy-box[data-placement^='right'] > .tippy-arrow:before {
    left: -13px;
    border-width: 14px 14px 14px 0;
    filter: drop-shadow(-4px 0px 5px rgba(0, 0, 0, 0.1));
}

.tippy-box[data-placement^='top'] > .tippy-arrow:before {
    border-width: 14px 14px 0;
    bottom: -13px;
    filter: drop-shadow(0px 4px 5px rgba(0, 0, 0, 0.1));
}

.tippy-box[data-placement^='bottom'] > .tippy-arrow:before {
    border-width: 0 14px 14px;
    top: -13px;
    filter: drop-shadow(0px -4px 5px rgba(0, 0, 0, 0.1));
}

/* [TOOLTIPS END] */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
}

.video-wrapper.video-wrapper--sm {
    max-width: 950px;
    margin: 0 auto;
    padding-bottom: 40%;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.badge {
    display: inline-block;
    padding: 5px 5px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
    background-color: var(--accent-color);
    margin-left: 10px;
}

.about-2col__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 50px;
    column-gap: 50px;
    row-gap: 40px;
    line-height: 150%;
}
.about-2col__content .title {
    grid-column: 1/-1;
}
@media (max-width: 1200px) {
    .about-2col__content {
        grid-template-columns: 100%;
    }
}

.accordion {
    max-width: 1600px;
    margin: 0 auto;
}
.accordion .pa-block {
    padding-top: 0;
}
.accordion .ui-accordion .ui-accordion-header {
    background-color: transparent;
    border: 1px solid #979696;
    border-radius: 0;
    margin-top: 10px;
    padding: 15px;
    font-size: 20px;
    color: #000;
}
.accordion .ui-accordion .ui-accordion-header .ui-icon {
    margin-right: 10px;
}
.accordion .ui-accordion .ui-accordion-content {
    border: 0;
    margin: 0 auto;
    background-color: transparent;
    padding: 1em 0;
}
.accordion .ui-accordion .ui-accordion-content p {
    margin-bottom: 15px;
}
.accordion .ui-accordion .ui-accordion-content ul li {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
}
.accordion .ui-accordion .ui-accordion-content img {
    display: block;
    margin: 0 auto;
    margin-bottom: 15px;
}
@media (max-width: 700px) {
    .accordion .ui-accordion .ui-accordion-content {
        max-width: 100%;
        padding: 1em 5px;
    }
}

.product-layout {
    background-color: #f5f7fc;
}
.product-layout.product-layout--price-increase .product-layout__grid-side {
    background-color: #f5f7fc;
}
.product-layout__grid {
    display: grid;
    grid-template-columns: 500px calc(100% - 500px);
}
.product-layout__grid-side {
    background-color: #fff;
    padding: 40px 55px 40px var(--container-padding);
}
.product-layout__grid-main {
    padding: 40px var(--container-padding) 40px 55px;
}
@media (max-width: 1300px) {
    .product-layout__grid {
        grid-template-columns: 300px calc(100% - 300px);
    }
    .product-layout__grid-side {
        padding: 40px 25px 40px var(--container-padding);
    }
    .product-layout__grid-main {
        padding: 40px var(--container-padding) 40px 25px;
    }
}
@media (max-width: 867px) {
    .product-layout__grid {
        grid-template-columns: 100%;
    }
    .product-layout__grid-side {
        padding: 40px var(--container-padding) 40px var(--container-padding);
        max-width: 100%;
    }
    .product-layout__grid-side .side-menu {
        width: 100%;
        max-width: 100%;
    }
    .product-layout__grid-main {
        padding: 40px var(--container-padding) 40px var(--container-padding);
    }
}

.table.table--products input {
    padding: 5px 10px;
}
.table.table--products .old-price {
    color: var(--accent-color-2);
    text-decoration: line-through;
    margin-right: 10px;
}
.table.table--products .new-price {
    color: var(--accent-color);
}
.table.table--products .call-for-price {
    color: #000;
    text-decoration: underline;
}

.qty-box {
    display: flex;
    align-items: center;
}

.qty-box input {
    width: 70px;
    height: 30px;
    text-align: center;
    border: 1px solid #ddd;
    background-color: transparent;
}

.qty-box button {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    background-color: transparent;
    color: #000;
    cursor: pointer;
    transition: 0.2s ease;
}

.qty-box button:hover {
    background-color: var(--accent-color);
    color: #fff;
}

.qty-box > button:nth-child(1) {
    border-right: none;
}

.qty-box > button:nth-child(3) {
    border-left: none;
}

.blog-splash__layout {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 30px;
}
.blog-splash__item {
    background-color: var(--accent-background-color);
    color: #000;
    transition: 0.2s ease-in-out;
}
.blog-splash__item-media {
    width: 100%;
    height: 0;
    padding-top: 75%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}
.blog-splash__item-media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.blog-splash__item-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
.blog-splash__item-date {
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    /* 133.333% */
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    -webkit-text-decoration-style: solid;
    text-decoration-style: solid;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}
.blog-splash__item-title {
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
}
.blog-splash__item-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 9;
    overflow: hidden;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}
.blog-splash__item:hover {
    background-color: var(--accent-color-2);
    color: #fff;
}
.blog-splash__item:hover .blog-splash__item-media {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.news-article__header {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    margin-bottom: 40px;
}

.news-article__header-back {
    display: flex;
    align-items: center;
    -moz-column-gap: 5px;
    column-gap: 5px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    color: #696767;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    transition: 0.2s ease;
}

.news-article__header-back:hover {
    color: var(--accent-color-2);
}

.news-article__header-title {
    color: #333;
    font-size: clamp(25px, 3vw, 40px);
    font-style: normal;
    font-weight: 700;
    letter-spacing: -1.6px;
}

.news-article__header-date {
    display: flex;
    align-items: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
    color: #000;
    font-size: 14px;
    font-style: italic;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.28px;
}

.news-article__footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 70px;
    margin-top: 50px;
    border-top: 1px solid #000;
}

.news-article__footer-prev {
    max-width: 600px;
}

.news-article__footer-prev .news-article__footer-link {
    display: grid;
    grid-template-columns: 15px 1fr;
    -moz-column-gap: 30px;
    column-gap: 30px;
}

.news-article__footer-prev .news-article__footer-link > div:nth-child(1) {
    display: flex;
    align-items: center;
}

.news-article__footer-prev .news-article__footer-link > div:nth-child(2) > :nth-child(1) {
    color: #000;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    text-transform: uppercase;
}

.news-article__footer-prev .news-article__footer-link > div:nth-child(2) > :nth-child(2) {
    color: #000;
    font-size: 14px;
    font-style: italic;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.28px;
    margin-top: 15px;
}

.news-article__footer-next {
    max-width: 600px;
    margin-left: auto;
}

.news-article__footer-next .news-article__footer-link {
    display: grid;
    grid-template-columns: 1fr 15px;
    -moz-column-gap: 30px;
    column-gap: 30px;
}

.news-article__footer-next .news-article__footer-link > div:nth-child(2) {
    display: flex;
    align-items: center;
}

.news-article__footer-next .news-article__footer-link > div:nth-child(1) > :nth-child(1) {
    color: #000;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    text-transform: uppercase;
    text-align: right;
}

.news-article__footer-next .news-article__footer-link > div:nth-child(1) > :nth-child(2) {
    color: #000;
    font-size: 14px;
    font-style: italic;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.28px;
    margin-top: 15px;
    text-align: right;
}

@media (max-width: 768px) {
    .news-article__footer {
        grid-template-columns: 1fr;
        row-gap: 40px;
        padding-top: 50px;
    }

    .news-article__footer-prev,
    .news-article__footer-next {
        max-width: 100%;
        margin-left: 0;
    }
}
.search-results {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 20px;
    margin-bottom: 30px;
}

@media (max-width: 1000px) {
    .search-results {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .search-results {
        column-gap: 5px;
        row-gap: 5px;
    }
}

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

.search-result {
    background-color: #f6f4f5;
    padding: 15px;
    margin: 5px;
}

.search-result__type {
    background: var(--color-black);
    color: var(--color-white);
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: inline-block;
}

.search-result__title {
    margin-bottom: 15px;
    text-align: center;
}

.search-result__link a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 4px 9px;
    border: 1px solid var(--accent-color);
    background: transparent;
    color: var(--accent-color);
    font-family: var(--font-family-main);
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 3px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.search-result__link a:hover {
    background: var(--accent-color);
    color: var(--color-white);
}
