:root{
    --cl-x: #000;
    --cl-y: #ff6469;
    --cl-gray: #F5F5F5;
    --fs-12: 12px;
    --fs-14: clamp(0.8125rem, 0.8rem + 0.0625vw, 0.875rem);
    --fs-18: clamp(1rem, 0.975rem + 0.125vw, 1.125rem);
    --fs-20: clamp(1.0625rem, 1.025rem + 0.1875vw, 1.25rem);
    --fs-24: clamp(1.25rem, 1.2rem + 0.25vw, 1.5rem);
    --fs-28: clamp(1.25rem, 1.15rem + 0.5vw, 1.75rem);
    --fs-36: clamp(1.5rem, 1.35rem + 0.75vw, 2.25rem);
    --fs-title: clamp(1.25rem, 1.1rem + 0.75vw, 2rem);

    --px-content: 10%;
    --py-content: 40px;

    --w-vertical-menu: 276px;
}

body{
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
}

p:last-of-type{
    margin-bottom: 0;
}

a{
    color: #000;
    text-decoration: none;
}

img{
    max-width: 100%;
    height: auto;
}

.fs-12{
    font-size: var(--fs-12) !important;
}

.fs-14{
    font-size: var(--fs-14) !important;
}

.fs-18{
    font-size: var(--fs-18) !important;
}

.fs-20{
    font-size: var(--fs-20) !important;
}

.fs-24{
    font-size: var(--fs-24) !important;
}

.fs-28{
    font-size: var(--fs-28) !important;
}

.text-justify{
    text-align: justify !important;
}

.text-x{
    color: var(--cl-x) !important;
}

.text-y{
    color: var(--cl-y) !important;
}

.text-gray{
    color: var(--cl-gray);
}

/*background*/
.bg-x{
    background-color: var(--cl-x) !important;
}

.bg-y{
    background-color: var(--cl-y) !important;
}

.bg-gray{
    background-color: var(--cl-gray) !important;;
}

.btn-custom{
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    border-radius: 0.5rem;
    line-height: 1.5;
    font-weight: 500;
    position: relative;
    transition: all .3s cubic-bezier(.04,.66,.24,.97);
    vertical-align: middle;
    font-family: "K2D", sans-serif;
}

.btn-custom:before,
.btn-custom:after{
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #000;
    border-radius: 50%;
    clip-path: ellipse(49% 50% at 50% 50%);
    transition: all .3s cubic-bezier(.04,.66,.24,.97);
}

.btn-custom:before{
    top: 0;
}

.btn-custom:after{
    bottom: 0;
}

.btn-custom:hover{

}

.btn-custom:hover:before{
    transform: translateX(-0.5rem);
}

.btn-custom:hover:after{
    transform: translateX(0.5rem);
}

.btn-custom.btn-white{
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.25) 0%, #FFF 51.82%, rgba(255, 255, 255, 0.25) 100%);
}

.btn-custom.btn-white:before,
.btn-custom.btn-white:after{
    background-color: #fff;
}


.image-cover{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-contain{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.block{
    position: relative;
    padding: var(--py-content) var(--px-content);
}

.bg-cover{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.bg-cover.has-gradient:before,
.bg-cover.has-gradient:after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 100%;
}

.bg-cover.has-gradient:before{
    top: 0;
    background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0.00) 50%);
}

