.setting-menu2 > .row > div {
    display: flex;
    align-items: center;
}

.setting-menu2 > .row > div:nth-child(2) {
    justify-content: flex-end;
}

header {
    margin: 0 30px 0 30px;
}

.setting-menu2 {
    border-top: 1px solid #ccc;
}

.search-section {
    width: 600px;
}

.slider-main, .slider-main img {
    width: 100%;
    object-fit: cover;
    height: 40vw;
}

.slider-main .swiper-pagination-bullet {
    position: relative;
    width: 30px;
    height: 30px;
    border: 2px solid transparent;
    background-color: transparent;
    color: transparent;
    opacity: 1;
    outline: none;
}

.slider-main .swiper-pagination-bullet:after {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    margin-top: -0.1875rem;
    margin-left: -0.1875rem;
    border-radius: 100%;
    background-color: #ddc2bd;
    content: '';
}

.slider-main .swiper-pagination-bullet-active {
    border: 2px solid var(--color-highlight);
    color: var(--color-highlight);
}

.slider-main .swiper-pagination-bullet-active:after {
    background-color: var(--color-highlight);
}

.swiper-button-prev:hover, .swiper-button-next:hover {
    color: var(--color-highlight) !important;
}

.swiper-slide--tile b {
    font-weight: bold;
}

/*Button Contact Fixed*/
.contact-fixed {
    z-index: 999;
    right: 2rem;
    bottom: 7rem;
    position: fixed;
    height: 6rem;
    width: 6rem;
    background: var(--color-highlight);
    border-radius: 50%;
    cursor: pointer;
}

.contact-fixed__button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 6rem;
    height: 6rem;
    color: var(--white);
    font-size: 1.1rem;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: ease-in .12s all;
    -o-transition: ease-in .12s all;
    transition: ease-in .12s all;
}

.contact-fixed__button.show {
    -webkit-transform: rotate(0) scale(1);
    -ms-transform: rotate(0) scale(1);
    transform: rotate(0) scale(1);
}

.contact-fixed__button i {
    font-size: 2.2rem;
}

.contact-fixed__pulsation {
    width: 8.4rem;
    height: 8.4rem;
    background-color: var(--color-highlight);
    border-radius: 50%;
    position: absolute;
    left: -1.2rem;
    top: -1.2rem;
    z-index: -1;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-animation: arcontactus-pulse 2s infinite;
    animation: arcontactus-pulse 2s infinite;
}

.contact-fixed__pulsation:nth-child(2n) {
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
}

.contact-fixed__close {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 6rem;
    height: 6rem;
    color: var(--white);
    font-size: 2.2rem;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: ease-in .12s all;
    -o-transition: ease-in .12s all;
    transition: ease-in .12s all;
}

.contact-fixed__close.show {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.contact-fixed__list {
    background: center no-repeat var(--white);
    box-shadow: 0 0 10px rgb(0 0 0 / 60%);
    width: 20rem;
    position: absolute;
    bottom: 8rem;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 1.4rem 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 7px;
    -webkit-transform-origin: 80% 105%;
    -ms-transform-origin: 80% 105%;
    transform-origin: 80% 105%;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: ease-out .12s all;
    -o-transition: ease-out .12s all;
    transition: ease-out .12s all;
    z-index: 10000;
}

.contact-fixed__list:before {
    position: absolute;
    bottom: -0.7rem;
    right: 2.5rem;
    left: auto;
    display: inline-block!important;
    border-right: 8px solid transparent;
    border-top: 8px solid #FFF;
    border-left: 8px solid transparent;
    content: '';
}

.contact-fixed__list.show {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.contact-fixed__item {
    display: flex;
    align-items: center;
    padding: 0.8rem 2rem;
    width: 100%;
    color: var(--color-main);
    font-weight: bold;
}

.contact-fixed__item:hover {
    background-color: #eeeeee;
    color: var(--color-text);
}

.contact-fixed__item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    margin-right: 1rem;
    background-color: var(--color-highlight);
    border-radius: 50%;
    padding: 0.8rem;
}

.contact-fixed__item-icon img {
    filter: brightness(0) invert(1);
}

@keyframes arcontactus-pulse {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1
    }

    50% {
        opacity: .5
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0
    }
}

