.prod_listing_hero_banner {
    width: 100%;
    cursor: pointer;
}

.prod_listing_container {
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.prod_listing_card.prod_listing_card_banner {
    grid-column: 1 / -1;
    cursor: pointer;
}

.prod_listing_card_banner img {
    width: 100%;
    object-fit: cover;
}

.prod_listing_topic {
    width: 100%;
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
    margin-top: 32px;
    text-align: center;
    text-transform: uppercase;
}

.prod_list_details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 50px;
    gap: 24px;
    position: sticky;
    top: 130px;
    left: 0;
    z-index: 6;
    background-color: #ffffff;
    transition: top 0.3s ease;
}

#siteHeader:not(:has(.flash_sale_bar))~.prod_listing_container .prod_list_details {
    top: 94px;
}

#siteHeader.pageScrolled~.prod_listing_container .prod_list_details {
    top: 34px;
}

.bread_crumb {
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
}

.bread_crumb .bread_crumb_link {
    color: #453a3a;
}

.bread_crumb .bread_crumb_link::after {
    content: "/";
    color: #000000;
    margin: 0px 5px;
}

.prod_listing_btn_wrap {
    display: flex;
    align-items: center;
    gap: 20px;
}

.prod_listing_btn_wrap svg {
    width: 20px;
    aspect-ratio: 1;
    cursor: pointer;
}

.filter_menu_wrpr,
.prod_listing_toggle_btn {
    display: none;
    position: relative;
}

.two_grid,
.four_grid {
    display: block;
}

.prod_listing_btn_wrap .prod_listing_toggle_btn::after {
    content: '';
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    width: 100%;
    height: 2px;
    background-color: black;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.prod_listing_btn_wrap .prod_listing_toggle_btn.active::after {
    transform: scaleX(1);
}

.product_listing_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;
    transition: grid-template-columns 0.3s ease;
    contain: layout paint;
    gap: 14px;
    padding: 0px 16px;
}

body.bl .product_listing_grid {
    gap: 8px 0px;
    padding: 0px;
}

.product_columns_1 {
    grid-template-columns: 1fr;
}

.product_columns_2 {
    grid-template-columns: repeat(2, 1fr);
    width: 1200px;
    margin: 0 auto;
}

.prod_listing_filter_wrap {
    overflow-y: auto;
    scrollbar-width: thin;
    flex: 1;
}

.prod_listing_filter .popup_containers_wrap,
.prod_listing_sort .popup_containers_wrap {
    position: fixed;
    top: 0;
    right: 0;
    width: 650px;
    height: 100vh;
    z-index: 112;
    display: flex;
    flex-direction: column;
    background-color: #fff;
}

.prod_listing_filter .popup_containers_heading,
.prod_listing_sort .popup_containers_heading {
    flex: 1 1 auto;
    text-align: center;
}

.prod_listing_filter .popup_containers_footer {
    padding: 10px 13px;
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    border-top: 1px solid #f4f4f4;
    position: relative;
}

.prod_listing_filter_content,
.prod_listing_sort_wrap {
    padding: 24px;
}

.prod_listing_filter_content_inner {
    list-style: none;
    padding: 20px 0px 18px;
    border-bottom: 1px solid #D9D9D9;
}

.prod_listing_filter_content_inner_text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.prod_listing_filter_content_inner:first-child {
    padding-top: 0px;
}

.prod_listing_filter_content_inner_dropdown {
    max-height: 0;
    opacity: 0;
    margin-top: 18px;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease;
}

.prod_listing_filter_content_inner_text_span {
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    text-transform: uppercase;
}

.prod_listing_filter_content_inner_dropdown.active {
    max-height: 100%;
    opacity: 1;
}

.prod_listing_filter_content_inner_dropdown label {
    display: flex;
    align-items: center;
    font-size: 18px;
    margin-bottom: 24px;
    gap: 12px;
    cursor: pointer;
}

.prod_listing_filter_content_inner_dropdown label:last-child {
    margin-bottom: 0px;
}

.prod_listing_filter_content_inner_dropdown label input {
    width: 20px;
    aspect-ratio: 1;
    border-radius: 0;
    cursor: pointer;
    accent-color: #333333;
}

.prod_listing_filter_content_inner_text_icon {
    transition: transform 0.3s ease;
    transform: rotate(0deg);
}

.prod_listing_filter_content_inner_text_icon.active {
    transform: rotate(180deg);
}

