* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    font-family: "Outfit", sans-serif;
    color: #000;
    background-color: #fff;
}

.text--h1 {
    font-size: 2rem;
    font-weight: 600;
}

.text--body {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
}

.text--body-bd {
    font-size: 1rem;
    font-weight: 600;
}

.text--sm {
    font-size: 0.875rem;
    font-weight: 500;
}

.text--gray {
    opacity: 0.5;
}

.text--white {
    color: #FFF;
}

.sneakers {
    display: flex;
    margin: 36px;
    gap: 52px;
}

.sneakers__img {
    border-radius: 5px;
    width: 472px;        
    height: auto;

}

.sneakers__page {
    max-width: 685px;
}

.sneakers__header {
    display: flex;
    white-space: pre;
}

.sneakers__header, 
.sneakers__description, 
.sneakers__highlights-list, 
.sneakers__info {
    margin-bottom: 40px;
}


.sneakers__title {
    max-width: 400px;
    margin-bottom: 24px;
}

.sneakers__highlights-item {
    margin-top: 12px;
    list-style-position: inside;
}

.sneakers__info {
    max-width: 400px;
    padding: 15px 24px;
    display: flex;
    justify-content: space-between;
    background-color: #F3F4F6;
    border-radius: 10px;
}

.sneakers__color, .sneakers__size {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sneakers_btns {
    max-width: 400px;
    display: flex;
    gap: 20px;
}

.sneakers__cart, .sneakers__wishlist {
    padding: 8px 32px;
    border-radius: 5px;
}

.sneakers__cart {
    background-color: #652CD1;
    border-style: none;
}

.sneakers__wishlist {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid #D2D5DA;
    background-color: #fff;
}

@media (max-width: 640px) {
    .sneakers {
        flex-direction: column;
        margin: 12px;
        gap: 26px;
    }
    .sneakers__header, 
    .sneakers__description, 
    .sneakers__highlights-list, 
    .sneakers__info {
        margin-bottom: 20px;
    }
    .sneakers__info {
        max-width: none;
        justify-content: flex-start;
        align-items: center;
        gap: 80px;
    }
    .sneakers_btns {
        max-width: none;   
        flex: 1 1 0; 
    }
    button {
        width: 100%;
    }
    .sneakers__price {
        font-size: 1rem;
    }
    .sneakers__img {
        width: 100%;
    }
    .sneakers__cart, .sneakers__wishlist {
        padding: 8px 10px;
    }
}