@media (min-width: 1200px) {
    .section-hero__banner {
        width: calc(100% - 220px);
    }

    .header .header-bottom .header-category .navigation-sub > ul > li > ul {
        position: absolute;
        background-color: var(--bs-white);
        width: max-content;
        display: flex;
        flex-direction: row;
        gap: 15px;
        padding: 15px 20px;
        border-radius: 8px;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
        border: 1px solid var(--bs-gray-200);
        animation: fadeIn 0.25s ease;
    }

    .other-page .header .header-bottom .header-category .navigation-sub,
    .page-home .header.is-scroll .header-bottom .header-category .navigation-sub{
        background-color: var(--bs-white);
        position: absolute;
        left: 0;
        width: 220px;
        top: 100%;
        z-index: 2;
        border-radius: 3px;
        transition: var(--transition);
        transform: translateY(20px);
        box-shadow: 0 4px 8px rgb(97 97 97 / 14%), 0 8px 16px rgb(97 97 97 / 14%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .other-page .header .header-bottom .header-category:hover .navigation-sub,
    .page-home .header.is-scroll .header-bottom .header-category:hover .navigation-sub{
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

@media (max-width: 1200px) {

    .header-hamburger {
        order: 3;
    }

    .header-navigation {
        position: fixed;
        top: 0;
        left: 0;
        width: 400px;
        background-color: var(--bs-white);
        height: 100vh;
        z-index: 21;
        transform: translateX(-200%);
        transition: all 0.5s ease-in-out;
        transition-delay: 0.1s;
        padding: 30px 35px;
        backdrop-filter: blur(10px);
    }

    .is-navigation .header-navigation {
        transform: translateX(0);
    }

    .header .header-bottom .header-category .navigation-sub > ul,
    .header .header-navigation > ul {
        flex-direction: column;
        margin-top: 50px;
    }

    .header .header-navigation > ul > li {
        width: 100%;
    }

    .header .header-navigation > ul > li > a,
    .header .header-bottom .header-category .navigation-sub ul li a {
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 15px 0 !important;
        color: var(--bs-black) !important;
        font-weight: 700 !important;
        font-size: 16px !important;
    }

    .header .header-navigation > ul > li:not(:last-child) {
        border-bottom: 1px solid rgb(244 241 241 / 16%);
    }

    .header .header-navigation > ul > li > ul > li:not(:last-child) {
        border-bottom: 1px solid transparent;
    }

    .header .header-navigation > ul > li > ul,
    .header .header-navigation > ul > li > ul > li ul,
    .header .header-bottom .header-category .navigation-sub > ul > li > ul {
        background-color: transparent;
        width: 100%;
        border-left: 2px solid rgb(244 241 241 / 61%);
        position: unset !important;
        top: unset !important;
        left: unset !important;
        transform: unset !important;
        opacity: unset !important;
        pointer-events: auto !important;
        visibility: unset !important;
        box-shadow: none !important;
    }


    .header .header-bottom .header-category .navigation-sub > ul > li > ul > li .icon-lv2{
        display: block;
    }

    .header .header-bottom .header-category .navigation-sub > ul > li > ul > li {
        border-right: none !important;
    }

    .header .header-bottom .header-category .navigation-sub > ul > li > ul > li > ul > li {
        border-left: 2px solid rgb(244 241 241 / 61%);
        margin-left: 30px;
    }

    .header .header-navigation > ul > li:hover > a {
        color: var(--bs-white);
    }

    .header .header-navigation > ul > li > a:hover {
        color: var(--bs-white);
    }

    .header .header-navigation > ul > li:not(:first-child)::after {
        display: none;
    }

    .header .header-navigation > ul > li > ul > li > a, .header .header-navigation > ul > li > ul > li ul > li > a {
        color: var(--bs-black);
        width: 100%;
        padding: 10px 16px;
        font-weight: 500;
    }

    .page-home .header .header-bottom .header-category .navigation-sub > ul > li > a:hover,
    .other-page .header .header-bottom .header-category .navigation-sub > ul > li > a:hover,
    .header .header-navigation > ul > li > ul > li > ul > li > a:hover,
    .header .header-navigation > ul > li > ul > li > a:hover {
        border-left: 3px solid transparent;
    }

    .header .header-navigation > ul > li > ul > li ul,
    .header .header-bottom .header-category .navigation-sub > ul > li > ul > li > a {
        margin-left: 10%;
    }

    .page-home .header.is-scroll .header-bottom .header-category .navigation-sub,
    .header .header-bottom .header-category > .navigation-sub {
        position: fixed !important;
        top: 0  !important;
        left: 0 !important;
        width: 400px !important;
        background-color: var(--bs-white) !important;
        height: 100vh !important;
        z-index: 21 !important;
        transform: translateX(-200%);
        transition: all 0.5s ease-in-out !important;
        transition-delay: 0.1s !important;
        padding: 30px 35px !important;
        backdrop-filter: blur(10px) !important;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .is-category .header .header-bottom .header-category > .navigation-sub,
    .is-category .header.is-scroll .header-bottom .header-category > .navigation-sub {
        transform: translateX(0) ;
    }

    body.is-category,
    body.is-navigation {
        overflow: hidden;
    }

    .header .header-navigation > ul > li > ul > li > a:hover {
        border-left: 3px solid transparent;
    }

    .header .header-bottom .header-category .navigation-sub > ul {
        background-color: transparent !important;
        box-shadow: none !important;
        position: static !important;
        width: 100% !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: none !important;
        padding-left: 0;
        flex-direction: column;
        margin-top: 50px;
        overflow-y: visible !important;
    }

    .header .header-bottom .header-category .navigation-sub ul li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .header .header-bottom .header-category .navigation-sub i {
        color: var(--bs-black);
        transform: rotate(90deg);
    }
}


@media (max-width: 1024px) {
    .section-heading .heading-title {
        font-size: 1.9em;
    }

    .section-heading .heading-description {
        font-size: 1em;
    }

    .section-heading .heading-title-2 {
        font-size: 1.7em;
    }

    .hero-content .hero-content_title {
        font-size: 1.6em;
    }

    .page-article .article-content .article-title {
        font-size: 1.8em;
    }

    #detailContent h1 {
        font-size: 1.5em;
    }

    #detailContent h2 {
        font-size: 1.45em;
    }

    #detailContent h3 {
        font-size: 1.4em;
    }

    #detailContent h4 {
        font-size: 1.35em;
    }

    #detailContent h5 {
        font-size: 1.3em;
    }

    #detailContent h6 {
        font-size: 1.25em;
    }
}


