@charset "UTF-8";
@font-face {
    font-family: futuraFont;
    src: url(/fonts/Futura\ Lt\ BT.ttf);
}
:root {
    --accent-background: #f5f2ee;
    --accent-color: #997c5e;

    --font-family-accent: 'Hind', sans-serif;
    --font-family-common: 'Roboto', sans-serif;
}
/* === BASIC TAGS STYLES === */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: var(--font-family-common);
}

/* === HEADER UTILITY BAR === */
.header-utility-bar {
    background-color: #fff;
    /* border-bottom: 1px solid #e5e5e5; */
    padding: 10px 0;
}

.header-utility-content {
    margin: 0 auto;
    padding: 0 130px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 1700px) {
    .header-utility-content {
        padding: 0 50px;
    }
}

.header-utility-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-utility-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #997c5e;
    font-size: 14px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.header-utility-link:hover {
    opacity: 0.7;
}

.header-utility-divider {
    color: #997c5e;
    font-size: 14px;
}

.header-utility-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

#google_translate_element {
    display: inline-block;
}

/* Account Dropdown Menu */
.header-account-dropdown {
    position: relative;
}

.header-account-trigger {
    cursor: pointer;
}

.header-account-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 5px;
    background-color: #fff;
    border: 1px solid #e5e5e5;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    min-width: 150px;
    z-index: 1000;
    padding-top: 5px;
}

/* Add invisible bridge to prevent menu from hiding */
.header-account-menu::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 0;
    right: 0;
    height: 5px;
    background: transparent;
}

.header-account-dropdown:hover .header-account-menu {
    display: block;
}

.header-account-menu-item {
    display: block;
    padding: 10px 20px;
    color: #333;
    font-size: 14px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.header-account-menu-item:last-child {
    border-bottom: none;
}

.header-account-menu-item:hover {
    background-color: #f5f2ee;
    color: #997c5e;
}

/* Mobile Utility - Hidden on desktop */
.header-mobile-utility {
    display: none;
}

/* Hide account/cart menu items on larger screens */
.responsive-menu-account-item,
.responsive-menu-cart-item {
    display: none;
}

@media (max-width: 1070px) {
        /* Show account and cart in responsive menu */
    .responsive-menu-account-item,
    .responsive-menu-cart-item {
        display: block;
    }

    /* Style for account/cart items in mobile menu */
    .responsive-menu-account-item a,
    .responsive-menu-cart-item a {
        display: flex;
        align-items: center;
    }
}
@media (max-width: 1024px) {
    /* Hide desktop utility bar */
    .header-utility-bar {
        display: none;
    }

    /* Show mobile utility elements in header-nav */
    .header-mobile-utility {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-left: auto;
    }

    /* Mobile Google Translate */
    #google_translate_element_mobile {
        display: flex;
        align-items: center;
    }

    /* Mobile account dropdown - icon only */
    .header-mobile-utility .header-account-trigger span {
        display: none; /* Hide "My Account" text on mobile */
    }

    /* Center dropdown menu on mobile for easier access */
    .header-mobile-utility .header-account-menu {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    /* Show divider between account and cart on mobile */
    .header-mobile-utility .header-account-dropdown::after {
        content: '|';
        color: #997c5e;
        margin-left: 15px;
        font-size: 14px;
    }

    /* Mobile cart icon */
    .header-mobile-utility .header-cart-icon {
        position: relative;
        display: flex;
        align-items: center;
    }

    /* Hamburger menu is last */
    .responsive-menu-trigger {
        display: block;
        margin-left: 15px !important;
    }
}

@media (max-width: 650px) {
    /* Hide only account and cart icons on very small screens, keep Google Translate visible */
    .header-mobile-utility .header-account-dropdown,
    .header-mobile-utility .header-cart-link,
    .header-mobile-utility::after {
        display: none !important;
    }

    /* Keep Google Translate visible */
    .header-mobile-utility {
        display: flex !important;
    }

    .google-translate-mobile-wrapper {
        position: relative;
        display: block;
    }
}

html {
    height: 100%;
    background-color: #fff;
}

body {
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
    overflow-y: scroll;
    margin: 0 auto;
    padding: 0;
    background-color: #fdfdfd;
    max-width: 1920px;
    -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
}

img {
    border: none;
    max-width: 100%;
}

a {
    text-decoration: none;
}

p {
    color: #212121;
    line-height: 1.33;
}

.tac {
    text-align: center;
}

.tac li {
    text-align: left;
}

/* === /BASIC ELEMENTS STYLES === */
/* === LAYOUT UTILITY STYLES === */
.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.margin-auto {
    margin-left: auto;
    margin-right: auto;
}

.hidden {
    display: none;
}

.f-left {
    float: left;
}

.f-right {
    float: right;
}

.clear:after {
    content: '';
    visibility: hidden;
    display: block;
    height: 0;
    margin: 0;
    clear: both;
}

.container {
    padding-left: 12vw;
    padding-right: 12vw;
}

/* === /LAYOUT UTILITY STYLES === */
/* === TEXT UTILITY STYLES === */
.text-center {
    text-align: center;
}

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

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

.caps {
    text-transform: uppercase;
}

/* === /TEXT UTILITY STYLES === */
/* === COMMON ELEMENTS STYLES === */
@-webkit-keyframes bounce {
    0% {
        -webkit-transform: translate(-85px, 0);
        transform: translate(-85px, 0);
    }

    4% {
        -webkit-transform: translate(-85px, 5px);
        transform: translate(-85px, 5px);
    }

    7% {
        -webkit-transform: translate(-85px, 0);
        transform: translate(-85px, 0);
    }

    10% {
        -webkit-transform: translate(-85px, 5px);
        transform: translate(-85px, 5px);
    }

    15% {
        -webkit-transform: translate(-85px, 0);
        transform: translate(-85px, 0);
    }
}

@keyframes bounce {
    0% {
        -webkit-transform: translate(-85px, 0);
        transform: translate(-85px, 0);
    }

    4% {
        -webkit-transform: translate(-85px, 5px);
        transform: translate(-85px, 5px);
    }

    7% {
        -webkit-transform: translate(-85px, 0);
        transform: translate(-85px, 0);
    }

    10% {
        -webkit-transform: translate(-85px, 5px);
        transform: translate(-85px, 5px);
    }

    15% {
        -webkit-transform: translate(-85px, 0);
        transform: translate(-85px, 0);
    }
}

.inner-page-header,
.inner-page-header2 {
    min-height: 364px;
    width: 100%;
    background: #ccc no-repeat 100% 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}
.inner-page-header__video {
    position: relative;
    display: flex;
}

.inner-page-header__video-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* .inner-page-header2 {
    min-height: 450px;
    width: 100%;
    background: #fff no-repeat 50% 50%;
    background-size: cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 100px;
} */

.inner-page-header .iph-header1,
.inner-page-header .iph-header2,
.inner-page-header2 .iph-header3,
.inner-page-header2 .iph-header4 {
    font-family: var(--font-family-accent);
    font-weight: 300;
    font-size: clamp(22px, 3vw, 30px);
    letter-spacing: 0.1em;
    line-height: 100%;
    text-transform: uppercase;
    color: #ffffff;
    padding: 30px;
    border: 1px solid #ffffff;
}
.breadcrums {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 40px;
    padding: 0 5%;
}
.breadcrums a,
.breadcrums p {
    font-family: var(--font-family-accent);
    font-weight: 300;
    font-size: 20px;
    text-align: center;
    letter-spacing: 0.05em;
    color: #ffffff;
    position: relative;
    margin-right: 20px;
    transition: 0.3s ease;
}
.breadcrums a:hover {
    text-decoration: underline;
}
.breadcrums > *:not(:last-child)::after {
    content: '/';
    position: absolute;
    right: -10px;
    top: 0;
    width: 5px;
    height: 100%;
    color: #fff;
}

/* .inner-page-header .iph-header2 {
    margin-top: 0;
    text-shadow: 0 5px 13px rgba(0, 0, 0, 0.31);
    color: #ffffff;
    font-family: Oswald, sans-serif;
    font-size: 60px;
    font-weight: 400;
    letter-spacing: 18.07px;
    text-transform: uppercase;
}

.inner-page-header2 .iph-header3 {
    text-shadow: 0 5px 13px rgba(0, 0, 0, 0.31);
    color: #000;
    font-family: 'Lato', sans-serif;
    font-size: 30px;
    font-weight: 400;
    letter-spacing: 9px;
    text-transform: uppercase;
}

.inner-page-header2 .iph-header4 {
    margin: 0;
    text-shadow: 0 5px 13px rgba(0, 0, 0, 0.31);
    color: #000;
    font-family: Oswald, sans-serif;
    font-size: 60px;
    font-weight: 400;
    letter-spacing: 18.07px;
    text-transform: uppercase;
} */

.catalog-filters {
    background-color: var(--accent-background);
    padding: 50px 5% 50px 5%;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
}

.catalog-filters.menu-open {
    background-color: #e9e9e8;
    padding-bottom: 50px;
}

.catalog-filters.products-list {
    padding-bottom: 50px;
}

.catalog-filters #cf-menu-trigger {
    display: inline-block;
    padding: 25px 35px;
    background-color: #97816a;
    color: #ffffff;
    font-family: Oswald, sans-serif;
    font-size: 30px;
    font-weight: 300;
    letter-spacing: 1px;
    position: relative;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
}

.catalog-filters #cf-menu-trigger:after {
    content: '×';
    font-size: 40px;
    display: block;
    position: absolute;
    top: 24%;
    right: 25px;
    opacity: 0;
    -webkit-transition: opacity 0.25s;
    transition: opacity 0.25s;
}

.catalog-filters.menu-open #cf-menu-trigger {
    padding: 25px 65px 25px 35px;
}

.catalog-filters.menu-open #cf-menu-trigger:after {
    opacity: 1;
}

.catalog-filters .cf-body form {
    display: flex;
    column-gap: 25px;
    align-items: flex-start;
    justify-content: center;
}

.product-filters-form__filters {
    display: flex;
    flex-wrap: wrap;
    column-gap: 15px;
    row-gap: 10px;
}

.product-filters-form__filters .ms-parent {
    min-width: 200px;
    max-width: auto;
}

.catalog-filters .cf-body form > button {
    display: inline-block;
    border: 1px solid var(--accent-color);
    background-color: transparent;
    padding: 10px 25px;
    color: var(--accent-color);
    font-family: var(--font-family-common);
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    white-space: nowrap;
    /* margin: 0 20px 20px 0; */
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
    cursor: pointer;
}

.catalog-filters .cf-body form > button:hover {
    background-color: var(--accent-color);
    color: #ffffff;
}

.catalog-filters .cfb-breadcrumbs {
    margin-bottom: 30px;
}

.catalog-filters .cfb-breadcrumbs p {
    color: #231f20;
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-weight: 400;
}

.catalog-filters .cfb-breadcrumbs p a {
    display: inline-block;
    text-decoration: none;
    color: #231f20;
}

.catalog-filters .cfb-breadcrumbs p a:hover {
    text-decoration: underline;
    color: #97816a;
}

.catalog-filters .cf-header {
    color: #231f20;
    font-family: var(--font-family-accent);
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    /* margin-bottom: 30px; */
}

.catalog-filters .pf-grid {
    width: fit-content;
    display: grid;
    grid-template-columns: max-content max-content;
    align-items: center;
    margin: 0 auto;
    grid-gap: 25px;
}
.catalog-filters .pf-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    column-gap: 25px;
    row-gap: 15px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.catalog-filters .pfr-species-column {
    padding: 5px 20px 5px 0;
    border-right: 1px solid #d7d7d7;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-right: 20px;
    margin-bottom: 15px;
}

.catalog-filters .pfr-header {
    display: inline-block;
    margin-right: 25px;
    color: #757575;
    font-family: 'Lato', sans-serif;
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
}

.catalog-filters .pfr-species-label {
    cursor: pointer;
    display: inline-block;
    color: #b0a6a1;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    margin-top: 10px;
}

.catalog-filters .pfr-species-label:not(:last-child) {
    margin-right: 40px;
}

.catalog-filters .pfr-species-label input[type='checkbox'] {
    display: none;
}

.catalog-filters .pfr-species-label .pfr-species-img {
    display: inline-block;
    margin-right: 8px;
    width: 41px;
    height: 30px;
    background: #777 no-repeat center center;
    background-size: cover;
    position: relative;
}

.catalog-filters .pfr-species-label input[type='checkbox']:checked ~ .pfr-species-img:after {
    content: '✔';
    display: block;
    position: absolute;
    left: 14px;
    top: 6px;
    color: #fff;
    font-size: 20px;
}

.catalog-filters .pfr-collections-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding: 5px 0;
    margin-bottom: 15px;
}

.catalog-filters .pfr-label {
    cursor: pointer;
    display: inline-block;
    color: #b0a6a1;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    margin-top: 10px;
}

.catalog-filters .pfr-label:not(:last-child) {
    margin-right: 30px;
}

.catalog-filters .pfr-label input[type='checkbox'] {
    display: none;
}

.catalog-filters .pfr-label .pfr-checkbox-img {
    display: inline-block;
    margin-left: 8px;
    width: 16px;
    height: 16px;
    background: url('/images/icons/EmptyCheckbox.png') no-repeat center center;
    background-size: contain;
}

.catalog-filters .pfr-label input[type='checkbox']:checked ~ .pfr-checkbox-img {
    background-image: url('/images/icons/checkbox.png');
}

.catalog-filters .pfr-finish-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding: 5px 0;
    margin-bottom: 15px;
}

.catalog-filters .pfr-line {
    display: block;
    max-width: 1300px;
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
}

.catalog-filters .pfr-tabs {
    margin-bottom: 25px;
}

.catalog-filters .pfrt-clear {
    display: inline-block;
    border: 1px solid var(--accent-color);
    background-color: transparent;
    padding: 15px 25px;
    color: var(--accent-color);
    font-family: var(--font-family-common);
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    /* margin: 0 20px 20px 0; */
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
}

.catalog-filters .pfrt-clear:hover {
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.catalog-filters .pfrt-item {
    display: inline-block;
    background-color: #f3f4f6;
    padding: 20px 35px 15px 15px;
    color: #231f20;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 400;
    position: relative;
    margin-right: 10px;
}

.catalog-filters .pfrt-item:after {
    content: '×';
    position: absolute;
    right: 10px;
}

.catalog-filters .pfrc-submit {
    display: inline-block;
    border: 2px solid #252525;
    background: transparent;
    padding: 15px 45px;
    color: #000000;
    font-family: Oswald, sans-serif;
    font-size: 30px;
    font-weight: 300;
    line-height: 24px;
    letter-spacing: 2px;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
}

.catalog-filters .pfrc-submit:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

/* === /COMMON ELEMENTS STYLES === */
/* === HEADER === */
header {
    position: absolute;
    max-width: 1920px;
    margin: 0 auto;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    position: sticky;
    top: 0;
}

.header-nav {
    height: 60px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 0 130px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-nav .header-logo {
    position: absolute;
    top: 0;
    left: 130px;
    width: 231px;
    z-index: 12;
    transition: 0.3s ease;
}

.header-nav .h-hav {
    list-style: none;
    margin: 0;
    padding: 0;
    /* padding-right: 5%; */
    height: 100%;
}

.header-nav .h-nav-item {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: flex-end;
    -ms-flex-align: flex-end;
    align-items: flex-end;
    height: 100%;
}
.header-nav .h-nav-item--active .h-nav-link {
    border-top: 2px solid #997c5e;
}
.header-nav .h-nav-item:not(:last-child) {
    margin-right: 49px;
}

.header-nav .h-nav-link {
    display: inline;
    color: #2a2a2a;
    /* font-family: 'Lato', sans-serif; */
    font-family: var(--font-family-accent);
    font-size: clamp(12px, 3vw, 14px);
    font-weight: 400;
    padding: 10px 0 3px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    margin-bottom: 18px;
}

.header-nav .h-nav-link:after {
    content: '';
    display: block;
    position: absolute;
    bottom: -2px;
    left: 50%;
    right: 50%;
    height: 2px;
    background-color: #bdb2a6;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
}

.header-nav .h-nav-link:hover:after {
    left: 0;
    right: 0;
}

.header-nav .h-nav-link.active {
    color: #97816a;
}
.h-nav__search {
    position: absolute;
    top: 100%;
    right: 0;
    /* display: flex; */
    display: none;
    column-gap: 0;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 20px;
}

.h-nav__search input {
    padding: 8px 10px;
    border: 0;
    border-bottom: 1px solid #000;
    background-color: transparent;
}

.h-nav__search button {
    background-color: transparent;
    border: 0;
    /* border-bottom: 1px solid #97816a; */
    color: #97816a;
    cursor: pointer;
    transition: 0.3s ease;
    padding: 5px 10px;
}
.h-nav__search button:hover {
    background-color: #97816a;
    color: #fff;
}

/* Header Cart Icon Styles */
.header-cart-link {
    position: relative;
}

.header-cart-icon {
    position: relative;
    display: inline-block;
}

.header-cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #997c5e;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    line-height: 1;
}

.header-nav .h-nav-item.submenu > .h-nav-link {
    cursor: pointer;
}

.header-nav .h-nav-submenu {
    overflow: hidden;
    position: absolute;
    top: 90px;
    left: 0;
    right: 0;
    width: 100%;
    padding: 20px 130px;
    /* background-color: rgba(255, 255, 255, 0.9); */
    background-color: #f5f2ee;
    display: -webkit-box;
    display: -ms-flexbox;
    filter: drop-shadow(0px 5px 5px rgba(0, 0, 0, 0.05));
}

.header-nav .h-nav-submenu .h-nav-link {
    display: block;
    padding: 10px 0;
    position: relative;
}

.header-nav .h-nav-submenu .h-nav-link:not(:first-child) {
    margin-left: 134px;
}

.header-nav .h-nav-submenu .h-nav-link:not(:last-child):before {
    content: '';
    position: absolute;
    top: 0;
    right: -59px;
    display: block;
    height: 100%;
    width: 1px;
    pointer-events: none;
    background-color: #555;
}
.knowladge-submenu {
    width: 100%;
    max-width: 60vw;
    margin-left: auto;
    display: grid;
    /* padding: 42px 5% 74px 5%; */
    padding: 10px 5% 10px 5%;
    grid-template-columns: 1fr 1fr;
    column-gap: 10px;
    grid-auto-rows: max-content;
    list-style: none;
}
.knowladge-submenu.knowladge-submenu--inline {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 20px;
}
.knowladge-submenu__item {
    margin-bottom: 20px;
}
.knowladge-submenu.knowladge-submenu--inline .knowladge-submenu__item {
    width: 100%;
    max-width: 220px;
}
.knowladge-submenu__link {
    position: relative;
    display: block;
    padding: 5px 5px 5px 25px;
    font-weight: 300;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #000;
    transition: 0.2s ease;
    transition-delay: 0.1s;
}
.knowladge-submenu__link:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background-color: var(--accent-color);
    transition: 0.2s ease-in-out;
}

