@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --color-white: #ffffff;
    --color-black: #000000;
    --color-black-light: rgba(0, 0, 0, 0.6);
    --color-accent: #D13532;
    --color-dark: #252525;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
    font: inherit;
}

img,
picture,
svg,
video {
    display: block;
    max-width: 100%;
    height: auto;
}

input,
select,
textarea {
    background-color: transparent;
    outline: none;
}

a {
    transition: all 0.3s ease-in-out;
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
    background-color: transparent;
    outline: none;
    transition: all 0.3s ease-in-out;
    border: 0;
}

strong {
    font-weight: bolder;
}

em {
    font-style: italic;
}

body {
    min-height: 100vh;
    font-weight: 400;
    font-size: 16px;
    font-family: 'Neue Montreal';
    line-height: 1;
    color: var(--color-black);
}

p {
    margin-bottom: 1em;
}

p:last-child {
    margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'PP Neue Montreal';
    font-weight: 500;
}


.section-label {
    font-weight: 500;
    font-size: 12px;
    line-height: 140%;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 24px;
    display: inline-block;
}

.section-heading {
    font-size: 40px;
    line-height: 1.2;
}

.container {
    max-width: 1560px;
    padding: 0 20px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    border: 1px solid transparent;
    border-radius: 24px;
    padding: 11px 19px;
    font-family: 'PP Neue Montreal';
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.02em;
    background: transparent;
    transition: all 0.3s ease;
}

.btn.btn-primary {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-white);
}

.btn.btn-primary:hover {
    background: #B82623;
}

.btn.btn-white {
    background: var(--color-white);
    color: var(--color-dark);
}

.btn.btn-white-secondary {
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn.btn-white-secondary:hover {
    background: rgb(255, 255, 255, 0.2);
}

.btn.btn-black {
    background: var(--color-dark);
    color: var(--color-white);
}

.btn.btn-black-secondary {
    border-color: var(--color-dark);
    color: var(--color-dark);
}

.btn.btn-white:hover,
.btn.btn-black:hover,
.btn.btn-black-secondary:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-white);
}

.swiper-pagination {
    bottom: -2px !important;
}

.swiper-pagination-bullet {
    width: 5px !important;
    height: 5px !important;
    background: #D9D9D9 !important;
    opacity: 1 !important;
    margin: 0 1px !important;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    width: 14px !important;
    background: var(--color-black) !important;
    border-radius: 20px !important;
}

.header-site {
    position: sticky;
    left: 0;
    width: 100%;
    top: 0;
    z-index: 99;
    background: var(--color-white);
}

.header-site .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.header-site .header-left {
    display: flex;
    align-items: center;
    gap: 60px;
}

.header-site .header-right {
    display: flex;
    gap: 16px;
}

.header-site .header-line-space {
    width: 1px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.05);
}

.header-site .header-logo {
    width: 140px;
    flex-shrink: 0;
}

.header-site .header-logo img {
    width: 100%;
}



.header-site .header-menu>nav>ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.header-site .header-menu>nav>ul>li {
    position: relative;
}

.header-site .header-menu>nav>ul>li>a {
    font-family: 'PP Neue Montreal';
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0.02em;
    color: var(--color-dark);
    display: block;
    padding: 34px 15px;
    text-decoration: none;
}

.header-site .header-menu>nav>ul>li:first-child>a {
    padding-left: 0;
}


.header-site .header-menu>nav>ul>li>a:hover {
    color: var(--color-accent);
}


.header-site .mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--color-white);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 999;
}

.header-site .has-mega-menu:hover .mega-menu,
.header-site .has-mega-menu.is-active .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.mega-menu-wrap {
    padding: 46px 0 60px;
}

.mega-menu-inner {
    display: grid;
    grid-template-columns: minmax(500px, 1fr) minmax(450px, 690px);
    gap: 40px;
    align-items: start;
}

.header-site .header-menu>nav>ul>li.has-mega-menu {
    position: static;
}

.mega-menu-links {
    display: grid;
    grid-template-columns: 240fr 232fr 278fr;
    gap: 20px;
}

.mega-menu-column ul {
    list-style: none;
    margin: 32px 0 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: start;
}


.mega-menu-column ul li a {
    display: block;
    padding: 0;
    font-family: 'PP Neue Montreal';
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;
    letter-spacing: 0.02em;
}

.mega-menu-column ul li a:hover,
a.mega-menu-heading:hover {
    color: var(--color-accent);
}

.mega-menu-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'PP Neue Montreal';
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 19px;
    font-size: 16px;
}

.mega-menu-banners {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.mega-menu-card {
    position: relative;
    display: block;
    overflow: hidden;
}

.mega-menu-image {
    position: relative;
    aspect-ratio: 340/398;
    overflow: hidden;
}

.mega-menu-image::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.mega-menu-card.title-black .mega-menu-image::before {
    background: linear-gradient(-166.84deg, rgba(255, 255, 255, 0) 59.62%, rgba(255, 255, 255, 0.9) 97.98%);
}

.mega-menu-card.title-white .mega-menu-image::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 66.08%, rgba(0, 0, 0, 0.4) 100%);
}

.mega-menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mega-menu-card:hover img {
    transform: scale(1.05);
}

.mega-menu-card-title {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 2;
    font-family: 'PP Neue Montreal';
    font-size: 14px;
    line-height: 17px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.mega-menu-card.title-white .mega-menu-card-title {
    color: var(--color-white);
}


.mega-menu-materials {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.material-menu-card {
    display: block;
}

.material-menu-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.material-menu-image .image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.material-menu-image .card-logo {
    max-height: 40px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 24px;
    z-index: 2;
}

.material-menu-card:hover .material-menu-title {
    color: var(--color-accent);
}

.material-menu-content {
    padding-top: 20px;
}

.material-menu-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'PP Neue Montreal';
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}

.material-menu-description {
    margin-top: 16px;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0.02em;
    color: var(--color-dark);
    opacity: 0.6;
    max-width: 145px;
}

.header-site .header-search {
    position: relative;
}

.header-site .header-search .search-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 16px;
    transition: all 0.3s ease;
    color: rgba(0, 0, 0, 0.2);
}


