:root {
    --primary: #A8BAC4;
    --dark: #171717;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Libre Franklin', sans-serif;
}

html {
    scrollbar-width: none;
}

body {
    margin: 0;
    padding: 0;
    opacity: 0;
    transition: opacity 0.5s;
    overflow-x: hidden;
    font-weight: 400;
    color: var(--dark);
}

.body-wrapper {
    overflow-x: hidden;
    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: 1140px;
    margin: 0 auto;
    width: 100%;
    position: relative;
}

strong {
    font-weight: 600;
}

h1 {
    font-size: 4.5rem;
    margin: 0;
    font-weight: 700;
    line-height: 1.15;
    text-transform: uppercase;
}

h2 {
    font-size: 4rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 5rem;
    width: fit-content;
    text-transform: uppercase;
    color: var(--primary);
}

h2:not(.article h2, #basketpage h2):before {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    margin-bottom: 1.5rem;
    transition: width 1s cubic-bezier(0.01, 0.6, 0.4, 1);
}

h2:not(.article h2, #basketpage h2).animated:before {
    width: 100%;
}

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

h4 {
    font-size: 1.125rem;
    font-weight: 600;
}

h5 {
    font-weight: 600;
    font-size: 1rem;
}

h6 {
    font-weight: 600;
    font-size: 1rem;
}

p,
li {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

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

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

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

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

.article h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    padding-left: 0;
}

.article h3 {
    font-size: 2rem;
    font-weight: 600;
}

.article h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.25rem;
    margin-bottom: 0.875rem;
}

.article h5 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 1.25rem 0 0.875rem;
}

.article h6 {
    font-size: 1rem;
    font-weight: 600;
    margin: 1.25rem 0 0.875rem;
}

.article img:not(.bgshape) {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    margin: 1.25rem 0;
    border-radius: 10px;
}

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

.primary-link {
    padding: 0.875rem 2rem 0.8125rem;
    font-size: 1rem;
    line-height: 1;
    border-radius: 0.375rem;
    display: block;
    width: fit-content;
    text-transform: uppercase;
    outline: none;
    white-space: nowrap;
    position: relative;
    font-weight: 500;
    background-color: var(--dark);
    color: white;
    transition: background-color 0.3s, color 0.3s;
}

.primary-link:hover {
    background-color: var(--primary);
    color: white;
}

.primary-link.center {
    margin: 60px auto 0;
}

.arrow-button {
    display: flex;
    align-items: center;
    padding: 0.5rem 0.75rem;
    border-radius: 99px;
    background-color: var(--dark);
}

.arrow-button.blue {
    background-color: var(--primary);
}

.arrow-button svg {
    width: 1.5rem;
    height: 1rem;
}

.arrow-button svg path {
    fill: white;
}

::selection {
    background: var(--primary);
    color: white;
}

::-moz-selection {
    background: var(--primary);
    color: white;
}

.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;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    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;
}

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

.desktop-navbar.scrolled .open-sidebar .hb {
    border-color: var(--dark);
}

.open-sidebar .hb1,
.open-sidebar .hb2 {
    width: 26px;
}

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

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

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

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

/* 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 .lang {
    font-size: 20px;
    color: var(--dark);
    gap: 0.5rem;
}

#sidebar .lang a {
    font-size: 1.125rem;
    color: var(--dark);
    border-color: var(--dark);
    padding-right: 0.5rem;
}

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

#sidebar  {
    background: #FFFFFFDD;
    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: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0;
    color: var(--dark);
}

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

#sidebar .links a svg path {
    stroke: var(--primary);
    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: #11111188;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: background-color 0.4s, box-shadow 0.4s;
    padding: 0 clamp(20px, 4vw, 80px);
}

.desktop-navbar.shadowed {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.desktop-navbar.scrolled {
    background-color: #FFFFFFDD;
}

.desktop-navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px 0 24px;
    max-width: 100%;
}

.desktop-navbar .logo {
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 1.75rem;
}

.desktop-navbar .logo img {
    position: absolute;
    top: 0;
    left: 0;
    height: 1.75rem;
    transition: opacity 0.3s;
}

.desktop-navbar .logo .dark {
    opacity: 0;
}

.desktop-navbar.scrolled .logo .dark {
    opacity: 1;
}

.desktop-navbar.scrolled .logo .light {
    opacity: 0;
}

.desktop-navbar .links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding: 0 4rem 0 2.5rem;
    margin-left: auto;
}

.desktop-navbar .links .link {
    position: relative;
}

.desktop-navbar .links .nav-item {
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    position: relative;
    white-space: nowrap;
    color: white;
    letter-spacing: 0;
}

.desktop-navbar.scrolled .links .nav-item {
    color: var(--dark);
}

.desktop-navbar .links .nav-item:hover {
    color: white;
}

.desktop-navbar.scrolled .links .nav-item:hover {
    color: var(--primary);
}

.desktop-navbar .links .nav-item::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: white;
    transition: width 0.4s cubic-bezier(0.01, 0.69, 0.4, 1);
}

.desktop-navbar.scrolled .links .nav-item::after {
    background-color: var(--primary);
}

.desktop-navbar .links .nav-item:hover::after {
    width: 100%;
}

.desktop-navbar .links .nav-item svg {
    width: 0.875rem;
    margin-left: 0.5rem;
    transition: transform 0.3s;
}

.desktop-navbar .links .nav-item.active svg {
    transform: rotate(180deg);
}

.desktop-navbar .links .nav-item svg path {
    transition: stroke 0.3s;
    stroke: white;
}

.desktop-navbar.scrolled .links .nav-item svg path {
    stroke: var(--dark);
}

.desktop-navbar .buttons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
}

.desktop-navbar .basketLayerContainer svg {
    height: 1.625rem;
}

.desktop-navbar .login-btn svg {
    height: 1.625rem;
    width: 1.625rem;
}

.desktop-navbar .buttons svg path,
.desktop-navbar .buttons svg circle {
    transition: fill 0.3s, stroke 0.3s;
}

.desktop-navbar .buttons .item:first-of-type svg:hover path {
    fill: var(--primary);
}

.desktop-navbar .buttons .item:nth-of-type(2) svg:hover path,
.desktop-navbar .buttons .item:nth-of-type(2) svg:hover circle {
    stroke: var(--primary);
}

/* NAVBAR DROPDOWN */

