@media (max-width: 1199px) {
    .header-navigation {
        position: fixed;
        top: 0;
        left: 0;
        max-width: 400px;
        width: 100%;
        background-color: var(--primary-color);
        height: 100vh;
        z-index: 6;
        -webkit-transform: translateX(-200%);
        -ms-transform: translateX(-200%);
        transform: translateX(-200%);
        -webkit-transition: all 0.5s ease-in-out;
        -o-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
        -webkit-transition-delay: 0.1s;
        -o-transition-delay: 0.1s;
        transition-delay: 0.1s;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .is-navigation .header-navigation {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    .header .header-navigation > ul,
    .header.is-scroll .header-navigation > ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        overflow-y: auto;
    }

    .header .header-navigation > ul > li {
        width: 100%;
        padding: 0;
        border-bottom: 1px solid rgb(255 255 255 / 9%);
    }

    .header .header-navigation > ul > li > button,
    .header .header-navigation > ul > li > ul > li > button,
    .header .header-navigation > ul > li > a {
        width: 100%;
        background-color: transparent;
        border: 1px solid transparent;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 15px;
        font-weight: 600;
        color: var(--bs-white);
        text-transform: uppercase;
    }

    .header .header-navigation > ul > li > button i,
    .header .header-navigation > ul > li > ul > li > button i {
        width: 25px;
        height: 25px;
        background-color: #ffffff1a;
        color: var(--bs-white);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        border-radius: 2px;
    }

    .header .header-navigation > ul > li > button[aria-expanded='true'] i {
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .header .header-navigation > ul > li:hover > a,
    .header .header-navigation > ul > li > button[aria-expanded=true] {
        color: var(--bs-white);
        background-color: transparent;
    }

    .header .header-navigation > ul > li > ul, .header .header-navigation > ul > li > ul > li > ul {
        background-color: rgb(var(--primary-rgb), 0.9);
        position: unset;
        left: unset;
        width: 100%;
        top: unset;
        border-radius: 0;
        transition: var(--transition-default);
        box-shadow: unset;
        opacity: unset;
        visibility: unset;
        pointer-events: unset;
    }

    .header .header-navigation > ul > li:hover > a i {
        -webkit-transform: unset;
        -ms-transform: unset;
        transform: unset;
    }

    .header .header-navigation > ul > li > ul > li > a,
    .header .header-navigation > ul > li > ul > li > ul > li > a {
        color: var(--bs-gray-300);
        font-weight: 400;
    }

    .header .header-navigation > ul > li > ul > li:not(:last-child), .header .header-navigation > ul > li > ul > li > ul > li:not(:last-child) {
        border-bottom: 1px solid transparent;
    }

    .header .header-navigation > ul > li > ul > li:hover > a, .header .header-navigation > ul > li > ul > li > ul > li:hover a {
        color: var(--bs-gray-200);
        background-color: transparent;
    }

    .page-home .header .header-navigation > ul > li > a {
        color: var(--bs-gray-200);
    }
}

@media (max-width: 1024px) {
    .detail-product__top::after {
        width: 100%;
    }
}

@media (max-width: 992px) {

}

@media (max-width: 767px) {

}

@media (max-width: 576px) {
    .detail-product__bottom .box-product .box-product__top{
        height: 50vh;
    }
}

@media (max-width: 375px) {

}
