body{
  font-family: 'Inter', sans-serif;
}
.container{
  max-width: 1228px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

.header {
  z-index: 11;
  position: absolute;
  width: 100%;
  margin: 45px 0;
}
.header .container{
  max-width: 1292px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.header .container .right{
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
}
.header .container .right nav ul{
  display: flex;
  gap: 24px;
}
.header .container .right nav ul li{
  position: relative;
}
.header .container .right nav ul li a{
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}
.header .container .right nav ul li   a.main-link{
  padding: 20px 0;
}
.header .container .right nav ul li a:hover{
  color: #F8AF29;
}
.header .container .right nav ul li ul{
  position: absolute;
  width: 445px;
  box-shadow: 0px 24px 56px 0px #A7AEBA29;
  left: 0;
  padding: 30px;
  transform: translateX(calc(-50% + 50px)) ;
  background-color: #fff;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  display: none;
  -webkit-transform: translateX(calc(-50% + 50px)) ;
  -moz-transform: translateX(calc(-50% + 50px)) ;
  -ms-transform: translateX(calc(-50% + 50px)) ;
  -o-transform: translateX(calc(-50% + 50px)) ;
}
.header .container .right nav ul li ul li{
  position: initial;
  width: 52%;
  display: flex;
  justify-content: flex-end;
  padding-right: 8px;
}
.header .container .right nav ul li ul li a{
  color: #0F172A;
  font-weight: 400;
  font-size: 14px;
}
.header .container .right nav ul li ul li a:hover{
  color: #673A34;
}
.header .container .right nav ul li ul li a:hover svg path{
  fill: #673A34;
}
.header .container .right nav ul li ul li ul{
  position: absolute;
  padding: 30px 17px;
  margin: 0;
  right: 0;
  top:0;
  height: 100%;
  left: initial;
  transform: none;
  width: 210px;
  background-color: #F8FAFC;
  box-shadow: none;
  border-top-left-radius:0;
  border-bottom-left-radius:0;
}
.header .container .right nav ul li ul li  ul:before{
  display: none;
}
.header .container .right nav ul li ul:before{
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  top: -8px;
  left: calc(50% - 10px); 
  background-color: #fff;
  border-radius: 5px;
  transform: rotate(45deg);
}
.header .container .right nav ul li ul li  ul li{
  width: 100%;
  justify-content: flex-start;
}
.header .container .right .buttons{
  display: flex;
  gap: 24px;
}
.header .container .right .buttons a{
  background-color: transparent;
  color: #fff;
  cursor: pointer;
}
.header .container .right .buttons a svg path{
  fill: #fff;
}
.page-header .container .right .buttons a {
  color: #592D1E;
}
.page-header .container .right .buttons a svg path{
  fill: #592D1E;
}
.banner{
  background:url('/f_assets/images/banner-bg.png') bottom center no-repeat #592D1E;
  width: 100%;
  height: 1000px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.banner .left{
  width: 579px;
  padding-top: 300px;
}
.banner .left h1{
  font-family: 'Noto Serif Balinese', serif;
  font-weight: 400;
  font-size: 60px;
  margin-bottom: 26px;
  color: #FFE8D3;
}
.banner .swiper-slide{
  display: flex;
  padding-bottom: 56px;
}
.banner .left p{
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  line-height: 24px;
  max-width: 425px;
  margin-bottom: 37px;
}

.banner .left a{
  display: inline-flex;
  border-radius: 30px;
  padding-top: 15px;
  padding-right: 20px;
  padding-bottom: 15px;
  padding-left: 20px;
  background-color: #A1776B;
  color: #fff;
  transition: all 0.3s ease;
}
.banner .left a:hover{
  background-color: #F8AF29;
  color: #592D1E;
}
.banner .right{
  padding-top: 215px;
  min-width: 655px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.banner .right img{
  width: 100%;
  position: absolute;
  transition: transform 0.5s ease;
  user-select: none;
}
.banner .right h5{
  font-family: 'Noto Serif Balinese', serif;
  position: absolute;
  bottom: 12px;
  font-weight: 700;
  font-size: 12px;
  color: #75460F;
}
.banner .right h5 span{
  font-size: 24px;
}
.arrow{
  width: 655px;
  position: absolute; 
  right: 16px;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 45px;
  z-index: 2;
}
.arrow .banner-pagination{
  position: relative;
  width: auto;
  top: 0;
  bottom: 0;
  z-index: 2;
}
.banner .container{
  position: relative;
}
.arrow button{
  background-color: transparent;
  border: none;
  cursor: pointer;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border-radius: 50%;
}
.arrow button:active{
  transform: scale(0.9);
}
.arrow button:hover{
  background-color: rgba(255, 255, 255, 0.2);
}
.arrow .banner-pagination{
  display: flex;
  gap: 12px;
  align-items: center;
}
.arrow .banner-pagination span{
  background-color: #F8AF2966;
  opacity: 1;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.arrow .banner-pagination span:hover{
  transform: scale(1.2);
}
.arrow .banner-pagination span.swiper-pagination-bullet-active{
  width: 14px;
  height: 14px;
  background-color: #F8AF29;
  border: 1px solid #F8AF29;
  box-shadow: inset 0px 0px 0px 2px #592D1E;
}
.banner:after{
  content: '';
  width: 100%;
  height: 138px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: url('/f_assets/images/banner-after.svg') no-repeat center center;
  background-size: cover;
  z-index: 1;
}
.banner .down{
  display: flex;
  position: absolute;
  width: 100%;
  justify-content: center;
  z-index: 10;
  bottom: 28px;
}
.banner .down button{
  display: inline-flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
  width: auto;
  background-color: transparent;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  color: #592D1E;
}
.banner .down button svg{
  transition: all 0.3s ease;
}
.banner .down button:hover svg{
  transform: translateY(5px);
}
.product-list{
  position: relative;
  z-index: 3;
}

.product-list,.comment-list{
  padding: 48px 0;
}
.head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.title{
  font-weight: 600;
  font-size: 24px;
  color: #592D1E;
}
.description{
  font-weight: 400;
  font-size: 18px;
  color: #3D3D3D;
  line-height: 26px;
}
.read-more{
  color: #592D1E;
  font-weight: 400;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.read-more svg{
  transition: all 0.3s ease;
}
.read-more:hover svg{
  transform: translateX(3px);
}
.product-list .list{
  margin-top: 24px;
  padding-top: 24px;
  border-top: #ECD5CF 1px solid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.box{
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid #ECD5CF;
  transition: all 0.3s ease;
  gap: 8px;
  position: relative;
  outline: 1px solid transparent;
}
.box:hover{
  transform: translateY(-10px) scale(1.03);
  outline-color: #75460F;
  border-color: #fff;
}
.box .image span{
  position: absolute;
  right: -8px;
  background-color: #A1776B;
  color: #fff;
  font-size: 14px;
  line-height: 22px;
  padding: 0 8px;
  border-radius: 4px;
  font-size: 12px;
}
.box .image{
  width: 100%;
  height: 216px;
}
.box .image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.box .image span:after{
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 6px 0 1px;
  border-color: #855B4F transparent transparent transparent;
  position: absolute;
  bottom: -11px;
}
.box .content{
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.box h3{
  font-weight: 400;
  font-size: 16px;
  color:#383A42;
  line-height: 22px;
}

.box .info{
  display: flex;
  justify-content: space-between;
}
.box .info h6{
  font-size: 12px;
  color: #5B616E;
  font-weight: 300;
}
.box .info .price{
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 190px;
  width: 100%;
  align-items: flex-end;
}
.box .info .price .discount{
  font-weight: 600;
  font-size: 14px;
  color: #959596;
  text-decoration: line-through;
}
.box .info .price-text{
  font-weight: 600;
  font-size: 18px;
  color: #383A42;
}
.box .action{
  display: flex;
  justify-content: space-between;
}
.box .action select{
  width: 63px;
  height: 37px;
  border: 1px solid #8E95A2;
  padding:0 8px;
  border-radius:8px;
  background: url('/f_assets/images/select-bg.svg') center right 16px no-repeat;
  appearance: none;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  color: #383A42;
}
.box .action button{
  background-color: #753E1F;
  padding: 8px 16px;
  border-radius: 8px;
  color: #fff;
  transition: all 0.3s ease;
}
.box .action button:active{
  transform: scale(0.9);
}
.box .action button:hover{
  background-color: #F8AF29;
  color: #592D1E;
}
.buy-home-banner{
  position: relative;
  padding: 230px 0;
}
.buy-home-banner img{
    position: absolute;
    width: 545px;
    top: -155px;
    filter: drop-shadow(-56px 35px 56.8px #4622157D);
    -webkit-filter: drop-shadow(-56px 35px 56.8px rgba(70, 34, 21, 0.49));
    transform: rotate(18deg);
    transition: all 0.3s ease;
}

.buy-home-banner .container{
  position: relative;
}
.buy-home-banner .content{
  max-width: 600px;
  width: 100%;
  padding: 100px 16px 0 16px;
  position: absolute;
  top: 0;
  right: 0;
}
 .buy-home-banner .content h3{
  font-family: 'Noto Serif Balinese', serif;
  font-weight: 400;
  font-size: 80px;
  color: #A1776B;
  margin-bottom: 10px;
 }
  .buy-home-banner .content h3 span{
    display: block;
    color: #FFE8D3;
  }
 .buy-home-banner .content p{
  font-weight: 400;
  font-size: 18px;
  color: #fff;
  line-height: 24px;
  max-width: 400px;
  margin-bottom: 52px;
 }
.buy-home-banner .content a{
  padding-top: 15px;
  padding-right: 20px;
  padding-bottom: 15px;
  padding-left: 20px;
  border-radius: 30px;
  background-color: #A1776B;
  color: #fff;
  transition: all 0.3s ease;
  }
.buy-home-banner .content a:active{
  transform: scale(0.9);
}
.buy-home-banner .content a:hover{
  background-color: #F8AF29;
  color: #592D1E;
}

.comment-list .swiper-slide{
  display: flex;
  align-items: center;
  padding: 42px 37px;
  background-color: #F8FAFC;
  border: 1px solid #ECD5CF;
  gap: 24px;
  border-radius: 16px;
}
.comment-list .swiper-slide .image{
    min-width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
}
.comment-list .swiper-slide .image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.comment-list .head{
  margin-bottom: 48px;
}
.comment-list .swiper-slide .content{
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.comment-list .swiper-slide .content h3{
  font-weight: 700;
  font-size: 24px;
  color: #3D3D3D;
}
.comment-list .swiper-slide .content p{
  font-weight: 400;
  font-size: 18px;
  color: #3D3D3D;
  line-height: 24px;
}
.comment-list .swiper-slide .content span{
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #525252;
}
.comment-list  .arrows{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  margin-top: 48px;
}
.comment-list  .arrows button{
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border-radius: 12px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.comment-list  .arrows button:hover{
  border-color: #592D1E;
  transform: scale(1.1);
}

.comment-list  .arrows .comment-pagination{
  width: auto;
  display: flex;
  gap: 20px;
}
.comment-list  .arrows .comment-pagination span{
  width: 15px;
  height: 15px;
  opacity: 1;
  background-color: #A1776B;
  transition: all 0.3s ease;
}
.comment-list  .arrows .comment-pagination span:hover{
  transform: scale(1.2);
}
.comment-list  .arrows .comment-pagination span.swiper-pagination-bullet-active{
  background-color: #592D1E;
}
.footer{
  display: flex;
  flex-direction: column;
}
.footer .container{
  max-width: 1292px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer .top-footer{
  background-color:#592D1E;
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
  padding: 44px 0;
}
.footer .top-footer nav{
  display: flex; 
  gap: 35px; 
}
.footer .top-footer nav a{
  font-weight: 400;
  font-size: 12px;
  color: #fff;
  padding-right: 35px;
  border-right: 1px solid #A1776B;
  transition: all 0.3s ease;
}
.footer .top-footer nav a:hover{
  color: #F8AF29;
  text-decoration: underline;
}
.footer .top-footer nav a:last-child{
  border-right: none;
  padding-right: 0;

}
.footer .bottom-footer{
  background-color: #41180A;
  padding: 20px 0;
}
.footer .bottom-footer p{
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #fff;
}
.footer .bottom-footer p a{
  color: #fff;
  transition: all 0.3s ease;
}
.footer .bottom-footer p a:hover{
  color: #F8AF29;
}
.footer .bottom-footer nav{
  display: flex;
  gap: 18px;
}
.footer .bottom-footer nav a{
  transition: all 0.5s ease;
  width: 25px;
  height: 25px;
  border: 1px solid #FFE8D3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer .bottom-footer nav a svg path{
  fill: #FFE8D3;
}
.footer .bottom-footer nav a:hover{
 transform: scale(1.1) rotate(360deg);
}
.footer .bottom-footer nav a svg{
  width: 16px;
  height: 16px;
}
.page-header{
  position: relative;
}
.page-header .container .right nav ul li > a{
  color: #592D1E;
}
.page-header .container .right nav ul li > a svg path{
  fill: #592D1E;
}
.page-header .container .right .buttons button svg path{
  fill: #592D1E;
}
.main{
  padding: 48px 0;
}
.breadcrumb{
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.breadcrumb a,.breadcrumb span{
  font-weight: 500;
  font-size: 12px;
}
.breadcrumb a{
  color: #BDBDBD;
}
.breadcrumb a::after{
  content:'/';
  color: #BDBDBD;
  margin-left: 8px;
}
.product-list-page{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.product-list-page .left{
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 255px;
  width: 100%;
  border-radius: 8px;
  background-color: #F8FAFC;
  border: 1px solid #ECD5CF
}
.product-list-page .left .filter-box{
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.product-list-page .left h3{
  font-weight: 600;
  font-size: 20px;
  color: #592D1E;
  padding-bottom: 20px;
  border-bottom: 1px solid #E2E2E2
}
.product-list-page .left  .filter-box{
   border-bottom: 1px solid #E2E2E2;
   padding-bottom: 16px;
}
.product-list-page .left  .filter-box:last-child{
  border: none;
  padding-bottom: 0;
}
.product-list-page .left  .filter-box h5{
  font-weight: 500;
  font-size: 16px;
  color: #592D1E;
}
.product-list-page .left  .filter-box  label span{
  font-weight: 400;
  font-size: 14px;
  color: #5E3333;
  display: flex;
  gap: 12px;
  position: relative;
  cursor: pointer;
}
.product-list-page .left  .filter-box  label span:before{
  width: 16px;
  height: 16px;
  border: #828282 1px solid;
  content: '';
  border-radius: 50%;
}
.product-list-page .left  .filter-box  label span:after{
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #F8AF29;
  display: inline-block;
  transition: all 0.3s ease;
  position: absolute;
  top: 4px;
  left: 4px;
  opacity: 0;
  transform: scale(0);
}

.product-list-page .left  .filter-box  label input{
  display: none;
}

.product-list-page .left  .filter-box  label input:checked + span:after{
  opacity: 1;
  transform: scale(1);
}

.product-list-page .left  .filter-box  input{
  width: 100%;
  height: 41px;
  border: 1px solid #e2e2e2;
  padding: 0 8px;
  border-radius: 8px;
  color: #828282;
  transition: all 0.3s ease;
  font-size: 14px;
}
.product-list-page .left  .filter-box input:focus{
  border-color: #A1776B;
  outline: none;
}

.product-list-page .left  .filter-box button{
  width: 100%;
  height: 41px;
  background-color: #A1776B;
  color: #fff;
  border-radius: 8px;
  font-size: 12px;
  border: none;
  transition: all 0.3s ease;

}
.product-list-page .left  .filter-box button:active{
  transform: scale(0.9);
}
.product-list-page .left  .filter-box button:hover{
  background-color: #855B4F;
}
.product-list-page .right{
  max-width: 913px;
  width: 100%;
  display: flex;
  flex-direction: column;
}  
.product-list-page .right .product-list-head{
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-bottom: #ECD5CF 1px solid;
  padding-bottom: 24px;
}
.product-list-page .right .product-list-head .top{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-list-page .right .product-list-head .top select{
  border: 1px solid #E2E2E2;
  width: 157px;
  height: 29px;
  border-radius: 8px;
  padding: 0 8px;
  font-weight: 500;
  font-size: 14px;
  color: #212121;
  background: url('/f_assets/images/select-bg2.svg') center right 8px no-repeat;
  appearance: none;
}
.product-list-page .right .product-list-head .top select:focus{
  border-color: #A1776B;
  outline: none;
}
.product-list-page .right .product-list-head p{
  font-weight: 400;
  font-size: 18px;
  color: #3D3D3D;
  line-height: 26px;
}
.product-list-page .right .list{
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 24px;
}

.load-more-wrap{
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
.load-more-wrap button{
  background-color: #F8AF29;
  padding: 12px 24px;
  border-radius: 8px;
  color: #41180A;
  font-weight: 400;
  transition: all 0.3s ease;
  font-size: 14px;
}
.load-more-wrap button:active{
  transform: scale(0.9);
}
.load-more-wrap button:hover{
  background-color: #41180A;
  color: #F8AF29;
}
.product-detail{
  display: flex;
  align-items: flex-start;
  width: 100%;
  gap: 32px;
}
.product-detail .image{
  max-width: 580px;
  width: 100%;
  position: relative;
}
.product-detail .image .action{
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  z-index: 2;
}
.product-detail .image .action button{
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: inset 0px 0px 0px 1px #0000000F;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  justify-content: center;
}
.product-detail .image .action button:hover{
  transform: scale(1.05);
}
.product-detail .image .swiper-main {
  margin-bottom: 24px;
}
.product-detail .image .swiper-main .swiper-slide{
  width: 100%;
  height:475px;
}
.product-detail .image .swiper-main .swiper-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-detail .image  .tab{
  display: flex;
  margin-top: 24px;
  justify-content: space-between;
}
.product-detail .image .swiper-thumbnails .small-image{
  width: 100%;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #0000000F;
  position: relative;
}
.product-detail .image .swiper-thumbnails .small-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}

.product-detail .image  .tab button{
  font-weight: 400;
  font-size: 10px;
  padding: 12px 24px;
  color: #592D1E;
  background-color: transparent;
  border-radius: 8px;
}
.product-detail .image  .tab button.active{
  background-color: #A1776B;
  color: #fff;
}
.product-detail .image .tab-content{
  border: 0.5px solid #0000000F;
  padding: 24px 32px;
  border-radius: 16px;
  margin-top: 24px;
}
.product-detail .image .tab-content h4{
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #000000A6;
  margin-bottom: 4px;
}
.product-detail .image .tab-content p{
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #000000A6;
}

.product-detail .right{
  max-width: 580px;
}
.product-detail .right .categories{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}
.product-detail .right .categories a{
  border-radius: 4px;
  padding: 6px 8px;
  font-weight: 400;
  font-size: 12px;
  background-color: #F6F6F6;
  color:#592D1E;
  transition: all 0.3s ease;
}
.product-detail .right .categories a:hover{
  background-color: #A1776B;
  color: #fff;
}
.product-detail .right h2{
  font-weight: 600;
  font-size: 34px;
  line-height: 42px;
  color: #592D1E;
  margin-bottom: 24px;
}
.product-detail .right .price h5{
  font-weight: 600;
  font-size: 18px;
  color: #5F5F5F;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.product-detail .right .price h5 span.line-through{
  text-decoration: line-through;
}
.product-detail .right .price h5 span.percentage{
  background-color: #FF00001A;
  color: #FF0000;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 12px;
}
.product-detail .right .price h4{
  font-weight: 600;
  font-size: 36px;
  color: #A1776B;
  margin-bottom: 24px;
}
.product-detail .right h6{
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 16px;
  color: #592D1E;
  border-top: 1px solid #A1776B;
  padding-top: 24px;
}
.product-detail .right  .upload-file label{ 
  border: 1px solid #ECD5CF;
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
  background-color: #F8FAFC;
  border-radius: 6px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}
.product-detail .right  .upload-file label:hover{
  border-color: #A1776B;
  background-color: #fff;
}
.product-detail .right  .upload-file label p{
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color:#000000E0;
}
.product-detail .right  .upload-file label span{
  font-weight: 400;
  font-size: 12px;
  color: #00000073;
  line-height: 16px;
}
.product-detail .right  .upload-file label input{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
}
.product-detail .right .description-box{
  margin-bottom: 24px;
}
.product-detail .right .description-box textarea{
  border: 1px solid #00000026;
  width: 100%;
  height: 64px;
  border-radius: 8px;
  padding:12px;
  font-size: 16px;
  color: #41180A;
}
.product-detail .right .description-box textarea::placeholder{
  color: #00000040;
  font-size: 14px;
}
.product-detail .right .description-box span{
  color: #00000073;
  font-size: 12px;
  display: block;
  margin-top: 12px;
}
.product-detail .right .tab{
  display: flex;
}
.product-detail .right .tab button{
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background-color: transparent;
  gap: 12px;
  color: #592D1E;
  border-bottom: 1px solid #0000000F;
  transition: all 0.3s ease;
}
.product-detail .right .tab button:hover{
  background-color: #00000006;
}
.product-detail .right .tab button svg path{
  fill: #592D1E;
  transition: all 0.3s ease;
}
.product-detail .right .tab button.active{
  color:#A1776B;
  border-color: #A1776B;
  font-weight: 600;
  border-bottom-width: 2px;
}
.product-detail .right .tab button.active svg path{
  fill: #A1776B;
}
.product-detail .right .tab-content{
  margin-top: 24px;
}
.product-detail .right .tab-content .address-input{
  display: flex;
  flex-direction: column;
  padding: 12px;
  background-color: #A1776B;
  border-radius: 8px;
  gap: 10px;
  position: relative;
}
.product-detail .right .tab-content .address-input p{
  font-weight: 400;
  font-size: 14px;
  color: #FFFFFF;
  line-height: 18px;
}
.product-detail .right .tab-content .address-input .input{
  display: flex;
  align-items: center; 
  position: relative;
}
.product-detail .right .tab-content .address-input .input svg{
  position: absolute;
  left: 24px;
}
.product-detail .right .tab-content .address-input .input input{
  width: 100%;
  height: 32px;
  border-radius: 6px;
  border: 1px solid #00000026;
  padding: 0 16px 0 36px;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #41180A;
}
.product-detail .right .tab-content .address-input .input input:disabled{
    color: #fff;
}
.product-detail .right .tab-content .address-input .input input::placeholder{
  color: #00000040;
}
.product-detail .right .tab-content .address-input .date-boxes{
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
}
.product-detail .right .tab-content .address-input .date-boxes .date-box{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 24px ;
  background-color: #FFE8D3;
  border-radius: 16px;
  max-width: 126px;
  width: 100%;
  cursor: pointer;
  transition: all 0.3s ease;
}
.product-detail .right .tab-content .address-input .date-boxes .date-box:last-child{
  background-color: #fff;
}
.product-detail .right .tab-content .address-input .date-boxes .date-box:hover{
   transform: scale(1.05);
}
.product-detail .right .tab-content .address-input .date-boxes .date-box h5{
  font-size: 14px;
}

.product-detail .right .tab-content .address-input .date-boxes .date-box h5{
  font-weight: 700;
  font-size: 14px;
  color: #592D1E;
  margin-bottom: 8px;
}
.product-detail .right .tab-content .address-input .date-boxes .date-box span{
  font-weight: 400;
  font-size: 14px;
  color: #592D1E;
  display: block;
}
.product-detail .right .tab-content .address-input .date-boxes .date-box svg{
  margin-bottom: 8px;
}

.product-detail .right .tab-content .address-input .date-boxes .date-box.active{
  background-color: transparent;
  padding-top: 0;
  padding-bottom: 0;
}
.product-detail .right .tab-content .address-input .date-boxes .date-box.active h5,.product-detail .right .tab-content .address-input .date-boxes .date-box.active span{
  color: #fff;
}
.product-detail .right .tab-content .address-input .date-boxes .date-box select{
  width: 102px;
  height: 24px;
  border: 1px solid #00000026;
  border-radius: 6px;
  font-size: 11px;
  padding: 0 8px;
  background: url('/f_assets/images/select-down-bg.svg') center right 8px no-repeat #fff; 
  appearance: none;
  color: #000000E0;
  outline: none;
  margin-top: 8px;
  display: none;
}
.file-value-box{
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  flex-direction: column;
}
.file-value-box img{
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 8px;
  border: 1px solid #0000000F;
}
button:active{
  transform: scale(0.95);
}
.file-value-box button{
  width: 100%;
  height: 32px;
  background-color: #211e1d;
  color: #fff;
  border-radius: 8px;
  font-weight: 400;
  font-size: 14px;
  transition: all 0.3s ease;
}
.file-value-box button:hover{
  background-color: #9a2606;
}
.product-detail .right .tab-content .address-input .date-boxes .date-box.active select{
  display: block;
}
.product-detail .right .info-box{
  display: flex;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  background-color: #F8FAFC;
  color: #1D1D1B;
  margin-top: 24px;
  padding: 12px;
  border-radius: 8px;
}
.product-detail .right .action{
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.product-detail .right .action select{
  padding-right: 32px;
  padding-left: 16px;
  border-radius: 8px;
  border: 1px solid #A1776B;
  font-weight: 400;
  font-size: 14px;
  color: #592D1E;
  background: url('/f_assets/images/select-product-detail.svg') center right 8px no-repeat;
  appearance: none;
  outline: none;
  height: 52px;
}
.product-detail .right .action .count{
  display: flex;
}
.product-detail .right .action .count button{
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #A1776B;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.product-detail .right .action .count button:hover{
  background-color: #41180A;
  color: #592D1E;
}


.product-detail .right .action .count  div{
  width: 40px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #A1776B;
  font-weight: 600;
  font-size: 14px;
}
.product-detail .right .action .buy{
  width: 166px;
  background-color: #A1776B;
  color: #fff;
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  padding: 0 30px;
  border-radius: 8px;
}
.product-detail .right .action .add-to-cart{
   width: 168px;
  border: 1px solid #592D1E;
  color: #592D1E;
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  padding: 0 30px;
  border-radius: 8px;
  gap: 8px;
  background-color: #fff;
}
.product-detail .right .action .add-to-cart svg path{
  fill: #592D1E;
  transition: all 0.3s ease;
}
.product-detail .right .action .add-to-cart:hover{
  background-color: #855B4F;
  border-color: #855B4F;
  color: #fff;
}
.product-detail .right .action .add-to-cart:hover svg path{
  fill: #fff;
}
.product-detail .right ul{
  margin-top: 24px;
  display: flex;
  gap: 18px;
  flex-direction: column;
}
.product-detail .right ul li{
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #EAEAEA;
}
.product-detail .right ul li span{
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #673A34;
}
.product-detail .right ul li span:last-child{
  color: #592D1E;
  font-weight: 500;
}
.buy-page .container{
  display: flex;
  justify-content: space-between; 
  align-items: flex-start;
  gap:24px; 
}
.buy-page .container .left{
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 583px;
  width: 100%;
}
.buy-page .container .left .buy-box{
  display: flex;
  flex-direction: column;
}
.buy-page .container .left .buy-box .buy-box-head{
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
}
.buy-page .container .left .buy-box .buy-box-head.flex-col{
  flex-direction: column;
}
.buy-page .container .left .buy-box .buy-box-head p{
  font-weight: 400;
  font-size: 13.5px;
  line-height: 21px;
  color: #0000008F;
  margin-top: 5px;
}
.buy-page .container .left .buy-box .buy-box-body{
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.radio-box{
  position: relative;
  border: 1px solid #DEDEDE;
  background-color: #fff;
  padding: 16px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  cursor: pointer;
}
 .radio-box:hover{
  border-color: #A1776B;
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}
 .radio-box input{
  display: none;
}
.radio-box span{
  font-size: 12px;
  color: #444;
  font-weight: 300;
}
 .radio-box h6{
  font-size: 14px;
  font-weight: 600;
  color: #592D1E;
  margin-bottom: 6px;
}
.radio-box h6::before{
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  right: 16px;
  top: 0;
  border: 1px solid #DEDEDE;
  transition: all 0.3s ease;
  transform: translateY(50%);
  -webkit-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -ms-transform: translateY(50%);
  -o-transform: translateY(50%);
}
.radio-box.small{
  padding: 8px;
}
.radio-box.small h6{
  font-size: 12px;
  margin-bottom: 4px;
}
.radio-box.small span{
  font-size: 10px;
}
.radio-box h6::before{
  width: 16px;
  height: 16px;
}
.radio-box.small:hover{
  transform: scale(1.01);
  -webkit-transform: scale(1.01);
  -moz-transform: scale(1.01);
  -ms-transform: scale(1.01);
  -o-transform: scale(1.01);
}

.radio-box.small a{
  font-size: 12px;
  color: #592D1E;
  font-weight: 400;
  margin-top: 8px;
}
 .radio-box input:checked + h6::before{
  background-color: #A1776B;
  border-color: #A1776B;
}
.input,.select{
  font-family: 'Inter', sans-serif;
  width: 100%;
  height: 51px;
  border-radius: 8px;
  font-weight: 400;
  font-size: 12.2px;
  outline: none;
  border: 1px solid #DEDEDE;
  padding: 0 12px;
  color: #000;
  transition: all 0.3s ease;
}
.select{
  background: url('/f_assets/images/select-bg.svg') center right 8px no-repeat;
  background-color: #fff;
  appearance: none;
}
.input::placeholder,.select::placeholder{
  color: #828282;
}
.input:focus,.select:focus{
  border-color: #383838;
}
.form-group{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.form-group .form-control,.form-group .form-control{
  width: calc(50% - 6px);
}
.left .buy-box .buy-box-head a{
  font-weight: 400;
  font-size: 13.5px;
  line-height: 21px;
  text-decoration: underline;
  color: #383838;
}
.buy-page .container .left h3{
  font-weight: 600;
  font-size: 21.2px;
  line-height: 25.2px;
  color: #000000;
} 
.buy-page .container .right{
  padding: 24px;
  background-color: #F8FAFC;
  border: 1px solid #ECD5CF;
  border-radius: 8px;
}
.toggle-checkbox {
  user-select: none;
  cursor: pointer;
}
.toggle-checkbox input{
    display: none;
}
.toggle-checkbox span{
  position: relative;
  display: flex;
  align-items: center;
  gap:6px;
  font-weight: 400;
  font-size: 13.5px;
  line-height: 21px;
  color: #000;
}
.toggle-checkbox span::before{
  min-width:24px;
  height: 14px;
  content: '';
  background-color: #eee;
  border-radius: 8px;
  position: relative;
  transition: all 0.3s ease;
}
.toggle-checkbox span::after{
  content: '';
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  left: 2px;
  transition: all 0.3s ease;
}
.toggle-checkbox input:checked + span::before{
  background-color: #A1776B;
}
.toggle-checkbox input:checked + span::after{
  left: 12px;
}
.delivery-method{
  display: flex;
  justify-content: space-between;
  border-radius: 8px;
  border: 1px solid #383838;
  align-items: center;
  padding: 14px;
  background-color: #F8FAFC;
}
.delivery-method h6{
  font-weight: 400;
  font-size: 13.5px;
  line-height: 21px;
  color: #000000;
}
.delivery-method  span{
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  color: #000000;
}
.payment-methods{
  display: flex;
  flex-direction: column;
}
.payment-methods .payment-method{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  padding-left: 43px;
  border: 1px solid #DEDEDE;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  font-weight: 400;
  font-size: 13.5px;
  line-height: 21px;
}
.payment-methods .payment-method-box:first-child .payment-method{
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.payment-methods .payment-method-box:last-child .payment-method{
  border-bottom-left-radius: 8px;
  border-top-width: 0;
  border-bottom-right-radius: 8px;
}
.payment-methods .payment-method input{
  display: none;
}
.payment-methods .payment-method span:before{
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  left: 12px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #383838;
}
.payment-methods .payment-method span:after{
  content: '';
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #A1776B;
  opacity: 0;
  transition: all 0.3s ease;
}
.payment-methods .payment-method input:checked + span:after{
  opacity: 1;
}
.radio-detail{
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-left: 1px solid #DEDEDE;
  border-right: 1px solid #DEDEDE;
  border-bottom: 1px solid #DEDEDE;
  background-color: #0000000B;
}
.buy-page .container .right .buy-product-list{
  display: flex;
  gap: 24px;
}
.buy-page .container .right .buy-product-list .image{
  min-width: 64px;
  max-width: 64px;
  height: 64px;
  border-radius: 8px;
  border: 1px solid #D9D9D9;
  position: relative;
}
.buy-page .container .right .buy-product-list .image img{
  width: 100%;
  object-fit: cover;
  position: absolute;
  border-radius: 8px;
}
.buy-page .container .right .buy-product-list .image span{
  position: absolute;
  width: 22px;
  height: 22px;
  background-color: #0000008F;
  z-index: 1;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  right: -7px;
  top: -7px;
}
.buy-page .container .right .buy-product-list .content{
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.buy-page .container .right .buy-product-list .content h1{
  font-weight: 400;
  font-size: 13.5px;
  line-height: 21px;
}
.buy-page .container .right .buy-product-list .content p{
  font-weight: 400;
  font-size: 11.4px;
  line-height: 18px;
  color: #0000008F;
}
.buy-page .container .right .buy-product-list .price{
  font-weight: 400;
  font-size: 13.5px;
  line-height: 21px;
  color: #000;
}
.buy-page .container .right .list{
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.buy-page .container .right .discount{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}
.buy-page .container .right button{
  height: 51px;
  background-color: #A1776B;
  color: #fff;
  border-radius: 8px;
  padding: 0 15px;
  font-weight: 500;
  font-size: 13.9px;
  line-height: 21px;
  transition: all 0.3s ease;
}
.buy-page .container .right button:active{
  transform: scale(0.9);
}
.buy-page .container .right button:hover{
  background-color: #75460F;
  color: #fff;
}
.buy-page .container .right  .submit-button{
  width: 100%;
}
.buy-page .container .right ul{
  margin:24px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.buy-page .container .right ul li{
  display: flex;
  justify-content: space-between;
  font-weight: 400;
  font-size: 13.5px;
  line-height: 21px;

}
.buy-page .container .right ul li span:last-child{
  text-align: right;
}
.buy-page .container .right ul li h6{
  font-weight: 600;
}
.buy-page .container .right ul li h6 span{
  display: block;
  color: #0000008F;
  font-weight: 300;
}
.buy-page .container .right ul li h6 + span{
    color: #0000008F;
  font-weight: 300;
  font-size: 11px;
}
.buy-page .container .right ul li h6 + span strong{
  color: #000000;
  font-weight: 600;
  font-size: 13.5px;
}
.success-box{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 24px;
  min-height: 52vh;
}
.success-box h1{
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  color: #592D1E;
  text-align: center;
}
.success-box p{
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
  text-align: center;
  color: #0F172A;
}
.success-box  span{
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  color: #0F172A;
}
.success-box a{
  height: 51px;
  border: 1px solid #A1776B;
  border-radius: 8px;
  padding: 0 16px;
  font-weight: 500;
  font-size: 14px;
  color: #A1776B;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
} 
.success-box a:hover{
  background-color: #A1776B;
  color: #fff;
}
.auth{
  display: flex;
  min-height: 61vh;
  background: linear-gradient(to right, white 50%, #F8FAFC 50%);
}
.auth .left{
  width: 442px;
}
.auth .left h1{
  font-weight: 700;
  font-size: 40px;
  letter-spacing: -0.8px;
  color: #170645;
  margin-bottom: 16px;
}
.auth .left p{
  font-weight: 400;
  font-size: 16px;
  color: #170645;
  margin-bottom: 42px;
  line-height: 24px;
}
.auth .left .form-control{
  margin-bottom: 24px;
}
.form-control label{
  font-weight: 700;
  font-size: 14px;
  color: #170645;
  display: block;
  margin-bottom: 8px;
}
.auth .left .forget-password{
  display: block;
  margin-top: -8px;
  margin-bottom: 40px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.2px;
  color: #A1776B;
}
.auth .left .forget-password:hover{
  text-decoration: underline;
}
.auth .left .submit{
  width: 100%;
  height: 51px;
  background-color: #A1776B;
  color: #fff;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  margin-bottom: 16px;
}
.auth .left .submit:active{
  transform: scale(0.9);
}
.auth .left .submit:hover{
  background-color: #75460F;
}
.auth .left .google-button{
  width: 100%;
  height: 51px;
  background-color: #fff;
  color: #170645;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  border: 1px solid #908AA080;
  margin-bottom: 16px;
}
.auth .left .google-button:hover{
  background-color: #F8FAFC;
}
.auth .left .info{
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #170645;
}
.auth .left .info a{
  color: #753E1F;
  text-decoration: underline;
  font-weight: 700;
}
.auth .right  {
  width: 589px;
  background-color: #fff;
  position: relative;
  left: 41px;
  border: 1px solid #ECD5CF;
  border-radius: 16px;

}
.auth .container{
  display: flex;
  justify-content: space-between;
}
.auth .right ul li{
  display: flex;
  gap: 44px;
  padding: 16px 60px;
}
.auth .right ul li span{
  font-weight: 700;
  font-size: 48px;
  letter-spacing: 0.25px;
  color: #3C3C4380;
  display: flex;
  width: 100px;
}
.auth .right ul li .text h4{
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  color: #000;
  margin-bottom: 12px;
}
.auth .right ul li .text p{
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #3C3C43D9;
}
.register-page .left{
  width: 560px;
}
.register-page .form-group .input{
  width: 100%;
}
.register-page .form-group .form-control{
  width: calc(50% - 6px);
}
.register-sumbit-button{
  margin-top: 16px;
}
.forgot-password-wrap{
  min-height: 51vh;
}
.forgot-password-wrap{
  display: flex;
  flex-direction: column;
  max-width:442px;
  margin: auto;
  justify-content: center;
}
.forgot-password-wrap h1{
  font-weight: 700;
  font-size: 40px;
  letter-spacing: -0.8px;
  color: #170645;
  margin-bottom: 40px;
  text-align: center;
}
.forgot-password-wrap .form-control{
  margin-bottom: 40px;
}
.form-control{
  display: flex;
  flex-direction: column;
}
.form-control[error="true"]::after{
  content: attr(error-message);
  display: flex;
  color: red;
  font-size: 12px;
  margin-top: 6px;
}
.forgot-password-wrap button{
  width: 100%;
  height: 51px;
  background-color: #A1776B;
  color: #fff;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  margin-bottom: 12px;
}
.forgot-password-wrap button:active{
  transform: scale(0.9);
}
.forgot-password-wrap button:hover{
  background-color: #75460F;
}
.forgot-password-wrap p{
  text-align: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #170645;
}
.forgot-password-wrap p a{
  color: #753E1F;
  text-decoration: underline;
  font-weight: 700;
}
.profile{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.profile .left{
  background-color: #F8FAFC;
  max-width: 354px;
  width: 100%;
  padding: 24px 32px;
  border-radius: 16px;
}
.profile .left .user-info{
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.profile .left .user-info{
  display: flex;
  gap: 12px;
  border-bottom: 1px solid #E3E3E3;
  padding-bottom: 24px;
}
.profile .left .user-info .image{
  width:52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
}
.profile .left .user-info .content{
  display: flex;
  flex-direction: column;
}
.profile .left .user-info .content h6{
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #0F172A;
}
.profile .left .user-info .content a{
  font-weight: 400;
  font-size: 14px;
  color: #0F172A;
}
.profile .left .user-info .content a:hover{
  text-decoration: underline;
}
.profile .left nav{
  display: flex;
  flex-direction: column;
}
.profile .left nav a{
  padding: 16px;
  font-weight: 700;
  font-size: 14px;
  color: #A1776B;
  transition: all 0.3s ease;
}
.profile .left nav a:hover{
  background-color: #eee;
}
.profile .left nav a.active{
  background-color: #A1776B;
  color: #fff;
}
.profile .right{
  width: 814px;
} 
.profile .right .form-group{
  gap: 16px;
}
.profile .right .form-group .input{
  width: 100%;
}
.profile .right .form-control{
  width: calc(50% - 8px);
}
.profile .right  h5{
  color: #592D1E;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 24px;
}
.profile .right .submit{
  width: 100%;
  height: 51px;
  border: 1px solid #592D1E;
  background-color: transparent;
  color: #592D1E;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  margin-top: 24px;
  margin-bottom: 40px;
}

.profile .right .submit:hover{
  background-color: #592D1E;
  border-color: #592D1E;
  color: #fff;
}

.address-boxes{
  display: flex;
  flex-direction: column;
  gap:16px;
}
.address-boxes .address-box{
  padding: 16px;
  border-radius: 8px;
  position: relative;
  border: 1px solid #E2E2E2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.address-boxes .address-box h6{
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #592D1E;
}
.address-boxes .address-box .info{
  display: flex;
  align-items: center;
  gap: 12px;
}
.address-boxes .address-box .info button{
  background-color: transparent;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.address-boxes .address-box .info button:hover{
  background-color: #eee;
  border-radius: 50%;
}
.address-boxes .address-box .info span{
  font-weight: 400;
  font-size: 14px;
  color: #673A34;
}
.profile .right .form-control label{
  color: #592D1E;
}
.order-table{
  border: 1px solid #E9EAEB;
  border-radius: 12px;
  box-shadow: 0px 1px 2px 0px #0A0D120F, 0px 1px 3px 0px #0A0D121A;
  width: 100%;
  min-height: 400px;
  overflow: hidden;
}
.order-table table{
  width: 100%;
  border-collapse: collapse;
}
.order-table table thead{
  background-color: #fafafa;
}
.order-table table thead th, .order-table table tbody tr td{
  padding: 13px 8px;
  color: #535862;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  text-align: left;
}
.order-table table tbody tr td a{
  color: #0558E2;
}
.order-table-empty{
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.order-table-empty svg{
    stroke: #d7d7d7;
}
.order-table-empty p{
    font-size: 14px;
    color: #a6a6a6;
    margin: 15px 0;
}
.order-table-empty a{
    background: #f9f9f9;
    padding: 10px 20px;
    color: #401104;
    border-radius: 10px;
    font-size: 14px;
}
.table-badge{
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 400;
  font-size: 12px;
}
.table-badge.pending{
  background-color: #FDE68A;
  color: #FA8C16;
  border: 1px solid #FFD591;
}
.table-badge.completed{
  border: 1px solid #B7EB8F;
  background-color: #F6FFED;
  color: #52C41A;
}
.table-badge.cancelled{
  border: 1px solid #FFA39E;
  background-color: #FFF1F0;
  color: #F5222D;
}
.table-badge.info{
  border: 1px solid #91CAFF;
  background-color: #E6F4FF;
  color: #1677FF;
}

.text-page h1{
  font-weight: 700;
  font-size: 40px;
  line-height: 120%;
  letter-spacing: -0.8px;
  text-align: center;
  color: #170645;
  margin-bottom: 24px;
}
.text-page  h3{ 
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: #000000;
  margin-bottom: 16px;
}
.text-page  p{
  margin-bottom: 16px;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #3C3C43D9;
}
.flatpickr-day.today{
  border-color: #A1776B !important;
  color: #A1776B;
}
.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange, .flatpickr-day.selected.inRange, .flatpickr-day.startRange.inRange, .flatpickr-day.endRange.inRange, .flatpickr-day.selected:focus, .flatpickr-day.startRange:focus, .flatpickr-day.endRange:focus, .flatpickr-day.selected:hover, .flatpickr-day.startRange:hover, .flatpickr-day.endRange:hover, .flatpickr-day.selected.prevMonthDay, .flatpickr-day.startRange.prevMonthDay, .flatpickr-day.endRange.prevMonthDay, .flatpickr-day.selected.nextMonthDay, .flatpickr-day.startRange.nextMonthDay, .flatpickr-day.endRange.nextMonthDay{
  background-color: #A1776B !important;
  color: #fff !important;
  border-color: #A1776B !important;
  opacity: 1 !important;
}
span.flatpickr-weekday{
      font-weight: 500 !important;
    color: #646464 !important;

}
.flatpickr-day.today:hover, .flatpickr-day.today:focus{
  background-color: #A1776B !important;
  color: #fff !important;
  border-color: #A1776B !important;
  opacity: 1 !important;
}


.flatpickr-day.selected:focus, .flatpickr-day.startRange:focus, .flatpickr-day.endRange:focus, .flatpickr-day.selected:hover, .flatpickr-day.startRange:hover, .flatpickr-day.endRange:hover{
  background-color: #A1776B !important;
  color: #fff !important;
}
.flatpickr-day.selected.prevMonthDay, .flatpickr-day.startRange.prevMonthDay, .flatpickr-day.endRange.prevMonthDay, .flatpickr-day.selected.nextMonthDay, .flatpickr-day.startRange.nextMonthDay, .flatpickr-day.endRange.nextMonthDay{
  background-color: #A1776B !important;
  color: #fff !important;     
  border-radius: 50% !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months{
  background-color: #F8FAFC;
  border: 1px solid #eee !important;
  font-size: 12px   !important;
  margin-right: 6px !important;
  font-weight: 600 !important;
  height: 23px !important;
  border-radius: 4px !important;
}
.flatpickr-current-month input.cur-year{
  background-color: #F8FAFC !important;
  border: 1px solid #eee !important;
  font-size: 12px   !important;
  font-weight: 600 !important;
  height: 23px !important;
  border-radius: 4px !important;
  padding:0 !important;
  text-align: center !important;
}
.form-address-box{
  padding: 16px;
  border: 1px solid #E2E2E2;
  border-radius: 8px;
  background-color: #f9f9f9;
  margin-bottom: 40px;
}
.form-address-box .submit{
  margin-bottom: 0 !important;
}
.add-address-order{
    background-color: #fff;
    width: 100%;
    color: #75460F;
    border: 1px solid #75460F;
    border-radius: 4px;
    padding: 12px 16px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }
.add-address-order:hover{
    background-color: #75460F;
    color: #fff;
}
#corporate-fields{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#city-list{
  position: absolute;
  width:calc(100% - 24px);
  left: 12px;
  max-height: 200px;
  overflow-y: auto;
  border: 1px solid #eee;
  background-color: #fff;
  margin-top: 8px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  gap: 0;
  z-index: 4;
  
}
#city-list li{
  user-select: none;
  padding: 8px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
#city-list li:hover{
  background-color: #f0f0f0;
}
.calender-wrap{
  padding: 16px;
  border-radius: 8px;
  position: relative;
  margin-top: 8px;
  background-color: #8e685d;
}
.calender-wrap h5{
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  margin-bottom: 0;
}
.product-detail .right .tab-content .address-input  .calender-wrap p{
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #fff;
  margin-bottom: 0;
}
.calender-wrap .flatpickr-calendar.inline{
  width: 100% !important;
}
.flatpickr-days{
  width: 100% !important;
  max-width: 100% !important;
  min-width: 100% !important;
}
.calender-wrap  .dayContainer{
  width: 100% !important;
  max-width: 100% !important;
  min-width: 100% !important;
}
.flatpickr-day{
  width: calc(100% / 7) !important;
  max-width: calc(100% / 7) !important;
  min-width: calc(100% / 7) !important;
}
.flatpickr-day{
  color: #646464 !important;
}
.flatpickr-calendar{
  box-shadow: none !important;
  margin-top: 8px;
}
.flatpickr-calendar.hasTime .flatpickr-time{
  border-top-width: 0 !important;
}

.filter-btn{
    display: none;
}

.filter-overlay{
    display: none;
}
#mobilMenu{
    display: none;
}

.comment-page{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.header-search{
    position: absolute;
    width: 0%;
    background: #ffffff;
    padding: 20px;
    border-radius: 40px;
    border-radius: 40px;
    right: 0;
    opacity: 0;
    z-index: -1;
    transition: all 0.3s ease;
}
.header-search.active{
    opacity: 1;
    z-index: 1;
    width: 100%;
}

.page-header .header-search{
    background: #592d1e;
}

.header-search input{
    width: 100%;
    border: none;
    font-size: 16px;
    outline: none;
    background: transparent;
}

.page-header .header-search input, .page-header .header-search input::placeholder{
    color: #fff;
}
.page-header .header-search path{
    fill: #fff;
}

.header-search button{
    position: absolute;
    border: none;
    background: none;
    top: calc(49% - 10px);
    right: calc(4% - 10px);
}



[id^=NotiflixNotifyWrap]>div>svg.nx-message-icon{
    width: 30px!important;
    height: 30px!important;
    left: 15px!important;
}

[id^=NotiflixNotifyWrap]>div>i.nx-message-icon{
    font-size: 25px!important;
}
[id^=NotiflixNotifyWrap] *{
    color: #fff important;
    fill: #fff;
}

.notiflix-notify-success{
    background: linear-gradient(10deg, #1a6a50, #00ffab)!important;
}

.notiflix-notify-warning{
    background: linear-gradient(10deg, #ff8000, #ff3131)!important;
}

@media screen and (max-width:1024px){
    #mobilMenu{
        display: inline-block;
    }
    .filter-overlay{
        display: flex;
        justify-content: flex-end;
        align-items: center;
        padding-right: 16px;
        color: #592d1e;
        position: fixed;
        width: 100%;
        height: 100vh;
        overflow-y: auto;
        top: 0;
        right: -100%;
        background-color: #0000004a;
        z-index: 10;
        transition: all 0.3s ease;
        padding: 24px;
        backdrop-filter: blur(2px);
    }
    .header .container .right {
        width: 70%;
        justify-content: end;
    }
    .header-search button{
        position: absolute;
        border: none;
        background: none;
        top: calc(49% - 10px);
        right: calc(8% - 10px);
    }
    .header .container .right nav{
        position: fixed;
        top: 10%;
        right: -100%;
        width: 85%;
        height: 80vh;
        background-color: var(--white);
        z-index: 10;
        display: flex;
        flex-direction: column;
        gap: 24px;
        overflow-y: auto;
        border-radius: 16px;
         background: #fff;
        transition: all 0.3s ease;
        z-index: 13;
        padding: 20px;
    }
    .header .container .right nav.active{
        right: 2%;
    }
    .header .container .right nav.active ~ .menu-overlay{
        left: 0;
        display: block;
    }
    .header .container .right nav > ul{
        flex-direction: column;
    }
    .header .container .right nav ul li {
        border-bottom: 1px solid #eee;
    }
    .header .container .right nav ul li a{
        font-size: 13px;
        color: #592d1e;
    }
    .header .container .right nav ul li a path{
        fill: #592d1e;
    }
    .header .container .right nav ul li ul {
        transform: translate(0px, 0px);
        width: 100%;
        position: relative;
        margin: 10px 0;
    }
    .header .container .right nav ul li ul:before {
        display: none;
    }
    .header .container .right nav ul li ul li {
        flex-direction: column;
        width: 100%;
        border: none;
    }
    .header .container .right nav ul li ul li ul{
        position: relative;
        width: 100%;
        background-color: transparent;
    }
    .header{
        margin: 10px 0;
    }
    .banner {
        height: 900px;
    }
    .banner .right{
       padding-top: 200px;
       min-width: 50%;
    }
    .banner .right svg{
        height: 350px;
    }
    .banner .left{
        width: 50%;
        padding-top: 250px;
    }
    .banner .left h1{
        font-size: 30px;
        margin-bottom: 10px;
    }
    .buy-home-banner svg{
        max-width: 100%;
    }

    .buy-home-banner img {
        width: 40%;
    }
    .filter-btn{
        display: inline-block;
        padding: 0 20px;
        background: #fff;
        border: 1px solid #E2E2E2;
        border-radius: 8px;
        color: #212121;
        font-size: 14px;
        height: 29px;
    }
    .product-list-page .right .product-list-head .top {
        flex-direction: column-reverse;
        align-items: start;
        gap: 20px;
    }
    
    .product-list-page .left {
        position: fixed;
        z-index: 11;
        top: 0;
        border-radius: 0;
        border: none;
        height: 100%;
        left: -100%;
        width: 100%;
         transition: all 0.3s ease;
    }
 
    .product-list-page .left.active {
        left: 0;
    }
    .product-list-page .left.active ~ .filter-overlay{
         right: 0;
    }
    .filter-overlay svg {
        width: 32px;
        height: 32px;
        background-color: #fff;
        border-radius: 50%;
        transition: all 0.3s ease;
        color: #592d1e;
    }
    .product-detail {
        flex-direction: column;
    }
    .product-detail .image {
        max-width: 100%;
    }
    .product-detail .image {
        width: 100%;
    }
    .product-detail .right {
        max-width: 100%;
        width: 100%;
    }
    .product-detail .image .tab-content {
        display: none;
    }
    .product-detail .image .tab{
        overflow-x: auto;
        gap: 5px;
    }
    .product-detail .image .tab button {
        border: 1px solid #592d1e;
        min-width: 180px;
    }
    .product-detail .right .action {
        flex-direction: column;
        gap: 10px;
    }
    .product-detail .right .action > * , .product-detail .right .action > * > button{
        width: 100%!important   ;
    }
    .order-table {
        overflow-x: auto;
    }
    .order-table table thead th, .order-table table tbody tr td {
        min-width: 150px;
    }
    .buy-page .container {
        flex-direction: column;
    }
    .buy-page .container .left, .buy-page .container .right {
        max-width: 100%;
        width: 100%;
    }
    .buy-page .container .right .buy-product-list {
        justify-content: space-between;
    }
}
@media screen and (max-width:640px){
    .buy-page .container .right .buy-product-list {
        flex-direction: column;
    }
    .success-box h1{
        font-size: 20px;
        line-height: 26px;
    }
    .success-box p, .success-box span{
        font-size: 16px;
        line-height: 20px;
    }
    input{
        font-size: 16px!important;
    }
    .buy-home-banner img {
        width: 50%;
    }
    .header{
        margin: 20px 0;
    }
    .banner {
        height: 980px;
    }
    .banner .swiper-slide{
        display: flex;
        flex-direction: column-reverse;
        height: 100%;
    }
    .banner .right{
        padding-top: 135px;
        min-width: 50%
    }
    .banner .right svg{
        height: 300px;
    }
    .banner .right img{
        width: 90%;
    }
    .banner .left{
        padding-top: 40px;
        max-width: 100%;
        text-align: center;
        width: 100%;
    }
    .banner .left h1{
        font-size: 30px;
        margin-bottom: 10px;
    }
    .banner .left p{
        max-width: 100%;
    }
    .arrow {
        width: 100%;
        right: 0;
    }
    .comment-list .swiper-slide {
        flex-direction: column;
    }

    .buy-home-banner {
        overflow: hidden;
    }
    .buy-home-banner .content h3{
        font-size: 30px;
    }
    .buy-home-banner svg {
        display: none;
    }
    .buy-home-banner .content{
        position: relative;
    }
    .buy-home-banner::before{
        content: '';
        background: #401104;
        height: 500px;
        display: block;
        width: 100%;
        position: absolute;
        transform: rotate(88deg);
        top: calc(25% - 10px);
    }
    .buy-home-banner img {
        left: 20%;
        top: -200px;
        filter: none;
    }
    .footer .container {
        flex-direction: column;
        gap: 20px;
    }
    .footer .top-footer nav {
        gap: 15px;
        flex-direction: column;
    }
    .footer .top-footer nav a{
        padding: 0;
        border: none;
        text-align: center;
    }


    /*auth*/

    .auth .container {
        flex-direction: column;
    }
    .auth .right {
        width: 100%;
        left: auto;
    }
     .auth .left {
        width: 100%;
    }
    .auth .right ul li {
        flex-direction: column;
    }


    .profile {
        flex-direction: column;
        gap: 20px;
    }

    .profile .left, .profile .right{
        width: 100%;
        max-width: 100%;
    }

    .profile .left nav {
        flex-direction: row;
        justify-content: center;
    }
    .profile .left nav a{
        width: 50%;
        text-align: center;
    }
}
