/* ===== 基础样式 ===== */
:root {
  --main-font: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

* {
  box-sizing: border-box;
  font-family: var(--main-font);
}

body {
  font-family: var(--main-font);
  margin: 0;
  padding: 0;
  background: #fff;
  overflow-x: hidden;
  box-sizing: border-box;
  min-height: 100vh;
  position: relative;
}

/* 修复滚动条跳动问题 */
body::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-track {
  background: #f1f1f1;
}

body::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
}

body::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* Firefox 滚动条样式 */
html {
  scrollbar-width: thin;
  scrollbar-color: #c1c1c1 #f1f1f1;
}

/* 确保页面内容不会因为滚动条出现而跳动 */
html, body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* 修复移动端滚动问题 */
@media (max-width: 768px) {
  html, body {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: auto;
  }
}

/* ===== 头部样式 ===== */
.main-header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #f3e6d0;
  padding: 0;
  margin-bottom: 18px;
}

.header-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 30px 0 30px;
  min-height: 90px;
}

.header-left {
  display: flex;
  align-items: center;
  min-width: 220px;
}

.header-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  max-width: 500px;
}

.header-logo {
  min-width: 220px;
  display: flex;
  align-items: center;
}

.logo-img {
  max-width: 280px;
  height: auto;
  display: block;
}

/* 搜索框样式 */
.header-search {
  width: 100%;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #d2b385;
  overflow: hidden;
  height: 44px;
}

.header-search input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 18px;
  font-family: var(--main-font);
  padding: 0 16px;
  background: #fff;
  color: #bfa15a;
  height: 100%;
}

.header-search button {
  background: #d2b385;
  border: none;
  width: 48px;
  height: 100%;
  color: #ffffff !important;
  font-size: 20px;
  cursor: pointer;
  border-radius: 0 8px 8px 0;
  transition: background 0.2s;
}

.header-search .search-icon {
  color: #ffffff !important;
}

.header-search button:hover {
  background: #bfa15a;
}

/* 导航菜单样式 */
.header-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  width: 100%;
}

.header-menu a {
  color: #bfa15a;
  font-size: 20px;
  text-decoration: none;
  font-weight: 300;
  transition: color 0.2s;
  padding: 0 2px;
}

.header-menu a.active, 
.header-menu a:hover {
  color: #222;
  font-weight: 400;
}

/* 下拉菜单（All Products） */
.header-menu { position: relative; }
.menu-dropdown { position: relative; }
.menu-dropdown .dropdown-toggle { position: relative; }
.menu-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #f3e6d0;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  padding: 12px 0;
  min-width: 240px;
  display: none;
  z-index: 1200;
}
.menu-dropdown:hover .dropdown-menu,
.menu-dropdown.open .dropdown-menu { display: block; }
.dropdown-level-1,
.dropdown-level-2 { list-style: none; margin: 0; padding: 0; }
.dropdown-level-1 > li { position: relative; }
.dropdown-level-1 > li > a,
.dropdown-level-2 > li > a {
  display: block;
  padding: 10px 16px;
  color: #222;
  text-decoration: none;
  white-space: nowrap;
  font-size: 16px;
}
.dropdown-level-1 > li > a:hover,
.dropdown-level-2 > li > a:hover { background: #f8f8f8; color: #bfa15a; }
.dropdown-level-1 > li.has-sub > a { padding-right: 28px; }
.dropdown-level-1 > li.has-sub > a:after {
  content: '\25B6';
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  color: #999;
}
/* 二级飞出 */
.dropdown-level-2 {
  position: absolute;
  top: 0;
  left: 100%;
  background: #fff;
  border: 1px solid #f3e6d0;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  padding: 8px 0;
  min-width: 220px;
  display: none;
}
.dropdown-level-1 > li:hover > .dropdown-level-2 { display: block; }

/* 桌面端隐藏移动端元素 */
.mobile-nav-overlay {
  display: none;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: #bfa15a;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* 桌面端隐藏关闭按钮 */
.mobile-close-btn {
  display: none;
}

@media (hover: none) {
  /* 触屏设备：仅在父容器open时显示一级菜单；二级仍基于点击父级项可通过CSS维持悬停样式 */
  .menu-dropdown:hover .dropdown-menu { display: none; }
}

/* 头部悬浮效果 */
.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

body {
  padding-top: 0;
}

body.header-scrolled {
  padding-top: 120px;
}

/* ===== 主布局样式 ===== */
.main-layout {
  display: flex;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 30px;
  min-height: calc(100vh - 120px);
  position: relative;
}

/* ===== 侧边栏样式 ===== */
.sidebar {
  width: 260px;
  min-width: 200px;
  background: #fff;
  padding: 0 30px 30px 10px;
  box-sizing: border-box;
}

.filter-title {
  font-size: 32px;
  color: #bfa15a;
  margin-bottom: 10px;
  margin-top: 10px;
  font-weight: 300;
  letter-spacing: 1px;
}

.filter-line {
  border: none;
  border-top: 2px solid #e5e5e5;
  margin: 10px 0 18px 0;
}

.filter-group {
  margin-bottom: 20px;
}

.filter-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #222;
}

.filter-collapse {
  font-size: 26px;
  font-weight: 300;
  cursor: pointer;
  color: #222;
  margin-left: 10px;
  line-height: 1;
}

.filter-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.filter-list li {
  font-size: 18px;
  color: #222;
  margin-bottom: 4px;
  cursor: pointer;
  font-weight: 400;
  transition: color 0.2s;
}

.filter-list li.active {
  font-weight: bold;
  color: #222;
}

.filter-list li:hover {
  color: #bfa15a;
}

.filter-list li.has-sub {
  margin-bottom: 8px;
}

.sub-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  color: #222;
  margin-bottom: 4px;
  cursor: pointer;
  font-weight: 400;
  transition: color 0.2s;
}