.knowladge-submenu__item:hover .knowladge-submenu__link {
    position: relative;
    color: #fff;
    z-index: 1;
}
.knowladge-submenu__item:hover .knowladge-submenu__link:after {
    width: 100%;
    background-color: #997c5e99;
    z-index: -1;
}
@media (max-width: 1100px) {
    .knowladge-submenu {
        max-width: 100%;
    }
}
.products-submenu {
    width: 100%;
    max-width: 70vw;
    margin-left: auto;
    display: grid;
    /* padding: 42px 5% 45px 5%; */
    padding: 10px 5% 10px 5%;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    column-gap: 5%;
    row-gap: 20px;
    grid-auto-rows: max-content;
    list-style: none;
}
.products-submenu__item {
    width: 100%;
    max-width: 280px;
}
.products-submenu__link {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-weight: 400;

    width: 100%;
    font-size: clamp(16px, 3vw, 20px);
    line-height: 150%;
    text-align: center;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #4c301d;
    padding: 13px 15px;
    /* background-color: #fdfdfd; */
    transition: 0.3s ease;
    height: 100%;

    border: 1px solid transparent;
}
.products-submenu__link:hover .ws__products-grid-link__image {
    /* border-color: #CBBDAE ; */
    transform: scale(1.1);
}
.products-submenu__link p {
    font-family: var(--font-family-accent);
    margin-bottom: 20px;
}
@media (max-width: 1100px) {
    .products-submenu {
        max-width: 100%;
    }
}

/* === /HEADER === */
/* === RESPONSIVE MENU === */
.responsive-menu-trigger {
    height: 49px;
    width: 49px;
    cursor: pointer;
    display: none;
    margin-left: 20px;
}

.responsive-menu-trigger.close {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.responsive-menu-trigger.close span:first-child {
    -webkit-transform: rotate(45deg) translate(8px, 7px);
    transform: rotate(45deg) translate(8px, 7px);
}

.responsive-menu-trigger.close span:nth-child(2) {
    opacity: 0;
}

.responsive-menu-trigger.close span:last-child {
    -webkit-transform: rotate(-45deg) translate(7px, -6px);
    transform: rotate(-45deg) translate(7px, -6px);
}

.responsive-menu-trigger span {
    display: block;
    width: 35px;
    height: 4px;
    margin: 6px auto;
    background: #a79989;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
}

.responsive-menu-trigger span:first-child {
    margin-top: 12px;
}

.responsive-submenu {
    display: none;
}
.responsive-menu-container .responsive-submenu > a:link,
.responsive-menu-container .responsive-submenu > a:visited {
    padding-right: 50px;
    background-color: #f7f7f7;
}

.responsive-menu-container {
    display: none;
    width: 100%;
    position: absolute;
    right: 0;
    top: 90px;
    z-index: 11;
}

.responsive-menu-container a:link,
.responsive-menu-container a:visited {
    display: block;
    text-align: right;
    padding: 10px 25px 10px 5px;
    background-color: white;
    border-bottom: 1px solid #c3c3c3;
    text-decoration: none;
    color: #000;
}

.responsive-menu-container a:hover {
    background: rgba(255, 255, 255, 0.95);
}

.responsive-menu-container a.js-openSubMenu {
    position: relative;
}

.responsive-menu-container a.js-openSubMenu:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 10px;
    border: solid #a79989;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg) translateY(-50%);
    -webkit-transform: rotate(45deg) translateY(-50%);
    transform-origin: center center;
}
.responsive-menu-container a.js-openSubMenu.open:after {
    top: 40%;
    right: 5px;
    transform: rotate(-135deg) translateY(-50%);
    -webkit-transform: rotate(-135deg) translateY(-50%);
}
.responsive-menu-container .h-nav__search {
    padding: 10px;
    background-color: #fff;
    position: initial;
    display: flex;
    justify-content: flex-end;
}

.swiper-slide p {
    font-size: 100px;
}

/* === /RESPONSIVE MENU === */
/* === MEMBER OF SECTION === */
.member-of-section {
    background-color: #bdb2a6;
    padding: 10px 20px;
    text-align: center;
}

.member-of-section .mos-border {
    background-color: #bdb2a6;
    border: 1px solid #ffffff;
    padding: 35px 0 20px;
}

.member-of-section .mos-header {
    color: #212121;
    font-family: Oswald, sans-serif;
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 60px;
}

.member-of-section .mos-items-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.member-of-section .mos-item {
    width: 300px;
    height: 50px;
    border: 1px solid #ffffff;
    background-color: #bdb2a6;
    margin: 0 30px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.member-of-section .mos-item img {
    max-height: 90px;
    display: block;
    padding: 10px;
    position: absolute;
    z-index: 1;
    bottom: 10px;
    background-color: #bdb2a6;
}

/* === /FOOTER === */
footer {
    background-image: url(/images/global/footer-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 300px;
}

footer .footer__top {
    display: grid;
    grid-template-columns: 100%;
    gap: 40px;
    width: 90%;
    margin: 0 auto;
}
footer .footer__top-certificates-wrapper {
    width: 100%;
    max-width: 800px;
    margin: 47px auto 0 auto;
}
footer .footer__top-certificates {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    row-gap: 55px;
    column-gap: 20px;
    align-items: center;
    /* max-width: 800px; */
}
.footer__top-certificate {
    max-width: 100%;
    max-height: 68px;
    display: flex;
}
.footer__top-certificate img {
    display: block;
    max-height: 100%;
    max-width: auto;
    object-fit: contain;
}
.footer__top-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 700px;
    margin: 0 auto;
    list-style: none;
    column-gap: 40px;
    row-gap: 10px;
}
.footer__top-links-item {
}
.footer__top-link {
    font-family: var(--font-family-accent);
    font-weight: 400;
    font-size: clamp(14px, 2vw, 16px);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: 0.3s ease;
    color: #ffffff;
}
.footer__top-link:hover {
    color: var(--accent-color);
}
.footer__top-socials {
    display: flex;
    justify-content: center;
    column-gap: 20px;
    row-gap: 10px;
}
.footer__top-socials a {
    color: var(--accent-color);
    transition: 0.3s ease;
}
.footer__top-socials a:hover {
    color: #fff;
}

.footer__bottom {
    position: relative;
    border-top: 1px solid var(--accent-color);
    padding: 30px 0;
    max-width: 90%;
    margin: 46px auto 0 auto;
    display: flex;
    /* justify-content: space-between; */
    justify-content: center;
    column-gap: 30px;
    row-gap: 20px;
    color: var(--accent-color);
}
.footer__bottom a,
.footer__bottom p {
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    color: var(--accent-color);
    text-decoration: none;
}

.footer__bottom p:nth-child(2) {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* === HOME PAGE === */

.home-video {
    position: relative;
}
.home-video:hover .home-video__link {
    opacity: 1;
    pointer-events: all;
}
.home-video__link {
    font-family: var(--font-family-accent);
    pointer-events: none;
    letter-spacing: 1px;
    opacity: 0;
    position: absolute;
    bottom: 30px;
    right: 30px;
    color: #fff;
    padding: 20px;
    transition: 0.2s ease;
    text-transform: uppercase;
}
.home-video__link:hover {
    outline: 0;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.223);
}
.home-video__link::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: 50%;
    pointer-events: none;
}
.home-video__link:hover::after {
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    border: 1px solid #fff;
    z-index: 1;
    transition: 0.3s ease;
}

.home-video__wrapper {
    /* display: flex; */
    display: block;
}
.home-video__video {
    display: block;
    height: auto;
    min-height: 170px;
    width: 100%;
}
.home-video__video {
    width: 100%;
    height: 100%;
    min-height: 170px;
    object-fit: cover;
}

#flux-slider {
    width: 100%;
}

.home-slider-wrapper {
    overflow: hidden;
    position: relative;
}

.home-slider-wrapper .bx-wrapper {
    max-width: unset !important;
    width: 100%;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    background-color: transparent;
    position: relative;
    margin-bottom: 0;
}

.home-slider-wrapper .bx-viewport {
    height: 750px !important;
}

.home-slider-wrapper .bx-controls {
    left: 0;
    right: 0;
    width: 100%;
}

.home-slider-wrapper .bx-wrapper .bx-controls-direction a {
    font-size: 0;
    z-index: 9;
}

.home-slider-wrapper .bx-wrapper .bx-prev {
    left: 130px;
    background: url(/images/home-slider-arrow.png) no-repeat center center !important;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    background-size: contain;
    width: 28px;
    height: 28px;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
}

.home-slider-wrapper .bx-wrapper .bx-next {
    right: 130px;
    background: url(/images/home-slider-arrow.png) no-repeat center center !important;
    background-size: contain;
    width: 28px;
    height: 28px;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
}

.home-slider-wrapper .bx-wrapper .bx-next:hover,
.home-slider-wrapper .bx-wrapper .bx-prev:hover {
    opacity: 0.8;
}

.home-slider-wrapper .bx-wrapper .bx-pager {
    position: absolute;
    bottom: 80px;
    text-align: right;
    right: 120px;
    width: auto;
}

.home-slider-wrapper .bx-wrapper .bx-pager.bx-default-pager a {
    background-color: #fff;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
}

.home-slider-wrapper .bx-wrapper .bx-pager.bx-default-pager a:hover,
.home-slider-wrapper .bx-wrapper .bx-pager.bx-default-pager a.active {
    background-color: #bfae84;
}

.home-slider-wrapper .slider-room-item {
    position: relative;
}

.main-slider,
.main-slider-responsive {
    position: relative;
    overflow: hidden;
}

.home-slider-wrapper .sr-room-img,
.main-slider .sr-room-img {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 757px;
    background: no-repeat 50% 50%;
    background-size: cover;
}

.main-slider-responsive .sr-room-img-small {
    display: none;
    width: 100%;
    height: 450px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
}

.main-slider-responsive {
    display: none;
    overflow: hidden;
}

.nested-slider {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.nested-slider-arrows div {
    position: absolute;
    z-index: 2;
    top: 50%;
    margin-top: -16px;
    outline: 0;
    width: 32px;
    height: 32px;
    background: url(/images/home-slider-arrow.png) no-repeat center center;
    background-size: contain;
    transition: all 0.25s;
    opacity: 1;
    cursor: pointer;
}

.nested-slider-arrows div:hover {
    opacity: 0.5;
}

.nsa-prev {
    left: 130px;
    transform: rotate(180deg);
}

.nsa-next {
    right: 130px;
}

.nested-slide {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 757px;
    background: no-repeat 50% 50%;
    background-size: cover;
    transition: opacity 0.5s;
}

.nested-slide.shown {
    opacity: 1;
}

.nested-caption {
    display: block;
    text-align: center;
    pointer-events: none;
    position: absolute;
    bottom: 200px;
    left: 10px;
    z-index: 2;
    right: 10px;
    color: #fff;
    font-size: 24px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.sr-room-img-small .nested-caption {
    bottom: 80px;
}

.main-slider-pagination .swiper-pagination-bullet {
    display: inline-block;
    height: 40px;
    width: 75px;
    border-bottom: 5px solid #b0a6a1;
    padding-bottom: 15px;
    margin: 0 3px;
    text-align: center;
    color: #b0a6a1;
    font-family: Oswald, sans-serif;
    font-size: 26px;
    font-weight: 400;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
    background: transparent;
    border-radius: 0;
    opacity: 1;
}

body .swiper-pagination.main-slider-pagination.swiper-pagination-bullets {
    left: auto;
    bottom: 80px;
    right: 120px;
    display: inline-block;
    width: auto;
}

.main-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    border-bottom: 5px solid #e4aa6e;
    color: #e4aa6e;
}

.home-slider-wrapper .fluxslider {
    width: 100vw !important;
    background: #777 url('/images/slider-home/concrete_bg.jpg') no-repeat center center;
    background-size: cover;
}

.home-slider-wrapper .flux-slider .images {
    width: 100vw !important;
}

.home-slider-wrapper .flux-slider .images > div {
    width: 100vw !important;
}

.home-slider-wrapper .slider-item {
    position: relative;
    width: 100%;
    background: #777 no-repeat center center;
    background-size: cover;
    height: 750px;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 90px;
}

.home-slider-wrapper .bx-pager-link {
    display: inline-block;
    width: 75px;
    border-bottom: 5px solid #b0a6a1;
    padding-bottom: 15px;
    margin: 0 3px;
    text-align: center;
    color: #b0a6a1;
    font-family: Oswald, sans-serif;
    font-size: 26px;
    font-weight: 400;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
}

.home-slider-wrapper .bx-pager-link.active,
.home-slider-wrapper .bx-pager-link:hover {
    color: #e4aa6e;
    border-bottom: 5px solid #e4aa6e;
    font-weight: 500;
}

.main-slider .main-slide {
    position: relative;
    height: 757px;
    overflow: hidden;
}

.home-slider-wrapper .si-text,
.main-slider .si-text,
.main-slider-responsive .si-text {
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 121;
    pointer-events: none;
}

.home-slider-wrapper .si-header1,
.main-slider .si-header1,
.main-slider-responsive .si-header1 {
    text-shadow: 0 5px 13px rgba(0, 0, 0, 0.31);
    color: #ffffff;
    font-family: 'Lato', sans-serif;
    font-size: 48px;
    font-weight: 500;
    letter-spacing: 14px;
    text-transform: uppercase;
}

.home-slider-wrapper .si-header2,
.main-slide .si-header2 {
    text-shadow: 0 5px 13px rgba(0, 0, 0, 0.31);
    color: #ffffff;
    font-family: Oswald, sans-serif;
    font-size: 72px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 22px;
}

.home-slider-wrapper .hst-phone,
.main-slider .hst-phone {
    position: absolute;
    left: 140px;
    bottom: 80px;
    display: block;
    text-shadow: 0 5px 13px rgba(0, 0, 0, 0.31);
    color: #ffffff;
    font-family: Oswald, sans-serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 24px;
    text-transform: uppercase;
    letter-spacing: 9px;
}

.home-slider-wrapper .hst-explore-more,
.main-slider .hst-explore-more {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-85px);
    transform: translateX(-85px);
    bottom: 40px;
    display: block;
    width: 170px;
    outline: none;
    border: 0;
    padding-bottom: 40px;
    background: transparent url('/images/icons/explore-more-icon.png') no-repeat bottom center;
    text-shadow: 0 5px 13px rgba(0, 0, 0, 0.31);
    color: #ffffff;
    font-family: Oswald, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 36px;
    text-transform: uppercase;
    letter-spacing: 5px;
    -webkit-animation: bounce 5s infinite;
    animation: bounce 5s infinite;
    cursor: pointer;
    z-index: 1;
}

.wood-flooring-section {
    padding: 40px 150px;
    text-align: center;
    background-color: #f5f2ee;
}

.wood-flooring-section .wfs-header {
    color: #212121;
    font-family: var(--font-family-accent);
    font-weight: 300;
    font-size: clamp(22px, 3vw, 30px);
    line-height: 150%;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    margin: 0 0 40px;
}

.wood-flooring-section .wfs-header.wfs-header--bold {
    font-weight: 400;
}

.wood-flooring-section .wfs-header:after {
    content: '';
    display: block;
    width: 100px;
    height: 2px;
    background-color: var(--accent-color);
    position: absolute;
    bottom: -15px;
    left: 50%;
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
}

.wood-flooring-section .wfs-text {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}

.wood-flooring-section .wfs-text p {
    color: #212121;
    font-weight: 300;
    font-size: 16px;
    line-height: 150%;
}
.wfs__links-grid {
    /* display: grid;
    grid-template-columns: 1fr 1fr; */
    display: flex;
    column-gap: 65px;
}
.wfs__links-grid-item {
    position: relative;
    overflow: hidden;
    /* display: flex; */
}
.wfs__links-grid-item > img {
    transition: 0.3s ease-in-out;
    /* height: 100%; */
    height: auto;
    max-height: 500px;
}
.wfs__links-grid-item:hover > img {
    transform: scale(1.02);
    filter: brightness(1.2);
}

.wfs__links-grid-item-link {
    font-family: var(--font-family-accent);
    font-weight: 400;
    font-size: clamp(16px, 2vw, 30px);
    padding: 10px 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #ffffff;
    position: absolute;
    bottom: 30px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border: 1px solid #fff;
    white-space: nowrap;
    transition: 0.3s ease-in-out;
}
@media (max-width: 1000px) {
    .wfs__links-grid {
        column-gap: 30px;
    }
}
@media (max-width: 580px) {
    .wfs__links-grid {
        /* grid-template-columns: 100%; */
        display: flex;
        flex-direction: column;
        row-gap: 20px;
    }
    .wfs__links-grid-item > img {
        height: auto;
    }
}

.home-carousel-section {
    background: #777 no-repeat top center;
    background-size: cover;
    height: 650px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.home-carousel-section #home-carousel {
    width: 100%;
    height: 400px;
}

