@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap');
@font-face {
    font-family: Montserrat;
    src: url(https://fs-e.ecimg.tw/img/h24/new/index/v1/fonts/Montserrat/Montserrat-Regular.woff2) format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --background-color-primary: #B3A59A;
    --background-color-second: #695B50;
    --background-color-light-1: #F5F0EC;
    --background-color-light-2: #F1F1F1;

    --font-color-primary: #333333;
    --font-color-second: #7F7F7F;
    --font-color-third: #725B49;
    --font-color-light: #ffffff;

    --color-height-light: #01B3CD;

}

body,
html {
    width: 100%;
    height: fit-content;
    padding: 0;
    margin: 0;
    font-family: Montserrat,"Noto Sans TC", Arial, sans-serif;
    font-size: 10px;
    letter-spacing: 1pt;
    position: relative;

}

div {
    font-size: clamp(14px, 2rem, 40px);
    /*line-height: clamp(16px, 2.9rem, 55px);*/
    letter-spacing: 2pt;

}

a {
    text-decoration: none;
    color: var(--font-color-primary);
    cursor: pointer;
}
a:not([href]) {
    cursor: pointer;
}
a:hover {
    color: var(--color-height-light);
}
input[type="radio"]{

    cursor: pointer;
}
button,radio {
  cursor: pointer;
  
}

button.eqbtn{
    width: fit-content;
    border-radius: 50px;
    border: 0;
    background-color: #706861;
    color: #ffffff;
    font-size: 2rem;
    padding: 5px 20px;
}

textarea{
    border-radius: 2rem;
    border: 1px solid #B3A59A;
    padding: 2rem;
    font-size: 2rem;
    color: #6f655d;
}
h1,
h2,
h3 {
    margin: 0;
}

span {
    font-size: clamp(12px, 2rem, 30px);
}
.flex-vcenter{
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.color-1{
    color:var(--color-height-light);
}
.color-2{
    color:#FDD000;
}

.btn-gotop{

    position: fixed;
    bottom: 65px;
    right: 2%;
    width:fit-content;
    z-index: 99999;
    gap:1rem;

}
.btn-gotop a{
    margin-bottom: 5px;
    display:flex;
    background-color: #554a41d9;
    color: var(--font-color-light);
    border-radius: 99px;
    width: 65px;
    height: 65px;
    color:var(--font-color-light);
    justify-content: center;
    align-items: center;
    font-size: clamp(22px, 3vw, 2rem);
}
.btn-gotop a.cart-shopping{
    background-color: #ef8575;
    position:relative;
}
.btn-gotop a.cart-shopping .carItem{
    position: absolute;
    right: 5px;
    top: 5px;
    background-color: red;
    color: #ffffff;
    border-radius: 99px;
    font-size: 1.5rem;
    height: 20px;
    width: 20px;
    display: inline-flex;
    justify-content: center;
    line-height: 1rem;
    letter-spacing: .1pt;
    align-items: center;
    font-family: Montserrat;

}
.btn-gotop a.gotop{
    background-color: #fdd001ff;
}
.b-color-light{
    background-color:var(--background-color-light-1);
}
.f-color-1{
    color:var(--font-color-second);
}
h1 {
    font-size: clamp(28px, 2vw, 40px);
    line-height: clamp(32px, 2.4vw, 46px);
    line-height: auto;
    font-weight: 800;
}

h2 {
    font-size: clamp(18px, 1.4vw, 40px);
    line-height: clamp(22px, 1.8vw, 46px);
    font-weight: 600;
}

h3 {
    font-size: clamp(16px, 1.17vw, 40px);
    line-height: clamp(20px, 1.6vw, 46px);
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
}
.form-kit{
     display: contents;
}
.contianer {
    width: 100%;
}
.bg-color-dark{
    background-color:#6f655d !important;
}
.marquee-container {
    width: 100%;
    overflow: hidden;
    display: flex;
}

.marquee-content {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

.marquee-content2 {
    display: inline-block;
    white-space: nowrap;
    animation: marquee2 30s linear infinite;
}

.marquee-content3 {
    display: inline-block;
    white-space: nowrap;
    animation: marquee2 30s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes marquee2 {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes marquee3 {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.sticky {
    position: sticky;
    top: 0px;
    z-index: 1000;
}

.dropdown {
    position: relative;
}

.dropdown .dropdown-content{
    display: none;
    position: absolute;
    background-color: rgb(249, 249, 249);
    min-width: 150px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 8px 16px 0px;
    padding: 12px 10px;
    transition: 240ms linear;
    font-size: 2rem;
    text-align: center;
}

.dropdown:hover .dropdown-content {
    display: block;
    background-color: var(--background-color-light-1);
    border-radius: 0 0 20px 20px;
    border-bottom: 15px solid #03b3cd;
}
.dropdown:hover .dropdown-content ul{
    list-style-type: ;
    padding-left: 34px;

    text-align: left;
    margin: 0;

}
.dropdown:hover .dropdown-content ul li{
    border-bottom: 1px dotted #03afc8;
    width: 94%;
}
.dropdown:hover .dropdown-content ul li a{
    padding: 1rem 5px;
    transition:none;
}

.dropdown:hover .dropdown-content ul li a:hover{
    border-left: 0px dotted var(--font-color-second);
    border-right: 0px dotted var(--font-color-second);
    border-bottom: 1px solid var(--color-height-light);
    background-color: var(--background-color-light-1);
    border-radius: 0;
}
.top-bar {
    display: flex;
    grid-auto-flow: column;
    justify-content: space-between;
    align-items: center;
    justify-items: stretch;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 8px;
    background-color: var(--background-color-primary);

}

.top-bar,
.top-bar a {
    color: var(--background-color-light-2);
    text-decoration: none;
    overflow: hidden;

}

.top-bar .sub-nav {
    
    display: flex;
    justify-content: flex-end;
    width:fit-content;
    right: 10px;
}

.top-bar .sub-nav a:last-child {
    padding-right: 10px;
}

.top-bar .sub-nav a {
    padding: 5px;
}

.top-bar .scrolling-light {
    
    text-align: center;
    padding: 10px 0px;
    flex-grow:1;
}

.brand-logo {
    text-align: center;
}

.brand-logo img {
    width: 100%;
    max-width: 170px;
    min-width: 145px;
    padding: 16px 10px;
}

.nav {
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
    
    background-color:var(--font-color-light);
}

.nav-menu {
    display: flex;
    width: fit-content;
    justify-content: center;
    margin: 0 auto;
    align-items: center;
    flex-direction: row;
    transition: all .6s linear;

}

.nav-menu .nav-item {


    font-size: 1.4rem;
    width: fit-content;


}

.nav-menu .nav-item a {
    display: block;
    padding: 1rem 40px;
    transition: all 240ms linear;
    white-space:nowrap;
}


.nav-menu .nav-item.hover,
.nav-menu .nav-item a:hover {
    border-left: 2px dotted var(--font-color-second);
    border-right: 2px dotted var(--font-color-second);
    border-bottom: 5px solid var(--color-height-light);
    background-color: var(--background-color-light-1);
}

.nav-btn {
    display: none;
    /*border-top: 5px solid var(--background-color-second);*/
    /*box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;*/
    /*background-color: var(--font-color-light);*/
}
 
.nav-btn .btn-item{
    border-radius: 99px;
    width: fit-content;
    width: 6rem;
    border: 1px solid var(--background-color-second);
    height: 6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color:#ffffffb8;
}
.nav-btn .btn-item:nth-child(2){
    background-color:#554a41d9;
    color:var(--background-color-light-1);
}
.nav-btn .btn-item:nth-child(2) a{
   
    color:var(--background-color-light-1);
}

.nav-btn .btn-item a {
    display: block;
    font-size: clamp(18px, 3vw, 4rem);
    border-width: 1px;
    border-radius:50%;
    color:var(--background-color-second);
}

#nav-item-menu {
    flex-grow:1;
    /*border: 3px dotted var(--background-color-primary);*/
    border-top: 0px;
    border-bottom: 0px;
}

.footer {
    background-color: var(--background-color-second);
    color: var(--font-color-light);
    box-shadow: rgba(0, 0, 0, 0.45) 0px -20px 20px -20px;
}

.footer-block {
    border-bottom: 1px solid var(--background-color-primary);
}

.btn-expand {
    text-align: center;
    padding: 15px 0;

}

.footer-expand {
    display: flex;
    width: 95%;
    margin: 0 auto;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: all 540ms linear;
}

.footer-expand-item {
    margin: 20px;
}

.active-flex {
    height: auto;
    opacity: 1;
}

.footer-nav {
    width: 98%;
    margin: 0 auto;
}

.footer-nav-flex {
    display: flex;

}

.footer-logo img {
    width: 100%;
    max-width: 150px;
}

.footer-nav-flex-item {
    display: grid;
    align-content: space-between;
    grid-auto-flow: row;

    padding: 0rem 4rem;
    margin: 5rem 0;
    max-width: 33%;
    min-width: 250px;
}

.footer-nav-flex-item:nth-child(2) {
    border-left: 1px solid #706861;
    border-right: 1px solid #706861;
}
.footer-nav-flex-item:nth-child(3){

}
.footer-nav-flex-item-title {
    color: var(--background-color-light-1);
    opacity: 0.6;
}

.footer-nav-flex-item-content {
    display: flex;
    font-size: 1.5rem;
    line-height: 1.5rem;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    column-gap: 3rem;
}

.footer-brand-text span,
.footer-nav-flex-item-content a,
.company-information div {

    font-size: 1.5rem;
    line-height:2.5rem;

}
.footer-brand-text{
    line-height: 1rem;
}
.footer-nav-flex-item-content a {
    color: var(--font-color-light);

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}

.footer-nav-flex-item-content a i {
    font-size: 1.5rem !important;
    margin-right: 5px;

}



.company-information div.company-title {
    font-weight: 700;
}

.copyright {
    display: flex;
    background-color: var(--background-color-primary);
    justify-content: stretch;


}

.copyright .copyright-content {
    margin: 2rem 3rem;
}

.copyright .copyright-content,
.copyright .copyright-content a {
    color: var(--background-color-light-2) !important;
    text-decoration: none;
    font-size: clamp(12px, 1.3rem, 30px);


}

.copyright .copyright-content a {
    display: inline-block;
    margin-right: 1rem;
}

.copyright .copyright-content:nth-child(2) {
    text-align: center;
}
.copyright .copyright-content:nth-child(3){
    display:block;
    justify-content: flex-end;
    min-width: 260px;
    flex-grow:1;
}
.copyright .copyright-content:nth-last-child(1) {
    text-align: right;
}

.copyright-content i {
    font-size: clamp(36px, 4rem, 50px);
}

.w-97{
    width:97%;
    margin:0 auto;
}
.w-90{
    width:90%;
    margin:0 auto;
}
.flex-align-right{
    display: flex;
    justify-content: flex-end;
}
.text-align-left{
    text-align:left;
}
.category-list{
    margin: 0;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-end;
    align-items: flex-end;
    overflow: hidden;
    position: relative;
}
.category-list h1{
    width:96%;
    padding-bottom: 35px;
    margin-top:50px;
}

.products-list{
    display:flex;
    gap:2rem;
    width:96%;
    overflow:scroll;
    transition: all 540ms linear;
    padding-bottom: 50px;
}
.category-list .arr_right,.category-list .arr_left{
    display:flex;
    position: absolute;
    width:fit-content;
    z-index: 99;
    align-items: center;
    flex-direction: column;
    flex-wrap: nowrap;
    height: 100%;
    justify-content: center;
    font-size: clamp(36px, 6vw, 90px) !important;
    color: var(--font-color-primary);
    opacity: .6;
    top: 36px;
}
.category-list .arr_right{
    right:0;
}

.category-list .arr_left{
    left:0;
    display:none;
}
.products-list .product-item{
    min-width:330px;
    transition: all 540ms linear;
}
.product-card{
    background-color:var(--font-color-light);
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    align-content: center;
    gap:1rem;
}
.product-card .product-photo,.product-card .product-title,.product-card .product-price{
    text-align:center;
    display: block;
    width: 87%;
    margin: 0;
    color:var(--font-color-third);
}
.product-card .product-photo{
    padding-top: 10px;
    width:90%;
    height:fit-content;
    overflow: hidden;
    position:relative;
    text-align:left;
    max-width: 297px;

}

.product-card .product-photo .product-tag{
    position:absolute;
    left:0px;
    top:10px;

}

.product-card .product-photo .product-tag span{
    background-color:var( --background-color-primary);
    font-size:clamp(12px, 1.5rem, 24px);
    color:var(--font-color-light);
    border-radius: 100px;
    padding:2px 10px;
    padding-bottom: 4px;
}

.product-card .product-photo img{
    width:100%;
    object-fit: cover;
    aspect-ratio: 1/1;
    border-radius: 5px;
    
}
.product-addcart{
    width:70%;
}
.product-card .product-title{
    color:var(--font-color-second);
    font-size:2.5rem;
}
.product-card .product-price{
    font-size: clamp(10px, 1.5rem, 24px);
    letter-spacing: .2pt;
    font-weight: 900;
}
.product-card .product-price .price{
    font-size: clamp(18px, 2.8rem, 40px);
    font-weight: 900;
    font-family: Montserrat;
    letter-spacing: .2pt;
}


.product-card .product-addcart a{
    width:100%;
    display:inline-flex;
    background-color:var( --background-color-primary);
    color:var(--font-color-light);
    text-align:center;
    justify-content: center;
    padding:5px 0;
    margin-bottom: 10px;
    border-radius: 3px;
    font-size:2rem;

}

.themed-ads{
    display:flex;
    justify-content: center;

}

.themed-ads .themed-ads-box{
    display:flex;
    background-color:var(--background-color-light-2);
    width:90%;
    margin:0 auto;
    margin-bottom: 40px;
    margin-top: 40px;
    flex-wrap: nowrap;
    flex-direction: row;
}
.themed-ads-left,.themed-ads-right{
    width:auto;
}
.ads-content{
    flex-grow: 0; 
}
.ads-img{
    flex-grow: 1;   
}
.themed-ads-left.ads-content{
    
    padding:30px 50px;
    text-align:center;
    display:flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    color:var(--font-color-third);
    min-width: 450px;
}
.themed-ads-left.ads-content span{
    margin:20px;
    
}

.themed-ads-left.ads-content a{
    display:block;
    border:1px solid var(--font-color-third);
    padding:1rem 1.5rem;
    color:var(--font-color-third);
    font-size: clamp(16px, 1.17vw, 40px);
}

.themed-ads-right.ads-img{
    overflow: hidden;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
}
.themed-ads-right.ads-img img{
    width: 100%;
    height: auto;
    max-height: 400px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.topic-block{
    position:relative;
    display: block;
    width: 90%;
    margin: 0 auto;
    padding: 30px 0;
}
.topic-block h1{
    width:fit-content;
    float:left;
}
.btn-more{
    position: absolute;
    right: 5px;
    float: right;
    width: fit-content;
    font-family: Montserrat;
    font-size: 2rem;
    letter-spacing: .3pt;
    font-weight: 900;
}
.topic-block .topic-box{
    display: flex;
    padding: 30px 0;
    align-items: flex-start;
    flex-direction: row;
    gap: 2rem;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 100%;
}

.topic-block .topic-box .topic-item{
    width: auto;
    max-width:100%;
    display:block;
    overflow: hidden;
    border-radius: 5px;
    flex-grow: 1;
}

.topic-card{
    display: flex;
    width: 100%;
    flex-direction: column;
    flex-wrap: nowrap;
}
.topic-card .topic-photo{
    
    display:block;
    width:100%;
}
.topic-card .topic-photo a{
    display:flex;
    width:100%;
    justify-content: center;
    border-radius: 5px;
    
}
.topic-card .topic-photo img{
    width:100%;
    height:auto;
    min-height: 140px;
    border-radius: 5px;
    max-height: 250px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.topic-card .topic-title{
    margin:10px auto;
    color:var(--font-color-third);
    font-size: clamp(18px, 1.6vw, 36px);
    line-height:clamp(24px, 1.8vw, 40px);
}
.topic-card .topic-tag{
    margin:10px 0;
    display:flex;
    gap: 5px;
}
.topic-card .topic-tag span{
    border:1px solid var(--font-color-second);
    padding:0px 5px;
    padding-bottom: 3px;
    border-radius: 3px;
}
.topic-card .topic-tag,.topic-card .topic-date{
    color:var(--font-color-second);
        font-size: clamp(12px, 1.5rem, 30px);
}

.breadcrumbs{
    background-color:#7d726826;
    padding:10px 0;
    color:#B3A59A;
    font-size: clamp(12px, 1.5rem, 30px);
   
}

.breadcrumbs a{
    color:var(--color-height-light);
    font-size: clamp(12px, 1.5rem, 30px);
}

.breadcrumbs span:nth-child(1){
    margin-left:20px;
}

.products-categories-btn{
    position:fixed;
    bottom:65px;
    width:100%;
    z-index:9999;
    display:flex;
    justify-content: center;
    

}
.products-categories-btn .fa-solid{
    transition: all .2s linear;
}

.products-categories-btn a{
    color:var(--font-color-light);
    background-color:#01b3cde8;
    border-radius: 99px;
    padding:10px 20px;
    font-size: clamp(18px, 1.5vw, 32px);
    justify-self: center;
}

.products-categories-content{
  display:block;

  background-color:#ff8381;
  width: 100vh;
  height: 100vh;
  margin: 0 auto;
  position:fixed;
  scale: 0;
  border-radius: 50%;
  bottom:-100wh;
  right:-100vw;
  z-index:9999;
  transition: all .2s linear;
}

.products-categories-content .btn_close{
    position:absolute;
    width:fit-content;
    margin-right:12%;
    font-size: clamp(45px, 3vw, 60px);
    right:0;
    top:5%;

}
.products-categories-content .btn_close a{
    color:var(--font-color-third);
}
.products-categories-content .products-table-content{
    display:flex;
    flex-grow:1;
    gap: 5px;
    width: 80%;
    max-width: 650px;
    height: 80vh;
    align-content: center;
    margin: 0 auto;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 70px;

}
.products-table-content h1{
    width: 80%;
    color: #ffffff;
    padding-bottom: 10px;
}


.products-categories-content .products-table-content .products-categories-list{
    background-color:var(--background-color-light-2);
    border-radius: 50px;
    width:auto;
    max-width:300px;
    min-width:100px;

}
.products-categories-content .products-table-content .products-categories-list i{
    display:flex;
    align-items: center;
    margin-left: 5px;
}

.products-categories-content .products-table-content .products-categories-list a{
    display:flex;
    ustify-content: space-between;
    padding:10px 20px;
    font-size: clamp(16px, 1.2vw, 32px) !important;
    color:var(--font-color-third);
}

.products-categories-content .products-table-content .products-categories-list a.active{
    color:#ff8381;
}
.products-categories-content .products-table-content .products-categories-list a span{
    flex-grow:1;
    text-align:center;
    font-size: clamp(16px, 1.2vw, 32px) !important;
}

.products-categories-content.active-scale{
  scale: 1;
  bottom:-10vh;
  right:-5vw;
}


input{
    border:1px solid #B3A59A;
    border-radius: 50px;
    font-size: clamp(24px, 2rem, 3rem);
    color: var(--font-color-third);
    padding:10px 0px;
    text-align:center;
    width:100%;
}
select {
    border: 1px solid #B3A59A;
    border-radius: 10px;
    font-size: clamp(18px, 2rem, 3rem);
    color: var(--font-color-third);
    padding: 10px 20px;
    height: 100%;
}
.sending-payment-tips{
    display:flex;
    color: var(--font-color-third);
    margin:6px 0;

}
.sending-payment-tips .title{
    margin-right:20px;
    color: #B3A59A;
    width: auto;
    min-width: 80px;
}
.sending-payment-tips .information{
        color: var(--font-color-third);
}

input#quantity{
    width:fit-content;
    padding:5px 10px;
    margin-right: 5px;
}
.member-form-panel{
    display:block;
    width:100%;
    padding: 30px 0;
}
.member-form-panel .member-form-title-bar{
    background-color:#DCD5D0;
    border-radius: 100px;
    width:100%;
    display:flex;
    gap:5px;
    align-items: center;
    justify-content: space-evenly;
}

.title-switch-item{
    display: flex;
    border-radius: 100px;
    padding: 10px 0px;
    align-content: center;
    justify-content: center;
    text-align: center;
    margin:5px;
    width: 100%;

}

.title-switch-item a{
    color:#ffffff;
}
.title-switch-item .switch-item-subname{
    font-size: clamp(18px, 2rem, 4rem);
}
.title-switch-item .switch-item-subname{
    font-size: clamp(12px, 1.5rem, 2.4rem);
}

.title-switch-item.active{
    background-color:#ffffff;
    
}
.title-switch-item.active a{
    color:var(--font-color-third);
}

.title-switch-item.active .switch-item-subname{
    color:#DCD5D0;
}

.member-form-grid{
    display: flex;
    width: 90%;
    margin: 0 auto;
    flex-direction: column;
    gap:30px;
    padding:30px 0;
    max-width: 1280px;
}
.form-hold{
    display:flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
}
.form-item{
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--font-color-third);
    width: 100%;
    margin-bottom: 20px;
}
.form-item input{
    border-radius: 99px;
    border:1 solid #DED7D2;
}
.vemail,.vemail a{
    color:#ef8575;
    margin-top: 22px;
}

.alertTips{
    display:none;
}
.alertTips.TipsCol{
    display:;
    position: absolute;
    z-index: 999;
    background-color: #ef8575e0;
    padding: 10px 0;
    text-align: center;
    color: #ffffff;
    font-size: 2rem;
}
label.error{
    text-align: center;
    color: #ef8575;
    font-size: 2rem;
}
::placeholder {
  color:#DED7D2;
  font-size: clamp(16px, 2rem, 3rem);
}
.form-item i{
    margin-right:5px;
}
.form-item .button{
    width:100%;
    border-radius: 50px;
    background-color:#FDD000;
    color:#7D7268;
    padding:10px;
    border:0px;
    font-size: clamp(18px, 2rem, 4rem);
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 2.6rem;

}
.form-item .button i{
    float:right;
    height:100%;
    padding:5px;
}

.button.gotojoin i{
    float:left;
}
.button.gotojoin{
    background-color:#C4B9B1;
    color:#ffffff;
}

.user-tips{
    width:100%;
    text-align:center;
    color:#FDD000;
    margin:10px auto;
}
label span{
    color:#FDD000 !important;
}
label a{
    color:#FDD000;
}
.form-line{
    width:100%;
    border-top:3px dotted #DCD5D0;
    max-width: 1280px;
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 30px;
}
.user-join,.user-member,.user-gotpin{
    display:none;
}
.ship_box{
    width: 90%;
    margin: 0 auto;
    padding: 30px 0;

}

.ship_box span {
    color: #B3A59A;
}
.title-box{
    display: flex;
    justify-content: space-evenly;
    align-items: stretch;
    flex-wrap: nowrap;
}
.title-box .title{
    min-width:200px;
    text-align: center;
}
.title-box .checkout-flow{
    width: fit-content;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    width: 100%;
}

.flow-line{
    display:flex;
    justify-content: space-around;
    align-items: center;
    width:100%;
    margin-bottom: 40px;
}
.flow-point{
    width:32px;
    height:32px;
    padding:10px 10px;
    display:flex;
    font-size:18px;
    border-radius: 50px;
    color:#ffffff;
    background-color:#B3A59A;
    align-items: center;
    justify-content: center;
}
.flow-point.on,.flow-flow.on{
    background-color:var(--color-height-light);
}
.flow-flow{
    flex-grow:1;
    height:1px;
    width:auto;
    background-color:#B3A59A;
}

.addr-box{
    display: flex;
    flex-direction: row;
    gap: 2rem;
    width: 100%;
}

.addr-box .addr-item:last-child{
    flex-grow:1;
}
.quntity-number{
    width: fit-content;
    display: inline-flex;
    flex-direction: row;
    align-items: center;

}
.quntity-number a{
    color:#695B50;
    font-size:4rem;

}
#quntity-number{
    border: 1px solid #B3A59A;
    border-radius: 100px;
    font-size: clamp(24px, 2vw, 3rem);
    color: var(--font-color-third);
    padding: 10px 20px;
    width: 50px;

}

#quntity-number:focus{
    border:1px solid var(--font-color-third);
}


.specification-type-title{
    color:var(--font-color-third);
    margin:20px 0;
    margin-bottom: 10px;
}


.products-search-box{
    display:flex;
    margin-bottom: 20px;
    flex-direction: column;
    align-items: center;
}
.products-search-box .products-search{
    border-radius: 50px;
    margin-bottom: 10px;
}
.search-tag,.search-tag span a{
    color:#725B49;
    display:flex;
    gap:30px;
}
.search-box{
    display: flex;
    justify-content: space-between;
    width: 100%;
    flex-wrap: nowrap;
}
.search-tag div.tag{
    display:block;
    border-radius: 50px;
    position:relative;
}
.search-tag div.tag input{
    appearance: none;
    
    border-radius: 50px;
    
    text-align: center;
    width: 100%;
    height: 100%;
    position:absolute;
    top: 0;
    left: 0;
    display:block;
    border:0;
    
   
}
.search-tag div.tag input + label{
    display:flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    padding: 5px 10px;
    font-size:2rem;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    border: 1px solid #B3A59A;
    color: var(--font-color-third);
    white-space: nowrap;

}
.search-tag div.tag input:checked + label{
  background-color: #B3A59A; /* Checked background color */
  border-color: #B3A59A;
  color:#ffffff;

}


.specification-type{
    display:flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap:30px;
}
.specification-type .radio-box{
    display:block;
    position:relative;
    width:fit-content;
}
.list-products .radio-box{
    margin-right:20px;
}
.specification-type .radio-box input{
    appearance: none;
    width: 100%;
    height: 100%;
    position:absolute;
    top: 0;
    left: 0;
    display:block;
    padding: 5px 15px;
    border:0px;

}
.specification-type .radio-box input + label{
    display:flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    padding: 5px 10px;
    font-size:2rem;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    border: 1px solid #B3A59A;
    white-space: nowrap;
    top:0;
    color:#B3A59A;

}
.specification-type .radio-box input:checked + label{
    background-color:#B3A59A;
    color:#ffffff;

}
.dropdown-close{
    display:none;
}
@media (max-width:1246px) {
    .themed-ads-right.ads-img{
        justify-content:center;
    }
    .themed-ads-right.ads-img img{
        width: auto;
        height: 100%;
    }
}

@media (max-width:1024px) {
    .footer-nav-flex-item:nth-child(2) {
        border-left: 1px solid #706861;
        border-right: 1px solid #706861;
        display:none;
    }
    .footer-nav-flex-item:nth-child(1) {
        flex-grow: 1;
        max-width:100%;

    }
    .footer-nav-flex-item:nth-child(3) {
        
        min-width:250px;
        
    }
}



@media (max-width:750px) {


    .nav {
        position: fixed !important;
        bottom: 0px !important;
        top: auto;
        z-index: 99999;
        width: 100%;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        display: none;
        zoom:0%;
        transition: all .6s linear;
    }
    .nav-menu .nav-item.hover, .nav-menu .nav-item a:hover {
        background-color: #f5f0ece6;
        border-radius: 99px;
    }
    .nav-menu .nav-item {

        width: 69%;
        margin: 0 auto;
        background-color: #ffffffe6;
        border-bottom: 1px dotted var(--background-color-primary);
        border-radius: 99px;
        margin-bottom: 2px;

    }

    .dropdown-content {
        position: static;
        padding: 12px 0;
    }
    .nav{
        background-color:transparent;
    }
    .nav-btn {
        display: flex;
        gap: 1rem;
        width: 90%;
        margin: 0 auto;
    }

    .is-active {
        display: block !important;
        zoom:100%;
    }


    .footer-nav-flex {
        flex-direction: column;
        flex-wrap: wrap;
        padding: 0rem 0rem;
        margin-top: 3rem;

    }
    .footer-nav-flex-item{
        width:90%;
        max-width: 100%;
        padding:0;
        margin:0 auto !important;
        padding-bottom: 3rem !important;
    }
    .footer-nav-flex-item:nth-child(2) {
        border: 0;
    }

    .copyright {
        padding-bottom: 7rem;
    }

    .topic-block .topic-box{
        flex-wrap: wrap;
    }


    .topic-block .topic-box .topic-item{
        flex-basis:content;
        max-width:48%;
    }
    .themed-ads .themed-ads-box{
        flex-wrap: wrap;
    }
    .themed-ads-right.ads-img img{
        width: 100%;
        height: auto;
    }

    .btn-gotop{
        bottom: 11.2%;
        right: 4.9%;

    }
    .products-categories-btn{



    }

    .copyright {
        padding-top:30px;
        padding-bottom: 7rem;
        display: flex;
        background-color: var(--background-color-primary);
        flex-direction: column;
        flex-wrap: nowrap;
        align-content: flex-start;
        text-align: center;
    }


    .copyright .copyright-content {
        text-align: left !important;
        margin: .5rem auto;
        width: 90%;
        margin-top:2rem;
        margin-bottom: 0;
       
    }

    .copyright .copyright-content i {
        font-size: clamp(45px, 3rem, 60px);
    }


    .copyright .copyright-content:nth-child(3){
        display:block;
        justify-content: flex-start;
    }
    .copyright .copyright-content:nth-child(2){
        margin-top:0;
    }

    .themed-ads-left.ads-content{
        min-width:200px;
        margin:0 auto;
    }

    .dropdown .dropdown-content.active {
        display: block;
        bottom:7rem;

    }
    .dropdown .dropdown-content{
        display:none ;
        background-color: var(--background-color-light-1);
        border-radius: 0 0 20px 20px;
        border-bottom: 15px solid #03b3cd;
        position: absolute;
        z-index: 9999;
        width: 70%;
        margin: 0 auto;
        border-radius: 2rem;
        /* top: 0; */
        font-size: 1.5rem;
        bottom: -90rem;
        transition: all 150ms linear;
    }
    .dropdown-close{
        display:none;
    }
    .nav-item.dropdown{
        position: static;
    }
    .dropdown-close{
        width: fit-content;
        float: right;
        font-size: 5rem;
        position: absolute;
        right: -13px;
        top: -13px;
        color: #03b3cd;
        display: block;
    }

}


@media (max-width:550px) {

    .footer-nav {
        width: 90%;
        margin: 0 auto;
    }




    .topic-block .topic-box .topic-item{
        flex-basis:content;
        max-width:100%;
    }

    .products-categories-content{
      bottom:-100vh;
      left:100vw;
    }
    .products-categories-content.active-scale{
      scale: 1;
      bottom:-20vh;
      left:0vw;
    }   

    .products-categories-content .btn_close{

        left:80vw;
        top:5%;

    }
    .products-categories-content .products-table-content{
        justify-content: left;
        width: 85vw;
        margin: 0 auto;
        margin-left: 10vw;
    }
    .brand-logo img {
        width: 30%;
        max-width: 200px;
        min-width: 60px;
        padding: 10px 0px;
    }
    .form-hold{
        flex-direction: column;
    }



    .button.gotojoin i{
        float:right;
    }

}

@media (max-width:500px) {
    .products-categories-content .products-table-content{
        justify-content: center;
        width: 70vw;
        margin: 0 auto;
        margin-left: 10vw;
        position:relative;
        bottom:17px;
    }



}