.sub-header:hover {
  color: #bfa15a;
}

.sub-collapse {
  font-size: 20px;
  font-weight: 300;
  cursor: pointer;
  color: #222;
  margin-left: 10px;
  line-height: 1;
  transition: transform 0.2s;
}

.sub-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0 5px;
  display: block;
}

.sub-list li {
  font-size: 16px;
  color: #555;
  margin-bottom: 3px;
  cursor: pointer;
  font-weight: 400;
  transition: color 0.2s;
  text-align: left;
}

.sub-list li:hover {
  color: #bfa15a;
}

.sub-list li.active {
  color: #bfa15a;
  font-weight: 500;
}

/* ===== 主容器样式 ===== */
.container {
  max-width: 800px;
  margin: 30px auto;
  padding: 10px;
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* ===== 商品网格样式 ===== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 10px;
}

.item {
  background: transparent;
  border-radius: 0px;
  padding: 7px 7px 7px 7px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.item img {
  width: 100%;
  max-width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 1px;
  margin-bottom: 15px;
  background: #eee;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.item img:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
}

.item .title {
  font-size: 18px;
  color: #555;
  margin-bottom: 10px;
  text-align: left;
  min-height: 48px;
}

.item .price {
  font-size: 24px;
  color: #000;
  font-weight: bold;
  margin-top: 10px;
  letter-spacing: 1px;
  text-align: left;
  align-self: flex-start;
}

.item .price-line {
  width: 20px;
  height: 2px;
  background: #222;
  margin-bottom: 8px;
  margin-top: 8px;
  border-radius: 1px;
  align-self: flex-start;
}

/* ===== 分页样式 ===== */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0 20px 0;
  font-size: 22px;
  user-select: none;
  color: #bfa15a;
  letter-spacing: 2px;
  width: 100%;
  box-sizing: border-box;
}

.pagination .arrow {
  color: #aaa;
  margin: 0 18px;
  font-size: 26px;
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;
}

.pagination .arrow:hover {
  color: #bfa15a;
  text-decoration: none;
}

.pagination .arrow.next {
  color: #bfa15a;
}

.pagination .arrow.next:hover {
  color: #8b7355;
  text-decoration: none;
}

.pagination .page {
  margin: 0 8px;
  color: #bfa15a;
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;
}

.pagination .page:hover {
  color: #8b7355;
  text-decoration: none;
}

.pagination .page.current {
  color: #222;
  text-decoration: none;
  cursor: default;
}

.pagination .page.current:hover {
  color: #222;
  text-decoration: none;
}

/* 分页链接的焦点样式 */
.pagination a:focus {
  outline: 2px solid #bfa15a;
  outline-offset: 2px;
  border-radius: 4px;
}

/* 分页链接的激活状态 */
.pagination a:active {
  transform: scale(0.95);
}

