body {
  width: 100%;
  height: 100%;
}
h1, h2, h3, h4, h5, h6 {
  color: #444;
}
legend {
  padding: 7px 0;
  margin-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
}
label {
  font-size: 12px;
  font-weight: normal;
}
/* Chrome border line */
button:focus {
  outline: none !important;
}
/* container */
#container {
  width: 100%;
  min-height: 100%;
  position: absolute;
  margin-bottom: 300px;
}
/* content */
#content, #column-left, #column-right {
     /*  padding-bottom: 730px;*/
}
@media (min-width: 576px) {
  #content, #column-left, #column-right {
   /*  padding-bottom: 400px;*/
  }
}
#alert {
  z-index: 9999;
  position: fixed;
  top: 30%;
  left: 50%;
  width: 400px;
  margin-left: -200px;
}
@media (min-width: 992px) {
  #alert {
    width: 600px;
    margin-left: -300px;
  }
}
@media (min-width: 1140px) {
  #alert {
    width: 600px;
    margin-left: -300px;
  }
}
@media (min-width: 1320px) {
  #alert {
    width: 600px;
    margin-left: -300px;
  }
}
#alert .alert {
  margin-bottom: 15px;
}
#alert .alert-primary {
  box-shadow: 0 0 0 5px rgb(var(--bs-primary-rgb), 0.1);
}
#alert .alert-secondary {
  box-shadow: 0 0 0 5px rgb(var(--bs-secondary-rgb), 0.1);
}
#alert .alert-success {
  box-shadow: 0 0 0 5px rgb(var(--bs-success-rgb), 0.1);
}
#alert .alert-warning {
  box-shadow: 0 0 0 5px rgb(var(--bs-warning-rgb), 0.1);
}
#alert .alert-danger {
  box-shadow: 0 0 0 5px rgb(var(--bs-danger-rgb), 0.1);
}
#alert .alert-info {
  box-shadow: 0 0 0 5px rgb(var(--bs-info-rgb), 0.1);
}
#alert .alert-light {
  box-shadow: 0 0 0 5px rgb(var(--bs-light-rgb), 0.1);
}
#alert .alert-dark {
  box-shadow: 0 0 0 5px rgb(var(--bs-dark-rgb), 0.1);
}
/* top */
#top {
  background-color: var(--bs-tertiary-bg);
  border-bottom: 1px solid var(--bs-border-color);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 5px;
}
#top ul.list-inline {
  margin-bottom: 0;
}
#top .list-inline-item > a, #top .list-inline-item .dropdown > a {
  font-size: 1.1em;
  color: var(--bs-gray-600);
  line-height: 40px;
  vertical-align: middle;
  padding: 10px 0px 5px 0px;
}
/* logo */
#logo {
  text-align: center;
  margin: 7px 0 7px 0;
}
#logo img {
  max-width: 200px;
}
@media (min-width: 768px) {
  #logo {
    text-align: left;
  }
}
/* search */
/* ===== 搜索框 input ===== */
.input-group .form-control{
border-radius:999px 0 0 999px; /* 左侧圆角 */
border:1px solid #ddd; /* 输入框边框 */
border-right:none; /* 去掉和按钮之间的边框 */
box-shadow:none; /* 去掉Bootstrap默认阴影 */
padding-left:16px; /* 文字左间距更舒服 */

}

/* ===== 搜索按钮 ===== */
.input-group .btn{
border-radius:0 999px 999px 0; /* 右侧圆角 */
border:1px solid #ddd;
border-left:none; /* 和输入框连接 */
background:#f8f8f8; /* 按钮浅色 */
transition:background .2s ease;
margin-right:16px; /* 文字左间距更舒服 */
}

/* ===== 搜索按钮 hover ===== */
.input-group .btn:hover{
background:#ececec; /* hover 稍微变深 */
}

/* ===== 输入框 focus ===== */
.input-group .form-control:focus{
border-color:#ff7a12; /* 和网站橙色一致 */
box-shadow:none;
}

/* ===== 购物车按钮 ===== */
#cart .btn{
border-radius:999px; /* 胶囊按钮 */
padding:10px 18px;
font-weight:500;
transition:background .2s ease;
}

/* ===== 购物车按钮 hover ===== */
#cart .btn:hover{
background:#222;
}

