/* ============================================================
   Merged with edits from Additional CSS (2026-05-12)
   Recompiled from original main.css
   ============================================================ */

/* ---- Reset ---- */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: Inter;
    color: #642b34;
    font-weight: 500;
    line-height: 1.5;
    font-size: 16px;
    background: #F5F5F5;
}

section {
    margin: 50px 0;
}

/* ---- Base elements ---- */
img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

h1 {
    font-size: 32px;
    margin-bottom: 30px;
    width: 100%;
    font-weight: 600;
}

h2 {
    color: #642b34;
    width: 100%;
    text-align: center;
    font-size: 35px;
    font-weight: 600;
}

a {
    text-decoration: none;
    display: block;
    color: #fff;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

p {
    margin: 10px 0;
    color: #000;
}

/* ---- Layout ---- */
.container {
    width: calc(100% - 30px);
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    flex-wrap: wrap;
}

.overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .6);
    opacity: 0;
    z-index: -1;
}

.overlay.show {
    position: fixed;
    z-index: 100;
    opacity: 1;
}

/* ---- Breadcrumb ---- */
.breadcrumb {
    margin-bottom: 0;
    margin-top: 10px;
    padding-left: 15px;
}

.breadcrumb ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 25px;
    flex-wrap: wrap;
}

.breadcrumb ul a {
    color: #000;
}

/* ---- Button ---- */
.btn {
    text-align: center;
    width: 100%;
    max-width: max-content;
    margin-top: 10px;
    border-radius: 15px;
    font-size: 16px;
    background: #642b34;
    color: #fff;
    transition: .2s;
    padding: 15px;
}

/* ---- Swiper ---- */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    font-size: 18px;
    background-size: cover;
    background-position: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-slide-pagination-bullet {
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    color: #000;
    opacity: 1;
    background: rgba(0, 0, 0, 0.2);
}

.swiper-slide-pagination-bullet-active {
    color: #fff;
    background: #007aff;
}

.swiper .productSwiper {
    height: 80%;
    width: 100%;
}

.swiper .productSwiperThumb {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
}

.swiper .productSwiperThumb .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
}

.swiper .productSwiperThumb .swiper-slide-thumb-active {
    opacity: 1;
}

/* ---- WooCommerce global overrides ---- */
.woocommerce .products ul::after,
.woocommerce .products ul::before,
.woocommerce ul.products::after,
.woocommerce ul.products::before,
.woocommerce ul.products::after {
    display: none !important;
}

.woocommerce img,
.woocommerce-page img,
.woocommerce nav.woocommerce-pagination,
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    width: 100% !important;
}

.woocommerce ul.products li.product a img {
    height: 100%;
}

.woocommerce img,
.woocommerce-page img {
    height: 100%;
}

.woocommerce-pagination ul li span {
    background: #642b34 !important;
    color: #fff !important;
}

.woocommerce-pagination ul li a {
    background: rgba(100, 43, 52, 0.255) !important;
    color: #fff !important;
}

