.main_header {
    width: 100%;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 111;
}

.top_header_flash_info_txt {
    display: block;
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    background-color: #B12029;
    padding: 16px 24px;
    text-transform: uppercase;
    margin: auto;
    width: 100%;
    text-align: center;
    background-color: #F9E8D6;
    position: relative;
}

.navigation_wrpr_container {
    width: 100%;
    margin-inline: auto;
    padding: 18px 50px;
    background: #ffffff;
    position: relative;
}

.navigation_menu_inner_wrpr {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.navigation_menu_grp {
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1065px;
    margin: 20px auto 0px;
    position: relative;
}

.navigation_menu_txt {
    color: inherit;
    text-align: justify;
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    padding: 10px;
    display: flex;
    text-decoration: none;
    align-items: center;
    cursor: pointer;
}

.nav_drop_down_links.active,
.navigation_menu_txt.active {
    color: #b12029;
    font-weight: 500;
}

.dropdown_arrow {
    cursor: pointer;
}

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

.navigation_search_section.mobileView {
    max-width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: white;
    padding: 16px 0px;
}

.navigation_search_input_box {
    display: flex;
    align-items: center;
    column-gap: 10px;
    padding: 9px 1px;
    border-radius: 0px;
    border-bottom: 1px solid #C6C6C6;
    background: #ffffff;
}

.navigation_search_section:has(.nav_search_result_wrap.active) .navigation_search_input_box {
    border-bottom: none;
}

.navigation_search_section.mobileView:has(.nav_search_result_wrap.active) .navigation_search_input_box {
    border-bottom: 1px solid #C6C6C6;
}

.navigation_search_input_box svg {
    width: 20px;
    flex: 0 0 auto;
    cursor: pointer;
    display: none;
}

.nav_search_result_wrap.active,
.nav_drop_down_box_category.active,
.navigation_search_section.mobileView .search_popup_cls_icon,
.navigation_search_input_field:placeholder-shown ~ .searchbar_search_icon,
.navigation_search_input_field:not(:placeholder-shown) ~ .search_clr_icon {
    display: block;
}

.search_clr_icon path {
    pointer-events: none;
}

.navigation_search_input_field {
    all: unset;
    color: #000;
    text-align: justify;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    width: 100%;
    cursor: text;
    caret-color: #000000;
}

.navigation_search_input_field::placeholder {
    color: #777777;
}

.navigation_search_input_box:has(.navigation_search_input_field:focus-within) .searchbar_search_icon path {
    stroke: #000000;
}

.nav_search_result_wrap {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 10;
    width: 100%;
    padding: 16px;
    background: #ffffff;
    border-radius: 0px;
    border: 1px solid #bbbbbb;
    overflow: hidden;
    display: none;
}

.nav_search_result_sub_wrap:has(.nav_search_result_heading):not(:last-of-type) {
    margin-bottom: 24px;
}

.nav_search_result_list {
    display: flex;
    flex-direction: column;
    align-items: start;
    list-style: none;
    gap: 16px;
}

.nav_search_history_list {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.nav_search_result_list.search_prod_results {
    list-style: none;
    max-height: 140px;
    overflow: hidden scroll;
    scrollbar-width: auto;
    display: flex;
    flex-direction: row;
    gap: 8px 16px;
    flex-wrap: wrap;
    margin-right: -16px;
}

.nav_search_result_list.search_prod_results::-webkit-scrollbar,
.nav_drop_down_wrpr::-webkit-scrollbar {
    display: block;
    width: 8px;
}

.nav_search_result {
    padding: 3px;
    background-color: #FFFAFB;
    border: 1px solid #FFEDED;
    flex: 0 1 calc(50% - 14px);
}

.nav_search_result:hover {
    border-color: #f1aaaa;
}

.nav_search_result:hover .nav_search_result_prod_name {
    font-weight: 600;
}

.product-redirect-tag {
    color: #333333;
    font-size: 14px;
    font-weight: 300;
    text-transform: capitalize;
    overflow: hidden;
    text-overflow: ellipsis;
    line-clamp: 1;
    -webkit-line-clamp: 1;
    cursor: pointer;
}

.product-redirect-tag:hover {
    font-weight: 400;
}

.nav_search_result_prod_name {
    display: -webkit-box;
    overflow: hidden;
    line-clamp: 1;
    -webkit-line-clamp: 1;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    color: #333333;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    text-transform: capitalize;
    word-break: break-word;
    padding-bottom: 2px;
}

.nav_search_result_heading {
    color: #000000;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.search_history_item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px 6px 12px;
    border: 1px solid #BBBBBB;
    border-radius: 32px;
    cursor: pointer;
}

.search_history_item:hover {
    border: 1px solid black;
}

.search_history_item_name {
    color: #000000;
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
    text-transform: capitalize;
}

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

.nav_search_prod_card {
    cursor: pointer;
    text-decoration: none;
    display: flex;
    gap: 8px;
}

.nav_search_result_prod_img {
    flex: 0 0 auto;
    width: 42px;
    aspect-ratio: 0.75;
}

.nav_search_result_prod_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.nav_search_result_cont {
    flex: 0 1 auto;
    padding: 2px;
}

.nav_search_result_empty_wrap {
    padding-bottom: 20px;
    text-align: center;
}

.nav_search_result_empty_wrap_icon {
    width: 30%;
    margin: auto;
    margin-bottom: 16px;
    fill: #333333;
}

.nav_search_result_empty_cont {
    color: #777777;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}

.search_popup_cls_icon {
    display: none;
    width: 24px;
    margin-right: 10px;
    margin-left: auto;
    margin-bottom: 12px;
}

.navigation_cta_section {
    display: flex;
    align-items: center;
    column-gap: 24px;
    flex: 0 0 auto;
}

.navigation_cta_section {
    background-position: left;
    background-size: contain;
    background-repeat: no-repeat;
}

.navigation_cta_icon_list {
    position: relative;
    cursor: pointer;
    width: 32px;
    aspect-ratio: 1;
}

.get_updates_icon {
    display: none;
}

.navigation_cta_icon_list svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
}

.hamburger_icon {
    flex: 0 0 auto;
    width: 24px;
    display: none;
}

.cart_count_num {
    background-color: #b12029;
    width: 22px;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
    border-radius: 50%;
    color: white;
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(50%, -50%);
    pointer-events: none;
    border: 2px solid white;
}

.navigation_menu_logo {
    display: block;
    width: 180px;
    aspect-ratio: 1.85;
    flex: 0 0 auto;
}

.navigation_menu_logo img {
    width: 100%;
    height: 100%;
}

.navigation_menu_list.special_sale {
    color: #b12029;
}

.nav_menu_dropdown {
    display: flex;
    align-items: center;
}

.nav_menu_dropdown .navigation_menu_txt {
    padding-right: 8px;
}

.nav_menu_dropdown .dropdown_arrow {
    width: 16px;
    margin-left: 5px;
    margin-bottom: 3px;
    transform-origin: center center;
    transition: transform 150ms linear;
    cursor: pointer;
    flex: 0 0 auto;
}

.nav_menu_dropdown.active .dropdown_arrow {
    transform: scaleY(-1);
}

.nav_menu_dropdown.sale .dropdown_arrow {
    transform: scaleY(1) translateX(50%);
}

.nav_menu_dropdown.sale.active .dropdown_arrow {
    transform: scaleY(-1) translateX(50%);
}

.nav_menu_dropdown.sale .nav_drop_down_wrpr {
    right: unset;
    width: unset;
    left: 60%;
    transform: translateX(-100%);
    padding: 30px;
    width: 380px;
    overflow: hidden;
}

.nav_menu_dropdown.sale .nav_drop_down_box {
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: start;
}

.nav_menu_dropdown.sale .nav_drop_down_list {
    flex: unset;
}

.nav_menu_dropdown.sale .nav_drop_down_box:first-of-type .nav_drop_down_list:first-of-type .nav_drop_down_links,
.sidebar_menu_dropdown_list.sale .sidebar_dropdown_links:first-of-type {
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
}

.nav_menu_dropdown.sale .nav_drop_down_box:first-of-type .nav_drop_down_list:first-of-type .nav_drop_down_links::after {
    content: url("../img/header/sale_fire_icon.svg");
    position: absolute;
    left: calc(100% + 2px);
}

.sidebar_menu_dropdown_list.sale .sidebar_dropdown_links:first-of-type::after {
    content: url("../img/header/sale_fire_icon.svg");
}

.nav_menu_dropdown.shop .nav_drop_down_wrpr {
    padding-bottom: 0px;
}

.nav_menu_dropdown.gift-card .nav_drop_down_wrpr {
    max-width: 200px;
    inset: unset;
    top: 100%;
    right: 0;
    overflow: hidden;
}

.navigation_menu_bar {
    position: relative;
    width: auto;
    flex: 1 1 auto;
}

.nav_drop_down_wrpr {
    padding: 24px;
    position: absolute;
    z-index: 1;
    top: 100%;
    background: #ffffff;
    box-shadow: #00000026 0px 5px 15px 0px;
    width: 100%;
    max-width: 654px;
    max-height: 500px;
    overflow: hidden scroll;
    scrollbar-width: auto;
    display: none;
    left: 0;
    right: 0;
    margin: auto;
}

.nav_drop_down_box {
    width: 100%;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 5%;
    row-gap: 16px;
    white-space: nowrap;
}

.nav_drop_down_list {
    flex: 0 0 30%;
}

.nav_drop_down_box_category {
    display: none;
    width: 35%;
}

.nav_drop_down_box_category:last-of-type {
    width: 30%;
}

.nav_drop_down_category_list {
    display: flex;
    flex-direction: column;
    list-style-type: none;
    column-gap: 10%;
    row-gap: 16px;
    padding-bottom: 20px;
}

.nav_drop_down_wrpr:has(.nav_drop_down_box_category.active) .nav_drop_down_box {
    width: 70%;
    column-gap: unset;
    justify-content: space-between;
}

.nav_drop_down_wrpr:has(.nav_drop_down_box_category.active) .nav_drop_down_list {
    flex: 0 0 45%;
}

.nav_drop_down_links,
.nav_drop_down_category_heading {
    color: #222;
    text-align: justify;
    font-size: 18px;
    font-weight: 300;
    text-transform: uppercase;
}

.sidebar_dropdown_category_list_item.spcl-collection-menu .sidebar_dropdown_links,
.nav_drop_down_category_list_item.spcl-collection-menu .nav_drop_down_links {
    color: goldenrod;
    font-weight: bold;
}

.nav_drop_down_category_heading {
    display: inline-block;
    font-weight: 500;
    margin-bottom: 16px;
}

.nav_drop_down_links:hover {
    font-weight: 400;
}

.nav_menu_dropdown.active .nav_drop_down_wrpr {
    display: flex;
}

.navigation_menu_list.new-arrivals,
.navigation_menu_list.boss-lady {
    position: relative;
    z-index: 1;
}

.navigation_menu_list.new-arrivals:hover .new_arrival_dropdown,
.navigation_menu_list.boss-lady.active .bl_dropdown {
    display: flex;
}

.navigation_menu_txt.gift {
    position: relative;
    padding-right: 28px;
}

.navigation_menu_list.gift img {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    width: 24px;
    aspect-ratio: 1;
}

.new_arrival_dropdown {
    position: absolute;
    z-index: 2;
    top: 100%;
    margin: auto;
    padding: 14px;
    align-items: center;
    gap: 10px;
    background-color: white;
    box-shadow: #00000026 0px 5px 15px 0px;
    display: none;
}

.na_dropdown_card {
    border: 1px solid #0000000d;
    padding-bottom: 3px;
    background: #F4FAFF;
    width: 74px;
}

.na_dropdown_card_img {
    width: 100%;
    aspect-ratio: 0.75;
    overflow: hidden;
}

.na_dropdown_card_img img {
    width: 100%;
    transition: transform 0.3s ease;
}

.na_dropdown_card:hover img,
.bl_dropdown_card:hover img {
    transform: scale(1.15);
}

.na_dropdown_card_name {
    color: #000000;
    font-size: 10px;
    font-weight: 300;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    padding: 3px 3px 0px 3px;
    cursor: pointer;
}

.bl_dropdown {
    position: absolute;
    z-index: 2;
    top: 100%;
    margin: auto;
    padding: 16px;
    align-items: center;
    gap: 10px;
    background-color: white;
    box-shadow: #00000026 0px 5px 15px 0px;
    display: none;
    left: 50%;
    transform: translateX(-50%);
}

.bl_dropdown_card {
    width: 84px;
    border: 1px solid #0000000d;
    background: #F4FAFF;
    position: relative;
}

.na_dropdown_card.active,
.bl_dropdown_card.active {
    border-color: #b12029;
}

.bl_dropdown_card_img {
    width: 100%;
    aspect-ratio: 0.75;
    overflow: hidden;
}

.bl_dropdown_card_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.bl_dropdown_card_name {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 400;
    line-height: 1.4;
    padding: 3px;
    margin: 2px;
    text-align: center;
    background-color: #333333;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
}

.orientation_screen_popup {
    position: fixed;
    top: 0;
    height: 100vh;
    width: 100%;
    background-color: #b12029;
    justify-content: center;
    align-items: center;
    padding-inline: 16px;
    z-index: 9999;
    display: none;
}

.orientation_screen_popup.active {
    display: flex;
}

.orientation_screen_box img {
    margin-inline: auto;
    width: 100px;
}

.orientation_screen_box {
    width: 500px;
}

.orientation_screen_popup h2 {
    color: white;
    font-size: 22px;
    text-align: center;
    margin-top: 15px;
}

.orientation_screen_popup p {
    color: white;
    text-align: center;
    margin-top: 5px;
}

.orientation_heading {
    font-weight: bold;
    font-size: 22px;
}

.navigation_mobile_header {
    display: none;
    width: calc(100% - 100px);
    align-items: center;
    gap: 8px;
}

.navigation_mobile_header.active {
    display: flex;
}

.navigation_menu_inner_wrpr:has(.navigation_mobile_header.active) .hamburger_icon,
.navigation_menu_inner_wrpr:has(.navigation_mobile_header.active) .navigation_menu_logo,
.navigation_menu_inner_wrpr:has(.navigation_mobile_header.active) .navigation_menu_bar {
    display: none;
}

.navigation_mobile_header_icon {
    width: 20px;
    aspect-ratio: 1;
    flex: 0 0 auto;
}

.navigation_mobile_heading {
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
}

.navigation_wrpr_container:has(.navigation_mobile_header.active) {
    border-bottom: 1px solid #D9D9D9;
}

.price_token {
    width: 16px;
    aspect-ratio: 1;
}

.nav_search_result_cont .price_token {
    width: 14px;
    flex: 0 0 auto;
}

.prod_price_row:has(.price_token) .price_token {
    margin-right: -5px;
}

.product_list_cards_actual_price.spl_offer {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 6px;
    padding-top: 2px;
}

.spl_offer .product_list_cards_actual_price_txt {
    color: #388E3C;
    font-size: 16px;
    font-weight: 400;
}

.nav_search_result_cont .product_list_cards_actual_price.spl_offer {
    flex-wrap: wrap;
}

.nav_search_result_cont .product_list_cards_actual_price.spl_offer .product_list_cards_actual_price_txt {
    font-size: 12px;
}

.prod_price_row {
    display: flex;
    align-items: center;
    gap: 7px;
}

.prod_current_price {
    color: #000000;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
}

.spl_offer .prod_current_price {
    color: #388E3C;
}

.prod_actual_price {
    color: #545454;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    text-decoration: line-through;
}

.prod_discount_percentage {
    color: #B12029;
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
}

.nav_search_prod_card .prod_price_row {
    gap: 4px;
}

.nav_search_prod_card .prod_current_price {
    font-size: 12px;
}

.nav_search_prod_card .prod_actual_price {
    font-size: 10px;
    font-weight: 600;
}

.nav_search_prod_card .prod_discount_percentage {
    font-size: 10px;
    line-height: 1.4;
}

.product_list_cards_contents .prod_price_row {
    margin-bottom: 8px;
}

.prod_main_details_head .prod_price_row {
    margin-bottom: 12px;
}

.catch-win-game-cta {
    width: 80px;
    cursor: pointer;
    pointer-events: all;
    filter: drop-shadow(2px 4px 6px black);
}

.swiper_controller {
    display: flex;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    justify-content: space-between;
    width: 100%;
    transform: translate(-50%, -50%);
    z-index: 5;
    max-width: 1920px;
    pointer-events: none;
}

.swiper-button-prev,
.swiper-button-next {
    flex: 0 0 auto;
    position: relative;
    inset: unset;
    height: unset;
    width: 74px;
    margin: 0px;
    aspect-ratio: 1;
    pointer-events: all;
}

.swiper-button-prev {
    transform: rotate(180deg);
}

@media screen and (max-width: 1570px) {
    .nav_drop_down_links {
        font-size: 14px;
    }

    .nav_menu_dropdown.sale .nav_drop_down_wrpr {
        width: 310px;
    }
}

@media screen and (max-width: 1470px) {
    .nav_drop_down_wrpr {
        padding: 20px;
    }

    .top_header_flash_info_txt {
        font-size: 14px;
        padding: 13px 10px;
    }

    .navigation_menu_logo {
        width: 130px;
    }

    .prod_actual_price .navigation_search_input_field,
    .navigation_menu_txt {
        font-size: 16px;
    }

    .navigation_menu_grp {
        margin-top: 16px;
    }

    .navigation_wrpr_container {
        padding-inline: 40px;
    }

    .navigation_cta_icon_list {
        width: 25px;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 52px;
    }
}

@media screen and (max-width: 1024px) {
    .prod_current_price {
        font-size: 16px;
    }

    .prod_actual_price,
    .prod_discount_percentage {
        font-size: 12px;
    }

    .search_history_item_remove_btn {
        width: 16px;
    }

    .nav_search_history_list {
        gap: 10px 12px;
    }

    .product_list_cards_actual_price.spl_offer {
        column-gap: 4px;
    }

    .navigation_search_input_field {
        font-size: 14px;
    }

    .navigation_menu_grp {
        display: none;
    }

    .navigation_cta_section {
        column-gap: 12px;
    }

    .navigation_wrpr_container {
        padding: 12px 16px;
    }

    .hamburger_icon {
        display: block;
    }

    .navigation_menu_logo {
        width: 80px;
    }
}

@media screen and (max-width: 834px) {
    .price_token {
        width: 14px;
    }

    .nav_search_result_cont .price_token {
        place-self: flex-start;
    }

    .prod_price_row:has(.price_token) .price_token {
        margin-right: -3px;
    }

    .spl_offer .product_list_cards_actual_price_txt {
        font-size: 14px;
    }
}

@media screen and (max-width: 767px) {

    .swiper-button-prev,
    .swiper-button-next {
        width: 32px;
    }

    .product_list_cards_contents .prod_price_row {
        margin-bottom: 4px;
    }

    .prod_main_details_head .prod_price_row {
        margin-bottom: 8px;
    }

    .prod_current_price {
        font-size: 14px;
    }

    .prod_actual_price,
    .prod_discount_percentage,
    .search_history_item_name,
    .nav_search_result_empty_cont,
    .navigation_search_input_field {
        font-size: 10px;
    }

    .top_header_flash_info_txt {
        font-size: 10px;
        padding: 10px;
    }

    .prod_price_row {
        gap: 5px;
    }

    .catch-win-game-cta {
        width: 60px;
    }

    .get_updates_icon {
        display: none;
    }

    .nav_search_result_list.search_prod_results {
        max-height: unset;
        overflow: unset;
        scrollbar-width: none;
        margin: 0px;
        gap: 8px;
    }

    .nav_search_result {
        flex: 0 1 100%;
    }

    .navigation_search_input_box svg {
        width: 12px;
    }

    .navigation_cta_icon_list {
        width: 25px !important;
    }

    .navigation_wrpr_container {
        padding: 12px;
    }

    .navigation_menu_logo {
        width: 60px;
    }

    .navigation_search_input_box {
        padding: 9px 10px;
    }

    .navigation_search_input_box.active {
        border-bottom: 1px solid #C6C6C6;
    }

    .navigation_search_section.mobileView .navigation_search_input_box {
        margin: 0px 10px 4px;
    }

    .nav_search_result_wrap {
        padding: 20px 10px 0px;
        position: static;
        border: none;
        max-height: calc(100% - 68px);
        height: 100%;
        scrollbar-width: auto;
        overflow: hidden scroll;
    }

    .nav_search_result_wrap::-webkit-scrollbar {
        display: block;
    }

    .nav_search_result_heading {
        font-size: 12px;
        margin-bottom: 16px;
    }

    .nav_search_result_prod_name {
        font-size: 11px;
    }
}

@media screen and (max-width: 428px) {
    .cart_count_num {
        width: 16px;
        font-size: 7px;
        border: 1px solid white;
    }

    .prod_price_row {
        gap: 4px;
    }
}

@media screen and (max-width: 393px) {
    .navigation_cta_section {
        column-gap: 8px;
        flex: 0 0 72px;
    }

    .navigation_search_input_box {
        padding: 6px 10px;
    }

    .nav_search_result {
        font-size: 12px;
    }
}

@media screen and (max-width: 359px) {
    .quick_view_popup .prod_price_row {
        gap: 4px;
    }

    .product_list_cards_actual_price.spl_offer {
        column-gap: 2px;
    }

    .navigation_mobile_heading {
        font-size: 14px;
    }

    .nav_search_result_sub_wrap:has(.nav_search_result_heading):not(:last-of-type) {
        margin-bottom: 20px;
    }

    .nav_search_result_list {
        gap: 12px;
    }

    .nav_search_history_list {
        gap: 10px 6px;
    }

    .search_history_item_remove_btn {
        width: 12px;
    }

    .search_history_item {
        gap: 5px;
    }

    .product-redirect-tag,
    .spl_offer .product_list_cards_actual_price_txt {
        font-size: 11px;
    }

    .nav_search_result_heading {
        margin-bottom: 12px;
    }

    .navigation_wrpr_container {
        padding: 10px 8px;
    }

    .hamburger_icon {
        width: 30px;
    }

    .search_history_item_name {
        font-size: 10px;
    }

    .navigation_menu_inner_wrpr {
        column-gap: 6px;
    }

    .navigation_menu_logo {
        width: 50px;
    }
}

.pacman-game-card {
    width: 60px;
    height: 60px;
    background: url('../img/home/scrolled_pacman_card.jpg') no-repeat center center;
    background-size: cover;
    border: 2px solid #00f;
    padding: 11px 4px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    pointer-events: all;
    transition: width 0.3s ease, padding 0.3s ease;
}

.wheel_of_fortune_floating_wrpr {
    width: 140px;
    padding: 8px;
    overflow: hidden;
    transition: 0.2s ease;
    cursor: pointer;
    pointer-events: all;
}

.wheel_of_fortune_floating {
    width: 100%;
    background-position: center;
    background-size: cover;
    overflow: hidden;
    display: block;
}

.wheel_of_fortune_floating_img {
    width: 80%;
}

.wheel_of_fortune_floating_img img {
    width: 100%;
    height: 100%;
    display: block;
    animation: rotate 5s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.wheel_of_fortune_floating_img .floating_postioning_icon {
    position: absolute;
    top: 6px;
    animation: unset !important;
    width: 8px;
    aspect-ratio: 1;
    left: 50%;
    transform: translate(-50%, -50%);
}

.wheel_of_fortune_floating_img .wheel_of_fortune_center_img_icon {
    animation: unset;
    position: absolute;
    top: 50%;
    animation: unset !important;
    width: 37px;
    aspect-ratio: 1;
    left: 50%;
    transform: translate(-50%, -50%);
}

.wheel_of_fortune_floating_title {
    font-size: 34px;
    font-weight: 400;
    color: #B2611A;
    text-align: center;
}

.wheel_of_fortune_floating_text {
    position: absolute;
    bottom: 0;
    padding-bottom: 10px;
    text-align: center;
    left: 0;
    right: 0;
}

.wheel_of_fortune_floating_title {
    font-weight: 400;
    font-size: 34px;
    color: #B2611A;
    text-align: center;
    font-family: Koulen;
    line-height: 1;
    margin-bottom: 18px;
}

.wheel_of_fortune_floating_desc {
    font-weight: 400;
    font-size: 10px;
    color: #000000;
}

@media screen and (max-width: 1024px) {
    .wheel_of_fortune_floating_wrpr {
        padding: 3px;
    }

    .wheel_of_fortune_floating_title {
        text-shadow: 0px 4px 9px rgba(102, 20, 20, 0.349);
    }
}

@media (max-width: 767px) {
    .wheel_of_fortune_floating_img {
        width: 15%;
        position: absolute;
        bottom: 0;
    }

    .wheel_of_fortune_floating_wrpr {
        width: 100px;
    }

    .wheel_of_fortune_floating_title {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .wheel_of_fortune_floating_desc {
        font-size: 8px;
    }

    .pacman-game-card {
        width: 50px;
        height: 50px;
    }
}