@import url('/font/style.css');

:root {
    --primary: #FF4C00;
    --secondary: #F0F0F0;
    --bg-color: #F9F9F9;
}

html, body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}
input, button, select {
    font-family: 'Poppins';
    &:focus-visible {
        outline: none;
    }
}
select option {
    font-size: 15px;
    font-weight: 300;
    font-style: normal;
}
input[type="checkbox"] {
    appearance: none;
    background-color: #fff;
    margin: 0;
    font: inherit;
    color: black;
    width: 1.15em;
    height: 1.15em;
    border: 1px solid #F0F0F0;
    border-radius: 0.15em;
    transform: translateY(-0.075em);
    display: grid;
    place-content: center;
    cursor: pointer;
}
input[type="checkbox"]::before {
    content: "";
    width: 1em;
    height: 1em;
    border: 1px solid #F0F0F0;
    border-radius: 0.15em;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    background-color: var(--primary);
}
input[type="checkbox"]:checked::before {
    transform: scale(1);
}
select:invalid {
    color: gray;
}
option[disabled] {
    color: gray;
}
.radio-box {
    padding-bottom: 15px;
    [type="radio"]:checked,
    [type="radio"]:not(:checked) {
        position: absolute;
        left: -9999px;
    }
    [type="radio"]:checked + label,
    [type="radio"]:not(:checked) + label
    {
        position: relative;
        padding-left: 28px;
        cursor: pointer;
        line-height: 20px;
        display: inline-block;
        color: #666;
        font-size: 14px;
    }
    [type="radio"]:checked + label:before,
    [type="radio"]:not(:checked) + label:before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 18px;
        height: 18px;
        border: 1px solid #ddd;
        border-radius: 100%;
        background: #fff;
    }
    [type="radio"]:checked + label:before {
        border: 1px solid var(--primary);
    }
    [type="radio"]:checked + label:after,
    [type="radio"]:not(:checked) + label:after {
        content: '';
        width: 12px;
        height: 12px;
        background: var(--primary);
        position: absolute;
        top: 4px;
        left: 4px;
        border-radius: 100%;
        -webkit-transition: all 0.2s ease;
        transition: all 0.2s ease;
    }
    [type="radio"]:not(:checked) + label:after {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    [type="radio"]:checked + label:after {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
header {
    position: fixed;
    z-index: 1;
    width: 100%;
    .topbar {
        background-color: var(--secondary);
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
        position: relative;
        @media screen and (max-width: 1024px) {
            display: none;
        }
        p {
            color: var(--primary);
            font-size: 14px;
            font-weight: 600;
            margin: 0;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }
        a {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 14px;
            color: black;
            text-decoration: none;
        }
        div {
            display: flex;
            gap: 20px;
        }
    }
    .header {
        padding: 10px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: white;
        @media screen and (max-width: 1024px) {
            border-bottom: 1px solid #00000020;
        }
        .logo {
            height: 66px;
            cursor: pointer;
            @media screen and (max-width: 768px) {
                height: 45px;
            }
        }
        .main-search {
            display: flex;
            align-items: center;
            justify-content: center;
            @media screen and (max-width: 1024px) {
                display: none;
            }
            input {
                padding: 0 16px;
                height: 50px;
                font-size: 14px;
                font-weight: 300;
                background-color: var(--secondary);
                border: none;
                border-radius: 2px 0 0 2px;
                width: 30vw;
                &::placeholder {
                    color: #4D4D4D;
                }
            }
            button {
                background-color: var(--primary);
                height: 50px;
                padding: 0 16px;
                border-radius: 0 2px 2px 0;
                border: none;
                cursor: pointer;
            }
        }
        a {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 15px;
            color: black;
            text-decoration: none;
            @media screen and (max-width: 1024px) {
                span {
                    display: none;
                }
            }
        }
        .basket {
            display: flex;
            gap: 5px;
            cursor: pointer;
            position: relative;
            align-items: center;
            @media screen and (max-width: 1024px) {
                svg.full path {
                    stroke: var(--primary);
                }
            }
            p {
                margin: 0;
                font-size: 15px;
                color: var(--primary);
                font-weight: 600;
                @media screen and (max-width: 1024px) {
                    display: none;
                }
            }
            em {
                font-size: 10px;
                font-style: normal;
                @media screen and (max-width: 1024px) {
                    display: none;
                }
            }
            .product-count-mobile {
                display: none;
                position: absolute;
                background-color: var(--primary);
                width: 15px;
                height: 15px;
                border-radius: 50%;
                align-items: center;
                justify-content: center;
                right: 0;
                top: 0;
                p {
                    color: white;
                    font-size: 10px;
                    @media screen and (max-width: 1024px) {
                        display: block;
                    }
                }
                @media screen and (max-width: 1024px) {
                    display: flex;
                }
            }
        }
        .burger {
            width: 32px;
            height: 24px;
            cursor: pointer;
            right: 2rem;
            top: 2rem;
            z-index: 20;
            align-items: center;
            display: none;
            @media screen and (max-width: 1024px) {
                display: flex;
            }
            &.active{
                span {
                    background-color: transparent;
                    &::before {
                        transform: rotateZ(45deg) translateY(0);
                    }
                    &::after {
                        transform: rotateZ(-45deg) translateY(0);
                    }
                }
            }
            span {
                width: 100%;
                height: 2px;
                background-color: black;
                border-radius: 12px;
                display: block;
                transition: background-color 0.2s ease-in-out;
                &::before {
                    content: "";
                    width: 100%;
                    background-color: black;
                    display: block;
                    transition: all 0.2s ease-in-out;
                    border-radius: 12px;
                    height: 2px;
                    transform: translateY(-10px);
                }
                &::after {
                    content: "";
                    width: 100%;
                    background-color: black;
                    display: block;
                    transition: all 0.2s ease-in-out;
                    border-radius: 12px;
                    height: 2px;
                    transform: translateY(10px);
                    margin-top: -2px;
                }
            }
        }
    }
    .header > div {
        display: flex;
        gap: 20px;
        align-items: center;
    }
    .navbar {
        overflow: hidden;
        background-color: var(--primary);
        display: flex;
        justify-content: center;
        padding: 0 20px;
        gap: 20px;
        @media screen and (max-width: 1024px) {
            display: none;
        }
        &.mobile {
            display: flex;
            flex-direction: column;
            background-color: white;
            padding: 20px;
            height: calc(100vh - 255px);
            justify-content: flex-start;
            gap: 30px;
            overflow: auto;
            position: relative;
            padding-bottom: 150px;
            @media screen and (max-width: 768px) {
                height: calc(100vh - 235px);
                gap: 15px;
            }
            a {
                color: black;
                font-size: 25px;
                @media screen and (max-width: 768px) {
                    font-size: 18px;
                }
            }
            .dropdown {
                .dropbtn {
                    color: black;
                    height: auto;
                    padding: 0;
                    gap: 30px;
                    font-size: 25px;
                    @media screen and (max-width: 768px) {
                        width: 100%;
                        font-size: 18px;
                        justify-content: space-between;
                    }
                    svg {
                        transform: rotate(270deg);
                        width: 30px;
                        height: 11px;
                        @media screen and (max-width: 768px) {
                            height: 9px;
                        }
                    }
                }
            }
            .contact {
                display: flex;
                flex-direction: column;
                position: absolute;
                bottom: 20px;
                left: 20px;
                gap: 15px;
                a {
                    text-transform: unset;
                    font-size: 20px;
                    font-weight: 500;
                    display: flex;
                    align-items: center;
                    gap: 15px;
                    color: #666;
                    @media screen and (max-width: 768px) {
                        font-size: 16px;
                    }
                    img {
                        height: 20px;
                    }
                }
                .socials {
                    padding-top: 30px;
                    display: flex;
                    gap: 20px;
                    @media screen and (max-width: 768px) {
                        padding-top: 10px;
                    }
                    a {
                        background-color: #EDF0F7;
                        border-radius: 50%;
                        height: 50px;
                        width: 50px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        img {
                            height: 20px;
                        }
                    }
                }
            }
        }
        .contact {
            display: none;
        }
        a {
            font-size: 16px;
            color: white;
            text-align: center;
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            @media screen and (max-width: 1024px) {
                text-transform: none;
                font-weight: 500;
            }
            &:hover {
                transition: 0.2s;
                color: #ffffffca;
                @media screen and (max-width: 1024px) {
                    color: black;
                }
            }
        }
        .dropdown {
            float: left;
            overflow: hidden;
            .dropbtn {
                font-size: 16px;
                border: none;
                outline: none;
                color: white;
                background-color: inherit;
                font-family: inherit;
                margin: 0;
                cursor: pointer;
                font-weight: 600;
                text-transform: uppercase;
                display: flex;
                align-items: center;
                gap: 5px;
                height: 55px;
                @media screen and (max-width: 1024px) {
                    text-transform: none;
                    font-weight: 500;
                }
                &:hover {
                    transition: 0.2s;
                    color: #ffffffca;
                    @media screen and (max-width: 1024px) {
                        color: black;
                    }
                }
            }
            .dropdown-content {
                display: none;
                justify-content: center;
                gap: 50px;
                padding: 50px;
                flex-wrap: wrap;
                position: fixed;
                background-color: white;
                width: calc(100vw - 100px);
                z-index: 2;
                border-radius: 0 0 12px 12px;
                left: 0;
                top: 180px;
                height: calc(100vh - 280px);
                @media screen and (max-width: 1024px) {
                    display: flex;
                    left: 100%;
                    right: auto;
                    top: 88px;
                    height: calc(100vh - 118px);
                    padding: 70px 20px 20px 20px;
                    overflow-y: auto;
                    width: 100%;
                    flex-direction: column;
                    justify-content: flex-start;
                    gap: 30px;
                    transition: 0.5s;
                }
                @media screen and (max-width: 768px) {
                    top: 67px;
                    flex-wrap: nowrap;
                    height: calc(100vh - 157px);
                }
                .back-button {
                    display: none;
                    @media screen and (max-width: 1024px) {
                        position: absolute;
                        top: 30px;
                        left: 30px;
                        background-color: transparent;
                        border: none;
                        display: block;
                        font-size: 20px;
                        color: #999999;
                    }
                    @media screen and (max-width: 768px) {
                        font-size: 16px;
                    }
                }
                .section {
                    width: 350px;
                    @media screen and (max-width: 768px) {
                        width: calc(100% - 40px);
                    }
                    a {
                        color: black;
                        padding: 12px 16px;
                        text-decoration: none;
                        text-transform: none;
                        display: block;
                        text-align: left;
                        @media screen and (max-width: 768px) {
                            padding: 5px 16px;
                        }
                        &.category-1 {
                            font-size: 16px;
                            font-weight: bold;
                            @media screen and (max-width: 1024px) {
                                font-size: 20px;
                            }
                            @media screen and (max-width: 768px) {
                                font-size: 18px;
                            }
                        }
                        &.category-2 {
                            font-size: 15px;
                            display: flex;
                            align-items: center;
                            justify-content: space-between;
                            font-weight: 300;
                            @media screen and (max-width: 1024px) {
                                font-size: 20px;
                            }
                            @media screen and (max-width: 768px) {
                                font-size: 16px;
                            }
                            svg {
                                opacity: 0.3;
                                transform: rotate(270deg);
                            }
                        }
                        &:hover {
                            transition: 0.2s;
                            opacity: 0.7;
                        }
                    }
                }
            }
            &:hover .dropdown-content {
                display: flex;
            }
        }
    }
}
.buttons {
    display: flex;
    gap: 40px;
    a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 25px 30px;
        border-radius: 6px;
        text-decoration: none;
        font-size: 16px;
        font-weight: 600;
        font-family: 'Poppins', sans-serif;
        transition: 0.2s;
        @media screen and (max-width: 1440px) {
            padding: 20px 25px;
        }
        &.orange {
            background-color: var(--primary);
            color: white;
            &:hover {
                color: var(--primary);
                background-color: white;
            }
        }
        &.white {
                background-color: white;
                color: black;
            &:hover {
                background-color: var(--primary);
                color: white;
            }
        }
        &.black {
            background-color: black;
            color: white;
            border: 1px solid black;
            &:hover {
                background-color: white;
                color: black;
            }
        }
        &.transparent {
            border: 1px solid black;
            color: black;
            background-color: white;
            &:hover {
                background-color: black;
                color: white;
            }
        }
        &.gray {
            background-color: #F0F0F0;
            color: black;
            border-radius: 43px;
        &:hover {
            background-color: #dedede;
        }
    }
    }
}
.banner {
    display: flex;
    padding: 200px 20px 20px 20px;
    gap: 20px;
    height: 600px;
    background-color: var(--bg-color);
    @media screen and (max-width: 1024px) {
        flex-direction: column;
        height: auto;
        padding-top: 105px;
    }
    @media screen and (max-width: 768px) {
        padding-top: 80px;
    }
    & > div {
        border-radius: 12px;
        -webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.1);
        -moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.1);
        box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.1);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        position: relative;
        &:first-child {
            background-image: url('/img/header-1.png');
            width: 70%;
            @media screen and (max-width: 1024px) {
                width: 100%;
                height: 500px;
            }
            @media screen and (max-width: 768px) {
                background-color: white;
                background-position: top;
                background-size: 120%;
                height: 680px;
            }
            .white-box {
                position: absolute;
                background-color: white;
                border-radius: 12px;
                padding: 30px 100px 30px 30px;
                width: 540px;
                bottom: 50px;
                left: 50px;
                -webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.1);
                -moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.1);
                box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.1);
                @media screen and (max-width: 1024px) {
                    padding: 30px;
                    width: calc(100% - 160px);
                }
                @media screen and (max-width: 768px) {
                    width: calc(100% - 60px);
                    left: 0;
                    bottom: 0;
                    box-shadow: none;
                    border-radius: 0 0 12px 12px;
                    .buttons {
                        flex-direction: column;
                        align-items: flex-start;
                        gap: 20px;
                    }
                }
                h1 {
                    margin: 0;
                    font-size: 40px;
                    font-weight: 200;
                    line-height: 120%;
                    @media screen and (max-width: 1440px) {
                        font-size: 35px;
                    }
                    @media screen and (max-width: 768px) {
                        font-size: 30px;
                    }
                }
                p {
                    font-size: 15px;
                    margin: 16px 0;
                }
            }
        }
        &:last-child {
            background-image: url('/img/header-2.png');
            width: 30%;
            @media screen and (max-width: 1024px) {
                width: 100%;
                height: 400px;
            }
            .orange-box {
                bottom: 50px;
                right: 50px;
                @media screen and (max-width: 1024px) {
                    right: inherit;
                    left: 50px;
                }
                @media screen and (max-width: 768px) {
                    left: 20px;
                    bottom: 20px;
                }
            }
        }
    }
}
.orange-box {
    position: absolute;
    background-image: url('/img/orange-box.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    padding: 25px 45px 25px 25px;
    height: 55px;
    width: 195px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    cursor: pointer;
    filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.1));
    p {
        margin: 0;
        color: white;
        font-size: 24px;
        line-height: 100%;
        width: 95px;
    }
    svg {
        fill: white;
        height: 20px;
    }
}
.benefit-container {
    background-color: var(--bg-color);
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 30px 20px;
    @media screen and (max-width: 1024px) {
        flex-direction: column;
    }
    @media screen and (max-width: 1024px) {
        gap: 20px;
        padding: 20px;
    }
    .benefit-box {
        background-color: white;
        padding: 30px;
        width: 310px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        gap: 20px;
        -webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.1);
        -moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.1);
        box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.1);
        @media screen and (max-width: 1024px) {
            width: calc(100% - 60px);
        }
        .img-box {
            @media screen and (max-width: 768px) {
                width: 65px;
            }
            img {
                height: 45px;
                @media screen and (max-width: 768px) {
                    height: 40px;
                }
            }
        }
        .text-box {
            @media screen and (max-width: 768px) {
                width: calc(100% - 65px - 20px);
            }
            h5, p {
                margin: 0;
                font-size: 15px;
            }
        }
    }
}
.favorite-categories {
    background-color: var(--bg-color);
    padding: 50px 20px;
    @media screen and (max-width: 768px) {
        padding: 20px;
    }
    h2 {
        font-size: 36px;
        font-weight: bold;
        margin: 0;
        padding-bottom: 50px;
        text-align: center;
        @media screen and (max-width: 768px) {
            font-size: 25px;
            padding-bottom: 30px;
        }
    }
    .flexbox {
        display: flex;
        gap: 20px;
        align-items: stretch;
        justify-content: center;
        @media screen and (max-width: 1024px) {
            overflow-x: auto;
            justify-content: unset;
        }
        .category-box {
            height: 610px;
            width: 450px;
            border-radius: 20px;
            overflow: hidden;
            @media screen and (max-width: 1440px) {
                height: 550px;
            }
            @media screen and (max-width: 1024px) {
                width: 300px;
                height: 450px;
                flex-shrink: 0;
            }
            @media screen and (max-width: 768px) {
                height: 370px;
            }
            .header {
                background-color: var(--primary);
                height: 25%;
                display: flex;
                align-items: center;
                justify-content: center;
                @media screen and (max-width: 1440px) {
                    height: 20%;
                }
                h3 {
                    color: white;
                    font-size: 28px;
                    text-align: center;
                    margin: 0;
                    @media screen and (max-width: 1440px) {
                        font-size: 25px;
                    }
                    @media screen and (max-width: 1024px) {
                        font-size: 16px;
                    }
                }
            }
            .body {
                height: 75%;
                background-position: center;
                background-size: cover;
                background-repeat: no-repeat;
                position: relative;
                @media screen and (max-width: 1440px) {
                    height: 80%;
                }
                .buttons {
                    position: absolute;
                    left: 50%;
                    transform: translateX(-50%);
                    bottom: 50px;
                }
            }
        }
    }
}
.products {
    background-color: var(--bg-color);
    padding: 50px 20px;
    @media screen and (max-width: 768px) {
        padding: 20px;
    }
    h2 {
        font-size: 36px;
        font-weight: bold;
        margin: 0;
        padding-bottom: 50px;
        text-align: center;
        @media screen and (max-width: 768px) {
            font-size: 25px;
            padding-bottom: 30px;
        }
    }
    .products-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-column-gap: 20px;
        grid-row-gap: 20px;
        @media screen and (max-width: 1440px) {
            grid-template-columns: repeat(3, 1fr);
        }
        @media screen and (max-width: 1024px) {
            display: flex;
            overflow: auto;
        }
        .product-box {
            cursor: pointer;
            border-radius: 20px;
            padding: 20px;
            @media screen and (max-width: 1024px) {
                background-color: white;
                .buttons .white {
                    background-color: var(--primary);
                    color: white;
                }
            }
            &:hover {
                transition: 0.2s;
                background-color: white;
                .buttons .white {
                    background-color: var(--primary);
                    color: white;
                }
            }
            .stock {
                position: relative;
                text-align: right;
                .sale {
                    background-image: url('/img/sale.png');
                    background-position: center;
                    background-size: contain;
                    background-repeat: no-repeat;
                    background-color: transparent;
                    height: 66px;
                    width: 70px;
                    display: flex;
                    flex-direction: column;
                    align-items: flex-start;
                    justify-content: center;
                    padding-left: 20px;
                    position: absolute;
                    left: 0px;
                    top: 0px;
                    filter: drop-shadow(0px 18.21px 35.77px rgba(0, 0, 0, 0.25));
                    @media screen and (max-width: 768px) {
                        height: 50px;
                        width: 55px;
                    }
                    em {
                        color: white;
                        font-size: 15px;
                        font-style: normal;
                        @media screen and (max-width: 768px) {
                            font-size: 10px;
                        }
                    }
                    p {
                        margin: 0;
                        font-size: 26px;
                        font-weight: 500;
                        color: white;
                        @media screen and (max-width: 768px) {
                            font-size: 16px;
                        }
                    }
                }
                & > p {
                    display: flex;
                    align-items: center;
                    gap: 10px;
                    font-size: 15px;
                    justify-content: flex-end;
                    margin: 0;
                    padding-bottom: 20px;
                    @media screen and (max-width: 768px) {
                        font-size: 10px;
                        gap: 5px;
                        img {
                            height: 15px;
                        }
                    }
                }
            }
            .photo {
                width: 100%;
                aspect-ratio: 1;
                background-position: center;
                background-size: cover;
                background-repeat: no-repeat;
            }
            hr {
                width: 90%;
                margin: 30px;
                border-top: 1px solid #ccc;
                @media screen and (max-width: 1024px) {
                    width: 275px;
                }
                @media screen and (max-width: 768px) {
                    width: 220px;
                }
            }
            h4 {
                font-size: 25px;
                font-weight: 600;
                margin: 0;
                @media screen and (max-width: 1024px) {
                    padding-bottom: 20px;
                }
                @media screen and (max-width: 768px) {
                    font-size: 16px;
                }
            }
            .info {
                display: grid;
                grid-template-columns: 1fr minmax(min-content, max-content);
                grid-column-gap: 10px;
                grid-row-gap: 5px;
                padding: 20px 0 50px 0;
                @media screen and (max-width: 1024px) {
                    display: none;
                }
                p {
                    margin: 0;
                    font-size: 15px;
                    em {
                        color: var(--primary);
                        font-weight: 600;
                        font-style: normal;
                    }
                }
            }
            .price {
                display: flex;
                justify-content: space-between;
                align-items: center;
                em {
                    color: #666;
                    text-decoration: line-through;
                    font-style: normal;
                    font-size: 15px;
                    @media screen and (max-width: 768px) {
                        font-size: 10px;
                    }
                }
                p {
                    font-size: 35px;
                    margin: 0;
                    font-weight: 600;
                    color: var(--primary);
                    @media screen and (max-width: 768px) {
                        font-size: 25px;
                    }
                }
            }
            & > p {
                text-align: right;
                font-size: 15px;
                margin-bottom: 0;
                a {
                    color: black;
                }
                @media screen and (max-width: 1024px) {
                    display: none;
                }
            }
        }
    }
}
.divider-container {
    background-color: var(--bg-color);
    padding: 50px 20px;
    @media screen and (max-width: 768px) {
        padding: 20px;
    }
    .divider {
        background-color: var(--primary);
        border-radius: 12px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 30px 50px;
        @media screen and (max-width: 1024px) {
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            padding-bottom: 250px;
            position: relative;
            gap: 30px;
        }
        @media screen and (max-width: 768px) {
            padding: 30px 30px 200px 30px;
        }
        .logo {
            height: 42px;
        }
        .center {
            position: relative;
            width: 440px;
            padding-left: 35%;
            @media screen and (max-width: 1024px) {
                position: unset;
                padding-left: 0;
                width: 100%;
            }
            h3 {
                font-size: 40px;
                color: white;
                font-weight: 300;
                margin: 0;
                @media screen and (max-width: 1024px) {
                    font-size: 25px;
                }
            }
            .img {
                position: absolute;
                left: 0;
                bottom: -30px;
                height: 230px;
                @media screen and (max-width: 1024px) {
                    left: 50%;
                    bottom: 0;
                    transform: translate(-50%);
                }
                @media screen and (max-width: 768px) {
                    height: 160px;
                }
            }
        }
    }
}
.offers {
    background-color: var(--bg-color);
    padding: 0px 20px 50px 20px;
    gap: 20px;
    display: flex;
    @media screen and ((max-width: 1024px)) {
        display: none;
    }
    & > div {
        position: relative;
        padding: 50px;
        height: 500px;
        border-radius: 12px;
        width: 100%;
        &.first {
            background-color: #0068FF;
            background-image: url('/img/wrench.png');
            background-position: bottom right;
            background-repeat: no-repeat;
            background-size: 350px;
            h4 {
                width: 440px;
                font-weight: 300;
                font-size: 40px;
                color: white;
                margin: 0;
            }
            & > p {
                font-size: 15px;
                width: 440px;
                color: white;
                margin: 30px 0 0 0;
            }
            .orange-box {
                bottom: 50px;
                left: 50px;
            }
        }
        &.second {
            background-image: url('/img/offer-bg.png');
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            h3 {
                font-size: 60px;
                color: white;
                margin: 0;
            }
            & > p {
                font-size: 15px;
                width: 440px;
                color: white;
                margin: 30px 0 0 0;
            }
            .buttons {
                position: absolute;
                bottom: 50px;
                left: 50px;
            }
        }
    }
}
.ratings {
    background-color: var(--bg-color);
    padding: 50px 20px;
    display: flex;
    align-items: center;
    @media screen and (max-width: 1024px) {
        flex-direction: column;
    }
    @media screen and (max-width: 768px) {
        padding: 20px;
    }
    & > .buttons {
        display: none;
        @media screen and (max-width: 1024px) {
            display: flex;
        }
    }
    & > .header {
        padding: 30px;
        width: 260px;
        @media screen and (max-width: 1024px) {
            width: 100%;
        }
        @media screen and (max-width: 768px) {
            padding-top: 0;
        }
        h2 {
            font-size: 36px;
            margin: 0;
        }
        p {
            font-size: 15px;
            margin: 20px 0 30px 0;
            @media screen and (max-width: 1024px) {
                width: 50%;
                margin-bottom: 0;
            }
            @media screen and (max-width: 768px) {
                width: 80%;
            }
        }
        .buttons {
            @media screen and (max-width: 1024px) {
                display: none;
            }
        }
    }
    .ratings-container {
        display: flex;
        align-items: center;
        gap: 20px;
        width: calc(100% - 260px - 60px);
        position: relative;
        overflow-x: auto;
        @media screen and (max-width: 1024px) {
            padding-bottom: 30px;
            width: 100%;
        }
        .rating-box {
            padding: 30px;
            background-color: white;
            border-radius: 20px;
            flex-shrink: 0;
            width: 40%;
            @media screen and (max-width: 1024px) {
                width: calc(100% - 60px);
            }
            &:not(:first-child) {
                @media screen and (max-width: 1024px) {
                    display: none;
                }
            }
            .header {
                display: flex;
                align-items: center;
                gap: 10px;
                @media screen and (max-width: 768px) {
                    flex-direction: column;
                    align-items: flex-start;
                }
                .stars {
                    width: 100px;
                    img {
                        height: 14px;
                    }
                }
                h5 {
                    font-size: 18px;
                    margin: 0;
                }
            }
            & > p {
                font-size: 14px;
                margin: 10px 0 50px 0;
            }
            .from {
                display: flex;
                justify-content: space-between;
                align-items: flex-end;
                .person {
                    display: flex;
                    align-items: center;
                    line-height: 110%;
                    gap: 10px;
                    em {
                        color: #666;
                        font-style: normal;
                        font-size: 12px;
                    }
                    p {
                        margin: 0;
                        font-weight: bold;
                        font-size: 18px;
                    }
                    img {
                        height: 43px;
                    }
                }
                a {
                    font-size: 11px;
                    color: var(--primary);
                    @media screen and (max-width: 768px) {
                        position: absolute;
                        top: 32px;
                        right: 30px;
                    }
                }
            }
        }
    }
}
.brands {
    display: flex;
    gap: 50px;
    justify-content: center;
    padding: 50px 20px;
    background-color: var(--bg-color);
    @media screen and (max-width: 1024px) {
        overflow: auto;
        justify-content: unset;
    }
    img {
        height: 55px;
        @media screen and (max-width: 1024px) {
            height: 40px;
        }
    }
}
.small-blog-box {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #DEE2E6;
    cursor: pointer;
    @media screen and (max-width: 768px) {
        padding: 20px 0;
    }
    &:first-child {
        padding-top: 0;
    }
    &:last-child {
        padding-bottom: 0;
        border: none;
    }
    .photo {
        width: 40%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        border-radius: 15px;
    }
    .info {
        width: 60%;
        h4 {
            font-size: 24px;
            margin: 0;
            @media screen and (max-width: 1440px) {
                font-size: 20px;
            }
            @media screen and (max-width: 768px) {
                font-size: 18px;
            }
        }
        p {
            font-size: 15px;
            @media screen and (max-width: 768px) {
                font-size: 14px;
            }
        }
        .author {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            p {
                font-size: 14px;
                margin: 0;
                color: var(--primary);
                @media screen and (max-width: 768px) {
                    font-size: 10px;
                }
            }
        }
    }
}
.blog {
    background-color: var(--bg-color);
    padding: 50px 20px;
    @media screen and (max-width: 768px) {
        padding: 20px 20px 30px 20px;
    }
    h2 {
        font-size: 36px;
        font-weight: bold;
        margin: 0;
        padding-bottom: 50px;
        text-align: center;
        @media screen and (max-width: 768px) {
            font-size: 25px;
            padding-bottom: 30px;
        }
    }
    .blog-container {
        display: flex;
        gap: 20px;
        & > div {
            border-radius: 15px;
            padding: 30px;
            width: 33%;
            @media screen and (max-width: 1024px) {
                width: 100%;
            }
            &.first {
                background-image: url('/img/blog1.png');
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                align-items: flex-start;
                cursor: pointer;
                @media screen and (max-width: 1024px) {
                    display: none;
                }
            }
            &.middle {
                padding: 0 10px;
                display: flex;
                flex-direction: column;
                @media screen and (max-width: 768px) {
                    padding: 0;
                }
            }
            &.last {
                background-image: url('/img/blog2.png');
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                align-items: flex-start;
                cursor: pointer;
                @media screen and (max-width: 1024px) {
                    display: none;
                }
            }
            h3 {
                font-size: 36px;
                color: white;
                margin: 0;
            }
            .date {
                background-color: white;
                border-radius: 4px;
                padding: 10px 20px;
                line-height: 120%;
                p {
                    font-weight: 500;
                    font-size: 20px;
                    margin: 0;
                }
                em {
                    font-style: normal;
                    font-size: 12px;
                    color: #808080;
                    font-weight: 500;
                    text-transform: uppercase;
                }
            }
        }
    }
}
.footer-bar {
    background-color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    padding: 20px;
    @media screen and (max-width: 1024px) {
        gap: 10px;
        justify-content: space-between;
    }
    @media screen and (max-width: 768px) {
        justify-content: center;
    }
    .benefit-box {
        display: flex;
        align-items: center;
        gap: 20px;
        @media screen and (max-width: 768px) {
            &:not(:first-child) {
                display: none;
            }
        }
        img {
            height: 45px;
        }
        p {
            margin: 0;
            font-size: 15px;
            color: white;
        }
    }
}
footer {
    padding: 50px 300px;
    @media screen and (max-width: 1440px) {
        padding: 50px 100px;
    }
    @media screen and (max-width: 1024px) {
        padding: 50px;
    }
    @media screen and (max-width: 768px) {
        padding: 20px;
    }
    .footer-container {
        display: flex;
        justify-content: center;
        gap: 80px;
        @media screen and (max-width: 1024px) {
            flex-wrap: wrap;
        }
        @media screen and (max-width: 768px) {
            flex-direction: column;
            position: relative;
            gap: 10px;
        }
        a {
            color: #666;
            display: block;
            text-decoration: none;
            font-size: 14px;
            margin-bottom: 10px;
            &:hover {
                color: black;
                transition: 0.2s;
            }
        }
        h4 {
            font-size: 18px;
            max-width: 230px;
            span {
                color: var(--primary);
            }
        }
        .eshop-grid {
            @media screen and (max-width: 768px) {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                grid-column-gap: 20px;
                grid-row-gap: 0px;
            }
        }
        & > div:last-child {
            @media screen and (max-width: 1024px) {
                width: 100%;
            }
            .newsletter-email {
                display: flex;
                align-items: center;
                justify-content: center;
                padding-bottom: 10px;
                @media screen and (max-width: 1024px) {
                    justify-content: left;
                    max-width: 100%;
                }
                input {
                    padding: 0 16px;
                    height: 50px;
                    font-size: 12px;
                    font-weight: 100;
                    background-color: var(--secondary);
                    border: none;
                    border-radius: 7px 0 0 7px;
                    width: 240px;
                    background-color: #EDF0F7;
                }
                button {
                    background-color: var(--primary);
                    height: 50px;
                    padding: 0 30px;
                    border-radius: 0 7px 7px 0;
                    border: none;
                    cursor: pointer;
                    color: white;
                }
            }
            .newsletter-privacy {
                padding-bottom: 30px;
                display: flex;
                gap: 10px;
                align-items: center;
                label {
                    color: #666;
                    font-size: 13px;
                    a {
                        display: inline;
                        color: black;
                        text-decoration: underline;
                        font-size: 13px;
                    }
                }
            }
            .contact-box {
                @media screen and (max-width: 768px) {
                    position: absolute;
                    top: 62px;
                    right: 0;
                }
                p {
                    font-size: 14px;
                    @media screen and (max-width: 768px) {
                        display: flex;
                        flex-direction: column;
                    }
                    a {
                        font-size: 14px;
                        color: #666;
                        display: inline;
                    }
                    .orange {
                        color: var(--primary);
                        font-weight: bold;
                    }
                    em {
                        font-size: 14px;
                        color: #666;
                        font-style: normal;
                    }
                }
                .socials {
                    padding-top: 30px;
                    display: flex;
                    gap: 20px;
                    @media screen and (max-width: 768px) {
                        position: absolute;
                        top: -40px;
                        left: 0;
                        padding: 0;
                    }
                    a {
                        background-color: #EDF0F7;
                        border-radius: 50%;
                        height: 35px;
                        width: 35px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        img {
                            height: 14px;
                        }
                    }
                }
            }
        }
    }
    hr {
        border-top: 1px solid #DEE2E6;
    }
    .pay-gates {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        padding: 30px 0;
    }
    .created-by {
        color: #666;
        margin: 0;
        padding: 30px 0;
        text-align: center;
        a {
            color: black;
            text-decoration: none;
            font-weight: bold;
        }
    }
}
.breadcrumbs {
    background-color: var(--bg-color);
    padding: 195px 20px 0 20px;
    @media screen and (max-width: 1024px) {
        padding-top: 105px;
    }
    @media screen and (max-width: 768px) {
        display: none;
    }
    .breadcrumbs-container {
        background-color: white;
        border-radius: 15px;
        font-size: 20px;
        font-weight: 600;
        padding: 30px;
        @media screen and (max-width: 1440px) {
            font-size: 16px;
        }
        a {
            font-weight: 300;
            color: #999;
            text-decoration: none;
        }
    }
}
.detail-content {
    background-color: var(--bg-color);
    display: flex;
    justify-content: space-between;
    @media screen and (max-width: 768px) {
        padding-top: 65px;
    }
    .side-panel {
        width: 310px;
        padding: 30px;
        @media screen and (max-width: 1024px) {
            display: none;
            position: fixed;
            z-index: 2;
            top: 0;
            height: 100vh;
            width: 100vw;
            background-color: #00000070;
            justify-content: end;
            padding: 20px;
            height: -webkit-fill-available;
            overflow: auto;
        }
        .header {
            background-color: var(--primary);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 30px;
            position: relative;
            @media screen and (max-width: 1024px) {
                padding-right: 60px;
            }
            h3 {
                margin: 0;
                font-size: 18px;
                color: white;
            }
            button {
                font-size: 14px;
                background-color: transparent;
                border: none;
                color: white;
                cursor: pointer;
                &.close-filter {
                    display: none;
                    position: absolute;
                    top: 10px;
                    right: 20px;
                    @media screen and (max-width: 1024px) {
                        display: block;
                        font-size: 30px;
                    }
                }
            }
        }
        .side-menu {
            background-color: #F0F0F0;
            border-radius: 20px;
            overflow: hidden;
            margin-bottom: 30px;
            .menu {
                padding: 20px 30px;
                .side-dropdown {
                    font-size: 16px;
                    background-color: transparent;
                    border: none;
                    cursor: pointer;
                    padding: 0 0 5px 0;
                    line-height: 2;
                    &:hover:not(.active) {
                        color: var(--primary);
                        transition: 0.2s;
                    }
                    &.active {
                        font-weight: 600;
                        img {
                            transform: rotate(180deg);
                        }
                    }
                }
                .side-dropdown-content {
                    padding-left: 30px;
                    display: none;
                    &.active {
                        display: block;
                    }
                    a {
                        color: black;
                        text-decoration: none;
                        font-size: 16px;
                        display: block;
                        padding: 0 0 5px 0;
                        line-height: 2;
                        &.active {
                            font-weight: 600;
                            color: var(--primary);
                            transition: 0.2s;
                        }
                        &:hover:not(.active) {
                            color: var(--primary);
                            transition: 0.2s;
                        }
                    }
                }
            }
        }
        .filter {
            background-color: #F0F0F0;
            border-radius: 20px;
            overflow: hidden;
            @media screen and (max-width: 1024px) {
                width: calc(100% - 40px);
            }
            .content {
                width: auto;
                h4 {
                    font-size: 14px;
                    margin: 30px 0 20px 0;
                }
                .active-filters-container {
                    display: flex;
                    flex-wrap: wrap;
                    gap: 10px;
                    .active-filter {
                        background-color: white;
                        display: flex;
                        align-items: center;
                        gap: 10px;
                        border-radius: 6px;
                        padding: 10px;
                        p {
                            margin: 0;
                            font-size: 13px;
                        }
                        button {
                            background-color: #F0F0F0;
                            font-size: 15px;
                            color: white;
                            border: none;
                            border-radius: 50%;
                            &:hover {
                                background-color: var(--primary);
                                cursor: pointer;
                            }
                        }
                    }
                }
                .brands-container {
                    border-bottom: 1px solid #99999920;
                    input[type=text] {
                        border: 1px solid #99999920;
                        background-color: white;
                        padding: 10px;
                        font-size: 14px;
                        border-radius: 5px;
                        width: -webkit-fill-available;
                    }
                    .checkboxes {
                        padding-top: 20px;
                        .checkbox {
                            display: flex;
                            align-items: center;
                            gap: 10px;
                            padding-bottom: 10px;
                            label {
                                height: 20px;
                                img {
                                    height: 20px;
                                }
                            }
                            em {
                                font-style: normal;
                                color: #888888;
                                font-size: 14px;
                            }
                            input {
                                cursor: pointer;
                            }
                        }
                    }
                }
                .price-container {
                    border-bottom: 1px solid #99999920;
                    padding-bottom: 10px;
                    .range {
                        position: relative;
                        min-height: 30px;
                        input[type=range]::-webkit-slider-thumb {
                            -webkit-appearance: none;
                            pointer-events: all;
                            width: 10px;
                            height: 10px;
                            background-color: var(--primary);
                            border-radius: 50%;
                            box-shadow: 0 0 0 1px #C6C6C6;
                            cursor: pointer;
                        }
                        input[type=range]::-webkit-slider-thumb:active {
                            box-shadow: inset 0 0 3px #6a6a6a, 0 0 9px #387bbe;
                            -webkit-box-shadow: inset 0 0 3px #387bbe, 0 0 9px #387bbe;
                        }
                        input[type="range"] {
                            -webkit-appearance: none; 
                            appearance: none;
                            height: 2px;
                            width: 100%;
                            position: absolute;
                            background-color: var(--primary);
                            pointer-events: none;
                        }
                        #fromSlider {
                            height: 0;
                            z-index: 1;
                        }
                    }
                    .number {
                        input {
                            width: 75px;
                            padding: 10px;
                            font-size: 12px;
                            font-weight: 600;
                            background-color: white;
                            border: none;
                            text-align: center;
                            border-radius: 5px;
                        }
                    }
                }
                .class-container {
                    border-bottom: 1px solid #99999920;
                    padding-bottom: 10px;
                    .checkbox {
                        margin-bottom: 10px;
                        display: flex;
                        align-items: center;
                        gap: 10px;
                        cursor: pointer;
                    }
                }
                .room-size-container {
                    border-bottom: 1px solid #99999920;
                    padding-bottom: 10px;
                    .size-container {
                        display: flex;
                        flex-wrap: wrap;
                        gap: 10px;
                        .size-box {
                            background-color: white;
                            display: flex;
                            align-items: center;
                            gap: 10px;
                            border-radius: 6px;
                            padding: 10px;
                            cursor: pointer;
                            p {
                                margin: 0;
                                font-size: 13px;
                            }
                        }
                    }
                }
            }
        }
    }
    .content {
        width: calc(100% - 440px);
        padding: 30px;
        @media screen and (max-width: 1024px) {
            width: calc(100% - 40px);
        }
        @media screen and (max-width: 768px) {
            padding: 20px;
        }
        .detail-banner {
            background-color: var(--primary);
            border-radius: 10px;
            display: flex;
            align-items: flex-end;
            height: 370px;
            @media screen and (max-width: 768px) {
                flex-direction: column;
                height: auto;
            }
            h2 {
                font-size: 40px;
                font-weight: 300;
                color: white;
                margin: 0;
                @media screen and (max-width: 1440px) {
                    font-size: 35px;
                }
                @media screen and (max-width: 768px) {
                    font-size: 30px;
                }
            }
            p {
                color: white;
                font-size: 15px;
            }
            & > div {
                padding: 30px 50px;
                display: flex;
                flex-direction: column;
                width: 40%;
                height: calc(100% - 60px);
                justify-content: space-between;
                @media screen and (max-width: 768px) {
                    width: auto;
                    padding: 20px;
                }
            }
            img {
                height: 350px;
                margin: 0 auto;
                @media screen and (max-width: 1440px) {
                    height: auto;
                    width: 50%;
                }
                @media screen and (max-width: 768px) {
                    width: 90%;
                }
            }
            &.white {
                background-color: white;
                p, h2 {
                    color: black;
                }
                img {
                    height: 230px;
                    margin: auto;
                    @media screen and (max-width: 1440px) {
                        height: auto;
                    }
                }
                & > div {
                    justify-content: center;
                }
            }
        }
        .filter {
            border-bottom: 1px solid #999;
            margin-bottom: 50px;
            @media screen and (max-width: 768px) {
                display: none;
            }
            button {
                color: #999;
                font-size: 20px;
                background-color: transparent;
                border: 0;
                padding: 20px;
                &.active {
                    font-weight: bold;
                    color: var(--primary);
                    cursor: pointer;
                    transition: 0.2s;
                }
                &:hover:not(.active) {
                    color: black;
                    cursor: pointer;
                    transition: 0.2s;
                }
                &:first-child {
                    padding-left: 0;
                }
            }
        }
        .filter-mobile {
            display: none;
            gap: 10px;
            align-items: center;
            justify-content: space-evenly;
            padding-bottom: 30px;
            @media screen and (max-width: 768px) {
                display: flex;
            }
            p {
                font-size: 15px;
            }
            button {
                background-color: var(--primary);
                color: white;
                padding: 10px 20px;
                border: none;
                border-radius: 4px;
                font-size: 15px;
                font-weight: 600;
            }
            select {
                background-color: var(--primary);
                color: white;
                padding: 10px 40px 10px 20px;
                border: none;
                border-radius: 4px;
                font-size: 15px;
                font-weight: 600;
                -webkit-appearance: none;
                -moz-appearance: none;
                appearance: none;
                background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="white"><path d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z"/></svg>');
                background-position: right 10px center;
                background-repeat: no-repeat;
                background-size: 30px;
            }
        }
        .products {
            padding: 50px 0px;
            .products-container {
                grid-template-columns: repeat(3, 1fr);
                @media screen and (max-width: 1440px) {
                    display: grid;
                    grid-template-columns: repeat(2, 1fr);
                    .price {
                        p {
                            font-size: 30px;
                        }
                    }
                }
                @media screen and (max-width: 768px) {
                    display: grid;
                    grid-template-columns: repeat(1, 1fr);
                    hr {
                        width: auto;
                    }
                }
            }
        }
    }
}
.pagination {
    display: flex;
    justify-content: center;
    button {
        color: #666;
        font-size: 14px;
        background-color: white;
        border: 1px solid #DEE2E6;
        margin: 5px;
        border-radius: 6px;
        padding: 10px 20px;
        &.active, &:hover {
            color: white;
            background-color: var(--primary);
            cursor: pointer;
            transition: 0.2s;
        }
    }
}
.product-detail {
    background-color: var(--bg-color);
    padding: 20px 10px 10px 10px;
    @media screen and (max-width: 768px) {
        padding-top: 80px;
    }
    .product-detail-container {
        background-color: white;
        padding: 50px 30px 50px 30px;
        border-radius: 15px;
        display: flex;
        gap: 50px;
        @media screen and (max-width: 1024px) {
            flex-direction: column;
            padding: 30px;
        }
        @media screen and (max-width: 768px) {
            padding: 20px;
            gap: 20px;
        }
        .photos-container {
            width: 35%;
            @media screen and (max-width: 1440px) {
                width: 30%;
            }
            @media screen and (max-width: 1024px) {
                width: 100%;
            }
            .photo {
                position: relative;
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
                aspect-ratio: 1;
                .sale {
                    background-image: url('/img/sale.png');
                    background-position: center;
                    background-size: contain;
                    background-repeat: no-repeat;
                    background-color: transparent;
                    height: 66px;
                    width: 70px;
                    display: flex;
                    flex-direction: column;
                    align-items: flex-start;
                    justify-content: center;
                    padding-left: 20px;
                    position: absolute;
                    left: 0px;
                    top: 0px;
                    filter: drop-shadow(0px 18.21px 35.77px rgba(0, 0, 0, 0.25));
                    @media screen and (max-width: 768px) {
                        height: 50px;
                        width: 55px;
                    }
                    em {
                        color: white;
                        font-size: 15px;
                        font-style: normal;
                        @media screen and (max-width: 768px) {
                            font-size: 10px;
                        }
                    }
                    p {
                        margin: 0;
                        font-size: 26px;
                        font-weight: 500;
                        color: white;
                        @media screen and (max-width: 768px) {
                            font-size: 16px;
                        }
                    }
                }
                .new {
                    background-color: black;
                    border-radius: 7px;
                    padding: 5px;
                    position: absolute;
                    right: 0px;
                    top: 0px;
                    p {
                        text-transform: uppercase;
                        font-size: 14px;
                        margin: 0;
                        color: white;
                    }
                }
            }
            .gallery {
                display: flex;
                gap: 20px;
                overflow-x: auto;
                @media screen and (max-width: 768px) {
                    display: none;
                }
                img {
                    height: 120px;
                    cursor: pointer;
                }
            }
        }
        .description-container {
            width: 35%;
            position: relative;
            @media screen and (max-width: 1440px) {
                width: 40%;
            }
            @media screen and (max-width: 1024px) {
                width: 100%;
            }
            .like {
                position: absolute;
                top: 0;
                right: 0;
                padding: 20px 20px 20px 20px;
                border-radius: 50%;
                background-color: #EDEFF6;
                cursor: pointer;
                height: 20px;
                width: 20px;
                &.active {
                    svg {
                        fill: var(--primary);
                    }
                }
            }
            h4 {
                font-size: 30px;
                padding-right: 100px;
                margin: 0;
                @media screen and (max-width: 768px) {
                    font-size: 25px;
                }
            }
            .price {
                display: flex;
                align-items: center;
                gap: 10px;
                p {
                    font-weight: 600;
                    font-size: 30px;
                    @media screen and (max-width: 768px) {
                        font-size: 25px;
                        color: var(--primary);
                    }
                }
                em {
                    font-size: 15px;
                    color: #666;
                    text-decoration: line-through;
                    font-style: normal;
                }
            }
            .info {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                grid-column-gap: 10px;
                grid-row-gap: 5px;
                @media screen and (max-width: 768px) {
                    grid-template-columns: repeat(1, 1fr);
                }
                p {
                    margin: 0;
                    font-size: 15px;
                    em {
                        color: var(--primary);
                        font-weight: 600;
                        font-style: normal;
                    }
                }
            }
            li {
                font-size: 15px;
            }
            .stock {
                display: flex;
                align-items: center;
                gap: 20px;
                padding-top: 20px;
                @media screen and (max-width: 768px) {
                    justify-content: center;
                }
                p {
                    display: flex;
                    align-items: center;
                    gap: 10px;
                    font-size: 17px;
                    justify-content: flex-end;
                    margin: 0;
                    padding-bottom: 20px;
                    img {
                        height: 17px;
                    }
                }
            }
            hr {
                border-top: 1px solid #DEE2E6;
            }
            .buy {
                display: flex;
                align-items: center;
                gap: 20px;
                padding: 30px 0;
                p {
                    font-size: 15px;
                    a {
                        color: black;
                    }
                }
            }
            .code {
                font-size: 20px;
                font-weight: bold;
                em {
                    font-weight: 300;
                    color: #666;
                    font-style: normal;
                }
            }
            .socials {
                display: flex;
                gap: 20px;
                a {
                    background-color: #E2E4EB;
                    border-radius: 50%;
                    height: 55px;
                    width: 55px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    img {
                        height: 20px;
                    }
                }
            }
        }
        .brand-basket {
            width: 25%;
            min-width: 420px;
            @media screen and (max-width: 1440px) {
                width: 20%;
                min-width: 400px;
            }
            @media screen and (max-width: 1024px) {
                width: 100%;
                min-width: auto;
                display: flex;
                flex-direction: column-reverse;
                .side-basket {
                    margin: 0;
                }
            }
            .side-basket {
                .radio-box {
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    @media screen and (max-width: 768px) {
                        align-items: flex-start;
                        flex-direction: column;
                        gap: 15px;
                    }
                    &:not(:last-child) {
                        border-bottom: 1px solid #DEE2E6;
                        margin-bottom: 20px;
                    }
                    label {
                        color: black;
                        h4 {
                            font-size: 18px;
                            margin: 0;
                            font-weight: bold;
                        }
                        p {
                            margin: 0;
                            font-size: 17px;
                            color: #666;
                        }
                    }
                }
                .product-container {
                    border: none;
                    max-height: 400px;
                    @media screen and (max-width: 768px) {
                        height: 330px;
                    }
                }
            }
            .brand-container {
                background-color: #F0F0F0;
                border-radius: 14px;
                padding: 30px;
                display: flex;
                flex-direction: column;
                margin-bottom: 20px;
                @media screen and (max-width: 1440px) {
                    margin: 0 0 20px 0;
                    padding: 20px;
                }
                @media screen and (max-width: 1024px) {
                    margin: 20px 0 0 0;
                }
                p {
                    font-size: 20px;
                    color: #666;
                    margin-top: 0;
                    @media screen and (max-width: 768px) {
                        margin: 0;
                    }
                    em {
                        font-style: normal;
                        font-weight: bold;
                        color: black;
                    }
                }
                img {
                    margin: 30px auto;
                    height: 45px;
                    @media screen and (max-width: 768px) {
                        display: none;
                    }
                }
            }
        }
    }
}
.side-basket {
    border: 1px solid var(--primary);
    border-radius: 14px;
    padding: 30px;
    background-color: white;
    margin-bottom: 20px;
    h3 {
        font-size: 22px;
        margin-top: 0;
    }
    h4 {
        font-size: 22px;
        margin-top: 0;
        font-weight: 500;
    }
    .green-text {
        font-size: 16px;
        font-weight: 600;
        color: #27BE63;
        text-align: center;
        margin-bottom: 0;
    }
    .buttons {
        justify-content: space-between;
        gap: 10px;
    }
    .product-container {
        overflow-y: auto;
        max-height: 250px;
        border-bottom: 1px solid #DEE2E6;
        .empty {
            color: #888;
        }
        .product-box {
            display: flex;
            gap: 10px;
            align-items: center;
            padding-bottom: 20px;
            border-bottom: 1px solid #DEE2E6;
            .photo {
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
                aspect-ratio: 1;
                height: 95px;
            }
            .info {
                h4 {
                    font-size: 18px;
                    margin: 0;
                    font-weight: bold;
                }
                p {
                    margin: 0;
                    font-size: 17px;
                    color: #666;
                }
            }
            .delete {
                button {
                    background-color: transparent;
                    border: none;
                    font-size: 25px;
                    font-weight: bold;
                    &:hover {
                        color: var(--primary);
                        cursor: pointer;
                        transition: 0.2s;
                    }
                }
            }
        }
    }
    .dph-box {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #DEE2E6;
        p {
            font-size: 14px;
            color: #4D4D4D;
        }
        .price {
            color: black;
            font-weight: 500;
        }
    }
    .discount-box {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #DEE2E6;
        p {
            font-size: 14px;
            color: var(--primary);
            font-weight: bold;
        }
        .price {
            font-weight: 300;
        }
    }
    .delivery-box {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #DEE2E6;
        p {
            font-size: 14px;
            color: #4D4D4D;
        }
        .price {
            color: #E6E6E6;
            font-weight: 500;
        }
    }
    .price-box {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #DEE2E6;
        margin-bottom: 20px;
        p {
            font-size: 20px;
            color: #4D4D4D;
        }
        .price {
            color: black;
            font-weight: bold;
        }
    }
    .payment {
        a {
            width: 100%;
            text-align: center;
            display: block;
        }
    }
    .info-flex {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: -webkit-fill-available;
        gap: 10px;
        h4 {
            font-size: 14px;
            font-weight: 300;
            margin: 0;
            width: 160px;
            @media screen and (max-width: 1440px) {
                width: auto;
            }
        }
        p {
            font-size: 14px;
            font-weight: 500;
            margin: 0;
        }
    }
}
.product-description {
    background-color: var(--bg-color);
    padding: 10px;
    .product-description-container {
        background-color: white;
        padding: 30px;
        border-radius: 15px;
        @media screen and (max-width: 768px) {
            display: none;
        }
        .filter {
            border-bottom: 1px solid #999;
            margin-bottom: 50px;
            button {
                color: #999;
                font-size: 20px;
                background-color: transparent;
                border: 0;
                padding: 20px;
                &.active {
                    font-weight: bold;
                    color: var(--primary);
                    cursor: pointer;
                    transition: 0.2s;
                }
                &:hover:not(.active) {
                    color: black;
                    cursor: pointer;
                    transition: 0.2s;
                }
                &:first-child {
                    padding-left: 0;
                }
            }
        }
        .detail-description {
            display: flex;
            padding: 0 30px 20px 30px;
            @media screen and (max-width: 1024px) {
                flex-direction: column-reverse;
            }
            .description {
                width: 50%;
                padding-right: 10%;
                @media screen and (max-width: 1024px) {
                    width: 100%;
                    padding: 30px 0 0 0;
                }
                h2 {
                    margin-top: 0;
                    font-size: 40px;
                    font-weight: 300;
                    width: 440px;
                }
                p, li {
                    font-size: 15px;
                }
            }
            .photo {
                background-image: url('/img/detail-img.png');
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
                width: 40%;
                @media screen and (max-width: 1024px) {
                    width: 100%;
                    height: 500px;
                }
            }
        }
    }
    .product-description-container-mobile {
        display: none;
        @media screen and (max-width: 768px) {
            display: block;
        }
        .dropdown-box {
            padding: 20px;
            border-radius: 15px;
            &.active {
                background-color: white;
            }
            .description-dropdown-button {
                border: none;
                background-color: transparent;
                width: 100%;
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding: 0 0 10px 0;
                border-bottom: 1px solid #999999;
                &.active {
                    span {
                        color: var(--primary);
                        font-weight: bold;
                    }
                    svg {
                        transform: rotate(180deg);
                        fill: var(--primary);
                    }
                }
                span {
                    color: #999999;
                    font-size: 15px;
                }
                svg {
                    fill: #999999;
                    height: 20px;
                }
            }
            .description-dropdown-content {
                h2 {
                    font-size: 25px;
                    font-weight: 300;
                }
                p, li {
                    font-size: 15px;
                }
                .photo {
                    height: 225px;
                    width: 100%;
                    background-image: url('/img/detail-img.png');
                    background-size: cover;
                    background-position: center;
                    background-repeat: no-repeat;
                }
            }
        }
    }
}
.basket-popup-container {
    display: none;
    position: fixed;
    z-index: 2;
    top: 0;
    height: 100vh;
    width: 100vw;
    background-color: #00000070;
    justify-content: end;
    &.active {
        display: flex;
    }
    .basket-popup {
        padding: 30px;
        background-color: white;
        width: 460px;
        position: relative;
        @media screen and (max-width: 768px) {
            margin: auto 20px;
            border-radius: 14px;
            border: 1px solid var(--primary);
            height: fit-content;
            padding: 15px;
        }
        .close {
            position: absolute;
            top: 30px;
            right: 30px;
            background-color: transparent;
            border: none;
            font-size: 30px;
            color: #afafaf;
            @media screen and (max-width: 768px) {
                top: 10px;
                right: 15px;
            }
            &:hover {
                cursor: pointer;
                color: black;
                transition: 0.2s;
            }
        }
        h3 {
            font-size: 22px;
            margin-top: 0;
        }
        .buttons {
            justify-content: space-between;
            gap: 10px;
        }
        .product-container {
            overflow-y: auto;
            height: 75vh;
            border-bottom: 1px solid #DEE2E6;
            @media screen and (max-width: 768px) {
                height: auto;
                max-height: 50vh;
            }
            .empty {
                color: #888;
            }
            .product-box {
                display: flex;
                gap: 10px;
                align-items: center;
                padding-bottom: 20px;
                border-bottom: 1px solid #DEE2E6;
                @media screen and (max-width: 768px) {
                    padding: 10px 0;
                }
                .photo {
                    background-size: cover;
                    background-position: center;
                    background-repeat: no-repeat;
                    aspect-ratio: 1;
                    height: 95px;
                }
                .info {
                    h4 {
                        font-size: 18px;
                        margin: 0;
                        @media screen and (max-width: 768px) {
                            font-size: 16px;
                        }
                    }
                    p {
                        margin: 0;
                        font-size: 17px;
                        color: #666;
                        @media screen and (max-width: 768px) {
                            font-size: 14px;
                        }
                    }
                }
                .delete {
                    button {
                        background-color: transparent;
                        border: none;
                        font-size: 25px;
                        font-weight: bold;
                        &:hover {
                            color: var(--primary);
                            cursor: pointer;
                            transition: 0.2s;
                        }
                    }
                }
            }
        }
        .price-box {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #DEE2E6;
            margin-bottom: 20px;
            p {
                font-size: 20px;
                color: #666;
            }
            .price {
                color: black;
                font-weight: bold;
            }
        }
    }
}
.not-found {
    background-color: var(--primary);
    height: calc(100vh - 180px);
    display: flex;
    padding-top: 180px;
    @media screen and (max-width: 1024px) {
        flex-direction: column;
        padding: 105px 0 0 50px;
        height: calc(100vh - 105px);
    }
    @media screen and (max-width: 768px) {
        padding: 80px 0 0 0;
        height: calc(100vh - 80px);
    }
    & > div {
        width: 550px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: 0 auto;
        @media screen and (max-width: 1024px) {
            margin: 0;
        }
        @media screen and (max-width: 768px) {
            width: calc(100% - 60px);
            padding: 0 30px;
        }
        h1 {
            font-size: 40px;
            font-weight: 300;
            color: white;
            margin-bottom: 100px;
            @media screen and (max-width: 1024px) {
                margin: 30px 0;
            }
            @media screen and (max-width: 768px) {
                font-size: 30px;
            }
        }
    }
    .image {
        width: 40%;
        height: fit-content;
        margin-top: auto;
        @media screen and (max-width: 1024px) {
            margin-left: auto;
            width: 80%;
        }
    }
    .white-box {
        background-image: url('/img/white-box.png');
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
        padding: 25px 45px 25px 25px;
        height: 75px;
        width: 300px;
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        cursor: pointer;
        @media screen and (max-width: 768px) {
            height: 60px;
            width: 250px;
        }
        p {
            margin: 0;
            color: var(--primary);
            font-size: 24px;
            width: 130px;
            @media screen and (max-width: 768px) {
                font-size: 20px;
            }
        }
        img {
            height: 20px;
            @media screen and (max-width: 768px) {
                height: 10px;
            }
        }
    }
}
.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding: 210px 0 30px 0;
    background-color: var(--bg-color);
    @media screen and (max-width: 1024px) {
        padding-top: 120px;
    }
    @media screen and (max-width: 768px) {
        padding: 90px 20px 30px 20px;
        gap: 30px;
        justify-content: unset;
        overflow-x: auto;
    }
    button {
        display: flex;
        align-items: center;
        gap: 20px;
        background-color: transparent;
        border: none;
        @media screen and (max-width: 768px) {
            flex-shrink: 0;
        }
        &.active {
            p {
                background-color: var(--primary);
                color: white;
            }
            span {
                color: var(--primary);
                font-weight: 600;
            }
            &:hover {
                cursor: pointer;
            }
        }
        p {
            background-color: white;
            font-size: 14px;
            color: #666;
            padding: 10px 20px;
            border-radius: 6px;
            margin: 0;
            border: 1px solid #DEE2E6;
            @media screen and (max-width: 1440px) {
                padding: 5px 10px;
            }
        }
        span {
            color: #999;
            font-size: 22px;
            @media screen and (max-width: 1440px) {
                font-size: 18px;
            }
        }
    }
}
.basket-step1 {
    display: flex;
    gap: 20px;
    padding: 0 200px 30px 200px;
    background-color: var(--bg-color);
    @media screen and (max-width: 1440px) {
        padding: 0 50px 30px 50px;
    }
    @media screen and (max-width: 1024px) {
        flex-direction: column;
    }
    @media screen and (max-width: 768px) {
        padding: 0 20px 30px 20px;
    }
    & > div:first-child {
        width: 70%;
        @media screen and (max-width: 1024px) {
            width: 100%;
        }
    }
    & > div:last-child {
        width: 30%;
        @media screen and (max-width: 1024px) {
            width: 100%;
        }
    }
    .table {
        background-color: white;
        border: 1px solid #E6E6E6;
        border-radius: 6px;
        margin-bottom: 20px;
        table {
            border-collapse: collapse;
            width: 100%;
            tr {
                border-bottom: 1px solid #E6E6E6;
                @media screen and (max-width: 768px) {
                    display: block;
                    position: relative;
                }
            }
            th {
                font-size: 14px;
                text-transform: uppercase;
                color: #808080;
                text-align: left;
                padding: 20px;
                font-weight: 300;
                &:not(:first-child) {
                    @media screen and (max-width: 768px) {
                        display: none;
                    }
                }
            }
            td {
                padding: 20px;
                font-size: 16px;
                img {
                    height: 95px;
                }
                h4 {
                    margin: 0;
                    font-size: 18px;
                    max-width: 200px;
                }
                &:nth-child(3) {
                    @media screen and (max-width: 768px) {
                        padding: 20px 0;
                    }
                }
                &:first-child {
                    display: flex;
                    align-items: center;
                    gap: 10px;
                    @media screen and (max-width: 768px) {
                        padding-bottom: 0;
                    }
                }
                &.without-dph {
                    @media screen and (max-width: 768px) {
                        display: none;
                    }
                }
                .delete {
                    border: 1px solid #CCCCCC;
                    width: 35px;
                    display: flex;
                    padding: 0;
                    height: 35px;
                    justify-content: center;
                    align-items: center;
                    background-color: white;
                    color: #666666;
                    border-radius: 50%;
                    font-size: 20px;
                    &:hover {
                        cursor: pointer;
                        transition: 0.2s;
                        background-color: var(--primary);
                        color: white;
                    }
                }
            }
        }
        .buttons {
            padding: 20px;
            justify-content: center;
            .gray {
                padding: 20px 50px;
            }
        }
        .quantity {
            display: flex;
            border: 1px solid #E6E6E6;
            border-radius: 170px;
            overflow: hidden;
            width: fit-content;
            padding: 5px;
            button {
                background-color: #F0F0F0;
                color: black;
                border: none;
                cursor: pointer;
                font-size: 20px;
                width: 35px;
                padding: 0;
                height: 35px;
                display: flex;
                transition: 0.2s;
                border-radius: 50%;
                align-items: center;
                justify-content: center;
                &:hover {
                    background-color: #dedede;
                }
            }
            .input-box {
                width: 40px;
                text-align: center;
                border: none;
                padding: 8px 10px;
                font-size: 16px;
                outline: none;
            }
            .input-box::-webkit-inner-spin-button,
            .input-box::-webkit-outer-spin-button {
                -webkit-appearance: none;
                margin: 0;
            }
            .input-box[type="number"] {
                -moz-appearance: textfield;
            }
        }
    }
    .discount {
        background-color: white;
        border: 1px solid #E6E6E6;
        border-radius: 6px;
        padding: 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        h3 {
            font-size: 20px;
            font-weight: 500;
            margin: 0;
            @media screen and (max-width: 768px) {
                font-size: 15px;
            }
        }
        .input {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            width: 80%;
            @media screen and (max-width: 1440px) {
                width: 70%;
            }
            @media screen and (max-width: 768px) {
                width: auto;
            }
            input {
                padding: 0 16px;
                height: 50px;
                font-size: 16px;
                font-weight: 100;
                background-color: white;
                border: 1px solid #E6E6E6;
                border-radius: 45px 0 0 45px;
                width: 70%;
                @media screen and (max-width: 768px) {
                    border-radius: 45px;
                    width: 100%;
                }
            }
            button {
                background-color: var(--primary);
                height: 50px;
                font-size: 16px;
                padding: 0 30px;
                border-radius: 0 6px 6px 0;
                color: white;
                cursor: pointer;
                border: none;
                width: 200px;
                font-weight: 500;
                @media screen and (max-width: 768px) {
                    display: none;
                }
                &:hover {
                    background-color: white;
                    color: var(--primary);
                }
            }
        }
    }
    .loginup {
        justify-content: space-between;
        gap: 10px;
        padding: 20px;
        margin-top: 20px;
        @media screen and (max-width: 768px) {
            padding: 0;
        }
        a {
            width: 30%;
            text-align: center;
            display: block;
            @media screen and (max-width: 1440px) {
                width: auto;
            }
        }
    }
    .continue {
        padding: 20px;
        @media screen and (max-width: 768px) {
            padding: 20px 0;
        }
        a {
            width: 100%;
            text-align: center;
            display: block;
            svg {
                margin-left: 15px;
            }
        }
    }
}
.basket-step2 {
    display: flex;
    gap: 20px;
    padding: 0 200px 30px 200px;
    background-color: var(--bg-color);
    @media screen and (max-width: 1440px) {
        padding: 0 50px 30px 50px;
    }
    @media screen and (max-width: 1024px) {
        flex-direction: column;
        padding: 0 20px 30px 20px;
    }
    & > div:first-child {
        width: 70%;
        @media screen and (max-width: 1024px) {
            width: 100%;
        }
    }
    & > div:last-child {
        width: 30%;
        @media screen and (max-width: 1024px) {
            width: 100%;
        }
    }
}
.contact-info {
    &.border {
        border-bottom: 1px solid #E6E6E6;
        margin-bottom: 30px;
    }
    h2 {
        font-size: 24px;
        font-weight: 500;
        margin-top: 0;
    }
    .flexbox {
        display: flex;
        gap: 20px;
        @media screen and (max-width: 768px) {
            flex-direction: column;
            gap: 0;
        }
    }
    .input-box {
        display: flex;
        flex-direction: column;
        &.full-width {
            width: 100%;
        }
        input, textarea {
            padding: 20px 20px;
            background-color: white;
            border: 1px solid #E6E6E6;
            font-size: 16px;
            border-radius: 6px;
            margin-bottom: 20px;
            resize: none;
            font-family: 'Poppins';
            &#name, &#surname, &#country, &#area {
                width: 280px;
                @media screen and (max-width: 768px) {
                    width: auto;
                }
            }
            &#install {
                width: 500px;
                @media screen and (max-width: 768px) {
                    width: auto;
                }
            }
        }
        select {
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            background-color: white;
            width: 100%;
            background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAUCAMAAACtdX32AAAAdVBMVEUAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhMdQaAAAAJ3RSTlMAAAECAwQGBwsOFBwkJTg5RUZ4eYCHkJefpaytrsXGy8zW3+Do8vNn0bsyAAAAYElEQVR42tXROwJDQAAA0Ymw1p9kiT+L5P5HVEi3qJn2lcPjtIuzUIJ/rhIGy762N3XaThqMN1ZPALsZPEzG1x8LrFL77DHBnEMxBewz0fJ6LyFHTPL7xhwzWYrJ9z22AqmQBV757MHfAAAAAElFTkSuQmCC);
            background-position: 100%;
            background-repeat: no-repeat;
            border: 1px solid #E6E6E6;
            padding: 20px 40px 20px 20px;
            border-radius: 6px;
            margin-bottom: 20px;
            font-size: 16px;
            &:required:invalid {
                color: gray; /* Placeholder-like color */
            }          
            &#country, &#rooms, &#oriented, &#papers {
                width: 320px;
                @media screen and (max-width: 768px) {
                    width: auto;
                }
            }
        }
        label {
            font-size: 14px;
            padding-bottom: 5px;
        }
    }
    .checkbox {
        padding-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
        label {
            color: #4D4D4D;
            font-size: 14px;
        }
        a {
            color: black;
        }
    }
}
.basket-step3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: var(--bg-color);
    padding-bottom: 50px;
    @media screen and (max-width: 768px) {
        padding: 0 20px 30px 20px;
    }
    & > p {
        width: 780px;
        margin: 50px 0;
        @media screen and (max-width: 768px) {
            width: 100%;
            margin: 20px 0 50px 0;
        }
    }
    & > h1 {
        font-size: 30px;
        margin: 50px 0 0 0;
        font-weight: 500;
        @media screen and (max-width: 768px) {
            margin-top: 20px;
        }
    }
    & > h2 {
        margin: 0;
        color: var(--primary);
        font-size: 30px;
    }
    .side-basket {
        width: 430px;
        @media screen and (max-width: 768px) {
            width: auto;
        }
    }
}
.contact-container {
    background-color: var(--bg-color);
    padding: 230px 200px 50px 200px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    @media screen and (max-width: 1440px) {
        padding: 230px 50px 50px 50px;
    }
    @media screen and (max-width: 1024px) {
        padding: 105px 20px 20px 20px;
    }
    @media screen and (max-width: 768px) {
        padding-top: 80px;
    }
    & > div:first-child {
        width: calc(100% - 480px);
        @media screen and (max-width: 1024px) {
            width: 100%;
        }
    }
    & > div:last-child {
        width: 420px;
        @media screen and (max-width: 1024px) {
            display: none;
        }
    }
    .description {
        width: 70%;
        @media screen and (max-width: 1440px) {
            width: 90%;
        }
        @media screen and (max-width: 768px) {
            width: 100%;
        }
        h1 {
            font-size: 40px;
            font-weight: 300;
            margin-top: 0;
            @media screen and (max-width: 768px) {
                font-size: 25px;
            }
        }
        p {
            margin-top: 20px;
            font-size: 15px;
        }
        li a {
            color: black;
            font-size: 15px;
        }
        .buttons {
            margin-top: 50px;
            @media screen and (max-width: 768px) {
                justify-content: center;
            }
        }
    }
    .form {
        h1 {
            font-size: 40px;
            font-weight: 300;
            margin: 50px 0 0 0;
            @media screen and (max-width: 768px) {
                font-size: 25px;
            }
        }
        & > p {
            width: 70%;
            font-size: 15px;
            margin-bottom: 50px;
            @media screen and (max-width: 1440px) {
                width: 90%;
            }
        }
        .contact-info {
            h2 {
                margin: 50px 0 30px 0;
                @media screen and (max-width: 768px) {
                    margin: 30px 0 20px 0;
                }
            }
        }
        .buttons {
            margin-top: 50px;
            @media screen and (max-width: 768px) {
                justify-content: center;
            }
        }
    }
}
.side-add {
    border-radius: 12px;
    padding: 30px;
    height: 540px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 20px;
    &.blue {
        background-color: #0068FF;
        background-image: url('/svg/x-wrench.svg');
        background-position: bottom right;
        background-size: 300px;
        background-repeat: no-repeat;
    }
    &.photo {
        background-image: url('/img/offer-bg.png');
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    .orange-box {
        position: relative;
    }
    h1 {
        color: white;
        font-size: 95px;
        margin: 0;
        line-height: 100%;
    }
    h2 {
        color: white;
        font-size: 55px;
        margin: 0;
        line-height: 100%;
    }
    h3 {
        font-size: 40px;
        font-weight: 300;
        color: white;
        margin: 0;
        width: 90%;
    }
    div:not(.orange-box) p {
        font-size: 15px;
        color: white;
    }
}
.blog-box {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    @media screen and (max-width: 768px) {
        padding: 20px;
    }
    .photo {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        height: 470px;
        position: relative;
        @media screen and (max-width: 1024px) {
            height: 340px;
        }
        .date {
            background-color: white;
            border-radius: 4px;
            padding: 10px 20px;
            line-height: 120%;
            p {
                font-weight: 500;
                font-size: 20px;
                margin: 0;
            }
            em {
                font-style: normal;
                font-size: 12px;
                color: #808080;
                font-weight: 500;
                text-transform: uppercase;
            }
        }
    }
    .details {
        width: 380px;
        @media screen and (max-width: 1440px) {
            width: 80%;
        }
        @media screen and (max-width: 1024px) {
            width: 100%;
        }
        h1 {
            font-size: 35px;
            font-weight: 600;
            @media screen and (max-width: 1024px) {
                line-height: 120%;
                font-size: 30px;
            }
        }
        h2 {
            font-size: 25px;
            font-weight: 600;
        }
        h3 {
            font-size: 18px;
            font-weight: 500;
            margin-bottom: 0;
        }
        p {
            font-size: 14px;
        }
        a {
            text-align: right;
            color: var(--primary);
            font-size: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            svg {
                height: 20px;
                fill: var(--primary);
            }
        }
    }
}
.main-blog-container {
    background-color: var(--bg-color);
    padding: 180px 100px 50px 100px;
    @media screen and (max-width: 1440px) {
        padding: 180px 50px 50px 50px;
    }
    @media screen and (max-width: 1024px) {
        padding: 105px 20px 30px 20px;
    }
    @media screen and (max-width: 768px) {
        padding-top: 80px;
    }
    h1 {
        font-size: 36px;
        text-align: center;
        margin: 0;
        padding: 50px 0;
        @media screen and (max-width: 1024px) {
            padding: 30px 0;
        }
        @media screen and (max-width: 768px) {
            padding: 10px 0 20px 0;
        }
    }
    .main-container {
        display: flex;
        gap: 30px;
        margin-bottom: 30px;
        @media screen and (max-width: 1024px) {
            display: none;
        }
        .blog-box {
            width: 60%;
            .date {
                position: absolute;
                bottom: 20px;
                left: 20px;
            }
        }
        .blog-list {
            width: 40%;
        }
    }
    .others-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-column-gap: 30px;
        grid-row-gap: 30px;
        @media screen and (max-width: 1024px) {
            grid-template-columns: repeat(1, 1fr);
            grid-column-gap: 20px;
            grid-row-gap: 20px;
        }
        .date {
            position: absolute;
            bottom: 20px;
            left: 20px;
        }
    }
    .pagination {
        display: none;
        @media screen and (max-width: 1024px) {
            display: flex;
            padding-top: 20px;
        }
    }
}
.main-blog-detail-container {
    background-color: var(--bg-color);
    padding: 230px 100px 50px 100px;
    display: flex;
    gap: 30px;
    @media screen and (max-width: 1440px) {
        padding: 230px 50px 50px 50px;
    }
    @media screen and (max-width: 1024px) {
        padding: 105px 20px 30px 20px;
        flex-direction: column;
        gap: 0;
    }
    @media screen and (max-width: 768px) {
        padding-top: 80px;
    }
    .blog-box {
        width: 60%;
        @media screen and (max-width: 1024px) {
            width: auto;
            background-color: transparent;
            padding: 0;
        }
        .details {
            width: 90%;
            @media screen and (max-width: 768px) {
                width: auto;
            }
        }
        .date {
            position: absolute;
            bottom: 20px;
            left: 20px;
        }
        .author {
            text-align: right;
            color: var(--primary);
            margin-bottom: 0;
            font-size: 14px;
            @media screen and (max-width: 768px) {
                display: none;
            }
        }
    }
    .side-box {
        width: 40%;
        @media screen and (max-width: 1024px) {
            width: auto;
        }
        h1 {
            font-size: 36px;
            @media screen and (max-width: 1024px) {
                text-align: center;
            }
        }
        .side-add {
            @media screen and (max-width: 1024px) {
                display: none;
            }
        }
    }
}
.static-page {
    padding: 230px 200px 50px 200px;
    background-color: var(--bg-color);
    @media screen and (max-width: 1440px) {
        padding: 200px 100px 50px 100px;
    }
    @media screen and (max-width: 1024px) {
        padding: 100px 50px 30px 50px;
    }
    @media screen and (max-width: 768px) {
        padding: 80px 20px 30px 20px;
    }
    .header {
        h1 {
            margin-bottom: 50px;
            font-size: 40px;
            font-weight: 500;
            @media screen and (max-width: 768px) {
                font-size: 30px;
                margin: 20px 0;
            }
        }
    }
    .content {
        p {
            font-size: 16px
        }
    }
}
.sticky-bottom {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 1;
    display: none;
    @media screen and (max-width: 768px) {
        display: flex;
    }
}

.popup-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 9998;
}
.popup {
    display: none;
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 2rem;
    max-width: 400px;
    width: 90%;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 9999;
    text-align: center;
}
.popup h2 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 300;
    color: #333;
}
.popup button {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    border: none;
    background: var(--primary);
    color: white;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
}
