@charset "utf-8";

/* set html font size 10px as the base, 1rem=10px */
html {
  font-size: 10px;
}

body {
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 2.8rem;
  color: #211f20;
}

/* define some variables */
[data-bs-theme=light] {

  /* 自定义文字颜色 */
  --white-color: #ffffff;
  --text-color: #211F20;
  --blue-color: #97C1E4;


}

/* custom font-family */
@font-face {
  font-family: 'Inter';
  font-display: swap;
  font-weight: 400;
  font-style: normal;
  src: url('./fonts/Inter-Thin-Normal.ttf') format('truetype');
  /* chrome、 firefox、opera、 Safari, Android, i0s 4.2+*/
}

@font-face {
  font-family: 'Interbold';
  font-display: swap;
  font-weight: 700;
  font-style: normal;
  src: url('./fonts/Inter_24pt-Bold.ttf') format('truetype');
  /* chrome、 firefox、opera、 Safari, Android, i0s 4.2+*/
}

@font-face {
  font-family: 'LuxuriousScript';
  src: url('./fonts/LuxuriousScript-Regular.ttf') format('truetype');
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'Khand';
  src: url('./fonts/Khand-SemiBold.ttf') format('truetype');
  font-display: swap;
  font-style: bold;
}

@font-face {
  font-family: 'Khand_reg';
  src: url('./fonts/Khand-Regular.ttf') format('truetype');
  font-display: swap;
  font-style: normal;
}


/* public css */
.container {
  max-width: 1620px !important;
}


a {
  text-decoration: none;
  color: var(--text-color);
}

ul,
ul li {
  padding: 0;
  margin: 0;
  list-style: none;
}


/* btns */
a.abtn {
  display: block;
  height: 6rem;
  line-height: 6rem;
  padding: 0 4rem;
  border: 2px solid #fff;
  border-radius: 42.5px;
  font-size: 2rem;
  text-align: center;
  color: #fff;
  transition: all .5s;
}

a.abtn:hover {
  background: #1e4886;
  color: #fff;
}


/* when contents are too long, it will be hidden with ellipsis */
.mh1 {
  min-height: 4rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  line-height: 5rem;
}

.mh2 {
  min-height: 4rem;
  line-height: 2rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}

.mh3 {
  min-height: 6rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
}

.yellowbg {
  background-color: #f9f0dc;
}


/* header part */



/*expand-xxl时折叠下拉菜单给个白底*/
.luxfont {
  font-family: LuxuriousScript;
  font-size: 9.6rem;
}

.Khand {
  font-family: Khand;
}

.Khand_reg {
  font-family: Khand_reg;
}

.luxtitle {
  font-family: LuxuriousScript;
  font-size: 9.6rem;
  font-weight: 400;
  line-height: 6.4rem;
}

.brightscale img {
  transition: transform 0.6s ease, filter 0.6s ease;
}

.brightscale img:hover {
  transform: scale(1.08);
  /* 轻微放大 */
  filter: brightness(1.1) drop-shadow(0 0 8px rgba(152, 195, 230, 0.5));
  /* 柔和蓝光 */
}


@media (min-width: 1400px) and (max-width: 1630px) {}

/*top nav end*/




.topnav {
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  background: #97C1E4;
  height: 8rem;
  /* 初始无背景 */
}

.fixed-top {
  z-index: 998 !important;
}

.topnav.navshadow {
  /* #1e4886; */
  background: rgba(30, 72, 134, 0.9);
  /* 半透明蓝色 */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}


@media (min-width: 992px) {



  .topnav a.navbar-brand {
    position: relative;
    top: 0rem;
    left: 4rem;
  }
  
  .topnav a.navbar-brand img {
    width: 147px;
  }

  .navbar-toggler {
    position: relative;
    top: 0rem;
    right: 3rem;
  }


}

/*mobile menu top and left combo together*/
#navcombotoggle {
  border: none;
}

.navbar-toggler:focus,
.navbar-toggler:active {
  box-shadow: none;
  outline: none;
}

/*remove the border of the navcombotoggle button*/

/* 三条线按钮样式 mobile menu btn */
.toggler-icon {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 14px;
  cursor: pointer;
}

.toggler-icon::before,
.toggler-icon::after,
.toggler-icon div {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s ease;
}

.toggler-icon div {
  height: 2px;
}

.toggler-icon::before {
  top: 0;
}

.toggler-icon div {
  top: 6px;
}

.toggler-icon::after {
  bottom: 0;
  width: 100%;
}

/* 变成 X 状态 mobile menu close btn*/
.toggler-icon.active::before {
  transform: rotate(45deg);
  top: 6px;
}

.toggler-icon.active div {
  opacity: 0;
}