.home-carousel-section .carousel-item {
    border-left: 10px solid rgba(33, 33, 33, 0.75);
    background: white;
    padding: 40px 35px 20px;
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: center;
    -webkit-box-shadow: 0 7px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 7px 15px rgba(0, 0, 0, 0.5);
    -webkit-transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    -webkit-transition: width 0.5s, height 0.5s, -webkit-box-shadow 0.5s;
    transition: width 0.5s, height 0.5s, -webkit-box-shadow 0.5s;
    transition: box-shadow 0.5s, width 0.5s, height 0.5s;
    transition: box-shadow 0.5s, width 0.5s, height 0.5s, -webkit-box-shadow 0.5s;
}

.home-carousel-section .carousel-item.front {
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.home-carousel-section .ci-header {
    display: inline-block;
    color: #212121;
    font-family: Oswald, sans-serif;
    font-size: 40px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

.home-carousel-section .ci-header:hover {
    text-decoration: underline;
}

.home-carousel-section .ci-image {
    display: block;
    width: 450px;
    margin-bottom: 10px;
    -ms-flex-item-align: center;
    align-self: center;
}

.home-carousel-section .ci-arrow {
    -ms-flex-item-align: end;
    align-self: flex-end;
    cursor: pointer;
}

.home-carousel-section .hcs-controls {
    display: none;
}

.home-carousel-section .hcs-controls .left,
.home-carousel-section .hcs-controls .right {
    padding: 10px;
    background-color: transparent;
    border: 0;
    outline: none;
    color: #393a3c;
    font-family: Oswald, sans-serif;
    font-size: 20px;
    text-transform: uppercase;
}

.welcome-section {
    padding: 40px 150px;
    text-align: center;
}

.welcome-section .ws-header {
    color: #212121;
    font-family: var(--font-family-accent);
    font-weight: 300;
    font-size: clamp(22px, 3vw, 30px);
    line-height: 150%;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    margin: 0 0 40px;
}
.welcome-section .ws-header .highlight {
    color: #bdb2a6;
}

.welcome-section .ws-header:after {
    content: '';
    display: block;
    width: 100px;
    height: 2px;
    background-color: var(--accent-color);
    position: absolute;
    bottom: -15px;
    left: 50%;
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
}

.welcome-section .ws-text {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.welcome-section .ws-text p {
    color: #212121;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 150%;
}
.ws__products-grid {
    /* display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px; */
    position: relative;
    --swiper-navigation-color: #a79989;
    --swiper-navigation-sides-offset: 0px;
    padding: 0 40px;
}
.ws__products-grid-link {
    display: grid;
    position: relative;
    color: #000;
    padding: 20px;
    border: 1px solid #cbbdae;
    transition: 0.3s ease-in-out;
}
.ws__products-grid-link:hover {
    background-color: #ece9e7;
    /* box-shadow: 0px 0px 5px 0 rgba(0, 0, 0, 0.5); */
}
.ws__products-grid-link:hover .ws__products-grid-link-wrapper {
    border: 1px solid #fff;
}
.ws__products-grid-link-wrapper {
    width: 100%;
    height: 100%;
    display: grid;
    padding: 20px;
    margin: auto auto;
    grid-template-columns: 100%;
    grid-template-rows: 100%;
    grid-template-rows: 45px auto 1fr;
    justify-items: center;
    place-self: center;
    gap: 25px;
    border: 1px solid transparent;
    transition: 0.3s ease-in-out;
}

.ws__products-grid-link__title {
    font-family: var(--font-family-accent);
    font-weight: 400;
    font-size: clamp(16px, 2vw, 30px);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #000000;
}
.ws__products-grid-link__image {
    transition: 0.3s ease-in-out;
    height: clamp(40px, 3vw, 75px);
    object-fit: contain;
}
.ws__products-grid-link__text {
    font-style: italic;
    font-weight: 300;
    font-size: clamp(14px, 1.5vw, 20px);
    line-height: 150%;
    text-align: center;
    letter-spacing: 0.05em;
    color: #000000;
}
@media (max-width: 1000px) {
    .ws__products-grid-link {
        padding: 15px;
        gap: 15px;
    }
}
@media (max-width: 580px) {
    .ws__products-grid {
        grid-template-columns: 100%;
        align-items: center;
    }
}

/* [Common blocks start] */
.section-title {
    color: #212121;
    font-family: var(--font-family-accent);
    font-weight: 300;
    font-size: clamp(22px, 3vw, 30px);
    line-height: 150%;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    margin: 0 0 40px;
    text-align: center;
}

.section-title:after {
    content: '';
    display: block;
    width: 100px;
    height: 2px;
    background-color: var(--accent-color);
    position: absolute;
    bottom: -15px;
    left: 50%;
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
}
/* [Common blocks End] */

/* [_paragraph start] */
.about-page .par-wrapper {
    margin-bottom: 71px;
}
.about-page .par-wrapper:last-of-type {
    margin-bottom: 0;
}
.par {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 'par__img par__txt';
    max-width: var(--page-max-width);
    margin: auto;
}
.par__txt {
    grid-area: par__txt;
    display: flex;
    flex-direction: column;
    padding: 5% 5% 5% 10%;
    font-weight: 300;
    font-size: 16px;
    line-height: 150%;
}
.par__txt p {
    font-weight: 300;
    font-size: 16px;
    line-height: 150%;
}
.par__txt ul {
    list-style: none;
}
.par__txt ul li {
    position: relative;
    font-size: 16px;
    line-height: 150%;
    color: #000000;
    padding-left: 20px;
    margin-bottom: 15px;
}
.par__txt ul li::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 0;
    width: 14px;
    height: 14px;
    background-color: var(--accent-color);
}
.par__img {
    grid-area: par__img;
    max-width: calc(var(--page-max-width) / 2);
    position: relative;
    display: flex;
    justify-content: stretch;
    align-items: stretch;
}
.par__img img {
    overflow: hidden;
    position: -webkit-sticky;
    position: sticky;
    height: auto;
    object-fit: cover;
    top: 130px;
}
.par__ttl {
    font-size: clamp(22px, 3vw, 30px);
    line-height: 120%;
    font-weight: 400;
    text-transform: uppercase;
    /* color: var(--accent-color); */
    margin-bottom: 25px;
}
.par__subttl {
    font-family: var(--font-family-accent);
    font-weight: 300;
    font-size: clamp(22px, 3vw, 30px);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #000000;
    margin: 0;
    margin-bottom: 25px;
}
.par__link {
    font-style: italic;
    font-weight: 300;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0.05em;
    text-decoration-line: underline;
    color: #000000;
    transition: 0.3s ease-in-out;
    width: max-content;
}
.par__link:hover {
    color: var(--accent-color);
}

.par.par--left {
    grid-template-areas: 'par__img par__txt';
}

.par.par--right {
    grid-template-areas: 'par__txt par__img';
}
.par.par--right .par__txt {
    padding: 5% 10% 5% 5%;
}

.par__txt.par__txt--center {
    justify-content: center;
}
@media (max-width: 768px) {
    .par {
        grid-template-columns: 1fr !important;
        grid-template-areas: 'par__img' 'par__txt' !important;
    }
    .par.par--right .par__txt,
    .par.par--left .par__txt {
        padding: 5% 5% 5% 5%;
    }
    .par__img img {
        height: auto;
    }
}

/* [_paragraph end] */

/* .home-about-section {
    padding: 80px 0;
    background: #777 no-repeat top center;
    background-size: cover;
}

.home-about-section .has-text {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.85);
    padding: 50px 50px 50px 140px;
    width: 900px;
    background-image: url('/images/background-logo.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.home-about-section .hast-header {
    color: #393a3c;
    font-family: Oswald, sans-serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 48px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.home-about-section .has-text p {
    color: #231f20;
    font-family: 'Lato', sans-serif;
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.33;
}

.home-about-section .hast-btn-more {
    display: inline-block;
    background: url('/images/icons/btn-more-border.svg') no-repeat center center;
    background-size: cover;
    padding: 20px 60px;
    color: #212121;
    font-family: Oswald, sans-serif;
    font-size: 30px;
    font-weight: 300;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
}

.home-about-section .hast-btn-more:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
} */

.advantages-section {
    padding: 55px 50px;
    text-align: center;
    background-color: var(--accent-background);
}

.advantages-section .as-header {
    color: #393a3c;
    font-family: Oswald, sans-serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 48px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    margin: 0 0 70px;
}

.advantages-section .as-header .highlight {
    color: #bdb2a6;
}

.advantages-section .as-header:after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background-color: #000;
    position: absolute;
    bottom: -40px;
    left: 50%;
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
}

.advantages-section .as-text {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}

.advantages-section .as-text p {
    color: #212121;
    font-family: 'Lato', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.33;
}

.advantages-section .as-advantages-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    column-gap: 15px;
    row-gap: 15px;
    /* display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; */
}

.advantages-section .asa-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    /* max-width: calc(87% / 6); */
    margin: 0 1% 40px;
}

.advantages-section .asai-img {
    background: no-repeat bottom center;
    background-size: contain;
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
}

.advantages-section .asai-header {
    color: #393a3c;
    font-family: Oswald, sans-serif;
    font-size: 30px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.page-intro {
    padding: 45px 0;
}
.page-intro__text {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 5%;
}
.page-intro__paragraphs p {
    font-weight: 300;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: #000000;
}
.collections-section {
    padding: 70px 0;
}

.collections-section .cs-text {
    padding: 0 130px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.collections-section .cs-header {
    display: inline-block;
    color: #212121;
    font-family: Oswald, sans-serif;
    font-size: 61px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 18px;
    position: relative;
    /* margin: 0 0 30px 110px; */
}

/* .collections-section .cs-header:before {
  content: "";
  display: block;
  position: absolute;
  left: -110px;
  bottom: 0;
  width: 100px;
  height: 4px;
  background-color: #393a3c;
} */

.collections-section .cs-paragraphs {
    margin-bottom: 60px;
}

.collections-section .cs-paragraphs p {
    color: #000;
    font-family: var(--font-family-common);
    font-weight: 300;
    font-size: 16px;
    line-height: 150%;
}

.collections-section .cs-paragraphs p:not(:last-child) {
    margin-bottom: 20px;
}

.collections-section .cs-masonry-container {
    margin-left: auto;
    margin-right: auto;
}

.collections-section .grid-item {
    display: inline-block;
    width: 32vw;
    /* height: 350px; */

    max-height: 350px;
    max-width: 620px;
    position: relative;
    text-align: center;
    /* font-size: 0; */
    overflow: hidden;
    margin-bottom: 20px;
    /* aspect-ratio: 3/4; */
}

.collections-section .gi-image {
    width: 100%;
    height: 18vw;
    min-height: 150px;
    /* height: 350px; */
    /* height: 100vh; */
    max-height: 350px;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
    /* aspect-ratio: 3/4; */
}

.collections-section .grid-item:hover .gi-image {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.collections-section .gi-text {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
    height: 100%;
    padding: 0 20px;
}

.collections-section .gi-header {
    width: 100%;
    text-shadow: 0 5px 13px rgba(0, 0, 0, 0.31);
    color: #ffffff;
    font-family: var(--font-family-accent);
    font-size: 40px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    -webkit-transition: 0.25s;
    transition: 0.25s;
}

.collections-section .grid-item:hover .gi-header {
    /* margin-bottom: 30px; */
}

.collections-section .gi-subheader {
    display: none;
    opacity: 0;
    text-shadow: 0 5px 13px rgba(0, 0, 0, 0.31);
    color: #ffffff;
    font-family: 'Lato', sans-serif;
    font-size: 20px;
    font-weight: 400;
    -webkit-transition: opacity 0.25s;
    transition: opacity 0.25s;
}

.collections-section .grid-item:hover .gi-subheader {
    display: block;
    opacity: 1;
}

.collections-section .gi-overlay {
    font-size: clamp(16px, 2vw, 20px);
    opacity: 0;
    padding: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% - 17px);
    height: calc(100% - 14px);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 2;
    display: block;
    /* background-color: rgba(65, 59, 57, 0.9); */
    /* border: 1px solid rgba(255, 255, 255, 1); */
    -webkit-transition: opacity 0.25s;
    transition: opacity 0.25s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden auto;
    text-align: center;
    color: #fff;
}

.collections-section .gi-overlay * {
    color: #fff;
}

.collections-section .grid-item:hover .gi-overlay {
    opacity: 1;
    z-index: 3;
}
.collections-section .grid-item:hover .gi-header {
    filter: blur(70px);
    pointer-events: none;
}

.product-list-intro {
    padding: 40px 10px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.product-list-intro p {
    color: rgba(51, 46, 44, 0.9);
    font-family: 'Lato', sans-serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 30px;
}

.product-list-intro p:not(:last-child) {
    margin-bottom: 1em;
}

.product-list-intro p:not(:last-child) {
    margin-bottom: 20px;
}

.product-list-container {
    padding: 0 5% 60px 5%;
    /* display: -webkit-box;
    display: -ms-flexbox; */
    /* display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: stretch; */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    grid-gap: 20px;
}

.product-list-container .plc-item {
    background: no-repeat center center;
    background-size: 100% 100%;
    position: relative;
    /* width: 28vw; */
    max-width: 557px;
    height: 20vw;
    max-height: 320px;
    min-height: 200px;
    /* margin: 10px; */
    transition: 0.3s ease-in-out;
}

.product-list-container .plc-item:hover {
    background-size: 110% 110%;
}

.product-list-container .plci-link {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 3;
}
.plci-external-link {
    position: absolute;
    bottom: 25px;
    left: 40px;
    display: block;
    width: max-content;
    height: max-content;
    z-index: 4;
    padding: 10px 15px;
    border: 1px solid #f5f2ee;
    color: #f5f2ee;
    transition: 0.3s ease-in-out;
}
.plci-external-link:hover {
    background-color: #f5f2ee;
    color: #000;
}

.product-list-container .plci-text {
    position: absolute;
    top: 25px;
    left: 40px;
    padding-right: 20px;
    pointer-events: none;
    z-index: 4;
    transition: 0.3s ease;
}

.product-list-container .plci-header {
    color: #ffffff;
    font-family: var(--font-family-accent);
    font-size: clamp(22px, 2vw, 30px);
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.product-list-container .plci-line {
    width: 165px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

.product-list-container .plci-categories {
    color: rgba(255, 255, 255, 1);
    font-family: var(--font-family-common);
    font-size: 18px;
    font-weight: 300;
    line-height: 20px;
}

.product-list-container .plci-overlay {
    opacity: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 2;
    /* background-color: rgba(65, 59, 57, 0.8); */
    padding: 10px;
    -webkit-transition: opacity 0.25s;
    transition: opacity 0.25s;
}

.product-list-container .plci-overlay .plci-overlay__text {
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translate(0, -50%);
    color: #fff;
    display: flex;
    line-height: 1.5;
    justify-content: center;
    height: 80%;
    overflow-y: auto;
}

.product-list-container .plci-overlay:after {
    content: '';
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    /* border: 1px solid #fff; */
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* .product-list-container .plc-item:hover .plci-overlay {
    opacity: 1;
} */

/* .product-list-container .plc-item:hover .plci-text {
    opacity: 0;
    filter: blur(5px);
} */

.product-item-intro {
    padding: 40px 130px;
}

.product-item-intro p {
    color: rgba(35, 31, 32, 0.8);
    font-family: 'Lato', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 30px;
}

.product-item-intro p:not(:last-child) {
    margin-bottom: 20px;
}

.product-item-images {
    padding: 0 130px;
    /* INTERIORS SLIDER */
    /* /INTERIORS SLIDER */
    /* PRODUCTS SLIDER */
    /* /PRODUCTS SLIDER */
}

.product-item-images .pi-interiors-slider-wrapper {
    overflow: hidden;
    position: relative;
    margin-bottom: 10px;
}

.product-item-images .pi-interiors-slider-wrapper .bx-wrapper {
    max-width: unset !important;
    width: 100%;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    background-color: transparent;
    position: relative;
    margin-bottom: 0;
}

.product-item-images .pi-interiors-slider-wrapper .bx-viewport {
    z-index: 1;
}

.product-item-images .pi-interiors-slider-wrapper .bx-controls {
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
}
.product-item-images .pi-interiors-slider-wrapper .bx-wrapper .bx-controls-direction {
    display: flex;
    justify-content: space-between;
}
.product-item-images .pi-interiors-slider-wrapper .bx-wrapper .bx-controls-direction a {
    display: inline-block;
    font-size: 0;
    z-index: 9;
}

.product-item-images .pi-interiors-slider-wrapper .bx-wrapper .bx-prev {
    width: 140px;
    height: 90px;
    background: url(/images/misc/arrow-left.png) no-repeat center center;

    -webkit-transition: all 0.25s;
    transition: all 0.25s;
}

.product-item-images .pi-interiors-slider-wrapper .bx-wrapper .bx-next {
    width: 140px;
    height: 90px;
    background: url(/images/misc/arrow-right.png) no-repeat center center;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
}

.product-item-images .pi-interiors-slider-wrapper .bx-wrapper .bx-next:hover,
.product-item-images .pi-interiors-slider-wrapper .bx-wrapper .bx-prev:hover {
    background-color: #d7d7d7;
    opacity: 0.8;
}

.product-item-images .pi-interiors-slider-wrapper .pii-slider-item {
    position: relative;
    width: 100%;
    background: #777 no-repeat center center;
    background-size: cover;
    height: 36.45vw;
}

.product-item-images .pii-categories {
    z-index: 2;
    position: absolute;
    left: 70px;
    bottom: 70px;
    padding-left: 15px;
    /* border-left: 5px solid #212121; */
    border-left: 2px solid #efefef; /*Updated 2021-01-21*/
}

.product-item-images .pii-collection {
    /* color: #212121; */
    color: #efefef; /*Updated 2021-01-21*/
    font-family: var(--font-family-accent);
    font-size: 40px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    /* margin-bottom: 10px; */
}

.product-item-images .pii-species {
    color: #efefef;
    font-family: var(--font-family-accent);
    font-size: 24px;
    font-weight: 200;
}

.product-item-images .pi-products-slider-wrapper {
    overflow: hidden;
    position: relative;
    margin-bottom: 100px;
}

.product-item-images .pi-products-slider-wrapper .bx-wrapper {
    max-width: unset !important;
    width: 100%;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    background-color: transparent;
    position: relative;
    margin-bottom: 0;
}

.product-item-images .pi-products-slider-wrapper .bx-viewport {
    z-index: 1;
}

.product-item-images .pi-products-slider-wrapper .bx-controls-direction {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 40px;
}

.product-item-images .pi-products-slider-wrapper .bx-wrapper .bx-controls-direction a {
    display: inline-block;
    z-index: 9;
    color: #757575;
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
}
.product-links {
    margin-top: 65px;
}

.product-item-images .pi-products-slider-wrapper .bx-wrapper .bx-prev {
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
    margin-right: 130px;
}

.product-item-images .pi-products-slider-wrapper .bx-wrapper .bx-prev:before {
    content: '';
    display: inline-block;
    -webkit-transform: rotateZ(180deg);
    transform: rotateZ(180deg);
    background: url('/images/icons/arrow_right.png') no-repeat center center;
    background-size: contain;
    width: 110px;
    height: 20px;
    margin-right: 10px;
    margin-bottom: -3px;
}

.product-item-images .pi-products-slider-wrapper .bx-wrapper .bx-next {
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
}

.product-item-images .pi-products-slider-wrapper .bx-wrapper .bx-next:after {
    content: '';
    display: inline-block;
    -webkit-transform: rotateZ(0);
    transform: rotateZ(0);
    background: url('/images/icons/arrow_right.png') no-repeat center center;
    background-size: contain;
    width: 110px;
    height: 20px;
    margin-left: 10px;
    margin-bottom: -3px;
}

.product-item-images .pi-products-slider-wrapper .bx-wrapper .bx-next:hover,
.product-item-images .pi-products-slider-wrapper .bx-wrapper .bx-prev:hover {
    opacity: 0.8;
}

.product-item-images .pi-products-slider-wrapper .pip-slider-item {
    display: block;
    position: relative;
    width: 320px;
    height: 280px;
    background: #777 no-repeat center center;
    background-size: cover;
    margin: 0 auto;
}

.product-item-images .pi-products-slider-wrapper .pip-text {
    position: absolute;
    left: 20px;
    bottom: 20px;
}

.product-item-images .pi-products-slider-wrapper .pip-collection {
    color: #fafafa;
    font-family: var(--font-family-common);
    font-size: 23px;
    font-weight: 400;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-item-images .pi-products-slider-wrapper .pip-species {
    color: #efefef;
    font-family: var(--font-family-common);
    font-size: 23px;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 6px;
}

.accessories {
    max-width: 800px;
}

.accessories h2 {
    color: #231f20;
    font-family: Oswald, sans-serif;
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 40px;
}

.a-items {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

.a-items > div {
    margin: 0 1% 20px;
}

.a-items h4 {
    color: #231f20;
    font-family: Oswald, sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-align: center;
}

.a-descr {
    color: #231f20;
    font-family: Oswald, sans-serif;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
}

.product-details-section {
    padding: 0 130px 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.product-details-section .pd-column {
    padding: 0 30px 0 50px;
    border-left: 2px solid #97816a;
    margin: 0 10px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.product-details-section .pd-column.warranty {
    -ms-flex-negative: 1;
    flex-shrink: 1;
}

.product-details-section .pdc-header {
    color: #231f20;
    font-family: var(--font-family-accent);
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 40px;
}

.pdc-header-box{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    column-gap: 40px;
    row-gap: 15px;
    align-items: center;
}
.pdc-header-box .download-button{
    background-color: transparent;
    cursor: pointer;
}

@media (max-width: 768px) {
    .pdc-header-box .download-button{
        padding: 5px 20px;
    }
}

.product-details-section .pdc-table th {
    text-align: left;
    color: #2b2c2c;
    font-family: var(--font-family-common);
    font-size: 18px;
    font-weight: 500;
    line-height: 150%;
    /* line-height: 30px; */
    /* padding-right: 80px; */
    padding-right: 10vw;
}

.product-details-section .pdc-table td {
    color: #2b2c2c;
    font-family: var(--font-family-common);
    font-size: 18px;
    line-height: 150%;
    max-width: 300px;
    font-weight: 400;
    /* line-height: 30px; */
}
.product-details-section .pdc-table td.text-right {
    text-align: right;
}
.product-details-section .pdc-text p {
    font-family: var(--font-family-common);
    font-weight: 300;
    font-size: 16px;
    line-height: 150%;
    color: #000000;
}
.download-button {
    width: max-content;
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
    padding: 10px 40px;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    column-gap: 10px;
    border: 1px solid var(--accent-color);
    /* box-shadow: 0 0 0px 1px var(--accent-color); */
    transition: 0.3s ease;

    margin-bottom: 25px;
}
.download-button:hover {
    background-color: var(--accent-color);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 0 15px -8px rgba(0, 0, 0, 0.502);
}
.product-details-section .pdc-text:not(:last-child) {
    margin-bottom: 70px;
}

.product-details-section .pdc-text:last-child {
    margin-bottom: 10px;
}

.product-details-section .pdc-text ul {
    list-style: none;
}

.product-details-section .pdc-text li {
    color: #2b2c2c;
    font-family: var(--font-family-common);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    background: url('/images/icons/tick_icon.png') no-repeat top left;
    background-size: 26px 21px;
    padding-left: 40px;
}

.dark-bg {
    position: fixed;
    z-index: 200;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(33, 33, 33, 0.9);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 100px 0;
}

#lightbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    position: relative;
}

#lightbox .lb-images {
    margin-right: 2vw;
}

#lightbox .lb-main-image {
    display: block;
    width: 50vw;
    height: 28vw;
    background: #777 no-repeat center center;
    background-size: cover;
    margin-bottom: 20px;
}

#lightbox .lb-thumbs-slider-wrapper {
    position: relative;
}

#lightbox .lb-thumbs-slider-wrapper .bx-wrapper {
    position: relative;
}

#lightbox .lb-thumbs-slider-wrapper .bx-viewport {
    width: 50vw !important;
}

#lightbox .lb-thumbs-slider-wrapper .bx-controls-direction {
    position: absolute;
    top: 50%;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
}

#lightbox .lb-thumbs-slider-wrapper .bx-prev {
    position: absolute;
    top: calc(50% - 24px);
    left: 0;
    display: inline-block;
    background: rgba(255, 255, 255, 0.8) url('/images/icons/black-arrow.png') no-repeat center center;
    -webkit-transform: rotateZ(180deg);
    transform: rotateZ(180deg);
    background-size: 18px 32px;
    width: 48px;
    height: 48px;
    font-size: 0;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
}

#lightbox .lb-thumbs-slider-wrapper .bx-prev:hover {
    opacity: 0.8;
}

#lightbox .lb-thumbs-slider-wrapper .bx-prev.disabled {
    visibility: hidden;
}