/* ===== 购物车 dropdown ===== */
#cart .dropdown-menu{
border-radius:12px; /* 柔和圆角 */
border:1px solid #eee;
box-shadow:0 6px 16px rgba(0,0,0,0.12);
padding:10px;
}
#cart .dropdown-menu li {
  min-width: 300px;
}
@media (max-width: 768px) {
  #cart .dropdown-menu li {
    min-width: 100%;
  }
}

/* ---------------------------------------------- */
/* ===== NAVBAR 主体 ===== */

/* ===== MENU NAVBAR ===== */

#menu{
background:#ff8829;
background-image:linear-gradient(to bottom,#ff9a4a,#ff7a12);
background-repeat:repeat-x;
border:1px solid #ff7a12;
border-color:#ff7a12 #ff7a12 #cc5e00;
min-height:44px;
border-radius:999px;
padding:4px 16px;
margin:20px auto;
}

#menu .navbar-nav{display:flex;align-items:center;}

#menu .navbar-nav>li>a{
color:#fff;
padding:3px 14px;
border-radius:999px;
display:block;
text-decoration:none;
transition:background .2s ease;
}

#menu .navbar-nav>li>a:hover{
background:#e55d00 !important;
background-image:none !important;
color:#fff;
}

#menu .navbar-nav>li.active>a{
background:#d85000;
color:#fff;
}

#menu .dropdown-menu{
border-radius:10px;
border:1px solid #eee;
}

#menu .dropdown-inner{display:flex;flex-direction:column;}
#menu .dropdown-inner ul{width:100%;min-width:200px;}

#menu .dropdown-menu a:hover{
background:#fff3e6;
color:#ff7a12;
}



/* ---------------------------------------------- */

@media (min-width: 960px) {
  #menu .dropdown:hover .dropdown-menu {
    display: block;
  }
  #menu .dropdown-inner {
    flex-direction: row;
  }
  #menu .nav-item + .nav-item + .nav-item .dropdown-column-3 {
    left: -200px;
  }
  #menu .nav-item + .nav-item + .nav-item .dropdown-column-4 {
    left: -400px;
  }
  #menu .nav-item + .nav-item + .nav-item + .nav-item .dropdown-column-2 {
    left: -200px;
  }
  #menu .nav-item + .nav-item + .nav-item + .nav-item .dropdown-column-3 {
    left: -400px;
  }
  #menu .nav-item + .nav-item + .nav-item + .nav-item .dropdown-column-4 {
    left: -600px;
  }
}
#category {
  float: left;
  font-size: 16px;
  font-weight: 700;
  line-height: 40px;
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}
#menu .navbar-toggler i {
  color: #fff;
  border-color: #fff;
  font-size: 0.9em;
}
/* default boostrap changes */
div.required .col-form-label:before, div.required .form-label:before {
  content: "* ";
  color: #F00;
  font-weight: bold;
}
.form-switch-lg {
  font-size: 20px;
  min-height: 30px;
  line-height: 30px;
}
.nav-tabs {
  margin-bottom: 15px;
}
.form-check .form-check-input {
  margin-top: 0.25rem;
}
@media (min-width: 768px) {
  .col-form-label {
    text-align: right;
  }
}
/* footer */
footer {
  border: 1px solid #000000;
  /* position: absolute; */
  bottom: -1px;
  width: 100%;
  padding-top: 30px;
  background-color: #303030;
  border-top: 1px solid #ddd;
  color: #e2e2e2;
    margin-top: 20px;
}
footer hr {
  border-top: none;
  border-bottom: 1px solid #666;
}
footer a {
  color: #ccc;
  text-decoration: none;
}
footer a:hover {
  color: #fff;
}
footer h5 {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: bold;
  color: #fff;
  margin-top: 10px;
  margin-bottom: 10px;
}



/* breadcrumb */
/* 
.breadcrumb {
  margin: 0 0 20px 0;
  padding: 8px 0;
  border: 1px solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  background-color: var(--bs-tertiary-bg);
}
.breadcrumb i {
  font-size: 15px;
}
.breadcrumb > li.breadcrumb-item {
  text-shadow: 0 1px 0 #FFF;
  padding: 0 20px;
  position: relative;
  white-space: nowrap;
}
.breadcrumb > li.breadcrumb-item > a {
  text-decoration: none;
}
.breadcrumb > li.breadcrumb-item:after {
  content: "";
  display: block;
  position: absolute;
  top: -3px;
  right: -5px;
  width: 29px;
  height: 29px;
  border-right: 1px solid var(--bs-border-color);
  border-bottom: 1px solid var(--bs-border-color);
  transform: rotate(-45deg);
}
.breadcrumb > li.breadcrumb-item + li:before {
  content: "";
  padding: 0;
}
*/

