:root {
    --primary: #C78E3B;
    --light: #ECE7E4;
    --dark: #1F1F1F;
    --gold-gradient: linear-gradient(90deg, #EDD3AE 0%, #C78E3B 40%, #DAB175 100%);
    --shadow: 0px 0px 20px 4px #C8C9C940;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scrollbar-width: none;
}

body {
    margin: 0;
    padding: 0;
    opacity: 0;
    transition: opacity 0.5s;
    overflow-x: hidden;
    font-weight: 400;
    color: var(--dark);
    line-height: 1.35;
    font-family: 'Poppins', sans-serif;
}

svg {
    overflow: visible;
    pointer-events: none;
}

.body-wrapper {
    width: 100vw;
    max-width: 2560px;
    margin: 0 auto;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

.container {
    padding: 0;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
}

strong {
    font-weight: 600;
}

h1 {
    font-size: 2.25rem;
    margin: 0;
    font-weight: 600;
    line-height: 1.25;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.125rem;
}

h4 {
    font-size: 1.25rem;
    font-weight: 500;
}

h5 {
    font-weight: 500;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

h6 {
    font-weight: 500;
}

p,
li {
    margin-bottom: 0.75em;
}

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

li {
    margin-left: 1rem;
    margin-bottom: 0.25rem;
}

ul,
ol {
    margin-bottom: 1.25rem;
}

ul:last-child,
ol:last-child {
    margin-bottom: 0;
}

section {
    position: relative;
    padding: 100px clamp(20px, 4vw, 80px) 0;
    max-width: 2560px;
}

::selection {
    background: #dcd8d5;
    color: var(--dark);
}

::-moz-selection {
    background: #dcd8d5;
    color: var(--dark);
}

.rccookie-container {
    background-color: #FFFFFFBB;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 10px;
}

.rccookie-container .primary-link,
.rccookie-modal .primary-link {
    background-color: var(--primary);
    color: white;
}

.rccookie-container .secondary-link {
    color: var(--dark);
}

.rccookie-modal .modal-content {
    border-radius: 15px;
}

.custom-control-input:checked~.custom-control-label::before {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.custom-control-input:not(:disabled):active~.custom-control-label::before,
.custom-control-input:not(:disabled):focus~.custom-control-label::before {
    border-color: var(--primary) !important;
    box-shadow: none !important;
}

.custom-control-label::before {
    border: 1px solid var(--dark);
}

.slider {
    transition: color 0.3s, background-color 0.3s, border-color 0.3s;
}

.slider:hover {
    background: var(--primary);
    border-color: var(--primary) !important;
    color: white;
}

.sliderMask {
    border-color: var(--primary) !important;
    background-color: var(--primary) !important;
}

.sliderContainer_success .slider {
    top: -1px;
    border: 1px solid var(--primary);
    background-color: var(--primary) !important;
    color: white;
}

/* LOADER */

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--dark);
    z-index: 9999;
    transition: opacity 0.5s;
}

.loader.end {
    opacity: 0;
}

.loader .wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader svg {
    width: 100%;
    height: 100%;
    max-width: 450px;
    max-height: 450px;
    will-change: transform;

    path {
        will-change: stroke-dashoffset;
    }
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100svh;
    display: none;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: opacity 0.4s;
    z-index: 996;
}

.overlay.active {
    opacity: 1;
}

a {
    transition: color 0.3s;
    text-decoration: none;
    cursor: pointer;
    color: var(--dark);
}

a:hover,
a:focus-visible {
    text-decoration: none;
    color: var(--dark);
}

button {
    transition: background-color 0.3s, color 0.3s;
    border: none;
    outline: none;
    cursor: pointer;
    background: transparent;
}

button:focus {
    outline: none !important;
}

.vbox-container {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.vbox-close {
    padding: 20px !important;
    top: 10px !important;
    right: 20px !important;
}

.vbox-next {
    right: 40px !important;
}

.vbox-prev {
    left: 40px !important;
}

.vbox-title {
    display: none !important;
}

/* SIDEBAR OPEN */

.open-sidebar {
    width: 28px;
    height: 28px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    display: none;

    .hb {
        border-bottom: 2px solid white;
        border-radius: 99px;
        transition: all 0.45s;
    }

    .hb1,
    .hb2 {
        width: 26px;
    }

    .hb3 {
        width: 13px;
        margin-left: 12px;
    }

    &.closed .hb1 {
        transform: rotate(-45deg) translate(-6.5px, 6.5px);
        width: 30px;
    }

    &.closed .hb2 {
        margin-right: -100%;
        opacity: 0;
    }

    &.closed .hb3 {
        transform: rotate(45deg) translate(-6.5px, -6.5px);
        width: 30px;
        margin-left: 0;
    }

}

.desktop-navbar.scrolled .open-sidebar .hb {
    border-color: white;
}

/* SIDEBAR */

.sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 40px !important;
}

@media (min-width: 1281px) {
    .sidebar {
        display: none;
    }
}

.sidebar,
.navbar-dropdown {
    width: 100%;
    position: fixed;
    right: -100vw;
    top: 70px;
    height: calc(100dvh - 70px);
    z-index: 998;
    transition: right 0.45s ease-out;
    overflow: hidden;
    overflow-y: scroll;
    overscroll-behavior: contain;
    padding: 0 20px;
}

.sidebar {
    background: #000000DD;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.sidebar.active,
.navbar-dropdown.active {
    right: 0;
}

.sidebar .content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    margin-top: -10px;
    height: 100%;
}

.sidebar .links {
    width: 100%;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sidebar .links .nav-item {
    width: 100vw;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-weight: 500;
    font-size: 1.125rem;
    text-transform: uppercase;
    color: white;
}

.sidebar .links a svg {
    position: absolute;
    right: 25px;
    top: 47%;
    transform: translateY(-50%) rotate(-90deg);
    width: 1.375rem;
}

.sidebar .links a svg path {
    stroke: white;
    stroke-width: 1;
}

.sidebar .primary-link {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}


/* DESKTOP NAVBAR */

.desktop-navbar {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    transition: background-color 0.4s, box-shadow 0.4s, backdrop-filter 0.4s, top 0.6s;
    will-change: background-color, box-shadow, backdrop-filter, top;


    &.scrolled {
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        background-color: #000000DD;
        box-shadow: var(--shadow);
    }

    &.active {
        top: -9vw;
    }

    .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 100%;
        padding: 1vw clamp(20px, 4vw, 80px);
        border-bottom: 1px solid #FFFFFFAA;
    }

    .logo {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;

        img {
            height: 3.25vw;
        }
    }

    .links {
        display: flex;
        align-items: center;
        gap: 2.5vw;
        margin-left: auto;

        .link {
            position: relative;
        }

        .nav-item {
            font-size: 0.9vw;
            letter-spacing: 0.1em;
            font-weight: 500;
            display: flex;
            align-items: center;
            position: relative;
            white-space: nowrap;
            color: white;
            text-transform: uppercase;

            &:hover {
                color: white;
            }

            &::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                width: 100%;
                height: 1px;
                background-color: white;
                transition: transform 0.4s cubic-bezier(0.01, 0.69, 0.4, 1);
                transform-origin: right;
                transform: scaleX(0);
            }

            &:hover::after {
                transform: scaleX(1);
                transform-origin: left;
            }

            svg {
                width: 0.875vw;
                margin-left: 0.5vw;
                transition: transform 0.3s;
            }

            &.active svg {
                transform: rotate(180deg);
            }

            svg path {
                transition: stroke 0.3s;
                stroke: white;
            }
        }

        .navbar-dropdown {
            width: 100%;
            height: fit-content;
            background-color: #FFFFFF;
            box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
            right: 0;
            padding: 0 clamp(20px, 4vw, 80px);
            top: 100%;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out;

            .arrow {
                display: none;
            }

            .sub-links {
                display: flex;
                justify-content: flex-end;
                gap: 2vw;

                a {
                    padding: 0.75vw 0;
                    font-size: 0.9vw;
                    text-transform: uppercase;
                    font-weight: 500;
                    color: #4D4D4D;
                }
            }
        }

    }
}

@media (max-width: 1279px) {

    .desktop-navbar {
        padding: 0;

        &.active {
            top: -70px;
        }
    }

    .desktop-navbar .container {
        max-width: 100%;
        position: relative;
        padding: 12px 20px;
        
        &.first {
            padding-top: 6px;
            padding-bottom: 6px;
            
            a {
                font-size: 12px;
                white-space: nowrap;
                padding: 0 12px;
                
                &:last-of-type {
                    border-right: none;
                }
            }
            span {
                display: none;
            }
        }
    }

    .desktop-navbar .logo {
        height: 46px;
    }

    .desktop-navbar .logo img {
        height: 46px;
    }

    .desktop-navbar .links {
        display: none;
    }

    .desktop-navbar .open-sidebar {
        display: flex;
    }

    .desktop-navbar .buttons {
        display: flex;
        gap: 15px;
        position: static;
    }

    /* .desktop-navbar .buttons a {
        display: none;
    } */

    .desktop-navbar .basketLayerContainer svg {
        height: 24px;
    }

    .desktop-navbar .login-btn svg {
        height: 24px;
        width: 24px;
    }

    .desktop-navbar .buttons .item {
        position: static;
    }

    .desktop-navbar .buttons .lang {
        display: none;
    }

    .desktop-modal {
        left: auto;
        right: 20px;
        transform: none;
        max-width: 380px;

        &.active {
            transform: translateY(24px);
        }

        &.basket-modal::before {
            right: 75px;
        }

        &.login-modal::before {
            right: 35px;
        }
    }

    .sidebar .navbar-dropdown {
        top: 0;
        background-color: #000000EF;
        -webkit-backdrop-filter: blur(5px);
        backdrop-filter: blur(5px);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .sidebar .navbar-dropdown .container {
        box-shadow: none;
        background-color: transparent;
    }

    .sidebar .navbar-dropdown .arrow {
        width: 14px;
        height: 24px;
        object-fit: contain;
        cursor: pointer;
        margin: 20px 0 0;
        display: block;
        filter: invert(1) brightness(5);
    }

    .sidebar .navbar-dropdown .container {
        padding: 0 0 40px;
        gap: 20px;
        flex-direction: row;
        align-items: auto;
        justify-content: center;
        max-height: none;
        align-items: initial;
    }

    .sidebar .navbar-dropdown .sub-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .sidebar .navbar-dropdown .sub-links a {
        padding: 15px;
        color: white;
    }
}

.primary-link {
    display: block;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--gold-gradient);
    padding: 0.875em 4.25em 0.875em 2em;
    font-size: 1.125rem;
    position: relative;
    background-size: 120% 100%;
    background-position: 100% 0%;
    color: white;
    border-radius: 99px;
    transition: background-position 0.6s cubic-bezier(0.01, 0.69, 0.4, 1), background-color 0.3s, color 0.3s;

    &.outline {
        background: white;
        color: var(--dark);
        border: 1px solid var(--dark);
        font-size: 1.0875rem;
        text-transform: none;
        letter-spacing: 0;
    }

    &:hover {
        background-position: 0% 0%;
        color: white;
    }

    &.outline:hover {
        background: #4D4D4D;
        color: white;
    }

    &::before {
        content: '';
        position: absolute;
        top: 50%;
        right: 0.375em;
        transform: translateY(-50%);
        width: 2.5em;
        height: 2.5em;
        background-color: black;
        border-radius: 99px;
    }

    &.outline::before {
        background: white;
        border: 1px solid var(--dark);
    }

    &::after {
        content: '';
        position: absolute;
        top: 50%;
        right: 0.3125em;
        transform: translateY(-50%);
        width: 2.5em;
        height: 2.5em;
        background: url('../images/angle-right-white.svg') no-repeat center / contain;
        background-size: 50% 50%;
        transition: transform 0.6s cubic-bezier(0.01, 0.69, 0.4, 1);
    }

    &.outline::after {
        filter: invert(1);
    }

    &:hover::after {
        transform: translateY(-50%) scale(1.2);
    }
}

.bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.flex-content {
    display: flex;
    gap: 80px;
}

.hero {
    min-height: 100svh;
    padding-bottom: 80px;
    display: flex;
    align-items: flex-end;
    color: white;

    .layer:not(.swiper .layer) {
        z-index: 0;
        background: linear-gradient(180deg, #00000000 0%, #000000FF 100%);
    }

    .container * {
        max-width: 40rem;
    }

    h1 {
        font-size: 3.25rem;
        text-transform: uppercase;
        margin-bottom: 1.5rem;
        font-weight: 600;
    }

    .primary-link {
        margin-top: 2.5rem;
    }

    .relative {
        position: absolute;
        top: 7vw;
        right: clamp(20px, 4vw, 80px);
        width: calc(40% - clamp(20px, 4vw, 80px));
        height: calc(100svh - 9vw);
        padding-right: 70px;

        .swiper {
            height: 100%;
            padding-left: 1.5vw;
        }

        .swiper-slide {
            overflow: visible;

            .bg {
                border-radius: 1.5vw;
            }

            .content {
                width: 50%;
                height: 100%;
                backdrop-filter: blur(8px);
                display: flex;
                flex-direction: column;
                justify-content: center;
                padding: 1.2vw;
                padding-left: 2.5vw;
                background-color: #63636340;
                border-radius: 1.5vw 0 0 1.5vw;
            }

            a {
                font-size: 1.1vw;
                text-transform: uppercase;
                font-weight: 600;
                color: white;
            }

            .badge {
                position: absolute;
                top: 50%;
                left: 0;
                transform: translate(-50%, -50%);
                width: 3vw;
                height: 3vw;
                background: var(--gold-gradient);
                border-radius: 99px;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 1vw;
                font-weight: 600;
            }

            .layer {
                z-index: 2;
            }
        }

        .swiper-button-next,
        .swiper-button-prev {
            left: auto;
            right: 0;
            width: 36px;
            height: 36px;
            border-radius: 99px;
            border: 2px solid white;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .swiper-button-next {
            transform: translateY(30px) rotate(90deg);
        }

        .swiper-button-prev {
            transform: translateY(-30px) rotate(90deg);
        }

        .swiper-button-next::after,
        .swiper-button-prev::after {
            font-size: 18px;
            color: white;
            font-weight: 700;
        }
        
        .swiper-button-next::after {
            margin-left: 1px;
        }

        .swiper-button-prev::after {
            margin-right: 1px;
        }
    }
}

.categories .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
}

.categories .header h2 {
    margin-bottom: 0;
}

.categories .items {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    justify-content: center;

    .item {
        width: calc(25% - 0.9375rem);
        height: 360px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 30px;
        overflow: hidden;
        padding: 20px;

        .layer {
            background: linear-gradient(180deg, #000000CC 0%, #99999966 100%);
            z-index: 0;
            backdrop-filter: blur(4px);
        }

        .layer.gold {
            background: var(--gold-gradient);
            opacity: 0;
            transition: opacity 0.3s;
        }

        &:hover .layer.gold {
            opacity: 0.7;
        }

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.01, 0.69, 0.4, 1);
        }

        &:hover img {
            transform: scale(1.06);
        }

        h3 {
            position: relative;
            z-index: 1;
            text-align: center;
            margin-bottom: 0;

            a {
                color: white;
                text-transform: uppercase;
                font-size: 1.125rem;
                font-weight: 600;
                letter-spacing: 0.05rem;
            }
        }
    }
}

.about .container {
    display: flex;
    align-items: flex-start;
    gap: 50px;

    .left {
        width: 43%;
        height: 550px;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 30px;
        }
    }

    .right {
        width: 57%;
    }
}