#lightbox .lb-thumbs-slider-wrapper .bx-next {
    position: absolute;
    top: calc(50% - 24px);
    right: 0;
    display: inline-block;
    background: rgba(255, 255, 255, 0.8) url('/images/icons/black-arrow.png') no-repeat center center;
    background-size: 18px 32px;
    width: 48px;
    height: 48px;
    font-size: 0;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
}

#lightbox .lb-thumbs-slider-wrapper .bx-next:hover {
    opacity: 0.8;
}

#lightbox .lb-thumbs-slider-wrapper .bx-next.disabled {
    visibility: hidden;
}

#lightbox .lb-controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 4.2vw;
    margin-right: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#lightbox .name-species {
    color: #efefef;
    font-family: Oswald, sans-serif;
    font-size: 48px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

#lightbox .lbns-species {
    color: #8d8d8d;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lbns-link-wrapper {
    margin-bottom: 20px;
    width: 100%;
}

.lbns-link {
    text-decoration: underline;
    color: #96816a;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.lbns-link:hover {
    text-decoration: none;
}

#lightbox .lbns-controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#lightbox .pager {
    margin: 0 50px;
    color: #4b4b4d;
    font-family: Oswald, sans-serif;
    font-size: 48px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.22px;
}

#lightbox .pager-current {
    color: #efefef;
}

#lightbox .lbns-prev {
    display: inline-block;
    width: 26px;
    height: 45px;
    background: url('/images/icons/arrow_right_white.png') no-repeat center center;
    background-size: contain;
    font-size: 0;
    -webkit-transform: rotateZ(180deg);
    transform: rotateZ(180deg);
}

#lightbox .lbns-next {
    display: inline-block;
    width: 26px;
    height: 45px;
    background: url('/images/icons/arrow_right_white.png') no-repeat center center;
    background-size: contain;
    font-size: 0;
}

#lightbox .lb-thumb-item {
    display: inline-block;
    width: 224px;
    height: 170px;
    background: no-repeat center center;
    background-size: cover;
    cursor: pointer;
}

#lightbox .lb-close {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 36px;
    height: 36px;
    background: url('/images/icons/cross.png') no-repeat center center;
    background-size: contain;
    cursor: pointer;
}

/* === /PRODUCTS PAGE === */
/* === KNOWLEDGE PAGE === */
/* .knowledge-section {
  padding: 100px 0 80px 130px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.knowledge-section .ks-text-column {
  -ms-flex-negative: 1;
  flex-shrink: 1;
  width: 50%;
  margin-right: 80px;
}

.knowledge-section .kst-header {
  color: #4f4541;
  font-family: Oswald, sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 48px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 40px;
}

.knowledge-section .kst-highlight {
  color: #bdb2a6;
}

.knowledge-section .kst-text p {
  color: rgba(35, 31, 32, 0.9);
  font-family: 'Lato', sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.33;
}

.knowledge-section .kst-text p:not(:last-child) {
  margin-bottom: 40px;
}

.knowledge-section .ks-carousel-column {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  position: relative;
}

.knowledge-section #knowledge-carousel {
  width: 100% !important;
  height: 650px;
}

.knowledge-section .carousel-item {
  width: 500px;
  height: 600px;
  background: #777 no-repeat center center;
  background-size: cover;
  -webkit-filter: blur(6px);
  filter: blur(6px);
  -webkit-box-shadow: 5px 7px 15px rgba(0, 0, 0, 0.3);
  box-shadow: 5px 7px 15px rgba(0, 0, 0, 0.3);
  -webkit-transition: -webkit-filter .5s, -webkit-box-shadow .5s;
  transition: -webkit-filter .5s, -webkit-box-shadow .5s;
  transition: filter .5s, box-shadow .5s;
  transition: filter .5s, box-shadow .5s, -webkit-filter .5s, -webkit-box-shadow .5s;
  cursor: pointer;
}

.knowledge-section .carousel-item.front {
  -webkit-box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.3);
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.3);
  -webkit-filter: none;
  filter: none;
  cursor: default;
}

.knowledge-section .hcs-controls {
  position: absolute;
  top: calc(600px - 64px);
  left: 0;
  z-index: 120;
  font-size: 0;
}

.knowledge-section .hcs-controls .left {
  background: rgba(255, 255, 255, 0.7) url("/images/icons/black-arrow.png") no-repeat center center;
  background-size: 18px 32px;
  width: 64px;
  height: 64px;
  border: 0;
  outline: none;
  font-size: 0;
  cursor: pointer;
  -webkit-transform: rotateZ(180deg);
  transform: rotateZ(180deg);
  -webkit-transition: opacity .25s;
  transition: opacity .25s;
}

.knowledge-section .hcs-controls .left:hover {
  opacity: .8;
}

.knowledge-section .hcs-controls .right {
  background: rgba(255, 255, 255, 0.8) url("/images/icons/black-arrow.png") no-repeat center center;
  background-size: 18px 32px;
  width: 64px;
  height: 64px;
  border: 0;
  outline: none;
  font-size: 0;
  cursor: pointer;
  -webkit-transition: opacity .25s;
  transition: opacity .25s;
}

.knowledge-section .hcs-controls .right:hover {
  opacity: .8;
} */

.knowledge-items {
    max-width: 1600px;
    margin: 30px auto;
    padding: 0 10px;
}

.ki-item {
    margin-bottom: 20px;
}

.ki-title {
    position: relative;
}

.ki-item h2 {
    display: inline-block;
    color: #7e7e7e;
    font-family: Oswald, sans-serif;
    font-size: 38px;
    font-weight: 400;
    line-height: 48px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    cursor: pointer;
    position: relative;
    padding-left: 40px;
}

.ki-item h2:hover {
    text-decoration: underline;
}

.ki-item h2::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-bottom: -4.5px;
    left: 0;
    display: block;
    width: 19px;
    height: 9px;
    background: url('/images/icons/icon-dropdown-category.png');
    opacity: 0.2;
    pointer-events: none;
    transition: opacity 0.5s;
}

.ki-item.active h2::after {
    opacity: 1;
}

.ki-item:not(.active) h2:hover::after {
    opacity: 0.7;
}

.ki-item:first-child .ki-descr {
    display: block;
}

.ki-descr {
    display: none;
    padding: 20px 0;
}

.ki-descr > p {
    color: rgba(35, 31, 32, 0.9);
    font-family: 'Lato', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.33;
}

.ki-descr > p:not(:last-child) {
    margin-bottom: 1em;
}

.articles-section {
    margin-bottom: 60px;
}

.resources {
    background-color: var(--accent-background);
    padding-bottom: 60px;
}
.resources__inner {
    padding: 0 5%;
}
.resources__layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
}

