main {
    margin-bottom: 100px;
}
.product {
    display: flex;
    margin-bottom: 100px;
}
.product .left-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    width: 100%;
    max-width: 540px;
    margin-right: 75px;
}
.product .left-side .main-img {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 540px;
    width: 100%;
    height: 540px;
    border: 1px solid #F0F0F0;
    border-radius: 30px;
    position: relative;
    margin-bottom: 20px;
    background: #343434;
}
.product .left-side .main-img .arrow-box {
    display: flex;
    align-items: center;
    justify-content: center;
}
.product .left-side .main-img .arrow-box .left,
.product .left-side .main-img .arrow-box .right {
    position: absolute;
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    transition: all .3s;
}
.product .left-side .main-img .arrow-box .left:hover,
.product .left-side .main-img .arrow-box .right:hover {
    background: var(--text-white);
}
.product .left-side .main-img .arrow-box .left {
    transform: rotate(-180deg);
    left: 58px;
}
.product .left-side .main-img .arrow-box .right {
    right: 58px;
}
.product .left-side .main-img .arrow-box .right::before,
.product .left-side .main-img .arrow-box .left::before {
    content: '\e912';
    font-family: 'icon';
    font-size: 14px;
}

.product .left-side .main-img img:not(.limited) {
    /* max-width: 272px; */
    max-width: 390px;
    /* width: 100%; */
    max-height: 430px;
    height: 100%;
    object-fit: cover;
}
.product .left-side .main-img .novelty-box {
    position: absolute;
    top: 60px;
    left: 60px;
}
.product .left-side .main-img .novelty-box * {
    font-family: 'DelaGothicOne', sans-serif;
    color: var(--white);
    font-size: 26px;
    line-height: 26px;
}
.product .left-side .main-img .novelty-box div {
    background: #00CC9B;
    padding: 5px 10px;
    width: fit-content;
}
.product .left-side .main-img .discount-count {
    font-family: 'DelaGothicOne', sans-serif;
    font-size: 72px;
    line-height: 72px;
    background: #1F1F1F;
    transform: rotate(15deg);
    color: var(--text-white);
    padding: 25px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(15deg);
}
.product .left-side .main-img.limited-edition {
    background: #151515;
}
.product .left-side .main-img .limited {
    position: absolute;
    right: 50px;
    top: 50px;
    max-width: 107px;
}
.product .left-side .mini-img {
    display: grid;
    grid-template-columns: repeat(auto-fill, 120px);
    grid-gap: 20px;
    /* max-width: 120px;
    width: 20%; */
}
.product .left-side .mini-img .item {
    position: relative;
    cursor: pointer;
    border: 1px solid #F0F0F0;
    border-radius: 25px;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #343434;
}
.product .left-side .mini-img .item.selected {
    border: 1px solid var(--accent);
}
.product .left-side .mini-img .item img {
    max-width: 70px;
    width: 100%;
    object-fit: cover;
}
.product .left-side .mini-img .item::after {
    content: '';
    display: block;
    margin-top: 100%;
}
.product .right-side {
    width: 100%;
}
.product .right-side .product-title,
.similar > h2 {
   font-family: 'DelaGothicOne', sans-serif;
   font-size: 48px;
   line-height: 62px;
   margin-bottom: 30px;
   max-width: 400px;
   width: 100%;
}
.product .right-side .color {
    display: flex;
    margin-bottom: 30px;
}
.product .right-side .color,
.product .right-side .sizes p {
    font-family: 'RobotoCondensed', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    line-height: 20px;
    margin-bottom: 15px;
}
.product .right-side .sizes .items {
    display: grid;
    grid-template-columns: repeat(auto-fill, 34px);
    grid-template-rows: repeat(auto-fill, 34px);
    grid-gap: 10px;
    margin-bottom: 15px;
}
.product .right-side .sizes .items .input input {
    display: none;
}
.product .right-side .sizes .items .input label {
    font-family: 'DelaGothicOne', sans-serif;
    font-size: 12px;
    line-height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 8px;
    cursor: pointer;
}
.product .right-side .sizes .items .input input:checked + label {
    background: var(--accent);
    color: var(--text-white);
}
.product .right-side .sizes .items .input input:disabled + label {
    color: #ddd;
    pointer-events: none;
}
.product .right-side .sizes .items div.selected {
    color: var(--text-white);
    background: var(--accent);
}
.product .right-side .sizes span {
    font-family: 'RobotoCondensed', sans-serif;
    font-size: 16px;
    line-height: 20px;
    color: #ABABAB;
    text-decoration: underline;
    cursor: pointer;
    margin-bottom: 40px;
    display: flex;
}
/* .product .right-side .sizes .sizes-popup .mobile-table {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
} */
.product .right-side .sizes .sizes-popup .window-body {
    padding: 35px 15px;
    display: block;
}
.product .right-side .sizes .sizes-popup .window-body .window-title {
    margin: 0 auto 30px;
}
.product .right-side .sizes .sizes-popup .window-body .window-content {
   overflow-x: auto;
}
.product .right-side .sizes .sizes-popup table {
    text-decoration: none;
    border-collapse:collapse;
    width: 100%;
    max-width: 100%;
    text-align:center;
}
.product .right-side .sizes .sizes-popup table th {
    font-weight:500;
    font-size:17px;
    color:#ffffff;
    background: #343434;
}
.product .right-side .sizes .sizes-popup table th,
.product .right-side .sizes .sizes-popup table td {
    white-space:nowrap;
    padding:15px 5px;
    line-height:15px;
    vertical-align: middle;
    border: 1px solid #000000;
}
.product .right-side .price-box {
    display: flex;
    margin-bottom: 40px;
}
.product .right-side .price-box .price,
.product .right-side .price-box .full-price {
    font-family: 'DelaGothicOne', sans-serif;
    font-size: 30px;
    line-height: 30px;
}
.product .right-side .price-box .full-price {
    color: #D0D0D0;
    margin-left: 20px;
    text-decoration: line-through;
}
.product .right-side .btn-box {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
}
.product .right-side .btn-box .btn {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    color: var(--text-white);
    /* background: var(--main); */
    background: var(--black);
    font-size: 14px;
    line-height: 14px;
    will-change: transform;
}
.product .right-side .btn:hover {
    background: var(--white);
    /* border-color: var(--black); */
    color: var(--main);
}
.product .right-side .col {
    display: flex;
    align-items: center;
    justify-content: space-around;
    border: 1px solid #ebebeb;
    border-radius: 10px;
    width: 100%;
    max-width: 123px;
    height: 58px;
    margin-right: 20px;
}
.product .right-side .col .minus,
.product .right-side .col .plus {
    font-family: 'DelaGothicOne', sans-serif;
    font-size: 20px;
    line-height: 20px;
    color: var(--main);
    cursor: pointer;
    transition: all .3s;
}
.product .right-side .col .minus:hover,
.product .right-side .col .plus:hover {
    color: var(--accent);
}
.product .right-side .col .sum {
    font-family: 'DelaGothicOne', sans-serif;
    font-size: 20px;
    line-height: 20px;
}
.product .right-side .description {
    border-top: 1px solid #F0F0F0;
    padding-top: 40px;
}
.product .right-side .description h2 {
    font-family: 'DelaGothicOne', sans-serif;
    font-size: 24px;
    line-height: 29px;
    margin-bottom: 20px;
}
.product .right-side .description p {
    font-family: 'RobotoCondensed', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 29px;
    color: var(--main);
}
.similar {
    margin-bottom: 100px;
}
.similar > h2 {
    line-height: 36px;
    margin-bottom: 60px;
    max-width: unset;
}
.similar .goods {
    display: grid;
    grid-template-columns: repeat(3, minmax(300px, 430px));
    grid-gap: 20px;
}
.similar .goods > .item {
    border: 1px solid #F0F0F0;
    border-radius: 30px;
}
.similar .goods .item .img {
    display: flex;
    /* width: 430px; */
    height: 430px;
    justify-content: center;
    align-items: flex-start;
    padding: 50px 0;
    margin-bottom: 10px;
    position: relative;
}
.similar .goods .item .img.novelty .novelty-box {
    position: absolute;
    left: 60px;
    top: 60px;
}
.similar .goods .item .img.novelty .novelty-box * {
    font-family: 'DelaGothicOne', sans-serif;
    color: var(--white);
    font-size: 26px;
    line-height: 26px;
}
.similar .goods .item .img.novelty .novelty-box div {
    background: #00CC9B;
    padding: 5px 10px;
    width: fit-content;
}
.similar .goods .item .img .discount-count {
    font-family: 'DelaGothicOne', sans-serif;
    font-size: 72px;
    line-height: 72px;
    background: #1F1F1F;
    transform: rotate(15deg);
    color: var(--text-white);
    padding: 25px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(15deg);
}
.similar .goods .item .img > img:not(.limited) {
    max-width: 340px;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: flex;
    align-self: center;
}
.similar .goods .item.limited-edition {
    border: 2px solid #B37C41;
}
.similar .goods .item.black {
    background: #151515;
}
.similar .goods .item.limited-edition.black {
    border: none;
}
.similar .goods .item.black * {
    color: var(--text-white);
}
.similar .goods .item.limited-edition .img .limited,
.similar .goods .item.black .img .limited {
    position: absolute;
    right: 50px;
    top: 50px;
    max-width: 107px;
}
.similar .goods .item .content {
    padding: 0 0 55px 60px;
}
.similar .goods .item .category-name {
    margin-bottom: 20px;
}
.similar .goods .item h2 {
    font-family: 'DelaGothicOne', sans-serif;
    font-size: 24px;
    line-height: 29px;
    margin-bottom: 20px;
    white-space: pre-line;
}
.similar .goods .item .sizes {
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fill, 12px);
    grid-gap: 20px;
}
.similar .goods .item .sizes div {
    font-family: 'DelaGothicOne', sans-serif;
    font-size: 12px;
    line-height: 12px;
}
.similar .goods .item .sizes div,
.similar .goods .item.limited-edition .sizes div {
    color: var(--white);
}
.similar .goods .item .sizes div.none,
.similar .goods .item.limited-edition .sizes div.none {
    color: #7B7B7B;
}
.similar .goods .item .price,
.similar .goods .item .price .full-price {
    font-family: 'DelaGothicOne', sans-serif;
    font-size: 24px;
    line-height: 24px;
}
.similar .goods .item .price .full-price {
    color: #D0D0D0;
    margin-left: 15px;
    text-decoration: line-through;
}
@media screen and (max-width: 1197px) {
    .similar .goods {
        grid-template-columns: repeat(2, minmax(250px, 430px));
    }
}
@media screen and (max-width: 785px) {
    .product {
        flex-direction: column;
        margin-bottom: 40px;
        padding-bottom: 60px;
        border-bottom: 1px solid #e9e9e9;
    }
    .product .left-side {
        flex-direction: row;
        max-width: 100%;
        justify-content: space-between;
        height: 280px;
        overflow-x: scroll;
        margin-right: 0;
        column-gap: 10px;
        margin-bottom: 20px;
    }
    .product .left-side .main-img {
        margin-bottom: 0;
        height: 260px;
    }
    .product .left-side .main-img img,
    .product .left-side .mini-img .item img {
        max-width: 125px;
    }
    .product .left-side .mini-img {
        display: flex;
        column-gap: 10px;
        row-gap: unset;
        width: 100%;
        height: 260px;
    }
    .product .left-side .main-img,
    .product .left-side .mini-img .item {
        min-width: 260px;
        width: 100%;
    }
    .product .left-side .main-img .arrow-box {
        display: none;
    }
    .product .right-side .product-title {
        font-size: 30px;
        line-height: 36px;
        margin-bottom: 20px;
        max-width: 260px;
    }
    .product .right-side .color,
    .product .right-side .sizes p,
    .product .right-side .sizes .items {
        margin-bottom: 20px;
    }
    .product .right-side .sizes span {
        margin-bottom: 30px;
    }
    .product .right-side .price-box {
        flex-direction: column;
    }
    .product .right-side .price-box .price,
    .product .right-side .price-box .full-price {
        font-size: 24px;
        line-height: 24px;
    }
    .product .right-side .price-box .price {
        margin-bottom: 10px;
    }
    .product .right-side .price-box .full-price {
        margin-left: 0;
    }
    .product .right-side .btn-box {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 40px;
    }
    .product .right-side .btn-box .col {
        margin-bottom: 20px;
    }
    .product .right-side .description {
        padding-top: 0;
        border-top: unset;
    }
    .product .right-side .description h2 {
        font-size: 20px;
        line-height: 24px;
    }
    .product .right-side .description p {
        font-size: 14px;
        line-height: 22px;
    }
    .similar > h2 {
        font-size: 20px;
        line-height: 22px;
        margin-bottom: 30px;
    }
}
@media screen and (max-width: 595px) {
    .similar .goods .item .img .discount-count {
        font-size: 24px;
        line-height: 24px;
        padding: 8px 15px;
        top: 50%;
        left: 20px;
        transform: rotate(9.56deg);
        background: var(--black);
    }
    .similar .goods {
        grid-template-columns: repeat(2, minmax(140px, 260px));
        grid-gap: 10px;
    }
    .similar .goods > .item {
        border-radius: 14px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .similar .goods .item .img {
        width: 140px;
        height: 140px;
        padding: 10px 0 0;
        display: block;
        margin-bottom: 20px;
    }
    .similar .goods .item .img.novelty .novelty-box {
        top: 20px;
        left: 20px;
    }
    .similar .goods .item .img.novelty .novelty-box * {
        font-size: 12px;
        line-height: 14px;
        line-height: 4px;
    }
    .similar .goods .item .img.novelty .novelty-box div {
        padding: 5px;
    }
    .similar .goods .item .img > img:not(.limited) {
        max-width: 128px;
        height: 128px;
        display: block;
        margin: 0 auto;
    }
    .similar .goods .item.limited-edition .img .limited,
    .similar .goods .item.black .img .limited {
        max-width: 50px;
        top: 20px;
        left: 20px;
    }
    .similar .goods .item .img.discount .discount-count {
        font-size: 12px;
        line-height: 12px;
        padding: 5px;
        top: 20px;
        left: 20px;
        transform: rotate(9.56deg);
        background: var(--accent);
    }
    .similar .goods .item .content {
        padding: 0 10px 20px 20px;
    }
    .similar .goods .item .category-name {
        font-family: 'RobotoCondensed', sans-serif;
        font-size: 12px;
        line-height: 12px;
        margin-bottom: 5px;
    }
    .similar .goods .item h2,
    .similar .goods .item .price,
    .similar .goods .item .price .full-price {
        font-size: 12px;
        line-height: 14px;
    }
    .similar .goods .item h2 {
        margin-bottom: 10px;
    }
    .similar .goods .item .sizes {
        margin-bottom: 5px;
        grid-gap: 10px;
    }
    .similar .goods .item .price {
        display: flex;
        flex-direction: column;
    }
    .similar .goods .item .price .full-price {
        margin-left: 0;
        margin-top: 2px;
    }
}
@media screen and (max-width: 340px) {
    .similar .goods {
        grid-template-columns: repeat(2, 138px);
    }
}