@media (max-width: 991px) {


    .header-category__title{
        height: 40px;
    }

    .header.is-scroll .header-logo{
        width: 65px;
        height: 65px;
    }


    .hero-content .hero-content_title {
        font-size: 1.4em;
    }

    .hero-content .hero-content_desc {
        font-size: 1em;
    }

    .button-theme {
        font-size: 0.95em;
        padding: 8px 18px;
    }

    .sidebar-filter {
        position: fixed;
        top: 0;
        left: 0;
        max-width: 290px;
        width: 100%;
        height: 100vh;
        z-index: 30;
        background-color: var(--bs-white);
        border-right: 1px solid rgba(119, 119, 119, 0.12);
        transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
        border-radius: 0 8px 8px 0 !important;
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
    }

    .show-filter .sidebar-filter {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .filter-button {
        max-width: 300px;
        width: 100%;
    }

    .footer{
        margin-bottom: 59px;
    }

    .floating-contact {
        bottom: 0;
        left: 0;
        top: unset;
        width: 100%;
        border: unset;
        border-radius: 0;
        padding: 5px;
        background-color: var(--primary-color) !important;
        z-index: 9;
    }

    .floating-contact .floating-item {
        width: calc(100% / 3);
        color: var(--primary-color-10);
        height: 100%;
    }

    .floating-contact .floating-item.scroll-top__mobile {
        display: flex !important;
    }

    .floating-contact .floating-item:not(:last-child) {
        margin-bottom: 0;
    }

    .floating-contact .floating-item:not(:first-child) {
        border-left: 1px solid #f3f0f017;
    }

    .floating-contact .floating-item .image,
    .floating-contact .floating-item .icon {
        width: 28px;
        height: 28px;
    }

    .floating-contact .floating-item .image img {
        padding: 4px;
    }

    .floating-contact .floating-item .title {
        font-weight: 400 !important;
    }

    .floating-contact .floating-item .icon {
        font-size: 15px;
    }

    .floating-contact .floating-item:hover {
        color: var(--bs-white);
    }

    .scroll-top {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .section-sort .product-sort {
        width: 240px;
    }

    .section-sort .list-price-sort {
        padding: 6px;
    }

    .section-sort .list-price-sort > li > a {
        padding: 8px 12px;
    }

    .category-product .section-product_category .section-heading .heading-title{
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {

    .category-product .section-product_category .section-heading .heading-title{
        font-size: 1.1rem;
    }

    .section-product .section-heading .heading-title {
        font-size: 1.2rem;
    }

    .section-product .section-heading .heading-top {
        width: 250px;
    }

    .section-heading .heading-title {
        font-size: 1.8em;
    }

    .section-heading .heading-title-2 {
        font-size: 1.6em;
    }

    .page-article .article-content .article-title {
        font-size: 1.6em;
    }

    #detailContent h1 {
        font-size: 1.35em;
    }

    #detailContent h2 {
        font-size: 1.3em;
    }

    #detailContent h3 {
        font-size: 1.25em;
    }

    #detailContent h4 {
        font-size: 1.2em;
    }

    #detailContent h5 {
        font-size: 1.15em;
    }

    #detailContent h6 {
        font-size: 1.1em;
    }

    .filter-button {
        width: 39px;
        padding: 0;
    }

    .page-detail .section-breadcrumb .breadcrumb-item:last-child {
        display: none !important;
    }

    .section-hero__right {
        overflow-y: auto;
    }
}

@media (max-width: 460px) {
    .detail-product__item {
        width: 47%;
    }

    .page-contact .contact-list {
        padding: 25px 20px;
    }
}

@media (max-width: 375px) {
    .detail-product__item {
        width: 100%;
    }


    .section-product .section-heading .heading-title {
        font-size: 1rem;
    }

    .section-product .section-heading .heading-top {
        width: 200px;
    }
}