.toggler-icon.active::after {
  width: 100%;
  transform: rotate(-45deg);
  bottom: 6px;
}


#combomenu {
  background: rgba(255, 255, 255, 0.9);
  position: fixed;
  top: 80px;
  left: 0;
  bottom: 0;
  transition: all .5s;
  transform: translateX(-100%);
  width: 100%;
  max-width: 100%;
  z-index: 1050;
  padding-top: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e6e3e3;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;

}

#combomenu ul li a {
  color: #0b0b0b;
}

#combomenu.active {
  transform: translateX(0);
}

#combomenu>ul {
  padding-left: 5rem;
}

#combomenu>ul>li>a {
  font-size: 2rem;
}



#combomenu .submenu {
  list-style: none;
  padding-left: 15px;
  display: none;
}

#combomenu .submenu li a {
  font-size: 1.8rem;
}

/* add an arrow for a with submenu */
#combomenu .toggle::after {
  content: "\276F";
  /* content: "\25B6"; right arrow */
  float: right;
  transform: rotate(0deg);
  transition: transform 0.3s;
  font-size: 1.2rem;
}

/* when active,rotate the arrow */
#combomenu .toggle.active::after {
  transform: rotate(90deg);
}

#closecombo {
  font-size: 1.6rem;
  margin-top: 10px;
}

/*pc and mobile header*/


/* breadcram navigation*/
.breadnavbg {
  height: 5rem;
  background: #282828;
}

.breadnavbg nav li {
  color: #fff;
  line-height: 5rem;
}

.breadnavbg nav li a {
  color: #fff;
  font-size: 1.6rem;
}

.breadnavbg nav li a.active {
  color: #dcb878;
}

.breadnavbg .breadcrumb-item+.breadcrumb-item::before {
  color: #fff;
}


/*pagination for product list, news list */
.pagenav {
  display: flex;
  justify-content: center;
  margin: 4rem auto 1rem;
}

.pagenav .pagination {
  --bs-pagination-bg: #0b0b0b !important;
}

.pagenav .pagination li a {
  color: #fff;
}

.pagenav .pagination .page-link {
  border-color: #464646;
}

.pagenav .page-item .page-link:hover {
  background-color: inherit;
}

.pagenav .pagination .active a.page-link {
  background: none;
  color: #dbc395;
  font-weight: bold;
}

/* pagination end  */

/* bread crumb navigation */
.breadcrumb {
  color: #c4c2b4;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: #c4c2b4;
}

.f_red {
  color: #fa3c3e;
}

.f_cyan {
  color: #4cae50;
}

/* main btn */
.btn-main {
  width: 100%;
  height: 60px;
  background-color: #f4de95;
  margin: 4rem auto;
  color: #211f20;
  font-size: 2.4rem;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  text-align: center;
  padding: 0.6rem 1.5rem;
  box-sizing: border-box;
  transition: background-color 0.25s ease, transform 0.1s ease;
}

.btn-main:hover {
  background-color: #f9dd8a;
  color: #211f20;
  transform: translateY(-1px);
}

.btn-main:active {
  transform: translateY(0);
}

.btn-main:focus {
  box-shadow: 0 0 0 0.2rem rgba(244, 222, 149, 0.5);
  outline: none;
}

/* 数量输入框 */
/* 去掉 Chrome / Safari / Edge 的数字输入箭头 */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

/* 去掉 Firefox 的数字输入箭头 */
input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}


/* fixed cart ico with number  */
a.cartico {
  display: block;
  width: 60px;
  height: 50px;
  background: url(../images/cartico.png) no-repeat;
  background-position: left bottom;
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  cursor: pointer;
  user-select: none;
}

a.cartico i {
  display: block;
  width: 24px;
  height: 24px;
  background-color: #04498d;
  color: #fff;
  font-size: 1.4rem;
  font-style: normal;
  line-height: 20px;
  text-align: center;
  border: 2px solid #97C1E4;
  border-radius: 12px;
  position: absolute;
  right: 0;
  top: 0;
}

/* add to cart modal  */
#cartSuccessModal .modal-header h5 {
  font-size: 1.8rem;
}

#cartSuccessModal .modal-body p {
  font-size: 1.4rem;
}

#cartSuccessModal .btn {
  height: 30px;
  line-height: 20px;
  font-size: 1.4rem;
}

#cartSuccessModal .btn-primary {
  background-color: #04498d !important;
  min-width: 120px !important;
}

/* check out page  */
#checkoutModal .modal-title {
  font-size: 2rem;
}

#checkoutModal .modal-body p {
  padding-bottom: 2rem;
}

.btn-OK {
  width: 50%;
  margin: auto;
  background-color: #1e4886;
  height: 40px;
  line-height: 30px;
  font-size: 1.8rem;
}

