@charset "utf-8";

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*上方選單解除滑動固定
.header_area.sticky { position:relative;}
*/

.navigation {
    display: flex;
    align-items: center;
}

.nav-header {
    max-width: 170px;
    padding: 8px 0;
    transition: all ease 0.3s;
}

.sticky .nav-header {
    max-width: 150px;
}

.nav-brand,
.nav-brand img {
    display: block;
}

.header_area {
    background: #fff;
    box-shadow: 0 0 20px rgba(0 0 0 / 12%);
    padding: 0;
}

.header_area.sticky {
    background: linear-gradient(180deg, rgb(255 255 255 / 100%), rgb(255 255 255 / 85%));
}

.main_header_area .container {
    max-width: 100%;
    padding: 0 0 0 2%;
}

.stellarnav ul {
    font-family: 'Noto Serif TC', sans-serif;
}

.stellarnav li.has-sub>a:after {
    content: none;
}

.stellarnav>ul>li:after {
    width: 0;
    position: absolute;
    height: 2px;
    content: "";
    background: #a39179;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    transition: all ease 0.3s;
}

.stellarnav>ul>li:last-of-type:after {
    background: #fff;
}

.stellarnav>ul>li:hover:after {
    width: 100%;
}

.stellarnav>ul>li:last-of-type {
    background: #c3af97;
    margin-left: 8px;
    transition: all ease 0.3s;
}

.stellarnav>ul>li:last-of-type:hover {
    background: #a39179;
}

.stellarnav>ul>li:last-of-type>a,
.stellarnav>ul>li:last-of-type:hover>a {
    color: #fff;
    margin: 0 20px;
}

.stellarnav>ul>li>a,
.stellarnav>ul>li.has-sub>a:not(.dd-toggle) {
    padding: 0 2px;
    color: #444;
    letter-spacing: .5px;
    display: block;
    font-weight: 500;
    margin: 0 12px;
    text-transform: none;
    height: 100%;
    line-height: 76px;
    transition: all ease 0.3s;
}

.stellarnav>ul>li:hover>a,
.stellarnav>ul>li.has-sub:hover>a:not(.dd-toggle) {
    color: #a39179;
}

.me_tp_features {
    display: none;
}

/*次分類*/
.stellarnav ul ul {
    width: 150px;
}

.stellarnav>ul>li>ul {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
}

.stellarnav li li {
    text-align: center;
    transition: all ease .3s;
}

.stellarnav li li:hover {
    background: #c3af97;
}

.stellarnav li li a:not(.dd-toggle),
.stellarnav li li.has-sub>a:not(.dd-toggle),
.stellarnav li li.has-sub:hover li a:not(.dd-toggle) {
    color: #666;
    padding: 9px 15px;
    font-weight: 500;
    line-height: initial;
    height: auto;
    margin: 0;
    position: relative;
    font-size: 15px;
}

.stellarnav li li:hover a:not(.dd-toggle),
.stellarnav li li.has-sub:hover a:not(.dd-toggle),
.stellarnav li li.has-sub:hover li:hover a:not(.dd-toggle) {
    color: #fff;
}


/* 商品下拉超過30個變大 */
.stellarnav.desktop li.bigMenu>ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    left: 0;
    width: 100%;
    position: fixed;
    padding: 20px;
}

.stellarnav.desktop li.bigMenu ul ul {
    top: 100%;
    left: 0;
    width: 100%;
    background: #efefef;
    height: auto;
    max-height: 300px;
    overflow: auto;
}

.stellarnav.desktop li.bigMenu ul ul li {
    margin: 0;
}

.stellarnav.hasBigMenu li.bigMenu li.has-sub>a:after {
    border-left: 6px solid transparent;
    border-bottom: unset;
    border-right: 6px solid transparent;
    border-top: 6px solid #898989;
    right: 5px;
}

