#filter_trigger,
.filter_card_wrapper_title {
    display: none;
}

@media only screen and (max-width: 959px) {
    .wsp_thakyou_page {
        width: 100%;
    }

    section.single_page_products ul li {
        min-width: 48%;
        max-width: 48%;
    }

    .entry_content {
        flex-direction: column;
    }

    #filter_trigger,
    .filter_card_wrapper_title {
        display: block;
    }

    #filter_trigger {
        margin-left: auto;
        background-color: #222;
        color: #fff;
        padding: 7px 15px;
        border-radius: 3px;
    }

    .product_cat_container .product_cat_sidebar {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        padding-right: 0;
        overflow-y: scroll;
        height: 100vh;
        width: 100%;
        background-color: #00000062;
    }

    .product_cat_container .product_cat_sidebar .filter_card_wrapper {
        background-color: #fff;
        width: 300px;
        margin-left: auto;
    }

    .product_cat_container .product_cat_sidebar .filter_card_wrapper .filter_card_wrapper_title {
        background-color: #222;
        color: #fff;
        padding: 15px 10px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .product_cat_container .product_cat_main {
        width: 100%;
    }

    .middle_header {
        box-shadow: 0 2px 1.5px 0 rgba(0, 0, 0, .12) !important;
    }

    .search_part {
        display: none;
    }

    .custom_container {
        padding: 0 10px;
    }

    .checkout_page_cols {
        flex-direction: column;
    }

    .checkout_page_cols .left_part,
    .checkout_page_cols .right_part {
        width: 100%;
    }

    footer.site_footer .footer_blocks_wrapper {
        flex-direction: column;
        align-items: center;
    }

    footer.site_footer .footer_blocks_wrapper>div {
        text-align: center;
        margin-bottom: 10px;
        margin-right: 0;
        width: 100%;
    }

    footer.site_footer .footer_blocks_wrapper div.part_one .social_field_wrapper ul {
        justify-content: center;
    }

    .product_cat_container .product_cat_main ul.product_grid li {
        width: 32%;
    }


    div.add_to_cart_buy_now {
        position: fixed;
        bottom: 0;
        left: 0;
        padding: 10px;
        width: 100%;
        background-color: #fff;
        margin: 0;
        z-index: 9;
        box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 10px 1px rgba(0, 0, 0, .1), 0 1px 1px 0 rgba(0, 0, 0, .1);
    }

    div.cart_item_quantity_wrapper .quantity input {
        width: 20px;
    }

    table.cart-items .cart_item_media_meta .cart_item_media {
        display: none;
    }

    table.cart-items .cart_item_media_meta .cart_item_meta {
        padding-left: 0;
    }

    table.cart-items tbody td.cart-item__quantity {
        width: 30%;
        margin-right: 10px;
    }

    table.cart-items tbody td.cart-item__totals {
        width: 20%;
    }

    div.produc_form_quantity div.quantity {
        margin: 10px auto;
    }

    div.product_share .share_links {
        justify-content: center;
    }
}

@media screen and (max-width: 767px) {
    #search_page .serach_product_container,
    .product_cat_container .product_cat_main ul.products {
        grid-template-columns: 1fr 1fr;
    }
	
    .checkout_page_cols .left_part form div.delivary_location .radio_group_container {
        flex-direction: column;
    }

    .product_single_meta {
        flex-direction: column;
    }

    header div.logo_part a img {
        height: 40px;
    }

    section#home_three_cat .home_three_cat_inner .home_three_category {
        min-width: 50%;
        max-width: 50%;
    }

    .product_cat_container .product_cat_main ul.product_grid li {
        width: 47%;
    }

    .product_single_meta .product_media_wrapper,
    .product_single_meta .product_info_wrapper {
        width: 100%;
		padding:10px;
    }

}



/* =====================================================
   HAMBURGER BUTTON  –  hidden on desktop, shown on mobile
   ===================================================== */

.hamburger_btn {
    display: none;
}

/* =====================================================
   MOBILE NAV DRAWER
   ===================================================== */

/* Overlay */
.mobile_nav_overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.mobile_nav_overlay.is_active {
    opacity: 1;
}

/* Drawer panel */
.mobile_nav_drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: min(320px, 85vw);
    height: 100dvh;
    background: #fff;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.mobile_nav_drawer.is_open {
    transform: translateX(0);
}

/* Drawer Header */
.mobile_nav_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-bottom: 1px solid #f0f0f0;
    flex-shrink: 0;
}

.mobile_nav_logo img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.mobile_nav_close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: background 0.2s ease, color 0.2s ease;
    line-height: 0;
}

.mobile_nav_close:hover {
    background: #f5f5f5;
    color: #e53935;
}

/* Drawer Body */
.mobile_nav_body {
    flex: 1;
    overflow-y: auto;
    padding: 10px 0;
}

.mobile_nav_body .mobile_nav_menu_ground {
    margin: 0;
    padding: 0;
}

.mobile_nav_body .mobile_nav_list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile_nav_body .mobile_nav_list li {
    border-bottom: 1px solid #f5f5f5;
}

.mobile_nav_body .mobile_nav_list li a {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    color: #222;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

.mobile_nav_body .mobile_nav_list li a:hover,
.mobile_nav_body .mobile_nav_list li.current-menu-item > a {
    background: #fef9f0;
    color: #e49400;
    padding-left: 28px;
}

/* Sub-menu items */
.mobile_nav_body .mobile_nav_list .sub-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    background: #fafafa;
}

.mobile_nav_body .mobile_nav_list .sub-menu li a {
    font-size: 14px;
    padding-left: 36px;
    font-weight: 400;
    text-transform: none;
    color: #555;
}

.mobile_nav_body .mobile_nav_list .sub-menu li a:hover {
    color: #e49400;
    padding-left: 44px;
}

/* Drawer Footer */
.mobile_nav_footer {
    padding: 14px 20px;
    border-top: 1px solid #f0f0f0;
    flex-shrink: 0;
}

.mobile_nav_search_link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 14px;
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease;
}

.mobile_nav_search_link:hover {
    background: #f5f5f5;
    color: #222;
}

/* =====================================================
   RESPONSIVE  ≤ 767px  –  activate hamburger & drawer
   ===================================================== */

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

    .hamburger_btn {
        display: flex;
        align-items: center;
        justify-content: center;
        background: none;
        border: none;
        cursor: pointer;
        padding: 6px;
        margin-left: 10px;
        color: #222;
        border-radius: 6px;
        transition: background 0.2s ease;
        line-height: 0;
    }

    .hamburger_btn:hover {
        background: #f5f5f5;
    }

    header div.header_menu {
        display: none;
    }

    .mobile_nav_overlay {
        display: block;
        pointer-events: none;
    }

    .mobile_nav_overlay.is_active {
        pointer-events: auto;
    }

}