:root {
    --primary: #003D25;
    --light: #EDF2F1;
    --gray: #646464;
    --dark: #003D25;
    --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: 'Montserrat', 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: 700;
    margin-bottom: 3rem;
}

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

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

h5 {
    font-weight: 500;
    font-size: 1.125rem;
    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: var(--primary);
}

/* 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: #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: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-weight: 500;
    font-size: 1.125rem;
    text-transform: uppercase;
}

.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: 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;
    padding: 0 clamp(20px, 4vw, 80px);


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

    &.active {
        top: -9vw;
    }

    .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1.1vw 0;
    }

    .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.08em;
            font-weight: 500;
            display: flex;
            align-items: center;
            position: relative;
            white-space: nowrap;
            color: var(--primary);
            text-transform: uppercase;

            &:hover {
                color: var(--primary);
            }

            &::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                width: 100%;
                height: 1px;
                background-color: var(--primary);
                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: var(--primary);
            }
        }

        .navbar-dropdown {
            width: 100%;
            height: fit-content;
            background-color: #FFFFFFEE;
            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;

            .container {
                display: flex;
                justify-content: flex-end;
                padding: 0;
            }

            .arrow {
                display: none;
            }

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

                a {
                    padding: 0.75vw 0;
                    letter-spacing: 0.08em;
                    font-size: 0.9vw;
                    text-transform: uppercase;
                    font-weight: 500;
                    color: var(--primary);
                }
            }
        }

    }
}

@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: #FFFFFFE8;
        -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 .sub-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .sidebar .navbar-dropdown .sub-links a {
        padding: 15px;
        font-weight: 500;
        text-transform: uppercase;
    }
}

.primary-link {
    display: flex;
    width: fit-content;
    gap: 1em;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background-color: #00A564;
    border: 2px solid #00A564;
    padding: 0.875em 2em;
    font-size: 1.125rem;
    position: relative;
    color: white;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
    font-weight: 500;

    &.center {
        margin: 2rem auto 0;
    }

    svg {
        width: auto;
        height: 1.125em;
        transition: transform 0.3s;

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

    
    &.dark {
        background-color: var(--dark);
        border-color: var(--dark);
    }

    &.outline {
        background-color: transparent;
        color: var(--dark);
        border-color: var(--dark);

        svg path {
            stroke: var(--dark);
        }
    }

    &:hover {
        background-color: transparent;
        color: #00A564;

        svg {
            transform: translateX(0.375rem);
    
            path {
                stroke: #00A564;
            }
        }

        &.dark {
            color: var(--dark);

            svg path {
                stroke: var(--dark);
            }
        }

        &.outline {
            background-color: #00A564;
            color: white;
            border-color: #00A564;

            svg path {
                stroke: white;
            }
        }
    }
}

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

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

.hero {
    margin-top: 5.4vw;
    padding-top: 0;
    color: white;
    background-color: var(--primary);

    .container {
        display: flex;
        position: static;
    }

    .left {
        width: calc(50% + 3vw);
        padding: 140px 80px 180px 0;
        background-color: var(--primary);

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

    .right {
        width: calc(50% - 3vw);

        img {
            position: absolute;
            top: 0;
            right: 0;
            width: 48.2vw;
            height: 100%;
            object-fit: cover;
        }
    }
}

.hero + .c2a-card {
    margin-top: -160px;
    padding-top: 0;
}

.c2a-card {
    z-index: 1;

    .container {
        background-color: var(--light);
        text-align: center;
        padding: 70px 50px;
        position: relative;
        z-index: 1;

        h2 {
            font-size: 2.75rem;
            max-width: 57rem;
            margin: 0 auto 1.5rem;
        }

        p {
            font-size: 1.5rem;
        }

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

.product-details ~ .booking {
    padding-top: 0;
    margin-bottom: 80px;
}

.booking {

    h2 {
        text-align: center;
        font-size: 2.75rem;
    }

    .steps {
        display: flex;

        .item {
            flex: 1;
            position: relative;
            text-align: center;
            padding: 0 10px 10px;
            font-weight: 550;
            white-space: nowrap;
            
            &.active {
                cursor: pointer;
            }

            &:not(.active) {
                opacity: 0.4;
                pointer-events: none;
            }

            &::after {
                content: '';
                position: absolute;
                top: 100%;
                left: 50%;
                transform: translateX(-50%);
                width: calc(100% + 4px);
                height: 10px;
                background-color: var(--primary);
                clip-path: polygon(calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0% 100%, 12px 50%, 0% 0%);
                opacity: 0.25;
            }

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

    .buttons {
        display: flex;
        justify-content: center;
        gap: 30px;
        margin-top: 40px;
        width: 100%;

        .primary-link.outline:hover {
            background-color: var(--primary);
            border-color: var(--primary);

            svg {
                transform: translateX(-0.375rem);
            }
        }
    }

    .step {
        margin-top: 50px;

        h3 {
            text-align: center;
            font-size: 1.75rem;
            margin-bottom: 2.5rem;
        }
    }

    .datetime-select {
        margin-left: auto;
        margin-right: auto;
        width: fit-content;
        display: flex;
        flex-direction: column;
        align-items: center;

        h3 {
            margin-bottom: 1rem;
        }

        .lightpick {
            padding: 0;
            box-shadow: none;
            z-index: 1;
            width: 100%;

            * {
                font-family: 'Montserrat', sans-serif;
            }

            .lightpick__select {
                background: none;
            }
        }

        .date {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

    }

    .step.categories .items {
        max-width: 900px;
        margin: 0 auto;
        gap: 20px;

        .item {
            height: 350px;
            width: calc(33.3333% - 13.33px);

            .badge {
                position: absolute;
                top: 16px;
                left: 0;
                padding: 5px 10px;
                font-size: 0.875rem;
                font-weight: 600;
                background-color: var(--light);
                color: var(--primary);
                border-radius: 0;
            }

            .content {
                background-color: var(--light);
            }

            .link {
                font-size: 1rem;
                display: flex;
                align-items: center;
                justify-content: center;
            }
        }
    }

    .step.products {
        padding-top: 0;

        .item {
            width: calc(25% - 15px);

            h3 {
                font-size: 1.375rem;
            }

            .price {
                margin-bottom: 0.25rem;
            }

            .caution,
            .available {
                display: block;
                text-align: center;
                margin-bottom: 4px;
            }

            .available {
                margin-bottom: 20px;
            }
        }

        .primary-link {
            margin-top: 0;
        }
    }

    .step.data {
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;

        .time {
            margin: 20px 0 30px;

            .location-hour-table td {
                padding-bottom: 10px;
            }

            .side {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 5px;
                padding: 0 20px;
                font-weight: 550;
                margin-bottom: 20px;

                label, p {
                    text-align: center;
                    margin-bottom: 0;
                }

                & > input {
                    height: 0;
                    opacity: 0;
                    padding: 0;
                }

                .flatpickr-calendar {
                    width: 8rem;

                    .flatpickr-time input {
                        transition: all 0.3s;
                        background-color: white;
                        font-weight: 600 !important;

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

                    .numInputWrapper span {
                        transition: all 0.3s;
                    }
                }
            }
        }

        .form-check-input + label::before {
            border: 1px solid var(--gray);
        }

        .form-check-input + label a {
            text-decoration: underline;
        }

        .services {
            .form-check {
                margin-bottom: 16px;
            }
    
            .form-check-input + label {
                display: flex;
                justify-content: space-between;
    
                &::before {
                    border: 2px solid #00A564;
                }
    
                .content {
                    width: 100%;
                    padding-right: 20px;
    
                    .name {
                        margin-bottom: 0.25rem;
                        font-weight: 600;
                        margin-top: -0.0625rem;
                    }
                }
    
                .price {
                    font-size: 1.125rem;
                    white-space: nowrap;
                    font-weight: 600;
                    margin-top: -0.125rem;
                }
    
            }
    
            .form-check-input:checked + label::after {
                top: 0px;
            }
        }

        .summary {
            margin: 20px 0;
            display: flex;
            justify-content: space-between;

            h4 {
                font-size: 1.5rem;
            }
        }

        form {
            margin-top: 50px;

            h3 {
                width: 100%;
                margin-bottom: 0.5rem;
            }

            input,
            textarea,
            select {
                border: 1px solid var(--gray);
                font-weight: 500;
                color: var(--gray);

                *::placeholder {
                    font-weight: 500;
                    letter-spacing: 0;
                }
            }
        }

    }
}

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

    .item {
        width: 25%;
        height: 340px;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        overflow: hidden;

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

        &:hover .bg img {
            transform: scale(1.07);
        }

        .content {
            width: calc(100% + 1px);
            background-color: white;
            pointer-events: none;
            padding: 0 20px 20px;
            transform: translateY(4.375rem);
            transition: transform 0.5s cubic-bezier(0.01, 0.69, 0.4, 1);
        }

        &:hover .content {
            transform: translateY(1px);
        }

        .link {
            position: relative;
            z-index: 1;
            text-align: center;
            margin-bottom: 0;
            width: 100%;
            display: block;
            text-transform: uppercase;
            font-size: 1.125rem;
            font-weight: 600;
            width: 100%;
            padding: 20px 0;
        }

        .button {
            display: flex;
            width: 100%;
            align-items: center;
            justify-content: space-between;
            padding: 0.75rem 1.5rem;
            border: 1px solid var(--dark);
            text-transform: uppercase;
            font-weight: 500;
        }
    }
}

.about {

    background-color: var(--light);
    margin-top: 60px;

    .container {
        display: flex;
        align-items: flex-start;
        gap: 50px;
    
        .left {
            width: 30%;
        }
    
        .right {
            width: 70%;
        }
    }

    .bgshape {
        display: block;
        margin-left: auto;
        margin-top: 40px;
        height: 220px;
    }
}

.about-2 {
    padding-top: 0;

    .container {
        display: flex;

        .left {
            width: 50%;
            position: relative;

            img {
                position: absolute;
                bottom: 0;
                right: 0;
                width: 50vw;
                height: calc(100% + 140px);
                object-fit: cover;
            }
        }

        .right {
            width: 50%;
            padding: 100px 80px;
            padding-right: 0;
        }
    }
}

.c2a-banner {
    background-color: var(--light);
    padding: 80px clamp(20px, 4vw, 80px);
    text-align: center;

    h2 {
        margin-bottom: 1.5rem;
    }

    p {
        font-size: 1.25rem;
        max-width: 800px;
        margin: 0 auto 2rem;
    }
}

.products {
    padding-top: 80px;

    h2 {
        text-align: center;
        margin-bottom: 4rem;
    }

    .items {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
        margin-top: 40px;
        width: 100%;

        .item {
            width: calc(100% / 3 - 14px);
            overflow: hidden;
            box-shadow: var(--shadow);
            display: flex;
            flex-direction: column;
            background-color: var(--dark);
            color: white;
            position: relative;

            .image {
                display: block;
                width: 100%;
                height: 260px;
                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.5rem 1rem;
                    text-align: center;
                    background: #00A564;
                    color: white;
                    font-weight: 600;
                    font-size: 1.125rem;
                    border-radius: 0;
                    position: absolute;
                    top: 0;
                    left: 0;
                    text-transform: uppercase;
                    min-width: 50%;
                    width: fit-content;
                }
            }

            .content {
                padding: 25px 20px calc(3rem + 20px);
            }

            h3 {
                text-align: center;
                margin-bottom: 0.75rem;
                
                a {
                    display: block;
                    color: white;
                    font-size: 1.5rem;
                }
            }

            h4 a {
                text-transform: uppercase;
                color: white;
                display: block;
                text-align: center;
                font-weight: 500;
                font-size: 1.125rem;
            }

            hr {
                margin: 24px -20px;
                width: calc(100% + 40px);
                border-top: 1px solid white;
            }

            .price {
                text-align: center;
                font-weight: 600;
                font-size: 1.375rem;
                margin-bottom: 1.25rem;
            }

            .primary-link {
                margin: 0 auto;
                justify-content: space-between;
                position: absolute;
                bottom: 20px;
                left: 50%;
                transform: translateX(-50%);

                &:hover {
                    background-color: #00A564;
                    color: white;
                    border-color: #00A564;

                    svg path {
                        stroke: white;
                    }
                }
            }
           
        }
    }

}

.products.new {
    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: 100%;
            
            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: 1px solid transparent;
                        
                        div {
                            padding: 0.5em 1.125em;
                            font-size: 1rem;
                            cursor: pointer;
                            transition: background-color 0.2s;
                            white-space: nowrap;
                            
                            &:hover {
                                background-color: #f3f3f3;
                            }

                            &:first-child {
                                padding-top: 0.8125em;
                            }

                            &:last-child {
                                padding-bottom: 0.8125em;
                            }
                        }
                    }
                    
                    &.active .options {
                        border-color: #AAA;
                    }
                }
            }
            
            .no-products {
                display: none;
                text-align: center;
                margin-top: 40px;
                font-size: 1.25rem;
            }
            
            .swiper {
                margin-top: 40px;
            }
                
            .item {
                overflow: hidden;
                background-color: var(--primary);
                box-shadow: var(--shadow);
                color: white;
                display: flex;
                flex-direction: column;
                padding-bottom: calc(2.5rem + 20px);
                position: relative;

                a {
                    color: white;
                }
                
                .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;
                        text-transform: uppercase;
                    }
                }
                
                .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;
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    right: 0;
                }
            }
        }
    }

    &.new {
        padding-top: 80px;

        .container:not(.nav) {
            display: block;

            .list {
                background-color: transparent;
    
                .order {
                    margin-top: 0;
                    gap: 20px;

                    .filters {
                        display: flex;
                        flex-wrap: wrap;
                        align-items: center;
                        gap: 12px;
                    }

                    .select {

                        .options {
                            background-color: transparent;

                            .option {
                                background-color: white;
                                transition: background-color 0.2s;

                                &:hover,
                                &.active {
                                    background-color: var(--light);
                                }
                            }
                        }
                    }

                    .select.filter .options {
                        right: auto;
                        left: 0;
                    }

                    .select.orderby .current {
                        white-space: nowrap;
                    }
                }

                .item {
                    height: auto;

                    .title {
                        padding: 24px;

                        h3 {
                            font-weight: 650;
                            font-size: 1.75rem;

                            span {
                                font-weight: 450;
                            }
                        }

                        h5 {
                            font-size: 1.125rem;
                            font-weight: 450;
                            margin: 0.25rem 0 0.875rem;
                        }
                    }

                    .labels {
                        display: flex;
                        justify-content: center;
                        flex-wrap: wrap;
                        gap: 0.5rem;
                        padding: 0 20px;

                        span {
                            padding: 0.425em 1em;
                            background: #00A564;
                            font-weight: 600;
                            font-size: 0.75rem;
                            border-radius: 99px;
                        }
                    }

                    .image {
                        position: relative;

                        .badges {
                            position: absolute;
                            top: 14px;
                            right: 0;
                            display: flex;
                            flex-direction: column;
                            align-items: flex-end;
                            gap: 0.4375rem;
                            
                            span {
                                background: var(--primary);
                                width: fit-content;
                                color: white;
                                font-weight: 600;
                                font-size: 0.875rem;
                                padding: 0.5em 1em;
                            }
                        }
                    }

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

                    .content {
                        padding: 20px 24px;

                        .price {
                            font-size: 2rem;
                            margin-bottom: 0;
                            color: white;
                            position: relative;

                            &:nth-child(2) {
                                padding-top: 0.875em;
                                margin-top: 0.25em;
                            }

                            &:nth-child(2)::after {
                                content: 'vagy';
                                position: absolute;
                                top: 0;
                                left: 50%;
                                transform: translateX(-50%);
                                font-size: 0.875rem;
                                font-weight: 450;
                                color: #F5F5F5;
                                background-color: var(--primary);
                                padding: 0 0.625em;
                            }

                            &:nth-child(2)::before {
                                position: absolute;
                                top: 0.625rem;
                                left: 50%;
                                transform: translateX(-50%);
                                width: 50%;
                                height: 1px;
                                background-color: #F5F5F5;
                                content: '';
                            }
                        }

                        .desc {
                            display: block;
                            text-align: center;
                            font-size: 0.9375rem;
                            margin-bottom: 1rem;
                        }
                    }

                    .buttons {
                        display: flex;
                        justify-content: center;
                        gap: 12px;
                        position: absolute;
                        bottom: 20px;
                        left: 50%;
                        transform: translateX(-50%);

                        .primary-link {
                            text-transform: uppercase;
                            font-size: 0.9375rem;
                            padding: 0.75em 1.25em;
                            letter-spacing: 0;
                            position: static;
                            transform: none;

                            &.outline {
                                border: 1px solid white;

                                svg path {
                                    stroke: white;
                                }

                            }

                            &:hover {
                                background-color: white;
                                color: var(--primary);
                                border-color: white;

                                svg path {
                                    stroke: var(--primary);
                                }
                            }
                        }
                    }
                }

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

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

                .swiper-button-prev::after,
                .swiper-button-next::after {
                    color: var(--primary);
                    font-weight: 300;
                }

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

        &.subpage {

            h1 {
                margin-bottom: 40px;
            }

            .container:not(.nav) {
                display: flex;
                
                .item {

                    .title {
                        padding: 20px;
                        display: block;

                        h3 {
                            font-size: 1.5rem;
                        }
                    }
    
                    .content {
                        padding: 20px;
    
                        .price {
                            font-size: 1.625rem;
                        }
                    }

                    .buttons {
                        gap: 12px;

                        .primary-link {
                            padding: 0.625em 0.875em;
                            font-size: 0.9375rem;
                        }
                    }
                }
            }

        }
    }
}

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

.reviews {
    padding: 80px clamp(20px, 4vw, 80px) 110px;
    background-color: var(--light);
    margin-top: 80px;

    h2 {
        text-align: center;
        margin-bottom: 120px;
    }

    .quote {
        position: absolute;
        top: -80px;
        left: 0;
        height: 130px;
        z-index: 99;
    }

    .swiper-slide {
        height: auto;
        background-color: white;
        padding: 80px 100px;
        color: var(--gray);
        display: flex;
        flex-direction: column;
        justify-content: center;

        .footer {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 15px;
            margin-top: 25px;
            border-top: 1px solid #AAAAAA;

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

    .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: -50px;
        display: flex;
        justify-content: center;
        border-radius: 99px;
        overflow: hidden;

        .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            border-radius: 6px;
            background: var(--dark);
            opacity: 1;
            transition: all 0.3s;
        }

        .swiper-pagination-bullet-active {
            width: 60px;
            background-color: #00A564;
        }
    }
}

.faq {

    h2 {
        text-align: center;
        margin-bottom: 4rem;
    }

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

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

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

.map {
    .container {
        display: flex;
    }

    h2 {
        margin-bottom: 4rem;
    }

    .left {
        width: 50%;
        padding: 80px 0;
        padding-right: 50px;

        .item {
            max-width: 520px;
            padding-bottom: 30px;
            margin-bottom: 30px;
            border-bottom: 1px solid var(--dark);

            h3 {
                text-transform: uppercase;
            }

            .primary-link {
                padding: 0.625em 1.5em;
                margin-top: 1rem;

                svg {
                    transform: none;
                }
            }
        }
    }

    .right {
        width: 50%;
        position: relative;

        #map {
            position: absolute;
            top: 0;
            left: 0;
            width: 50vw;
            height: 100%;
            filter: grayscale(0.75) brightness(1.1);

            .leaflet-marker-icon {
                filter: hue-rotate(290deg) saturate(2) brightness(0.9);
            }

            .leaflet-popup-content-wrapper {
                border-radius: 0;
            }

            .leaflet-popup-content {
                font-size: 0.875rem;
                padding: 1rem;
                margin: 0;
                font-family: 'Montserrat', sans-serif;
                font-weight: 500;
                color: var(--dark);

                h6 {
                    font-weight: 600;
                }
            }
        }
    }
}

.c2a-card.dark {
    padding-top: 0;

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

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

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

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

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

form,
.summary-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 {
    width: 100%;
    padding-left: 0 !important;
}

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

.form-group {
    margin-bottom: 0;
    width: 100%;
}

.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 {
    padding-left: 32px;
    position: relative;
    line-height: 1.5;
    font-size: 0.875rem;
    margin-bottom: 0;
    width: 100%;
}

.form-check-input+label::before {
    content: " ";
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
    margin-left: -32px;
    width: 20px;
    min-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: #00A564;
    border-color: #00A564;
}

.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;
    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: var(--primary);
    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: 170px;
        }

        .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: 0;
        background: #002919;
        padding: 20px;
        font-weight: 500;
        text-transform: uppercase;

        span:not(:last-of-type)::after {
            content: '|';
            margin: 0 20px;
        }
    }
}

.nav {
    margin-bottom: 50px;

    a:not(:last-of-type)::after {
        content: '/';
        margin: 0 0.5em;
    }

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

.products-hero {
    margin-top: 0;
    padding-top: calc(5.45vw + 70px);
    padding-bottom: 80px;

    .container {
        display: block;
    }

    h1 {
        text-transform: uppercase;
        font-size: 3rem;
    }

    .nav {
        margin-top: 20px;
        a {
            color: white;
        }
    }
}

.products.subpage {
    padding-top: 60px;

    .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: 236px;
            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;
                text-align: left;

                &::before {
                    content: '';
                    position: absolute;
                    top: 50%;
                    left: 0;
                    transform: translateY(-50%);
                    width: 1.25rem;
                    height: 1.25rem;
                    border: 1px solid var(--primary);
                    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: var(--primary);
                }

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

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

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

            .order {
                display: flex;
                justify-content: space-between;

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

                .select {
                    position: relative;

                    .current {
                        padding: 0.625em 1.25em;
                        font-size: 1rem;
                        margin-top: 0;
                        border-width: 1px;

                        svg {
                            height: 1em;
                            transform: rotate(90deg);
                        }
                    }

                    &.active .current svg {
                        transform: 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: 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;
                    }
                }
            }

            .swiper .item .image {
                height: 220px;
            }

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

.faq + .c2a-card {
    margin-top: 80px;
}

.relative {
    position: relative;
}

.product {
    padding-top: calc(5.45vw + 60px);
    padding-bottom: 60px;
    background-color: var(--light);

    & + .c2a-card {
        background-color: var(--light);
    }

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

        .main-image {
            display: block;
            height: 400px;

            img {
                width: 100%;
                height: 100%;
                object-fit: contain;
            }
        }

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

        .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;
            margin-right: 3px;
        }

        .product-swiper-next::after {
            margin-right: 0;
            margin-left: 3px;
        }
        
        .productThumbsSwiper {
            width: 100%;
            height: 190px;
        }
        
        .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .productThumbsSwiper .swiper-slide img {
            cursor: pointer;
            background-color: white;
        }

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

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

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

        .other {
            margin-top: 40px;
        }
    }

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

        &.mobile-only {
            display: none;
        }

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

        .items {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .item {
            background-color: white;
            padding: 0.5em 1em !important;
            font-size: 0.875rem;
            border-radius: 6px;
            text-transform: none !important;
            font-weight: 500;

            &:not(:last-child) {
                border-color: transparent !important;
            }
        }
    }

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

        h1 {
            font-weight: 700;
            font-size: 2.5rem;
            margin-bottom: 1.75rem;
            text-transform: uppercase;
        }

        .locations {
            padding: 20px 0;
            margin: 20px 0;
            border-top: 1px solid var(--primary);
            border-bottom: 1px solid var(--primary);

            .item {
                display: flex;
                align-items: flex-start;
                justify-content: space-between;
                gap: 10px;
                margin-bottom: 15px;

                &:last-of-type {
                    margin-bottom: 0;
                }

                .left {
                    color: var(--gray);

                    h4 {
                        text-transform: uppercase;
                        font-weight: 700;
                        margin-bottom: 0.25rem;
                        font-size: 0.9375rem;
                    }

                    p {
                        font-size: 0.875rem;
                    }
                }
    
                .primary-link {
                    font-size: 1rem;
                    padding: 0.625rem 1rem;
                    border-width: 1px;
    
                    svg {
                        transform: none;
                    }
                }
            }
        }

        .content {

            .price {
                display: block;
                font-size: 2.5rem;
                color: var(--primary);
                font-weight: 700;
                line-height: 1.1;
            }

            .starting-price-info-2 {
                display: block;
                font-size: 0.8125rem;
                margin-top: 0.25em;
            }

            .price-desc {
                padding-top: 1.25rem;
                margin-top: 1.5rem;
                border-top: 1px solid var(--primary);
            }
        }

        .mobile {
            display: none;
        }
    }

    .calculation {
        border: 1px solid var(--primary);
        overflow: hidden;
        text-align: center;
        margin-bottom: 30px;
        background-color: white;

        .header {
            background: var(--primary);
            color: white;
            padding: 20px 16px;
            font-weight: 600;
            font-size: 1.25rem;
            text-align: center;
        }

        .list {
            padding: 24px;
        }

        h5 {
            font-weight: 400;
            font-size: 1.125rem;

            strong {
                font-weight: 600;
            }
        }

        .item:not(:last-child) {
            margin-bottom: 1.5rem;
        }

        .options {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;

            .option {
                padding: 0.375rem 1.25rem;
                background-color: var(--light);
                border-radius: 6px;
                font-size: 1rem;
                cursor: pointer;
                transition: all 0.3s;
                font-weight: 500;

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

                &.active {
                    background-color: var(--primary);
                    color: white;
                }
            }
        }

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

    .content {
        margin-bottom: 30px;
    }

    &.offer-form {

        .small-container {
            max-width: 850px;
            margin: 0 auto;
        }

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

        .flex-content .left,
        .flex-content .right {
            width: 50%;
        }

        h1 {
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .left .main-image {
            height: 260px;

            img {
                object-fit: cover;
            }
        }

        h3 {
            font-weight: 700;
            font-size: 2rem;
            margin-bottom: 0.25rem;
        }

        .right .content {
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--primary);

            .price {
                font-size: 2rem;
                margin-bottom: 0.25rem;
            }
        }

        .calculation {
            border: none;
            padding: 40px;
            box-shadow: var(--shadow);
            margin-top: 40px;
            margin-bottom: 0;

            .selects {
                display: flex;
                width: 100%;
                gap: 20px;
                padding-bottom: 30px;
                margin-bottom: 15px;
                border-bottom: 1px solid #ddd0c9;

                .item {
                    width: 50%;
                    margin-bottom: 0;
                }
            }

            .form-input {
                width: 100%;
                text-align: left;
            }

            label {
                font-weight: 500;
                text-align: left;
            }

            input,
            textarea,
            select,
            .form-check-input + label::before {
                background-color: #F4F4F4;
            }

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

            input::placeholder,
            textarea::placeholder {
                letter-spacing: 0;
                text-transform: none;
                font-weight: 500;
            }

        }
    }
}

.product-details {
    margin-bottom: 80px;

    .flex-content {
        justify-content: center;

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

            h3 {
                margin-bottom: 2rem;
            }
        }

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

.article-hero {
    min-height: auto;
    padding-top: calc(5.45vw + 70px);
    padding-bottom: 40px;

    .container {
        display: block;
    }

    h1 {
        text-transform: uppercase;
        font-size: 3rem;
        margin-bottom: 2rem;
    }

    .nav {
        margin: 0;

        a {
            color: white;
        }
    }
}

.article {

    padding-top: 60px;
    margin-bottom: 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) {
        max-width: 100%;
        margin: 1.25rem 0;
    }

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

    p {
        line-height: 1.5;
    }

}

@media (max-width: 767px) {

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 2rem;
        margin-bottom: 1.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: 0.9375rem;
    }

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

    .hero {
        padding-top: 70px;
        min-height: auto;
        padding-bottom: 80px;

        &.main-hero {
            margin-top: 0
        }

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

        .left {
            padding: 0;
            width: 100%;

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

            p {
                font-size: 0.9375rem;
            }
        }

        .right {
            width: 100vw;
            height: 55vw;
            margin-left: -20px;
            overflow: hidden;

            img {
                position: static;
                width: 100%;
                height: 100%;
            }
        }
    }

    .hero + .c2a-card {
        margin-top: -40px;
        padding-top: 0;
    }

    .c2a-card {
        .container {
            padding: 30px 20px;
            
            h2 {
                font-size: 1.5rem;
                margin-bottom: 1.25rem;
            }

            p {
                font-size: 1.125rem;
            }

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

    .booking {

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

        .steps {
            flex-wrap: wrap;

            .item {
                flex: auto;
                width: calc(50% - 0.75rem);
                text-align: center;
                margin-bottom: 1.625rem;
                padding-bottom: 6px;
            }
        }

        .buttons {
            gap: 16px;
            margin-top: 36px;
            width: 100%;

            .primary-link {
                position: static;
                transform: none;
                width: 9.5rem;
                max-width: 50%;
                padding: 0.625em 1.25em;
                display: flex;
                justify-content: center;
                align-items: center;
            }
        }

        .step {
            margin-top: 32px;

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

        .datetime-select {
            width: 100%;

            h3 {
                margin-bottom: 0.75rem;
            }

            .lightpick__month {
                width: 100%;
            }

            .lightpick__select {
                text-align: left;
                padding-left: 0.375rem;
            }

            .lightpick__toolbar {
                padding-right: 0.5rem;
            }

            .time {
                margin-top: 6px;
                flex-wrap: wrap;
                gap: 20px;

                .side {
                    margin-top: 10px;
                    width: 10rem;
                    gap: 0;
                    padding: 0;

                    .numInputWrapper span {
                        display: none;
                    }
                }
            }
        }

        .step.categories .items {

            gap: 10px;

            .item {
                height: 260px;
                width: calc(50% - 5px);

                .badge {
                    font-size: 0.75rem;
                    padding: 5px 8px;
                }

                .link {
                    font-size: 0.9375rem;
                }
            }
        }

        .step.products {

            .items {
                gap: 10px;
            }

            .item {
                width: calc(50% - 5px);

                .image {
                    height: 150px;
                }

                .content {
                    padding: 15px 15px calc(2.5rem + 15px);
                }

                h3 {
                    font-size: 0.9375rem;
                    margin-bottom: 0.625rem;
                }

                .price {
                    font-size: 0.9375rem;
                }

                .caution,
                .available {
                    font-size: 0.75rem;
                }

                hr {
                    margin: 15px -15px;
                }

                .primary-link {
                    width: calc(100% - 30px);
                    padding: 0.625em 1.25em;
                }
            }
        }

        .step.data {

            tr {
                display: block;

                td {
                    display: block;
                    width: 100% !important;
                    text-align: left !important;

                    select {
                        width: 100% !important;
                    }
                }
            }
            
            .services {
                .form-check {
                    margin-bottom: 12px;
                }

                .form-check-input + label {
                    
                    .content {
                        padding-right: 16px;

                        .name {
                            font-size: 0.9375rem;
                        }

                        .description {
                            font-size: 0.75rem;
                        }
                    }

                    .price {
                        font-size: 0.875rem;
                    }
                }
            }

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

            form {
                margin-top: 28px;
            }
        }
    }

    .categories {

        .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: 260px;

                .content {
                    padding: 0;
                    transform: none;
                    background-color: var(--light);
                }

                .link {
                    padding: 12px 15px;
                    font-size: 16px;
                    min-height: 67px;
                    display: flex;
                    align-items: center;
                    text-align: center;
                    width: fit-content;
                    margin: 0 auto;
                }

                .button {
                    display: none;
                }
            }
        }
    }

    .about {
        margin-top: 40px;
        padding-top: 40px;

        &::before {
            height: 100%;
        }

        .container {
            flex-direction: column;
            gap: 0;

            .left {
                width: 100%;

                img {
                    border-radius: 20px;
                }
            }

            .right {
                width: 100%;
            }
        }

        .bgshape {
            margin: 30px auto 0;
            height: auto;
            width: 100%;
            max-width: 400px;
        }
    }

    .about-2 {
        .container {
            flex-direction: column;
            gap: 30px;

            .left {
                width: 100vw;
                margin-left: -20px;
                margin-top: -2px;
                overflow: hidden;

                img {
                    position: static;
                    width: 100%;
                    height: 100%;
                }
            }

            .right {
                width: 100%;
                padding: 0;
            }
        }
    }

    .c2a-banner {
        margin-top: 40px;
        padding: 40px 20px;

        h2 {
            font-size: 1.75rem;
        }

        p {
            font-size: 1.125rem;
        }
    }

    .products {
        padding-top: 50px;

        h2 {
            margin-bottom: 2.5rem;
        }

        .item {
            width: 100%;

            .image {
                height: 64vw;
                max-height: 260px;
            }

            .content {
                padding: 20px 20px calc(3rem + 20px);
            }

            h3 a {
                font-size: 1.75rem;
            }

            hr {
                margin: 20px -20px;
            }

            .price {
                font-size: 1.25rem;
            }

            .primary-link {
                font-size: 0.875rem;
            }
        }
    }

    .products.new {
        &.new {
            padding-top: 40px;
    
            h2 {
                font-size: 1.875rem;
                margin-bottom: 1.5rem;
            }
    
            .container:not(.nav) {
                
                padding: 0 20px;

                .list {

                    .swiper-button-prev::after,
                    .swiper-button-next::after {
                        font-size: 28px;
                        font-weight: 400;
                    }
    
                    .swiper-button-prev {
                        left: -34px;
                    }
    
                    .swiper-button-next {
                        right: -34px;
                    }
    
                    .order {
                        flex-direction: column;
                        gap: 10px;
    
                        .select {
                            width: 100%;
    
                            .current {
                                width: 100%;
                                text-align: left;
                                font-size: 0.875rem;
                                padding: 0.5em 1em;
                            }
    
                            .options {
                                width: 100%;
    
                                .option {
                                    font-size: 0.875rem;
                                }
                            }
                        }
    
                        .filters {
                            width: 100%;
                            flex-direction: column;
                            gap: 10px;
                        }
                    }
    
                    .swiper {
                        margin-top: 25px;
                    }
    
                    .item {
    
                        .title {
                            padding: 20px;
    
                            h3 {
                                font-size: 1.5rem;
                            }
    
                            h5 {
                                font-size: 1rem;
                                margin-top: 0.125rem;
                            }
    
                        }

                        .badges {
                            top: 20px;
                            
                            span {
                                font-size: 0.6875rem;
                            }
                        }

                        .labels {
                            gap: 0.375rem;

                            span {
                                font-size: 0.6875rem;
                            }
                        }
    
                        .content {
                            padding-bottom: 0;
    
                            .price {
                                font-size: 1.5rem;
                            }
                        }
    
                        .buttons {
                            gap: 8px;
    
                            .primary-link {
                                font-size: 0.8125rem;
                                padding: 0.625em 0.875em;
                            }
                        }
                    }
                }

                .primary-link.center {
                    white-space: nowrap;
                }
            }

            &.subpage {

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

                    .items .item {
                        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;
            }
        }
    }
    
    .reviews {
        padding: 40px clamp(20px, 4vw, 80px) 80px;
        margin-top: 40px;

        h2 {
            margin-bottom: 90px;
        }

        .quote {
            left: 50%;
            height: 70px;
            top: -50px;
            transform: translateX(-50%);
        }

        .relative {
            width: calc(100% - 50px);
            margin: 0 auto;
    
            .swiper-slide {
                padding: 40px 20px;
                border-radius: 20px;

                .footer {

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

            .swiper-pagination {
                bottom: -35px;
            }
        }
    
    }

    .faq {
        h2 {
            margin-bottom: 2.5rem;
        }

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

            h3 {
                font-size: 1rem;
            }

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

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

        h2 {
            margin-bottom: 2.5rem;
            text-align: center;
        }

        .left {
            width: 100%;
            padding: 0;

            .item {

                padding-bottom: 20px;
                margin-bottom: 20px;

                &:last-of-type {
                    border-bottom: none;
                    margin-bottom: 0;
                    padding-bottom: 0;
                }

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

                h4 {
                    font-size: 1rem;
                }

                .primary-link {
                    font-size: 0.875rem;
                }
            }
        }

        .right {
            width: 100vw;
            margin-left: -20px;
            height: 66vw;
            max-height: 300px;

            #map {
                width: 100%;
                height: 100%;

                .leaflet-popup-content {
                    font-size: 0.75rem;
                    padding: 0.75rem;

                    h6 {
                        font-size: 0.875rem;
                    }
                }

                .leaflet-control-attribution a {
                    font-size: 10px;
                }
            }
        }
    }

    .c2a-card.dark {
        padding-top: 40px;
    }

    .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 {
                width: 140px;
            }

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

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

            span,
            a {
                font-size: 1rem;

                &::after {
                    display: none;
                }
            }
        }
    }

    .nav {
        margin-bottom: 40px;
    }
    
    .products-hero {
        padding-top: 110px;
        padding-bottom: 40px;

        h1 {
            font-size: 2.5rem;
        }
    }

    .products.subpage {
        padding-top: 40px;

        .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 {

                    .number {
                        font-size: 1rem;
                    }

                    .select .current {
                        font-size: 0.8125rem;
                        width: auto;
                    }

                }

            }
        }
    }

    .faq + .c2a-card {
        margin-top: 0;
    }

    .product {
        padding-top: 100px;
        padding-bottom: 40px;

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

            .other,
            .desktop-only {
                display: none;
            }

            .product-swiper-prev, .product-swiper-next {
                width: 40px;
                height: 40px;
            }

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

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

            h3 {
                font-size: 1.5rem;
            }

            &.mobile-only {
                display: block;
            }

            &.desktop-only {
                display: none;
            }

            .items {
                gap: 8px;
            }

            .item {
                font-size: 0.75rem !important;
            }
        }

        .right {

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

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

            .locations {
                .item {
                    flex-direction: column;
                    margin-bottom: 1.25rem;

                    .primary-link {
                        font-size: 0.875rem;
                    }
                }
            }

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

            .mobile {
                display: block;
                margin-top: 30px;
            }
        }

        .calculation {

            .header {
                padding: 16px;
                font-size: 1rem;
            }

            .list {
                padding: 20px;
            }

            h5 {
                font-size: 0.9375rem;
                margin-bottom: 0.75rem;
            }

            .item:not(:last-child) {
                margin-bottom: 1.125rem;
            }

            .options {
                gap: 10px;

                .option {
                    padding: 0.375rem 1rem;
                }
            }
        }

        &.offer-form {
            .flex-content .left,
            .flex-content .right {
                width: 100%;
                text-align: center;
            }
            
            .left .main-image {
                height: auto;
                margin-top: 10px;
            }

            h3 {
                font-size: 1.5rem;
            }

            .calculation {
                padding: 30px 20px;
                margin-top: 32px;

                .selects {
                    flex-direction: column;
                    gap: 20px;

                    .item {
                        width: 100%;
                    }
                }
            }
        }
    }

    .product-details {
        margin-bottom: 0;

        .flex-content {
            gap: 40px;
            
            .prices,
            .price-infos {
                width: 100%;
                min-width: 100%;
            }

            .price-infos h3 {
                font-size: 1.5rem;
                margin-bottom: 1.25rem;
            }
        }
    }

    .article-hero {
        min-height: auto;
        padding-top: 110px;
        padding-bottom: 40px;

        h1 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }
    }

    .article {
        padding-top: 20px;
        margin-bottom: 0;

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