/*End Button Contact Fixed*/
.social-section li a {
    color: var(--white);
    margin-right: 1rem;
    font-size: 1.6rem;
    width: 3.6rem;
    height: 3.6rem;
    line-height: 3.6rem;
    display: block;
    background: var(--color-text);
    text-align: center;
    border-radius: 0.5rem;
}

.social-section li a:hover {
    background: var(--color-highlight);
}

.title-section-slogan span {
    color: var(--color-highlight);
    font-weight: 600;
    font-size: 18px;
    position: relative;
    letter-spacing: .1em;
}

.title-section-slogan span:before {
    position: absolute;
    content: '';
    top: 9px;
    left: -85px;
    width: 70px;
    height: 2px;
    background-color: var(--color-highlight);
}

.title-section-slogan span:after {
    position: absolute;
    content: '';
    top: 9px;
    right: -85px;
    width: 70px;
    height: 2px;
    background-color: var(--color-highlight);
}

.icon-about-us-highlight {
    font-size: 70px;
    color: var(--color-highlight);
}

.tile-about-us-highlight {
    font-size: 1.8rem;
    font-weight: 600;
    position: relative;
}

.box-about-us-home {
    padding: 80px 0;
}

/*.tile-about-us-highlight:before {*/
/*    position: absolute;*/
/*    content: '';*/
/*    top: 35px;*/
/*    left: 0;*/
/*    right: 0;*/
/*    width: 100px;*/
/*    height: 2px;*/
/*    text-align: center;*/
/*    background-color: black;*/
/*    margin: 0 auto;*/
/*}*/
.hover-about-us:hover .icon-about-us-highlight {
    color: white;
}

.hover-about-us {
    padding: 15px 10px;
}

.hover-about-us:hover {
    /* background-color: #f95d5430; */
    border-radius: 20px;
    color: white;
}

.bg-img-product-home01 {
    background-position: center;
    padding: 80px 0 50px 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.cus-box-product-home01 .price {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    font-size: 40px;
}

.cus-box-product-home01 .price-amount.old-price::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 0.5px;
    background-color: var(--color-text);
    width: 150px;
    margin: 0 auto;
}

.cus-box-product-home01 .price-amount.old-price {
    margin-left: 0;
    font-size: 35px;
}

.cus-box-product-home01 .inner-content {
    background-color: white;
    border: 1px solid #0003;
    border-radius: 4px;
    padding: 60px 30px 80px 30px;
}

.cus-box-product-home01 .product-title {
    font-size: 23px;
    font-weight: bold;
    margin: 10px 0 20px 0;
}

.dots-cham-css {
    font-size: 25px;
    color: var(--color-highlight);
}

.btn-product-action {
    border: 2px solid var(--color-highlight);
    background-color: var(--color-highlight);
    color: white;
    border-radius: 30px;
    padding: 10px 15px;
}

.btn-product-action:hover {
    border: 2px solid var(--color-highlight);
    background-color: white;
    color: var(--color-highlight);
}

.cus-box-product-home01 .product-action-ab {
    margin-top: 45px;
}

.cus-box-product-home01 .swiper {
    position: static;
}

.cus-box-product-home01 .swiper-button-next {
    right: 5%;
}

.cus-box-product-home01 .swiper-button-prev {
    left: 5%;
}

.fixed {
    margin: auto;
    z-index: 11;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    animation: stuckMoveDown .6s;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: white;
    padding: 0 30px;
    box-shadow: 0 2px 10px -3px rgb(0 0 0 / 50%);
}

@keyframes stuckMoveDown {
    0% {
        transform: translateY(-100%)
    }

    100% {
        transform: translateY(0)
    }
}

.search-section .input-group {
    border-color: var(--color-highlight) !important;
}

.search-section input.form-control, .search-section .input-group > .input-group-append > .btn {
    height: 3.6rem;
    padding: 0 1.5rem;
    line-height: 3.6rem;
}