.desktop-navbar .navbar-dropdown {
    position: absolute;
    top: 3.25rem;
    left: 0;
    padding: 0;
    width: fit-content;
    height: fit-content;
    overflow: hidden;
    border-bottom-right-radius: 1rem;
    z-index: 998;
    max-height: 0;
    transition: max-height 0.6s cubic-bezier(0.01, 0.69, 0.4, 1);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.desktop-navbar .navbar-dropdown.active {
    z-index: 999;
}

.navbar-dropdown .container {
    display: block;
    padding: 0.5rem 0;
    background-color: #FFFFFFEF;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.desktop-navbar .navbar-dropdown .arrow {
    display: none;
}

.navbar-dropdown .container a {
    display: block;
    font-size: 1rem;
    padding: 0.625rem 1.25rem 0.75rem;
    white-space: nowrap;
    color: var(--dark);
    font-weight: 600;
}

/* KIS LENYÍLÓK */

.desktop-modal {
    position: absolute;
    top: 100%;
    right: -20px;
    width: calc(100vw - 40px);
    max-width: 340px;
    background-color: #FFFFFFE8;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 6px;
    display: none;
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
    padding: 20px;
}

.desktop-modal.active {
    transform: translateY(40px);
    opacity: 1;
}

.desktop-modal::before {
    content: '';
    position: absolute;
    top: -17.75px;
    width: 40px;
    height: 21px;
    background-image: url('../images/triangle.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.9;
}

.basket-modal::before {
    right: 65px;
}

.login-modal::before {
    right: 12px;
}

.desktop-modal .cancel,
.navbar-dropdown .cancel {
    position: absolute;
    top: 7px;
    right: 5px;
    padding: 10px;
    cursor: pointer;
    width: 38px;
}

.desktop-modal h3 {
    margin: 0 0 20px;
    text-transform: none;
    font-size: 1.125rem;
    text-align: center;
}

.desktop-modal form {
    padding: 0;
    width: 100%;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.desktop-modal form input {
    width: 100%;
    padding: 0 0 10px;
    border-bottom: 1px solid var(--dark);
    margin-bottom: 20px;
    line-height: 1;
}

.basket-modal .list {
    max-height: calc(100vh - 340px);
    overflow-y: auto;
    padding-right: 20px;
    margin-right: -20px;
    scrollbar-width: thin;
    overscroll-behavior: contain;
}

.basket-modal .item {
    display: flex;
    gap: 10px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--primary);
}

.basket-modal .item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.basket-modal .item h4 {
    font-size: 0.875rem;
    text-transform: uppercase;
    margin-bottom: 0;
}

.basket-modal .item .size {
    font-size: 0.75rem;
    margin-bottom: 0;
}

.basket-modal .item .quantity {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
}

.basket-modal .price {
    text-align: right;
    font-size: 0.875rem;
    font-weight: 600;
}

.basket-modal .summary {
    display: flex;
    justify-content: space-between;
}

.basket-modal .summary .price {
    font-size: 1rem;
}

.desktop-modal .buttons {
    margin-top: 20px;
    flex-direction: column;
    gap: 10px;
}

.desktop-modal .primary-link {
    font-size: 0.875rem;
    padding: 0.625rem 1rem;
}

.desktop-modal  .blue {
    background-color: var(--primary);
}

.desktop-modal .primary-link:hover {
    background-color: #D4DDE0;
    color: var(--dark);
}

.desktop-modal.login-modal .lostpassword {
    text-align: center;
    margin-top: 0.5rem;
    font-size: 0.8125rem;
}

.desktop-modal.login-modal .logged-in a {
    display: block;
    text-align: center;
    margin-bottom: 0.625rem;
}

.desktop-modal.login-modal hr {
    width: 100%;
    margin: 1rem 0;
    border-top: 1px solid #AAAAAA;
}

/* Állandó */

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

.flex-content.center {
    align-items: center;
}

.flex-content.reverse {
    flex-direction: row-reverse;
}

.flex-content .side {
    width: 50%;
}

.flex-content .side > img,
.flex-content .side .image img {
    width: 100%;
}

.card {
    display: block;
    border: none;
    border-radius: 10px;
}

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

.items {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 40px;
    justify-content: center;
}

.items .item {
    display: flex;
    flex-direction: column;
    position: relative;
}

.items.two .item {
    width: calc(50% - 20px);
}

.items.three .item {
    width: calc(33.3333% - 28px);
}

.items.four .item {
    width: calc(25% - 30px);
}

.items .item h3,
.items .item h3 a {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.item .link {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    text-transform: uppercase;
    font-size: 1.25rem;
}

.relative {
    position: relative;
}

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

.swiper {
    width: 100%;
    position: relative;
}

.swiper-button-prev,
.swiper-button-next {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    z-index: 99;
    cursor: pointer;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 30px;
    font-weight: 600;
    color: var(--gray);
}

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

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

.swiper-button-prev {
    left: -54px;
}

.swiper-button-next {
    right: -54px;
}

.swiper-slide {
    height: 250px;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-wrapper {
    align-items: center;
}

/* 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(--primary);
    z-index: 9999;
    transition: opacity 0.5s;
}

.loader.end {
    opacity: 0;
}

.loader svg {
    width: 100%;
    height: 100%;
    max-width: 450px;
    max-height: 450px;
}

/* HERO */

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

.tiles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.tile {
    background-color: white;
    position: absolute;
}

.hero {
    width: 100vw;
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 80px clamp(20px, 4vw, 80px) 0;
    color: white;
}

.hero .layer {
    background: linear-gradient(90deg, #A8BAC4F0 0%, #A8BAC400 100%);
    z-index: 0;
}

.hero .container {
    max-width: 100%;
    position: relative;
    z-index: 1;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    padding: 160px clamp(20px, 8vw, 160px);
}

.hero.main-hero .container {
    padding: 160px clamp(20px, 8vw, 160px) 80px;
}

.hero h3 {
    font-size: 3.75rem;
    font-weight: 700;
    margin-bottom: 0;
}

.hero p {
    font-size: 2.5rem;
    font-weight: 600;
    font-style: italic;
}

.hero h1 {
    max-width: 50rem;
}

.hero.main-hero h1 {
    margin-bottom: 1.5rem;
}

.hero .primary-link {
    margin-top: 2.25rem;
}

.hero.main-hero + .after-hero {
    padding: 80px clamp(20px, 4vw, 80px);
}

.after-hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(100% + 120px);
    background-color: #F4F1EE;
}

.main-hero + .after-hero .container {
    max-width: 960px;
} 

.after-hero p {
    text-align: center;
    line-height: 1.6;
    font-size: 1.125rem;
    font-weight: 500;
}

.whyus .icon {
    margin-bottom: 20px;
}

.whyus .icon::before {
    content: '';
    display: block;
    width: 80px;
    height: 1.75px;
    background-color: var(--primary);
    margin-bottom: 16px;
}

.whyus .icon img {
    height: 60px;
}

.whyus .items {
    gap: 60px;
}

.whyus .items .item {
    width: calc(25% - 45px);
}

.whyus .items .item h3 {
    font-size: 1rem;
}

.product-categories .items {
    gap: 20px;
}

.product-categories .items.two .item {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    padding: 28px;
    height: 350px;
    border-radius: 6px;
    overflow: hidden;
    width: calc(50% - 10px);
}

.product-categories .item .image {
    transition: transform 0.6s cubic-bezier(0.01, 0.69, 0.4, 1);
    z-index: 0;
}

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

.product-categories .item .layer {
    background: linear-gradient(90deg, #D4CBC2E0 0%, #D4CBC200 80%);
    z-index: 1;
}

.product-categories .items .item h3,
.product-categories .items .item h3 a {
    margin-bottom: 0;
    line-height: 1.1;
    font-weight: 700;
    text-transform: none;
    font-size: 2rem;
    max-width: 25rem;
    color: #333333;
    position: relative;
}

.product-categories .item:hover .image {
    transform: scale(1.05);
}

.product-categories .items .item .arrow-button {
    position: relative;
}

.usage .items .item h3 {
    font-weight: 700;
    margin-bottom: 0.625rem;
}

.usage .content {
    margin-bottom: 1.25rem;
}

.usage .item .image {
    width: 100%;
    padding-bottom: 80%;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
}

.usage .item .image img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.usage .item .image span {
    position: absolute;
    top: -2px;
    right: -2px;
    border-bottom-left-radius: 6px;
    background-color: white;
    color: #D4CBC2;
    font-size: 3rem;
    font-weight: 700;
    padding: 0.625rem;
    line-height: 1;
}

.install .flex-content {
    padding: 50px 0;
    margin-bottom: 80px;
    gap: 100px;
}

.install .flex-content .side {
    position: relative;
}

.install .flex-content .left.side {
    z-index: 1;
}

.install .flex-content .right.side::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -240px;
    width: 9999px;
    height: calc(100% + 100px);
    background-color: #F4F1EE;
    z-index: -1;
}

.install .flex-content.reverse .right.side::before {
    left: auto;
    right: -240px;
}

.install .flex-content h4 {
    margin-bottom: 1rem;
}

.install .flex-content img {
    border-radius: 6px;
}

.reviews .quote {
    display: block;
    margin: 0 auto -70px;
    width: 140px;
    position: relative;
    z-index: 2;
}

.reviews .relative {
    background-color: var(--primary);
    color: white;
    padding: 120px 0 60px;
    z-index: 1;
}

.reviews .swiper-wrapper {
    align-items: normal;
}

.reviews .swiper-slide {
    padding: 0 40px 2.5rem;
    text-align: center;
    position: relative;
    height: auto;
}

.reviews .swiper-slide::after {
    content: '';
    position: absolute;
    top: 0;
    right: -1px;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background-color: white;
}

.reviews .swiper-slide p {
    font-style: italic;
}

.reviews .swiper-slide h4 {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 0;
}

.relative .prev,
.relative .next {
    position: absolute;
    top: 50%;
    background-color: white;
    z-index: 99;
}

.relative .prev svg,
.relative .next svg {
    width: 30px;
    height: 20px;
}

.relative .prev path,
.relative .next path {
    fill: var(--primary);
}

.relative .prev {
    transform: translateX(-50%) translateY(-50%);
    left: 0;
}

.relative .next {
    transform: translateX(50%) translateY(-50%);
    right: 0;
}

.banner-image {
    width: 100%;
    min-height: 200px;
    object-fit: cover;
}

.reviews + .banner-image {
    margin-top: -160px;
}

.brands .items {
    gap: 60px;
    align-items: center;
    padding: 20px 0 60px;
}

.brands .items img {
    width: calc(16.6667% - 54px);
    height: auto;
}

.blog .items.three {
    gap: 80px;
}

.blog .items.three .item {
    position: relative;
    width: calc(33% - 54px);
    padding-bottom: 3.5rem;
    text-align: center;
}

.blog .items .item::after {
    content: '';
    position: absolute;
    top: 0;
    right: -40px;
    height: 100%;
    width: 1px;
    background-color: var(--primary);
}

.blog .items .item:nth-of-type(3n)::after,
.blog .items .item:last-of-type::after {
    display: none;
}

.blog .items .item .image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    margin-bottom: 20px;
}

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

.blog .items .item .image:hover img {
    transform: scale(1.05);
}

.blog .items .item h3,
.blog .items .item h3 a {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    text-transform: none;
}

/* .blog .items .item .date {
    display: block;
    font-size: 0.875rem;
    color: #444444;
    margin-bottom: 0.75rem;
} */

.blog .items .item p {
    margin-bottom: 0;
}

.blog .items .item .arrow-button {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.contact {
    position: static;
    background-color: #D4DDE0;
    padding-top: 0;
    margin-top: 120px;
}

.contact h2 {
    color: var(--dark);
    margin-bottom: 4rem;
}

.contact h2:not(.article h2)::before {
    background-color: var(--dark);
    width: 100%;
}

.contact .left {
    max-width: 45%;
}

.contact-infos {
    display: flex;
    gap: 3rem;
    margin-bottom: 50px;
}

.contact-infos a {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-weight: 500;
}

.contact .bgcontainer {
    position: relative;
    width: 100%;
    padding-top: 60px;
}

.contact .bgcontainer img {
    position: absolute;
    top: 0;
    right: 0;
    width: 46%;
    min-height: 880px;
    object-fit: cover;
}

.contact form {
    padding-bottom: 60px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

input,
textarea,
select {
    padding: 0.75rem 0;
    outline: none;
    border: none;
    border-radius: 0;
    background-color: transparent;
    color: var(--dark) !important;
    font-size: 1rem;
    width: 100%;
    resize: none;
    border-bottom: 1.75px solid var(--dark);
}

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

input::placeholder,
textarea::placeholder,
select::placeholder {
    color: var(--dark);
    opacity: 0.7;
}

.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;
    color: var(--dark);
}

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

.form-check-input:checked+label::before {
    background-color: var(--dark);
}

.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;
    position: relative;
    z-index: 2;
}

/* FOOTER */

footer {
    position: relative;
}

footer .content {
    background-color: #F4F1EE;
    padding: 100px 40px;
}

footer .container {
    display: flex;
    justify-content: space-between;
}

footer .item .logo {
    display: block;
    width: 130px;
    margin-top: 0.375rem;
}

footer .item {
    display: flex;
    flex-direction: column;
    min-width: 17%;
    max-width: 21%;
}

footer .item h3 {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    text-transform: none;
}

footer .item p,
footer .item a {
    width: fit-content;
    margin-bottom: 0;
}

footer li {
    margin-bottom: 0.5rem;
    list-style: none;
    margin-left: 0;
}

footer .item:last-of-type a {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-weight: 500;
}

footer .item .raccoon {
    margin-top: 1.25rem;
}

footer .item .raccoon a {
    display: block;
    font-size: 1.125rem;
    margin-bottom: 0;
    font-weight: 500;
}

.after-hero {
    padding: 48px clamp(20px, 4vw, 80px);
}

.nav {
    line-height: 1.4;
    position: relative;
    z-index: 2;
}

.nav a {
    margin-right: 0.375rem;
}

.nav a:after {
    content: '/';
    margin-left: 0.375rem;
}

.nav span {
    font-weight: 600;
    line-height: 1.4;
}

.contact-hero + .after-hero::before {
    background-color: #D4DDE0;
}

.contact.subpage {
    margin-top: 0;
}

.contact.subpage .bgcontainer {
    padding-top: 0;
}

.contact.subpage .desc {
    font-size: 1.125rem;
    margin-bottom: 60px;
    font-weight: 500;
}

.gyik {
    padding-top: 80px;
}

.collapse-item {
    border-bottom: 1px solid #D4DDE0;
}

.collapse-item .header {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
}

.collapse-item .header h4 {
    margin-bottom: 0;
}

.collapse-item .header img {
    width: 48px;
    height: 48px;
    padding: 10px;
    border-radius: 50%;
    background-color: #D4DDE0;
    transition: all 0.5s;
}

.collapse-item.active .header img {
    background-color: var(--primary);
    transform: rotate(180deg);
}

.collapse-item .content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

.collapse-item .content .inner {
    padding-bottom: 20px;
    max-width: 950px;
}

.filters {
    display: flex;
    border-bottom: 1px solid var(--primary);
    padding-bottom: 1rem;
    margin-bottom: 60px;
}

.filter {
    width: 25%;
    padding: 0 0.75rem;
    position: relative;
    border-right: 1px solid var(--primary);
}

.filter button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.625rem;
    font-weight: 500;
    transition: all 0.3s;
    color: var(--dark);
}

.filter:last-of-type {
    border-right: none;
}

.filter.isFiltering button {
    font-weight: 700;
    color: var(--primary);
}

.filter svg {
    width: 1.125rem;
    transition: all 0.3s;
}

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

.filter path {
    stroke: var(--dark);
    stroke-width: 1.25;
    transition: all 0.3s;
}

.filter.isFiltering path {
    stroke: var(--primary);
}

.filter .list {
    position: absolute;
    top: calc(100% + 1rem + 1px);
    left: 0;
    background-color: white;
    box-shadow: none;
    min-width: calc(100% + 1px);
    max-height: 0;
    overflow: hidden;
    box-shadow: 2px 4px 0 4px #C8C9C900;
    transition: all 0.5s cubic-bezier(0.01, 0.69, 0.4, 1);
    z-index: 10;
}

.filter .list::after {
    content: '';
    position: absolute;
    bottom: 0;
    height: 1px;
    width: 100%;
    background-color: var(--primary);
}

.filter.active .list {
    box-shadow: 2px 4px 20px 4px #C8C9C920;
}

.filter .list .item {
    font-size: 0.875rem;
    cursor: pointer;
    padding: 0.375rem 0.75rem;
    transition: all 0.3s;
    white-space: nowrap;
}

.filter .list .item:first-of-type {
    margin-top: 0.5rem;
}

.filter .list .item:last-of-type {
    margin-bottom: 0.5rem;
}

.filter:not(.attribute) .list .item.selected {
    color: var(--primary);
    font-weight: 700;
}

.filter.attribute .list .item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.filter.attribute .list .item::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 1px solid var(--primary);
    border-radius: 4px;
    transition: all 0.3s;
}

.filter.attribute .list .item.selected::before  {
    background-color: var(--primary);
}

.filter.attribute .list .item::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;
    left: 0.75rem;
    top: 0;
    text-align: center;
    background-color: transparent;
    height: 20px;
    width: 20px;
    transition: 0.3s ease;
    opacity: 0;
}