/* ---- Hamburger ---- */
.hamburger_menu,
.hamburger_menu_bottom {
    position: relative;
    padding: 15px;
    background: #FFF;
    border-radius: 15px;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.hamburger_menu .hamburger_icon,
.hamburger_menu_bottom .hamburger_icon {
    display: block;
    width: 30px;
    height: 19px;
}

.hamburger_menu .hamburger_icon::before,
.hamburger_menu_bottom .hamburger_icon::before {
    content: "";
    display: block;
    height: 3px;
    width: 30px;
    border-radius: 3px;
    background: #3c4960;
    transition: all 0.3s;
}

.hamburger_menu .hamburger_icon::after,
.hamburger_menu_bottom .hamburger_icon::after {
    content: "";
    display: block;
    height: 3px;
    width: 30px;
    border-radius: 3px;
    background: #3c4960;
    transition: all 0.3s;
}

.hamburger_menu .hamburger_icon span,
.hamburger_menu_bottom .hamburger_icon span {
    height: 3px;
    width: 25px;
    background: #3c4960;
    display: block;
    border-radius: 3px;
    margin: 4px 0px;
    transition: all 0.3s;
}

.hamburger_menu .hamburger_icon.active::before,
.hamburger_menu_bottom .hamburger_icon.active::before {
    transform: rotate(45deg);
    transition: all 0.3s;
    top: 10px;
    position: absolute;
    background: #ff8156;
}

.hamburger_menu .hamburger_icon.active::after,
.hamburger_menu_bottom .hamburger_icon.active::after {
    transform: rotate(-45deg);
    transition: all 0.3s;
    position: absolute;
    top: 10px;
    background: #ff8156;
}

.hamburger_menu .hamburger_icon.active span,
.hamburger_menu_bottom .hamburger_icon.active span {
    display: none;
}

/* ---- Header ---- */
.header {
    position: fixed;
    width: 100%;
    height: 136px;
    top: 0;
    z-index: 99;
}

.header_menu_inner {
    padding-left: 10px;
}

.header_top {
    background: #EBEBEB;
    padding: 10px 0;
}

.header_top .logo {
    max-width: 150px;
    padding-left: 10px;
}

.header_top .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp {
    padding: 0;
    background: transparent;
    border: 1px solid #642b34;
    border-radius: 30px;
}

.header_top .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input {
    padding: 10px 15px;
    border: none;
}

.header_top .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit {
    display: none;
}

.header_top .dgwt-wcas-preloader.dgwt-wcas-close {
    right: 0 !important;
    margin-right: 15px;
}

.header_top .dgwt-wcas-enable-mobile-form {
    z-index: 10 !important;
}

.header_bottom {
    background: #642b34;
    padding: 15px 0;
}

.header_bottom a {
    padding-left: 5px;
    padding-right: 5px;
}

.header_bottom .hamburger_menu,
.header_bottom .hamburger_menu_bottom {
    display: none;
}

.header_bottom nav ul {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 25px;
}

.header_bottom nav ul a {
    color: #FFF;
}

.header_bottom_links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* ---- Navigation dropdown ---- */
.menu-item-has-children {
    position: relative;
}

.menu-item-has-children > .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.25s ease;
    background: #642b34;
    min-width: 220px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 9999;
}

.sub-menu li a {
    display: block;
    padding: 10px 20px;
    white-space: nowrap;
    transition: background 0.2s ease;
}

.sub-menu li a:hover {
    background: #5a2428;
}

/* ---- Hero / first screen ---- */
.first_screen {
    margin-top: -5px;
}

.first_screen_slider {
    height: 500px;
    position: relative;
}

.first_screen_slider_pagination {
    bottom: 20px !important;
}

.first_screen_slider_pagination .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    background: rgba(255, 255, 255, 0.5);
}

.first_screen_slider_pagination .swiper-pagination-bullet-active {
    background: #fff;
}

.first_screen_slide_img {
    width: 100%;
    height: 100%;
}

/* ---- Popular products ---- */
.popular_products_items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    width: 100%;
    margin-top: 30px;
}

.popular_products_item a {
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, .25);
    padding: 25px;
    border-radius: 5px;
    color: #000;
    height: 100%;
}

.popular_products_item_img {
    border-radius: 15px;
    overflow: hidden;
    height: 175px;
}

.popular_products_item h3 {
    color: #642b34;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    margin-top: 30px;
}

.popular_products_attributes {
    margin-top: 15px;
}

.popular_products_attributes li {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 25px;
    margin-top: 5px;
}

.popular_products_attributes_name {
    font-weight: 700;
}

.popular_products_btn {
    background: #642b34;
    padding: 10px 42px;
    max-width: max-content;
    color: #fff;
    margin: 0 auto;
    margin-top: 35px;
    width: 100%;
    border-radius: 5px;
    border: 1px solid rgba(100, 43, 52, 0.5);
}

.page-id-17 .popular_products_short_description {
    display: none;
}

/* ---- Contact form ---- */
.any_other_questions_form {
    border-radius: 15px;
    background: #FFF;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.40);
    padding: 30px;
    width: 100%;
    max-width: 880px;
    margin: 0 auto;
    margin-top: 30px;
}

.any_other_questions_form_cont {
    max-width: 570px;
    margin: 0 auto;
}

.any_other_questions_form_cont .form_input {
    position: relative;
    margin-top: 20px;
}