.search-section .input-group > .input-group-append > .btn:hover {
    color: var(--color-highlight) !important
}

.cus-2product-dao .product-title {
    font-size: 40px;
    width: 70%;
}

.description-2sp-dao {
    font-size: 20px;
    border-bottom: 2px solid var(--color-highlight);
    margin: 10px 0 30px 0;
    padding-bottom: 15px;
}

.product-action-dao {
    margin: 35px 0 35px 0;
}

.box-2product-dao {
    margin: 80px 0;
}

.cus-2product-dao > .row > div:nth-child(2) .product-item > .row {
    flex-direction: row-reverse;
    border-top: 1px solid #ccc;
    padding-top: 30px;
}

.newsletter .form-control {
    height: 4.5rem;
    width: 70%;
    border-radius: 0.8rem;
}

.btn-newsletter {
    background: var(--cyan);
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
    padding: 0 1rem;
    width: calc(30% - 1rem);
    border: 2px solid var(--cyan);
    height: 4.5rem;
    line-height: 4.5rem;
    transition: all .5s
}

.btn-newsletter:hover {
    background-color: var(--white);
    color: var(--cyan) !important;
}

.rounded-8 {
    border-radius: 8px;
}

.newsletter .invalid-feedback {
    position: absolute;
    bottom: -30px;
    left: 0;
    text-align: left;
}

.cus-border-box-sale {
    border: 1px solid #0003;
    border-radius: 4px;
}

.swiper-wrap-sale-home {
    text-align: center;
    padding: 0 20px 30px 20px;
}

.class-item-sale-home i {
    font-size: 29px;
    background-color: var(--color-highlight);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 5px solid white;
    margin-top: -30px;
    position: relative;
}

.class-item-sale-home:hover i {
    color: var(--color-highlight);
    background-color: white;
    border: 5px solid var(--color-highlight);
}

.class-item-sale-home {
    display: flex;
    justify-content: center;
}

.swiper-tile-sale-home {
    font-size: 20px;
    font-weight: 600;
    margin-top: 15px;
}

.btn-mua-ngay-sale {
    margin-top: 30px;
}

.btn-mua-ngay-sale a {
    background-color: var(--cyan);
    color: white;
    padding: 10px 15px;
    border-radius: 30px;
    border: 1px solid var(--cyan);
    font-weight: 600;
}

.btn-mua-ngay-sale a:hover {
    color: var(--cyan);
    background-color: white;
}

.item-banner::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    content: '';
    transition: transform 0.6s;
    -webkit-transition: -webkit-transform 0.6s;
    -ms-transition: -ms-transform 0.6s;
    -moz-transition: -moz-transform 0.6s;
    -o-transition: -o-transform 0.6s;
    transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -190%, 0);
    -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -190%, 0);
    -ms-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -190%, 0);
    -moz-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -190%, 0);
    -o-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -190%, 0);
}

.item-banner:hover:before {
    transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 190%, 0);
    -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 190%, 0);
    -ms-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 190%, 0);
    -moz-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 190%, 0);
    -o-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 190%, 0);
}

.video-home .title-section-slogan span:before, .video-home .title-section-slogan span:after {
    background-color: white !important;
}

.view-youtube a {
    padding: 15px;
}

.border-handmade {
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 4px;
    padding: 30px 20px 45px 20px;
    text-align: center;
}

.class-item-handmade {
    font-size: 90px;
    color: var(--color-highlight);
}

.swiper-tile-handmade {
    font-size: 18px;
    font-weight: 600;
    margin: 10px 0 0px 0;
}

.swiper-link-handmade a {
    background-color: var(--cyan);
    color: white;
    padding: 10px 15px;
    border-radius: 30px;
    border: 1px solid var(--cyan);
    font-weight: 600;
}

.swiper-link-handmade a:hover {
    background-color: white;
    color: var(--cyan);
}

.swiper-link-handmade {
    margin-top: 30px;
}