.collapse-item {

    &:last-child {
        border-bottom: 1px solid var(--dark);
    }

    .header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
        padding: 1.25rem 0;
        border-top: 1px solid var(--dark);

        h3 {
            margin-bottom: 0;
            font-size: 1.75rem;
            font-weight: 600;
            max-width: calc(100% - 3rem);
        }

        .toggle {
            background: url('../images/angle-left-gray.svg') no-repeat center / contain;
            background-size: 60% 60%;
            transform: rotate(-90deg);
            width: 2.25rem;
            height: 2.25rem;
            border-radius: 99px;
            border: 1px solid var(--dark);
            transition: transform 0.4s ease;
        }

    }

    &.active .header .toggle {
        transform: rotate(90deg);
    }

    .content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;

        p:last-child {
            padding-bottom: 1.25rem;
        }
    }
}

.values {
    padding: 80px 0;
    margin-top: 100px;
    background-color: var(--light);

    .relative {
        &::before,
        &::after {
            content: '';
            position: absolute;
            top: -80px;
            left: 0;
            width: 20%;
            height: calc(100% + 160px);
            background: linear-gradient(90deg, #ECE7E4 40%, #ECE7E400 100%);
            z-index: 99;
        }

        &::after {
            left: auto;
            right: 0;
            transform: scaleX(-1);
        }
    }

    .swiper-wrapper {
        align-items: stretch;
    }
    
    .swiper-slide:not(.first) {
        background-color: white;
        padding: 30px;
        border-radius: 30px;

        h3 {
            font-size: 1.125rem;
            text-transform: uppercase;
        }
    }
    
    .swiper-slide.first {
        display: flex;
        align-items: flex-end;
        padding-right: 40px;
    }

    .swiper-slide {
        height: auto;

        img {
            height: 2.5rem;
            margin-bottom: 1.25rem;
        }
    }

    .prev,
    .next {
        z-index: 100;
        width: 40px;
        height: 40px;
        border-radius: 99px;
        border: 1px solid var(--dark);
        transition: opacity 0.3s;
    }

    .prev::after,
    .next::after {
        font-size: 20px;
        color: var(--dark);
        font-weight: 300;
    }

    .prev::after {
        margin-right: 2px;
    }

    .prev {
        left: clamp(20px, 4vw, 80px);
    }

    .next {
        right: clamp(20px, 4vw, 80px);
    }
}

.banner {
    padding: 100px clamp(20px, 4vw, 80px);

    .layer {
        background: linear-gradient(180deg, #66666600 0%, #000000FF 100%);
    }

    .container {
        background-color: #ECE7E4E8;
        backdrop-filter: blur(8px);
        border-radius: 30px;
        padding: 50px;
        text-align: center;

        h2 {
            max-width: 45rem;
            margin: 0 auto 1.5rem;
        }

        p {
            font-size: 1.375rem;
        }

        .primary-link {
            margin: 2.25rem auto 0;
        }
    }
}

.newest {
    .header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 2.5rem;

        h2 {
            margin-bottom: 0;
        }
    }

    .items {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.25rem;
        
        .item {
            width: calc(25% - 0.9375rem);
            background: var(--light);
            border-radius: 30px;
            height: 360px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-end;
            position: relative;
            overflow: hidden;

            .layer {
                z-index: 0;
                background: linear-gradient(180deg, #868381 0%, #ECE7E4 100%);
                opacity: 0;
                transition: opacity 0.3s;
            }

            &:hover .layer {
                opacity: 1;
            }

            h3 {
                text-transform: uppercase;
                font-size: 1rem;
                font-weight: 500;
                letter-spacing: 0.05rem;
                margin-bottom: 2.5rem;
                position: relative;
                z-index: 1;
            }

            a {
                color: #343434;
                transition: color 0.3s;
            }

            &:hover a {
                color: white;
            }

            .image {
                width: 100%;
                height: 140px;
                object-fit: contain;
                margin-bottom: 2rem;
                position: relative;
                z-index: 1;
                pointer-events: none;
            }

            .button {
                width: 3rem;
                height: 3rem;
                border-radius: 99px;
                background: var(--gold-gradient);
                display: flex;
                align-items: center;
                justify-content: center;
                opacity: 0;
                transition: opacity 0.3s, margin-bottom 0.5s cubic-bezier(0.01, 0.69, 0.4, 1);
                position: relative;
                z-index: 1;
                will-change: opacity, margin-bottom;

                img {
                    width: 1.125rem;
                    height: auto;
                    transform: rotate(-90deg);
                    margin-top: 0.125rem;
                }
            }

            &:hover .button {
                opacity: 1;
                margin-bottom: 2rem;
            }
        }
    }
}

.reviews {
    padding-bottom: 40px;

    .quote {
        position: absolute;
        right: calc(100% + 40px);
        width: clamp(20px, 6vw, 120px);
    }

    .swiper-slide {
        height: auto;
        background-color: var(--light);
        padding: 30px;
        border-radius: 30px;
        padding-bottom: 85px;
        color: #4D4D4D;

        .footer {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 20px 30px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-top: 1px solid var(--dark);

            h4 {
                margin-bottom: 0;
                font-weight: 500;
                font-size: 1.125rem;
                color: var(--dark);
            }
        }
    }

    .prev,
    .next {
        z-index: 100;
        width: 40px;
        height: 40px;
        border-radius: 99px;
        border: 1px solid var(--dark);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .prev::after,
    .next::after {
        font-size: 20px;
        color: var(--dark);
    }

    .prev {
        left: -60px;
    }

    .next {
        right: -60px;
    }

    .prev::after {
        margin-right: 2px;
    }

    .next::after {
        margin-left: 2px;
    }

    .swiper-pagination {
        bottom: -40px;
        display: flex;
        border-radius: 99px;
        overflow: hidden;
        background-color: #D9D9D9;

        .swiper-pagination-bullet {
            opacity: 0;
            transition: opacity 0.3s;
            flex: 1;
            width: auto;
            margin: 0;
            border-radius: 0;
            background: var(--gold-gradient);
        }

        .swiper-pagination-bullet-active {
            opacity: 1;
        }
    }
}

.faq {
    .collapse-item .header {
        padding: 15px 0;

        h3 {
            font-size: 1.25rem;
            font-weight: 500;
        }

        .toggle {
            width: 2rem;
            height: 2rem;
        }
    }
}

.c2a-card {
    z-index: 1;

    .container {
        background-color: #090909;
        color: white;
        text-align: center;
        padding: 70px 50px;
        border-radius: 30px;
        margin-bottom: -100px;
        position: relative;
        z-index: 1;

        h3 {
            font-size: 2.5rem;
            max-width: 50rem;
            font-weight: 600;
            margin: 0 auto 1.75rem;
        }

        p {
            font-weight: 350;
            font-size: 1.5rem;
        }

        .primary-link {
            margin: 2.5rem auto 0;
        }
    }
}

.contact {
    position: static;
    padding-bottom: 100px;
    background-color: var(--light);
    padding-top: 200px;

    .container {
        position: static;

        h3 {
            font-size: 2.25rem;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            font-weight: 600;
        }

        .left {
            width: 300px;

            h3 {
                margin-bottom: 4.25rem;
            }

            p {
                margin-bottom: 0.25rem;
                    color: #4D4D4D;
                
                a {
                    color: #4D4D4D;
                }
            }
        }

        .right {
            width: auto;
            flex: 1;

            h3 {
                margin-bottom: 0.25rem;
            }

            p {
                font-size: 1.75rem;
                margin-bottom: 1.75rem;
                font-weight: 350;
            }
        }

        .footerlogo {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 220px;
            height: auto;
        }
    }
}

.socials {
    display: flex;
    gap: 1.25rem;
    margin: 2rem 0 1.5rem;

    svg {
        height: 1.75rem;
        width: auto;
    }
}

form {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

input,
textarea,
select {
    padding: 0.875rem 1.25rem;
    background-color: white;
    border-radius: 6px;
    color: #4D4D4D !important;
    font-size: 1rem;
    width: 100%;
    resize: none;
    outline: none;
    border: none;
    transition: all 0.4s;
    font-weight: 500;

    &.half {
        width: calc(50% - 0.625rem);
    }

    &::placeholder {
        color: #4D4D4D;
        opacity: 0.7;
        text-transform: uppercase;
        font-weight: 600;
        letter-spacing: 0.05em;
    }
}

select {
    appearance: none;
    background-image: url("../images/angle-down-gray.svg");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
}

.form-check {
    margin-left: 32px;
    padding-left: 0 !important;
    width: 100%;
}

.form-check:not(.form-group .form-check):first-of-type {
    margin-top: 1rem;
}

.form-group {
    margin-bottom: 0;
}

.form-group:first-of-type {
    margin-top: 1rem;
}

.form-check-input {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}

.form-check-input+label {
    position: relative;
    line-height: 1.5;
    font-size: 0.875rem;
    margin-bottom: 0;
}

.form-check-input+label::before {
    content: " ";
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
    margin-left: -32px;
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 5px;
    border: 1px solid white;
    transition: 0.3s ease;
}

.form-check-input:checked+label::before {
    background-color: #4D4D4D;
    border-color: #4D4D4D;
}

.form-check-input+label::after {
    content: " ";
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBmaWxsPSIjZmZmZmZmIiBkPSJNMTczLjg5OCA0MzkuNDA0bC0xNjYuNC0xNjYuNGMtOS45OTctOS45OTctOS45OTctMjYuMjA2IDAtMzYuMjA0bDM2LjIwMy0zNi4yMDRjOS45OTctOS45OTggMjYuMjA3LTkuOTk4IDM2LjIwNCAwTDE5MiAzMTIuNjkgNDMyLjA5NSA3Mi41OTZjOS45OTctOS45OTcgMjYuMjA3LTkuOTk3IDM2LjIwNCAwbDM2LjIwMyAzNi4yMDRjOS45OTcgOS45OTcgOS45OTcgMjYuMjA2IDAgMzYuMjA0bC0yOTQuNCAyOTQuNDAxYy05Ljk5OCA5Ljk5Ny0yNi4yMDcgOS45OTctMzYuMjA0LS4wMDF6Ii8+PC9zdmc+");
    background-repeat: no-repeat;
    background-size: 12px 12px;
    background-position: center center;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -32px;
    left: 0;
    top: -10px;
    text-align: center;
    background-color: transparent;
    font-size: 10px;
    height: 20px;
    width: 20px;
    transition: 0.3s ease;
    opacity: 0;
}

.form-check-input:checked+label::after {
    opacity: 1;
    top: 2px;
}

.contact .primary-link {
    margin-top: 1.25rem;
}

footer {
    position: relative;
    background-color: #090909;
    color: white;

    a,
    a:hover,
    a:focus {
        color: white;
    }

    .content {
        padding: 100px clamp(20px, 4vw, 80px);
    }

    .container {
        display: flex;
        justify-content: space-between;
        gap: 30px;
    }

    .item {
        display: flex;
        flex-direction: column;
        min-width: 14%;
        max-width: 20%;

        .logo {
            display: block;
            width: 200px;
            margin-top: -10px;
        }

        .mobillogo {
            display: none;
        }

        .primary-link {
            font-size: 14px;
            padding: 0.5rem 0.625rem;
            max-width: none;
            margin-top: 20px;
        }

        h3 {
            font-size: 1.125rem;
            margin-bottom: 1.25rem;
            text-transform: none;
            font-weight: 700;
        }


        li {
            margin-bottom: 0.5rem;
            list-style: none;
            margin-left: 0;
            line-height: 1.7;

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

            img {
                width: 1.125rem;
                height: auto;
                display: inline-block;
                vertical-align: middle;
                margin-right: 0.25rem;
                margin-top: -0.25rem;
            }

            p,
            a {
                width: fit-content;
                margin-bottom: 0;
                text-transform: uppercase;

                img {
                    width: 1.75rem;
                    margin-top: 0.25rem;
                }
            }
        }
    }

    .copyright {
        display: flex;
        justify-content: center;
        gap: 30px;
        background: var(--gold-gradient);
        padding: 20px;
        font-weight: 500;
        text-transform: uppercase;
    }
}

.nav {
    margin-bottom: 50px;
}

.nav a:not(:last-of-type)::after {
    content: '/';
    margin: 0 0.375rem;
}

.nav a:last-of-type {
    font-weight: 600;
}

.products {
    padding-top: 8vw;

    .container:not(.nav) {
        display: flex;
        align-items: flex-start;
        gap: 40px;

        .categories {
            border-top: 1px solid var(--dark);
            border-bottom: 1px solid var(--dark);
            padding: 20px 0;
            width: 260px;
            position: sticky;
            top: 5.25vw;

            h4 {
                font-size: 1.125rem;
                margin-bottom: 1rem;
                text-transform: uppercase;
                letter-spacing: 0.05em;
            }

            button {
                display: block;
                padding: 0.375rem 0 0.375rem 1.875rem;
                font-size: 1rem;
                position: relative;
                font-weight: 300;

                &::before {
                    content: '';
                    position: absolute;
                    top: 50%;
                    left: 0;
                    transform: translateY(-50%);
                    width: 1.25rem;
                    height: 1.25rem;
                    border-radius: 99px;
                    border: 1px solid #4D4D4D;
                    transition: background-color 0.3s;
                }

                &::after {
                    content: '';
                    position: absolute;
                    background: url('../images/check-white.svg') no-repeat center / contain;
                    background-size: 60% 60%;
                    top: 50%;
                    left: 0;
                    transform: translateY(-50%);
                    width: 1.25rem;
                    height: 1.25rem;
                    opacity: 0;
                    transition: opacity 0.3s;
                }

                &.active::before {
                    background-color: #4D4D4D;
                }

                &.active::after {
                    opacity: 1;
                }
            }
        }

        .list {
            width: calc(100% - 260px);

            h1 {
                font-weight: 600;
                font-size: 2.25rem;
                margin-bottom: 2rem;
            }

            .order {
                margin-top: 2.5rem;
                display: flex;
                align-items: center;
                justify-content: space-between;

                .number {
                    font-weight: 600;
                    font-size: 1.125rem;
                }

                .select {
                    position: relative;

                    .current {
                        padding: 0.625em 3.25em 0.625em 1.25em;
                        font-size: 1rem;

                        &::before,
                        &::after {
                            width: 1.75em;
                            height: 1.75em;
                        }

                        &::after {
                            transform: translateY(-50%) rotate(90deg);
                            right: 0.375em;
                        }
                    }

                    &.active .current::after {
                        transform: translateY(-50%) rotate(270deg);
                    }

                    .options {
                        position: absolute;
                        top: calc(100% + 5px);
                        right: 0;
                        background-color: white;
                        box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
                        width: auto;
                        z-index: 10;
                        max-height: 0;
                        overflow: hidden;
                        transition: all 0.3s ease-out;
                        border-radius: 15px;
                        border: 1px solid transparent;

                        div {
                            padding: 0.625em 1.25em;
                            font-size: 1rem;
                            cursor: pointer;
                            transition: background-color 0.2s;
                            white-space: nowrap;

                            &:hover {
                                background-color: #f3f3f3;
                            }
                        }
                    }

                    &.active .options {
                        border-color: #AAA;
                    }
                }
            }

            .no-products {
                display: none;
                text-align: center;
                margin-top: 40px;
                font-size: 1.25rem;
            }

            .items {
                display: flex;
                flex-wrap: wrap;
                gap: 1.25rem;
                justify-content: center;
                margin-top: 40px;

                .item {
                    width: calc(100% / 3 - 0.833rem);
                    border-radius: 30px;
                    overflow: hidden;
                    box-shadow: var(--shadow);
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;

                    .image {
                        display: block;
                        width: 100%;
                        height: 210px;
                        overflow: hidden;
                        position: relative;

                        img {
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                            transition: transform 0.6s cubic-bezier(0.01, 0.69, 0.4, 1);
                        }

                        &:hover img {
                            transform: scale(1.04);
                        }

                        .badge {
                            width: 100%;
                            padding: 0.375rem 1rem;
                            text-align: center;
                            background: var(--gold-gradient);
                            color: white;
                            font-weight: 600;
                            font-size: 1.125rem;
                            border-radius: 0;
                            position: absolute;
                            bottom: 0;
                            left: 0;
                            text-transform: uppercase;
                        }
                    }


                    h3 {
                        text-align: center;
                        margin-bottom: 0;
                        
                        a {
                            display: block;
                            padding: 1.25rem;
                            color: #4D4D4D;
                            text-transform: uppercase;
                            font-size: 1.125rem;
                            letter-spacing: 0.05rem;
                        }
                    }

                    .price {
                        text-align: center;
                        font-weight: 600;
                        font-size: 1.25rem;
                        margin-bottom: 1.25rem;
                        color: var(--primary);
                    }

                    .link {
                        display: block;
                        padding: 1rem;
                        text-align: center;
                        border-top: 1px solid #4D4D4D;
                        text-transform: uppercase;
                        font-weight: 500;
                        letter-spacing: 0.05rem;
                        color: #4D4D4D;
                    }
                }
            }
        }
    }
}

.relative {
    position: relative;
}

.product {
    padding-top: 8vw;

    .left {
        width: calc(50% - 40px);
        min-width: calc(50% - 40px);

        .productSwiper {
            width: 100%;
            height: 550px;
            margin-bottom: 20px;
            background-color: white;
            box-shadow: 0 2px 20px 5px #0E705A16;
            border-radius: 30px;
        }

        .product-swiper-prev,
        .product-swiper-next {
            top: 50%;
            width: 50px;
            height: 50px;
            background-color: var(--primary);
            border-radius: 99px;
        }

        .product-swiper-prev {
            left: 0;
            transform: translateX(-50%);
        }

        .product-swiper-next {
            right: 0;
            transform: translateX(50%);
        }

        .product-swiper-prev::after,
        .product-swiper-next::after {
            font-size: 26px;
            color: white;
        }
        
        .productThumbsSwiper {
            width: 100%;
            height: 190px;
        }
        
        .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .productThumbsSwiper .swiper-slide img {
            cursor: pointer;
            background-color: white;
            border-radius: 20px;
        }

        .thumbs-next::after,
        .thumbs-prev::after {
            font-size: 26px;
            color: var(--dark);
        }

        .thumbs-prev {
            left: -44px;
        }

        .thumbs-next {
            right: -44px;
        }
    }

    .right {
        width: calc(50% - 40px);
        min-width: calc(50% - 40px);

        h1 {
            font-weight: 700;
            font-size: 2rem;
            margin-bottom: 1.75rem;
        }

        .parameter-list {
            margin-top: 2rem;

            h3 {
                color: var(--primary);
            }

            .item {
                color: #606060;
                padding: 0.625rem;
                text-align: center;
                text-transform: uppercase;
            }

            .item:not(:last-of-type) {
                border-bottom: 1px solid #C4C4C4;
            }
        }
    }
}

.product-details {
    .flex-content {
        justify-content: center;

        .prices {
            width: calc(50% - 40px);
            min-width: calc(50% - 40px);
            border-bottom: 1px solid var(--primary);
            padding-bottom: 6px;

            .line {
                display: flex;

                &.header {
                    color: var(--primary);
                    border-top: 1px solid var(--primary);
                    border-bottom: 1px solid var(--primary);
                    padding: 4px 0;
                    margin-bottom: 8px;

                    span {
                        color: var(--primary);
                        font-weight: 600;
                        font-size: 1.125rem;
                    }
                }
                
                span {
                    width: 50%;
                    padding: 8px 15px 8px 0;
                    color: #606060;
                }
            }

            .separator {
                border-top: 1px dashed #606060;
                margin: 8px 0;
            }
        }

        .other {
            width: calc(50% - 40px);
            min-width: calc(50% - 40px);

            h3 {
                color: var(--primary);
                margin-bottom: 2rem;
            }
        }
    }
}

.article-hero {
    min-height: auto;
    padding-top: 12vw;
}

.article {

    padding-top: 80px;

    h1 {
        margin-top: 1.25rem;
        margin-bottom: 0.875rem;
    }

    h2 {
        font-size: 2.25rem;
        margin-top: 1.25rem;
        margin-bottom: 1.5rem;
        padding-left: 0;
        text-align: left;
        color: var(--dark);
    }

    h3 {
        font-size: 1.75rem;
        margin-top: 1.25rem;
        margin-bottom: 0.875rem;
    }

    h4 {
        font-size: 1.25rem;
        margin-top: 1.25rem;
        margin-bottom: 0.875rem;
    }

    h5 {
        font-size: 1.125rem;
        margin: 1.25rem 0 0.875rem;
    }

    h6 {
        font-size: 1rem;
        margin: 1.25rem 0 0.875rem;
    }

    img:not(.bgshape) {
        width: 100%;
        margin: 1.25rem 0;
        border-radius: 30px;
    }

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

    p {
        line-height: 1.5;
    }

}

@media (max-width: 767px) {

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }

    h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    h4 {
        font-size: 1.125rem;
    }

    p, li, a {
        font-size: 0.875rem;
    }

    section {
        padding: 50px clamp(20px, 4vw, 40px) 0;
    }

    .loader {
        padding: 60px;
    }

    .vbox-close {
        padding: 10px !important;
        right: 10px !important;
    }

    .vbox-next {
        right: 25px !important;
    }

    .vbox-prev {
        left: 25px !important;
    }

    .primary-link {
        font-size: 1rem;

        &.outline {
            font-size: 0.9375rem;
        }
    }

    .flex-content {
        flex-direction: column;
        gap: 30px;
    }

    .hero {
        min-height: auto;
        padding-top: 130px;
        padding-bottom: 65px;
        flex-direction: column;
        gap: 50px;

        .layer:not(.swiper .layer) {
            background: linear-gradient(180deg, #00000044 0%, #000000FF 100%);
        }

        h1 {
            font-size: 2rem;
            margin-bottom: 1.25rem;
        }

        .primary-link {
            margin-top: 2rem;
        }

        .relative {
            position: relative;
            top: 0;
            right: 0;
            height: 50vw;
            width: 100%;
            padding-right: 0;

            .swiper {
                padding-left: 0;
            }

            .swiper-slide {

                .bg {
                    border-radius: 20px;
                }

                .content {
                    border-radius: 20px 0 0 20px;
                    padding: 15px;
                }

                a {
                    font-size: 0.9375rem;
                }

                .badge {
                    top: auto;
                    left: 50%;
                    transform: translateX(-50%);
                    bottom: 10px;
                    font-size: 0.875rem;
                    width: 2.5rem;
                    height: 2.5rem;
                }
            }

            .swiper-button-next,
            .swiper-button-prev {
                width: 30px;
                height: 30px;
                top: auto;
                bottom: -45px;
            }

            .swiper-button-next {
                transform: translateX(-50%) rotate(90deg);
                right: auto;
                left: calc(50% + 20px);
            }

            .swiper-button-prev {
                transform: translateX(-50%) rotate(90deg);
                left: calc(50% - 20px);
            }

            .swiper-button-next::after,
            .swiper-button-prev::after {
                font-size: 14px;
            }

            .swiper-button-next::after {
                margin-bottom: -1px;
            }

            .swiper-button-prev::after {
                margin-bottom: -1px;
            }

        }
    }

    .categories {
        padding-top: 40px;
        padding-bottom: 5rem;

        .header {
            margin-bottom: 2rem;
        }

        .outline {
            white-space: nowrap;
            position: absolute;
            bottom: -5rem;
            left: 50%;
            transform: translateX(-50%);
        }

        .items {
            gap: 0.75rem;
            .item {
                width: calc(50% - 0.375rem);
                height: 190px;
                border-radius: 20px;

                .layer {
                    backdrop-filter: blur(2px);
                }

                h3 a {
                    font-size: 0.9375rem;
                }
            }
        }
    }

    .about {
        padding-top: 60px;

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

            .left {
                width: 100%;
                height: 55vw;

                img {
                    border-radius: 20px;
                }
            }

            .right {
                width: 100%;
            }
        }
    }

    .collapse-item {
    
        .header {
            padding: 0.75rem 0;
    
            h3 {
                font-size: 1.25rem;
            }
    
            .toggle {
                width: 1.75rem;
                height: 1.75rem;
                min-height: 1.75rem;
            }
        }
    
        .content {
    
            p:last-child {
                padding-bottom: 1rem;
            }
        }
    }
    
    .values {
        margin-top: 50px;
        padding: 50px clamp(20px, 4vw, 80px);
    
        .relative {
    
            width: calc(100% - 50px);
            margin: 0 auto;
    
            &::before,
            &::after {
                display: none;
            }
        }
    
        .swiper-slide:not(.first) {
            padding: 20px;
            border-radius: 20px;
        }
    
        .swiper-slide.first {
            padding: 0 10px;
            align-items: center;
        }
    
        .prev,
        .next {
            width: 30px;
            height: 30px;
        }
    
        .prev::after,
        .next::after {
            font-size: 16px;
        }
    
        .prev {
            left: -37px;
        }
    
        .next {
            right: -37px;
        }
    }
    
    .banner {
        padding: 60px clamp(20px, 4vw, 80px);
    
        .container {
            padding: 30px 20px;
    
            h2 {
                font-size: 1.5rem;
                margin-bottom: 1.25rem;
            }
    
            p {
                font-size: 1.25rem;
            }
    
            .primary-link {
                margin-top: 2rem;
            }
        }
    }
    
    .newest {
        padding-bottom: 5rem;
    
        .header {
            margin-bottom: 2rem;
        }
    
        .outline {
            white-space: nowrap;
            position: absolute;
            bottom: -5rem;
            left: 50%;
            transform: translateX(-50%);
        }
    
        .items {
            gap: 0.75rem;
    
            .item {
                width: calc(50% - 0.375rem);
                height: 210px;
                justify-content: center;
                border-radius: 20px;
    
                .image {
                    height: 110px;
                    margin-bottom: 0;
                }
    
                h3 {
                    font-size: 1rem;
                    margin-bottom: 1.5rem;
                }
    
                .button {
                    display: none;
                }
            }
        }
    }
    
    .reviews {
        .quote {
            display: none;
        }
    
        .relative {
            width: calc(100% - 50px);
            margin: 0 auto;
    
            .swiper-slide {
                padding: 20px;
                padding-bottom: 80px;
                border-radius: 20px;

                .footer {
                    padding: 20px;

                    h4 {
                        font-size: 0.875rem;
                    }
                }
            }
    
    
            .prev,
            .next {
                width: 30px;
                height: 30px;
            }
            .prev::after,
            .next::after {
                font-size: 16px;
            }
    
            .prev {
                left: -37px;
            }
    
            .next {
                right: -37px;
            }
        }
    
    }

    .faq {
        .collapse-item .header {
            padding: 0.75rem 0;

            h3 {
                font-size: 1rem;
            }

            .toggle {
                width: 1.75rem;
                height: 1.75rem;
                min-height: 1.75rem;
            }
        }
    }

    .c2a-card {
        .container {
            padding: 40px 20px;
            
            h3 {
                font-size: 1.5rem;
                margin-bottom: 1.5rem;
            }

            p {
                font-size: 1.25rem;
            }

            .primary-link {
                margin-top: 2rem;
            }
        }
    }

    .contact {
        padding-top: 150px;
        padding-bottom: 50px;

        .container {

            h3 {
                font-size: 2rem;
                margin-bottom: 1.25rem;
            }

            .left {
                width: 100%;

                h3 {
                    margin-bottom: 1.5rem;
                }

            }
            
            .right {
                p {
                    font-size: 1.25rem;
                }
            }
        }
    }

    .socials {
        gap: 1rem;
        margin: 1.5em 0 2rem;
    }

    form {
        gap: 1rem;
    }

    input,
    select,
    textarea {
        font-size: 0.875rem;
        padding: 0.75rem 1rem;

        &.half {
            width: 100%;
        }
    }

    footer {

        .content {
            padding: 50px 20px;
        }

        .container {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .item {
            min-width: 100%;
            max-width: 100%;
            align-items: center;

            .logo {
                display: none;
            }

            .mobillogo {
                display: block;
            }

            .socials {
                margin-bottom: 0.75rem;
            }
        }

        .copyright {
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 1rem;
            font-size: 0.875rem;

            a {
                font-size: 1rem;
            }
        }
    }

    .products {
        padding-top: 100px;

        .nav {
            margin-bottom: 40px;
        }

        .container:not(.nav) {
            gap: 0;

            .categories {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                justify-content: flex-end;
                display: none;
            }

            .list {
                width: 100%;

                h1 {
                    margin-bottom: 1.5rem;
                }

                .order {
                    margin-top: 2.25rem;

                    .number {
                        font-size: 1rem;
                    }

                    .select .current {
                        font-size: 0.9375rem;
                    }

                }

                .items {
                    .item {
                        width: 100%;

                        .image {
                            height: 230px;
                        }
                    }
                }
            }
        }
    }

    .product {
        padding-top: 100px;

        .left {
            min-width: auto;
            width: 100%;

            .relative {
                width: calc(100% - 40px);
                margin: 0 auto;
            }
            
            .productSwiper {
                height: 60vw;
                margin-bottom: 15px;
            }

            .productThumbsSwiper {
                height: 100px;
            }

            .thumbs-next::after,
            .thumbs-prev::after {
                font-size: 20px;
            }

            .thumbs-prev {
                left: -34px;
            }

            .thumbs-next {
                right: -34px;
            }
        }

        .right {

            width: 100%;
            min-width: 100%;

            h1 {
                font-size: 2rem;
                margin-bottom: 1rem;
            }

            .parameter-list .item {
                font-size: 0.875rem;
                padding: 0.5rem;
            }
        }
    }

    .product-details {
        .flex-content {
            gap: 40px;
            
            .prices,
            .other {
                width: 100%;
                min-width: 100%;
            }

            .other h3 {
                margin-bottom: 1.25rem;
            }
        }
    }

    .article-hero {
        min-height: auto;
        padding-top: 150px;
    }

    .article {

        padding-top: 20px;

        h1 {
            margin-top: 1.25rem;
            margin-bottom: 0.875rem;
        }

        h2 {
            font-size: 2rem;
            margin-top: 1.25rem;
            margin-bottom: 1.5rem;
            padding-left: 0;
            text-align: left;
            color: var(--dark);
        }

        h3 {
            font-size: 1.5rem;
            margin-top: 1.25rem;
            margin-bottom: 0.875rem;
        }

        h4 {
            font-size: 1.25rem;
            margin-top: 1.125rem;
            margin-bottom: 0.875rem;
        }

        h5 {
            font-size: 1rem;
            margin: 1.25rem 0 0.875rem;
        }

        h6 {
            font-size: 0.875rem;
            margin: 1.25rem 0 0.875rem;
        }

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

        p {
            line-height: 1.5;
        }

    }
}



@media (min-width: 640px) {
    .container {
        max-width: 640px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 768px;
    }
}

@media (min-width: 1023px) {
    .container {
        max-width: 1023px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}