.header-site .header-search input {
    border: 1px solid rgba(0, 0, 0, 0.2);
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0.02em;
    color: var(--color-black);
    border-radius: 24px;
    padding: 12px 19px 12px 42px;
    transition: all 0.3s ease;
    width: 120px;
    height: 100%;
}

.header-site .header-search input::placeholder {
    color: rgba(0, 0, 0, 0.2);
}

.header-search:focus-within input {
    border-color: var(--color-black);
    width: 160px;
}

.header-search:focus-within .search-icon {
    color: #000;
}

.footer-site {
    background: #1D1D1D;
    color: var(--color-white);
}

.footer-site .footer-top {
    padding: 60px 0 107px;
    display: flex;
    flex-wrap: wrap;
}

.footer-site .footer-top .footer-left {
    width: 27.24%;
    padding-right: 60px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-site .footer-top .footer-right {
    width: 72.76%;
}

.footer-link-title {
    font-family: 'PP Neue Montreal';
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.02em;
    margin-bottom: 40px;
}

.footer-site .footer-logo {
    max-width: 161px;
    margin-bottom: 12px;
}

.footer-site .footer-logo img {
    width: 100%;
}

.footer-site .footer-address,
.footer-site .footer-email {
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0.02em;
    color: #A5A5A5;
}

.footer-email:hover {
    color: var(--color-white);
}

.footer-site .footer-address {
    max-width: 224px;
    margin-bottom: 0;
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-socials a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(165, 165, 165, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-socials a:hover {
    background-color: var(--color-white);
}

.footer-socials img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.footer-menus {
    display: grid;
    grid-template-columns: 253px 147px 122px;
    grid-gap: 190px;
}

.footer-menus ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 17px 58px;
    flex-wrap: wrap;
    max-height: 250px;
}

.footer-menus ul li a {
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0.02em;
    color: #A5A5A5;
    display: block;
}

.footer-menus ul li a:hover {
    color: var(--color-white);
}

.footer-site .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
    align-items: center;
}


.footer-bottom-links {
    display: flex;
    gap: 40px;
}

.footer-copyright,
.footer-bottom-links a {
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0.02em;
    color: #A5A5A5;
}

.footer-bottom-links a:hover {
    color: var(--color-white);
}

/* Module Hero Section */
.hero-sec {
    min-height: 850px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: end;
    color: var(--color-white);
    padding: 60px 0;
}

.hero-sec::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(270deg, rgba(59, 59, 59, 0) 37.81%, rgba(59, 59, 59, 0.6) 100%);
    pointer-events: none;
}

.hero-sec .container {
    width: 100%;
}

.hero-sec .hero-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    max-width: 811px;
    z-index: 2;
}

.hero-sec .hero-heading {
    font-size: 72px;
    line-height: 110.00000000000001%;
    letter-spacing: 0.02em;
}

.hero-sec .hero-desc {
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0.02em;
    max-width: 315px;
}

.hero-sec .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* Module Explore Collections */
.expolore-coll-sec {
    padding: 100px 0 60px;
    overflow: hidden;
}

.expolore-coll__heading {
    font-size: 32px;
    line-height: 38px;
    letter-spacing: 0.02em;
}


.expolore-coll__top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    align-items: end;
    gap: 32px;
    flex-wrap: wrap;
}


.swiper-navigation {
    display: flex;
    gap: 32px;
}

.swiper-navigation button {
    cursor: pointer;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
}

.swiper-navigation button.swiper-button-disabled {
    color: rgb(0, 0, 0, 0.2);
    cursor: default;
}

.swiper-navigation button.swiper-button-lock {
    display: none;
}

.expolore-coll__slider {
    overflow: visible;
    padding-bottom: 42px;
}

.expolore-coll__slider .swiper-slide {
    width: 420px;
}

.cs-product__item {
    display: block;
    overflow: hidden;
}

.cs-product__item .item-image {
    aspect-ratio: 420/580;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #FBFBFB;
    position: relative;
    padding: 50px 0;
}

.cs-product__item .item-image .image {
    width: auto;
    height: 100%;
    transition: all 0.4s ease;
}

.cs-product__item .item-configure {
    position: absolute;
    z-index: 2;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    bottom: -48px;
    transition: all 0.4s ease;
}

.cs-product__item:hover .item-configure {
    bottom: 24px;
}

.cs-product__item:hover .item-image .image {
    transform: scale(1.104) translateY(-30px);

}

.cs-product__item .item-configure:hover {
    background: var(--color-dark);
    border-color: var(--color-dark);
}

.cs-product__item .item-content {
    padding-top: 16px;
}

.cs-product__item .item-title {
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.cs-product__item .item-view {
    font-family: 'PP Neue Montreal';
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.02em;
    color: var(--color-dark);
    opacity: 0.5;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    transform: translateY(20px);
    padding-top: 16px;
    visibility: hidden;

}

.cs-product__item .item-view svg {
    transition: all 0.3s ease;
    transform: translateX(-12px);
    opacity: 0;
}

.cs-product__item .item-view:hover {
    opacity: 1;
}

.cs-product__item .item-view:hover svg {
    transform: translateX(0);
    opacity: 1;
}

.cs-product__item:hover .item-view {
    visibility: visible;
    transform: translateY(0);
}

.swiper-scrollbar {
    position: absolute;
    left: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 3px !important;
    border-radius: 0;
    background: #EBEBEB;
}

.swiper-scrollbar-drag {
    height: 3px;
    border-radius: 0;
    background: var(--color-dark);
}

/* Module About Stat */
.about-stat-sec {
    padding: 60px 0;
}

.about-stat__content {
    padding: 16px 0 4px;
    max-width: 1165px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-stat__content .section-heading {
    font-weight: 400;
    font-family: "Neue Montreal";
    letter-spacing: 0.02em;
    max-width: 888px;
    margin: 0 auto 80px;
    text-align: center;
}

.stat-list {
    display: grid;
    grid-template-columns: 190px 187px 131px 297px;
    grid-gap: 120px;
}

.stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 12px;
    position: relative;
}

.stat-item::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    right: -60px;
}