.any_other_questions_form_cont .form_input p {
    font-size: 22px;
}

.any_other_questions_form_cont .form_input input,
.any_other_questions_form_cont .form_input textarea {
    margin-top: 10px;
    padding: 10px;
    width: 100%;
    display: block;
    outline: none;
    border-radius: 5px;
    border: 1px solid rgba(100, 43, 52, 0.5);
}

.any_other_questions_form_cont .form_input input::placeholder,
.any_other_questions_form_cont .form_input textarea::placeholder {
    color: rgba(0, 0, 0, 0.50);
}

.any_other_questions_form_cont .form_input .wpcf7-submit {
    background: #642b34;
    padding: 10px 42px;
    max-width: max-content;
    color: #fff;
    margin: 0 auto;
}

.any_other_questions_form_cont .form_input .wpcf7-spinner {
    position: absolute;
    right: 0;
    bottom: 0;
}

.any_other_questions_form_cont .form_input:nth-child(2) {
    margin-top: 0;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    border-color: rgba(100, 43, 52, 0.79);
}

.fancybox__content {
    background-color: transparent;
}

/* ---- Contacts ---- */
.contacts_items {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 25px;
    margin-top: 25px;
    width: 100%;
}

.contacts_item {
    flex: 0 0 49%;
    border-radius: 15px;
    background: #FFF;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.40);
    padding: 20px;
}

.contacts_item_inner:not(:nth-child(1)) {
    margin-top: 30px;
}

.contacts_item_name {
    font-size: 22px;
}

.contacts_item_info {
    margin-top: 15px;
}

.contacts_item_info p {
    color: #000;
    margin: 10px 0;
}

.contacts_item_info p a {
    display: inline-block;
    color: #642b34;
}

.contacts_item iframe {
    width: 100%;
    height: 353px;
}

.contacts_text_cont {
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    color: #000;
    margin-top: 30px;
    width: 100%;
}

/* ---- Archive / product listing ---- */
.archive_page {
    padding: 10px;
}

.archive_page_cont {
    width: 100%;
}

.archive_page_cont_bottom {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 25px;
    width: 100%;
}

.archive_page_cont_products {
    width: 100%;
}

.archive_page h1 {
    width: 100%;
    margin-top: 30px;
}

.archive_page ul.products {
    padding: 20px;
}

.archive_page ul.products:before,
.archive_page ul.products:after {
    display: none;
}

.archive-title {
    text-align: center;
}

.archive section {
    margin-top: 0 !important;
}

.products,
.sub_category {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    background: #fff;
    border-radius: 15px;
    width: 100%;
    margin-bottom: 0;
}

.products_items,
.sub_category_items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    width: 100%;
    margin-top: 30px;
}

.products a,
.sub_category a {
    color: #000;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, .25);
    padding: 25px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    flex-direction: column;
    height: 100%;
}

.products_item,
.sub_category_item {
    flex: 0 0 31%;
    margin: 0 !important;
}

.products_item_info,
.sub_category_item_info {
    width: 100%;
}

.products_item_info_desc,
.sub_category_item_info_desc {
    margin-top: 15px;
}

.products_item_img,
.sub_category_item_img {
    border-radius: 15px;
    overflow: hidden;
    height: 175px;
}

.products_item h2,
.products_item h3,
.sub_category_item h2,
.sub_category_item h3 {
    font-size: 18px;
    font-weight: 500;
    margin-top: 30px;
    color: #642b34;
    text-align: center;
}

.products_item_attributes,
.sub_category_item_attributes {
    margin-top: 15px;
}

.products_item_attributes li,
.sub_category_item_attributes li {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 25px;
    margin-top: 5px;
    border-bottom: 1px solid;
    padding: 10px 0;
}

.products_btn,
.sub_category_btn {
    background: #642b34;
    padding: 10px 42px;
    max-width: max-content;
    color: #fff;
    margin: 0 auto;
    margin-top: 35px;
    width: 100%;
    border-radius: 5px;
    border: 1px solid rgba(100, 43, 52, 0.5);
}

/* ---- Categories ---- */
.categories {
    background: transparent;
}

.categories_items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 20px;
    margin-top: 30px;
    background: #fff;
    border-radius: 15px;
    width: 100%;
}