.popup_containers_footerbtn_cancel,
.popup_containers_footerbtn_apply {
    flex: 1;
    padding: 15px 0;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
}

.filter_sort_list_items {
    list-style: none;
    padding: 18px;
    font-weight: 300;
    font-size: 18px;
    cursor: pointer;
    line-height: 1;
    text-transform: uppercase;
}

.filter_sort_list_items:hover {
    background-color: #333333;
    color: #ffffff;
}

.filter_sort_list_items.active {
    background-color: #e5e5e5;
    color: #000;
}

.prod_listing_card {
    width: 100%;
}

.prod_listing_img_wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 0.6;
}

.product_columns_2 .prod_listing_img_wrap {
    aspect-ratio: 0.75;
}

.prod_listing_img:hover img {
    transform: scale(1.05);
}

.prod_img_swiper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.prod_img_swiper .swiper-wrapper {
    position: absolute;
}

.prod_listing_img picture {
    display: block;
    width: 100%;
    height: 100%;
}

.prod_listing_img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    will-change: opacity, transform;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.sale_tag {
    position: absolute;
    top: 0;
    left: 0;
    padding: 8px 4px;
    background: #000;
    color: #fff;
    font-size: 14px;
    z-index: 111;
}

.product_wishlist_icon {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 20px;
    width: 28px;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    z-index: 11;
    transition: color 0.25s ease, transform 0.25s ease;
}

.product_wishlist_icon.is-liked {
    color: #B12029;
}

.product_wishlist_icon svg path {
    fill: transparent;
    transition: fill 0.25s ease;
}

.product_wishlist_icon.is-liked svg path {
    fill: currentColor;
    stroke: none;
}

.product_wishlist_icon.is-animating {
    animation: like-pop 0.45s ease-out;
}

@keyframes like-pop {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }
}

.prod_swatch_wrap {
    position: absolute;
    right: 24px;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    z-index: 3;
    overflow: visible;
}

body.bl .prod_swatch_color {
    border-radius: 0px;
}

.prod_swatch_color {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    box-shadow: 0 0 4px rgba(0, 0, 0, .3);
    background: var(--swatch-color);
    cursor: pointer;
    position: relative;
    user-select: none;
    border: 1px solid #000000;
    -webkit-tap-highlight-color: transparent;
}

.prod_swatch_color::after {
    content: var(--swatch-name);
    position: absolute;
    top: 50%;
    right: 120%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    font-size: 10px;
    padding: 4px 8px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 2;
}

.prod_swatch_color:hover::after {
    opacity: 1;
}

.prod_listing_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 10px;
    padding: 10px;
    transition: opacity 0.25s ease;
    flex-wrap: wrap;
}

.prod_listing_details {
    display: contents;
}

.product_list_name {
    flex: 1;
    order: 1;
    min-width: 0;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-transform: capitalize;
}

.product_price_row {
    flex: 1 1 100%;
    order: 3;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    margin-top: 6px;
}

.product_actual_price {
    color: #777777;
}

.product_discounted_percentage {
    color: #B12029;
}

.prod_add_to_cart {
    flex: 0 0 auto;
    order: 2;
    width: 28px;
    aspect-ratio: 1;
    cursor: pointer;
}

.prod_add_to_cart svg {
    width: 100%;
    height: 100%;
}

.is-fading {
    opacity: 0;
}

.prod_img_arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #fff;
    border: none;
    cursor: pointer;
    z-index: 5;
    opacity: 0;
    transition: opacity 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.prod_listing_img_wrap:hover .prod_img_prev,
.prod_listing_img_wrap:hover .prod_img_next {
    opacity: 0.8;
    pointer-events: all;
    display: block;
}

.prod_img_prev {
    left: 10px;
    transform: translateY(-50%) rotate(180deg);
}

.prod_img_next {
    right: 10px;
}

.prod_listing_hurry {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px 0;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    background-color: #26262680;
}

.prod_filter_value__checkboxs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    overflow: visible;
    position: relative;
    z-index: 1;
}

.prod_filter_value__boxs {
    width: 34px;
    height: 34px;
    cursor: pointer;
    position: relative;
    border: 2px solid #ddd;
    transition: transform 0.2s ease, border 0.2s ease;
    overflow: visible;
}

