.deals-container {
    position: relative;
}

.deals-container .arrows_container {
    position: absolute;
    right: 40px; /* Changed from left */
    bottom: calc(50% - 50px);
    margin: 0 !important;
}

.deals-container .arrows_wrapper {
    position: relative;
    width: 40px;
    height: 90px;
    right: 0; /* Changed from left */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.deals-container .swiper-pagination-bullet {
    background: var(--box_bg_2);
}

.deals-container .arrows_wrapper .swiper-button-prev,
.deals-container .arrows_wrapper .swiper-button-next{
    position: relative;
    left: unset;
    right: unset;
    top: unset;
}

.deals-container .arrows_wrapper .swiper-button-next {
    transform: rotate(-90deg); /* Changed from 90deg for LTR */
    color: var(--box_bg_2);
}

.deals-container .arrows_wrapper .swiper-button-prev {
    transform: rotate(-90deg); /* Changed from 90deg for LTR */
    color: var(--box_bg_2);
}

.deals-container:before {
    content: '';
    display: block;
    width: 160px;
    height: 380px;
    border-radius: 80px 0 0 80px; /* Changed border-radius for LTR */
    top: calc(50% - 200px);
    right: 0; /* Changed from left */
    position: absolute;
    background-color: var(--primary_1);
    background-blend-mode: screen;
    background-size: 210px;
    z-index: 10;
}

.deals-template-2 {
    position: relative;
    padding: 0 0 2rem !important;
}

.deals-template-2 .special_text {
    font-size: 26px;
    color: var(--text-color-dark-2);
}

.deals-template-2 .swiper-pagination {
    position: relative;
    width: 190px;
    float: left; /* Changed from right */
    left: 72px; /* Changed from right */
    bottom: 50px;
}

.deals-template-2 .color-option_items {
    margin-bottom: var(--margin-2);
}

.deals-template-2 .products-list .card_image_wrapper {
    position: relative;
    margin-bottom: 4rem;
}

.deals-template-2 .products-list {
    border-radius: var(--border-radius_1);
}

.deals-template-2 .swiper-wrapper {

}

.deals-template-2 .deals_heading {

}

.deals-template-2 .product-layout:nth-child(even) .label-sale {
    left: 0; /* Changed from right */
}

.deals-template-2 .products-list .product-layout:after {
    display: none;
}

.deals-template-2 .price-details,
.deals-template-2 .caption {
    margin: 1px;
}

.deals-template-2 .item-timer {
    background-color: unset;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 280px;
}

.deals-template-2 .item-time-w {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 12px;
    position: relative;
}

.deals-template-2 .item-time-w svg {
    width: 16rem;
    height: 16rem;
    position: absolute;
    top: -10rem;
    color: var(--box_bg_2);
    opacity: 0.2;
}

.deals-template-2 .time-item:last-child::after{
    content: '';
}

.deals-template-2 .item-timer .time-item {
    float: left;
    font-size: 40px;
    font-weight: bold;
    line-height: 60px;
    text-align: center;
    width: 80px;
    height: 60px;
    margin: 6px;
    border-radius: 10px;
    padding: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 992px) {
    .deals-template-2:before{
        content: '';
        display: block;
        width: 36%;
        height: 100%;
        position: absolute;
        background-color: var(--primary_1);
        background-blend-mode: screen;
        background-size: 210px;
    }

    .deals-template-2:before {
        left: 10px; /* Changed from right */
        border-radius: 0 35% 20% 20%; /* Changed border-radius for LTR */
    }

    .deals-template-2 .time-item {
        color: var(--text-color-dark-2) !important;
    }

    .deals-template-2 .product-layout:nth-child(even) {
        flex-direction: row; /* Changed from row-reverse */
        padding-left: var(--margin-2); /* Changed from padding-right */
        border-left: 4px solid var(--border_color_1); /* Changed from border-right */
    }

    .deals-template-2 .product-layout:nth-child(odd) {
        padding-right: var(--margin-2); /* Changed from padding-left */
        border: 0;
    }
}

@media (max-width: 991px) {
    .deals-template-2:before {
        content: ':';
        position: absolute;
        width: 100%;
        height: 50%;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: var(--primary_1);
        background-image: url(/image/design/patterns/bg3.png);
        background-blend-mode: screen;
        background-size: 210px;
    }
    .deals-template-2 .item-time-w svg {
        opacity: unset !important;
        position: unset !important;
        top: unset !important;
        width: 30px !important;
        height: 30px !important;

    }
    .deals-template-2 .item-time-w {

        flex-direction: row;
        margin-top: 0;
    }
    .deals-template-2 .product-layout:nth-child(odd) {
        padding-right: unset; /* Changed from padding-left */
        border-right: unset; /* Changed from border-left */
    }
    .deals-template-2 .item-timer .time-item {
        font-weight: bold;
    }
}