.stat-item:last-child::before {
    display: none;
}

.stat-item .item-value {
    font-weight: 500;
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: var(--color-accent);
}

.stat-item .item-label {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.02em;
}

.about-stat__btn {
    margin-top: 60px;
    text-align: center;
}

/* Module Designed for Every Environment */
.designed-environment-sec {
    padding: 60px 0 80px;
    overflow: hidden;
}

.designed-environment__top {
    display: flex;
    justify-content: space-between;
    align-items: end;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 40px;
}

.designed-environment__heading {
    max-width: 358px;
}

/* =========================
   WORKSPACE SLIDER
========================= */

.workspace-slider {
    padding-bottom: 30px;
    overflow: visible;
}

.workspace-slider .swiper-slide {
    width: 1000px;
}



.workspace-card {
    aspect-ratio: 1000/600;
    position: relative;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 30px;

    color: var(--color-white);
}

.workspace-card::before {
    content: "";
    position: absolute;
    inset: 0;

    pointer-events: none;

    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0) 59.5%,
            rgba(0, 0, 0, 0.7) 95.67%);
}




.workspace-card .card-content {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    gap: 16px;

    align-items: flex-start;

    transition: all 0.4s ease;

    transform: translateY(40px);
}

.workspace-card .card-models {
    font-weight: 500;
    font-size: 12px;
    line-height: 140%;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    padding: 10px;
    border-radius: 20px;
    background-color: var(--color-white);
    display: inline-block;
    color: var(--color-black);
}

.workspace-card .card-title {
    font-size: 36px;
    line-height: 43px;
}

.workspace-card .card-title a {
    color: inherit;
}

.workspace-card .card-desc {
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0.02em;
    max-width: 254px;
}

.workspace-card .card-desc p {
    margin: 0;
}

.workspace-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.02em;
    font-weight: 500;
    color: var(--color-white);
    font-family: "PP Neue Montreal";
    opacity: 0.5;
    transition: all 0.4s ease;
    margin-top: 3px;
    transform: translateY(20px);
}

.workspace-card .card-link svg {
    transform: translateX(-12px);

    transition: all 0.3s ease;

    opacity: 0;
}

.workspace-card .card-link:hover {
    opacity: 1;
}

.workspace-card .card-link:hover svg {
    transform: translateX(0);
    opacity: 1;
}

.workspace-card:hover .card-content,
.workspace-card:hover .card-link {
    transform: translateY(0);
}



.product-hotspot {
    position: absolute;
    left: var(--hotspot-x);
    top: var(--hotspot-y);
    transform: translate(-50%, -50%);
    z-index: 5;
}



.hotspot-btn {
    position: relative;
    width: 52px;
    height: 52px;
    cursor: pointer;
}

.hotspot__outer,
.hotspot__middle {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.hotspot__middle {
    border-color: rgba(255, 255, 255, 0.6);
}

.hotspot__outer {
    width: 52px;
    height: 52px;
}

.hotspot__middle {
    width: 36px;
    height: 36px;
}



.hotspot-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: var(--color-white);
    color: var(--color-black);
    display: flex;
    justify-content: center;
    align-items: center;
}

.hotspot-btn:hover .hotspot__outer {
    transform: translate(-50%, -50%) scale(1.1923);
}

.hotspot-btn:hover .hotspot__middle {
    transform: translate(-50%, -50%) scale(1.1667);
}


.product-hotspot.active .hotspot-icon {
    background: var(--color-accent);
    color: var(--color-white);
}


.product-popup {
    position: absolute;
    top: -31px;
    width: 210px;
    min-height: 144px;
    display: flex;
    justify-content: space-between;
    background: var(--color-white);
    color: var(--color-black);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        all 0.3s ease;
    border-radius: 4px;
}

.product-hotspot.popup-right .product-popup {
    left: calc(100% + 18px);
}

.product-hotspot.popup-right.active .product-popup {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


.product-hotspot.popup-left .product-popup {
    right: calc(100% + 18px);
}

.product-hotspot.popup-left.active .product-popup {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


.product-popup .product-link {
    position: absolute;
    inset: 0;
}

.product-popup .product-info {
    padding: 12px 15px 12px 12px;
    display: flex;
    flex-direction: column;
    font-family: 'PP Neue Montreal';
    gap: 6px;

}

.product-popup .product-info .product-name {
    font-size: 16px;
    letter-spacing: 0.02em;
    line-height: 19px;
    font-weight: 500;
}

.product-popup .product-info .product-price {
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0.02em;
    color: var(--color-accent);
}

.product-popup .product-browse {
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;
    margin-top: auto;
    letter-spacing: 0.02em;
    text-decoration: underline;
    text-underline-offset: 2px;
}


.product-popup .product-image {
    width: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-popup .product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Module Engineered for the way you work */
.engineered-work-sec {
    padding: 80px 0 140px;
}

.engineered-work__heading {
    max-width: 358px;
    margin-bottom: 40px;
}

.engineered-work__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
}

.engineered-work__item {
    position: relative;
    display: flex;
    flex-direction: column;
}

.engineered-work__item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #F9F9F9;
    pointer-events: none;

    transition: all 0.4s ease;
    opacity: 0;
    visibility: hidden;

}

.engineered-work__item:hover::before {
    height: 100%;
    opacity: 1;
    visibility: visible;
}

.engineered-work__item:hover .item-image .image {
    transform: scale(1.05);
}

.engineered-work__item .item-image {
    aspect-ratio: 372/300;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.engineered-work__item .item-image .image {
    width: 100%;
    height: 100%;
    transition: all 0.4s ease;
    object-fit: cover;
}

.engineered-work__item .item-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.engineered-work__item .item-number {
    color: var(--color-accent);
    font-family: 'PP Neue Montreal';
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0.02em;
    margin-bottom: 12px;
}

.engineered-work__item .item-title {
    font-size: 24px;
    line-height: 29px;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
}

.engineered-work__item .item-desc {
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0.02em;
    max-width: 297px;
}

.engineered-work__item .item-content__bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 29px;
}

.engineered-work__item .item-info__value {
    font-family: 'PP Neue Montreal';
    font-weight: 500;
    font-size: 32px;
    line-height: 38px;
    color: var(--color-accent);
}

.engineered-work__item .item-info__label {
    font-weight: 500;
    font-size: 12px;
    line-height: 140%;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #707070;
    margin-top: 6px;
}

/* Module CTA FULL BACKGROUND  */
.cta-sec {
    min-height: 800px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    color: var(--color-white);
    padding: 40px 0;
    position: relative;
}

.cta-sec .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.cta-sec .cta-buttons .btn.btn-black-secondary:hover {
    background: var(--color-dark);
    border-color: var(--color-dark);
}

.cta-sec::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(188.47deg, rgba(0, 0, 0, 0) 54.15%, rgba(0, 0, 0, 0.6) 87.38%);
    pointer-events: none;
}