.categories a {
    color: #000;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, .25);
    padding: 25px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    flex-direction: column;
    height: 100%;
}

.categories_item {
    margin: 0 !important;
}

.categories_item_info {
    width: 100%;
}

.categories_item_info_desc {
    margin-top: 15px;
}

.categories_item_img {
    border-radius: 15px;
    overflow: hidden;
    height: 175px;
}

.categories_item h2,
.categories_item h3 {
    font-size: 18px;
    font-weight: 500;
    margin-top: 30px;
    color: #642b34;
    text-align: center;
}

.categories_item_attributes {
    margin-top: 15px;
}

.categories_item_attributes li {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 25px;
    margin-top: 5px;
    border-bottom: 1px solid;
    padding: 10px 0;
}

.categories_btn {
    background: #642b34;
    padding: 10px 42px;
    max-width: max-content;
    color: #fff;
    margin: 0 auto;
    margin-top: 35px;
    width: 100%;
    border-radius: 5px;
    border: 1px solid rgba(100, 43, 52, 0.5);
}

/* ---- Category page components ---- */
.category_items {
    display: flex;
    flex-wrap: wrap;
}

.category_item {
    margin: 15px;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    width: calc(30% - 30px);
}

.category_description {
    background: #fff;
    padding: 10px 20px;
    border-radius: 15px;
    margin-bottom: 25px;
    color: #642b34;
}

.category_description p {
    color: #642b34;
}

.category_description img {
    max-width: 500px;
}

.category_img img {
    max-width: 100px;
}

.category_mid_section {
    font-size: 20px;
    margin-top: -20px;
    background-color: transparent;
    text-align: center;
}

.category_mid_section .btn {
    margin-top: 10px;
    display: inline-block !important;
}

/* ---- Product excerpt ---- */
.custom-product-excerpt p {
    color: #642b34;
}

.custom-product-excerpt table {
    width: 100%;
}

/* ---- Featured memberships (ADSC logos) ---- */
.featured-memberships {
    text-align: center;
}

.featured-memberships .container {
    justify-content: center;
    padding: 20px;
    margin-top: 10px;
    background: #fff;
    border-radius: 15px;
    display: inline-flex;
}

.featured-memberships-title {
    text-align: center;
    font-weight: bold;
    font-size: 20px;
}

.featured-memberships-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.featured-memberships-logos img {
    max-height: 150px;
    max-width: 300px;
    width: auto;
    display: block;
    margin: 0 10px;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, .25);
}

/* ---- Footer ---- */
.footer {
    background: #642b34;
    padding: 50px 0;
    padding-left: 10px;
}

.footer .logo {
    max-width: 150px;
}

.footer_item_link {
    margin-top: 25px;
}

.footer_items {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
}

.footer .menu li:not(:first-child) {
    margin-top: 10px;
}

.footer_copyright {
    width: 100%;
    text-align: right;
}

/* ---- Single product ---- */
.single_product_content {
    margin: 50px 0;
}

.single_product_content .products_item_attributes {
    margin-top: 0;
}

.single_product_content .products_item_attributes li:nth-child(1) {
    margin-top: 0;
    padding-top: 0;
}

.single_product_content_top .container {
    gap: 100px;
    flex-wrap: nowrap;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    align-items: flex-start;
}

.single_product_content .product_slider {
    width: 50%;
}

.single_product_content .product_slider .product_swiper_slider_single_image .product-thumb-item {
    height: 500px;
}

.single_product_content .product_slider .product_swiper_slider_single_image a {
    height: 100%;
}

.single_product_content .product_slider .product_swiper_slider_single_image a img {
    object-fit: contain;
}

.single_product_content .product_slider .product-thumb-item {
    width: 100%;
    height: 100%;
}

.single_product_content .product_slider .product_slider_thumb {
    margin-top: 25px;
    height: 73px;
}

.single_product_content .product_slider .product_slider_thumb a {
    height: 100%;
}

.single_product_content .product_slider .product_slider_thumb .swiper-slide img {
    object-fit: contain;
}

.single_product_content .product_slider .product_slider_thumb .swiper-wrapper {
    gap: 15px;
}