/* Breadcrumb modern style */

.breadcrumb{
background:none;
border:none;
padding-left:40px;
margin:0px 0 20px;
font-size:13px;
list-style:none;
}

.breadcrumb-item{
display:inline;
}

.breadcrumb-item a{
color:#999;
text-decoration:none;
}

.breadcrumb-item a:hover{
color:#ff7a12;
}

/* separator */

.breadcrumb-item + .breadcrumb-item::before{
content:"›";
padding:0 8px;
color:#ccc;
}



.product-thumb {
  border: 1px solid #ddd;
  position: relative;
  height: 100%;
}
.product-thumb .image {
  text-align: center;
}
.product-thumb .image a:hover {
  opacity: 0.8;
}
.product-thumb .description {
  padding: 15px;
  margin-bottom: 45px;
}
.product-thumb .description h4 {
  font-weight: bold;
}
.product-thumb .button {
  display: flex;
  position: absolute;
  width: 100%;
  bottom: 0;
}
.product-thumb .button button {
  width: 33.33%;
  border: none;
  border-top: 1px solid var(--bs-border-color);
  background-color: var(--bs-tertiary-bg);
  color: var(--bs-gray-600);
  line-height: 38px;
  text-align: center;
}
.product-thumb .button button:hover {
  color: var(--bs-gray-600);
  background-color: #ddd;
  text-decoration: none;
  cursor: pointer;
}
.product-thumb .button button + button {
  border-left: 1px solid var(--bs-border-color);
}
@media (min-width: 960px) {
  .product-list .product-thumb {
    display: flex;
  }
  .product-list .product-thumb .image {
    flex-direction: column;
    margin-bottom: 0px;
  }
  .product-list .product-thumb .content {
    flex-direction: column;
    flex: 75%;
    position: relative;
  }
  .product-list .product-thumb .button {
    border-left: 1px solid #ddd;
    width: calc(100% -  15px);
    margin-left: 15px;
  }
}
.rating .fa-stack {
  width: 20px;
}
.rating .fa-star {
  color: #999;
  font-size: 15px;
}
.rating .fa-star {
  color: #FC0;
  font-size: 15px;
}
.rating .fa-star + .fa-star {
  color: #E69500;
}
/* product list */
.price {
  color: #444;
}
.price-new {
  font-weight: 600;
}
.price-old {
  color: #dc512c;
  text-decoration: line-through;
}
.price-tax {
  color: #999;
  font-size: 12px;
  display: block;
}
/* blog */
.blog-thumb {
  border: 1px solid #ddd;
  margin-bottom: 15px;
}
.blog-thumb h4 {
  font-weight: bold;
}
.blog-thumb .image {
  text-align: center;
  margin-bottom: 15px;
}
.blog-thumb .image a:hover {
  opacity: 0.8;
}
.blog-thumb .description {
  padding: 15px;
}
/* Theme Custom CSS */
#cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  z-index: 9999;
  opacity: 0.95;
  color: #ecf0f1;
  background: #343a40;
}
#cookie div {
  font-size: 16px;
  color: #FFFFFF;
}

/* 首页 */
/* ===== Home Features Section ===== */


.home-features {

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;

  width: 100%;
  margin-top: 40px;
  margin-bottom: 40px;

}

/* 关键：不要padding，否则往里缩 */
.home-features .feature {
  padding: 0;
  text-align: center;
}

.home-features img {

  width: 100%;
  height: auto;

  border-radius: 16px;
  display: block;

}

.home-features h3 {
  margin-top: 15px;
  font-size: 18px;
}

.home-features p {
  font-size: 14px;
  color: #666;
}

/* Responsive */

@media (max-width: 992px) {
  .home-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .home-features {
    grid-template-columns: 1fr;
  }
}

/* ===== 1. 普通蓝色文字 → 深橙色 ===== */

/* btn-primary 普通状态 */
.btn-primary {
  background-color: #ff6a00 !important;
  border-color: #ff6a00 !important;
}

/* link 蓝色文字（breadcrumb 等） */
.breadcrumb-item a,
a.text-primary,
.text-primary {
  color: #4b4b4b !important;
}

/* list-group 普通蓝色 */
.list-group-item {
  color: inherit;
}