/* 分页容器的最小高度 */
.pagination {
  min-height: 50px;
  align-items: center;
}

/* Add to Cart 链接样式 */
.add-to-cart-link {
  text-decoration: none !important;
  display: inline-block;
  color: inherit;
  text-align: center;
  line-height: 1.2;
}

.add-to-cart-link:hover {
  text-decoration: none !important;
  color: inherit;
}

.add-to-cart-link:focus {
  text-decoration: none !important;
  outline: 2px solid #bfa15a;
  outline-offset: 2px;
}

.add-to-cart-link:active {
  text-decoration: none !important;
}

/* 确保链接继承按钮的所有样式 */
a.btn-primary {
  text-decoration: none !important;
  display: inline-block;
  color: white;
  background: #bfa15a;
  padding: 15px 30px;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 150px;
  flex: 1;
  white-space: nowrap;
  text-align: center;
  line-height: 1.2;
}

a.btn-primary:hover {
  text-decoration: none !important;
  background: #a8904a;
  color: white;
}

a.btn-primary:focus {
  text-decoration: none !important;
  outline: 2px solid #bfa15a;
  outline-offset: 2px;
}

a.btn-primary:active {
  text-decoration: none !important;
}

/* 询盘表单样式 */
.inquiry-form-section {
  margin: 60px 0;
  padding: 40px;
  background: #f8f8f8;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
}

.inquiry-form-section h3 {
  margin: 0 0 30px 0;
  font-size: 28px;
  color: #222;
  text-align: center;
}