.bg-img-handmade {
    background-repeat: no-repeat;
    padding: 100px 0;
    background-size: cover;
    background-position: top center;
}

.title-section-slogan-made span:after {
    position: absolute;
    content: '';
    top: 9px;
    right: -165px;
    width: 150px;
    height: 2px;
    background-color: var(--color-highlight);
}

.title-section-slogan-made span {
    color: var(--color-highlight);
    font-weight: 600;
    font-size: 18px;
    position: relative;
    letter-spacing: .1em;
}

.bg-content-made {
    background-color: #ccbeb1;
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 45px;
}

.description-binh-luan {
    font-size: 24px;
    font-style: italic;
    position: relative;
}

.description-binh-luan:before {
    position: absolute;
    content: "\f075";
    font-family: "Font Awesome 6 Pro";
    font-weight: 300;
    font-size: 100px;
    color: #f95d5469;
    top: -15px;
    left: 30px;
    z-index: -1;
}

.hover-about-us {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.hover-about-us:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 0%;
    top: 0;
    left: -40px;
    transform: skewX(0deg);
    background: linear-gradient(90deg, #f95d54 0%, #f95d545c 100%);
    z-index: -1;
    transition: all 1s;
}

.hover-about-us:hover:before {
    width: 160%;
}

.ytp-button {
    position: absolute;
    left: 0;
    top: 50%;
    width: 5rem;
    -moz-transition: opacity .25s cubic-bezier(0.0,0.0,0.2,1);
    -webkit-transition: opacity .25s cubic-bezier(0.0,0.0,0.2,1);
    transition: opacity .25s cubic-bezier(0.0,0.0,0.2,1);
    z-index: 63;
    cursor: pointer;
    right: 0;
    margin: 0 auto;
    transform: translateY(-50%);
}

.article-item:hover .ytp-button .ytp-large-play-button-bg {
    -moz-transition: fill .1s cubic-bezier(0.0,0.0,0.2,1),fill-opacity .1s cubic-bezier(0.0,0.0,0.2,1);
    -webkit-transition: fill .1s cubic-bezier(0.0,0.0,0.2,1),fill-opacity .1s cubic-bezier(0.0,0.0,0.2,1);
    transition: fill .1s cubic-bezier(0.0,0.0,0.2,1),fill-opacity .1s cubic-bezier(0.0,0.0,0.2,1);
    fill: var(--red);
    fill-opacity: 1;
}

footer {
    background: var(--color-main);
    padding-top: 3rem;
    border-top: 6px solid var(--color-highlight);
}

.title-footer:before {
    content: '';
    background-color: rgb(255 255 255 / 30%);
    height: 3px;
    display: block;
    width: 100%;
    max-width: 30px;
    bottom: 0;
    position: absolute;
}

.article-item.swiper-slide {
    margin-bottom: 0;
}

.swiper .article-item.swiper-slide {
    height: auto;
    margin-bottom: 1.5rem;
}

.title-footer {
    font-size: 2rem;
}

.footer-menu-section ul li {
    margin-bottom: 2rem;
}

.copyright {
    border-top: 1px solid #505050 !important;
}

.news-highlight .inner-content {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    padding: 1rem;
    display: flex;
    align-items: flex-end;
    background-color: rgba(0, 0, 0, .45);
    transition: .135s;
    opacity: 0;
    text-decoration: none !important;
}

.news-highlight .article-item:hover .inner-content {
    opacity: 1
}

.news-highlight .left .inner-image >div {
    padding-top: 103.3%;
}

.swiper-binh-luan {
    display: flex;
    height: 100%;
    align-items: center;
    padding: 30px 0;
}

.class-item-binh-luan {
    margin: 15px 0;
}

.swiper-tile-binh-luan {
    font-size: 20px;
    font-weight: bold;
}

/*.breadcrumbs-section-bg {*/
/*    background-repeat: no-repeat;*/
/*    background-size: cover;*/
/*    background-position: center center;*/
/*    height: 20vw;*/
/*}*/
/*.breadcrumbs-section-bg .breadcrumbs-section {*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    transform: translateY(-50%);*/
/*    font-size:1.6rem*/
/*}*/
/*.breadcrumbs-section-bg .breadcrumbs-section a {*/
/*    color: white;*/
/*}*/
/*.breadcrumbs-section-bg .breadcrumbs-section span {*/
/*    color: white;*/
/*}*/
/*.title-line:before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    transform: translateY(-50%);*/
/*    width: 100%;*/
/*    height: 2px;*/
/*    left: 0;*/
/*    background: var(--light);*/
/*}*/
/*.title-line span{*/
/*    background:white;*/
/*    position:relative;*/
/*    padding: 0 2rem;*/
/*}*/
/*.title-left .title-line span {*/
/*    padding-left: 0;*/
/*}*/
/*.product-image-detail .inner-image {*/
/*    padding-top: 100%;*/
/*}*/
/*.button-social-product ul li {*/
/*    width: 50%;*/
/*    float: left;*/
/*}*/
/*.modal button.close {*/
/*    font-size: 18px;*/
/*    position: absolute;*/
/*    top: 15px;*/
/*    right: 15px;*/
/*    opacity: 1;*/
/*    z-index: 10;*/
/*    text-shadow: unset;*/
/*}*/
.policy-item img {
    width: 40px;
    object-fit: scale-down;
}

/*.modal .modal-dialog {*/
/*    margin-top: 3rem;*/
/*}*/
/*.invalid-feedback {*/
/*    color: #dc3545 !important;*/
/*}*/
#return-to-top {
    position: fixed;
    bottom: 0;
    right: 0;
    background: var(--light);
    width: 4.5rem;
    height: 4.5rem;
    display: block;
    text-decoration: none;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-align: center;
    color: var(--color-highlight);
}