.single_product_content .product_slider .product_swiper_slider_thumb_next,
.single_product_content .product_slider .product_swiper_slider_thumb_prev {
    background: #fff;
    border-radius: 50%;
    height: 35px;
    width: 35px;
}

.single_product_content .product_slider .product_swiper_slider_thumb_next:after,
.single_product_content .product_slider .product_swiper_slider_thumb_prev:after {
    font-size: 20px;
    color: #642b34;
}

.single_product_content .product_slider .product_swiper_slider_thumb_next:after {
    position: absolute;
    right: 11px;
}

.single_product_content .product_slider .product_swiper_slider_thumb_prev:after {
    position: absolute;
    left: 11px;
}

.single_product_content .single-product-content-wrapper {
    width: 50%;
}

.single_product_content .single-product-content-wrapper .page_content_info_inner_item {
    width: 100%;
    margin-top: 30px;
}

.single_product_content .single-product-content-wrapper .page_content_info_inner_item form {
    margin-top: 0;
}

.single_product_content .single-product-content-wrapper .page_content_info_inner_item form .input_form {
    width: 100%;
}

.single_product_content .single-product-content-wrapper .page_content_info_inner_item h2 {
    font-size: 25px;
    text-align: left;
}

.single_product_content_bottom {
    margin-top: 50px;
}

.single_product_content_bottom .container {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
}

.single_product_content_bottom .custom-tabs {
    border: 1px solid #642b34;
    width: 100%;
}

.single_product_content_bottom .tab-titles {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #642b34;
}

.single_product_content_bottom .tab-title {
    margin: 0;
    padding: 10px 20px;
    cursor: pointer;
    background: #fff;
    border-right: 1px solid #642b34;
}

.single_product_content_bottom .tab-title a {
    color: #642b34;
}

.single_product_content_bottom .tab-title.active {
    background: #642b34;
    color: #fff;
    border-bottom: none;
    font-weight: bold;
}

.single_product_content_bottom .tab-title.active a {
    color: #fff;
}

.single_product_content_bottom .tab-content {
    display: none;
    padding: 20px;
}

.single_product_content_bottom .tab-content img {
    max-width: 500px;
}

.single_product_content_bottom .tab-content.active {
    display: block;
}

span.product_name {
    display: block;
    margin-top: 10px;
}

/* ---- About ---- */
.about_info_text {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
}

/* ---- Blog / News ---- */
.posts h1 {
    margin-top: 30px;
}

.post_cont {
    padding: 20px;
    border-radius: 15px;
    background: #fff;
}

.post-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.post-item {
    padding: 20px;
    border-radius: 15px;
    background: #fff;
}

.post-item_img {
    height: 300px;
}

.post-item_img img {
    object-fit: contain;
}

.post-item a {
    height: 100%;
}

.post-item h2 {
    margin: 25px 0;
    font-size: 18px;
    font-weight: 500;
    color: #642b34;
    text-align: center;
}

.post-item p {
    color: #000;
}

.post-item .btn {
    margin-top: 30px;
}

.single-post_img {
    height: 300px;
}

.single-post_img img {
    width: auto;
    object-fit: contain;
}

.single-post .entry-header {
    margin-top: 30px;
    width: 100%;
}

.single-post .entry-header h1 {
    margin-top: 30px;
}

section.container {
    margin-top: 50px;
    margin-bottom: 50px;
}

/* ---- Catalog slide-out popup ---- */
.cataloge_nmenu_popup {
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    transform: translateX(150%);
    height: 100vh;
    z-index: 101;
    max-width: 400px;
    overflow-y: scroll;
}

.cataloge_nmenu_popup.open {
    transform: none;
}

.cataloge_nmenu_popup .hamburger_menu {
    position: fixed;
    top: 0;
    right: 395px;
    z-index: 102;
}

.cataloge_nmenu_popup .hamburger_icon {
    height: max-content;
}

.cataloge_nmenu_popup .hamburger_icon span {
    width: max-content;
    background: transparent;
    height: auto;
    margin: 0;
}

.cataloge_nmenu_popup .hamburger_icon:before {
    transform: rotate(-40deg);
    position: absolute;
}

.cataloge_nmenu_popup .hamburger_icon:after {
    transform: rotate(40deg);
}

