.best-sellers {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 80px 0 40px 0;
    strong {
        font-family: rub;
        font-size: 1.8em;
        color: var(--text-1);
        text-transform: uppercase;
        position: relative;
        display: grid;
        place-items: center;
    }
    strong:after {
        content: "";
        width: 30%;
        height: 2px;
        background: var(--text-1);
        position: absolute;
        bottom: -20px;
    }
    ul {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: row;
        list-style: none;
        margin-top: 80px;
        flex-wrap: wrap;
        li {
            width: 400px;
            height: 550px;
            margin: 10px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            box-sizing: border-box;
            flex-direction: column;
            span {
                background: var(--s-p);
                opacity: 0.2;
                width: 100%;
                height: 100%;
                position: absolute;
                border-radius: 23px;
                z-index: 0;
            }
            img {
                width: 100%;
                z-index: 2;
            }
            i {
                width: 38px;
                height: 38px;
                position: absolute;
                top: 0;
                left: 0;
                margin: 20px;
                background: var(--err);
                border-radius: 150px;
                color: var(--text-2-s);
                display: grid;
                place-items: center;
                font-size: 1.6em;
            }
            h1 {
                font-family: rub;
                font-size: 1.3em;
                color: var(--text-1);
                margin-bottom: 50px;
                text-transform: capitalize;
            }
        }
    }
    a {
        width: 280px;
        height: 60px;
        margin: 50px 0;
        border: 1px solid var(--p-s);
        color: var(--p-s);
        font-family: vaz;
        font-size: 1.3em;
        text-decoration: none;
        display: grid;
        place-items: center;
        font-weight: 100;
        transition: background 300ms ease,color 300ms ease;
        text-transform: capitalize;
    }
    a:hover {
        background: var(--p-s);
        color: var(--text-2);
    }
    @media screen  and (max-width:900px){
        ul {
            flex-wrap: nowrap;
            overflow-x: auto;
            justify-content: flex-start;
            scroll-behavior: smooth;
            li {
                min-width:300px;
                font-size: 0.9em;
                height: 450px;
            }
        }
        ul::-webkit-scrollbar {
            display: none;
        }
        
    }
}

.two-box {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    span {
        width: 50%;
        aspect-ratio: 2 / 1.4;
        overflow: hidden;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        a {
            z-index: 1;
            font-family: vaz;
            color: var(--text-2);
            font-size: 3em;
            letter-spacing: 15px;
            text-transform: capitalize;
            text-decoration: none;
            position: absolute;
        }
        img {
            position: absolute;
            z-index: 0;
            height: 100%;
            transition: 1s ease;
        }
        img:hover {
            transform: scale(1.2);
        }
    }
    div {
        width: 50%;
        aspect-ratio: 2 / 1.4;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        flex-direction: column;
        background: var(--bg-a);
        strong {
            z-index: 1;
            font-family: vaz;
            color: var(--text-1);
            font-size: 1.5em;
            text-transform: capitalize;
            text-decoration: none;
            margin-top: 20px;
        }
        img {
            z-index: 0;
            width: 40%;
        }
    }
    @media screen and (max-width:900px) {
        flex-direction: column;
        span {
            width: 100%;
        }
        div {
            width: 100%;
        }
        
    }
}
.two-box:nth-of-type(even) {
    flex-direction: row-reverse;
}

.trending {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 80px 0;
    strong {
        font-family: rub;
        font-size: 1.8em;
        color: var(--text-1);
        text-transform: uppercase;
        position: relative;
        display: grid;
        place-items: center;
    }
    strong:after {
        content: "";
        width: 30%;
        height: 2px;
        background: var(--text-1);
        position: absolute;
        bottom: -20px;
    }
    article {
        margin-top: 80px;
        span {
            ul {
                justify-content: center;
            }
            li {
                transition: background 300ms ease;
                margin: 0 30px ;
            }
            li:hover {
                background: var(--s-p) !important;
            }
        }
    }
    @media screen and (max-width:900px) {
        li {
            margin: 0 10px !important;
        }
        
    }
}