.inquiry-form {
  max-width: 800px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid #e5e5e5;
  border-radius: 6px;
  font-size: 16px;
  font-family: var(--main-font);
  transition: border-color 0.2s ease;
  background: white;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #bfa15a;
  box-shadow: 0 0 0 3px rgba(191, 161, 90, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  text-align: center;
  margin-top: 30px;
}

.form-submit .btn-primary {
  padding: 15px 40px;
  font-size: 18px;
  font-weight: 500;
  background: #bfa15a;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease;
  min-width: 200px;
}

.form-submit .btn-primary:hover {
  background: #a8904a;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .inquiry-form-section {
    margin: 40px 0;
    padding: 30px 20px;
  }
  
  .form-row {
    flex-direction: column;
    gap: 15px;
  }
  
  .inquiry-form-section h3 {
    font-size: 24px;
  }
  
  .form-submit .btn-primary {
    width: 100%;
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .inquiry-form-section {
    padding: 20px 15px;
  }
  
  .inquiry-form-section h3 {
    font-size: 22px;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 10px 12px;
    font-size: 14px;
  }
}

.pagination .ellipsis {
  margin: 0 8px;
  color: #aaa;
  cursor: default;
  user-select: none;
}

/* 分页响应式设计 */
@media (max-width: 768px) {
  .pagination {
    font-size: 18px;
    letter-spacing: 1px;
    flex-wrap: wrap;
    gap: 4px;
  }
  
  .pagination .arrow {
    margin: 0 8px;
    font-size: 22px;
  }
  
  .pagination .page {
    margin: 0 4px;
  }
  
  .pagination .ellipsis {
    margin: 0 4px;
  }
}

@media (max-width: 480px) {
  .pagination {
    font-size: 16px;
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .pagination .arrow {
    margin: 0 8px;
    font-size: 20px;
  }
  
  .pagination .page {
    margin: 0 4px;
  }
}

/* ===== 页脚样式 ===== */
.footer {
  background: #d2b385;
  color: #222;
  padding: 30px 0 0 0;
  margin-top: 40px;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 200px;
  min-width: 180px;
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-col a {
  color: #222;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 4px;
  font-size: 17px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #bfa15a;
}

.footer-title {
  font-weight: bold;
  margin-bottom: 6px;
  font-size: 18px;
}

.footer-payments img {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-top: 8px;
}

.footer-social {
  text-align: center;
  margin: 18px 0 0 0;
  font-size: 28px;
  letter-spacing: 18px;
}

.footer-social .icon {
  font-family: 'FontAwesome', var(--main-font);
  font-style: normal;
  font-weight: normal;
  display: inline-block;
  vertical-align: middle;
  color: #222;
  cursor: pointer;
  transition: color 0.2s;
}

.footer-social .icon:hover {
  color: #bfa15a;
}

.footer-brides {
  text-align: center;
  margin: 18px 0 0 0;
}

.footer-brides img {
  height: 60px;
  margin: 0 auto;
  display: block;
}

.footer-copyright {
  text-align: center;
  margin: 18px 0 0 0;
  font-size: 16px;
  color: #222;
  padding-bottom: 18px;
}

/* ===== 产品详情页样式 ===== */
.product-detail-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* 面包屑导航 */
.breadcrumb {
  margin-bottom: 15px;
  font-size: 16px;
  color: #666;
}

.breadcrumb a {
  color: #bfa15a;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: #222;
}

.breadcrumb span {
  color: #222;
  font-weight: 500;
}

/* 产品详情主体 */
.product-detail-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
  align-items: start;
}

/* 产品图片区域 */
.product-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.main-image {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  background: #f8f8f8;
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.main-image img:hover {
  transform: scale(1.05);
}

.thumbnail-images {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.thumbnail {
  width: 80px;
  height: 80px;
  border-radius: 4px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  object-fit: cover;
}

.thumbnail:hover {
  border-color: #bfa15a;
}

.thumbnail.active {
  border-color: #bfa15a;
}

/* 产品信息区域 */
.product-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
  min-width: 0;
}

.product-title {
  font-size: 32px;
  color: #222;
  font-weight: 400;
  line-height: 1.3;
  margin: 0;
  word-wrap: break-word;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.current-price {
  font-size: 36px;
  color: #222;
  font-weight: bold;
}

.original-price {
  font-size: 24px;
  color: #999;
  text-decoration: line-through;
}

.discount-badge {
  background: #ff6b6b;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
}

.product-description {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
}

.product-description p {
  margin: 0 0 15px 0;
}

/* 产品选项 */
.product-options {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.option-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.option-group label {
  font-size: 18px;
  color: #222;
  font-weight: 500;
}

.option-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.option-btn {
  padding: 10px 20px;
  border: 2px solid #e5e5e5;
  background: white;
  color: #222;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 16px;
  min-width: 80px;
}

.option-btn:hover {
  border-color: #bfa15a;
  color: #bfa15a;
}

.option-btn.active {
  border-color: #bfa15a;
  background: #bfa15a;
  color: white;
}

/* 产品操作 */
.product-actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.quantity-selector label {
  font-size: 18px;
  color: #222;
  font-weight: 500;
  white-space: nowrap;
}

.quantity-controls {
  display: flex;
  align-items: center;
  border: 2px solid #e5e5e5;
  border-radius: 6px;
  overflow: hidden;
}

.qty-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: #f8f8f8;
  color: #222;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s;
}

.qty-btn:hover {
  background: #e5e5e5;
}

#quantity-input {
  width: 60px;
  height: 40px;
  border: none;
  text-align: center;
  font-size: 16px;
  font-family: var(--main-font);
  outline: none;
}

.action-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  width: 100%;
}

.btn-primary, .btn-secondary {
  padding: 15px 30px;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  font-family: var(--main-font);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 150px;
  flex: 1;
  white-space: nowrap;
}

.btn-primary {
  background: #bfa15a;
  color: white;
}

.btn-primary:hover {
  background: #a8904a;
}

.btn-secondary {
  background: white;
  color: #bfa15a;
  border: 2px solid #bfa15a;
}

.btn-secondary:hover {
  background: #bfa15a;
  color: white;
}

/* 产品元信息 */
.product-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  background: #f8f8f8;
  border-radius: 8px;
  width: 100%;
}

.meta-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.meta-label {
  font-size: 16px;
  color: #666;
  font-weight: 500;
  white-space: nowrap;
}

.meta-value {
  font-size: 16px;
  color: #222;
  text-align: right;
}

.meta-value.in-stock {
  color: #28a745;
  font-weight: 500;
}

/* 产品标签页 */
.product-tabs {
  margin-bottom: 60px;
}

.tab-headers {
  display: flex;
  border-bottom: 2px solid #e5e5e5;
  margin-bottom: 30px;
}

.tab-btn {
  padding: 15px 30px;
  border: none;
  background: none;
  color: #666;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 3px solid transparent;
}

.tab-btn:hover {
  color: #bfa15a;
}

.tab-btn.active {
  color: #bfa15a;
  border-bottom-color: #bfa15a;
}

.tab-content {
  min-height: 300px;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.tab-panel h3 {
  font-size: 24px;
  color: #222;
  margin-bottom: 20px;
  font-weight: 500;
}

.tab-panel p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.tab-panel ul {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  padding-left: 20px;
}

.tab-panel li {
  margin-bottom: 8px;
}

/* 规格表格 */
.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table tr {
  border-bottom: 1px solid #e5e5e5;
}

.specs-table td {
  padding: 12px 0;
  font-size: 16px;
}

.specs-table td:first-child {
  font-weight: 500;
  color: #222;
  width: 40%;
}

.specs-table td:last-child {
  color: #666;
}

/* 评论区域 */
.reviews-summary {
  margin-bottom: 30px;
  padding: 20px;
  background: #f8f8f8;
  border-radius: 8px;
}

.rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stars {
  color: #ffc107;
  font-size: 20px;
}

.rating-text {
  font-size: 18px;
  color: #222;
  font-weight: 500;
}

.review-count {
  font-size: 16px;
  color: #666;
}

.review-item {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #e5e5e5;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.reviewer-name {
  font-size: 16px;
  color: #222;
  font-weight: 500;
}

.review-stars {
  color: #ffc107;
  font-size: 16px;
}

.review-date {
  font-size: 14px;
  color: #999;
}

.review-text {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* 相关产品 */
.related-products {
  margin-bottom: 60px;
}

.related-products h3 {
  font-size: 28px;
  color: #222;
  margin-bottom: 30px;
  font-weight: 400;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.related-item {
  text-align: center;
  padding: 15px;
  border-radius: 8px;
  transition: transform 0.2s ease;
  cursor: pointer;
}

.related-item:hover {
  transform: translateY(-5px);
}

.related-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 15px;
}

.related-title {
  font-size: 16px;
  color: #222;
  margin-bottom: 8px;
  font-weight: 500;
}

.related-price {
  font-size: 18px;
  color: #bfa15a;
  font-weight: bold;
}

/* ===== 响应式设计 ===== */
@media (max-width: 1100px) {
  .header-inner {
    flex-wrap: wrap;
    padding: 10px 10px 0 10px;
  }
  
  .header-left {
    min-width: 250px;
    margin-right: 10px;
  }
  
  .header-right {
    margin: 0 10px;
    min-width: 120px;
    max-width: unset;
  }
  
  .header-menu {
    gap: 12px;
  }
}

@media (max-width: 900px) {
  .main-layout {
    flex-direction: column;
    padding: 0 10px;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .sidebar {
    width: 100%;
    min-width: 0;
    padding: 0 10px 20px 10px;
    box-sizing: border-box;
  }
  
  .container {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
  }
  
  .pagination {
    margin: 30px 0 20px 0;
  }
  
  .footer-main {
    flex-direction: column;
    padding: 0 10px;
  }
  
  .footer-col {
    min-width: 0;
    font-size: 16px;
  }
  
  .footer-brides img {
    height: 40px;
  }

  /* 产品详情页响应式 */
  .product-detail-container {
    padding: 0 10px;
    margin-top: 20px;
    box-sizing: border-box;
    width: 100%;
  }

  .main-layout {
    padding-top: 20px;
  }

  .product-detail-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .product-title {
    font-size: 28px;
  }

  .current-price {
    font-size: 32px;
  }

  .action-buttons {
    flex-direction: column;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    flex: none;
  }

  .related-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .product-info {
    padding-right: 0;
  }
}

@media (max-width: 700px) {
  .header-inner {
    flex-direction: column;
    align-items: stretch;
    min-height: unset;
    padding: 10px 2vw 0 2vw;
    position: relative;
  }
  
  .header-left {
    margin: 0 auto 8px auto;
    min-width: 0;
  }
  
  .header-right {
    margin: 0 auto 8px auto;
    width: 100%;
    min-width: 0;
    max-width: unset;
  }
  
  .header-search {
    margin: 0 auto 8px auto;
    width: 100%;
    min-width: 0;
    max-width: unset;
  }
  
  /* 移动端隐藏原有导航 */
  .header-menu {
    display: none;
  }
  
  /* 显示汉堡菜单按钮 */
  .mobile-menu-toggle {
    display: flex;
    position: absolute;
    top: 20px;
    right: 20px;
  }
  
  /* 移动端导航菜单覆盖层 */
  .mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    overflow: hidden;
  }
  
  .mobile-menu-container {
    background: #fff;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    position: relative;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #c1c1c1 #f1f1f1;
  }
  
  .mobile-menu-container::-webkit-scrollbar {
    width: 6px;
  }
  
  .mobile-menu-container::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  
  .mobile-menu-container::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
  }
  
  .mobile-menu-container::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
  }
  
  .mobile-menu-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .mobile-menu-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
  }
  
  .mobile-menu-nav {
    padding: 20px;
  }
  
  .mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .mobile-menu-list > li {
    margin-bottom: 15px;
  }
  
  .mobile-menu-list > li > a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
  }
  
  .mobile-menu-link {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .mobile-menu-arrow {
    font-size: 12px;
  }
  
  .mobile-submenu {
    list-style: none;
    margin: 10px 0 0 20px;
    padding: 0;
    display: none;
  }
  
  .mobile-submenu-item {
    margin-bottom: 10px;
  }
  
  .mobile-submenu-link {
    text-decoration: none;
    color: #666;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .mobile-submenu-arrow {
    font-size: 10px;
  }
  
  .mobile-submenu-level2 {
    list-style: none;
    margin: 5px 0 0 15px;
    padding: 0;
    display: none;
  }
  
  .mobile-submenu-level2 > li {
    margin-bottom: 5px;
  }
  
  .mobile-submenu-level2 > li > a {
    text-decoration: none;
    color: #999;
    font-size: 13px;
  }
  
  /* 移动端下拉菜单样式 */
  .menu-dropdown .dropdown-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: none;
    padding: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }
  
  .menu-dropdown.open .dropdown-menu {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .dropdown-level-1 {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    max-width: 90%;
    max-height: 80%;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
  }
  
  .mobile-close-btn {
    display: flex;
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    z-index: 1;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f0f0f0;
    transition: all 0.2s ease;
  }
  
  .mobile-close-btn:hover {
    background: #e0e0e0;
    color: #666;
  }
  
  .dropdown-level-1 > li > a {
    padding: 15px 20px;
    font-size: 18px;
    border-bottom: 1px solid #f0f0f0;
  }
  
  .dropdown-level-1 > li:last-child > a {
    border-bottom: none;
  }
  
  .dropdown-level-1 > li.has-sub > a:after {
    right: 15px;
    font-size: 12px;
  }
  
  /* 移动端二级菜单 */
  .dropdown-level-2 {
    position: static;
    background: #f8f8f8;
    border: none;
    border-radius: 8px;
    margin: 10px 0;
    padding: 10px 0;
    box-shadow: none;
    display: none;
  }
  
  .dropdown-level-1 > li.open > .dropdown-level-2 {
    display: block;
  }
  
  .dropdown-level-2 > li > a {
    padding: 12px 30px;
    font-size: 16px;
    color: #666;
  }
  
  .dropdown-level-2 > li > a:hover {
    background: #e8e8e8;
    color: #bfa15a;
  }

  /* 产品详情页响应式 */
  .product-detail-container {
    margin-top: 20px;
  }

  .main-layout {
    padding-top: 20px;
  }

  .product-detail-main {
    gap: 30px;
  }

  .product-title {
    font-size: 24px;
  }

  .current-price {
    font-size: 28px;
  }

  .product-price {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .quantity-selector {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .action-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    flex: none;
  }

  .meta-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .meta-value {
    text-align: left;
  }

  .tab-headers {
    flex-direction: column;
  }

  .tab-btn {
    text-align: left;
    border-bottom: none;
    border-left: 3px solid transparent;
  }

  .tab-btn.active {
    border-bottom-color: transparent;
    border-left-color: #bfa15a;
  }
}

@media (max-width: 600px) {
  .page img {
    width: 100%;
  }
  
  .item img {
    width: 100%;
    max-width: 260px;
    height: 260px;
  }
  
  .item .title {
    font-size: 16px;
    min-height: 36px;
  }
  
  .item .price {
    font-size: 20px;
    text-align: left;
    align-self: flex-start;
  }
  
  .item .price-line {
    width: 20px;
  }

  /* 移动端导航优化 */
  .mobile-nav-menu {
    max-width: 100%;
    max-height: 100%;
    padding: 0;
  }
  
  .mobile-nav-menu > ul > li > a {
    padding: 15px 20px;
    font-size: 18px;
  }
  
  .mobile-menu-toggle {
    top: 15px;
    right: 15px;
    width: 25px;
    height: 20px;
  }
  
  .mobile-menu-toggle span {
    height: 2px;
  }
  
  /* 移动端产品分类优化 */
  .mobile-sub-menu > li > a {
    padding: 12px 25px !important;
    font-size: 16px !important;
  }
  
  .mobile-sub-level-2 > li > a {
    padding: 10px 35px !important;
    font-size: 14px !important;
  }

  /* 产品详情页移动端优化 */
  .product-detail-container {
    margin-top: 10px;
    padding: 0 5px;
    box-sizing: border-box;
    width: 100%;
  }

  .main-layout {
    padding-top: 25px;
  }

  .breadcrumb {
    margin-bottom: 15px;
    font-size: 14px;
  }

  /* 产品详情页响应式 */
  .thumbnail-images {
    justify-content: center;
  }

  .thumbnail {
    width: 60px;
    height: 60px;
  }

  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
} 

/* ===== Home页面样式 ===== */

/* 全屏Banner轮播 */
.banner-slider {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
  margin-top: -18px; /* 抵消header的margin-bottom */
}

.slider-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
}

.slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* 移动端图片显示完整 */
@media (max-width: 900px) {
  .banner-slider {
    height: 70vh;
  }

  .slide img {
    object-fit: contain;
    object-position: center;
    background: #f8f8f8;
  }

  .slide-content {
    padding: 0 15px;
  }

  .slide-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .slide-content p {
    font-size: 16px;
    margin-bottom: 20px;
  }
}

.slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 20px;
}

.slide-content h2 {
  font-size: 60px;
  font-weight: 400;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-content p {
  font-size: 20px;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: #bfa15a;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-shadow: none;
}

.cta-button:hover {
  background: #a8904a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(191, 161, 90, 0.3);
}

/* 轮播控制按钮 */
.slider-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 3;
  pointer-events: none;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 24px;
  padding: 15px;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
  pointer-events: auto;
  backdrop-filter: blur(10px);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
  left: 30px;
}

.slider-btn.next {
  right: 30px;
}

/* 轮播指示器 */
.slider-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator:hover {
  background: rgba(255, 255, 255, 0.8);
}

.indicator.active {
  background: #bfa15a;
  transform: scale(1.2);
}

/* 主要内容区域 */
.main-content {
  width: 100%;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* 产品分类展示区域 */
.category-showcase {
  padding: 30px 0;
  background: #fff;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.category-panel {
  overflow: visible;
  padding-bottom: 120px;
}

.category-image {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: visible;
}

.category-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.category-overlay {
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border: 1px solid #f8daac;
  z-index: 10;
}

.category-content {
  text-align: center;
}

.category-content h2 {
  font-size: 24px;
  color: #222;
  margin-bottom: 20px;
  font-weight: 400;
  letter-spacing: 1px;
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list li {
  font-size: 18px;
  color: #666;
  margin-bottom: 8px;
  font-weight: 400;
  transition: color 0.2s ease;
}

.category-list li:hover {
  color: #bfa15a;
}

.category-content a {
  text-decoration: none;
  color: inherit;
}
.category-content a:hover {
  color: #bfa15a;
}

/* 特色产品区域 */
.featured-products {
  padding: 7px 0;
  background: #fff;
}

.section-title {
  text-align: center;
  font-size: 36px;
  color: #222;
  margin-bottom: 50px;
  font-weight: 300;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.product-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-info {
  padding: 15px;
  text-align: center;
}

.product-info h3 {
  font-size: 18px;
  color: #222;
  margin-bottom: 3px;
  font-weight: 500;
  line-height: 1.2;
}

.price {
  font-size: 22px;
  color: #bfa15a;
  font-weight: bold;
  margin-bottom: 12px;
  line-height: 1;
}

.view-product {
  display: inline-block;
  padding: 8px 18px;
  background: #bfa15a;      
  text-decoration: none;
  border-radius: 6px;
  font-size: 15px;
  transition: background 0.3s ease;
  color: white;
}

.view-product:hover {
  background: #a8904a;
}

/* 关于我们区域 */
.about-section {
  padding: 80px 0;
  background: #f8f8f8;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-size: 36px;
  color: #222;
  margin-bottom: 30px;
  font-weight: 300;
}

.about-text p {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.learn-more-btn {
  display: inline-block;
  padding: 15px 30px;
  background: #bfa15a;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.learn-more-btn:hover {
  background: #a8904a;
  transform: translateY(-2px);
}

.about-image {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
}

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

/* 服务特色区域 */
.services-section {
  padding: 80px 0;
  background: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.service-item {
  text-align: center;
  padding: 30px 20px;
}

.service-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.service-item h3 {
  font-size: 24px;
  color: #222;
  margin-bottom: 15px;
  font-weight: 500;
}

.service-item p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

/* Home页面响应式设计 */
@media (max-width: 900px) {
  .slide-content h2 {
    font-size: 32px;
  }
  
  .slide-content p {
    font-size: 18px;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-image {
    height: 300px;
  }
  
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .category-panel {
    padding-bottom: 120px;
  }

  .category-image {
    height: 350px;
  }
  
  .category-overlay {
    bottom: -60px;
    width: 65%;
  }

  /* 移动端轮播图调整 */
  .banner-slider {
    height: 90vh;
  }

  .slide img {
    object-fit: cover;
    object-position: center;
    background: #f8f8f8;
  }
}

@media (max-width: 700px) {
  .banner-slider {
    height: 65vh;
  }
  
  .slide-content h2 {
    font-size: 28px;
  }
  
  .slide-content p {
    font-size: 16px;
  }
  
  .slider-btn {
    padding: 10px;
    font-size: 18px;
    width: 40px;
    height: 40px;
  }
  
  .slider-btn.prev {
    left: 15px;
  }
  
  .slider-btn.next {
    right: 15px;
  }
  
  .slider-indicators {
    bottom: 20px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .contact-details {
    align-items: flex-start;
  }

  .category-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .category-panel {
    padding-bottom: 280px;
  }

  .category-content h2 {
    font-size: 24px;
  }

  .category-list li {
    font-size: 16px;
  }

  .category-overlay {
    padding: 20px;
    bottom: -260px;
    width: 70%;
  }

  /* 移动端轮播图调整 */
  .slide img {
    object-fit: contain;
    object-position: center;
    background: #f8f8f8;
  }

  .slide-content {
    padding: 0 15px;
  }

  .slide-content h2 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .slide-content p {
    font-size: 14px;
    margin-bottom: 15px;
  }
}

@media (max-width: 600px) {
  .banner-slider {
    height: 30vh;
  }
  
  .slide-content h2 {
    font-size: 22px;
  }
  
  .slide-content p {
    font-size: 14px;
  }
  
  .cta-button {
    padding: 12px 25px;
    font-size: 16px;
  }
  
  .featured-products,
  .about-section,
  .services-section {
    padding: 7px 0;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    height: 250px;
  }

  .category-showcase {
    padding: 30px 0;
  }

  .category-panel {
    padding-bottom: 150px;
  }

  .category-image {
    height: 500px;
  }

  .category-content {
    padding: 20px;
  }

  .category-content h2 {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .category-list li {
    font-size: 15px;
    margin-bottom: 6px;
  }

  .category-overlay {
    padding: 15px;
    bottom: -120px;
    width: 70%;
  }

  /* 移动端轮播图调整 */
  .slide img {
    object-fit: contain;
    object-position: center;
    background: #f8f8f8;
  }

  .slide-content {
    padding: 0 10px;
  }

  .slide-content h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .slide-content p {
    font-size: 13px;
    margin-bottom: 12px;
  }
} 

@media (max-width: 600px) {
  .footer {
    margin-top: 10px;
    padding: 10px 0 0 0;
  }
  .footer-main {
    padding: 0 8px;
  }
  .footer-col {
    margin-bottom: 6px;
  }
  .footer-col a {
    margin-bottom: 2px;
  }
  .footer-title {
    margin-bottom: 4px;
  }
  .footer-social {
    margin: 8px 0 0 0;
  }
  .footer-brides {
    margin: 8px 0 0 0;
  }
  .footer-copyright {
    margin: 8px 0 0 0;
    font-size: 14px;
  }
  .category-showcase {
    padding: 15px 0;
  }
} 

/* 左侧分类链接样式 */
.filter-list a,
.sub-header > a,
.sub-list a {
  text-decoration: none;
  color: inherit;
}
.filter-list a:hover,
.sub-list a:hover {
  color: #bfa15a;
} 

/* 产品网格链接样式 */
.grid .item a {
  text-decoration: none;
  color: inherit;
}
.grid .item .title a:hover {
  color: #bfa15a;
} 