* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, sans-serif;
}

a {
    text-decoration: none;
}

body {
    overflow-x: hidden;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem;
}

i {
    font-size: 2rem;
}

.logo {
    font-size: 2.5rem;
}

.nav__list {
    position: absolute;
    top: 0;
    height: 100svh;
    left: 0px;
    width: 0px;
    transition: width .3s ease-in;
    font-size: 1.4rem; 
    background: #fff;
    box-shadow: 2px 0 2px 0 rgba(0,0,0,0.2);
    z-index: 10000;
}

.nav_item {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-inline: 3rem;
    padding-top: 5rem;
    opacity: 0;
    visibility: hidden;
    transition: 
        opacity .3s ease-in,
        visibility .3s ease-in
    ;
}

.nav_item a {
    color: #3e3e3e;
}

#menu-btn, 
#close-btn,
#cart,
#plus {
    cursor: pointer;
}

#close-btn {
    position: absolute;
    right: 10px;
    top: 10px;
}

.container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding-inline: 15%;
    align-items: center;
    grid-gap: 2rem;
}

.text__box h1 {
    font-size: 2.4rem;
    padding-block: 2rem;
}

.text__box p {
    font-size: 1.4em;
}

.img__box {
    display: flex;
    position: relative;
    align-items: center;
}

.img__box img {
    position: relative;
}

.circle {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: #ADC7D4;
    z-index: -1;
    left: 45px;
}

@media(max-width: 700px) {
    .navbar {
        width: 100%;
    }

    .logo {
        font-size: 2rem;
    }

    #menu-btn,
    #cart {
        font-size: 1.5rem;
    }

    .container {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "img"
            "text1"
            "text2"
        ;
    }

    .text__box {
        grid-area: text1;
    }

    img {
        grid-area: img;
        width: 100%;
    }

    .text__box-2 {
        grid-area: text2;
        width: 100%;
    }

    .circle {
        display: none;
    }
}

@media(max-width: 360px) {
    .circle {
        width: 200px;
        height: 200px;
        left: 23px;
    }
}

.accordion {
    width: 100%;
}

.accordion-header {
    background-color: #fff;
    color: #000;
    padding-block: 4px;
    font-size: 1.5em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: 4px;
    border-bottom: 1px solid #000;
    padding-bottom: 1rem;
}

.accordion-content {
    padding-inline: 2rem;
    padding-block: 4px;
    font-size: 1.2em;
    color: #3e3e3e;
    height: 0px;
    width: 100%;
    padding-inline: 4px;
    opacity: 0;
    visibility: hidden;
    transition: 
        height .3s ease-in-out,
        opacity .3s ease-in-out,
        visibility .3s ease-in-out
    ;
}