/* 图标蓝色 */
.fa,
.fas,
.far,
.fab {
  color: #ff6a00;
}


/* ===== 2. ACTIVE 高光保持蓝色 ===== */

.list-group-item.active,
.btn-primary.active,
.btn-primary:active,
.btn-primary:focus {

background-color: #ff8829;
background-image: linear-gradient(to bottom, #ff9a4a, #ff7a12);
background-repeat: repeat-x;
border: 1px solid #ff7a12;
border-color: #ff7a12 #ff7a12 #cc5e00;


  color: #ffffff !important;
}

/* active 内文字保持白色 */
.list-group-item.active a,
.list-group-item.active .fa {
  color: #ffffff !important;
}


/* ===== 3. Hover 状态 ===== */

/* 默认 */
.btn-primary {
    background-color: #ff8829;
    background-image: linear-gradient(to bottom, #ff9a4a, #ff7a12);
    border: 1px solid #ff7a12;
    border-color: #ff7a12 #ff7a12 #cc5e00;
    color: #fff;
}

/* hover / focus */
.btn-primary:hover,
.btn-primary:focus {
    background-color: #e96f12;
    background-image: linear-gradient(to bottom, #ff8829, #d85f00);
    border-color: #d85f00;
    color: #fff;
}

/* active（点击时） */
.btn-primary:active,
.btn-primary.active {
    background-color: #c95500;
    background-image: linear-gradient(to bottom, #e96f12, #c95500);
    border-color: #b34a00;
    color: #fff;
}

/* disabled */
.btn-primary:disabled,
.btn-primary.disabled {
    background-color: #ffb27a;
    border-color: #ffb27a;
}

/* ===== 5️⃣ description h4 改黑色 ===== */

.description h4 a{
    color: #000000 !important;
}

/* ===== Dropdown active 改橙色 ===== */

.dropdown-item.active,
.dropdown-item:active {
    background-color: #cc5500 !important; /* 深橙色 */
    color: #ffffff !important;
}


/* Hover 统一（推荐） */
.dropdown-item:hover,
.dropdown-item:focus {
    background-color: #ff8829 !important; /* 稍浅橙 */
    color: #ffffff !important;
}

/* ===== NAV LINK 颜色统一 ===== */

/* 默认状态 */
.nav-link {
    color: #cc5500 !important;   /* 深橙色文字 */
}

/* hover 状态 */
.nav-link:hover,
.nav-link:focus {
    color: #ff8829 !important;
}

/* active 状态（当前页） */
.nav-link.active,
.nav-link.show {
    background-color: #ff8829 !important;
    color: #ffffff !important;
    border-radius: 4px;
}

/* navbar 中 dropdown 打开时 */
.nav-item.show > .nav-link {
    background-color: #ff8829 !important;
    color: #ffffff !important;
}



/*首页 */
.dtf-banner{
  display:block;
  width:100%;
  border-radius:20px;
  overflow:hidden;
  transition:.3s ease;
}

.dtf-banner img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.dtf-banner:hover{
  transform:translateY(-3px);
}



/* Category cards container */
.category-cards {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto 60px auto;
  width: 100%;
  box-sizing: border-box;
}

/* Individual card */
.category-card {
  flex: 1;
  background: #f5f5f5;
  border-radius: 14px;
  padding: 30px 10px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}
.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  background: #ffedda;
}

/* Icon in card */
.category-card .icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px auto;
  border-radius: 50%;
  background: #ff8829;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}

/* Card title */
.category-card h3 {
  font-size: 18px;
  margin: 0;
}



/* Fade-up animation */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}
.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media(max-width: 992px) {
  .category-cards { flex-wrap: wrap; gap: 20px; }
  .category-card { flex: 1 1 calc(50% - 20px); }
}
@media(max-width: 576px) {
  .category-card { flex: 1 1 100%; }
}


/* ===== Modern Rounded Banner ===== */

/* ===== Banner 扁平风格 ===== */

#carousel-banner-{{ module }} {
  border: none !important;
  background: none !important;
}

/* 外层拉满页面宽度 */
#carousel-banner-{{ module }} .carousel-inner {

  width: 100%;
  overflow: hidden;
  border-radius: 20px;

}

/* 取消默认row限制 */
#carousel-banner-{{ module }} .row {
  margin: 0;
}

/* 取消bootstrap列padding导致的白边 */
#carousel-banner-{{ module }} [class*="col-"] {
  padding: 0;
}