.filter.attribute .list .item.selected::after {
    opacity: 1;
    top: 50%;
    transform: translateY(-50%);
}

.product-list .items .item {
    text-align: center;
}

.product-list .item .images {
    position: relative;
    z-index: 1;
    margin-bottom: -48px;
}

.product-list .item a {
    display: block;
    width: 100%;
}

.product-list .item img {
    display: block;
    width: 100%;
    height: 160px;
    object-fit: contain;
}

.product-list .item .images .main {
    transition: opacity 0.4s;
}

.product-list .item .images .secondary {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.4s;
}

.product-list .item:hover .images .secondary {
    opacity: 1;
}

.product-list .item:hover .images .secondary + .main{
    opacity: 0;
}

.product-list .item .content {
    background-color: #F4F1EE;
    padding: 70px 25px 25px;
    position: relative;
    border-radius: 6px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: box-shadow 0.3s;
}

.product-list .item:hover .content {
    box-shadow: 2px 4px 20px 4px #C8C9C920;
}

.product-list .item.sale .content::before {
    content: '%';
    position: absolute;
    top: 0;
    left: 20px;
    width: 48px;
    height: 48px;
    font-size: 24px;
    background-color: #67B79F;
    color: white;
    font-weight: 600;
    border-radius: 0 0 6px 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.product-list .item h3 {
    font-size: 1.125rem;
    margin-bottom: 0;
}

.product-list .item .size {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.product-list .item .price {
    font-size: 1.375rem;
    margin-bottom: 20px;
}

.product-list .item.sale .price {
    color: #67B79F;
}

.product-list .item .original-price {
    display: none;
}

.product-list .item.sale .original-price {
    display: block;
    font-size: 0.8125rem;
    margin-bottom: 0.25rem;
}

.to-basket {
    display: flex;
    max-width: 280px;
}

.product-list .to-basket {
    margin: 0 auto;
}

.to-basket select {
    background-color: white;
    border-radius: 6px 0 0 6px;
    padding: 10px;
    background-size: 14px;
    background-position: right 16px center;
    width: 50%;
    margin-right: -3px;
    border: 1px solid var(--primary);
}

.product-list .to-basket select {
    border: none;
}

.to-basket .primary-link {
    background-color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.6875rem 1rem 0.625rem;
    width: 50%;
    margin-left: -3px;
}

.to-basket .primary-link:hover {
    background-color: var(--dark);
}

.to-basket .primary-link img {
    width: 1.25rem;
    height: 1.25rem;
    display: block;
    margin-top: -0.125rem;
}

.product .outer-container {
    position: relative;
    padding: 40px;
}

.product .outer-container::before {
    width: 100%;
    height: 100%;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-color: #F4F1EE;
    border-radius: 6px;
}

.product .nav {
    margin-bottom: 40px;
}

.product .left.side {
    width: 40%;
}

.product .left.side img {
    max-height: 480px;
    object-fit: contain;
}

.product .right.side {
    width: 60%;
}

.product .brand-logo {
    width: 130px !important;
    display: block;
    margin-bottom: 20px;
}

.product .right h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.3;
}

.product .size {
    font-size: 2rem;
    color: var(--primary);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.product .stock-info {
    font-size: 0.875rem;
    text-transform: uppercase;
    margin-bottom: 2.75rem;
}

.product .price {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 0.25rem;
}

.product .info {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
}

.product .to-basket {
    box-shadow: 2px 4px 20px 4px #C8C9C920;
}

.product-icons {
    margin-top: 80px;
    padding-top: 80px;
    padding-bottom: 200px;
    background-color: #D4DDE088;
}

.product-icons .item {
    align-items: center;
    text-align: center;
}

.product-icons .item img {
    height: 60px;
    margin-bottom: 25px;
}

.product-icons .item h3 {
    font-size: 1.125rem;
}

.gallery {
    padding-top: 0;
    margin-top: -120px;
}

.gallery .swiper-slide {
    height: 320px;
}

.gallery .swiper-slide img {
    transition: all 0.5s;
}

.gallery .swiper-slide:not(.swiper-slide-next) img {
    transform: scale(0.8);
}

.gallery .relative .next {
    right: 40px;
}

.gallery .relative .prev {
    left: 40px;
}

.informations {
    padding-top: 80px;
}

.informations .collapse-item .header {
    padding: 25px 0;
}

.informations .collapse-item .header h4 {
    text-transform: uppercase;
    color: var(--primary);
    font-size: 1.5rem;
}

.informations .collapse-item .inner p {
    margin-bottom: 0.25rem;
}

.basket-header .outer-container {
    padding: 60px clamp(20px, 4vw, 80px) 100px;
}

.basket-header .outer-container::before {
    height: 100%;
}

.basket-header .outer-container h1 {
    margin-top: 20px;
}

.basket-list .item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--primary);
    margin-bottom: 30px;
    gap: 40px;
}