#return-to-top i {
    position: relative;
    font-size: 1.6rem;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    line-height: 4.5rem;
}

#return-to-top:hover {
    background: var(--color-highlight);
    color: white;
}

.btn-filter-mobile {
    display: block;
    color: var(--color-main);
}

.btn-filter-mobile, .content-filter-head {
    display: block;
}

.content-filter-product {
    position: fixed;
    width: 32rem;
    top: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    z-index: 1100;
    background-color: #fff;
    overflow: auto;
    -webkit-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
    -webkit-transform: translate3d(-32rem, 0, 0);
    -moz-transform: translate3d(-32rem, 0, 0);
    -ms-transform: translate3d(-32rem, 0, 0);
    -o-transform: translate3d(-32rem, 0, 0);
    transform: translate3d(-32rem, 0, 0);
    -webkit-transition: transform 0.3s cubic-bezier(0.65, 0.05, 0.51, 0.82);
    transition: transform 0.3s cubic-bezier(0.65, 0.05, 0.51, 0.82);
    -webkit-box-shadow: -0.1rem 0 0.3rem rgba(0, 0, 0, 0.2);
    -moz-box-shadow: -0.1rem 0 0.3rem rgba(0, 0, 0, 0.2);
    box-shadow: -0.1rem 0 0.3rem rgba(0, 0, 0, 0.2);
}