/* 图片铺满 */
#carousel-banner-{{ module }} .img {

  width: 100%;
  height: 100%;

  object-fit: cover;   /* 保持比例并填满 */

  display: block;
  border-radius: 20px;

}

#carousel-banner-0{
  border:none !important;
  background:none !important;
  box-shadow:none !important;
}




/* =========================================
   产品。PRODUCT GRID SPACING
========================================= */
/* =========================================
   CATEGORY TOP NAV
========================================= */
#product-category .list-group{
  display:flex !important;
  flex-direction:row !important;
  flex-wrap:wrap;
  gap:24px;
  margin:20px 0 30px !important;
  padding:0;
  border:none;
  background:none;
}

#product-category .list-group .list-group-item{
  display:inline-block !important;
  padding:6px 2px;
  border:none !important;
  background:none !important;
  color:#666;
  font-size:15px;
  font-weight:500;
  text-decoration:none;
  border-radius:0 !important;
  border-bottom:2px solid transparent !important;
}

#product-category .list-group .list-group-item:hover{
  color:#ff7a12;
}

#product-category .list-group .list-group-item.active{
  color:#ff7a12;
  border-bottom:2px solid #ff7a12 !important;
}


/* =========================================
   CATEGORY TOOLBAR
   左边 list/grid，右边 Sort / Show
========================================= */
.catalog-toolbar{
  display:grid;
  grid-template-columns:auto 1fr;
  align-items:center;
  column-gap:20px;
  margin:8px 0 20px;
  width:100%;
}

.catalog-toolbar .toolbar-left{
  display:flex;
  align-items:center;
  gap:10px;
}

.catalog-toolbar .toolbar-right{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:20px;
  min-width:0;
  white-space:nowrap;
}

.catalog-toolbar .toolbar-group{
  display:flex;
  align-items:center;
  gap:8px;
  white-space:nowrap;
}

.catalog-toolbar .toolbar-label{
  margin:0;
  color:#888;
  font-size:13px;
  font-weight:500;
  line-height:1.2;
}

.catalog-toolbar .toolbar-select{
  border:none;
  background:none;
  outline:none;
  box-shadow:none;
  padding:0;
  height:auto;
  width:auto;
  min-width:0;
  color:#333;
  font-size:14px;
  font-weight:500;
  cursor:pointer;
  -webkit-appearance:none;
  -moz-appearance:none;
  appearance:none;
}

#input-sort{
  width:120px;
}

#input-limit{
  width:36px;
}

.catalog-toolbar .toolbar-icon{
  border:none;
  background:none;
  box-shadow:none;
  padding:0;
  color:#666;
  font-size:18px;
  cursor:pointer;
  line-height:1;
}

.catalog-toolbar .toolbar-icon:hover{
  color:#ff7a12;
}


/* =========================================
   PRODUCT GRID SPACING
========================================= */
#product-list{
  margin-left:-8px;
  margin-right:-8px;
}

#product-list .product-layout{
  padding:8px;
}


/* =========================================
   PRODUCT CARD - BASE
========================================= */
.product-thumb{
  height:100%;
  background:#fff;
  border:1px solid #efefef;
  border-radius:16px;
  overflow:hidden;
  transition:all .2s ease;
}

.product-thumb:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 18px rgba(0,0,0,0.04);
  border-color:#e7e7e7;
}

.product-thumb .image{
  padding:10px;
  background:#fff;
}

.product-thumb .image a{
  display:block;
}

.product-thumb .image img{
  width:100%;
  display:block;
  border-radius:12px;
}

.product-thumb .content{
  padding:8px 12px 12px;
}

.product-thumb .product-title{
  font-size:15px;
  line-height:1.4;
  margin:2px 0 8px;
}

.product-thumb .product-title a{
  color:#222;
  text-decoration:none;
}

.product-thumb .product-title a:hover{
  color:#ff7a12;
}

.product-thumb .product-desc{
  font-size:13px;
  color:#777;
  line-height:1.5;
  margin:0 0 12px;
}

.product-thumb .price-action{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:4px;
}

.product-thumb .price{
  margin:0;
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}

.product-thumb .price-new{
  font-size:18px;
  font-weight:700;
  color:#ff7a12;
}

.product-thumb .price-old{
  font-size:13px;
  color:#999;
  text-decoration:line-through;
}

.product-thumb .product-actions{
  display:flex;
  align-items:center;
  gap:8px;
  margin:0;
}