.cta-sec .container {
    width: 100%;
}

.cta-sec .cta-content {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 16px;
    position: relative;
    z-index: 2;
    max-width: 525px;
}

.cta-sec .cta-heading {
    font-size: 60px;
    line-height: 1.2;
}

.cta-sec .cta-desc {
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0.02em;
    max-width: 375px;
}

/* Module Featured Brands */
.featured-brands-sec {
    padding: 70px 0;
}

.featured-brands__main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
}

.featured-brands__item {
    min-height: 700px;
    position: relative;
    padding: 60px 40px 170px;
    color: var(--color-black);
}

.featured-brands__item.item-right {
    color: var(--color-white);
}

.featured-brands__item::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.4) 15.13%, rgba(255, 255, 255, 0) 60.53%);
    z-index: 1;
}

.featured-brands__item.item-right::before {
    background: linear-gradient(5.67deg, rgba(0, 0, 0, 0) 52.87%, rgba(0, 0, 0, 0.6) 83.17%);
}

.featured-brands__item .item-content {
    position: relative;
    z-index: 2;
    max-width: 349px;
}

.featured-brands__item.item-right .item-content {
    max-width: 310px;
}

.featured-brands__item .item-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-brands__item .item-logo {
    position: absolute;
    z-index: 1;
    top: 72px;
    right: 47px;
    width: 119px;
}

.featured-brands__item .item-title {
    font-family: 'PP Neue Montreal';
    font-weight: 500;
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 24px;
}

.featured-brands__item.item-right .item-title {
    font-size: 48px;
    line-height: 110.00000000000001%;
}

.featured-brands__item .item-desc {
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0.02em;
}

.featured-brands__item .section-label {
    margin-bottom: 12px;
}

.featured-brands__item.item-right .section-label {
    color: #FBFBFB;
}

.featured-brands__item .item-btn {
    margin-top: 24px;
}

.featured-brands__item.item-left .item-btn {
    padding: 11px 15px;
}

.featured-brands__services {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 32px 40px 38px;
    position: absolute;
    z-index: 3;
    bottom: 0;
    left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 40px 130px;
}

.featured-brands__services .services-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.featured-brands__services .services-item::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -65px;
    width: 1px;
    height: 80%;
    background-color: rgba(0, 0, 0, 0.1);
}

.featured-brands__services .services-item:last-child:before {
    display: none;
}

.featured-brands__services .services-item .item-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.featured-brands__services .services-item .item-value {
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0.02em;
    color: var(--color-black);

}

.featured-brands__services .services-item .item-label {
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 0.02em;
    margin-top: 6px;
    color: var(--color-dark);
}

.popular-models-sec {
    padding: 70px 0 88px;
}

.popular-models__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.popular-models__heading {
    text-align: center;
    line-height: 1.1;
}

.model-filter {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
}

.model-filter__label {
    font-family: 'PP Neue Montreal';
    font-weight: 500;
    font-size: 20px;
    line-height: 1.2;
    color: var(--color-black);
    opacity: 0.4;
    transition: all 0.3s ease;
}

.model-filter__label.active {
    opacity: 1;
}

.model-filter__toggle {
    position: relative;
    width: 48px;
    height: 28px;
    padding: 0;
    border: 1px solid var(--color-black);
    border-radius: 999px;
    cursor: pointer;
}

.model-filter__circle {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-black);
    transition: all 0.3s ease;
}

.model-filter .model-filter__label--popular {
    opacity: 1;
}

.model-filter.is-newest .model-filter__circle {
    transform: translateX(20px);
    background: var(--color-white);
}

.model-filter.is-newest .model-filter__toggle {
    background-color: var(--color-black);
}

.model-filter.is-newest .model-filter__label--popular {
    opacity: 0.4;
}

.model-filter.is-newest .model-filter__label--newest {
    opacity: 1;
}

.popular-models__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
}

.popular-models__list .cs-product__item .item-image {
    aspect-ratio: 372/510;
    padding: 42px 0;
}

.popular-models__list .cs-product__item:hover .item-image .image {
    transform: scale(1.03) translateY(-15px);
}

/* Module CTA FULL BACKGROUND 2 */

.cta-sec.cta-small-text-black {
    min-height: 700px;
    color: var(--color-black);
}

.cta-sec.cta-small-text-black::before {
    display: none;
}

.cta-sec.cta-small-text-black .cta-heading {
    color: #1D1D1D;
    line-height: 1;
    letter-spacing: 0.02em;
}

.cta-sec.cta-small-text-black .cta-desc {
    max-width: 438px;
}

.cta-sec.cta-small-text-black .cta-content {
    max-width: 469px;
    gap: 24px;
}

/* Browse by Collection */
.browse-collection-sec {
    color: var(--color-dark);
    padding: 60px 0 80px;
}

.browse-collection__heading {
    font-size: 48px;
    line-height: 1.1;
}

.browse-collection__desc {
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0.02em;
    margin-top: 24px;
    max-width: 364px;
}

.browse-collection__header {
    margin-bottom: 40px;
}

.collection-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
}

.collection-card {
    display: flex;
    flex-direction: column;
    justify-content: end;
    aspect-ratio: 755/600;
    position: relative;
    overflow: hidden;
    padding: 40px;
}