.prod_filter_value__boxs::after {
    content: attr(data-label);
    position: absolute;
    bottom: 100%;
    left: 50%;
    height: auto;
    line-height: 1.5;
    transform: translateX(-50%);
    background: #333;
    color: white;
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 12px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease-in-out;
    white-space: nowrap;
    z-index: 1000;
}

.prod_filter_value__boxs::before {
    content: "";
    position: absolute;
    bottom: 60%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
    z-index: 10;
}

.prod_listing_filter_content_inner[data-filter="color"] .prod_filter_value__boxs:hover::after,
.prod_listing_filter_content_inner[data-filter="color"] .prod_filter_value__boxs:hover::before {
    opacity: 1;
}

.prod_filter_value__boxs:hover {
    transform: scale(1.05);
    border-color: #333;
}

.prod_filter_value__boxs input[type="checkbox"] {
    display: none;
}

.prod_filter_value__boxs .checkmark {
    position: absolute;
    font-size: 22px;
    color: white;
    top: 30%;
    left: 25%;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

.prod_filter_value__boxs .checkmark img {
    filter: drop-shadow(0px 0px 4px black)
}

.prod_listing_filter_content_inner[data-filter="color"] .prod_filter_value__boxs input[type="checkbox"]:checked+.checkmark {
    opacity: 1;
}

.prod_listing_filter_content_inner[data-filter="color"] .prod_filter_value__checkboxs.prod_listing_filter_content_inner_dropdown.active {
    display: flex !important;
    gap: 10px;
    flex-wrap: wrap;
}

.prod_filter_range_wrap {
    width: 90%;
    margin: 0px auto 30px;
    padding-top: 4px;
}

.prod_filter_range_wrap {
    width: 90%;
    margin: 10px auto 30px;
    padding-top: 4px;
}

.prod_listing_filter_content_inner_dropdown2 .prod_filter_range_wrap {
    width: 100%;
    margin-top: 40px;
}

.range-input {
    position: relative;
}

.range-input input {
    position: absolute;
    width: 100%;
    height: 4px;
    top: -5px;
    right: 1%;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.range-min {
    margin-right: 10px;
}

input[type="range"]::-moz-range-thumb {
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ffffff;
    pointer-events: auto;
    border: 1px solid #333333;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    cursor: pointer;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ffffff;
    pointer-events: auto;
    border: 1px solid #333333;
}

.f_slider {
    height: 4px;
    position: relative;
    background: #ddd;
    border-radius: 2px;
}

.f_slider .f_progress,
.f_slider .m_f_progress {
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    background: #333333;
}

.price-input {
    display: flex;
    align-items: center;
    gap: 10px;
}

.f_field {
    display: flex;
    flex: 0 1 130px;
    color: #000000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    border-radius: 50px;
    overflow: hidden;
}

.prod_listing_filter_content_inner_dropdown .price-input {
    flex-direction: row;
}

.prod_listing_filter_content_inner_dropdown .f_field {
    flex: unset;
}

.rps__sign {
    flex: 0 0 36px;
    aspect-ratio: 1;
    font-size: 20px;
    font-family: system-ui;
    display: grid;
    place-items: center;
    background-color: #efefef;
}

.price-input input {
    width: 100%;
    padding-left: 5px;
    font: inherit;
    border: none;
    outline: none;
    background: #f4f4f4;
}

.prod_filter_value_name {
    color: #000000cc;
    font-size: 18px;
    font-weight: 300;
    line-height: 1;
    text-transform: capitalize;
}

#Multi_colorr {
    background: conic-gradient(#FF6B6B 0% 20%, #FFCD56 20% 40%, #6BE4A9 40% 60%, #6BB7FF 60% 80%, #B28BFF 80% 100%);
}

@media (max-width: 1600px) {
    .product_columns_2 {
        width: 1080px;
    }
}

@media (max-width: 1439px) {

    .prod_swatch_wrap {
        right: 16px;
        bottom: 16px;
    }

    .prod_list_details {
        padding: 16px 24px;
        top: 112px;
    }

    #siteHeader:not(:has(.flash_sale_bar))~.prod_listing_container .prod_list_details {
        top: 82px;
    }

    #siteHeader.pageScrolled~.prod_listing_container .prod_list_details {
        top: 30px;
    }

    .product_listing_grid {
        gap: 8px;
        padding: 8px;
    }

    .prod_listing_content {
        column-gap: 6px;
        padding: 6px;
    }

    .product_price_row {
        font-size: 12px;
        gap: 4px;
        margin-top: 4px;
    }

    .prod_add_to_cart {
        width: 20px;
    }
}