.cataloge_nmenu_popup_inner {
    border-radius: 15px 0 0 15px;
    background: #fff;
    width: 100%;
    margin: 0 auto;
    overflow-y: scroll;
    padding: 25px;
    position: relative;
    z-index: 11;
    height: 100%;
}

.cataloge_nmenu_popup_inner_navigation,
.cataloge_nmenu_popup_inner_social,
.cataloge_nmenu_popup_inner .search {
    display: none;
}

.cataloge_nmenu_popup .category_menu {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    margin-top: 30px;
}

.cataloge_nmenu_popup .category_menu h3 {
    color: #642b34;
    font-size: 25px;
    font-weight: 500;
}

.cataloge_nmenu_popup .category_menu .category-items {
    margin-top: 15px;
}

.cataloge_nmenu_popup .category_menu .category-img {
    max-width: 150px;
    margin-top: 15px;
}

.cataloge_nmenu_popup .category_menu .category-description {
    margin-top: 15px;
    color: #000;
}

.cataloge_nmenu_popup .category_menu h4 {
    color: #642b34;
    font-size: 18px;
    font-weight: 500;
}

/* ---- Hover effects ---- */
.header_bottom a:hover,
.categories_item a:hover,
.popular_products_item a:hover,
.featured-memberships a:hover,
.sub_category_item a:hover,
.products_item a:hover,
.category_mid_section a:hover {
    transform: scale(1.02);
}

/* ---- Page-specific overrides ---- */
.page-id-75 h1 {
    text-align: center;
}

.page-id-75 .breadcrumb {
    display: none;
}

.page-id-75 .about_info_text p {
    margin-top: 35px;
}

.page-id-75 .about_info_text h1 {
    margin-top: 30px;
}

.page-id-81 .contacts_text_cont p {
    font-size: 20px;
    text-align: center;
}

.page-id-3696 .container {
    max-width: 100%;
    width: 100%;
}

.page-id-3696 #filebird-document-library,
.page-id-3696 .fbdl-listview,
.page-id-3696 .fbdl-listview-container,
.page-id-3696 .fbdl-table {
    width: 100%;
    max-width: 100%;
    padding: 10px;
}

.page-id-3696 h2 {
    padding-top: 20px;
}

/* ============================================================
   MEDIA QUERIES
   ============================================================ */

