@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Syne:wght@400..800&display=swap');

body {
    font-family:'poppins';
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    padding: 15px;
    color: #C9A980;
    width: 75%;
}


.menu-icon {
    font-size: 24px;
    cursor: pointer;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.logo img{
    width: 150px;
}
.search-bar {
    display: flex;
}

.search-bar input {
    padding: 5px;
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
    border: none;
    background-color: #C9A980;
}

.search-bar button {
    background-color: #C9A980;
    border: none;
    color: white;
    padding: 5px 10px;
    cursor: pointer;
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
}
.search-bar button img{
    color: #ffffff;
}

.side-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background-color: #33472A;
    padding-top: 20px;
    transition: 0.3s;
}

.side-menu ul {
    list-style: none;
    padding: 0;
}

.side-menu ul li {
    padding: 10px;
}

.side-menu ul li a {
    color: white;
    text-decoration: none;
    text-align: center;
    display: flex;
    gap: 8px;
    justify-content: start;
    margin-left: 16px;
    align-items: center;
}


.side-menu.active {
    left: 0;
}
.side-menu.inactive {
    left: -300px;
}
.roupa{
    width: 75vw;
    height: 75vh;
    bottom: -10px;
    gap: 6rem;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    margin: 0;
}
.roupa img{
    width: 500px;
    height:500px;
}
.roupa .info{
    display: flex;
    flex-direction: column;
    
}
.finalizar a{
    background-color: #33472A;
    color: #ffffff;
    width: 50px;
    height: 50px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    img{
        width: 40px;
        height: 40px;
    }
}