.collection-card::before,
.collection-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.collection-card::before {
    z-index: 1;
    background: linear-gradient(-180deg, rgba(255, 255, 255, 0) 82.08%, rgba(255, 255, 255, 0.64) 98.61%);
}

.collection-card::after {
    z-index: 2;
    background: linear-gradient(-166.41deg, rgba(255, 255, 255, 0) 49.79%, rgba(255, 255, 255, 0.9) 83.47%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.collection-card .card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    object-fit: cover;
}

.collection-card .card-content {
    position: relative;
    z-index: 3;
    color: var(--color-black);
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: start;
    transition: all 0.4s ease;
    transform: translateY(40px);
}

.collection-card .card-models {
    font-weight: 500;
    font-size: 12px;
    line-height: 140%;
    letter-spacing: 2%;
    text-transform: uppercase;
    color: var(--color-black);
    background-color: var(--color-white);
    display: inline-block;
    padding: 10px;
    border-radius: 20px;
}

.collection-card .card-title {
    font-size: 40px;
    line-height: 110.00000000000001%;
}

.collection-card .card-desc {
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 2%;
    max-width: 351px;
}

.collection-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.02em;
    font-weight: 500;
    color: var(--color-black);
    font-family: "PP Neue Montreal";
    opacity: 0.5;
    transition: all 0.4s ease;
    margin-top: 4px;
    transform: translateY(20px);
}

.collection-card:hover .card-content {
    transform: translateY(10px);
}

.collection-card:hover .card-link {
    transform: translateY(0);
}

.collection-card .card-link svg {
    transform: translateX(-12px);
    transition: all 0.3s ease;
    opacity: 0;
}

.collection-card .card-link:hover {
    opacity: 1;
}

.collection-card .card-link:hover svg {
    transform: translateX(0);
    opacity: 1;
}

.collection-card:hover::after {
    opacity: 1;
}

/* Module CTA IMAGE RIGHT  */
.cta-content-sec {
    overflow: hidden;
}

.cta-content__inner {
    display: flex;
}

.cta-content__left {
    width: 43.42%;
    padding: 38px 0;
    display: flex;
    flex-direction: column;
    justify-content: end;
    position: relative;
}

.cta-content__left::before {
    content: "";
    background-color: #FAFAFA;
    position: absolute;
    right: 0;
    width: 100vw;
    top: 0;
    height: 100%;
    pointer-events: none;
}

.cta-content__left-inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-right: 20px;
    max-width: 489px;
    position: relative;
    z-index: 2;
}

.cta-content__right {
    width: 56.58%;
}

.cta-content__image {
    height: 500px;
}

.cta-content__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-content__heading {
    font-size: 48px;
    line-height: 100%;
    letter-spacing: 2%;
    color: #1D1D1D;
}

.cta-content__desc {
    max-width: 279px;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 2%;
}

.cta-content__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.cta-content__buttons .btn-1 {
    padding: 11px 15px;
}

.cta-content__buttons .btn.btn-black-secondary:hover {
    background: var(--color-dark);
    border-color: var(--color-dark);
}

.cta-content__image {
    margin-right: calc(0px - calc((100vw - 1520px)/2));
}

@media (max-width:1560px) {
    .cta-content__image {
        margin-right: -20px;
    }
}

/*  Browse by Setting */
.browse-settings-hero-sec {
    min-height: 500px;
    background-color: #C4C4C4;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 40px 0;
}

.browse-settings-hero-sec .container {
    width: 100%;
}

.browse-settings-hero__content {
    max-width: 492px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.browse-settings-hero__heading {
    font-size: 48px;
    line-height: 110.00000000000001%;
}

.browse-settings-hero__desc {
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 2%;
}

/*  */
.browse-settings-sec {
    padding: 60px 0 140px;
}

.browse-settings__cate {
    margin-bottom: 60px;
}

.browse-settings__cate .label {
    font-weight: 500;
    font-size: 12px;
    line-height: 140%;
    letter-spacing: 2%;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.browse-settings__cate-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
}

.browse-settings__cate-item {
    min-height: 160px;
    background-color: #FBFBFB;
    position: relative;
    overflow: hidden;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 12px;
    cursor: pointer;
}

.browse-settings__cate-item .item-title {
    font-family: 'PP Neue Montreal';
    font-weight: 500;
    font-size: 28px;
    line-height: 110.00000000000001%;
    position: relative;
    z-index: 2;
}

.browse-settings__cate-item .item-infos {
    opacity: 0.6;
    font-family: 'PP Neue Montreal';
    font-weight: 500;
    font-size: 14px;
    line-height: 110.00000000000001%;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.browse-settings__cate-item .item-infos .dot {
    width: 3px;
    height: 3px;
    background: var(--color-black);
    border-radius: 50%;
}

.browse-settings__cate-item .item-image {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.browse-settings__cate-item .item-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #FBFBFB 20.54%, rgba(251, 251, 251, 0.9) 48.91%, rgba(251, 251, 251, 0) 100%);
    pointer-events: none;
}

.browse-settings__cate-item .item-image .image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.browse-settings__cate-item:hover .item-image {
    opacity: 1;
    visibility: visible;
}

.browse-settings__cate-item.active .item-image {
    opacity: 1;
    visibility: visible;
}

.product-filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.product-filter .left {
    display: flex;
    align-items: center;
}

.product-filter__item {
    position: relative;

    display: flex;
    align-items: center;
    padding: 0 32px;

    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.product-filter__item:first-child {
    padding-left: 0;
}

.product-filter__item:last-child {
    border-right: 0;
}

.product-filter__item--sort {
    padding-right: 0;
}

.product-filter__trigger {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--color-black);
    opacity: 0.6;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 2%;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-filter__trigger:hover {
    opacity: 1;
}

.product-filter__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    margin-top: 3px;
}

.product-filter__item.is-active .product-filter__trigger,
.product-filter__item.has-value .product-filter__trigger {
    opacity: 1;
}

.product-filter__item.is-active .product-filter__arrow {
    transform: rotate(180deg);
}


.product-filter__count {
    display: none;
    align-items: center;
    justify-content: center;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--color-black);
    color: var(--color-white);
    font-size: 10px;
    line-height: 1;
    margin-left: -4px;
    font-family: 'PP Neue Montreal';
    font-weight: 500;
}

.product-filter__count.is-visible {
    display: inline-flex;
}

.product-filter__selected {
    display: none;
    font-size: 14px;
}




.product-filter__dropdown {
    position: absolute;

    top: calc(100% + 20px);
    left: 0;

    z-index: 50;

    width: 250px;

    padding: 20px;

    background: #fff;

    border: 1px solid #e6e6e6;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.08);

    opacity: 0;
    visibility: hidden;

    transform: translateY(8px);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
}

.product-filter__item.is-active .product-filter__dropdown {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}


/* Sort dropdown */

.product-filter__dropdown--sort {
    left: auto;
    right: 0;
}


.product-filter__dropdown-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.product-filter__dropdown-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
}