@media (min-width: 992px) {
    .menu-item-has-children > .sub-menu {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        display: block;
        width: max-content;
        min-width: 320px;
        padding: 0;
        margin: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: 0.2s ease;
        z-index: 9999;
    }
    .menu-item-has-children:hover > .sub-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

@media (max-width: 1100px) {
    .categories_items,
    .popular_products_items,
    .products,
    .sub_category,
    .post-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1025px) {
    .contacts_items {
        flex-wrap: wrap;
    }
    .contacts_item {
        flex: 0 0 100%;
    }
}

@media (max-width: 991.98px) {
    .nav_menu_in_header .sub-menu {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .first_screen_slider {
        height: 300px;
    }
}

@media (max-width: 860px) {
    .categories_items,
    .popular_products_items,
    .products,
    .sub_category,
    .post-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 870px) {
    .header_bottom .hamburger_menu_bottom {
        display: block;
    }
    .header_bottom .nav_menu_in_header {
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        transform: translateX(-150%);
        height: 100%;
        z-index: 11;
        max-width: 400px;
        overflow-y: scroll;
        min-height: max-content;
        background: #fff;
        padding: 25px;
    }
    .header_bottom .nav_menu_in_header.open {
        transform: none;
        display: block;
    }
    .header_bottom .nav_menu_in_header .close_icon {
        position: absolute;
        top: 25px;
        right: 0;
        width: 35px;
        height: 35px;
    }
    .header_bottom .nav_menu_in_header .close_icon::before {
        content: "";
        display: block;
        height: 2px;
        width: 30px;
        border-radius: 3px;
        background: #3c4960;
        transition: all 0.3s;
        transform: rotate(-40deg);
        position: absolute;
    }
    .header_bottom .nav_menu_in_header .close_icon::after {
        content: "";
        display: block;
        height: 2px;
        width: 30px;
        border-radius: 3px;
        background: #3c4960;
        transition: all 0.3s;
        transform: rotate(40deg);
        position: absolute;
    }
    .header_bottom nav ul {
        height: 100%;
        flex-direction: column;
    }
    .header_bottom nav ul li {
        width: 100%;
    }
    .header_bottom nav ul a {
        color: #642b34;
    }
    .page-id-3696 h2 {
        padding-top: 40px;
    }
}

@media (max-width: 640px) {
    .header_top .search {
        display: none;
    }
    section {
        margin: 25px 0;
    }
    h1 {
        font-size: 25px;
        margin-bottom: 20px;
    }
    .any_other_questions_form {
        padding: 15px;
    }
    .any_other_questions_form_cont .form_input p {
        font-size: 18px;
    }
    .any_other_questions_form_cont .form_input {
        margin-top: 10px;
    }
    .post-item {
        padding: 15px;
    }
    .post-item h2 {
        margin: 15px 0;
    }
    .post-item .btn {
        margin-top: 15px;
    }
    .single_product_content {
        margin: 25px 0;
    }
    .single_product_content_top .container {
        gap: 50px;
        flex-wrap: wrap;
    }
    .single_product_content .product_slider {
        width: 100%;
    }
    .single_product_content .product_slider .product_swiper_slider_single_image .product-thumb-item {
        height: 300px;
    }
    .single_product_content .single-product-content-wrapper {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .categories_items,
    .popular_products_items,
    .products,
    .sub_category,
    .post-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .header {
        height: 70px;
    }
    .header_bottom {
        display: block !important;
        background: transparent;
        padding: 0;
        position: absolute;
        top: 13px;
        right: 12px;
        width: auto;
        z-index: 120;
    }
    .header_bottom .hamburger_menu_bottom {
        display: flex !important;
        width: 44px;
        height: 44px;
        padding: 0;
        align-items: center;
        justify-content: center;
    }
    .header_bottom > .container > .header_bottom_links {
        display: none !important;
    }
    .header_bottom nav {
        display: block;
    }
    .header_top {
        height: 70px;
        padding: 0;
        background: #642b34;
    }
    .header_top .logo {
        max-width: 100px;
        padding-left: 0;
    }
    .header_top .hamburger_menu {
        padding: 10px;
    }
    .header_top .container {
        height: 70px;
        position: relative;
        display: flex;
        align-items: center;
        padding: 0 12px;
    }
    .cataloge_nmenu_popup_inner {
        padding-top: 40px;
    }
    .cataloge_nmenu_popup_inner .search {
        display: block;
    }
    .cataloge_nmenu_popup_inner_navigation {
        display: block;
        margin-top: 50px;
    }
    .cataloge_nmenu_popup_inner_navigation h4 {
        font-size: 20px;
    }
    .cataloge_nmenu_popup_inner_navigation a {
        color: #642b34;
    }
    .cataloge_nmenu_popup_inner_categories h4 {
        font-size: 20px;
        margin-top: 50px;
    }
    .cataloge_nmenu_popup_inner_social {
        display: block;
    }
    .cataloge_nmenu_popup_inner_social h4 {
        font-size: 20px;
        margin-top: 50px;
    }
    .cataloge_nmenu_popup_inner_social a {
        color: #642b34;
        margin-top: 5px;
    }
    .cataloge_nmenu_popup .hamburger_menu {
        right: 0;
    }
    .header_bottom_links {
        display: none;
    }
    .breadcrumb ul {
        gap: 15px;
    }
    .categories_item_img,
    .popular_products_item_img {
        height: 130px;
    }
    .categories_item_img img,
    .popular_products_item_img img {
        object-fit: contain;
    }
    .categories a,
    .popular_products_item a {
        padding: 15px;
    }
    h2 {
        font-size: 22px;
    }
    .categories_item h2,
    .categories_item h3 {
        font-size: 18px;
    }
    .footer_items {
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }
    .footer_items nav {
        width: 45%;
    }
    .footer_item {
        width: 100%;
    }
    .page-id-3696 h2 {
        display: none;
    }
}

@media (max-width: 400px) {
    .cataloge_nmenu_popup_inner {
        border-radius: 0;
    }
}