.basket-list .item .left {
    display: flex;
    gap: 60px;
}

.basket-list .item .image {
    min-width: 180px;
    max-width: 180px;
    min-height: 180px;
    max-height: 180px;
    object-fit: contain;
    object-position: center top;
}

.basket-list .item .content > * {
    display: block;
    margin-bottom: 0;
    font-size: 1.125rem;
    max-width: 30rem;
}

.basket-list .item h3 {
    text-transform: uppercase;
}

.basket-list .item .quantity {
    font-weight: 600;
    color: var(--primary);
}

.basket-list .item .right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
}

.basket-list .item .right .upper,
.basket-list .item .right .lower {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.basket-list .item select {
    border: 1px solid var(--primary);
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    width: 140px;
    margin-bottom: 18px;
}

.basket-list .item .delete {
    width: 1.75rem;
}

.basket-list .item .delete img {
    width: 100%;
}

.basket-list .item .price {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 0.5rem;
    line-height: 1;
}

.basket-list .summary {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
}

.basket-list .summary h3 {
    text-transform: uppercase;
    font-size: 1.75rem;
}

.basket-list .summary .price {
    font-size: 1.875rem;
    font-weight: 600;
    color: var(--primary);
}

.basket-list .buttons {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.basket-list .buttons .blue {
    background-color: var(--primary);
}

.basket-list .buttons .primary-link:hover {
    background-color: #D4DDE0;
    color: var(--dark);
}

.after-hero + .blog {
    padding-top: 80px;
}

@media (max-width: 1279px) {

    .desktop-navbar {
        height: 66px;
        padding: 0;
    }

    .desktop-navbar .container {
        max-width: 100%;
        padding: 10px 20px;
        position: relative;
    }

    .desktop-navbar .logo {
        height: 18px;
        width: auto;
    }

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

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

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

    .desktop-navbar .buttons {
        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 .lang {
        display: none;
    }

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

    .desktop-modal.active {
        transform: translateY(24px);
    }

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

    #sidebar .navbar-dropdown {
        top: 0;
        background-color: #FFFFFFEF;
        -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;
    }

    #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 .container .item {
        width: 100%;
    }

    #sidebar .navbar-dropdown .container a {
        font-size: 1.125rem;
        font-weight: 500;
        padding: 0.75rem 0;
        text-align: center;
    }

}