.product-filter__clear {
    background: transparent;
    color: var(--color-black);
    opacity: 0.6;
    font-family: inherit;
    font-size: 12px;
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-filter__clear:hover {
    opacity: 1;
}


.product-filter__options {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-filter__option {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    cursor: pointer;
}


.product-filter__option input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}


.product-filter__checkbox {
    position: relative;
    flex: 0 0 auto;
    width: 14px;
    height: 14px;
    border: 1px solid #999;
    background: #fff;
    transition:
        all 0.3s ease;
}

.product-filter__option input[type="checkbox"]:checked+.product-filter__checkbox {
    border-color: var(--color-black);

    background: var(--color-black);
}

.product-filter__option input[type="checkbox"]:checked+.product-filter__checkbox::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 6px;
    height: 3px;
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: rotate(-45deg);
}

.product-filter__radio {
    position: relative;
    flex: 0 0 auto;
    width: 14px;
    height: 14px;
    border: 1px solid #999;
    border-radius: 50%;
    background: #fff;
}

.product-filter__option input[type="radio"]:checked+.product-filter__radio {
    border-color: var(--color-black);
}

.product-filter__option input[type="radio"]:checked+.product-filter__radio::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-black);
}


.product-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 60px 10px;
}

.product-list .cs-product__item:hover .item-image .image {
    transform: none;
}

.product-list .cs-product__item .item-view {
    padding-top: 10px;
}

.product-list .cs-product__item .item-title {
    font-size: 16px;
    line-height: 19px;
}

.product-list .cs-product__item .item-image {
    aspect-ratio: 372/510;
    padding: 42px 0;
}

.product-list .cs-product__item .image-logo {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-list .cs-product__item .image-logo img {
    max-height: 50px;
}

/* collection-taxonomy */
.collection-taxonomy .hero-sec .hero-desc {
    max-width: 351px;
}

.collection-taxonomy .hero-sec::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 54.65%, rgba(0, 0, 0, 0.5) 78.29%);
}

.collection-taxonomy .hero-sec {
    padding: 40px 0;
}

.collection-taxonomy .hero-sec .hero-heading {
    letter-spacing: 0;
}

.collection-tabs-sec {
    overflow: hidden;
    padding-bottom: 60px;
}

.collection-tabs__header {
    border-bottom: 1px solid #EFEFEF;
    margin-bottom: 100px;
}

.collection-tabs__list {
    display: flex;
    gap: 38px;
    justify-content: end;
    margin-right: -24px;
}

.collection-tabs__item {
    font-family: 'PP Neue Montreal';
    font-weight: 500;
    font-size: 12px;
    line-height: 110.00000000000001%;
    letter-spacing: 2%;
    text-transform: uppercase;
    color: rgb(0, 0, 0, 0.6);
    transition: all 0.3s ease;
    padding: 23px 22px;
    position: relative;
}

.collection-tabs__item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--color-accent);
    transition: all 0.4s ease;
    opacity: 0;
    visibility: hidden;
}

.collection-tabs__item:hover::after,
.collection-tabs__item.active::after {
    width: 100%;
    opacity: 1;
    visibility: visible;
}

.collection-tabs__item:hover,
.collection-tabs__item.active {
    color: var(--color-black);
}

.collection-tabs__content-inner {
    display: flex;
    flex-wrap: wrap;
}

.collection-tabs__content-inner .left {
    width: 37%;
    padding-right: 40px;
}

.collection-tabs__content-inner .right {
    width: 63%;
}

.collection-tabs__content-title {
    font-family: 'PP Neue Montreal';
    font-weight: 500;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: 2%;
}

.collection-tabs__content-text {
    max-width: 870px;
    font-size: 32px;
    line-height: 140%;
    letter-spacing: 2%;
}

.collection-tabs__content-text span {
    color: inherit;
}

.collection-tabs__content {
    display: none;
}

.collection-tabs__content.active {
    display: block;
}

.collection-tabs__content-image {
    margin-top: 120px;
}

.collection-tabs__content-image img {
    width: 100%;
}

.collection-explore-sec {
    padding: 60px 0 68px;
}

.collection-explore__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
    margin-bottom: 60px;
}

.collection-explore__heading {
    font-size: 48px;
    line-height: 58px;
}

.collection-explore__desc {
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 2%;
    max-width: 293px;
    margin: 0 auto;
}

.tab-list {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.tab-item {
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 2%;
    color: var(--color-black);
    opacity: 0.4;
    padding: 0 16px;
}

.tab-item:hover,
.tab-item.active {
    opacity: 1;

}

.tab-item.active {
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.collection-benefits-sec {
    padding: 70px 0 120px;
}

.collection-benefits__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
}

.collection-benefits-sec .section-label {
    margin-bottom: 12px;
}

.collection-benefits__heading {
    line-height: 1.1;
}

.collection-benefits__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px 10px;
}

.collection-benefits__item {
    min-height: 500px;
    overflow: hidden;
    position: relative;
    background-color: #F9F9F9;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 60px;
}