@media (max-width: 992px) {
    .resources__layout {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

@media (max-width: 576px) {
    .resources__layout {
        grid-template-columns: repeat(1, 1fr);
        row-gap: 30px;
    }
}

.resources__item {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    color: #000;
    transition: 0.2s ease;
}
.resources__item:hover img {
    transform: scale(1.1);
}
.resources__item-image {
    overflow: hidden;
}
.resources__item-image img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 16/9;
    transition: 0.5s ease;
}
.resources__item-title {
    font-size: clamp(16px, 1.5vw, 18px);
    font-weight: 400;
    line-height: 150%; /* 27px */
    letter-spacing: 0.9px;
    text-transform: uppercase;
}
.resources__item-text {
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%; /* 24px */

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.resources__item-link {
    font-size: 14px;
    font-style: italic;
    font-weight: 300;
    line-height: 150%; /* 21px */
    letter-spacing: 0.7px;
    text-decoration-line: underline;
}

/* === /KNOWLEDGE PAGE === */
/* === GALLERY === */
.gallery-section {
    padding: 70px 130px;
    text-align: center;
}

.gallery-section .gs-masonry-container {
    margin-left: auto;
    margin-right: auto;
}

.gallery-section .grid-item {
    display: inline-block;
    margin-bottom: 13px;
    width: 27vw;
    max-width: 366px;
    /* height: 360px; */
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    position: relative;
    text-align: left;
    font-size: 0;
}

.gallery-fade {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #653b0f7c;
    opacity: 0;
    transition: opacity 0.5s;
}

.gallery-section .grid-item:hover .gallery-fade {
    opacity: 1;
}

.gallery-fade h5 {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    font-size: 25px;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
}

.gallery-section .grid-item.collection {
    overflow: hidden;
}

.gallery-section .grid-item.collection .gi-image {
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
}

.gallery-section .grid-item.collection:hover .gi-image {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.gallery-section .gi-text {
    position: absolute;
    bottom: 25px;
    left: 40px;
    padding-right: 20px;
    z-index: 3;
    opacity: 0;
    -webkit-transition: opacity 0.25s;
    transition: opacity 0.25s;
}

.gallery-section .collection .gi-text {
    opacity: 1;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
    height: 100%;
    padding: 0 20px;
}

.gallery-section .gi-header {
    color: #ffffff;
    font-family: Oswald, sans-serif;
    font-size: 21px;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.gallery-section .collection .gi-header {
    margin-bottom: 0;
    width: 100%;
    text-shadow: 0 5px 13px rgba(0, 0, 0, 0.31);
    color: #ffffff;
    font-family: Oswald, sans-serif;
    font-size: 40px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.gallery-section .gi-line {
    width: 165px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

.gallery-section .gi-categories {
    color: rgba(255, 255, 255, 0.6);
    font-family: Oswald, sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 20px;
}

.gallery-section .gi-overlay {
    opacity: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 2;
    background-color: rgba(65, 59, 57, 0.8);
    padding: 10px;
    -webkit-transition: opacity 0.25s;
    transition: opacity 0.25s;
}

.gallery-section .gi-overlay:after {
    content: '';
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    border: 2px solid #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.gallery-section .grid-item:hover .gi-overlay,
.gallery-section .grid-item:hover .gi-text {
    opacity: 1;
}

.gallery-section .collection .gi-overlay {
    opacity: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    display: block;
    background-color: rgba(65, 59, 57, 0.9);
    border: 8px solid rgba(255, 255, 255, 0.6);
    -webkit-transition: opacity 0.25s;
    transition: opacity 0.25s;
}

.gallery-section .collection .gi-overlay:after {
    display: none;
}

.gallery-section .gs-btn-more {
    display: inline-block;
    /* border: 3px solid #555555; */
    box-shadow: 0 0 0 3px #555555;
    padding: 10px 20px;
    color: #212121;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.gallery-section .gs-btn-more:hover {
    box-shadow: 0 0 15px -5px rgba(0, 0, 0, 0.5);
}

/* === /GALLERY === */
/* === ABOUT PAGE === */
.about-section {
    padding: 0 10px 60px 10px;
    max-width: 1600px;
    margin: 0 auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    /* ABOUT CAROUSEL */
    /* /ABOUT CAROUSEL */
}

.about-section .as-header {
    color: #393a3c;
    font-family: Oswald, sans-serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 48px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

.about-section .as-map {
    width: 100%;
    margin-bottom: 80px;
}

.about-descr-bottom {
    text-align: center;
    margin-bottom: 50px;
    font-size: 24px;
}

.about-descr-bottom p {
    color: rgba(35, 31, 32, 0.9);
}

.about-section .asft-header {
    color: #393a3c;
    font-family: Oswald, sans-serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 48px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 40px;
}

.about-section .common-list {
    list-style: none;
}
.about-section .common-list li {
    font-family: var(--font-family-accent);
    font-weight: 400;
    font-size: clamp(14px, 2vw, 18px);
    line-height: 150%;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #000000;
}

.common-list.common-list--locations {
    column-count: 5;
    column-gap: 50px;
}

.about-section .asft-header-small {
    text-align: center;
    color: #393a3c;
    font-family: Oswald, sans-serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 32px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 40px;
}

.about-slider {
    position: relative;
    max-width: 98%;
    margin: 0 1% 50px;
    overflow: hidden;
    height: 492px;
}

.about-slide {
    height: 492px;
    background-size: cover;
    background-position: 50% 50%;
}

.about-slide img {
    width: 100%;
    display: block;
}

.about-prev {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 130px;
    transform: rotate(180deg);
    margin-top: -16px;
    outline: 0;
    width: 32px;
    height: 32px;
    background: url(/images/home-slider-arrow.png) no-repeat center center;
    background-size: contain;
    transition: all 0.25s;
    opacity: 1;
    cursor: pointer;
}

.about-next {
    position: absolute;
    z-index: 2;
    top: 50%;
    right: 130px;
    margin-top: -16px;
    outline: 0;
    width: 32px;
    height: 32px;
    background: url(/images/home-slider-arrow.png) no-repeat center center;
    background-size: contain;
    transition: all 0.25s;
    opacity: 1;
    cursor: pointer;
}

.asft-text {
    text-align: center;
    margin-bottom: 50px;
}

.about-section .asft-text-column {
    display: inline-block;
    vertical-align: top;
    width: 47%;
    margin: 0 1.5%;
}

.about-section .asft-header .asft-highlight {
    color: #bdb2a6;
}

.about-section .asft-header-small .asft-highlight {
    color: #bdb2a6;
}

.about-section .asft-text p {
    color: rgba(35, 31, 32, 0.9);
    font-family: 'Lato', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.33;
    margin-bottom: 20px;
}

.asft-carousel-block {
    max-width: 1320px;
    margin: 20px auto 0;
    position: relative;
}

.about-section #about-carousel {
    width: 100% !important;
    height: 600px;
}

.about-section .carousel-item {
    width: 1400px;
    height: 500px;
    background: #777 no-repeat center center;
    background-size: cover;
    cursor: pointer;
}

.about-section .carousel-item.front {
    -webkit-box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.3);
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.3);
    -webkit-filter: none;
    filter: none;
    cursor: default;
}

.about-section .hcs-controls {
    position: absolute;
    top: calc(450px - 64px);
    left: 0;
    z-index: 120;
    font-size: 0;
}

.about-section .hcs-controls .left {
    background: rgba(255, 255, 255, 0.7) url('/images/icons/black-arrow.png') no-repeat center center;
    background-size: 18px 32px;
    width: 64px;
    height: 64px;
    border: 0;
    outline: none;
    font-size: 0;
    cursor: pointer;
    -webkit-transform: rotateZ(180deg);
    transform: rotateZ(180deg);
    -webkit-transition: opacity 0.25s;
    transition: opacity 0.25s;
}

.about-section .hcs-controls .left:hover {
    opacity: 0.8;
}

.about-section .hcs-controls .right {
    background: rgba(255, 255, 255, 0.8) url('/images/icons/black-arrow.png') no-repeat center center;
    background-size: 18px 32px;
    width: 64px;
    height: 64px;
    border: 0;
    outline: none;
    font-size: 0;
    cursor: pointer;
    -webkit-transition: opacity 0.25s;
    transition: opacity 0.25s;
}

.about-section .hcs-controls .right:hover {
    opacity: 0.8;
}

/* === /ABOUT PAGE === */

/* === /FAQ PAGE START === */
.faq-head {
    padding: 47px 0 43px;
}
/* .faq-block__inner{
    display: flex;
    flex-wrap: wrap;
    column-gap: 50px;
    row-gap: 50px;
    padding: 0 5%;
} */

.faq-block__inner {
    /* -moz-column-count:2;
    -moz-column-gap: 3%;
    -moz-column-width: 30%;
    -webkit-column-count:3;
    -webkit-column-gap: 3%;
    -webkit-column-width: 30%;
    column-count: 2;
    column-gap: 3%;
    column-width: 30%; */
    padding: 0 5%;
}
.faq-block__inner:after {
    content: '';
    display: table;
    clear: both;
}
.accordion {
    margin-bottom: 20px;
}

.faq-block__inner-right {
    float: right;
    width: 50%;
}
.faq-block__inner-left {
    float: left;
    width: 50%;
}
.faq-block__inner-left .accordion .accordion__inner {
    margin-right: 20px;
}
.faq-block__inner-right .accordion .accordion__inner {
    margin-left: 20px;
}
/* .accordion:nth-child(even) .accordion__inner{
    margin-left: 20px;
} */
.accordion__head {
    position: relative;
    padding: 16px 50px 16px 27px;
    background-color: #4c301d;
    text-transform: uppercase;
    color: #fff;
}
.accordion__head-read {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 22px;
    height: 22px;
    background-color: transparent;
    border: 0;
    cursor: pointer;
    color: #fff;
}
.accordion__head-read::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px;
    height: 100%;
    border-right: 1px solid currentColor;
    transform: translate(-50%, -50%);
    transition: 0.3s ease-in-out;
}
.accordion__head-read::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px;
    height: 100%;
    border-right: 1px solid currentColor;
    transform: translate(-50%, -50%) rotate(90deg);
    transition: 0.3s ease-in-out;
}
.accordion__head-read.accordion__head-read--active::before {
    color: transparent;
}
.accordion__content {
    padding: 20px 80px 20px 20px;
    position: relative;
}
.accordion__text {
    /* max-height: 93px; */
    max-height: 242px;
    overflow: hidden;

    font-weight: 300;
    font-size: 16px;
    line-height: 150%;
    color: #000000;
    transition: 0.3s ease;
}
.accordion__text p {
    font-weight: 300;
    font-size: 16px;
    line-height: 150%;
}

.accordion--active .accordion__text {
    max-height: 1000vh;
}
.accordion__pdf {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 38px;
}
.accordion__read-more {
    display: inline-block;
    margin-top: 20px;
    font-style: italic;
    font-weight: 300;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0.05em;
    text-decoration-line: underline;
    color: #000000;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

@media (max-width: 780px) {
    .faq-block__inner-right {
        float: none;
        width: 100%;
    }
    .faq-block__inner-left {
        float: none;
        width: 100%;
    }
    .faq-block__inner-right .accordion .accordion__inner {
        margin: 0;
    }
    .faq-block__inner-left .accordion .accordion__inner {
        margin: 0;
    }
}
.care-accordion {
    /*margin-bottom: 60px;*/
}
.care-accordion__inner {
    padding: 50px 5%;
}

.care-accordion .cs-text {
    max-width: 1300px;
    margin: 0 auto;
    margin-bottom: 40px;
    text-align: center;
}
.accord dt {
    padding: 15px 25px;
    border-bottom: 1px solid var(--accent-color);
    transition: 0.3s ease-in-out;
}
.accord dt.active {
    background-color: rgba(153, 124, 94, 0.2);
    border-color: transparent;
}
.accord dd {
    padding: 15px 25px;
}
.accord dd.active {
    border-bottom: 1px solid var(--accent-color);
}
/* .accord dt:last-of-type,
.accord dd:last-of-type {
    border-bottom: 1px solid black;
} */
.accord dt a {
    display: block;
    color: black;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}

.accord dt a {
    position: relative;
}
.accord dt.active a::after {
    transform: translateY(-50%) rotate(180deg);
}
.accord dt a::after {
    /* chevron up and down */

    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 22px;
    height: 22px;
    background-color: transparent;
    border: 0;
    cursor: pointer;
    color: #fff;
    transform: translateY(-50%);
    transform-origin: center;
    transition: 0.3s ease-in-out;

    background-image: url(/images/misc/chevron.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.accord dd {
    border-top: 0;
    font-size: 16px;
    line-height: 130%;
    font-weight: 300;
}
.accord dd:last-of-type {
    border-top: 1px solid transparent;
    position: relative;
    top: -1px;
}

.accord-files {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
}

a.faq-file {
    display: flex;
    align-items: center;
    position: relative;
    background-color: var(--accent-color);
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    margin-top: 30px;
    width: fit-content;
    padding: 10px;
    padding-left: 35px;
    transition: 0.3s ease;
    margin-left: auto !important;
}
a.faq-file:hover {
    background-color: #b49675;
}
a.faq-file::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10px;
    width: 20px;
    height: 20px;
    background-image: url('/images/misc/pdf-icon 1.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: translateY(-50%);
}
.main-faq-file a.faq-file {
    position: relative;
    top: -50px;
    margin: 0 auto;
}
.accord-files a.faq-file {
    margin-right: 15px;
}

/* === /FAQ PAGE END === */

/* === CONTACT US PAGE === */

.contact-intro {
    padding-top: 42px;
    padding-bottom: 42px;
    background-color: var(--accent-background);
}
.contact-intro__inner {
    max-width: 1166px;
    margin: 0 auto;
    padding: 0 5%;
}
.contact-intro__text {
    text-align: center;
    font-weight: 300;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
}

.contact-section {
    /* padding: 90px 0 0; */
    /* Floating form labels */
    /* / Floating form labels */
}

.contact-section .tab {
    padding: 90px 0 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.location-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 50px;
    padding: 80px 0 50px 0;
}

.location-tabs button {
    position: relative;
    color: var(--Dark-brown, #4c301d);
    font-size: clamp(16px, 1.5vw, 18px);
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    padding: 5px 10px;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    border: 0;
    background-color: transparent;
    cursor: pointer;
}
.location-tabs button:not(:first-of-type)::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -25px;
    width: 1px;
    height: 20px;
    background-color: var(--Dark-brown, #4c301d);
    transform: translateY(-50%);
}
.location-tabs button.active {
    background: rgba(153, 124, 94, 0.2);
}

@media (max-width: 500px) {
    .location-tabs {
        flex-direction: column;
        row-gap: 5px;
    }
    .location-tabs button:not(:first-of-type)::before {
        display: none;
    }
}

.contact-section .map-address-container {
    max-width: 1550px;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 10%;
    margin: 0 auto 80px;
}

.contact-section .mac-map {
    display: block;
    width: calc(100% - 40px);
    margin: 0 auto;
    height: 675px;
    max-height: 900px;
    background: #777 no-repeat center center;
    background-size: cover;
}

.contact-section .mact-header {
    font-family: var(--font-family-accent);
    font-weight: 400;
    font-size: clamp(22px, 3vw, 30px);
    line-height: 150%;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 40px;
}
.contact-section__info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 35px;
    row-gap: 35px;
}
.contact-section__info-head {
    display: block;
    margin-bottom: 15px;
}
.contact-section__info-block p {
    font-weight: 300;
    font-size: 16px;
    line-height: 150%;
    color: #000000;
}
.contact-section__info-note {
    grid-column: 1/-1;
    border-left: 2px solid var(--accent-color);
    padding-left: 20px;

    font-family: var(--font-family-accent);
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0.05em;
    color: #000000;
}

.contact-section__info-note p {
    font-weight: 300;
    font-size: 16px;
    line-height: 150%;
    color: #000000;
}

/* .contact-section .mact-text {
    padding-bottom: 40px;
    border-bottom: 1px solid #000;
    margin-bottom: 30px;
    margin-right: 30px;
}

.contact-section .mact-text > *:not(:last-child) {
    margin-bottom: 30px;
}

.contact-section .mact-text p {
    color: rgba(35, 31, 32, 0.9);
    font-family: 'Lato', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 30px;
}

.contact-section .mact-text p.mt-small {
    font-size: 17px;
}

.contact-section .mact-text table {
    text-align: left;
    color: rgba(35, 31, 32, 0.9);
    font-family: 'Lato', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 30px;
}

.contact-section .mact-text table th {
    padding-right: 30px;
    text-align: left;
    font-weight: 400;
}

.contact-section .mact-social-link {
    display: inline-block;
    width: 34px;
    height: 34px;
    background: no-repeat center center;
    background-size: contain;
    font-size: 0;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
}

.contact-section .mact-social-link:not(:last-child) {
    margin-right: 40px;
}

.contact-section .mact-social-link:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.contact-section .mact-social-link.instagram {
    background-image: url('/images/icons/insta.png');
}

.contact-section .mact-social-link.google {
    background-image: url(/images/icons/google.png);
}

.contact-section .mact-social-link.facebook {
    background-image: url(/images/icons/facebook.png);
} */

.contact-section .csf-header {
    font-family: var(--font-family-accent);
    font-weight: 400;
    font-size: clamp(22px, 3vw, 30px);
    line-height: 150%;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 40px;
}

.contact-section .quote-message {
    display: none;
}

.contact-section .ffl-wrapper {
    position: relative;
    display: block;
    padding-top: 1rem;
    margin-bottom: 40px;
}

.contact-section .ffl-wrapper .ffl-label {
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 200ms;
    transition-duration: 200ms;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    position: absolute;
    white-space: nowrap;
    max-width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    pointer-events: none;
    top: 1.25rem;
}

.contact-section .ffl-wrapper.ffl-floated .ffl-label {
    top: 0;
}

.contact-section .ffl-label {
    color: #909090;
    line-height: 1.2;
}

.ffl-floated .contact-section .ffl-label {
    color: #5b4e40;
    font-size: 0.75rem;
}

.contact-section form {
    /* margin: 2rem auto 0; */
    /* padding: 1rem; */
    position: relative;
    text-align: left;
    max-width: 600px;
}
.contact-form__row {
    display: flex;
    column-gap: 25px;
    margin-bottom: 35px;
}
.contact-form__row .ffl-wrapper {
    width: 100%;
    margin: 0;
}
.contact-section form:after {
    content: '';
    display: block;
    clear: both;
}

.contact-section input,
.contact-section textarea,
.contact-section select {
    -webkit-transition: border-bottom 100ms ease;
    transition: border-bottom 100ms ease;
    display: block;
    width: 100%;
    padding: 0;
    /* margin-bottom: 1rem; */
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    background-color: transparent;
    border-style: none;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: var(--accent-color);
    height: 1.875rem;
}

.contact-section input:hover,
.contact-section textarea:hover,
.contact-section select:hover {
    border-bottom-width: 1px;
    border-bottom-color: #909090;
}

.contact-section input:focus,
.contact-section textarea:focus,
.contact-section select:focus {
    border-bottom-width: 1px;
    border-bottom-color: #5b4e40;
}

.contact-section textarea {
    resize: none;
    padding-top: 5px;
    padding-right: 50px;
    min-height: 101px;
}

.contact-section input.error,
input.error,
.contact-section textarea.error,
textarea.error,
.contact-section select.error,
select.error {
    border-bottom-color: #ff0000;
}

.contact-section label > span {
    color: #cccccc;
}

.contact-section [type='submit'] {
    display: block;
    border: 0;
    font-size: 0;
    width: 33px;
    height: 29px;
    position: absolute;
    bottom: 10px;
    right: 20px;
    background: url('/images/icons/icon_send.png') no-repeat center center;
    background-size: contain;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
}

.contact-section [type='submit']:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

#contact-form .quote-message {
    display: none;
    position: absolute;
    left: 50%;
    bottom: 50%;
    width: 225px;
    padding: 10px;
    margin-left: -120px;
    background-color: #fff;
    font-size: 8pt;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

#contact-form .gm-wrong {
    border: 3px solid #ff0000;
}

#contact-form .gm-wrong a:link,
#contact-form .qm-wrong a:visited {
    font-size: 10pt;
}

#contact-form .gm-right {
    border: 3px solid #0f4771;
}

#contact-form .qf_done {
    text-align: center;
    color: #0f4771;
    line-height: 150%;
    font-size: 14px;
}

#contact-form .qf-close {
    text-align: center;
    padding: 10px 0;
}

#contact-form .qf_error span {
    display: block;
    padding-bottom: 10px;
    font-weight: bold;
}

#contact-form .qf_error,
#contact-form .gm-right {
    font-size: 14px;
}

#contact-form .qf_error div {
    color: #ff0000;
    padding-top: 3px;
}

#contact-form .fe-label {
    font-size: 18px;
    color: #ff0000;
}

.common-list {
    margin-left: 1em;
    display: inline-block;
    vertical-align: top;
    color: rgba(35, 31, 32, 0.9);
    font-family: 'Lato', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.33;
}

.common-list li {
    text-transform: capitalize;
}

.common-list:not(:last-child) {
    margin-right: 5%;
}

.select-block {
    position: relative;
    /* margin-bottom: 20px; */
    /* box-shadow: 0 0 5px rgba(0, 0, 0, 0.1); */
}

/* .select-block:not(:last-child) {
    margin-right: 25px;
} */

.select-options {
    display: none;
    padding: 10px 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 50px;
    left: 0;
    z-index: 1;
    min-width: 200px;
    background: #fff;
}

.select-options span {
    float: left;
    clear: both;
    cursor: pointer;
    font-size: 18px;
    margin: 5px 0;
}

.select-options span:hover {
    text-decoration: underline;
}

.spec-val {
    display: inline-block;
    width: 100%;
    min-width: 200px;
    padding: 10px 40px 10px 10px;
    box-sizing: border-box;
    font-weight: 300;
    font-size: 20px;
    cursor: pointer;
    color: #000;
    background: #fff url('/images/misc/chevron.svg') 95% 50% no-repeat;

    position: relative;
}
.spec-val::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 100%;
    background-color: rgba(153, 124, 94, 0.25);
}
.resources-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    column-gap: 20px;
    row-gap: 10px;
}

.resources-tabs a {
    display: flex;
    padding: 10px 40px;
    justify-content: center;
    align-items: center;

    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%; /* 17.6px */
    text-transform: uppercase;

    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    transition: 0.3s ease;
}

.resources-tabs a:hover {
    background-color: var(--accent-color);
    color: #fff;
}

.resources-tabs a.active {
    background-color: var(--accent-color);
    color: #fff;
}