@media (max-width: 767px) {

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

    h1 {
        font-size: 1.625rem;
    }

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

    h2:not(.article h2)::before {
        margin-bottom: 0.75rem;
    }

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

    h4 {
        font-size: 1.125rem;
    }

    h5,
    h6 {
        font-size: 0.875rem;
    }

    section {
        padding: 60px 20px 0;
    }

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

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

    .article h3 {
        font-size: 1.5rem;
    }

    .article h4 {
        font-size: 1.25rem;
    }

    .article h5 {
        font-size: 1rem;
    }

    .article h6 {
        font-size: 0.875rem;
    }

    .article img {
        margin: 1rem 0;
        max-height: 450px;
    }

    .primary-link {
        font-size: 0.875rem;
        padding: 0.75rem 1.5rem 0.6875rem;
    }

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

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

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

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

    .flex-content,
    .flex-content.reverse {
        flex-direction: column-reverse;
        gap: 20px;
    }

    .flex-content .side {
        width: 100%;
    }

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

    .items {
        gap: 20px;
    }

    .items.two .item,
    .items.three .item,
    .items.four .item {
        width: 100%;
    }

    .items .item h3 {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }

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

    .swiper-button-prev {
        left: -44px;
    }

    .swiper-button-next {
        right: -44px;
    }

    /***************** */
  
    .hero {
        padding-top: 66px;
    }

    .hero .layer {
        background: linear-gradient(90deg, #A8BAC4F0 0%, #A8BAC444 100%);
    }

    .hero .container {
        padding: 80px 20px;
    }

    .hero.main-hero .container {
        padding: 80px 20px 40px;
    }

    .hero h3 {
        font-size: 1.75rem;
    }

    .hero p {
        font-size: 1.0625rem;
        line-height: 1.4;
        max-width: 14rem;
    }

    .hero h1 {
        max-width: 70%;
    }
    
    .hero.main-hero h1 {
        margin-bottom: 1rem;
        font-size: 2.25rem;
    }

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

    .hero.main-hero + .after-hero {
        padding: 40px 20px;
    }

    .after-hero::before {
        top: -80px;
        height: calc(100% + 80px);
    }

    .after-hero p {
        font-size: 0.9375rem;
        line-height: 1.6;
    }

    .whyus {
        padding-top: 40px;
    }

    .whyus .items {
        gap: 36px;
    }

    .whyus .icon {
        margin-bottom: 18px;
    }

    .whyus .icon::before {
        width: 60px;
        margin-bottom: 12px;
    }

    .whyus .icon img {
        height: auto;
        width: 50px;
    }

    .product-categories .items.two .item {
        height: 220px;
        width: 100%;
        padding: 20px;
    }

    .product-categories .item .layer {
        background: linear-gradient(90deg, #D4CBC2F0 0%, #D4CBC244 100%);
    }

    .product-categories .items .item h3,
    .product-categories .items .item h3 a {
        font-size: 1.5rem;
        max-width: 12rem;
    }

    .product-categories .arrow-button {
        padding: 0.375rem 0.625rem;
    }

    .product-categories .arrow-button svg {
        width: 1.25rem;
        height: 0.8375rem;
    }

    .usage h2:not(.article h2).animated::before {
        width: 17.1875rem;
    }

    .usage .items .item {
        margin-bottom: 16px;
    }

    .usage .items .item h3 {
        margin-bottom: 0.375rem;
    }

    .usage .content {
        margin-bottom: 1rem;
    }

    .usage .item .image {
        padding-bottom: 60%;
    }

    .install h2 {
        font-size: 1.625rem;
    }

    .install h2:not(.article h2).animated::before {
        width: 19.625rem;
    }

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

    .install .flex-content .right.side::before {
        top: -60px;
        height: calc(100% + 90px);
    }

    .reviews h2 {
        font-size: 2.125rem;
    }

    .reviews h2:not(.article h2).animated::before {
        width: 15.625rem;
    }

    .reviews .quote {
        width: 110px;
        margin-bottom: -50px;
    }

    .reviews .relative {
        padding: 60px 0 40px;
        margin: 0 auto;
        width: calc(100% - 30px);
    }

    .reviews .swiper-wrapper {
        align-items: center;
    }

    .reviews .swiper-slide {
        padding: 0 40px 2rem;
    }

    .reviews .swiper-slide::after {
        display: none;
    }

    .reviews + .banner-image {
        margin-top: -40px;
    }

    .brands h2:not(.article h2).animated::before {
        width: 17.375rem;
    }
    
    .brands .items {
        gap: 40px;
        padding: 10px 0 20px;
    }

    .brands .items img {
        width: calc(50% - 20px);
    }

    .blog h2 {
        font-size: 2.125rem;
    }

    .blog h2:not(.article h2).animated::before {
        width: 8.5rem;
    }

    .blog .items.three {
        gap: 40px;
    }

    .blog .items.three .item {
        width: 100%;
    }

    .blog .items .item::after {
        display: none;
    }

    .blog .items .item .image {
        width: 100%;
        height: 250px;
    }

    .blog .primary-link.center {
        margin-top: 40px;
    }

    .contact {
        margin-top: 60px;
        padding-top: 40px;
        display: flex;
        flex-direction: column-reverse;
    }

    .contact h2 {
        margin-bottom: 2rem;
    }

    .contact .left {
        max-width: 100%;
    }

    .contact-infos {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 40px;
    }

    .contact form {
        padding-bottom: 0;
    }

    .contact .bgcontainer {
        margin-left: -20px;
    }

    .contact .bgcontainer img {
        position: static;
        min-height: auto;
        height: 200px;
        width: 100vw;
    }

    form {
        gap: 0.625rem;
    }

    input,
    textarea,
    select,
    option {
        padding: 0.625rem 0;
        font-size: 0.875rem;
    }

    form select {
        background-size: 14px;
    }

    .form-check-input+label {
        font-size: 0.75rem;
    }

    .form-check-input:checked + label::after {
        top: 0.5px;
    }

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

    .contact form .primary-link {
        margin: 1rem auto 0;
    }

    footer .content {
        padding: 60px 20px;
    }

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

    footer .item {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 100%;
        text-align: center;
        padding-right: 0;
    }

    footer .item:first-of-type {
        display: none;
    }

    footer .item .logo {
        width: 80px;
        margin-bottom: 0;
    }

    footer .item:first-of-type p {
        font-size: 13px;
        max-width: 200px;
    }

    footer .item h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    footer .item a,
    footer .item p {
        margin-bottom: 6px;
        font-size: 14px;
        text-align: center;
        width: 100%;
    }

    footer .socials a {
        width: fit-content;
    }

    footer .socials {
        justify-content: center;
    }

    footer .raccoon {
        margin-top: 30px;
    }

    footer .raccoon a {
        display: block !important;
        width: 100% !important;
        margin-bottom: 0;
        text-align: center;
    }

    .after-hero {
        padding: 36px clamp(20px, 4vw, 80px);
    }

    .after-hero + .blog {
        padding-top: 40px;
    }

    .nav {
        font-size: 0.875rem;
    }

    .nav a:after {
        margin-left: 0.25rem;
    }

    .article {
        padding-top: 40px;
    }

    .contact.subpage {
        padding-top: 0;
    }

    .contact.subpage .desc {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .contact.subpage .bgcontainer {
        padding-top: 60px;
    }

    .gyik {
        padding-top: 30px;
    }

    .collapse-item .header {
        padding: 10px 0;
    }

    .collapse-item .header h4 {
        font-size: 1rem;
    }

    .collapse-item .header img {
        width: 32px;
        height: 32px;
        padding: 6px;
    }

    .product-list {
        padding-top: 40px;
    }

    .filters {
        margin-bottom: 32px;
        flex-wrap: wrap;
        padding-bottom: 0;
        border-bottom: none;
    }

    .filter {
        padding: 0 0.5rem;
        width: 50%;
        border-bottom: 1px solid var(--primary);
        margin-bottom: 0.5rem;
        border-right: none;
    }

    .filter::before {
        content: '';
        position: absolute;
        right: 0;
        bottom: 0.5rem;
        width: 1px;
        height: calc(100% - 0.625rem);
        background-color: var(--primary);
    }

    .filter:nth-of-type(2n)::before {
        display: none;
    }

    .filter button {
        padding: 0.625rem 0 1rem;
        width: 100%;
        font-size: 0.8125rem;
        gap: 0.5rem;
    }

    .filter svg {
        width: 0.8125rem;
    }

    .filter .list {
        top: calc(100% + 1px);
        width: auto;
    }

    .filter .list .item {
        padding: 0.375rem 0.5rem;
        font-size: 0.8125rem;
    }

    .filter.attribute .list .item::after {
        left: 0.53125rem;
    }

    .product-list .items .item {
        width: calc(50% - 10px);
    }

    .product-list .item .images {
        margin: 0 auto -60px;
        width: calc(100% - 24px);
    }

    .product-list .item img {
        height: 120px;
    }

    .product-list .item .content {
        padding: 72px 12px 16px;
    }

    .product-list .item.sale .content::before {
        top: 14px;
        left: 0;
        border-radius: 0 6px 6px 0;
        width: 32px;
        height: 32px;
        font-size: 18px;
        z-index: 10;
    }

    .product-list .item h3 {
        font-size: 0.8125rem;
        margin-bottom: 0;
    }

    .product-list .item .size {
        font-size: 0.8125rem;
    }

    .product-list .item .price {
        font-size: 1rem;
        margin-bottom: 16px;
    }

    .product-list .item.sale .original-price {
        font-size: 0.75rem;
    }

    .product-list .to-basket {
        flex-direction: column;
        max-width: 7.75rem;
    }

    .product-list .to-basket select {
        width: 100%;
        margin-right: 0;
        border-radius: 6px 6px 0 0;
        padding: 8px 12px 12px;
        background-position: right 12px top 15px;
        background-size: 12px;
        font-size: 0.8125rem;
    }

    .product-list .to-basket .primary-link {
        width: 100%;
        margin-left: 0;
        padding: 0.625rem 0.75rem;
        margin-top: -4px;
    }

    .product-list .to-basket .primary-link img {
        width: 1.125rem;
        height: 1.125rem;
    }

    .product {
        padding-top: 66px;
    }

    .product .outer-container {
        padding: 32px 0 0;
    }

    .product .outer-container .nav {
        padding: 0 20px;
    }

    .product .outer-container::before {
        height: 200px;
    }

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

    .product .left.side {
        margin: 0 auto;
        width: calc(100% - 40px);
    }

    .product .left.side img {
        max-height: 320px;
    }

    .product .right.side {
        width: 100%;
    }

    .product .brand-logo {
        width: 100px !important;
    }

    .product .right h1 {
        font-size: 1.375rem;
    }

    .product .size {
        font-size: 1.375rem;
        margin-bottom: 1.5rem;
    }

    .product .stock-info {
        margin-bottom: 1.5rem;
    }

    .product .original-price {
        font-size: 1rem;
        margin-bottom: 0.375rem;
    }

    .product .price {
        font-size: 1.625rem;
        margin-bottom: 0.375rem;
    }

    .product .to-basket {
        margin: 0 auto;
    }

    .product-icons {
        margin-top: 40px;
        padding-top: 40px;
        padding-bottom: 120px;
    }

    .product-icons .items .item {
        width: calc(50% - 10px);
    };
    
    .product-icons .item img {
        height: 54px;
    }

    .product-icons .item h3 {
        font-size: 0.875rem;
    }

    .gallery {
        margin-top: -80px;
    }

    .gallery .swiper-slide {
        height: 280px;
    }

    .gallery .swiper-slide:not(.swiper-slide-next) img {
        transform: none;
    }

    .gallery .swiper-slide:not(.swiper-slide-active) img {
        transform: scale(0.8);
    }

    .gallery .relative {
        margin: 0 auto;
        width: calc(100% - 30px);
    }

    .gallery .relative .next {
        right: 0;
    }
    
    .gallery .relative .prev {
        left: 0;
    }

    .informations {
        padding-top: 60px;
    }

    .informations .collapse-item .header {
        padding: 16px 0;
    }

    .informations .collapse-item .header h4 {
        font-size: 1.125rem;
    }

    .basket-header .outer-container {
        padding: 32px 0 40px;
    }

    .product.basket-header .nav {
        margin-bottom: 32px;
    }

    .basket-header .outer-container h1 {
        margin-top: 0;
    }

    .basket-header .outer-container::before {
        height: 100%;
    }

    .basket-list .item {
        flex-direction: column;
        margin-bottom: 20px;
        padding-bottom: 20px;
        gap: 16px;
    }

    .basket-list .item .left {
        gap: 20px;
    }

    .basket-list .item .image {
        min-width: 100px;
        max-width: 100px;
        min-height: 100px;
        max-height: 100px;
    }

    .basket-list .item .content > * {
        font-size: 0.9375rem;
    }

    .basket-list .item .right {
        flex-direction: row;
        align-items: flex-end;
        gap: 20px;
    }
    
    .basket-list .item .right .upper {
        flex-direction: column-reverse;
        align-items: flex-start;
    }

    .basket-list .item select {
        padding: 8px 10px;
        width: 130px;
        background-position: right 10px center;
        background-size: 14px;
        margin-bottom: 0;
    }

    .basket-list .item .delete {
        width: 1.5rem;
        margin-bottom: 12px;
    }

    .basket-list .item .original-price {
        font-size: 0.875rem;
    }

    .basket-list .item .price {
        font-size: 1.25rem;
        margin-top: 0.375rem;
    }

    .basket-list .summary {
        margin: 20px 0;
    }

    .basket-list .summary h3 {
        font-size: 1.375rem;
    }

    .basket-list .summary .price {
        font-size: 1.375rem;
    }
    
    .basket-list .buttons {
        flex-direction: column-reverse;
        align-items: center;
        gap: 20px;
    }

    .basket-list .buttons .primary-link {
        width: 13rem;
        text-align: center;
    }
}

@media (min-width: 767px) and (max-width: 1023px) {
    
    section {
        padding: 80px clamp(20px, 4vw, 80px) 0;
    }

    h2 {
        font-size: 2.75rem;
        margin-bottom: 3.5rem;
    }

    .flex-content {
        gap: 40px;
    }

    .items {
        gap: 40px;
    }
    
    .items.four .item {
        width: calc(50% - 20px);
    }
    
    /*********************************/

    .whyus .items {
        gap: 40px;
    }

    .product-categories .items.two .item {
        height: 280px;
    }

    .product-categories .items .item h3,
    .product-categories .items .item h3 a {
        font-size: 1.625rem;
        max-width: 13rem;
    }
    
    .install .flex-content {
        gap: 50px;
    }

    .install .flex-content img {
        min-height: 260px;
        object-fit: cover;
    }

    .brands .items .item {
        width: calc(33.3333% - 40px);
    }

    .blog .items.three .item {
        width: calc(50% - 40px);
    }

    .blog .items.three .item .image {
        height: 280px;
    }

    .contact {
        margin-top: 60px;
        padding-top: 40px;
        display: flex;
        flex-direction: column-reverse;
    }

    .contact h2 {
        margin-bottom: 2rem;
    }

    .contact .left {
        max-width: 100%;
    }

    .contact-infos {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 40px;
    }

    .contact form {
        padding-bottom: 0;
    }

    .contact .bgcontainer {
        margin-left: -40px;
    }

    .contact .bgcontainer img {
        position: static;
        min-height: auto;
        height: 300px;
        width: 100vw;
        object-fit: cover;
    }

    footer .content {
        padding: 60px 40px;
    }

    footer .item:first-of-type {
        display: none;
    }

    footer .item {
        min-width: 22%;
        max-width: 25%;
    }

    .product-list {
        padding-top: 60px;
    }

    .filter {
        padding: 0 0.5rem;
    }

    .filter button {
        padding: 0.625rem 0 1rem;
        font-size: 0.875rem;
        gap: 0.625rem;
    }

    .product-list .item .images {
        margin: 0 auto -60px;
        width: calc(100% - 24px);
    }

    .product-list .item img {
        height: 120px;
    }

    .product-list .item .content {
        padding: 72px 12px 16px;
    }

    .product-list .item.sale .content::before {
        top: 14px;
        left: 0;
        border-radius: 0 6px 6px 0;
        width: 32px;
        height: 32px;
        font-size: 18px;
        z-index: 10;
    }

    .product-list .item h3 {
        font-size: 0.875rem;
        margin-bottom: 0;
    }

    .product-list .item .size {
        font-size: 0.8125rem;
    }

    .product-list .item .price {
        font-size: 1.125rem;
        margin-bottom: 16px;
    }

    .product-list .item.sale .original-price {
        font-size: 0.75rem;
    }

    .product-list .to-basket {
        flex-direction: column;
        max-width: 7.75rem;
    }

    .product-list .to-basket select {
        width: 100%;
        margin-right: 0;
        border-radius: 6px 6px 0 0;
        padding: 8px 12px 12px;
        background-position: right 12px top 15px;
        background-size: 12px;
        font-size: 0.875rem;
    }

    .product-list .to-basket .primary-link {
        width: 100%;
        margin-left: 0;
        padding: 0.625rem 0.75rem;
        margin-top: -4px;
        font-size: 0.875rem;
    }

    .product-list .to-basket .primary-link img {
        width: 1.125rem;
        height: 1.125rem;
    }

    .gallery .swiper-slide:not(.swiper-slide-next) img {
        transform: none;
    }
    
}

@media (min-width: 1024px) and (max-width: 1279px) {

}

@media (min-width: 1280px) and (max-width: 1440px) {
    
}

@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: 1280px) {
    .container {
        max-width: 1280px;
    }
}