.product-thumb .product-actions button{
  width:34px;
  height:34px;
  padding:0;
  border:none;
  border-radius:999px;
  background:#f6f6f6;
  color:#555;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:all .2s ease;
}

.product-thumb .product-actions button:hover{
  background:#ff7a12;
  color:#fff;
}

.product-thumb .rating{
  margin-top:10px;
  color:#f5a623;
  font-size:13px;
}


/* =========================================
   GRID VIEW
   隐藏标题 / 描述 / 评分
========================================= */
/* Grid 模式隐藏标题、描述、评分 */
/* Grid 模式：隐藏标题、描述、评分 */
.product-layout.product-grid .product-title,
.product-layout.product-grid .product-desc,
.product-layout.product-grid .rating{
  display:none !important;
}

/* List 模式：显示标题、描述、评分 */
.product-layout.product-list-item .product-title,
.product-layout.product-list-item .product-desc,
.product-layout.product-list-item .rating{
  display:block !important;
}

#product-list.grid-view .product-thumb .image{
  padding:10px;
}

#product-list.grid-view .product-thumb .content{
  padding:8px 12px 12px;
}

#product-list.grid-view .product-thumb .price-action{
  margin-top:0;
}


/* =========================================
   LIST VIEW
   显示标题 / 描述 / 评分
========================================= */
#product-list.list-view .product-layout{
  width:100%;
}

#product-list.list-view .product-thumb{
  display:flex;
  align-items:flex-start;
  gap:18px;
}

#product-list.list-view .product-thumb .image{
  width:220px;
  flex:0 0 220px;
  padding:14px;
}

#product-list.list-view .product-thumb .content{
  flex:1;
  padding:14px 14px 14px 0;
}

#product-list.list-view .product-thumb .product-title,
#product-list.list-view .product-thumb .product-desc,
#product-list.list-view .product-thumb .rating{
  display:block !important;
}

#product-list.list-view .product-thumb .product-title{
  font-size:15px;
  margin:2px 0 8px;
}

#product-list.list-view .product-thumb .product-desc{
  font-size:13px;
  margin:0 0 12px;
}


/* =========================================
   MOBILE
========================================= */
@media (max-width:768px){
  /* 顶部工具栏 */
  .catalog-toolbar{
    grid-template-columns:1fr;
    row-gap:10px;
  }

  .catalog-toolbar .toolbar-left{
    display:none;
  }

  .catalog-toolbar .toolbar-right{
    justify-content:flex-end;
    gap:14px;
    white-space:normal;
  }

  .catalog-toolbar .toolbar-label{
    font-size:12px;
  }

  .catalog-toolbar .toolbar-select{
    font-size:13px;
  }

  #input-sort{
    width:100px;
  }

  #input-limit{
    width:32px;
  }

  /* 产品卡片 */
  .product-thumb .content{
    padding:8px 12px 12px;
  }

  .product-thumb .price-new{
    font-size:16px;
  }

  .product-thumb .product-actions button{
    width:32px;
    height:32px;
  }

  /* list view 手机端改回上下结构 */
  #product-list.list-view .product-thumb{
    display:block;
  }

  #product-list.list-view .product-thumb .image{
    width:auto;
    padding:10px;
  }

  #product-list.list-view .product-thumb .content{
    padding:8px 12px 12px;
  }
}


/* 主导航文字颜色 */
#menu .nav-link{
  color:#ffffff !important;
  font-weight:500;
}

/* hover效果 */
#menu .nav-link:hover{
  color:#ffffff !important;
  opacity:0.85;
}

/* 下拉菜单 */
#menu .dropdown-item{
  color:#333;
}

#menu .dropdown-item:hover{
  background:#f6f6f6;
}


/* About Us ------------------------------------------------------------------------------------------*/

.about-wrapper{
  width:100%;
  color:#222;
}

.about-inner{
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
}

.about-section{
  padding:36px 0 72px;
}