@media (max-width: 768px) {
    .resources-tabs {
        flex-direction: column;
    }
    .resources-tabs a {
        width: 100%;
    }
}

.tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: stretch;
    align-items: center;
    column-gap: 15px;
    row-gap: 5px;
    margin-bottom: 20px;
    margin-top: 50px;
}
.mt-0 {
    margin-top: 0;
}
.tabs button {
    flex: 1 0 227px;
    background-color: transparent;
    border: 1px solid #997c5e;
    padding: 10px 20px;
    text-transform: uppercase;
    color: #997c5e;
    transition: 0.3s ease;
    cursor: pointer;
}
.tabs button:hover {
    background-color: #997c5e;
    color: #fff;
}
.tabs button.current {
    background-color: #997c5e;
    color: #fff;
}

.tab {
    display: none;
}
.tab.current {
    display: block;
}

.careers {
    padding: 50px 0;
}

.careers__inner {
    padding: 0 5%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 50px;
    row-gap: 50px;
}

.careers__item {
    display: flex;
    flex-direction: column;
    padding: 30px;
    border: 1px solid rgba(153, 124, 94, 0.5);
    transition: 0.3s ease;
    color: #000;
    text-align: center;
}

.careers__item:hover {
    border: 1px solid var(--accent-color);
    background-color: rgba(153, 124, 94, 0.14);
}

.careers__item-title {
    font-size: clamp(20px, 2vw, 30px);
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 45px */
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.careers__item-link {
    font-size: clamp(16px, 2vw, 20px);
    font-style: italic;
    font-weight: 300;
    line-height: 150%; /* 30px */
    letter-spacing: 1px;
}

.career-single {
    padding: 50px 0;
    margin: 0 5%;
}

.career-single__inner {
    padding: 0 5%;
    border-left: 3px solid var(--accent-color);
}

.career-single__title {
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 45px */
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.career-single__subtitle {
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 12px;
}
.career-single__inner ul {
    padding-left: 35px;
}
.career-single__inner ul li {
    margin-bottom: 5px;
}

.career-single__actions {
    display: flex;
    align-items: center;
    column-gap: 30px;
    margin-top: 60px;
}

#employment-popup {
    display: none;
    width: 100%;
    max-width: 766px;
}

.employment-popup__title {
    font-size: clamp(20px, 2vw, 30px);
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 45px */
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 35px;
    grid-column: 1/-1;
    text-align: center;
}

#employment-popup .ffl-wrapper {
    position: relative;
    display: block;
    padding-top: 1rem;
    margin-bottom: 40px;
}

#employment-popup .ffl-wrapper .ffl-label {
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 200ms;
    transition-duration: 200ms;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    position: absolute;
    white-space: nowrap;
    max-width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    pointer-events: none;
    top: 1.25rem;
}

#employment-popup .ffl-wrapper.ffl-floated .ffl-label {
    top: 0;
}

#employment-popup .ffl-label {
    color: #909090;
    line-height: 1.2;
}

.ffl-floated #employment-popup .ffl-label {
    color: #5b4e40;
    font-size: 0.75rem;
}

#employment-popup form {
    /* margin: 2rem auto 0; */
    /* padding: 1rem; */
    position: relative;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 30px;
}

@media (max-width: 500px) {
    #employment-popup form {
        grid-template-columns: 1fr;
    }
}

.contact-form__row .ffl-wrapper {
    width: 100%;
    margin: 0;
}

#employment-popup input:not([type='file']),
#employment-popup textarea,
#employment-popup select {
    -webkit-transition: border-bottom 100ms ease;
    transition: border-bottom 100ms ease;
    display: block;
    width: 100%;
    padding: 0;
    /* margin-bottom: 1rem; */
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    background-color: transparent;
    border-style: none;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: var(--accent-color);
    height: 1.875rem;
}

#employment-popup input:hover,
#employment-popup textarea:hover,
#employment-popup select:hover {
    border-bottom-width: 1px;
    border-bottom-color: #909090;
}

#employment-popup input:focus,
#employment-popup textarea:focus,
#employment-popup select:focus {
    border-bottom-width: 1px;
    border-bottom-color: #5b4e40;
}

#employment-popup textarea {
    resize: none;
    padding-top: 5px;
    min-height: 101px;
}

#employment-popup input:not([type='file']).error,
#employment-popup textarea.error,
#employment-popup select.error {
    border-bottom-color: #ff0000;
}

#employment-popup label > span {
    color: #cccccc;
}

#employment-popup form > button {
    display: flex;
    align-items: center;
    column-gap: 10px;
    background-color: var(--accent-color);
    color: #fff;
    border: 0;
    width: max-content;
    padding: 10px 20px;
    margin: 0 auto;
    grid-column: 1/-1;
    cursor: pointer;
    text-transform: uppercase;
}

.btn {
    display: flex;
    align-items: center;
    column-gap: 5px;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 27px */
    letter-spacing: 0.9px;
    text-transform: uppercase;
    color: #4c301d;
    border: 1px solid #4c301d;
    padding: 10px 20px;
    transition: 0.3s ease;
}

.btn:hover {
    background-color: var(--accent-color);
    color: #fff;
}

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

.no-products {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: clamp(25px, 4vw, 38px);
}

.search-intro {
    background-color: #f5f2ee;
    padding: 50px 5% 50px 5%;
}

.search-intro p {
    color: #000;
    text-align: center;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.search-knowledge ul {
    width: 100%;
    max-width: 60vw;
    margin: 0 auto;
    display: grid;
    /* padding: 42px 5% 74px 5%; */
    padding: 10px 5% 10px 5%;
    grid-template-columns: 1fr 1fr;
    column-gap: 10px;
    grid-auto-rows: max-content;
    list-style: none;
}
@media (max-width: 1100px) {
    .search-knowledge ul {
        max-width: 100%;
    }
}

@media (max-width: 700px) {
    .search-knowledge ul {
        grid-template-columns: 100%;
    }
}

.search-knowledge ul li {
    margin-bottom: 20px;
}

.search-knowledge ul li a {
    position: relative;
    display: block;
    padding: 5px 5px 5px 25px;
    font-weight: 300;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #000;
    transition: 0.2s ease;
    transition-delay: 0.1s;
}
.search-knowledge ul li a:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background-color: var(--accent-color);
    transition: 0.2s ease-in-out;
}

.search-knowledge ul li:hover a {
    position: relative;
    color: #fff;
    z-index: 1;
}
.search-knowledge ul li:hover a:after {
    width: 100%;
    background-color: #997c5e99;
    z-index: -1;
}

@media (max-width: 1800px) {
    .advantages-section {
        padding: 60px 50px;
    }
}

@media (max-width: 1700px) {
    .nsa-next {
        right: 50px;
    }

    .nsa-prev {
        left: 50px;
    }

    body .swiper-pagination.main-slider-pagination.swiper-pagination-bullets {
        right: 50px;
    }

    .header-nav {
        padding: 0 50px;
    }

    .header-nav .h-nav-submenu .h-nav-link {
        margin-left: 134px;
    }

    .header-nav .h-nav-submenu {
        padding: 20px 53px;
    }

    .header-nav .h-nav-submenu .h-nav-link:not(:last-child):before {
        right: -39px;
    }

    .header-nav .header-logo {
        left: 50px;
    }

    .home-slider-wrapper .bx-wrapper .bx-prev {
        left: 50px;
    }

    .home-slider-wrapper .bx-wrapper .bx-next {
        right: 50px;
    }

    .home-slider-wrapper .bx-wrapper .bx-pager {
        right: 50px;
    }

    .home-slider-wrapper .hst-phone {
        left: 50px;
    }

    .wood-flooring-section {
        padding: 40px 50px;
    }

    .welcome-section {
        padding: 40px 50px;
    }

    .catalog-filters .pfr-species-column {
        border-right: 0;
        padding: 5px 0;
    }

    /* .catalog-filters {
        padding: 60px 50px 0;
    } */

    .collections-section .cs-text {
        padding: 0 50px;
    }

    .product-list-intro {
        padding: 60px 50px 0;
    }

    .product-list-container {
        padding: 0 50px 60px;
    }

    /* .product-list-container .plc-item {
        width: 28vw;
        height: 20vw;
    } */

    .product-item-intro {
        padding: 60px 50px;
    }

    .product-item-images {
        padding: 0 50px;
    }

    .product-details-section {
        padding: 0 50px 80px;
    }

    .product-item-images .pi-interiors-slider-wrapper .pii-slider-item {
        height: 40vw;
    }

    .product-item-images .pi-products-slider-wrapper .pip-collection {
        font-size: 16px;
    }

    .product-item-images .pi-products-slider-wrapper .pip-species {
        font-size: 16px;
    }

    .knowledge-section {
        padding: 100px 0 80px 50px;
    }

    .knowledge-section .ks-text-column {
        -ms-flex-negative: 2;
        flex-shrink: 2;
        max-width: 46vw;
    }

    .gallery-section {
        padding: 70px 50px;
    }

    .gallery-section .collection .gi-header {
        font-size: 32px;
    }
}

@media (max-width: 1500px) {
    .collections-section .grid-item {
        width: 31vw;
    }

    .collections-section .gi-header {
        font-size: 32px;
    }

    /* .product-list-container .plc-item {
        width: 27vw;
        height: 20vw;
    } */

    .product-item-images .pi-products-slider-wrapper .pip-species {
        display: block;
    }

    .product-item-images .pi-interiors-slider-wrapper .bx-wrapper .bx-prev,
    .product-item-images .pi-interiors-slider-wrapper .bx-wrapper .bx-next {
        width: 60px;
        height: 60px;
        background-size: 18px 30px;
    }
}

@media (max-width: 1470px) {
    .header-nav .h-nav-submenu .h-nav-link:not(:first-child) {
        margin-left: 80px;
    }

    .header-nav .h-nav-item:not(:last-child) {
        margin-right: 25px;
    }
}

@media (max-width: 1430px) {
    .a-items > div {
        width: 31.3%;
    }
}

@media (max-width: 1400px) {
    #lightbox .name-species {
        font-size: 32px;
    }

    #lightbox .pager {
        font-size: 32px;
    }

    #lightbox .pager {
        margin: 0 20px;
    }

    #lightbox .lbns-prev,
    #lightbox .lbns-next {
        width: 20px;
        height: 30px;
    }

    #lightbox .lb-controls {
        padding-top: 2vw;
    }
}

@media (max-width: 1300px) {
    .main-slider .si-header1 {
        font-size: 36px;
        padding: 0 60px;
    }

    .main-slider .si-header2 {
        font-size: 48px;
        padding: 0 60px;
    }

    .home-carousel-section {
        height: 500px;
    }

    .home-carousel-section #home-carousel {
        height: 350px;
    }

    .home-carousel-section .ci-header {
        font-size: 30px;
    }

    .home-carousel-section .ci-image {
        width: 300px;
    }

    .gallery-section .collection .gi-header {
        font-size: 26px;
    }
}

@media (max-width: 1275px) {
    .advantages-section .as-advantages-container {
        grid-template-columns: repeat(3, 1fr);
    }
    .header-nav .h-nav-submenu .h-nav-link:not(:first-child) {
        margin-left: 80px;
    }

    .header-nav .h-nav-item:not(:last-child) {
        margin-right: 10px;
    }
}

@media (max-width: 1200px) {
    .collections-section .gi-header {
        font-size: 26px;
    }

    .collections-section .grid-item:hover .gi-header {
        margin-bottom: 10px;
    }

    .collections-section .grid-item:hover .gi-subheader {
        font-size: 18px;
    }

    .collections-section .gi-overlay {
        border: 4px solid rgba(255, 255, 255, 0.6);
    }

    .product-details-section {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .product-details-section .pd-column:not(:last-child) {
        margin-bottom: 40px;
    }

    .product-item-images .pi-products-slider-wrapper .pip-slider-item {
        height: 160px;
    }

    .product-item-images .pi-products-slider-wrapper .pip-text {
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        text-align: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .knowledge-section .ks-text-column {
        max-width: 36vw;
    }
}

@media (max-width: 1100px) {
    .header-nav .header-logo {
        width: 150px;
    }

    .member-of-section .mos-item {
        width: 200px;
    }

    .contact-section .mac-map {
        margin-left: 0;
        width: 100%;
    }

    .contact-section .mact-text {
        padding: 0 20px 40px;
    }

    .gallery-section .gi-header {
        font-size: 18px;
    }
    .common-list.common-list--locations {
        column-count: 4;
        column-gap: 50px;
    }
}

@media (max-width: 1070px) {
    .about-section .asft-text-column {
        width: 100%;
        margin: 0;
    }
    .header-nav .h-hav {
        display: none;
    }

    .responsive-menu-trigger {
        display: block;
    }

    .header-nav {
        padding: 0 20px;
    }

    .header-nav .header-logo {
        left: 20px;
        width: unset;
    }
}

@media (max-width: 1010px) {
    .a-items > div {
        width: 48%;
    }
}

@media (max-width: 1000px) {
    .home-slider-wrapper .hst-phone {
        display: none;
    }

    .home-slider-wrapper .bx-wrapper .bx-pager {
        display: none;
    }

    .home-slider-wrapper .bx-wrapper .bx-prev {
        left: 20px;
    }

    .home-slider-wrapper .bx-wrapper .bx-next {
        right: 20px;
    }

    .wood-flooring-section {
        padding: 40px 20px;
    }

    .welcome-section {
        padding: 40px 20px;
    }

    .advantages-section {
        padding: 60px 20px;
    }

    .home-about-section {
        padding: 40px 20px;
    }

    .home-about-section .has-text {
        width: 100%;
        padding: 20px;
        text-align: center;
    }

    .catalog-filters {
        padding: 10px 20px 10px;
    }

    .collections-section .cs-text {
        padding: 0 20px;
    }

    .product-list-intro {
        padding: 60px 20px 0;
    }

    .product-list-container {
        padding: 0 20px 60px;
    }

    /* .product-list-container .plc-item {
        width: 42vw;
        height: 28vw;
    } */

    .product-item-intro {
        padding: 60px 20px;
    }

    .product-item-images {
        padding: 0 20px;
    }

    .product-details-section {
        padding: 0 20px 80px;
    }

    .knowledge-section {
        padding: 100px 20px 80px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
    }

    .knowledge-section .ks-text-column {
        margin-right: 0;
        max-width: unset;
        width: auto;
        margin-bottom: 40px;
    }

    .knowledge-section .ks-carousel-column {
        width: 100%;
    }

    .knowledge-section .hcs-controls {
        left: 50%;
        -webkit-transform: translateX(-64px);
        transform: translateX(-64px);
    }

    .gallery-section {
        padding: 70px 20px;
    }

    .gallery-section .grid-item {
        width: 280px;
    }
}

@media (max-width: 930px) {
    .contact-section .map-address-container {
        justify-content: space-between;
    }
}

@media (max-width: 910px) {
    .contact-section .mac-map {
        height: 395px;
    }
}

@media (max-width: 900px) {
    .contact-section form {
        width: 350px;
    }

    .header-nav .header-logo {
        width: 180px;
    }

    .collections-section .grid-item {
        width: 280px;
    }

    .collections-section .cs-header {
        font-size: 48px;
        letter-spacing: 10px;
        position: relative;
        margin: 0 0 30px 0;
    }

    .collections-section .cs-header:before {
        display: none;
    }

    .catalog-filters .pfr-header {
        display: block;
        margin-bottom: 10px;
    }

    .catalog-filters .pfr-species-column {
        display: block;
        margin-bottom: 30px;
    }

    .catalog-filters .pfr-collections-column {
        display: block;
        margin-bottom: 30px;
    }

    .catalog-filters .pfr-finish-column {
        display: block;
    }

    .catalog-filters #cf-menu-trigger {
        font-size: 26px;
        padding: 10px 20px;
    }

    .catalog-filters.menu-open #cf-menu-trigger {
        font-size: 26px;
        padding: 10px 50px 10px 20px;
    }

    .catalog-filters #cf-menu-trigger:after {
        top: 5%;
        right: 20px;
    }

    .inner-page-header {
        height: 300px;
        min-height: unset;
    }

    .inner-page-header2 {
        min-height: 340px;
    }

    .product-item-images .pii-categories {
        left: 20px;
        bottom: 20px;
    }

    .product-item-images .pii-collection {
        font-size: 32px;
    }

    .product-item-images .pii-species {
        font-size: 26px;
    }

    .product-item-images .pi-interiors-slider-wrapper .bx-wrapper .bx-prev,
    .product-item-images .pi-interiors-slider-wrapper .bx-wrapper .bx-next {
        width: 30px;
        height: 30px;
        background-size: 8px 16px;
    }

    .product-item-images .pi-products-slider-wrapper .bx-wrapper .bx-prev {
        margin-right: 20px;
    }

    .product-item-images .pi-products-slider-wrapper .bx-wrapper .bx-prev:before {
        width: 60px;
    }

    .product-item-images .pi-products-slider-wrapper .bx-wrapper .bx-next:after {
        width: 60px;
    }
    .catalog-filters .pf-grid {
        display: block;
    }
    .catalog-filters.products-list {
        padding: 20px;
    }
}

@media (max-width: 800px) {
    .about-slider {
        height: 232px;
    }

    .about-next {
        right: 20px;
    }

    .about-prev {
        left: 20px;
    }

    .member-of-section .mos-items-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .member-of-section .mos-item:not(:last-child) {
        margin-bottom: 40px;
    }

    #lightbox {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 0 20px;
    }

    #lightbox .lb-thumbs-slider-wrapper {
        display: none;
    }

    #lightbox .lb-controls {
        padding-top: 0;
        margin-right: 0;
        text-align: center;
    }

    #lightbox .name-species {
        margin-bottom: 20px;
    }

    #lightbox .lb-main-image {
        width: 66vw;
        height: 50vw;
    }
}