.discover {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 120px 0 -120px 0;
    strong {
        font-family: rub;
        font-size: 1.8em;
        color: var(--text-1);
        text-transform: uppercase;
        position: relative;
        margin: 20px 0 60px 0;
        display: grid;
        place-items: center;
    }
    strong:after {
        content: "";
        width: 30%;
        height: 2px;
        background: var(--text-1);
        position: absolute;
        bottom: -20px;
    }
    ul {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: row;
        flex-wrap: wrap;
        z-index: 1;
        li {
            width: 500px;
            height: 500px;
            margin: 30px;
            list-style: none;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            position: relative;
            z-index: 1;
            div {
                width: 100%;
                height: 100%;
                position: relative;
                display: grid;
                place-items: center;
                overflow: hidden;
                img {
                    height: 100%;
                    position: absolute;
                    z-index: 0;
                }
                h2 {
                    font-family: rub;
                    font-size: 2em;
                    color: var(--text-1);
                    position: absolute;
                    text-transform: capitalize;
                    width: 100%;
                    height: 100%;
                    background: rgba(0, 0, 0, 0.205);
                    display: flex;
                    align-items: center;
                    justify-content: center;
                }
            }
            h1 {
                font-family: vaz;
                color: var(--mirror);
                position: absolute;
                bottom: -70px;
                font-size: 3.5em;
                text-transform: uppercase;
                font-weight: bolder;
                letter-spacing: 10px;
            }
            h1:before {
                content: "";
                position: absolute;
                width: 100%;
                text-align: center;
                font-weight: lighter;
                font-size: 0.5em;
                letter-spacing: 1px;
                top: -30px;
            }
        }
    }
    span {
        @media screen and  (max-width:900px) {
                div {
                    display: none !important;
                }
                aside {
                    width: 100% !important;
                }
        }
        width: 100%;
        height: 900px;
        background: var(--p-s);
        position: relative;
        top: -180px;
        z-index: 0;
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        flex-direction: row;
        div {
            width: 60%;
            aspect-ratio: 16/9;
            display: grid;
            place-items: center;
            overflow: hidden;
            img {
                width: 150%;
            }
        }
        aside {
            width: 40%;
            height: 500px;
            background: var(--bg);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            article {
                width: 200px;
                h1 {
                    color: var(--text-1);
                    font-family: vaz;
                    font-size: 2em;
                    text-transform: uppercase;
                }
                p {
                    width: 300px;
                    font-family: rub;
                    font-size: 1em;
                    color: var(--text-1);
                }
                a {
                    width: 180px;
                    height: 50px;
                    margin-top: 30px;
                    border: 1px solid var(--p-s);
                    color: var(--p-s);
                    font-family: vaz;
                    font-size: 1.1em;
                    text-decoration: none;
                    display: grid;
                    place-items: center;
                    font-weight: 100;
                    transition: background 300ms ease,color 300ms ease;
                    text-transform: capitalize;
                }
                a:hover {
                    background: var(--p-s);
                    color: var(--text-2);
                }
            }
        }
    }
    .suggest {
        width: 100%;
        height: 250px;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        top: -180px;
        span {
            width: 100%;
            height: 100vh;
            position: absolute;
            background: rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            
        }
        a {
            color: var(--text-2);
            z-index: 2;
            font-family: rub;
            font-size: 3em;
            text-transform: capitalize;
            text-decoration: none;
            position: absolute;
            i {
                margin-left: 20px;
            }
        }
        img {
            position: absolute;
            width: 100%;
            @media screen and (max-width:900px) {
                width: unset;
                height: 120%;
                
            }
        }
    }
}

.instagram {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 150px;
    strong {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        text-transform: capitalize;
        font-family: vaz;
        font-size: 2.3em;
        color: var(--text-1);
        letter-spacing: 10px;
    }
    a {
        font-size: 1.5em;
        color:var(--p-s);
        text-decoration: none;
        margin-top: 30px;
    }
    ul {
        margin: 80px 0 50px 0;
        list-style: none;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: row;
        li {
            min-width: 300px;
            height: 300px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            img {
                height: 100%;
            }
        }
    }
    @media screen and (max-width:900px) {
        li {
            margin: 0 10px !important;
        }
    }
}