.content-filter-product.open {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.filter-url .back-drop {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    z-index: 1020;
    opacity: 0;
    filter: opacity(0);
    visibility: hidden;
}

.filter-url .back-drop.open {
    opacity: 1;
    filter: opacity(1);
    visibility: visible;
}

.content-filter-head {
    background: var(--color-highlight);
    padding: 2rem 3rem;
    color: white;
}

.product-detail-footer .nav li a::before {
    background-color: transparent;
    bottom: 0;
    content: '';
    display: block;
    height: 1px;
    left: 0;
    position: absolute;
    transition: background-color .2s ease-out;
    width: 100%;
    z-index: 1;
}

.product-detail-footer .nav li a.active::before {
    background-color: var(--color-highlight);
}

.product-detail-footer .nav li {
    padding-right: 5rem;
}

.product-detail-footer .nav li:last-child {
    padding: 0 !important;
}

.product .product-item .inner-image, .product-image-detail-top, .product_detail .inner-image {
    background-color: #f3f2ee;
}

@media (max-width: 768px) {
    .swiper-slide--tile {
        font-weight: 300;
        font-size: 2rem;
        margin-bottom: 1rem;
        width: 100%;
        color: white;
    }

    .setting-menu-mb>.container>.row>div {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    body.is-mobile header {
        margin: 0;
    }

    .box-about-us-home {
        padding: 30px 0;
    }

    .title-section-slogan span {
        font-size: 16px;
    }

    .icon-about-us-highlight {
        font-size: 60px;
        color: var(--color-highlight);
    }

    .hover-about-us {
        padding: 10px 0px;
    }

    .bg-img-product-home01 {
        padding: 30px 0 30px 0;
    }

    .cus-box-product-home01 .inner-content {
        padding: 10px 15px 30px 15px;
    }

    .cus-box-product-home01 .price {
        font-size: 30px;
    }

    .cus-box-product-home01 .price-amount.old-price {
        font-size: 25px;
    }

    .cus-box-product-home01 .product-title {
        font-size: 20px;
        margin: 0px 0 10px 0;
    }

    .box-2product-dao {
        margin: 30px 0;
    }

    .cus-2product-dao .product-title {
        font-size: 30px;
        width: 100%;
    }

    .cus-border-box-sale {
        margin-bottom: 15px;
    }

    .view-youtube a {
        padding: 9px;
    }

    .bg-img-handmade {
        padding: 30px 0;
    }

    .bg-content-made {
        padding-left: 15px;
    }

    .title-section-slogan-made span:after {
        right: -120px;
        width: 100px;
    }

    .title-section-slogan-made {
        margin-top: 15px;
    }

    .swiper-link-handmade {
        margin-bottom: 30px;
    }

    .description-binh-luan {
        font-size: 18px;
    }

    .swiper-binh-luan {
        padding: 30px 0 0 0;
    }

    .products-cat > h1 {
        font-size: 24px !important;
    }

    .inner-content .price {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .inner-content .price-amount.old-price {
        margin-left: 0;
    }

    .title-article-detail, .title-page-lien-he {
        font-size: 25px;
    }

    .cus-box-product-home01 .price-amount.old-price::after {
        width: 100%;
    }

    .slider-section .swiper-pagination {
        display: none;
    }

    .search-section {
        width: 200px;
    }
}

@media (max-width: 1024px) and (min-width: 768px) {
    .cus-2product-dao .product-title {
        font-size: 28px;
        width: 100%;
    }

    .bg-img-product-home01 {
        padding: 40px 0 40px 0;
    }

    .bg-img-handmade {
        padding: 50px 0;
    }

    .swiper-slide--tile {
        font-size: 3rem;
    }

    .search-section {
        width: 300px;
    }
}

.box-policy .policy-item {
    border: 1px solid var(--color-highlight);
    background: #fffcfc;
}

.policy-item .policy-info {
    font-size: 12px;
}

@media (max-width: 991px) {
    .title-section {
        font-size: 2.5rem;
    }
    .setting-menu2 > .row > div:first-child {
        flex: 0 0 75%;
        max-width: 75%;
    }
    .setting-menu2 > .row > div:last-child {
        flex: 0 0 25%;
        max-width: 25%;
    }

}

@media only screen and (max-width: 768px) {
}

@media (max-width: 330px) {
    .product .filter-url {
        font-size: 12px;
    }

    .product .per-page-title {
        font-size: 12px;
    }

    .product .orderby-title {
        font-size: 12px;
    }

    .product .per-page-variation {
        padding: 0 0.3rem;
    }
}

/*zoom-anh bai viet*/
.article-item {
    overflow: hidden;
}
.article-item img {
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    overflow: hidden;
}
.article-item:hover img{
    overflow: hidden;
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
/*zoom-anh bai viet*/

/*zoom-anh sp*/
.product-item {
    overflow: hidden;
}

.product-item img {
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    overflow: hidden;
}

.product-item:hover img {
    overflow: hidden;
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
/*zoom-anh sp*/

