/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

html {
    font-size: 62.5%;
    font-family: sans-serif;
    scroll-behavior: smooth;
}

body {
    font-size: 1.6rem;
    background: #e2a6ba;
    color: #a3334b;
}

/* HEADER */
header {
    display: flex;
    flex-direction: row;
    justify-content: space-between; /* logo left, cart right */
    align-items: center;
    padding: 0 3rem;
    height: 10rem;
    background: #f8d1f8;
}

.logo {
    font-size: 4rem;
    font-weight: 700;
}

.icon-cart img {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    object-fit: cover;
}

.icon-cart img:hover {
    cursor: pointer;
    background-color: #cca0a0;
    transition: 0.5s;
}

/* MAIN */
main {
    margin: 5rem 0;
}

.title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.title img {
    border-radius: 50%;
    width: 5rem;
    height: 5rem;
    object-fit: cover;
}

/* SLIDER */
#trending {
    padding: 2rem 0;
}

.tranding-slider {
    width: 100%;
    padding: 5rem 0;
}

.trending-slide {
    width: 37rem;
    height: 42rem;
    position: relative;
}

.trending-slide .trending-slide-img img {
    width: 37rem;
    height: 42rem;
    border-radius: 2rem;
    object-fit: cover;
}

/* Hide default Swiper side shadows */
.swiper-slide-shadow-left,
.swiper-slide-shadow-right {
    display: none;
}

/* SOCIAL */
.networks {
    text-align: center;
    margin-top: 3rem;
}

.networks i {
    font-size: 2rem;
    margin: 0 0.5rem;
}

.networks i:hover {
    cursor: pointer;
    color: white;
    transition: 0.5s;
}