.sale-block{
    display: flex;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    height: 80vh;
    box-sizing: border-box;
    overflow: hidden;
    background-color: #e2e0d7;
}

.left-img img{
    width: 100%;
    height: 100%;
    display: block;
    vertical-align: top;
}

.left-img{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    padding: 20px;
    width: 50%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("/assets/index/img/sale-left-img.webp");
}

.sale-left-info{
    background-color: #ffffff;
}

.sale-left-info.mobile-view{
    display: none;
}

.sale-rating-info-left{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-size: 18px;
}

.sale-rating-left{
    font-weight: bold;
    color: #C18C5D;
}

.sale-rating-text-left{
    font-size: 30px;
    font-weight: bold;
}

.right-information{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50%;
    padding: 0 40px;
}

.rating-info{
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    font-size: 18px;
}

.rating{
    font-weight: bold;
}

.rating-text{
    margin-left: 10px;
}

.right-more-info{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.black-week{
    color: #ff0000;
    font-size: 52px;
    line-height: 1;
}

.black-week-more{
    color: #111213;
    font-size: 50px;
    line-height: 1;
}

.black-week-info{
    margin: 20px 0 40px;
    text-align: center;
    font-size: 20px;
    font-weight: normal;
}

.right-info-button{
    display: flex;
    flex-direction: row;
    text-align: center;
    align-items: center;
    justify-content: center;
    height: 45px;
    width: 100%;
    color: white;
    background-color: #E16203;
    border: 1px solid #E16203;
    transition: all 0.3s ease;
    font-size: 15px;
    font-weight: bold;
    border-radius: 5px;
}

.right-info-button img{
    margin-right: 10px;
    transition: filter 0.3s ease;
}

.right-info-button:hover {
    background-color: white;
    color: black;
    border-color: black;
    cursor: pointer;
}

.right-info-button:hover img {
    filter: brightness(0);
}

.black-week-title{
    margin: 4px 0 0;
    font-size: 18px;
}

.header-mob{
    display: none;
}

@media (max-width: 1024px){
    .sale-block{
        display: flex;
        flex-direction: column;
        height: auto;
        padding: 20px 0;
    }

    .left-img{
        display: none;
    }

    .right-information{
        width: 100%;
    }

    .rating-info{
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        font-size: 12px;
        margin-top: 10px;
    }

    .black-week{
        margin-top: 10px;
        font-size: 18px;
    }

    .black-week-more{
        margin-top: 10px;
        font-size: 18px;
    }

    .black-week-title{
        font-size: 12px;
        text-align: center;
    }

    .sale-left-info.mobile-view {
        margin-top: -50px;
        background-color: #ffffff;
        position: relative;
        z-index: 2;
        padding: 25px 20px;
        width: 92%;
        margin-left: auto;
        margin-right: auto;
        box-shadow: 0 -4px 15px rgba(0,0,0,0.05);
        display: flex;
        flex-direction: column;
    }

    .sale-rating-info-left.mobile-view {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 15px;
    }

    .sale-rating-text-left.mobile-view {
        font-size: 20px;
        text-align: center;
        font-weight: 700;
        margin: 5px 0 0 0;
    }

    .sale-span.mobile-view {
        font-size: 14px;
        font-style: italic;
        text-align: center;
        line-height: 1.5;
    }

    .sale-italic.mobile-view{
        text-align: center;
    }

    .header-mob.mobile-view {
        display: block;
        width: 80%;
        max-width: 350px;
        height: auto;
        margin: -60px auto -10px auto;
    }
}