.collection-benefits__item .item-number {
    font-family: 'PP Neue Montreal';
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 2%;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.collection-benefits__item .item-title {
    font-size: 24px;
    line-height: 29px;
    letter-spacing: 2%;
    margin-bottom: 16px;
}

.collection-benefits__item .item-desc {
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 2%;
    color: rgb(0, 0, 0, 0.6);
    max-width: 255px;
}

.collection-benefits__item .item-desc strong {
    color: var(--color-black);
    font-weight: 500;
}

.collection-benefits__item .item-services {
    display: flex;
    flex-direction: column;
    gap: 10px;

    max-width: 107px;
}

.collection-benefits__item span {
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 2%;
    color: rgb(0, 0, 0, 0.6);
}

.collection-benefits__item .item-services__icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.collection-benefits__item .item-img {
    position: absolute;
    max-width: 85%;
    right: 0;
    bottom: 0;
}

.custom-video {
    position: relative;
    width: 100%;
    aspect-ratio: 1520 / 650;
    overflow: hidden;
}

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

.custom-video__play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 200px;
    height: 200px;
    padding: 0;

    border: 0;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.6);
    color: var(--color-accent);

    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-video__play-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-left: 12px;
}

.custom-video__play.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.custom-video__play:hover {
    background: rgba(255, 255, 255, 0.85);
}

.build-chair-sec {
    padding: 0 0 70px;
    overflow: hidden;
}

.build-chair {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
}


.build-chair__preview {
    width: 54%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 110px 40px 42px 2px;
}

.build-chair__preview::before {
    content: "";
    position: absolute;
    right: 0;
    width: 100vw;
    top: 0;
    height: 100%;
    background-color: #FAFAFA;
}

.build-chair__image-wrap {
    position: relative;
    width: 389px;
}

.build-chair__image {
    width: 100%;
    margin: 0 auto;
}



.build-chair__annotation {
    position: absolute;
    top: var(--y);
    left: var(--x);

    display: flex;
    align-items: center;
    gap: 10px;

    font-family: 'PP Neue Montreal';
    font-weight: 500;
    font-size: 14px;
    line-height: 110.00000000000001%;
    letter-spacing: 2%;
    color: rgb(0, 0, 0, 0.4);
    transform: translate(-50%, -50%);
    transition:
        all 0.3s ease;
}

.build-chair__annotation.active {
    color: var(--color-black);
    font-size: 16px;
}

.build-chair__annotation-line {
    display: block;
    width: 50px;
    height: 1px;
    background: #E1E1E1;
    transition: all 0.35s ease;
}

.build-chair__annotation.active .build-chair__annotation-line {
    background: var(--color-accent);
    width: 60px;
}

.build-chair__annotation-text {
    white-space: nowrap;
}


.cs-colors {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 75px;
    flex-wrap: wrap;
    position: relative;
}

.cs-color {
    position: relative;
    z-index: 2;
    padding: 0;
    width: 36px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cs-color .dot {
    background: var(--color);
    border: 1px solid var(--border-color, var(--color));
    border-radius: 50%;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.cs-color span {
    margin-top: 12px;
    font-family: 'PP Neue Montreal';
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 2%;
    display: block;
}

.cs-color-indicator {
    position: absolute;
    z-index: 1;

    width: 36px;
    height: 36px;

    top: 16px;
    left: 0;

    border: 1px solid #000;
    border-radius: 50%;

    transform: translate(-2px, -50%);

    pointer-events: none;

    transition: transform 0.4s cubic-bezier(.4, 0, .2, 1);
}



.build-chair__content {
    width: 46%;
    display: flex;
    flex-direction: column;
    padding-left: 40px;
}

.build-chair__header {
    max-width: 375px;
}

.build-chair__heading {
    margin-bottom: 20px;
}

.build-chair__desc {
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 2%;
    color: var(--color-dark);
}



.build-chair__options {
    margin-top: 60px;
}

.build-chair__option {
    display: grid;
    grid-template-columns: 52px 1fr;
    align-items: start;
    width: 100%;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background: transparent;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 24px;
}



.build-chair__option:hover,
.build-chair__option.active {
    background: #FAFAFA;
}

.build-chair__option-number {
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 2%;
}

.build-chair__option:hover .build-chair__option-number,
.build-chair__option.active .build-chair__option-number {
    color: var(--color-accent);
}

.build-chair__option-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.build-chair__option-title {
    font-family: 'PP Neue Montreal';
    font-weight: 500;
    font-size: 20px;
    line-height: 110.00000000000001%;
}

.build-chair__option-desc {
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 2%;
    color: var(--color-black-light);
}


.build-chair__button {
    margin-top: 40px;
    width: fit-content;
}

.materials-lead-times-sec {
    padding: 70px 0;
}

.materials-lead-times__main {
    display: grid;
    grid-template-columns: clamp(300px, 21.813vw, 349px) 1fr;
    grid-gap: 71px;
}

.materials-lead-times-sec .section-label {
    margin-bottom: 12px;
}

.materials-lead-times__heading {
    margin-bottom: 16px;
}

.materials-lead-times__desc {
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 2%;
    color: var(--color-dark);
}

.materials-lead-times__btn {
    margin-top: 24px;
}

.materials-lead-times__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px 10px;
}

.materials-lead-times__item {
    min-height: 420px;
    background-color: #FAFAFA;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 35px;
    justify-content: space-between;
}

.materials-lead-times__item .item-days {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 2%;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.materials-lead-times__item .item-days .dot {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.materials-lead-times__item .item-title {
    font-size: 24px;
    line-height: 140%;
    letter-spacing: 2%;
    margin-bottom: 10px;
}

.materials-lead-times__item .item-desc {
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 2%;
    max-width: 255px;
}

.materials-lead-times__item .item-color {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    width: 40px;
    background: url('../images/materials-bg.png') no-repeat center / cover;
    height: 40px;
}

.materials-lead-times__item .item-color::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: var(--item-bg);
    border-radius: inherit;
}

.materials-lead-times__item .item-color-main {
    width: 100%;
    height: 119px;
}

.materials-lead-times__item .item-color__name {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    font-weight: 500;
    font-size: 12px;
    line-height: 140%;
    letter-spacing: 2%;
    color: #fff;
}

.materials-lead-times__item .item-color__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    margin-top: 20px;
    align-items: center;
    padding-bottom: 12px;
}

.materials-lead-times__item .item-color__list .list {
    display: flex;
    gap: 10px;
}

.materials-lead-times__item .item-color__list .more-color {
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 2%;
    color: var(--color-black-light);
    flex-shrink: 0;
}

.collection-resources-sec {
    padding: 70px 0 60px;
}

.collection-resources__inner {
    background-color: #1D1D1D;
    padding: 67px 0 68px;
}

.collection-resources__links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 80px;
    padding: 0 40px;
}