@media (max-width: 790px) {
    .contact-section .map-address-container {
        display: block;
        /* align-items: center;
        text-align: center; */
    }
    .contact-section__info {
        margin-bottom: 60px;
    }

    .contact-section .mact-text table {
        margin: 0 auto;
    }

    .contact-section form {
        width: 100%;
        max-width: 100%;
    }

    .mact-social-container {
        margin-bottom: 50px;
    }
}

@media (max-width: 767px) {
    .inner-page-header {
        height: 170px;
    }
    .inner-page-header__video {
        height: 100%;
    }
    .inner-page-header__video video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .main-slider {
        display: none;
    }

    .main-slider-responsive {
        display: block;
    }

    .main-slider-responsive .main-slide {
        height: 400px;
    }

    body .swiper-pagination.main-slider-pagination.swiper-pagination-bullets {
        display: none;
    }

    .home-slider-wrapper .sr-room-img,
    .main-slider .sr-room-img {
        height: 400px;
    }

    .sr-room-img {
        display: none;
    }

    .home-slider-wrapper .sr-room-img-small,
    .main-slider-responsive .sr-room-img-small {
        display: block;
    }

    .nested-slider {
        display: none;
    }

    .main-slider-responsive .si-header1 {
        font-size: 24px;
        letter-spacing: 2px;
    }

    .main-slider-responsive .si-header2 {
        font-size: 30px;
        letter-spacing: 4px;
    }

    .main-slider-responsive .si-text {
        top: 50%;
    }

    .main-slider-responsive .hst-explore-more {
        bottom: 15px;
        padding-bottom: 20px;
        font-size: 14px;
        background-size: 20px 16px;
    }
}

@media (max-width: 750px) {
    .a-items {
        flex-wrap: wrap;
    }
}

@media (max-width: 700px) {
    .home-carousel-section {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .home-carousel-section .hcs-controls {
        display: block;
    }

    .home-carousel-section .carousel-item {
        text-align: center;
        max-width: 250px;
        padding: 20px;
        border-left: 2px solid rgba(33, 33, 33, 0.75);
    }

    .home-carousel-section .ci-header {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .home-carousel-section .ci-image {
        width: 150px;
    }

    .home-carousel-section .ci-arrow {
        width: 20px;
    }

    .home-carousel-section {
        height: 400px;
    }

    .home-carousel-section #home-carousel {
        height: 250px;
    }

    .about-section .carousel-item {
        width: 280px;
        height: 210px;
    }

    .about-section .hcs-controls {
        top: 146px;
    }

    .about-section #about-carousel {
        height: 250px;
    }
}

@media (max-width: 690px) {
    .advantages-section .as-advantages-container {
        grid-template-columns: repeat(2, 1fr);
    }
    /* .advantages-section .asa-item {
        max-width: 48%;
    } */
    .catalog-filters .cf-body form {
        display: flex;
        flex-direction: column;
        row-gap: 10px;
        justify-content: stretch;
        align-items: stretch;
    }
    .catalog-filters .cf-body form .ms-parent {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .gallery-fade {
        height: 60px;
        opacity: 1;
        top: auto;
    }
}

@media (max-width: 635px) {
    .common-list,
    .common-list:not(:last-child) {
        font-size: 28px;
        display: block;
        width: 195px;
        margin: 0 auto;
    }
    .common-list.common-list--locations {
        column-count: 2;
        width: 90%;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .contact-section .mac-map {
        height: 280px;
    }

    .header-nav .header-logo {
        width: 130px;
    }

    .about-section .asft-text {
        column-count: 1;
    }

    .member-of-section .mos-border {
        padding: 35px 20px 20px;
    }

    .member-of-section .mos-item {
        width: 200px;
    }

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

    .knowledge-section .carousel-item {
        width: 260px;
        height: 312px;
    }

    .knowledge-section #knowledge-carousel {
        height: 350px;
    }

    .knowledge-section .hcs-controls {
        top: 248px;
    }

    #lightbox .name-species {
        font-size: 24px;
    }

    #lightbox .pager {
        font-size: 24px;
        margin: 0 10px;
    }

    #lightbox .lbns-prev,
    #lightbox .lbns-next {
        width: 14px;
        height: 20px;
    }
}

@media (max-width: 550px) {
    .contact-section__info {
        grid-template-columns: 100%;
    }
}

@media (max-width: 500px) {
    .collections-section .cs-header {
        font-size: 32px;
        letter-spacing: 5px;
    }

    .product-list-container {
        grid-template-columns: 100%;
    }
    .product-list-container .plc-item {
        width: 100%;
        height: 60vw;
        min-height: 300px;
    }

    .product-item-images .pi-products-slider-wrapper .bx-wrapper .bx-prev:before {
        display: none;
    }

    .product-item-images .pi-products-slider-wrapper .bx-wrapper .bx-next:after {
        display: none;
    }

    .product-details-section .pd-column {
        border-left: 0;
        padding: 0;
    }

    .product-item-images .pii-collection {
        font-size: 28px;
    }

    .product-item-images .pii-species {
        font-size: 20px;
    }

    .product-item-images .pi-products-slider-wrapper .pip-slider-item {
        height: 24vw;
    }

    .product-item-images .pi-products-slider-wrapper .bx-controls-direction {
        margin-top: 10px;
    }

    .product-details-section .pdc-table th {
        padding-right: 10px;
    }
    .contact-form__row {
        flex-direction: column;
        margin: 0;
    }
    .contact-form__row .ffl-wrapper {
        margin-bottom: 20px;
        max-width: 100% !important;
    }
}

@media (max-width: 400px) {
    .catalog-filters .pfr-species-label:not(:last-child) {
        margin-right: 0;
    }

    .catalog-filters .pfr-species-label {
        display: block;
    }

    .catalog-filters .pfr-label:not(:last-child) {
        margin-right: 0;
    }

    .catalog-filters .pfr-label {
        display: block;
    }

    .home-slider-wrapper .si-text {
        top: 40%;
    }

    .contact-section .mact-text table th {
        padding-right: 5px;
    }

    .advantages-section .as-advantages-container {
        grid-template-columns: 100%;
    }
    /* .advantages-section .asa-item {
        max-width: 98%;
    } */
}

.not-found {
    padding: 50px 0;
    text-align: center;
    font-size: 14pt;
}

#google_translate_element {
    /* position: absolute; */
    /* top: 5px; */
    /* right: 80px; */
}

#google_translate_element .goog-te-gadget {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 15px;
}
/* #google_translate_element .goog-te-gadget > :not(:first-child) {
    display: none;
} */
#google_translate_element .goog-te-combo {
    border-radius: 0;
    border: 0;
}
@media (max-width: 1070px) {
    #google_translate_element {
        right: 20px;
    }
}
@media (max-width: 550px) {
    #google_translate_element {
        right: 90px;
        top: 50%;
        /* transform: translateY(-50%); */
    }
    #google_translate_element .goog-te-gadget {
        display: initial;
    }
}

/* Dashboard Grid */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1660px;
    margin: 60px auto;
    padding: 0 130px;
}

.dashboard-card {
    background: #f5f2ee;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-height: 280px;
}

.dashboard-card:hover {
    background: #e8e4de;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.dashboard-card__icon {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-card__icon svg {
    width: 80px;
    height: 80px;
}

.dashboard-card__title {
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #4c301d;
    text-align: center;
    margin: 0;
}

@media (max-width: 1024px) {
    .dashboard-grid {
        padding: 0 40px;
        gap: 20px;
    }

    .dashboard-card {
        padding: 40px 30px;
        min-height: 240px;
    }
}

@media (max-width: 768px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
        margin: 40px auto;
    }

    .dashboard-card {
        min-height: 200px;
    }
}

/* Page Intro Links (Tabs) */
.page-intro__links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.page-intro__link {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    color: #4c301d;
    background: #f5f2ee;
    padding: 12px 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-intro__link:hover {
    background: #e8e4de;
}

.page-intro__link--active {
    background: #997c5e;
    color: #ffffff;
}

.page-intro__link--active:hover {
    background: #886b50;
}

@media (max-width: 768px) {
    .page-intro__links {
        flex-wrap: wrap;
        gap: 10px;
    }

    .page-intro__link {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Profile Form */
.profile-form-section {
    max-width: 1200px;
    margin: 30px auto 60px auto;
    padding: 0 50px;
}

.profile-form-container {
    background: #ffffff;
}

.profile-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.profile-form__row {
    display: grid;
    grid-template-columns: 120px 1fr 140px 1fr;
    gap: 20px;
    align-items: start;
}

.profile-form__label {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    white-space: nowrap;
    padding-top: 12px;
}

.profile-form__label--margin-left {
    margin-left: 20px;
}

@media (max-width: 900px) {
    .profile-form__label--margin-left {
        margin-left: 0;
    }
}

.profile-form__label--inline {
    padding-top: 0;
    margin-left: 15px;
    margin-right: 15px;
}

.profile-form__inputs {
    display: flex;
    flex-direction: column;
    position: relative;
}

.profile-form__inputs--full {
    grid-column: 2 / -1;
}

.profile-form__inputs--province-postal-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    grid-column: 4 / 5;
}

.profile-form__inputs--password {
    position: relative;
}

.profile-form__input {
    font-family: 'Hind', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    background: #ffffff;
    border: 1px solid #d0d0d0;
    padding: 12px 16px;
    outline: none;
    transition: border-color 0.3s ease;
    width: 100%;
}

.profile-form__input:focus {
    border-color: #997c5e;
}

.profile-form__input::placeholder {
    color: #999999;
}

.profile-form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23000000' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.profile-form__select--province {
    width: 100px;
    flex-shrink: 0;
}

.profile-form__input--postal {
    width: 120px;
    flex-shrink: 0;
}

.profile-form__update-link {
    font-family: 'Hind', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #000000;
    text-decoration: underline;
    margin-top: 8px;
}

.profile-form__update-link:hover {
    text-decoration: none;
}

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

/* Common Button Style - Outlined Brown Button */
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #997c5e;
    background-color: transparent;
    padding: 10px 25px;
    color: #997c5e;
    font-family: 'Hind', sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    white-space: nowrap;
    transition: all 0.25s;
    cursor: pointer;
    text-decoration: none;
}

.btn-outline svg {
    transition: all 0.25s;
}

.btn-outline:hover {
    background-color: #997c5e;
    color: #ffffff;
}

.btn-outline:hover svg path {
    stroke: #ffffff;
}

@media (max-width: 1024px) {
    .profile-form-section {
        padding: 0 40px;
    }
}

@media (max-width: 850px) {
    .profile-form__row {
        grid-template-columns: 100px 1fr;
    }

    .profile-form__inputs--full {
        grid-column: 2 / -1;
    }

    .profile-form__inputs--province-postal-group {
        grid-column: 2 / -1;
    }
}

@media (max-width: 768px) {
    .profile-form-section {
        padding: 0 20px;
        margin: 10px auto;
    }

    .profile-form__row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .profile-form__label {
        margin-bottom: 5px;
        padding-top: 0;
        margin-top: 20px;
    }

    .profile-form__inputs--full,
    .profile-form__inputs--province-postal-group {
        max-width: 100%;
        grid-column: auto;
    }

    .profile-form__inputs--province-postal-group {
        flex-direction: column;
        align-items: stretch;
    }

    .profile-form__label--inline {
        margin: 15px 0 5px 0;
        padding-top: 0;
    }

    .profile-form__select--province,
    .profile-form__input--postal {
        width: 100%;
    }

    .profile-form {
        gap: 0;
    }
}

/* Account Table */
.account-table-section {
    max-width: 1660px;
    margin: 60px auto;
    padding: 0 50px;
}

.account-table-wrapper {
    background: #ffffff;
}

/* Invoice Filter Tabs */
.invoice-filter-tabs {
    display: flex;
    gap: 8px;
    padding: 20px 40px;
    background: #f5f2ee;
}

.invoice-filter-tab {
    position: relative;
    cursor: pointer;
    user-select: none;
}

.invoice-filter-tab input[type='radio'] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.invoice-filter-tab__label {
    display: block;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.invoice-filter-tab:hover .invoice-filter-tab__label {
    border-color: #997c5e;
    color: #4c301d;
}

.invoice-filter-tab input[type='radio']:checked + .invoice-filter-tab__label {
    background: #997c5e;
    color: #fff;
    border-color: #997c5e;
}

/* Invoice Pagination */
.invoice-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 30px 40px 20px;
    background: #fff;
}

.invoice-pagination__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #666;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.invoice-pagination__btn:hover:not(:disabled) {
    border-color: #997c5e;
    color: #4c301d;
}

.invoice-pagination__btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.invoice-pagination__btn svg {
    width: 8px;
    height: 14px;
}

.invoice-pagination__pages {
    display: flex;
    gap: 4px;
}

.invoice-pagination__page {
    min-width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #666;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.invoice-pagination__page:hover {
    border-color: #997c5e;
    color: #4c301d;
}

.invoice-pagination__page.is-active {
    background: #997c5e;
    color: #fff;
    border-color: #997c5e;
}

.invoice-pagination__page.is-dots {
    border: none;
    cursor: default;
    pointer-events: none;
}

.account-table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.account-table {
    width: 100%;
    border-collapse: collapse;
}

.account-table thead {
    background-color: #4c301d;
}

.account-table thead th {
    color: #ffffff;
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
    text-align: left;
    padding: 16px 20px;
    white-space: nowrap;
}

@media (max-width: 1200px) {
    .account-table thead th {
        font-size: 12px;
        padding: 12px 15px;
    }
}

.account-table tbody tr {
    border-bottom: 1px solid #e5e5e5;
    transition: background-color 0.3s ease;
}

.account-table tbody tr:hover {
    background-color: #f5f2ee;
}

.account-table tbody td {
    padding: 20px;
    font-size: 14px;
    color: #000000;
    vertical-align: top;
}

.account-table__cell--nowrap {
    white-space: nowrap;
}

.account-table__cell--description {
    max-width: 400px;
}

.account-table tbody td.account-table__cell--vcenter {
    vertical-align: middle;
}

.account-table__link {
    display: inline-block;
    border: 1px solid #4c301d;
    background-color: transparent;
    padding: 8px 20px;
    color: #4c301d;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.25s;
}

.account-table__link:hover {
    background-color: #4c301d;
    color: #ffffff;
}

@media (max-width: 1024px) {
    .account-table-section {
        padding: 0 40px;
        margin: 40px auto;
    }
}

@media (max-width: 768px) {
    .account-table-section {
        padding: 0 20px;
        margin: 30px auto;
    }

    .account-table {
        border: 0;
    }

    .account-table thead {
        display: none;
    }

    .account-table tbody tr {
        display: block;
        margin-bottom: 20px;
        border: 1px solid #e5e5e5;
        border-radius: 0;
    }

    .account-table tbody tr:hover {
        background-color: #ffffff;
    }

    .account-table tbody td {
        display: block;
        text-align: left;
        padding: 12px 15px;
        border-bottom: 1px solid #f5f2ee;
        position: relative;
        padding-left: 50%;
    }

    .account-table tbody td:last-child {
        border-bottom: 0;
    }

    .account-table tbody td::before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        top: 12px;
        font-weight: 600;
        color: #4c301d;
        text-transform: uppercase;
        font-size: 12px;
        width: calc(50% - 30px);
    }

    .account-table__cell--nowrap {
        white-space: normal;
    }

    .account-table__cell--description {
        max-width: none;
    }
}

@media (max-width: 400px) {
    .account-table tbody td {
        padding-left: 15px;
        padding-top: 35px;
    }

    .account-table tbody td::before {
        position: static;
        display: block;
        margin-bottom: 5px;
        width: 100%;
    }
}

/* === PAYMENT SECTION === */
/* Invoice-specific styles */

.invoice-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #4c301d;
}

.account-table__cell--status {
    text-align: left;
}

.status-unpaid {
    color: #d32f2f;
    font-weight: 400;
}

.status-paid {
    color: #333333;
    font-weight: 400;
}

.invoice-pay-amount {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    padding-right: 0;
}

.invoice-pay-amount__label {
    font-size: 16px;
    font-weight: 400;
    color: #4c301d;
    white-space: nowrap;
}

.invoice-pay-amount__value {
    display: flex;
    align-items: center;
    gap: 10px;
}

.invoice-pay-amount__input {
    width: 120px;
    padding: 8px 12px;
    font-size: 16px;
    font-weight: 400;
    color: #4c301d;
    border: 1px solid #e5e5e5;
    border-radius: 0;
    background-color: #ffffff;
    text-align: right;
}

.invoice-pay-amount__currency {
    font-size: 16px;
    font-weight: 400;
    color: #4c301d;
}

.payment-section {
    padding: 60px 0 80px;
    background-color: #ffffff;
}

.payment-container {
    max-width: 1660px;
    margin: 0 auto;
    padding: 0 50px;
}

.payment-container .btn-outline {
    margin: 0 auto 25px;
    display: block;
    width: fit-content;
}

.payment-header {
    text-align: center;
    margin-bottom: 30px;
}

.payment-header__title {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.payment-header__subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    margin: 0;
}

.payment-divider {
    width: 100%;
    height: 1px;
    background-color: #4c301d;
    margin: 30px 0;
}

.payment-footer {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 40px;
}

.payment-cards {
    display: flex;
    align-items: center;
    gap: 12px;
}