@media screen and (max-width: 767px) {
    .prod_listing_topic {
        margin-top: 16px;
        font-size: 14px;
    }

    .bread_crumb {
        font-size: 12px;
    }

    .prod_list_details {
        padding: 12px;
        top: 100px;
    }

    #siteHeader:not(:has(.flash_sale_bar))~.prod_listing_container .prod_list_details {
        top: 70px;
    }

    #siteHeader.pageScrolled~.prod_listing_container .prod_list_details {
        top: 30px;
    }

    .prod_listing_btn_wrap {
        gap: 12px;
    }

    .prod_listing_btn_wrap svg {
        width: 16px;
    }

    .prod_listing_btn_wrap .prod_listing_toggle_btn::after {
        top: calc(100% + 4px);
    }

    .single_grid {
        display: block;
    }

    .prod_listing_btn_wrap .vertical_line,
    .prod_listing_btn_wrap>svg,
    .four_grid {
        display: none;
    }

    .filter_menu_wrpr {
        position: fixed;
        left: 0px;
        bottom: 0px;
        z-index: 9;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 5px;
        background-color: #ffffff;
        box-shadow: 0 0 10px 0 #00000040;
    }

    .filter_menu_wrpr span {
        flex: 0 1 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px;
        cursor: pointer;
        background-color: #f4f4f4;
        text-transform: capitalize;
    }

    .filter_menu_wrpr svg {
        width: 18px;
        aspect-ratio: 1;
    }

    .prod_listing_filter_content,
    .prod_listing_sort_wrap {
        padding: 16px 10px;
    }

    .prod_listing_card {
        max-width: none;
    }

    .prod_listing_img_wrap {
        aspect-ratio: 0.75;
    }

    .prod_swatch_wrap {
        right: 12px;
        bottom: 12px;
    }

    .prod_swatch_color {
        width: 16px;
        height: 16px;
    }

    .prod_listing_filter .popup_containers_wrap {
        width: 100%;
        top: auto;
        bottom: 0;
        height: calc(100vh - 100px);
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .product_columns_2 {
        width: 100%;
    }

    .prod_listing_sort_wrap {
        padding: 0 0 10px 0;
    }

    .prod_listing_sort .popup_containers_wrap {
        top: auto;
        bottom: 0px;
        width: 100%;
        height: auto;
    }

    .filter_sort_list_items {
        padding: 12px 10px;
        font-size: 14px;
        text-align: center;
    }

    .prod_listing_filter .popup_containers_heading,
    .prod_listing_sort .popup_containers_heading {
        flex: unset;
    }

    .prod_listing_filter .popup_containers_header,
    .prod_listing_sort .popup_containers_header {
        flex-direction: row-reverse;
    }

    .prod_listing_sort_cls_btn,
    .popup_containers_cls_btn {
        width: 20px;
        height: 20px;
    }

    .prod_listing_card_banner img {
        aspect-ratio: 4 / 5;
    }

    .sale_tag {
        padding: 4px 5px;
        font-size: 9px;
    }

    .product_wishlist_icon {
        width: 18px;
        height: 18px;
        top: 10px;
        right: 10px;
    }

    .prod_listing_hurry {
        font-size: 12px;
    }

    .prod_img_arrow {
        width: 20px;
    }

    .prod_listing_filter_content_inner_text_span {
        font-size: 14px;
    }

    .prod_filter_value_name {
        font-size: 14px;
    }

    .prod_filter_value__boxs {
        width: 30px;
        height: 30px;
    }

    .prod_listing_filter_content_inner {
        padding: 14px 0px;
    }

    .prod_listing_filter_content_inner_dropdown label {
        margin-bottom: 16px;
    }
}

@media screen and (max-width: 360px) {
    .prod_listing_topic {
        font-size: 12px;
    }

    .bread_crumb {
        font-size: 9px;
    }

    .product_price_row {
        font-size: 9px;
        gap: 1px;
        margin-top: 2px;
    }

    .prod_add_to_cart {
        width: 18px;
    }

    .prod_swatch_wrap {
        right: 8px;
        bottom: 8px;
    }

    .prod_swatch_color {
        width: 14px;
        height: 14px;
    }

    .product_wishlist_icon {
        width: 14px;
        height: 14px;
        top: 6px;
        right: 6px;
    }

    .prod_img_arrow {
        width: 12px;
    }

}