.btn-view {
  background-color: #f9dd8a;
  height: 50px;
  padding: 0 3rem;
  font-size: 2.2rem;
  line-height: 50px;
  text-align: center;
  border-radius: 25px;
}

.btn-view:hover {
  background-color: #ffffff;
  border: 1px solid #211f20;
}

.btn-outline {
  background-color: #ffffff;
  height: 50px;
  padding: 0 3rem;
  font-size: 2.2rem;
  line-height: 50px;
  text-align: center;
  border-radius: 25px;
  border: 1px solid #211f20;
}

.btn-outline:hover {
  background-color: #f7d980;
}



/*footer part*/
footer {
  text-transform: uppercase;
  font-size: 2rem;
  padding-top: 4rem;
  padding-bottom: 6rem;
  margin-top: 4rem;
}

footer .footmenu .row>div.col-md-3 {
  max-width: 330px;
}


footer .footmenu h5 {
  text-align: left;
}

.text-indent-sm {
  text-indent: 1rem;
}

footer .footmenu ul {
  padding-top: 10px;
  padding-bottom: 25px;
}

footer .footmenu ul li {
  line-height: 5rem;
  text-align: left;
}

.footer-info p {
  line-height: 4rem;
  text-align: left;
}

.footer-info .language {
  line-height: 4rem;
  text-align: left;
}


.footer-sns a.snsico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  margin-right: 1rem;
  background-color: #000;
  border-radius: 50%;
  color: #fff;
  transition: all .5s ease;
  filter: brightness(0.9) contrast(1.1);
  transform: scale(1);
}

.footer-sns a.snsico:hover {
  background-color: #04498D;
  transform: scale(1.08);
  /* 轻微放大 */
  filter: brightness(1.1) drop-shadow(0 0 8px rgba(152, 195, 230, 0.5));
}

.footer-sns a.snsico i {
  width: 20px;
  height: 20px;
  font-size: 20px;
  line-height: 1;
}

.footer-logo {
  margin-top: 0rem;
  margin-bottom: 6rem;
}

.footer-logo img {
  width: 147px;
}

.footline {
  border-bottom: 1px solid #04498D;
  margin-bottom: 5rem;
}



/*-------# Scroll Top Button-----------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 10px;
  bottom: 60px;
  z-index: 99999;
  background-color: #403d3d;
  width: 29px;
  height: 28px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 20px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background-color: #006ac6;
  color: #fff;
}

.scroll-top.active {
  visibility: visible !important;
  opacity: 1 !important;
}


/*ipad  and mobile*/
@media (max-width: 992px) {
  body {
    overflow-x: hidden;
    font-size: 1.4rem;
  }

  #combomenu {
    top: 80px;
  }

  #combomenu>ul {
    padding-left: 1rem;
  }

  footer .footmenu {
    padding-left: 2rem;
  }

  .luxfont {
    font-size: 6rem;
  }

  .luxtitle {
    font-size: 4rem;
    line-height: 5rem;
  }

  /* btns */
  a.abtn {
    display: block;
    height: 4rem;
    line-height: 4rem;
    padding: 0 2rem;
    border: 1px solid #fff;
    border-radius: 20px;

  }

  /* cart ico  */
  a.cartico {
    right: 0;
  }

}




/*only mobile phone */
@media (max-width: 768px) {
  .topnav a.navbar-brand {
    width: 12rem;
  }

  #combomenu .submenu li a {
    font-size: 1.6rem;
  }

  .topnav a.navbar-brand img {
    width: 100%;
  }

  a.abtn {
    border-radius: 30px;
    font-size: 1.6rem;
  }

  .luxtitle {
    font-family: LuxuriousScript;
    font-size: 4rem;
    line-height: 4rem;
  }

  footer .footmenu ul li {
    font-size: 1.6rem;
    line-height: 4rem;
  }

  .footer-info {
    font-size: 1.4rem;
  }

  .btn-main {
    height: 50px;
    margin: 3rem auto;
    font-size: 2rem;
    border-radius: 5px;
  }

  .btn-view {
    padding: 0 2rem;
  }

  .btn-outline {
    padding: 0 2rem;
  }
}


/*small mobile phone */
@media (max-width:500px) {

  .luxfont {
    font-family: LuxuriousScript;
    font-size: 5rem;
  }

  footer {
    margin-top: 2rem;
  }

  .footline {
    margin-bottom: 4rem;
  }

  .footer-logo {
    margin-bottom: 5rem;
  }

  .footer-logo img {
    width: 40%;
    max-width: 120px;
    height: auto;
  }

  footer .footmenu ul li {
    font-size: 1.4rem;

  }
}