.payment-cards__icon {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.payment-terms {
    text-align: center;
    font-size: 13px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.payment-terms__link {
    color: #333333;
    text-decoration: none;
    transition: color 0.3s;
}

.payment-terms__link:hover {
    color: #997c5e;
}

@media (max-width: 768px) {
    .payment-section {
        padding: 40px 0 60px;
    }

    .invoice-pay-amount {
        justify-content: center;
        margin-top: 25px;
    }

    .payment-footer {
        justify-content: center;
    }

    .payment-cards__icon {
        height: 30px;
    }

    .payment-cta {
        width: 100%;
        max-width: 300px;
    }

    .payment-terms {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 400px) {
    .invoice-pay-amount {
        flex-direction: column;
        gap: 8px;
    }

    .payment-cards {
        gap: 8px;
    }

    .payment-cards__icon {
        height: 28px;
    }
}

/* === /PAYMENT SECTION === */

/* === PAYMENT MODAL === */
.payment-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.payment-modal.is-open {
    visibility: visible;
    opacity: 1;
}

.payment-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.payment-modal__content {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    overflow-y: auto;
    padding: 30px 40px 60px;
    max-width: 1400px;
    margin: 0 auto;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.payment-modal.is-open .payment-modal__content {
    transform: translateY(0);
}

.payment-modal__header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid #4c301d;
}

.payment-modal__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 400;
    color: #4c301d;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.3s;
}

.payment-modal__back:hover {
    opacity: 0.7;
}

.payment-modal__back svg {
    width: 8px;
    height: 14px;
}

.payment-modal__invoice {
    background-color: #997c5e;
    color: #ffffff;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.payment-modal__cards {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}

.payment-modal__card-icon {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.payment-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.payment-form__column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.payment-form__section-title {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    text-transform: none;
    margin-bottom: 10px;
}

.payment-form__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.payment-form__field-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.payment-form__field-group--three {
    grid-template-columns: 2fr 1.2fr 1fr;
}

.payment-form__label {
    font-size: 13px;
    font-weight: 400;
    color: #333333;
}

.payment-form__input {
    width: 100%;
    padding: 12px 15px;
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    border: 1px solid #e5e5e5;
    border-radius: 0;
    background-color: #ffffff;
    transition: border-color 0.3s;
    font-family: 'Hind', sans-serif;
}

.payment-form__input:focus,
.payment-form__select:focus {
    outline: none;
    border-color: #997c5e;
}

.payment-form__input::placeholder {
    color: #999999;
}

.payment-form__input[readonly] {
    background-color: #f9f9f9;
    cursor: not-allowed;
}

.payment-form__select {
    width: 100%;
    padding: 12px 15px;
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    border: 1px solid #e5e5e5;
    border-radius: 0;
    background-color: #ffffff;
    transition: border-color 0.3s;
    font-family: 'Hind', sans-serif;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23333333' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.payment-form__select:hover {
    border-color: #997c5e;
}

.payment-form__footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.payment-form__terms {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 12px;
}

.payment-form__terms-link {
    color: #333333;
    text-decoration: none;
    transition: color 0.3s;
}

.payment-form__terms-link:hover {
    color: #997c5e;
}

@media (max-width: 1024px) {
    .payment-modal__content {
        padding: 25px 30px 50px;
    }

    .payment-form__row {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .payment-modal__content {
        padding: 20px 20px 40px;
    }

    .payment-form__row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .payment-modal__header {
        flex-wrap: wrap;
    }

    .payment-form__field-group--three {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .payment-form__field-group {
        grid-template-columns: 1fr;
    }

    .payment-modal__cards {
        gap: 8px;
    }

    .payment-modal__card-icon {
        height: 28px;
    }
}

/* === /PAYMENT MODAL === */

/* === PROCESSING MODAL === */
.processing-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.processing-modal.is-visible {
    opacity: 1;
    visibility: visible;
}

.processing-modal__content {
    background: #fff;
    padding: 40px 60px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.processing-modal__spinner {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #997c5e;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.processing-modal__text {
    font-size: 18px;
    font-weight: 500;
    color: #333;
}

/* === /PROCESSING MODAL === */

/* Back Link */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 600;
    color: #4c301d;
    text-decoration: none;
    text-transform: uppercase;
    margin-bottom: 20px;
    transition: opacity 0.3s ease;
}

.back-link:hover {
    opacity: 0.7;
}

.back-link svg {
    flex-shrink: 0;
}

/* Order Section */
.account-order-section {
    max-width: 1660px;
    margin: 60px auto;
    padding: 0 50px;
}

.account-order-wrapper {
    background: #ffffff;
}

/* Order Head */
.order-head {
    margin-bottom: 30px;
}

.order-head__title {
    font-size: 24px;
    font-weight: 500;
    color: #000000;
    margin: 0 0 20px 0;
}

.order-head__info {
    border-collapse: collapse;
    width: 100%;
    max-width: 300px;
}

.order-head__info th {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    text-align: left;
    padding-right: 10px;
    padding-bottom: 5px;
}

.order-head__info td {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    padding-bottom: 5px;
}

/* Invoice Head */
.invoice-head {
    margin-bottom: 30px;
}

.invoice-head__logo-section {
    padding: 30px 30px 0 30px;
    margin-bottom: 0;
}

.invoice-head__logo {
    display: block;
    max-width: 200px;
    height: auto;
}

.invoice-head__content {
    display: flex;
    gap: 30px;
    border-top: 0;
}

.invoice-head__company {
    flex: 1;
    padding: 30px 0;
}

.invoice-head__company-wrapper {
    max-width: 300px;
}

.invoice-head__company-info {
    font-size: 14px;
    line-height: 1.6;
    color: #000000;
}

.invoice-head__company-info p {
    margin: 0;
}

.invoice-head__details {
    flex: 1;
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.invoice-head__details-wrapper {
    max-width: 300px;
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.invoice-head__label {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 10px 0;
}

.invoice-head__table {
    border-collapse: collapse;
    width: 100%;
}

.invoice-head__table th {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    text-align: left;
    padding-right: 15px;
    padding-bottom: 5px;
}

.invoice-head__table td {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    padding-bottom: 5px;
}

.invoice-head__address {
    font-size: 14px;
    line-height: 1.6;
    color: #000000;
}

.invoice-head__address p {
    margin: 0;
}

/* Order Details */
.order-details {
    margin-bottom: 30px;
}

.order-details__title {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 15px 0;
}

.order-details .account-table-container {
    border: 0;
}

.order-details .account-table {
    border: 0;
}

.order-details .account-table tbody tr {
    border-bottom: 1px solid #e5e5e5;
}

/* .order-details .account-table tbody tr:last-child {
    border-bottom: 0;
} */

/* Product Image in Table */
.account-table__cell--image {
    width: 140px;
}

.order-product-image-wrapper {
    position: relative;
    width: 120px;
    padding-bottom: 90px; /* 4:3 ratio: (3/4) * 120px = 90px */
    overflow: hidden;
}

.order-product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.account-table__cell--bold {
    font-weight: 600;
}

/* Order Summary */
.order-summary {
    max-width: 300px;
    margin-left: auto;
}

.order-summary__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0;
}

.order-summary__label {
    font-size: 14px;
    font-weight: 600;
    color: #000000;
}

.order-summary__value {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
}

.order-summary__row--total .order-summary__label,
.order-summary__row--total .order-summary__value {
    font-size: 16px;
    font-weight: 600;
}

.order-summary__row--balance .order-summary__label,
.order-summary__row--balance .order-summary__value {
    color: #d32f2f;
}

.terms-agreement {
    max-width: 350px;
    margin: 20px 0 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.terms-agreement__label {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    line-height: 1.5;
    cursor: pointer;
}

.terms-agreement__link {
    color: #4c301d;
    text-decoration: underline;
}

.terms-agreement__link:hover {
    text-decoration: none;
}

.checkout-divider {
    margin: 30px 0 30px auto;
    height: 1px;
    background-color: #e5e5e5;
}

.checkout-section {
    max-width: 1200px;
    margin: 30px auto 60px auto;
}

.checkout-section__title {
    font-size: 18px;
    font-weight: 400;
    color: #d11919;
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-align: center;
}

.checkout-section.hidden {
    display: none;
}

.same-as-shipping {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.same-as-shipping__label {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    cursor: pointer;
}

.billing-fields {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 20px;
}

.shipping-fields {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.payment-cards {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.payment-cards__icon {
    height: 60px;
    width: auto;
    padding: 4px 8px;
}

.payment-fields {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.checkout-pay-section {
    margin: 30px 0 0 0;
    display: flex;
    justify-content: center;
}

/* ========================================
   Shopping Cart
   ======================================== */
.shopping-cart-section {
    margin: 0 auto 60px auto;
    padding: 0 60px;
}

.shopping-cart-wrapper {
    background: #ffffff;
}

/* Quantity Control */
.qty-control {
    display: inline-flex;
    align-items: stretch;
    border: 1px solid #dde1ee;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
}

.qty-control__btn {
    width: 40px;
    height: 36px;
    border: none;
    background: #ffffff;
    color: #000000;
    font-size: 20px;
    font-weight: 300;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    padding: 0;
}

.qty-control__btn:hover {
    background: #f5f5f5;
}

.qty-control__input {
    width: 50px;
    height: 36px;
    border: none;
    border-left: 1px solid #dde1ee;
    border-right: 1px solid #dde1ee;
    text-align: center;
    font-size: 16px;
    color: #000000;
    background: #ffffff;
    padding: 0;
    -moz-appearance: textfield;
}

.qty-control__input::-webkit-outer-spin-button,
.qty-control__input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qty-control__input:focus {
    outline: none;
}

/* Delete Button */
.cart-table__cell--delete {
    width: 60px;
    text-align: center;
}

.cart-delete-btn {
    width: 36px;
    height: 36px;
    border: 1px solid #dde1ee;
    border-radius: 8px;
    background: #ffffff;
    color: #000000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    padding: 0;
}

.cart-delete-btn:hover {
    background: #f5f5f5;
}

/* Cart Summary */
.cart-summary {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
    padding-top: 20px;
}

.cart-summary__subtotal {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-summary__label {
    font-size: 18px;
    font-weight: 400;
    color: #000000;
}

.cart-summary__value {
    font-size: 18px;
    font-weight: 400;
    color: #000000;
}

/* Checkout Options Section */
.checkout-options-section {
    padding: 60px 80px;
    min-height: 400px;
}

.checkout-options-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.checkout-options {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: center;
}

.checkout-login-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.checkout-register-text {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.checkout-register-link {
    color: #997c5e;
    text-decoration: underline;
    transition: color 0.25s;
}

.checkout-register-link:hover {
    color: #4c301d;
}

@media (max-width: 1024px) {
    .checkout-options-section {
        padding: 40px 40px;
    }
}

@media (max-width: 768px) {
    .checkout-options-section {
        padding: 30px 20px;
    }

    .checkout-options {
        flex-direction: column;
        align-items: center;
    }

    .checkout-option-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 1024px) {
    .account-order-section {
        padding: 0 40px;
        margin: 40px auto;
    }

    .order-summary {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .account-order-section {
        padding: 0 20px;
        margin: 30px auto;
    }

    .order-head__title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .order-details__title {
        font-size: 14px;
    }

    .account-table__cell--image {
        width: auto;
    }

    .order-product-image-wrapper {
        width: 80px;
        padding-bottom: 60px; /* 4:3 ratio: (3/4) * 80px = 60px */
    }

    /* Invoice Head Responsive */
    .invoice-head__logo-section {
        padding: 20px 20px 0 20px;
    }

    .invoice-head__logo {
        max-width: 150px;
    }

    .invoice-head__content {
        flex-direction: column;
        row-gap: 0;
    }

    .invoice-head__company {
        border-right: 0;
        padding: 20px;
    }

    .invoice-head__company-wrapper {
        max-width: 100%;
    }

    .invoice-head__details {
        padding: 20px;
        align-items: flex-start;
    }

    .invoice-head__details-wrapper {
        max-width: 100%;
    }

    /* Shopping Cart Responsive */
    .shopping-cart-section {
        padding: 0 20px;
        margin: 30px auto;
    }

    .shopping-cart-title {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .cart-table {
        display: block;
    }

    .cart-table thead {
        display: none;
    }

    .cart-table tbody {
        display: block;
    }

    .cart-table tbody tr {
        display: block;
        margin-bottom: 30px;
        padding-bottom: 30px;
        border-bottom: 2px solid #e5e5e5;
    }

    .cart-table tbody td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        border-bottom: 1px solid #f5f5f5;
    }

    .cart-table tbody td:before {
        content: attr(data-label);
        font-weight: 600;
        font-size: 12px;
        text-transform: uppercase;
        color: #666666;
    }

    .cart-table__cell--image {
        width: 100%;
        justify-content: center;
    }

    .cart-table__cell--image:before {
        display: none;
    }

    .cart-product-image-wrapper {
        width: 100%;
        max-width: 200px;
        padding-bottom: 150px;
    }

    .cart-table__cell--qty {
        min-width: auto;
    }

    .qty-control {
        max-width: 100%;
    }

    .cart-table__cell--delete {
        width: 100%;
        text-align: left;
    }

    .cart-summary {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }

    .cart-summary__subtotal {
        justify-content: space-between;
    }

    .cart-checkout-btn {
        width: 100%;
        padding: 15px 20px;
    }
}

@media (max-width: 400px) {
    .order-head__title {
        font-size: 18px;
    }

    .back-link {
        font-size: 12px;
        margin-bottom: 15px;
    }
}

/* Login Modal */
.login-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.login-modal.is-open {
    visibility: visible;
    opacity: 1;
}

.login-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.login-modal__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(20px);
    width: 90%;
    max-width: 900px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.login-modal.is-open .login-modal__content {
    transform: translate(-50%, -50%) translateY(0);
}

.login-modal__header {
    position: relative;
    margin-bottom: 30px;
    text-align: center;
}

.login-modal__title {
    font-size: clamp(20px, 5vw, 30px);
    font-weight: 400;
    color: #d11919;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.login-modal__close {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #d4d4d4;
    border-radius: 50%;
    padding: 0;
    cursor: pointer;
    color: #4c301d;
    transition: all 0.3s;
    line-height: 0;
}

.login-modal__close:hover {
    background: #f5f5f5;
    border-color: #4c301d;
}

.login-modal__form {
    display: flex;
    flex-direction: column;
    gap: 35px;
    max-width: 580px;
    margin: 0 auto;
}

.login-modal__field {
    display: flex;
    flex-direction: column;
}

.login-modal__input {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    color: #000000;
    border: 1px solid #d4d4d4;
    border-radius: 4px;
    transition: border-color 0.3s;
}

.login-modal__input:focus {
    outline: none;
    border-color: #4c301d;
}

.login-modal__register {
    text-align: left;
    font-size: 13px;
    color: #997c5e;
    margin: 10px 0 0;
}

.login-modal__register-link {
    color: #997c5e;
    text-decoration: underline;
    font-weight: 500;
    transition: opacity 0.3s;
}

.login-modal__register-link:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.login-modal__form .btn-outline {
    width: max-content;
    margin: 0 auto;
}

@media (max-width: 600px) {
    .login-modal__content {
        width: 95%;
        padding: 30px 20px;
    }

    .login-modal__title {
        font-size: 20px;
    }
}

/* Guest Checkout */
.checkout-back-link-section {
    margin: 0 auto;
    padding: 0 60px 20px;
}

.checkout-back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 400;
    color: #4c301d;
    text-decoration: none;
    transition: opacity 0.3s;
    letter-spacing: 0.5px;
}

.checkout-back-link:hover {
    opacity: 0.7;
}

.checkout-back-link svg {
    width: 8px;
    height: 14px;
}

.guest-form-title {
    font-size: 18px;
    font-weight: 400;
    color: #d11919;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 30px;
    grid-column: 1 / -1;
    text-align: center;
}

.profile-form__row:has(.guest-form-title) {
    display: block;
    margin-bottom: 0;
}

.guest-form-divider {
    grid-column: 1 / -1;
    height: 1px;
    background-color: #d4d4d4;
    margin: 10px 0;
}

@media (max-width: 768px) {
    .checkout-back-link-section {
        padding: 0 20px 15px;
    }

    .checkout-back-link {
        font-size: 13px;
    }

    .guest-form-title {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .guest-form-divider {
        margin: 30px 0;
    }
}

 .success-section {
        padding: 60px 20px;
        background-color: #f8f8f8;
    }

    .success-container {
        max-width: 600px;
        margin: 0 auto;
        background: #ffffff;
        padding: 50px 40px;
        text-align: center;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .success-icon {
        margin-bottom: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .success-icon svg {
        animation: checkmarkPop 0.6s ease-out;
    }

    @keyframes checkmarkPop {
        0% {
            transform: scale(0);
            opacity: 0;
        }
        50% {
            transform: scale(1.1);
        }
        100% {
            transform: scale(1);
            opacity: 1;
        }
    }

    .success-title {
        font-size: 32px;
        font-weight: 600;
        color: #4c301d;
        margin-bottom: 20px;
        letter-spacing: 0.5px;
    }

    .success-message {
        font-size: 16px;
        color: #666;
        margin-bottom: 40px;
        line-height: 1.6;
    }

    .success-details {
        background: #f8f8f8;
        padding: 30px;
        margin-bottom: 30px;
        border-left: 4px solid #4c301d;
    }

    .success-details__row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        border-bottom: 1px solid #e0e0e0;
    }

    .success-details__row:last-child {
        border-bottom: none;
    }

    .success-details__label {
        font-size: 14px;
        color: #666;
        font-weight: 500;
    }

    .success-details__value {
        font-size: 16px;
        color: #4c301d;
        font-weight: 600;
    }

    .success-info {
        margin-bottom: 40px;
    }

    .success-info p {
        font-size: 14px;
        color: #666;
        margin-bottom: 10px;
        line-height: 1.6;
    }

    .success-info strong {
        color: #4c301d;
        font-weight: 600;
    }

    .success-actions {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .success-btn {
        display: inline-block;
        padding: 14px 40px;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 1px;
        text-decoration: none;
        border: 2px solid #4c301d;
        transition: all 0.3s ease;
        min-width: 280px;
        text-align: center;
    }

    .success-btn--primary {
        background: #4c301d;
        color: #ffffff;
    }

    .success-btn--primary:hover {
        background: #3a2416;
        border-color: #3a2416;
    }

    .success-btn--secondary {
        background: #ffffff;
        color: #4c301d;
    }

    .success-btn--secondary:hover {
        background: #4c301d;
        color: #ffffff;
    }

    @media (max-width: 768px) {
        .success-container {
            padding: 40px 25px;
        }

        .success-title {
            font-size: 26px;
        }

        .success-details {
            padding: 20px;
        }

        .success-details__row {
            flex-direction: column;
            align-items: flex-start;
            gap: 5px;
        }

        .success-btn {
            min-width: 100%;
        }
    }