.collection-resources__link-item {
    position: relative;
    color: var(--color-white);
}

.collection-resources__link-item::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -40px;
    width: 1px;
    height: 131px;
    background-color: rgba(255, 255, 255, 0.1);
}

.collection-resources__link-item:last-child::before {
    display: none;
}

.collection-resources__link-item .item-title {
    font-family: 'PP Neue Montreal';
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
    letter-spacing: 2%;
    margin-bottom: 12px;
}

.collection-resources__link-item .item-desc {
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 2%;
}

.collection-resources__link-item .item-link {
    display: inline-block;
    font-family: 'PP Neue Montreal';
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 2%;
    padding: 10px 16px;
    border-radius: 4px;
    background-color: var(--color-white);
    color: #242424;
    margin-top: 18px;
}

.collection-resources__link-item .item-link:hover {
    color: var(--color-white);
    background: var(--color-accent);
}

.collection-taxonomy .expolore-coll-sec {
    padding: 60px 0 100px;
}

.collection-taxonomy .cta-sec.cta-small-text-black .cta-content {
    max-width: 529px;
}

/* Product Detail */
.product-detail-info-sec {
    padding: 20px 0 100px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'PP Neue Montreal';
    font-weight: 500;
    font-size: 14px;
    line-height: 110.00000000000001%;
    letter-spacing: 2%;
    white-space: nowrap;
    margin-bottom: 19px;
}

.breadcrumb__item {
    opacity: 0.4;
    transition: all 0.3s ease;
}

a.breadcrumb__item:hover {
    opacity: 1;
}

.breadcrumb__item--current {
    opacity: 1;
}

.breadcrumb__separator {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    color: #999999;
    flex-shrink: 0;
}

.breadcrumb__separator:has(+ .breadcrumb__item--current) {
    color: #000;
}

.product-detail-info__inner {
    display: flex;
    align-items: start;
}

.product-detail-info__left {
    width: 59.23%;
}

.product-detail-info__right {
    padding-left: 40px;
    width: 40.77%;
    position: sticky;
    top: 85px;
    left: 0;
}

.product-detail-info__title {
    font-size: 40px;
    line-height: 1.1;
    letter-spacing: 2%;
    max-width: 328px;
    margin-bottom: 24px;
}

.product-detail-info__desc {
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 2%;
    color: var(--color-black-light);
    max-width: 294px;
    margin-bottom: 40px;
}

.product-detail-info__desc p {
    margin-bottom: 16px;
}

.product-detail-info__desc p:last-child {
    margin-bottom: 0;
}

.product-detail-info__price {
    margin-bottom: 40px;
}

.product-detail-info__price .price {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 32px;
    line-height: 39px;
}

.product-detail-info__price .price-label {
    font-size: 14px;
    line-height: 110.00000000000001%;
    letter-spacing: 2%;
    color: var(--color-black-light);
    margin-top: 6px;
}

.product-detail-info__specifications {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 60px;
    padding: 23px 0;
    border-top: 1px solid #EFEFEF;
    border-bottom: 1px solid #EFEFEF;
    margin-bottom: 40px;
}

.specification-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

.specification-item::before {
    content: "";
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 100%;
    background-color: #EFEFEF;
}

.specification-item:last-child::before {
    display: none;
}

.specification-item__label {
    font-size: 14px;
    line-height: 110.00000000000001%;
    letter-spacing: 2%;
    color: var(--color-black-light);
}

.specification-item__value {
    font-family: 'PP Neue Montreal';
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 2%;
}

.product-detail-info__colors {
    margin-top: 18px;
    justify-content: start;
}

.product-detail-info__colors-label {
    font-size: 14px;
    line-height: 110.00000000000001%;
    letter-spacing: 2%;
    color: var(--color-black-light);
}

.product-detail-info__buttons {
    margin-top: 154px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.product-detail-info__buttons .btn-1 {
    padding: 11px 15px;
}

.product-detail-info__buttons .btn.btn-black-secondary:hover {
    background: var(--color-dark);
    border-color: var(--color-dark);
}

.product-detail-info__slider-wrap {
    position: relative;
    width: 100%;
}

.product-detail-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.product-detail-slider .swiper-wrapper {
    align-items: stretch;
}

.product-detail-slider .swiper-slide {
    width: 100%;
    height: auto;
}

.product-detail-slider__image {
    position: relative;
    width: 100%;
    aspect-ratio: 900/800;
    overflow: hidden;
    background: #EFEFEF;
}

.product-detail-slider__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Pagination */
.product-detail-slider__pagination {
    position: absolute;
    z-index: 5;

    left: 10px !important;
    top: 50% !important;
    bottom: auto !important;
    transform: translateY(-50%);

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;

    width: auto !important;
}

.product-detail-slider__pagination .swiper-pagination-bullet {
    width: 6px !important;
    height: 6px !important;
    background: #fff !important;
    margin: 0 !important;
    opacity: 1;
    transition:
        height 0.3s ease,
        background-color 0.3s ease;
}

.product-detail-slider__pagination .swiper-pagination-bullet-active {
    height: 20px !important;
    background: #000 !important;
}

.product-detail-info__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 110.00000000000001%;
    letter-spacing: 2%;
    color: var(--color-black-light);
    position: absolute;
    z-index: 2;
    left: 20px;
    right: 20px;
    bottom: 20px;
}

.product-detail-info__meta-left {
    display: flex;
    align-items: center;
    gap: 12px;
}


.product-detail-info__code {
    white-space: nowrap;
}

.product-detail-info__gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
    margin-top: 10px;
}

.product-detail-info__gallery .gallery-item {
    aspect-ratio: 445/495;
    display: block;
    overflow: hidden;
    background-color: #EFEFEF;
}

.product-detail-info__gallery .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}