#product {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

#product > .category {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10rem;
}

#product > .category > .left {
    font-weight: bold;
    text-transform: uppercase;
}

#product > .category > .left > .title {
    font-size: 3rem;
    line-height: 1;
}

#product > .category > .left > .black {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    margin-top: 5rem;
}

#product > .category > .left > .black > img {
    margin-right: 10px;
}

#product > .category > .right {
    display: none;
    margin-right: 14rem;
}

#product > .category > .right > .title {
    margin-bottom: 1rem;
    font-weight: bold;
}

#product > .category > .right > .desc {
    margin-bottom: 0.5rem;
    line-height: 2;
}

#product > .category > .right > .desc:empty,
#product > .category > .right > .desc:last-child {
    margin-bottom: 0;
}

#product > .info > .title {
    font-weight: bold;
    font-size: 2rem;
    margin-top: 4rem;
    margin-bottom: 2rem;
}

#product > .info > .desc > .left > .sku {
    font-size: 1.5rem;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 1rem;
}

#product > .info > .desc .swiper-slide > img {
    width: 100%;
    height: 249px;
}

@media (min-width: 1024px) {

    #product > .category > .left > .title {
        font-size: 4rem;
    }

    #product > .category > .right {
        display: unset;
    }

    #product > .info > .title {
        font-size: 3rem;
    }

    #product > .info > .desc > .left > .sku {
        font-size: 2rem;
        margin-bottom: 2rem;
    }


    #product > .info > .desc .swiper-slide > img {
        height: 489px;
    }

    #product > .info > .desc {
        display: flex;
    }

    #product > .info > .desc > .right {
        width: 55%;
        margin-left: 5rem;
    }
}