.back-btn{
    width: 40px;
    height: 40px;
    padding: 8px;
    cursor: pointer;
}

.container{
    margin: auto;
    min-height: 100vh;
    align-items: flex-start;
    flex-direction: column;
    padding: 0 2em;
    gap: 2.5em;
}

.container .image{
    width: 100%;
    max-width: 600px;
    padding: 0 1em;
} 
.container .image img{
    width: 100%;
    height: 100%;
}
.container .detail{
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    margin-bottom: 9em;
    gap: 1.7em;
}
.container .detail .pickers{
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
}
.price{
    margin: 1em 0;
}
.pickers div{
    border-bottom: 1px solid var(--border-color);
    width: 100%;
}
.pickers div:first-child{
    border-top: 1px solid var(--border-color);
}

.pickers div label{
    position: absolute;
}
.pickers div select{
    font-size: 16px;
    background: none;
    outline: none;
    width: 100%;
    border: none;
    padding: 16px 24px 16px 70px;
    color: var(--secondary-color);
}

.description{
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.add-to-cart{
    position: fixed;
    bottom: 0; left: 0;
    width: 100%;
    background: var(--accent-color);
    padding: 1.5em;
    font-weight: 600;
    color: white;
}

ul{
    padding-left: 40px;
}


/* For desktop  */
@media (min-width: 768px){
    .container{
        justify-content: center;
        gap: 5em;
        padding: 5em 2em;
        flex-direction: row;
    }
    .container .detail{
        gap: 2.5em;
        max-width: 400px;
    }
    .container .image{
        padding: 0;
    }
    .add-to-cart{
        position: relative;
        width: fit-content;
        background: white;
        border: 2px solid var(--primary-color);
        padding: 8px 44px;
        font-weight: 600;
        color: var(--primary-color);
    }
    .price{
        font-size: 16px;
    }
}