.bg-cover.has-gradient:after{
    bottom: 0;
    background: linear-gradient(0deg, #FFF 0%, rgba(255, 255, 255, 0.00) 50%);
}


.svg-clip-path {
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    opacity: 0;
}


.main-title{
    margin-bottom: 0;
    font-weight: 700;
    font-size: var(--fs-title);
    text-transform: uppercase;
    position: relative;
}


/*nav menu*/
.navbar{
    display: flex;
    flex-direction: column;
    padding-top: 0;
    padding-bottom: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
}

.navbar>*{
    width: 100%;
    max-width: 100%;
}

.navbar-top{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    color: #fff;
    font-size: 0.875rem;
}

.navbar-main{
    padding-top: 0;
    padding-bottom: 0;
}

.navbar-fixed{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #000;
    transition: all 1s cubic-bezier(.04,.66,.24,.97);
    z-index: 30;
}

@keyframes animate {
    0% {
        transform: translateY(-100px);
    }
    100% {
        transform: translateY(0px);
   }
}

.navbar-nav{
    width: 100%;
    justify-content: space-evenly;
    align-items: center;
}

.navbar-nav .nav-item .nav-link{
    display: flex;
    /*justify-content: space-between;*/
    align-items: center;
    padding: 0.75rem 0.75rem;
    font-weight: 500;
    white-space: nowrap;
    text-transform: uppercase;
    font-family: "K2D", sans-serif;
}

.navbar-nav .nav-item .nav-link,
.navbar-nav .nav-item .nav-link a{
    color: #fff;
}

.navbar-nav .nav-item .nav-link.active,
.navbar-nav .nav-item .nav-link.active a{
    color: var(--cl-y);
}

.navbar-nav .nav-item:hover .nav-link,
.navbar-nav .nav-item:hover .nav-link a{
    color: var(--cl-y);
}


/*===*/
.navbar-nav .dropdown-menu .dropdown-item{
    padding: 0.375rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-nav .dropdown-menu .dropdown-item:active{
    background-color: var(--cl-y);
}

.navbar-nav .toggle-menu{
    margin-left: 0.5rem;
}

.navbar-brand{
    margin: 0;
    padding: 0;
    opacity: 0;
}

.logo{
    width: 80px;
    transition: all .5s cubic-bezier(.04,.66,.24,.97);
}

.navbar-fixed .logo{
    width: 46px;
}

.navbar-toggler{
    width: 2rem;
    height: 2rem;
    display: flex;
    justify-content: center;
    margin-left: 0;
    align-items: center;
    border: 2px solid #fff;
    border-radius: 0;
    box-shadow: none !important;
    color: #fff;
}

.box-search-header{
    display: flex;
    width: 100%;
    padding: 2px;
    border-radius: 50rem;
    overflow: hidden;
    background-color: #FFF;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25) inset;
}

.box-search-header input{
    flex: 1;
    width: 100%;
    padding: 0.125rem 1rem;
    border: none !important;
    outline: none;
    background-color: transparent !important;
    font-size: var(--fs-14);
    box-shadow: none !important;
}

.box-search-header button{
    width: 3.5rem;
    height: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    border: none;
    font-size: var(--fs-14);
    clip-path: url('#clip-path-btn-search');
}

.box-search-header button > *{
    margin-left: 0.5rem;
}

.btn-popup-search{
    padding: 0;
    border: 0;
    box-shadow: none !important;
    background-color: transparent;
    color: #fff;
}

.btn-popup-search svg{
    fill: #fff;
}

/*===*/
.cart-shopping{
    display: flex;
    align-items: center;
    gap: 6px; 
    border-radius: 8px;
    color: var(--cl-x);
    font-size: var(--fs-18);
    position: relative;
}

.label-quantity{
    position: absolute;
    top: -6px;
    right: -10px;
    width: 1rem;
    height: 1rem;
    font-size: 12px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: var(--cl-x);
}

.translate .lang-item{
    padding-left: 0.25rem;
    color: #000;
}

.translate .lang-item + .lang-item{
    border-left: 1px solid #000;
}

.translate .lang-item.active{
    color: var(--cl-x);
}

/*============*/
.swiper {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}

/*banenr-page*/
.banner-page{
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.banner-page .title{
    display: block;
    margin-bottom: 0;
    font-weight: 700;
    color: #fff;
    font-size: clamp(1.5rem, 1.4rem + 0.5vw, 2rem);
    text-align: center;
    text-transform: uppercase;
    position: relative;
}

.banner-page .breadcrumb{
    justify-content: center;
    margin-bottom: 0;
}

.banner-page .breadcrumb .breadcrumb-item,
.banner-page .breadcrumb .breadcrumb-item a,
.banner-page .breadcrumb-item + .breadcrumb-item::before{
    color: #fff;
}

.banner-page .breadcrumb .breadcrumb-item.active{
    color: #fff;
}

/* Home ============*/
.main-slide{
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.main-slide .swiper-slide{
    position: relative;
}

.main-slide .swiper-slide .banner-slide{
    position: absolute;
    top: 60%;
    left: var(--px-content);
    right: var(--px-content);
    transform: translateY(-50%);
    color: #fff;
}

.main-slide .swiper-slide .banner-slide .content{
    position: relative;
    padding: 4rem;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.75) 51.82%, rgba(0, 0, 0, 0.25) 100%);
    overflow: hidden;
    width: 1px;
    height: 0;
    opacity: 0;
}

.main-slide .swiper-slide .banner-slide .content:before,
.main-slide .swiper-slide .banner-slide .content:after{
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #fff;
    border-radius: 50%;
    clip-path: ellipse(49% 50% at 50% 50%);
}

.main-slide .swiper-slide .banner-slide .content:before{
    top: 0;
}

.main-slide .swiper-slide .banner-slide .content:after{
    bottom: 0;
}

.main-slide .swiper-slide .banner-slide .content a{
    position: relative;
    color: #fff;
    padding: 0.5rem 1rem;
    font-family: "K2D", sans-serif;
}

.main-slide .swiper-slide .banner-slide .content a:before,
.main-slide .swiper-slide .banner-slide .content a:after{
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #fff;
    border-radius: 50%;
    clip-path: ellipse(49% 50% at 50% 50%);
    transition: all .3s cubic-bezier(.04,.66,.24,.97);
}

.main-slide .swiper-slide .banner-slide .content a:before{
    top: 0;
}

.main-slide .swiper-slide .banner-slide .content a:after{
    bottom: 0;
}

.main-slide .swiper-slide .banner-slide .content a:hover:before{
    transform: translateX(-0.5rem);
}

.main-slide .swiper-slide .banner-slide .content a:hover:after{
    transform: translateX(0.5rem);
}


.main-slide .banner-slide h2{
    margin-bottom: 0;
    font-size: clamp(1.5rem, 1.2rem + 1.5vw, 3rem);
    color: #fff;
}


/*===*/
.box-title-main h1,
.box-title-main h2{
    margin-bottom: 0.5rem;
    font-size: var(--fs-title);
    position: relative;
    font-weight: 700;
}

.box-title-main h3{
    font-size: clamp(0.875rem, 0.75rem + 0.625vw, 1.5rem);
    font-family: "Kaushan Script", cursive;
}

/*===*/
.box-category{
    display: block;
    position: relative;
    will-change: transform;
    transition: all 1.5s cubic-bezier(.04,.66,.24,.97);
}

.box-category .box-thumbnail{
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 22.8px 0 rgba(0, 0, 0, 0.45);
}

.box-category .box-thumbnail .inner-thumbnail{
    --bs-aspect-ratio: 120%;
}

.box-category .box-content{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem;
}

.box-category .box-content .title{
    margin-bottom: 0;
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
    text-align: center;
    color: #fff;
    transition: all 1s cubic-bezier(.04,.66,.24,.97);
}

.box-category:hover{
    transform: translateY(-0.75rem);
}

.box-category:hover .box-content .title{
    transform: translateY(-0.25rem);
}

.box-category:hover .box-thumbnail{
    box-shadow: 0 4px 22.8px 0 rgba(0, 0, 0, 0.7);
}


/*===*/
.map-iframe iframe{
    width: 100%;
    height: 300px;
    filter: grayscale(1);
    transition: all 1s cubic-bezier(.04,.66,.24,.97);
}

.map-iframe:hover iframe{
    filter: grayscale(0); 
}


/*===*/
.box-hover-zoom .box-thumbnail,
.box-hover-zoom-long .box-thumbnail{
    overflow: hidden;
}

.box-hover-zoom .box-thumbnail img{
    transition: all 0.3s ease-in-out;
}

.box-hover-zoom:hover .box-thumbnail img,
.box-hover-zoom-long:hover .box-thumbnail img{
    transform: scale(1.1);
}

.box-hover-zoom-long .box-thumbnail img{
    transition: all 1s ease-in-out;
}

.wrapper-slide{
    position: relative;
} 

.wrapper-slide .swiper-button-next,
.wrapper-slide .swiper-button-prev{
    width: clamp(1.875rem, 1.75rem + 0.625vw, 2.5rem);
    height: clamp(1.875rem, 1.75rem + 0.625vw, 2.5rem);
    background-color: rgba(30, 30, 30, 0.83);
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    color: #fff;
    transition: all .3s ease-in-out;
    pointer-events: all;
}

.wrapper-slide .swiper-button-next:after,
.wrapper-slide .swiper-button-prev:after{
    font-size: 1rem;
}

.wrapper-slide-outline .swiper-button-next{
    right: -3rem;
}

.wrapper-slide-outline .swiper-button-prev{
    left: -3rem;
} 

.wrapper-slide-square .swiper-button-next,
.wrapper-slide-square .swiper-button-prev{
    border-radius: 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 30%;
    background-color: #D9D9D9;
    width: 2rem;
    height: 2rem;
}

.wrapper-slide-square .swiper-button-next{
    background-image: url('/templates/images/next.svg');
}

.wrapper-slide-square .swiper-button-prev{
    background-image: url('/templates/images/prev.svg');
}

.wrapper-slide-square .swiper-button-next:after,
.wrapper-slide-square .swiper-button-prev:after{
    content: "";
}


/*===*/
.box-product{
    display: flex;
    flex-direction: row-reverse;
    gap: 1rem;
}

.box-product .box-thumbnail{
    width: 35%;
    border-radius: 0.75rem 0 0.75rem 0;
}

.box-product .box-content{
    flex: 1;
}

.box-product .title{
    margin-bottom: 0.5rem;
    font-size: var(--fs-18);
    color: #000;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all .3s ease-in-out;
}

.box-product .box-excerpt{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.box-product .box-price{
    flex: 1;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    font-weight: 700;
}

.box-product .box-price .label-sale-price{
    color: #000;
}

.box-product .box-price .label-regular-price{
    color: #939393;
    text-decoration: line-through;
    font-size: var(--fs-14);
}

.box-product .btn-custom{
    padding: 0.25rem 1rem;
    font-size: clamp(0.75rem, 0.7rem + 0.25vw, 1rem);
}

.box-product:hover .title{
    color: #551616;
}


/*===*/
.wrapper-list-product{
    padding: clamp(1rem, 0.6rem + 2vw, 3rem);
    border-radius: clamp(0.5rem, 0.4rem + 0.5vw, 1rem);
    box-shadow: 0 0 26.1px 0 rgba(0, 0, 0, 0.15);
}

.wrapper-img-product{
    border-radius: clamp(1rem, 0.9rem + 0.5vw, 1.5rem) 0 clamp(1rem, 0.9rem + 0.5vw, 1.5rem) 0;
    overflow: hidden;
}

.wrapper-content-product{
    display: flex;
    flex-direction: column;
}

.wrapper-list-product .list-product{
    overflow-y: auto;
    flex: 1;
    padding: 0.5rem;
}

.wrapper-list-product .list-product::-webkit-scrollbar {
    width: clamp(0.125rem, 0.075rem + 0.25vw, 0.375rem);
    background-color: #F5F5F5;
}

.wrapper-list-product .list-product::-webkit-scrollbar-thumb {
    background-color: #000000;
    border-radius: 50rem;
}

.wrapper-list-product .list-product::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
    border-radius: 50rem;
}

.wrapper-list-product .list-product .box-product .box-thumbnail{
    width: 25%;
}


/*===*/
.box-blog .box-thumbnail{
    position: relative;
    border-radius: 0.5rem;
}

.box-blog .box-content{
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-top: 0.5rem;
}

.box-blog .box-title{
    max-height: 2.25rem;
}

.box-blog .title{
    font-size: var(--fs-18);
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all .3s ease-in-out;
}

.box-blog .box-excerpt{
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    text-align: justify;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.box-blog .box-meta{
    display: flex;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #A1A1A1;
}

.box-blog .box-view-more{
    margin-left: auto;
    padding: 0.25rem 0.75rem;
    background-color: #F8F8F8;
    border-radius: 0.5rem;
    color: var(--cl-y);
    font-weight: 500;
    transition: all .3s ease-in-out;
}

.box-blog:hover .title{
    color: var(--cl-x);
}

.box-blog .box-view-more:hover{
    background-color: #E9E9E9;
}


/*===*/
.footer{
    position: relative;
    color: #fff;
}

.footer-top{
    padding-top: clamp(3rem, 2.6rem + 2vw, 5rem);
    padding-bottom: clamp(3rem, 2.6rem + 2vw, 5rem);
}

.footer-bottom{
    padding-top: 0.5rem;
    padding-bottom: 1rem;
}

.footer a{
    color: #fff;
    text-decoration: none;
}

.footer a:hover{
    color: var(--cl-y);
}

.footer p{
    margin-bottom: 0.625rem;
}

.logo-footer{
    width: 5rem;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -75%);
}

.list-footer{
    font-weight: 100;
}

.list-footer h3{
    position: relative;
    margin-bottom: clamp(1rem, 0.8rem + 1vw, 2rem);
    font-size: var(--fs-20);
    font-weight: bold;
}

.list-footer ul{
    list-style: none;
    list-style-position: inside;
    margin-bottom: 0;
    padding-left: 0px;
}

.list-footer ul li a{
    position: relative;
}

.list-footer ul li a::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #fff;
    bottom: -4px;
    left: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .2s ease-in-out;
}

.list-footer ul li a:hover::before{
  transform-origin: left;
  transform: scaleX(1);
}

.list-footer ul li{
    transition: transform .2s ease-in-out;
}

.list-footer ul li:hover{
    transform: translateX(5px);
}

.list-footer ul li + li{
    margin-top: 0.625rem;
}

.list-footer ul li i{
    margin-right: 6px;
    color: var(--cl-x);
}

.social-contact{
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-contact .item{
    width: 2rem;
    height: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: transparent;
    color: #fff;
    font-size: var(--fs-20);
    transition: all .2s ease-out;
}

.social-contact .item.item-zalo{
    font-size: 12px;
    font-weight: 900;
    color: #fff;
}

.social-contact .item:hover{
    animation: scale-icon 0.5s;
    background-color: #fff;
    color: #000;
}

@keyframes scale-icon {
    0% { transform: scale(0.8); }
    100% { transform: scale(1); }
}

.coppyright{
    font-size: clamp(0.625rem, 0.5625rem + 0.3125vw, 0.9375rem);
    font-weight: 300;
}


/*===*/
.box-icon-contact{
    --w-icon: 3.5rem;
    --pd: clamp(0.75rem, 0.6rem + 0.75vw, 1.5rem);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.box-icon-contact .icon{
    width: var(--w-icon);
    height: var(--w-icon);
    align-self: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--cl-x);
    border-radius: 50%;
    color: #fff;
    z-index: 1;
}

.box-icon-contact .content{
    flex: 1;
    margin-top: calc(-1 * var(--w-icon) /2);
    padding: calc(var(--w-icon) / 2 + var(--pd)) var(--pd) var(--pd);
    border: 1px dashed var(--cl-x);
    border-radius: 0.75rem;
    text-align: center;
}

.box-icon-contact .title{
    font-size: var(--fs-24);
    font-weight: 700;
}


#contact-form{
    padding: clamp(1.5rem, 1.2rem + 1.5vw, 3rem);
    background-color: #f2f2f2;
    border-radius: clamp(0.75rem, 0.6rem + 0.75vw, 1.5rem);
}

#contact-form .form-control{
    padding: 0.5rem 1rem;
    border: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
    box-shadow: none !important;
    background-color: transparent;
    font-size: inherit;
    transition: all .3s ease-in-out;
}

#contact-form .form-control:focus{

}

#contact-form .btn-custom{
    width: 100%;
}

.g-recaptcha-contact{
    transform: scale(0.8);
    transform-origin: centers;
}

.box-iframe iframe{
    width: 100%;
    max-width: 100%;
}
.box-iframe-contact{
    height: 100%;
    border-radius: clamp(0.75rem, 0.6rem + 0.75vw, 1.5rem);
    overflow: hidden;
}
.box-iframe-contact iframe{
    height: 100%;
}