
.teste{
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}
.teste .text b{
font-size: 30px;
font-weight: 500;
}
.teste .text p{
font-size: 16px;
font-weight: light;
}


.teste .text{
gap: 1.5rem 9.5%;
}
.teste img[alt="img"]{
width: 45rem;
}
.teste img[src="logo.png"]{
position: relative;
transform: translateX(calc(100px - 30px));
width: 300px;
}

.cartTab{
    width: 400px;
    background: #353432;
    color: #eee;
    position: fixed;
    inset: 0 -400px 0 auto;
    display: grid;
    grid-template-rows: 70px 1fr 70px;
}
.cartTab.active{
    inset: 0 0 0 auto;
}
.cartTab h1{
    padding: 20px;
    margin: 0;
    font-weight: 300;
}
.cartTab .btn{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.cartTab .btn button{
    background-color: #E8BC0E;
    border: none;
    font-family: 'PoppinsMedium','Rubik', sans-serif;
    font-weight: 500;
    cursor: pointer;
}
.cartTab .btn .close{
    background: #eee;
}
.cartTab .listCart .item img{
    width: 100%;
    padding: 10px;
}
.cartTab .listCart .item{
    display: grid;
    grid-template-columns: 70px 150px 50px 1fr;
    gap: 10px;
    text-align: center;
    align-items: center;
}
.listCart .quantity span{
    display: inline-block;
    width: 25px;
    height: 25px;
    background-color: #eee;
    color: #555;
    border-radius: 50%;
    cursor: pointer;
}
.listCart .quantity span:nth-child(2){
    background-color: transparent;
    color: #eee;
}
.listCart .item:nth-child(even){
    background: #eee1;
}
.listCart{
    overflow: auto;
}
.listCart::-webkit-scrollbar{
    width: 0;
}