/* HERO */
.about-hero-card{
  background:linear-gradient(180deg,#fbf7f2 0%, #f8f5f0 100%);
  border-radius:34px;
  padding:72px 54px;
  position:relative;
  overflow:hidden;
}

.about-hero-card:before{
  content:"";
  position:absolute;
  top:-60px;
  right:-60px;
  width:220px;
  height:220px;
  background:rgba(229,106,17,.06);
  border-radius:50%;
}

.about-hero-card:after{
  content:"";
  position:absolute;
  bottom:-80px;
  left:-60px;
  width:200px;
  height:200px;
  background:rgba(229,106,17,.04);
  border-radius:50%;
}

.about-eyebrow{
  display:inline-block;
  font-size:13px;
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#e56a11;
  margin-bottom:18px;
  position:relative;
  z-index:2;
}

.about-hero-title{
  font-size:54px;
  line-height:1.08;
  letter-spacing:-.03em;
  max-width:860px;
  margin:0 0 22px;
  position:relative;
  z-index:2;
}

.about-hero-text{
  max-width:720px;
  font-size:18px;
  line-height:1.9;
  color:#666;
  margin:0;
  position:relative;
  z-index:2;
}

/* INTRO */
.about-intro-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:56px;
  align-items:center;
}

.about-copy-label{
  display:inline-block;
  font-size:13px;
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#e56a11;
  margin-bottom:14px;
}

.about-copy h2{
  font-size:36px;
  line-height:1.18;
  letter-spacing:-.02em;
  margin:0 0 18px;
}

.about-copy p{
  font-size:17px;
  line-height:1.9;
  color:#555;
  margin:0 0 16px;
}

.about-image-wrap{
  position:relative;
}

.about-image-card{
  background:#f8f5f0;
  border-radius:30px;
  padding:18px;
}

.about-image-card img{
  width:100%;
  aspect-ratio:1 / 1;
  object-fit:cover;
  display:block;
  border-radius:22px;
}

/* HIGHLIGHTS */
.about-highlight-wrap{
  background:#fcfcfc;
  border-radius:34px;
  padding:54px 34px;
}

.about-highlight-head{
  text-align:center;
  max-width:760px;
  margin:0 auto 34px;
}

.about-highlight-head .label{
  display:inline-block;
  font-size:13px;
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#e56a11;
  margin-bottom:12px;
}

.about-highlight-head h2{
  font-size:36px;
  line-height:1.18;
  letter-spacing:-.02em;
  margin:0 0 14px;
}

.about-highlight-head p{
  font-size:17px;
  line-height:1.85;
  color:#666;
  margin:0;
}

.about-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.about-card{
  background:#fff;
  border:1px solid #efefef;
  border-radius:24px;
  padding:30px 24px 26px;
  transition:.25s ease;
}

.about-card:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 28px rgba(0,0,0,.05);
}

.about-card-icon{
  width:62px;
  height:62px;
  border-radius:18px;
  background:#fff3e6;
  color:#e56a11;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  margin-bottom:20px;
}

.about-card h3{
  font-size:23px;
  margin:0 0 10px;
  letter-spacing:-.01em;
}

.about-card p{
  font-size:15px;
  line-height:1.8;
  color:#666;
  margin:0;
}

/* FINAL */
.about-final{
  text-align:center;
}

.about-final-box{
  max-width:900px;
  margin:0 auto;
  padding:8px 0 0;
}

.about-final .label{
  display:inline-block;
  font-size:13px;
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#e56a11;
  margin-bottom:12px;
}

.about-final h2{
  font-size:38px;
  line-height:1.18;
  letter-spacing:-.02em;
  margin:0 0 16px;
}

.about-final p{
  font-size:18px;
  line-height:1.9;
  color:#666;
  margin:0;
}

/* MOBILE */
@media (max-width:991px){
  .about-hero-title{
    font-size:42px;
  }

  .about-intro-grid{
    grid-template-columns:1fr;
    gap:34px;
  }

  .about-highlight-head h2,
  .about-copy h2,
  .about-final h2{
    font-size:30px;
  }

  .about-cards{
    grid-template-columns:1fr;
  }
}

@media (max-width:768px){
  .about-inner{
    padding:0 18px;
  }

  .about-section{
    padding:22px 0 54px;
  }

  .about-hero-card{
    padding:42px 24px;
    border-radius:24px;
  }

  .about-hero-title{
    font-size:32px;
  }

  .about-hero-text,
  .about-copy p,
  .about-highlight-head p,
  .about-final p{
    font-size:16px;
  }

  .about-copy h2,
  .about-highlight-head h2,
  .about-final h2{
    font-size:26px;
  }

  .about-highlight-wrap{
    padding:36px 18px;
    border-radius:24px;
  }

  .about-card{
    border-radius:20px;
  }

  .about-card-icon{
    width:56px;
    height:56px;
    font-size:24px;
    border-radius:16px;
  }
}