/* 主分類超過30個但次分類直接顯示 
.stellarnav.desktop li.bigMenu>ul{grid-gap: 10px;}
.stellarnav.desktop li.bigMenu li{border: 0;}
.stellarnav.desktop li.bigMenu>ul>li>a{border: 1px solid #ddd;}
.stellarnav.desktop li.bigMenu ul ul{display: block !important; position: relative; top: 0; background: unset; border: 0;}
.stellarnav.desktop li.bigMenu ul ul li{border: 0;}
 主分類超過30個但次分類直接顯示-結束 */

/* 商品下拉超過30個--結束 */


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

#content_main,
#content {
    font-family: 'Noto Serif TC', sans-serif;
    background: #faf7f4;
}

.main_part {
    width: 90%;
    max-width: 1400px;
    padding: 50px 0;
}

.show_content {
    padding: 0;
}

.path {
    padding: 0 0 20px;
}

/*預設解除背景輪播*/
.swiper-pagination {
    display: none;
}

#content_main {
    margin: 0;
}

.bannerindex {
    position: relative;
    height: auto;
    background: #efe8e0;
}

.swiper-banner {
    position: static;
    margin: 0;
    height: auto;
}

/* .swiper-slide img { height:auto;} */
@media screen and (max-width: 768px) {
    .bannerindex {
        padding: 0;
        margin: 0;
    }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner {
    display: none;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



/*購物車*/
/*modify*/
.products-list .price {
    display: none;
}

.products-list .more {
    border-color: #c3af97;
    color: #c3af97;
}

.products-list .item a:hover .more {
    background: #c3af97;
}

.products-list .name {
    -webkit-line-clamp: 1;
    height: 22px;
    margin: 10px 0 12px;
    font-weight: 500;
}

/*預設*/
.product_page .show_content,
.product_info_page .show_content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
}

.product_page .product_menu_list {
    position: relative;
    width: 220px;
    letter-spacing: 1px;
    border-right: 1px solid #ccc;
    min-height: 45vw;
}

.product_page .products-list {
    width: calc(100% - 280px);
    grid-gap: 20px;
}

ul.page {
    width: 100%;
}

.product-layer-two li ul {
    position: static;
    margin: 0;
    width: 100%;
}

.product-layer-two li:hover ul {
    border: none !important;
    /*display:block !important;*/
}

.product-layer-two>li {
    width: 100%;
    max-width: 100%;
    text-align: left;
    border-bottom: 1px dotted #ccc;
    padding: 5px 5px 5px 0;
}

.product-layer-two li i {
    right: 15px;
    top: 18px;
    width: 20px;
    height: 20px;
    font-size: 20px;
    color: #444;
    transition: all ease .3s;
}

.product-layer-two>li:hover i,
.product-layer-two>li.active i {
    color: white;
}

.product_info_page .product_menu_list {
    display: none;
}

.product-wrapper {
    width: 100%;
}

.product-layer-two li li>a:before {
    content: "";
    position: absolute;
    width: 12px;
    height: 8px;
    background: transparent;
    left: 0;
    margin-left: -20px;
    top: 50%;
    margin-top: -4px;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

/*預設結束*/
.product-layer-two li li {
    display: block;
    background: none;
    border: none;
    padding: 0 14px;
    margin: 10px 0 0;
    transition: all ease .3s;
}

.product-layer-two li li:hover {
    padding-left: 34px;
}

.product-layer-two>li>ul li+li {
    margin-top: 0;
}

.product-layer-two>li>ul li:last-of-type {
    margin-bottom: 5px;
}

.product-layer-two li.active li {
    display: block;
}

.product-layer-two li li a,
.product-layer-two li.active li a {
    background: none;
    padding: 0;
    color: #666;
}

.product-layer-two li li:hover>a {
    color: #222;
    border: none;
}

.product-layer-two li li:hover>a:before {
    background: #222;
}

.product-layer-two li:hover>a:before,
.product-layer-two li.active>a:before {
    background: white;
    color: #c3af97;
}

.product-layer-two li a {
    padding: 10px 48px 10px 15px;
    color: #444;
    letter-spacing: 0px;
    border: none;
    font-weight: 500 !important;
    background: transparent;
    transition: all 0.3s;
    line-height: 160%;
    font-size: 15px;
    transition: all 0.3s;
}

.product-layer-two>li:hover>a,
.product-layer-two li.active>a {
    background: #c3af97;
    border: none;
    color: #fff;
}

.product-layer-two ul {
    grid-gap: 10px;
}

.sidebarBtn {
    padding: 0 0 0 30px;
    border: none;
    background: none;
}

.product_info li span {
    font-family: 'Noto Serif TC';
}

/*內頁*/
.product_main {
    padding: 0;
}

.proImgSwiper li {
    align-items: flex-start;
}

.pd_tabInner_contain {
    padding-top: 0;
}

.prod_related {
    padding: 48px 0;
    background: #f4efea;
}

.prod_related h6 span:before {
    color: #666;
}

.related_list li a p {
    margin: 6px auto 4px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related_list {
    max-width: 1400px;
    width: 90%;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
}

.related_list li {
    width: calc((100% - 60px) / 4);
}

.related_list li a {
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.pd_tabTitle li.activeTab a {
    font-size: 24px;
    font-weight: bold;
    color: #c3af97;
}

.pd_tabTitle li.activeTab::after {
    height: 2px;
    background: #c3af97;
}

.pd_tabTitle li {
    border: none;
}

.proImgSwiper img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.proImgSwiper {
    aspect-ratio: 4 / 3;
}

.product-wrapper .edit {
    color: #444;
    font-size: 16px;
    line-height: 170%;
    letter-spacing: .5px;
    padding: 20px 0 0;
}

.prod_tabs {
    max-width: 77%;
    margin-right: auto;
    margin-left: auto;
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*文章設定*/
.blog_page h4.blog_category_title {
    display: none;
}

.blog_box,
.blog_le {
    padding: 0;
}

.blog_ri {
    padding: 0 0 0 60px;
}

.blog_subbox {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px 30px;
}

.blog_subbox:before {
    content: none;
}

.subbox_item {
    width: 100%;
    margin: 0;
    border-bottom: none;
}

.subbox_item a {
    display: flex;
    flex-flow: column wrap;
    gap: 0;
}

.blog_list_le {
    height: auto;
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
}

.blog_list_le img {
    min-width: 100%;
    margin: 0 auto;
    object-position: center;
    transition: 1s ease;
}

.subbox_item a:hover .blog_list_le img {
    transform: scale(1.1);
}

.blog_list_ri {
    display: flex;
    flex-flow: column wrap;
    padding: 15px 0;
    position: relative;
    justify-content: center;
}

.blog_list_ri h5 {
    color: #c3af97;
    font-size: 20px;
    font-weight: bold;
}

.blog_list_ri em {
    font-weight: 400;
    margin: 6px 0 18px;
}

.blog_list_ri p {
    line-height: 160%;
    padding: 14px 0 0;
    margin-bottom: 14px;
    -webkit-line-clamp: 2;
    text-align: justify;
    border-top: 1px solid #bbb;
    margin-top: 0;
}

.subbox_item a:before,
.subbox_item a:after {
    content: none;
}

h5.blog_le_t {
    display: none;
}

.blog_le .accordion {
    border-radius: 0;
}

.accordion li .link a {
    color: #444;
    font-weight: 500;
    font-size: 15px;
    padding: 12px;
}

.accordion li .link {
    border-bottom: none;
}

.accordion li {
    transition: all 0.2s ease;
}

.blog_le .accordion>li:hover,
.blog_le .accordion>li.open:hover,
.blog_le .accordion>li.on_this_category:hover,
.blog_le .accordion>li.open,
.blog_le .accordion>li.on_this_category {
    background: #c3af97 !important;
}

.blog_le .accordion>li.open .link a,
.blog_le .accordion>li.open .link i {
    color: #fff !important;
}

.submenu {
    background: #faf7f4;
    font-size: 14px;
}

.submenu a {
    font-family: 'Noto Serif TC', serif;
    color: #666;
    letter-spacing: 0px;
    font-weight: 500;
    padding: 12px 12px 12px 36px;
    border-left: #faf7f4 0 solid;
    transition: all .15s;
}

.submenu li.on_this_category a,
.submenu a:hover {
    background: #faf7f4;
    color: #222;
}

.submenu a i {
    left: 12px;
    font-weight: var(--fa-style, 900);
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
}

.submenu a:hover {
    border-left-width: 4px;
}

.blog_search input[type=search] {
    background: #fff;
    font-size: 13px;
    border-radius: 0;
    padding: 10px 36px 10px 12px;
}

.blog_search input[type=submit] {
    filter: grayscale(20);
}

.blog_le .accordion li .link i {
    transition: none;
}

/*內頁*/
.articel_mainPic,
.blog_shareData {
    display: none;
}

h4.blog_category_title {
    padding: 0;
    margin-bottom: 0;
    font-size: 26px;
    color: #5a4b37;
}

.blog_box_edit {
    color: #444;
    font-size: 16px;
    letter-spacing: .5px;
}

.blog_box_edit * {
    line-height: 170%;
}

.blog_back {
    width: 100%;
    margin: 0 auto;
    grid-gap: 10px;
    justify-content: center;
}

.blog_back a {
    width: 100%;
    font-weight: 500 !important;
}

.blog_back a:hover {
    background: #b49b82 !important;
}

.blog_back a.article_btn_next,
.blog_back a.article_btn_prev,
.blog_back a.article_btn_back {
    background: #c3af97;
    transition: all .3s ease;
}

.news_related {
    padding: 48px 0;
    background: #f4efea;
}

.news_related_list {
    max-width: 1400px;
    width: 90%;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
}

.news_related_list li {
    width: calc((100% - 60px) / 4);
}

.news_related_list li a {
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.lastPage {
    background: #c3af97;
    margin: 40px auto 20px;
}

.news_related h6 span:before {
    color: #666;
}

.news_related_list li a p {
    margin: 6px auto 4px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/*促銷*/
.promotions_page .main_part {
    max-width: 1000px;
    padding-bottom: 100px;
}

.promotion_title .time,
.promotion_title em,
.promotions_page .other_promotion,
.promotions_page ul.page {
    display: none;
}

.promotions_page .edit {
    line-height: 1.7;
    color: #444;
    font-size: 16px;
    letter-spacing: .5px;
}

.promotion_title h2 {
    font-weight: bold;
    font-size: 32px;
    color: #5a4b37;
    font-family: 'Cormorant Infant';
}

/*
.promotions_page .edit>h4,
.promotions_page .edit>p {
    text-indent: -38px;
    padding-left: 38px;
}

.promotions_page .edit>h4 {
    margin-left: -1px;
}*/

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*表單*/
.contact_content {
    max-width: 1000px;
    padding: 100px 5% 120px;
}

.contact_content .information_left {
    display: none;
}

.contact_content .information_right {
    width: 100%;
    padding: 0;
}

.blank_letter {
    padding-top: 0;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #5a4b37;
    font-family: 'Noto Serif TC', sans-serif;
    display: flex;
    justify-content: center;
    align-items: end;
}

.contact_form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    grid-gap: 20px;
    margin-bottom: 0;
    margin-top: 40px;
}

.contact_form li:nth-of-type(-n+4),
.contact_form li:nth-last-of-type(-n+2) {
    width: calc(50% - 10px);
}

.contact_form li.last {
    margin-top: auto;
    margin-bottom: 0;
}

.contact_form li input.noborder,
.contact_form li textarea.noborder {
    background: #fff;
    padding: 8px;
    border: none;
    border-bottom: 1px solid #ddd;
}

.contact_form li {
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    padding: 0;
    border-bottom: none;
    color: #444;
    grid-gap: 8px;
}

.contact_form li .form__label {
    display: flex;
    flex-flow: row wrap;
    width: 100%;
    text-align: left;
    max-width: 100%;
    font-weight: normal;
    padding: 0;
    background: none;
}

.star {
    order: 1;
    height: 18px;
}

.contact_content>form {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

.contact_form li .form__insert {
    line-height: 165%;
}

.contact_form li.last cite {
    background: #c3af97;
}

.contact_form li.last blockquote,
.contact_form li.last cite {
    border-color: #c3af97;
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*footer*/
.footer_info li p.phone {
    order: -1;
}

.footer_logo {
    width: 170px;
    margin-top: 15px;
}

.footer_logo img {
    max-width: 100%;
    display: block;
}

.footer {
    background: #efe8e0;
    font-family: 'Noto Serif TC', sans-serif;
    font-weight: 400;
}

.footer .center {
    max-width: 832px;
    width: 90%;
}

.footer_info {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0;
    row-gap: 25px;
}

.footer_info ul {
    width: calc(100% - 240px);
    letter-spacing: 0;
}

.footer_info li:nth-child(1) {
    display: flex;
    flex-flow: row wrap;
}

.footer_info li p {
    width: 49%;
    letter-spacing: 0;
}

.footer_info li p,
.footer_info li a {
    color: #444;
}

.footer_menu a:hover {
    background: none;
    color: #a39179;
}

.footer_menu a {
    border: none;
    background: transparent;
    padding: 0 16px;
    margin: 0;
    border-right: 1px rgba(0, 0, 0, .25) solid;
    transition: all .25s;
}

.footer_menu a:first-of-type {
    display: none;
}

.footer_menu a:nth-of-type(2) {
    padding-left: 0;
}

.footer_menu a:last-of-type {
    border-right: none;
}

.copy,
.copy a,
.copy a:hover {
    color: #fff;
}

.copy {
    border-top: none;
    padding: 18px 0;
    background: #a39179;
}

.box_link {
    display: none;
}


@media screen and (max-width: 1024px) {
    .footer_logo {
        width: 160px;
        margin-left: -5px;
    }

    .footer_info {
        flex-direction: column;
        align-items: flex-start;
        row-gap: 20px;
    }

    .footer_info ul {
        width: 100%;
    }

    .footer_menu {
        margin: 0 auto;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(min(60px, 100%), auto));
        gap: 18px;
    }

    .footer_menu a {
        padding: 0;
        border-right: none;
    }

    .footer_info li {
        padding-left: 0;
        padding-right: 0;
    }

    .footer_info li p {
        width: 100%;
    }

    .copy {
        text-align: left;
        padding: 18px 5%;
    }

    .contact_content {
        padding: 0 5% 80px;
    }

    .contact_form li:nth-of-type(-n+4),
    .contact_form li:nth-last-of-type(-n+2) {
        width: 100%;
    }

    .blog_subbox {
        grid-template-columns: 1fr 1fr;
        grid-gap: 0 20px;
    }
}

@media screen and (max-width: 768px) {
    .footer.with_shopping_mode {
        padding: 20px 0 54px;
    }

    #to_top {
        bottom: 64px;
    }

    .sticky .nav-header,
    .nav-header {
        max-width: 140px;
    }

    #bottom_menu li:not(:first-of-type) {
        display: none;
    }

    #bottom_menu li {
        border: none;
    }

    .stellarnav .menu-toggle {
        padding: 10px 0;
    }

    .stellarnav>ul>li>a,
    .stellarnav>ul>li.has-sub>a:not(.dd-toggle),
    .stellarnav.mobile>ul>li>a,
    .stellarnav>ul>li:last-of-type>a,
    .stellarnav>ul>li:last-of-type:hover>a {
        height: auto;
        line-height: 150%;
        margin: 0 8px;
    }

    .stellarnav.mobile.right .close-menu,
    .stellarnav.mobile.left .close-menu {
        background: #a39179;
    }

    .stellarnav.mobile>ul {
        border-top: none;
        border-right: none;
        box-shadow: 0 0 10px rgba(0 0 0 / 12%);
    }

    .stellarnav.mobile li.open {
        background: #faf7f4;
    }

    .stellarnav.mobile li.open li.open {
        background: #b49b82;
    }

    .stellarnav>ul>li>a,
    .stellarnav>ul>li.has-sub>a:not(.dd-toggle),
    .stellarnav.mobile>ul>li>a,
    .stellarnav>ul>li:last-of-type>a,
    .stellarnav>ul>li:last-of-type:hover>a {
        padding: 10px 44px 10px 10px;
    }

    .stellarnav .icon-close:after,
    .stellarnav .icon-close:before,
    .stellarnav.mobile>ul>li>ul>li.has-sub.open>a.dd-toggle .icon-plus:before,
    .stellarnav.mobile>ul>li>ul>li.has-sub.open>a.dd-toggle .icon-plus:after {
        border-color: #fff;
    }

    .stellarnav a,
    .stellarnav.mobile>ul>li>ul>li.has-sub.open>a {
        color: #fff;
    }

    .stellarnav.mobile>ul>li.open>a.dd-toggle {
        padding: 12px 6px 0;
    }

    .stellarnav.mobile li li a.dd-toggle {
        margin-right: 5px;
    }

    .stellarnav.mobile li.open li.open a.dd-toggle {
        padding: 8px 0 0;
    }

    .stellarnav.mobile li li.has-sub a:not(.dd-toggle),
    .stellarnav li li>a:not(.dd-toggle) {
        padding: 10px 43px 10px 17px;
    }

    .stellarnav li li {
        text-align: left;
        background: #fff;
    }

    .stellarnav li li:hover>a.dd-toggle .icon-plus:before,
    .stellarnav li li:hover>a.dd-toggle .icon-plus:after {
        border-color: #fff;
    }

    .stellarnav>ul>li:last-of-type {
        margin-left: 0;
    }

    .stellarnav>ul>li:after {
        content: none;
    }

    .stellarnav>ul>li:last-of-type:hover {
        background: #c3af97;
    }

    .main_part,
    .promotions_page .main_part {
        padding: 40px 0;
    }

    .path {
        padding: 0px 0 5px;
    }

    .blog_ri,
    .sidebarBtn {
        padding: 0;
    }

    .blog_subbox {
        grid-template-columns: 1fr;
    }

    .news_related h6 span:before,
    .prod_related h6 span:before,
    .pd_tabTitle li.activeTab a {
        font-size: 20px;
    }

    .blog_list_ri p {
        font-size: 14px;
    }

    .blog_search {
        margin-bottom: 24px;
    }

    h4.blog_category_title {
        font-size: 22px;
    }

    .related_list li,
    .news_related_list li {
        width: calc((100% - 20px) / 2);
    }

    .product_menu_list>h5 {
        display: block;
        font-weight: bold;
        font-size: 26px;
        color: #5a4b37;
    }

    .product_page .product_menu_list {
        width: 100%;
        letter-spacing: 0;
        border-right: none;
        min-height: auto;
        margin-bottom: 24px;
    }

    .product_page .products-list {
        width: 100%;
        grid-template-columns: 1fr 1fr;
    }

    a.pd_menu_toggle i {
        width: 24px;
    }

    .product-layer-two li a {
        padding-left: 8px;
    }

    .product-layer-two li i {
        right: 8px;
    }

    .product-layer-two>li {
        padding-right: 0;
        margin: 0;
    }

    .product-layer-two li li {
        padding: 0 8px;
    }

    .product-layer-two li li:hover {
        padding-left: 29px;
    }

    .mobile_product_name {
        display: none;
    }

    .prod_tabs {
        max-width: 100%;
    }

    #prod_thumbSwiper {
        margin-top: 5px;
    }


}