/* Bally Lashes - Complete CSS Styles */

/* 基础重置和变量 */
:root {
  --typeHeaderPrimary: "system_ui";
  --typeHeaderFallback: -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', 'Noto Sans', 'Liberation Sans', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
  --typeHeaderSize: 31px;
  --typeHeaderWeight: 400;
  --typeHeaderLineHeight: 0.9;
  --typeHeaderSpacing: 0.0em;
  --typeBasePrimary:"system_ui";
  --typeBaseFallback:-apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', 'Noto Sans', 'Liberation Sans', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
  --typeBaseSize: 14px;
  --typeBaseWeight: 400;
  --typeBaseSpacing: 0.05em;
  --typeBaseLineHeight: 1.4;
  --typeBaselineHeightMinus01: 1.3;
  --primary-color: #fa1e9c;
  --secondary-color: #ff4e9c;
  --accent-color: #ffbe0b;
  --text-color: #333;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
  --shadow: 0 2px 10px rgba(0,0,0,0.1);
  --transition: all 0.3s ease;
  --header-height: 80px;
  --max-width: 1420px;
  --colorAnnouncement: #ff1a96;
  --colorAnnouncementText: #ffffff;
  --colorBody: #ffffff;
  --colorBodyAlpha05: rgba(255, 255, 255, .05);
  --colorBodyDim: #f2f2f2;
  --colorBodyLightDim: #fafafa;
  --colorBodyMediumDim: #f5f5f5;
  --colorBorder: #e8e8e1;
  --colorBtnPrimary: #ff1a95;
  --colorBtnPrimaryLight: #ff4dad;
  --colorBtnPrimaryDim: #ff0089;
  --colorBtnPrimaryText: #ffffff;
  --colorCartDot: #ff696e;
  --colorDrawers: #ffffff;
  --colorDrawersDim: #f2f2f2;
  --colorDrawerBorder: #e8e8e1;
  --colorDrawerText: #000000;
  --colorDrawerTextDark: #000000;
  --colorDrawerButton: #111111;
  --colorDrawerButtonText: #ffffff;
  --colorFooter: #ffffff;
  --colorFooterText: #000000;
  --colorFooterTextAlpha01: #000000;
  --colorGridOverlay: #000000;
  --colorGridOverlayOpacity: .1;
  --colorHeaderTextAlpha01: rgba(0, 0, 0, .1);
  --colorHeroText: #ffffff;
  --colorSmallImageBg: #ffffff;
  --colorLargeImageBg: #0f0f0f;
  --colorImageOverlay: #000000;
  --colorImageOverlayOpacity: .1;
  --colorImageOverlayTextShadow: .2;
  --colorLink: #030303;
  --colorModalBg: #e6e6e6;
  --colorNav: #ffffff;
  --colorNavText: #000000;
  --colorPrice: #030303;
  --colorSaleTag: #1c1d1d;
  --colorSaleTagText: #ffffff;
  --colorTextBody: #030303;
  --colorTextBodyAlpha015: rgba(3, 3, 3, .15);
  --colorTextBodyAlpha005: rgba(3, 3, 3, .05);
  --colorTextBodyAlpha008: rgba(3, 3, 3, .08);
  --colorTextSavings: #C20000;
  --urlIcoSelect: url(../assets/ico-select.svg);
  --urlIcoSelectFooter: url(../assets/ico-select-footer.svg);
  --urlIcoSelectWhite: url(../assets/ico-select-white.svg);
  --grid-gutter: 17px;
  --drawer-gutter: 20px;
  --sizeChartMargin: 25px 0;
  --sizeChartIconMargin: 5px;
  --newsletterReminderPadding: 40px;
  --color-body-text: #030303;
  --color-body: #ffffff;
  --color-bg: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  color: var(--text-color);
  line-height: 1.2;
  background-color: var(--bg-white);
}

/* 汉堡菜单默认样式 - 默认隐藏，在媒体查询中显示 */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  cursor: pointer;
  width: 44px;
  height: 44px;
  background-color: #333;
  border-radius: 8px;
  padding: 10px 12px;
  box-sizing: border-box;
  transition: background-color 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  color: var(--text-color);
  line-height: 1.2;
  background-color: var(--bg-white);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}
/*手动添加-start*/
.h1, .h2, .h3, h1, h2, h3 {
    font-family: var(--typeHeaderPrimary),var(--typeHeaderFallback);
    font-weight: var(--typeHeaderWeight);
    letter-spacing: var(--typeHeaderSpacing);
    line-height: var(--typeHeaderLineHeight);
}
@media only screen and (min-width: 769px) {
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin: 0 0 15px;
}
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    display: block;
    margin: 0 0 10px;
}
@media only screen and (min-width: 769px) {
.h1, h1 {
    font-size: var(--typeHeaderSize);
}
}
.h1, h1 {
    font-size: calc(var(--typeHeaderSize)*.85);
}
*, :after, :before, input {
    box-sizing: border-box;
}
/*end*/

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* 顶部栏样式 */
.top-bar {
  background-color: #f8f9fa;
  border-bottom: 1px solid var(--border-color);
  width: 100%;
  font-size: 0.85rem;
  height: 40px; /* 增加高度 */
  display: flex;
  align-items: center;
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
}

.top-bar .social-links {
  display: flex;
  gap: 8px;
  padding-left: 10px;
  align-items: center;
  height: 100%;

}

.top-bar .social-links a {
  color: #666;
  font-size: 16px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  opacity: 0.8;
}

.top-bar .social-links a:hover {
  color: var(--secondary-color);
  opacity: 1;
  transform: translateY(-2px);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  width: 100px;
  /* 可以根据需要添加其他样式 */
}



.top-bar .language-selector {
  position: relative;
}

.top-bar .language-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: none;
  color: var(--text-color);
  cursor: pointer;
  padding: 5px 8px;
  border-radius: 4px;
  transition: var(--transition);
}

.top-bar .language-btn:hover {
  background-color: var(--bg-light);
  color: var(--secondary-color);
}

.top-bar .language-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: var(--bg-white);
  min-width: 150px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  border-radius: 5px;
  padding: 10px 0;
  display: none;
  z-index: 1000;
  transition: var(--transition);
}

.top-bar .language-selector:hover .language-menu,
.top-bar .language-menu.show {
  display: block;
}

.top-bar .language-menu li {
  margin: 0;
  padding: 0;
}

.top-bar .language-menu a {
  display: block;
  padding: 8px 15px;
  color: var(--text-color);
  transition: var(--transition);
}

.top-bar .language-menu a:hover {
  background-color: var(--bg-light);
  color: var(--secondary-color);
}

/* 头部样式 */
.header {
  background-color: var(--bg-white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.header-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 20px;
  background-color: var(--bg-white);
  max-width: 100%;
  margin: 0 auto;
}

.header-left, .header-right {
  flex: 1;
  display: flex;
  align-items: center;
}

.header-left {
  justify-content: flex-start;
}

.header-right {
  justify-content: flex-end;
}

.logo-container {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  background-color: var(--bg-white);
  padding: 0 20px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--secondary-color);
  text-decoration: none;
  transition: var(--transition);
}

.logo:hover {
  color: var(--primary-color);
}

.logo h1 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

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

.navbar {
  width: 100%;
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  min-height: 45px;
  display: flex;
  align-items: flex-start;
  padding: 0;
}

.nav-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  gap: 2px;
  line-height: 1.1;
  row-gap: 2px;
}

.nav-menu li {
  position: relative;
  flex-shrink: 0;
}

.nav-menu a {
  font-weight: 500;
  font-size: 1.15rem;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--text-color);
  padding: 2px 10px;
  white-space: normal;
  text-align: center;
  line-height: 0.8;
  height: auto;
  min-height: 20px;
}

/* Ensure desktop dropdown arrows are visible and thinner */
.nav-menu > li.dropdown > a .fa-chevron-down {
  font-family: 'Font Awesome 6 Free' !important;
  font-weight: 900 !important;
  font-size: 0.8rem !important;
  color: #333 !important;
  margin-left: 5px !important;
  display: inline-block !important;
  vertical-align: middle !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: auto !important;
  height: auto !important;
  content: '\f078' !important;
}

/* Ensure all Font Awesome icons use the correct font family */
.fas, .far {
  font-family: 'Font Awesome 6 Free' !important;
}

/* Social media icons should use Font Awesome Brands font */
.fab {
  font-family: 'Font Awesome 6 Brands' !important;
}

/* Form actions container for review buttons */
.form-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

/* Ensure buttons have normal size */
.form-actions .btn {
  padding: 8px 16px;
  font-size: 14px;
}

/* Shopping Cart Popup */
.shopping-cart-popup {
  position: fixed;
  top: 0;
  right: -470px;
  width: 450px;
  height: 100vh;
  background-color: #fff;
  box-shadow: -2px 0 15px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}

.shopping-cart-popup.active {
  right: 0;
}

/* Cart Header */
.shopping-cart-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.shopping-cart-header h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
}

.cart-items-count {
  font-size: 0.9rem;
  font-weight: 400;
  color: #666;
  margin-left: 8px;
}

.shopping-cart-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: #666;
  cursor: pointer;
  padding: 5px;
  transition: color 0.3s ease;
}

.shopping-cart-close:hover {
  color: #333;
}

/* Cart Content */
.shopping-cart-content {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

/* Shopping cart actions */
.shopping-cart-actions {
  margin-bottom: 15px;
  display: flex;
  justify-content: flex-end;
}

.clear-all-cart {
  background: none;
  border: none;
  color: #ff4e9c;
  font-size: 0.9rem;
  cursor: pointer;
  padding: 5px 10px;
  transition: color 0.3s ease;
  text-decoration: underline;
}

.clear-all-cart:hover {
  color: #ff1a70;
}

/* Shopping cart note */
.shopping-cart-note {
  border-top: 1px solid #eee;
  margin-top: 20px;
  padding-top: 20px;
}

.shopping-cart-note-header {
  padding: 15px 0;
}

.add-note-btn {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  transition: color 0.3s ease;
  text-decoration: underline;
}

.add-note-btn:hover {
  color: #ff4e9c;
}

.shopping-cart-note-content {
  padding: 10px 0;
}

.close-note-btn {
  margin: 0 0 10px 0;
  font-size: 0.9rem;
  color: #666;
  cursor: pointer;
  transition: color 0.3s ease;
  text-decoration: underline;
}

.close-note-btn:hover {
  color: #333;
}

.cart-note-textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.95rem;
  color: #333;
  resize: vertical;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.cart-note-textarea:focus {
  outline: none;
  border-color: #ff4e9c;
  box-shadow: 0 0 0 2px rgba(255, 78, 156, 0.1);
}

/* Shopping Cart Discount Code Section */
.shopping-cart-discount {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.discount-code-container {
  display: flex;
  gap: 10px;
}

.discount-code-input {
  flex: 1;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.95rem;
  color: #333;
  transition: border-color 0.3s ease;
}

.discount-code-input:focus {
  outline: none;
  border-color: #ff4e9c;
  box-shadow: 0 0 0 2px rgba(255, 78, 156, 0.1);
}

.btn-apply-discount {
  padding: 12px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  background-color: #ff4e9c;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-apply-discount:hover {
  background-color: #ff1a70;
}

/* Cart Frequently Bought Together Section */
.cart-frequently-bought {
  border-top: 1px solid #eee;
  margin-top: 20px;
  padding-top: 20px;
}

.cart-frequently-bought-header {
  margin-bottom: 15px;
}

.cart-frequently-bought-header h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
}

.cart-frequently-bought-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cart-frequently-bought-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px;
  border-radius: 6px;
  background-color: #fafafa;
  transition: background-color 0.3s ease;
}

.cart-frequently-bought-item:hover {
  background-color: #f5f5f5;
}

.cart-fbt-image {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.cart-fbt-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.cart-fbt-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.cart-fbt-title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-fbt-price-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-fbt-original-price {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 500;
  color: #999;
  text-decoration: line-through;
}

.cart-fbt-price {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ff4e9c;
}

.btn-small {
  padding: 8px 12px;
  font-size: 0.85rem;
  font-weight: 500;
  background-color: #ff4e9c;
  color: white;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-small:hover {
  background-color: #ff1a70;
}

.btn-fbt-add {
  align-self: flex-start;
}

/* Empty Cart */
.shopping-cart-empty {
  text-align: center;
  padding: 40px 20px;
}

.shopping-cart-empty i {
  font-size: 3rem;
  color: #ff4e9c;
  margin-bottom: 15px;
}

.shopping-cart-empty p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 20px;
}

/* Cart Items */
.shopping-cart-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cart-item {
  display: flex;
  gap: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
}

.cart-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.cart-item-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
  line-height: 1.3;
}

.cart-item-variant {
  font-size: 0.8rem;
  color: #666;
}

.cart-item-price-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-item-original-price {
  font-size: 0.85rem;
  font-weight: 500;
  color: #999;
  text-decoration: line-through;
  margin: 0;
}

.cart-item-price {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ff4e9c;
  margin: 0;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 5px;
}

.cart-item-quantity button {
  background: #f5f5f5;
  border: 1px solid #eee;
  width: 25px;
  height: 25px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #333;
  transition: all 0.3s ease;
}

.cart-item-quantity button:hover {
  background: #eee;
}

.cart-item-quantity input {
  width: 40px;
  height: 25px;
  text-align: center;
  border: 1px solid #eee;
  border-radius: 4px;
  font-size: 0.9rem;
}

.cart-item-remove {
  background: none;
  border: none;
  color: #999;
  font-size: 1rem;
  cursor: pointer;
  transition: color 0.3s ease;
  align-self: flex-start;
}

.cart-item-remove:hover {
  color: #ff4e9c;
}

/* Cart Footer */
.shopping-cart-footer {
  padding: 20px;
  border-top: 1px solid #eee;
  background-color: #fafafa;
}

.shopping-cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.shopping-cart-subtotal span:first-child {
  font-size: 0.95rem;
  color: var(--hs-slidecart-footer-text-color)!important;
}

.subtotal-amount {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
}

.shopping-cart-shipping {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: #999;
}

/* Cart Overlay */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Responsive Design */
@media (max-width: 768px) {
  .shopping-cart-popup {
    width: 100%;
    right: -100%;
  }
  
  .shopping-cart-header,
  .shopping-cart-content,
  .shopping-cart-footer {
    padding: 15px;
  }
  
  .cart-item {
    gap: 10px;
  }
  
  .cart-item-image {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 480px) {
  .shopping-cart-empty {
    padding: 30px 15px;
  }
  
  .shopping-cart-empty i {
    font-size: 2.5rem;
  }
  
  .shopping-cart-subtotal,
  .shopping-cart-shipping {
    font-size: 0.9rem;
  }
}

.nav-menu a:hover {
  color: var(--secondary-color);
  text-decoration: none;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: var(--transition);
}

.nav-menu a:hover::after {
  width: 100%;
}

/* 下拉菜单样式 */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--bg-white);
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  border-radius: 5px;
  padding: 10px 0;
  display: none;
  z-index: 1000;
  transition: var(--transition);
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  margin: 0;
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--text-color);
  transition: var(--transition);
}

.dropdown-menu a:hover {
  background-color: var(--bg-light);
  color: var(--secondary-color);
}

/* 头部操作区域样式 */
.search-container {
  display: flex;
  align-items: center;
  position: relative;
  min-width: 200px;
  margin-right: auto;
}

.search-input {
  padding: 8px 15px 8px 35px;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  font-size: 0.9rem;
  width: 100%;
  transition: var(--transition);
}

.search-input:focus {
  border-color: var(--secondary-color);
  outline: none;
}

.search-button {
  position: absolute;
  left: 10px;
  background: transparent;
  border: none;
  color: var(--text-color);
  cursor: pointer;
  font-size: 0.9rem;
  top:10px;
}

/* 语言选择器样式 */
.language-selector {
  position: relative;
}

.language-btn {
  display: flex;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-color);
  padding: 5px 10px;
  border-radius: 4px;
  transition: var(--transition);
}

.language-btn i {
  margin-right: 5px;
}

.language-current {
  margin: 0 5px;
}

.language-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: var(--bg-white);
  min-width: 150px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  border-radius: 5px;
  padding: 10px 0;
  display: none;
  z-index: 1000;
  transition: var(--transition);
}

.language-selector:hover .language-menu,
.language-menu.show {
  display: block;
}

.language-menu li {
  margin: 0;
}

.language-menu a {
  display: block;
  padding: 8px 15px;
  color: var(--text-color);
  transition: var(--transition);
}

.language-menu a:hover {
  background-color: var(--bg-light);
  color: var(--secondary-color);
}

/* 社交媒体链接样式 */
.social-links {
  display: flex;
  gap: 8px;
  height: 100%;
  align-items: center;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: #333;
  transition: var(--transition);
}

.social-links a:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* 用户操作区域样式 */
.user-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: 10px;
}

.user-login {
  display: flex;
  align-items: center;
  color: var(--primary-color);
  font-weight: 500;
  transition: var(--transition);
}

.user-login i {
  margin-right: 5px;
}

.user-login:hover {
  color: var(--secondary-color);
}

.user-text {
  display: inline;
}

.cart-icon {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--primary-color);
  transition: var(--transition);
}

.cart-icon:hover {
  color: var(--secondary-color);
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--secondary-color);
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: bold;
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  background: transparent;
  color: var(--primary-color);
}

/* 广告位样式 */
.advertisement-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 40px 0;
    margin: 20px 0;
}

.ad-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}

.ad-text h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.ad-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.ad-cta-btn {
    background-color: white;
    color: var(--primary-color);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ad-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.ad-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-placeholder {
    width: 120px;
    height: 120px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    backdrop-filter: blur(10px);
}

/* 通栏广告条 */
.banner-ad {
    display: block;
    width: 100%;
    margin: 15px 0;
    overflow: hidden;
}

.banner-ad img {
    width: 100%;
    max-width: none;
    height: auto;
    display: block;
}

.banner-ad:hover {
    opacity: 0.9;
}

/* 侧边栏广告 */
.sidebar-ad {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    background: #eed173;
    border-radius: 15px;
    box-shadow: var(--shadow);
    z-index: 100;
    overflow: hidden;
    transition: var(--transition);
}

.sidebar-ad:hover {
    transform: translateY(-50%) scale(1.05);
}

.ad-close {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 24px;
    height: 24px;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
}

.ad-close:hover {
    background: rgba(0, 0, 0, 0.6);
    transform: scale(1.1);
}

.ad-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 15px;
    text-align: center;
}

.ad-header h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.ad-body {
    padding: 20px 15px;
    text-align: center;
}

.ad-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.ad-body p {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 5px;
}

.ad-body small {
    color: #666;
    font-size: 0.85rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(250, 30, 156, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(250, 30, 156, 0.4);
}

.back-to-top i {
    transition: transform 0.3s ease;
}

.back-to-top:hover i {
    transform: translateY(-2px);
}

/* 底部推广横幅 */
.footer-promo-banner {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 50px 0;
    color: white;
}

.promo-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.promo-text h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.promo-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.promo-form {
    display: flex;
    gap: 10px;
    min-width: 350px;
}

.promo-input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    outline: none;
    background-color: rgba(255, 255, 255, 0.9);
}

.promo-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.promo-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .sidebar-ad {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        margin: 20px 0;
    }
    
    .ad-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .ad-visual {
        order: -1;
    }
    
    /* 分类块大屏幕样式 */
    .category-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .logo {
        font-size: 1.6rem;
    }
    
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .promo-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .promo-form {
        flex-direction: column;
        min-width: 100%;
    }
    
    .ad-text h3 {
        font-size: 1.5rem;
    }
    
    .promo-text h3 {
        font-size: 1.8rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .header-container {
        padding: 10px 15px;
    }
    
    .search-input {
        max-width: 150px;
    }
    
    .nav-menu {
        height: 45px;
    }
    
    .nav-menu li {
        margin: 0 15px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .advertisement-banner {
        padding: 30px 0;
    }
    
    .ad-text h3 {
        font-size: 1.3rem;
    }
    
    .ad-text p {
        font-size: 1rem;
    }
    
    /* 移动端产品列表 */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    /* 移动端分类块样式 */
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .ad-placeholder {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .sidebar-ad {
        width: 100%;
        position: relative;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .header-container {
        padding: 10px 15px;
    }
    
    .search-container {
        display: none; /* 移动端隐藏搜索框 */
    }
    
    /* 确保header-left容器在小屏幕上显示 */
    .header-left {
        display: flex !important;
        align-items: center;
        justify-content: flex-start;
    }
    
    /* 汉堡菜单样式 - 三条线图标 */
    .hamburger {
        display: flex !important;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        cursor: pointer;
        width: 44px;
        height: 44px;
        background-color: #333;
        border-radius: 8px;
        padding: 10px 12px;
        box-sizing: border-box;
        transition: background-color 0.3s ease;
    }
    
    .hamburger:hover {
        background-color: #555;
    }
    
    .hamburger span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: #fff;
        border-radius: 2px;
        transition: all 0.3s ease-in-out;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
        width: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .user-text {
        display: none;
    }
    
    /* 全宽轮播图移动端样式 */
    .full-width-carousel .carousel-slide {
        height: 350px;
    }
    
    .full-width-carousel .carousel-content h3 {
        font-size: 1.8rem;
    }
    
    .full-width-carousel .carousel-content p {
        font-size: 1rem;
    }
    
    .full-width-carousel .carousel-nav {
        width: 40px;
        height: 40px;
    }
    
    /* 移动端导航菜单 - 这个样式与.mobile-nav-container冲突，暂时注释掉 */
    /* .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        height: calc(100vh - 70px);
        overflow-y: auto;
    } */
    
    .mobile-nav-container {
        display: block;
        padding: 20px 0;
    }
    
    /* 这些样式与.mobile-nav-container冲突，暂时注释掉 */
    /* .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    } */
}

/* 产品详情页响应式样式 */
@media (max-width: 768px) {
    .product-detail-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-images {
        flex-direction: column-reverse;
        align-items: center;
        position: static;
        width: 100%;
    }
    
    .product-image-thumbs {
        flex-direction: column;
        width: 100%;
        height: auto;
        overflow-x: hidden;
        overflow-y: hidden;
        padding: 10px 0;
        gap: 8px;
        justify-content: center;
        align-items: center;
    }
    
    /* 隐藏滚动条但保留滚动功能 */
    .product-image-thumbs::-webkit-scrollbar {
        display: none;
    }
    
    .product-image-thumbs {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    
    .product-thumb-item {
        width: 65px;
        height: 65px;
        flex-shrink: 0;
    }
    
    .product-thumb-item img {
        height: 65px;
        width: 100%;
        object-fit: cover;
    }
    
    .thumb-arrow-up, .thumb-arrow-down {
        display: block;
    }
    
    .product-image-main {
        width: 100%;
        max-width: 100%;
    }
    
    .product-image-main img {
        max-height: 450px;
        width: 100%;
    }
}
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
}

@media (max-width: 400px) {
    /* 移动端产品列表 */
    .product-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    /* 移动端分类块样式 */
    .category-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* 全宽轮播图样式 */
.full-width-carousel {
  width: 100%;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  margin-top: 0;
  position: relative;
  z-index: 1;
}

.full-width-carousel .carousel-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.full-width-carousel .carousel-slides {
  display: flex;
  transition: transform 0.5s ease;
}

.full-width-carousel .carousel-slide {
  min-width: 100%;
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.full-width-carousel .carousel-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.full-width-carousel .carousel-content {
  max-width: 90%;
  z-index: 2;
  color: white;
  padding: 150px 20px 0;
}

.full-width-carousel .carousel-content h3 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: white;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.full-width-carousel .carousel-content p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.full-width-carousel .carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  color: var(--primary-color);
}

.full-width-carousel .carousel-nav:hover {
  background-color: rgba(255, 255, 255, 1);
  transform: translateY(-50%) scale(1.1);
}

.full-width-carousel .carousel-prev {
  left: 20px;
}

.full-width-carousel .carousel-next {
  right: 20px;
}

.full-width-carousel .carousel-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.full-width-carousel .carousel-control {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
}

.full-width-carousel .carousel-control.active {
  background-color: white;
  width: 30px;
  border-radius: 6px;
}

.mobile-carousel {
  display: none;
  width: 100%;
  overflow: hidden;
}

.mobile-carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.mobile-carousel-slides {
  display: flex;
  transition: transform 0.5s ease;
}

.mobile-carousel-slide {
  min-width: 100%;
  display: none;
}

.mobile-carousel-slide.active {
  display: block;
}

.mobile-carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  background: #f5f5f5;
}

.mobile-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
}

.mobile-carousel-nav:hover {
  background-color: rgba(255, 255, 255, 1);
}

.mobile-carousel-prev {
  left: 10px;
}

.mobile-carousel-next {
  right: 10px;
}

.mobile-carousel-controls {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.mobile-carousel-control {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: 2px solid white;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.mobile-carousel-control.active {
  background-color: var(--secondary-color);
}

@media (max-width: 768px) {
  .full-width-carousel {
    display: none;
  }
  
  .mobile-carousel {
    display: block;
  }
}

/* 分类块样式 */
.categories {
  padding: 40px 0;
  background-color: #ffffff;
}

.section-title {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: #333;
  font-weight: 600;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  width: 100%;
  justify-content: center;
  margin: 0 auto;
  max-width: 1400px;
}

@media (max-width: 1200px) {
  .category-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1024px) {
  .category-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

@media (max-width: 400px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.category-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  padding: 12px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  background-color: #EEEEEE;
  border: 1px solid #fafab0;
  position: relative;
  overflow: hidden;
  gap: 15px;
}

.category-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-color: #eed173;
}

.category-card img {
  width: 55px;
  height: 55px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
  background-color: #CCCCCC;
}

.category-name {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-color);
}

.category-sale-tag {
  position: absolute;
  top: 5px;
  right: 5px;
  background-color: #eed172;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 10px;
  text-transform: uppercase;
}

/* 轮播图样式 */
.carousel-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.carousel-slides {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
}

.carousel-slide:nth-child(2) {
  background: linear-gradient(135deg, #ff8fab 0%, #fa1e9c 100%);
}

.carousel-slide:nth-child(3) {
  background: linear-gradient(135deg, #c7c7ff 0%, #7b68ee 100%);
}

.carousel-content {
  max-width: 90%;
  z-index: 2;
}

.carousel-content h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: white;
}

.carousel-content p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.9);
}

.carousel-placeholder {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 120px;
  height: 120px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
  opacity: 0.7;
  z-index: 1;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  color: var(--primary-color);
}

.carousel-nav:hover {
  background-color: rgba(255, 255, 255, 1);
}

.carousel-prev {
  left: 10px;
}

.carousel-next {
  right: 10px;
}

.carousel-controls {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 10;
}

.carousel-control {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: 2px solid white;
  cursor: pointer;
  transition: var(--transition);
}

.carousel-control.active {
  background-color: white;
  transform: scale(1.2);
}

/* 英雄区域样式 - 通栏样式 */
.hero {
  background: linear-gradient(135deg, #ffe3f3 0%, #ffd3e9 100%);
  padding: 100px 0;
  text-align: center;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 5%;
  position: relative;
}

.hero-text {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  text-align: left;
}

.hero-image {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #666;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: var(--secondary-color);
  color: white;
  font-weight: bold;
  border-radius: 5px;
  transition: var(--transition);
}

.cta-button.secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.cta-button:hover {
  background-color: #e43c8a;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 78, 156, 0.4);
}

.cta-button.secondary:hover {
  background-color: var(--primary-color);
  color: white;
}

.hero-stats {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2rem;
  font-weight: bold;
  color: var(--secondary-color);
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
}

.hero-gallery {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.gallery-main {
  width: 100%;
  height: 400px;
  background-color: #f0f0f0;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

.gallery-thumbnails {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.thumb {
  width: 80px;
  height: 80px;
  background-color: #f0f0f0;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.thumb:hover, .thumb.active {
  border: 2px solid var(--secondary-color);
}

.hero-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #999;
  font-size: 1.2rem;
}

.hero-placeholder i {
  font-size: 3rem;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

/* 产品区域样式 - 通栏样式 */
.products {
  padding: 20px 0;
  /*background-color: var(--bg-light);*/
  width: 100%;
}

.flash-sale-ads {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
  padding: 0 4%;
}

.banner-ad {
  max-width: var(--max-width);
  margin: 30px auto 0;
  padding: 0 20px;
}

.banner-ad a {
  display: block;
}

.banner-ad img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.flash-sale-ad-item {
  position: relative;
  display: block;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.flash-sale-ad-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.flash-sale-ad-item:hover img {
  transform: scale(1.05);
  opacity: 0.7;
}

.flash-sale-ad-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(201, 168, 108, 0.5) 0%, rgba(180, 140, 80, 0.5) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.flash-sale-ad-item:hover .flash-sale-ad-overlay {
  opacity: 1;
}

.flash-sale-ad-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.flash-sale-ad-subtitle {
  font-size: 1rem;
  color: var(--primary-color);
  padding: 8px 25px;
  border: 2px solid var(--primary-color);
  border-radius: 25px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.flash-sale-ad-item:hover .flash-sale-ad-subtitle {
  background-color: var(--accent-color);
  color: #fff;
}



.section-header {
  text-align: center;
  margin-bottom: 50px;
  width: 100%;
}

.section-header h2 {
  font-size: 2.0rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.section-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.view-all-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 35px;
  border: 1px solid #000;
  color: #000;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 1px;
  transition: var(--transition);
}

.view-all-btn:hover {
  background-color: #000;
  color: #fff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  width: 100%;
  max-width: 100%;
}

/* Frequently Bought Together Section */
.frequently-bought-together {
  margin-top: 50px;
  padding: 30px;
  background-color: #fafafa;
  border-radius: 8px;
  border: 1px solid #f0f0f0;
}

.frequently-bought-together .section-header {
  margin-bottom: 25px;
  text-align: center;
}

.frequently-bought-together .section-header h3 {
  margin: 0;
  font-size: 1.5rem;
  color: #333;
  font-weight: 600;
}

.frequently-bought-together .product-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 25px;
}

.frequently-bought-together .product-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.frequently-bought-together .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-card {
  background-color: var(--bg-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.product-image {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.placeholder-image {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f0f0f0;
  color: var(--secondary-color);
  font-size: 3rem;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.product-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: var(--secondary-color);
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

.product-info {
  padding: 20px;
}

.product-info h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.product-info p {
  color: var(--colorTextBody);
  margin-bottom: 15px;
  font-size: 0.95rem;
  -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    font-family: var(--typeBasePrimary),var(--typeBaseFallback);
    font-size: calc(var(--typeBaseSize)*.92);
    letter-spacing: var(--typeBaseSpacing);
    line-height: var(--typeBaseLineHeight);
    text-rendering: optimizeSpeed;
}

.product-rating {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

.stars {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 12px;
}

.price {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 15px;
  display: block;
}

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

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

.sale-price {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--secondary-color);
}

.add-to-cart {
  width: 100%;
  padding: 10px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 5px;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
}

.product-card:hover .add-to-cart {
  opacity: 1;
  visibility: visible;
}

.add-to-cart:hover {
  background-color: #efd274;
}

/* 产品详情页样式 */
.product-detail-section {
  padding: 40px 0;
  background-color: var(--bg-white);
}

.product-detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

/* 产品图片区域 */
.product-images {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: flex-start;
  position: sticky;
  top: 20px;
  /* sticky定位已经包含了relative的特性 */
}

.product-image-main {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  display: inline-block;
  width: 100%;
}

/* 产品图片滑块样式 */
.product-image-slider-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: 10px;
}

.product-image-slider {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}

.product-image-slide {
  min-width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.product-image-slide img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  display: block;
  cursor: zoom-in;
}

.product-image-slide.active {
  display: block;
}

/* 滑块指示器样式 */
.product-image-indicators {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

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

.product-image-indicator.active {
  background-color: var(--secondary-color);
}

.product-thumb-item {
  width: 80px;
  height: 80px;
  border: 2px solid transparent;
  border-radius: 5px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  margin: 0 auto;
  position: relative;
}

.product-thumb-item:hover {
  border-color: var(--accent-color);
}

.product-thumb-item.active {
  border-color: var(--secondary-color);
}

.product-thumb-item img {
  width: 100%;
  height: 80px;
  object-fit: cover;
}

/* 缩略图箭头控制 */
.product-image-thumbs {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100px;
  padding-right: 10px;
}

.thumb-arrow-up {
  width: 30px;
  height: 30px;
  position: relative;
  margin: 0 auto;
  display: block;
  z-index: 2;
  text-align: center;
  line-height: 30px;
}

.thumb-arrow-down {
  width: 30px;
  height: 30px;
  position: relative;
  margin: 0 auto;
  display: block;
  z-index: 2;
  text-align: center;
  line-height: 30px;
}

.thumb-arrow {
  background-color: transparent;
  color: black;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 12px;
}

.thumb-arrow:hover {
  transform: scale(1.1);
}

/* 长上箭头效果 - 已移除 */
.image-arrow-up {
  display: none;
}

/* 旧箭头相关样式已移除 */
.product-thumb-item:hover .image-arrow-up {
  display: none;
}

.image-arrow-up i {
  display: none;
}

/* 旧箭头下方的线条已移除 */
.image-arrow-up::after {
  display: none;
}

/* 长下箭头效果 */
.image-arrow-down {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.image-arrow-down:hover {
  opacity: 1;
}

/* 产品详情页响应式样式 */
@media (max-width: 768px) {
  .product-detail-content {
    grid-template-columns: 1fr; /* 单列布局 */
    gap: 20px;
  }
  
  .product-images {
    flex-direction: column; /* 只显示主图 */
    align-items: center;
    position: static; /* 移除sticky定位 */
    width: 100%;
  }
  
  .product-image-thumbs {
    display: none; /* 在移动端隐藏缩略图 */
  }
  
  .thumb-arrow-up, .thumb-arrow-down {
    display: none; /* 隐藏箭头 */
  }
  
  .product-image-main {
    width: 100%;
    max-width: 100%;
  }
  
  .product-image-slide img {
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 10px;
  }
}

.image-arrow-down i {
  font-size: 24px;
  color: #333;
  animation: bounce 2s infinite;
}

/* 增加箭头下方的线条 */
.image-arrow-down::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, #333);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* 图片弹窗样式 */
.image-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 40px;
  box-sizing: border-box;
}

.image-modal.active {
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content {
    position: relative;
    max-width: calc(100vw - 80px);
    max-height: calc(100vh - 80px);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Ensure all modals are hidden by default */
#avatarModal, #addressModal, #reviewModal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content img {
  width: auto;
  height: 688px;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 5px;
  cursor: zoom-in;
}

.magnifier-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 9999;
}

.modal-content:hover .magnifier-icon {
  opacity: 1;
}

.modal-close {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: #f1f1f1;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
}

.modal-close:hover,
.modal-close:focus {
  color: #bbb;
  background-color: rgba(0, 0, 0, 0.8);
  text-decoration: none;
  cursor: pointer;
}

.modal-arrow {
  position: absolute;
  bottom: 40px;
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  font-size: 16px;
  padding: 8px;
  cursor: pointer;
  z-index: 10000;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
}

.modal-arrow:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-arrow-left {
  left: calc(50% - 110px);
}

.modal-arrow-right {
  right: calc(50% - 110px);
}

/* 产品信息区域 */
.product-info {
  padding: 20px;
}

.product-breadcrumbs {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 20px;
}

.product-breadcrumbs a {
  color: #666;
  text-decoration: none;
}

.product-breadcrumbs a:hover {
  color: var(--primary-color);
}

.product-title {
  font-size: calc(var(--typeHeaderSize)*.85);
  color: var(--color-body-text);
  margin-bottom: 15px;
  word-wrap: break-word;
  margin-bottom: 20px;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.product-stars {
  color: var(--accent-color);
}

.product-reviews-count {
  color: #666;
  font-size: 0.9rem;
}

.product-write-review {
  color: var(--secondary-color);
  font-size: 0.9rem;
  text-decoration: none;
}

.product-write-review:hover {
  text-decoration: underline;
}

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

.price-current {
  font-size: 2rem;
  font-weight: bold;
  color: var(--secondary-color);
}

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

.price-saving {
  background-color: #e8f5e9;
  color: #2e7d32;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
}

.product-description-short {
  margin-bottom: 30px;
  color: #666;
  font-size: 1rem;
}

/* 产品选项 */
.product-options {
  margin-bottom: 30px;
}

.product-option-group {
  margin-bottom: 20px;
}

.product-option-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: var(--colorTextBody);
  -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    font-family: var(--typeBasePrimary),var(--typeBaseFallback);
    font-size: calc(var(--typeBaseSize)*.92);
    letter-spacing: var(--typeBaseSpacing);
    line-height: var(--typeBaseLineHeight);
    text-rendering: optimizeSpeed;
}

.product-option-select {
  width: 100%;
  padding: 12px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  font-size: 1rem;
  background-color: white;
}

/* 产品选项选择器 */
.product-option-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.option-value {
  padding: 8px 16px;
  border: 1px solid #000;
  background-color: white;
  color: #000;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.option-value:hover {
  background-color: #f0f0f0;
}

.option-value.active {
  background-color: #000;
  color: white;
}

.product-quantity {
  display: flex;
  align-items: center;
  max-width: 150px;
}

.quantity-btn {
  width: 40px;
  height: 40px;
  border: 1px solid #e0e0e0;
  background-color: white;
  font-size: 1.2rem;
  cursor: pointer;
}

.quantity-input {
  width: 60px;
  height: 40px;
  border: 1px solid #e0e0e0;
  border-left: none;
  border-right: none;
  text-align: center;
  font-size: 1rem;
}

/* 产品操作按钮 */
.product-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #efd274;
}

/* Full width button */
.btn-full-width {
  width: 100%;
  display: block;
  margin-bottom: 10px;
}

/* Outline button */
.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Checkout Section */
.checkout-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.checkout-section .page-title {
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-color);
  font-size: 2.5rem;
}

.checkout-container {
  display: flex;
  gap: 30px;
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

/* Checkout Form */
.checkout-form {
  flex: 1;
}

.checkout-form h2 {
  margin-bottom: 20px;
  color: var(--text-color);
  font-size: 1.5rem;
}

.checkout-form h3 {
  margin-bottom: 15px;
  color: var(--text-color);
  font-size: 1.2rem;
}

/* Express Checkout */
.express-checkout {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}

.express-checkout-buttons {
  display: flex;
  gap: 15px;
}

/* Email Subscription */
.email-subscription {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}

.email-subscription label {
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  cursor: pointer;
}

/* Delivery Section */
.delivery-section {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}

.delivery-method {
  margin-bottom: 30px;
}

.delivery-options {
  display: flex;
  gap: 30px;
}

.delivery-option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  cursor: pointer;
}

/* Address Form */
.address-form {
  margin-bottom: 30px;
}

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

.form-group {
  flex: 1;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-color);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  color: var(--text-color);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(255, 78, 156, 0.1);
}

/* Save Info */
.save-info {
  margin-bottom: 30px;
}

.save-info label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  cursor: pointer;
}

/* Shipping Method */
.shipping-method {
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 4px;
}

/* Payment Section */
.payment-section {
  margin-bottom: 30px;
}

.payment-method {
  margin-bottom: 30px;
}

.credit-card-form {
  margin-bottom: 30px;
}

.other-payment-methods {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  cursor: pointer;
}

/* Billing Address */
.billing-address {
  margin-bottom: 30px;
}

.billing-address label {
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  cursor: pointer;
}

/* Checkout Submit */
.checkout-submit {
  margin-top: 40px;
}

/* Order Summary */
.order-summary {
  width: 350px;
  background-color: #f8f9fa;
  padding: 25px;
  border-radius: 8px;
  position: sticky;
  top: 30px;
}

.order-summary h2 {
  margin-bottom: 25px;
  color: var(--text-color);
  font-size: 1.5rem;
}

/* Order Items */
.order-items {
  margin-bottom: 25px;
}

.order-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.order-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.order-item-image {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  padding: 5px;
  box-sizing: border-box;
}

.order-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.order-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.order-item h4 {
  margin: 0 0 8px 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-color);
}

.order-item-meta {
  display: flex;
  gap: 15px;
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 8px;
}

.order-item-price {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color);
}

/* Responsive Design for Order Items */
@media (max-width: 768px) {
  .order-item {
    flex-direction: row;
    align-items: center;
  }
  
  .order-item-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    padding: 5px;
    box-sizing: border-box;
  }
  
  .order-item-info {
    flex: 1;
    min-width: 0; /* Prevent overflow */
  }
  
  .order-item-meta {
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap;
  }
  
  .order-item h4 {
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* Order Totals */
.order-totals {
  margin-bottom: 25px;
}

.total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1rem;
}

.total-row.total {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid var(--primary-color);
}

/* Discount Code */
.discount-code {
  display: flex;
  gap: 10px;
}

.discount-code input {
  flex: 1;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}

.discount-code input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(255, 78, 156, 0.1);
}

/* Responsive Design */
@media (max-width: 992px) {
  .checkout-container {
    flex-direction: column;
  }
  
  .order-summary {
    width: 100%;
    position: static;
  }
}

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 20px;
  }
  
  .delivery-options {
    flex-direction: column;
    gap: 15px;
  }
  
  .discount-code {
    flex-direction: column;
    gap: 10px;
  }
}

/* Contact Section */
.contact-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.contact-section .page-title {
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-color);
  font-size: 2.5rem;
}

.contact-container {
  display: flex;
  gap: 40px;
  background-color: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

/* Contact Info */
.contact-info {
  flex: 1;
}

.contact-intro h2 {
  margin-bottom: 20px;
  color: var(--text-color);
  font-size: 1.8rem;
}

.contact-intro p {
  margin-bottom: 15px;
  color: #666;
  line-height: 1.6;
  font-size: 1.1rem;
}

.contact-us-now {
  margin: 30px 0;
  padding: 20px;
  background-color: var(--primary-color);
  border-radius: 8px;
  text-align: center;
}

.contact-us-now h3 {
  margin: 0;
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
}

.contact-details {
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #eee;
}

.contact-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.contact-item i {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-top: 5px;
}

.contact-item-info h4 {
  margin-bottom: 5px;
  color: var(--text-color);
  font-size: 1.1rem;
}

.contact-item-info p {
  margin: 0;
  color: #666;
  line-height: 1.4;
}

/* Social Media */
.social-media {
  margin-top: 40px;
}

.social-media h3 {
  margin-bottom: 20px;
  color: var(--text-color);
  font-size: 1.3rem;
}

.social-media .social-links {
  display: flex;
  gap: 15px;
}

.social-media .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  color: var(--primary-color);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-media .social-link:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(255, 78, 156, 0.2);
}

/* Contact Form */
.contact-form {
  flex: 1;
}

.contact-form h2 {
  margin-bottom: 30px;
  color: var(--text-color);
  font-size: 1.8rem;
}

.message-form .form-row {
  margin-bottom: 25px;
}

.message-form .form-group label {
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--text-color);
}

.message-form .form-group input,
.message-form .form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

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

.message-form .form-group input:focus,
.message-form .form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(255, 78, 156, 0.1);
}

/* Map Section */
.map-section {
  padding: 60px 0;
  background-color: white;
}

.map-section h2 {
  text-align: center;
  margin-bottom: 30px;
  color: var(--text-color);
  font-size: 1.8rem;
}

.map-container {
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  background-color: #f8f9fa;
  color: #666;
}

.map-placeholder i {
  font-size: 3rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

/* Responsive Design for Contact Page */
@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
  }
  
  .contact-intro h2 {
    font-size: 1.5rem;
  }
  
  .contact-form h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .contact-container {
    padding: 20px;
  }
  
  .contact-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .map-container {
    height: 300px;
  }
}

/* Privacy Policy Section */
.privacy-section {
  padding: 60px 0;
}

.privacy-section .page-title {
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-color);
  font-size: 2.5rem;
}

.privacy-content {
  background-color: white;
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  max-width: 1120px;
  margin: 0 auto;
  box-sizing: border-box;
}

.privacy-intro {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}

.privacy-intro p {
  margin-bottom: 10px;
  color: var(--colorTextBody);
  -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    font-family: var(--typeBasePrimary),var(--typeBaseFallback);
    font-size: calc(var(--typeBaseSize)*.92);
    letter-spacing: var(--typeBaseSpacing);
    line-height: var(--typeBaseLineHeight);
    text-rendering: optimizeSpeed;
}
}

.privacy-section-content {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}

.privacy-section-content:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.privacy-section-content h2 {
  margin-bottom: 20px;
  color: var(--text-color);
  font-size: 1.8rem;
  font-weight: 600;
}

.privacy-section-content h3 {
  margin: 25px 0 15px;
  color: var(--text-color);
  font-size: 1.3rem;
  font-weight: 500;
}

.privacy-section-content p {
  margin-bottom: 15px;
  color: #666;
  line-height: 1.6;
  font-size: 1.1rem;
}

.privacy-section-content ul {
  margin-bottom: 20px;
  padding-left: 25px;
  list-style-type: disc;
}

.privacy-section-content li {
  margin-bottom: 10px;
  color: #666;
  line-height: 1.6;
}

.privacy-section-content a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.privacy-section-content a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* Responsive Design for Privacy Policy */
@media (max-width: 992px) {
  .privacy-content {
    padding: 30px;
  }
  
  .privacy-section-content h2 {
    font-size: 1.5rem;
  }
  
  .privacy-section-content h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .privacy-content {
    padding: 20px;
  }
  
  .privacy-section .page-title {
    font-size: 2rem;
  }
  
  .privacy-section-content ul {
    padding-left: 20px;
  }
  
  .privacy-section-content p,
  .privacy-section-content li {
    font-size: 1rem;
  }
}

/* Discount Section */
.discount-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.discount-content {
  display: flex;
  gap: 60px;
  background-color: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

/* Discount Left */
.discount-left {
  flex: 1;
}

.discount-left .page-title {
  text-align: left;
  margin-bottom: 20px;
  color: var(--text-color);
  font-size: 2.5rem;
}

.discount-description {
  margin-bottom: 30px;
  color: #666;
  font-size: 1.2rem;
  line-height: 1.6;
}

.discount-benefits {
  margin-bottom: 40px;
  padding-left: 0;
  list-style-type: none;
}

.discount-benefits li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
}

.discount-benefits i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

/* Discount Form */
.discount-form {
  margin-bottom: 20px;
}

.discount-form .form-group {
  margin-bottom: 20px;
}

.discount-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-color);
  font-weight: 600;
  font-size: 1rem;
}

.discount-form input {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  color: var(--text-color);
  transition: all 0.3s ease;
}

.discount-form input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(255, 78, 156, 0.1);
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-container input[type="checkbox"] {
  width: auto;
  margin-top: 5px;
}

.checkbox-container label {
  flex: 1;
  margin-bottom: 0;
  font-weight: normal;
  font-size: 0.95rem;
}

.checkbox-container a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.checkbox-container a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.privacy-note {
  margin: 0;
  color: #999;
  font-size: 0.9rem;
  text-align: center;
}

/* Discount Right */
.discount-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.discount-image-container {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.discount-image {
  width: 100%;
  height: auto;
  display: block;
}

.discount-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--primary-color);
  color: white;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(255, 78, 156, 0.3);
}

.discount-percentage {
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.discount-text {
  display: block;
  font-size: 0.9rem;
}

/* Testimonials */
.testimonials {
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
}

.testimonials h3 {
  margin-bottom: 20px;
  color: var(--text-color);
  font-size: 1.4rem;
  text-align: center;
}

.testimonial {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #eee;
}

.testimonial:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.testimonial-content p {
  margin-bottom: 15px;
  color: #666;
  line-height: 1.6;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  color: var(--text-color);
  font-weight: 600;
}

/* Discount Features */
.discount-features {
  padding: 60px 0;
  background-color: white;
}

.discount-features .section-title {
  text-align: center;
  margin-bottom: 50px;
  color: var(--text-color);
  font-size: 2rem;
}

/* Discount Page Styles for get-discount.html */
.discount-section {
  padding: 40px 20px;
  background-color: var(--bg-white);
}

.discount-section .container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.discount-section .page-title {
  font-size: var(--typeHeaderSize);
  font-weight: var(--typeHeaderWeight);
  color: var(--text-color);
  margin-bottom: 40px;
  text-align: center;
}

.discount-card {
  background-color: var(--bg-light);
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.discount-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.discount-card h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.discount-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--secondary-color);
  margin: 20px 0 15px;
}

.discount-card p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: var(--text-color);
}

.discount-list, .vip-list, .discount-code-info {
  margin-bottom: 20px;
  padding-left: 20px;
}

.discount-list li, .vip-list li, .discount-code-info li {
  margin-bottom: 10px;
  line-height: 1.6;
  color: var(--text-color);
}

.vip-list {
  list-style-type: decimal;
}

.discount-code-info {
  list-style-type: disc;
}

.coupon-item {
  margin-bottom: 20px;
  padding: 20px;
  background-color: var(--bg-white);
  border-radius: 6px;
  border-left: 4px solid var(--primary-color);
}

.coupon-item:last-child {
  margin-bottom: 0;
}

.info-link {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.info-link:hover {
  text-decoration: underline;
  color: var(--secondary-color);
}

/* Responsive Design for Discount Page */
@media (max-width: 768px) {
  .discount-section {
    padding: 20px 10px;
  }
  
  .discount-card {
    padding: 20px;
  }
  
  .discount-card h2 {
    font-size: 20px;
  }
  
  .discount-card h3 {
    font-size: 18px;
  }
}

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

.feature-item {
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  background-color: #f8f9fa;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
}

.feature-item h3 {
  margin-bottom: 15px;
  color: var(--text-color);
  font-size: 1.3rem;
}

.feature-item p {
  margin: 0;
  color: #666;
  line-height: 1.6;
}

/* Responsive Design for Discount Page */
@media (max-width: 992px) {
  .discount-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .discount-left .page-title {
    font-size: 2rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .discount-content {
    padding: 20px;
  }
  
  .discount-left .page-title {
    font-size: 1.8rem;
  }
  
  .discount-description {
    font-size: 1.1rem;
  }
  
  .discount-benefits li {
    font-size: 1rem;
  }
  
  .checkbox-container {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .discount-badge {
    position: static;
    margin-top: 15px;
  }
  
  .discount-right {
    order: -1;
  }
}

.btn-secondary {
  background-color: white;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  padding: 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: white;
}

/* 产品标签 */
.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.product-tag {
  background-color: #f5f5f5;
  color: #666;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
}

/* 产品元数据 */
.product-meta {
  border-top: 1px solid #e0e0e0;
  padding-top: 20px;
}

.product-meta-item {
  display: flex;
  margin-bottom: 10px;
}

.meta-label {
  font-weight: bold;
  color: var(--primary-color);
  margin-right: 10px;
  min-width: 80px;
}

.meta-value {
  color: var(--colorTextBody);
}

/* 产品标签页 */
.product-tabs {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
}

.product-tabs-nav {
  display: flex;
  background-color: #f5f5f5;
  border-bottom: 1px solid #e0e0e0;
}

.product-tab-btn {
  padding: 15px 30px;
  border: none;
  background-color: transparent;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-tab-btn:hover {
  background-color: #e0e0e0;
}

.product-tab-btn.active {
  background-color: white;
  color: var(--primary-color);
  border-bottom: 3px solid var(--primary-color);
}

.product-tabs-content {
  padding: 30px;
}

.product-tab-panel {
  display: none;
}

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

.product-tab-panel h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.product-tab-panel h3 {
  color: var(--primary-color);
  margin: 20px 0 10px;
  font-size: 1.2rem;
}

.product-tab-panel p {
  margin-bottom: 15px;
 color: var(--colorTextBody);
  line-height: 1.6;
}

.product-tab-panel ul, .product-tab-panel ol {
  margin-left: 20px;
  margin-bottom: 15px;
}

.product-tab-panel li {
  color: #666;
  margin-bottom: 8px;
  line-height: 1.6;
}

/* 产品规格表格 */
.product-specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.product-specs-table th, .product-specs-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

.product-specs-table th {
  background-color: #f5f5f5;
  font-weight: bold;
  color: var(--primary-color);
  width: 30%;
}

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

/* 客户评价 */
.reviews-summary {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e0e0e0;
}

.reviews-overall-rating {
  text-align: center;
  padding: 20px;
  background-color: #f5f5f5;
  border-radius: 10px;
}

.overall-rating {
  display: block;
  font-size: 3rem;
  font-weight: bold;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.overall-stars {
  color: var(--accent-color);
  margin-bottom: 10px;
}

.overall-count {
  color: #666;
  font-size: 0.9rem;
}

.reviews-rating-breakdown {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

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

.rating-label {
  width: 60px;
  color: #666;
}

.rating-progress {
  flex: 1;
  height: 10px;
  background-color: #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
}

.rating-progress-fill {
  height: 100%;
  background-color: var(--accent-color);
}

.rating-count {
  width: 40px;
  text-align: right;
  color: #666;
  font-size: 0.9rem;
}

/* 评价列表 */
.reviews-list {
  margin-bottom: 40px;
}

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

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.review-author {
  display: flex;
  align-items: center;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 12px;
  object-fit: cover;
  border: 2px solid var(--accent-color);
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: bold;
  color: var(--primary-color);
}

.author-date {
  color: #999;
  font-size: 0.9rem;
}

.review-images {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.review-images img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #eee;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.review-images img:hover {
  transform: scale(1.05);
}

.review-rating {
  color: var(--accent-color);
}

.review-content h4 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.review-text {
  color: #666;
  line-height: 1.6;
}

/* 评价表单 */
.review-form-container {
  background-color: #f5f5f5;
  padding: 30px;
  border-radius: 10px;
}

.review-form-container h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.review-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group label {
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.form-input, .form-textarea {
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  font-size: 1rem;
  font-family: inherit;
}

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

.form-help-text {
  margin-top: 5px;
  font-size: 0.85rem;
  color: #666;
  font-style: italic;
}

/* Image preview styles */
.image-preview-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.image-preview {
  position: relative;
  width: 100px;
  height: 100px;
  border: 2px solid #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
  background-color: #f8f9fa;
}

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

.remove-image-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 12px;
  color: #333;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.remove-image-btn:hover {
  background-color: #ff4d4d;
  color: white;
  transform: scale(1.1);
}

/* Responsive design */
@media (max-width: 768px) {
  .image-preview {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 480px) {
  .image-preview {
    width: 70px;
    height: 70px;
  }
}

/* 相关产品 */
.related-products {
  padding: 40px 0;
  background-color: var(--bg-light);
}

.related-products h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 40px;
  font-size: 2rem;
}

/* 表单样式 */
input[type="email"] {
  padding: 12px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  font-size: 1rem;
  margin-right: 10px;
}

button[type="submit"] {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #efd274;
}

/* 关于区域样式 - 通栏样式 */
.about {
  padding: 30px 0;
  background-color: var(--bg-white);
  width: 100%;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  width: 100%;
  max-width: 100%;
  padding: 0 5%;
  margin: 0 auto;
}

.about-text {
  padding: 20px;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.about-intro {
  margin-bottom: 30px;
  color: #666;
  line-height: 1.8;
}

.features {
  margin-top: 30px;
}

.feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background-color: var(--secondary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.feature h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--primary-color);
}

.feature p {
  color: #666;
  line-height: 1.6;
}

.about-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  width: 100%;
  height: 400px;
  background-color: #f0f0f0;
}

.about-showcase {
  width: 100%;
  height: 100%;
  position: relative;
  background-image: url('../images/index/b011.jpg');
  background-size: cover;
  background-position: center;
}

.showcase-main {
  width: 100%;
  height: 100%;
}

.about-showcase .hero-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #999;
  font-size: 1.2rem;
}

.about-showcase .hero-placeholder i {
  font-size: 3rem;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.showcase-badges {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.badge {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 10px 15px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.badge i {
  color: var(--accent-color);
}

/* 评价区域样式 - 通栏样式 */
.testimonials {
  padding: 80px 0;
  background-color: var(--bg-light);
  width: 100%;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  width: 100%;
  margin-bottom: 40px;
}

.testimonial {
  background-color: var(--bg-white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-card {
  background-color: var(--bg-white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--secondary-color);
  opacity: 0.3;
  position: absolute;
  top: 20px;
  left: 20px;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  color: #555;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.testimonial-author-info h4 {
  font-size: 1rem;
  margin-bottom: 3px;
  color: var(--primary-color);
}

.testimonial-author-info p {
  font-size: 0.9rem;
  color: #888;
}

/* Testimonial content styles */
.testimonial-content {
  position: relative;
  z-index: 1;
}

/* Customer styles */
.customer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.customer-info {
  flex: 1;
}

.customer-info strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 3px;
  color: var(--primary-color);
}

.customer-info span {
  font-size: 0.9rem;
  color: #888;
}

.customer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  margin-left: 15px;
}

/* Newsletter content styles */
.newsletter-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.newsletter-note {
  margin-top: 15px;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* 通讯区域样式 */
.newsletter {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #c72c3b 100%);
  color: white;
  text-align: center;
  margin-top: 30px;
}

.newsletter h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.newsletter p {
  margin-bottom: 30px;
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 15px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
}

.newsletter-form button {
  padding: 15px 30px;
  background-color: var(--accent-color);
  color: var(--primary-color);
  font-weight: bold;
  border-radius: 5px;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background-color: #e5ad0a;
}

/* 支付方式页面样式 */
.payment-methods-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.payment-method-section {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.payment-method-icon {
    font-size: 48px;
    color: #eed172;
    margin-bottom: 20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(231, 76, 60, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-method-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.payment-method-content {
    color: #666;
    line-height: 1.6;
}

.payment-method-content p {
    margin-bottom: 15px;
}

.credit-card-logos {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    font-size: 32px;
    color: #333;
}

/* 新闻列表页面样式 */
.blogs-page-banner {
    position: relative;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blogs-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blogs-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.blogs-banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.blogs-banner-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
    font-weight: 700;
}

.blogs-banner-content p {
    font-size: 18px;
    opacity: 0.9;
}

.blogs-breadcrumb {
    background-color: #f9f9f9;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    display: block;
}

.blogs-breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
}

.blogs-breadcrumb a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.blogs-breadcrumb a:hover {
    color: #eed172;
}

.blogs-section {
    padding: 60px 0;
}

.blogs-section-title {
    text-align: center;
    font-size: 36px;
    color: #222;
    margin-bottom: 40px;
    margin-top: 20px;
}

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

.blog-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.blog-card-image {
    height: 250px;
    overflow: hidden;
}

.blog-card-image a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
}

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

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

.blog-card-content {
    padding: 25px;
}

.blog-card-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    font-size: max(calc(var(--typeBaseSize)*.7),13px);
}

.blog-card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.blog-card-title a {
    color: #333;
    background: transparent;
    color: var(--colorTextBody);
    -webkit-text-decoration: none;
    text-decoration: none;
    line-height: 1.2;
}

.blog-card-title a:hover {
   color: var(--colorTextBody);
}

.blog-card-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-card-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.blog-card-read-more:hover {
    gap: 12px;
}

.blogs-pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.pagination {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 25px;
}

.pagination-item {
    border-radius: 3px;
    transition: all 0.2s ease;
}

.pagination-item a {
    display: block;
    padding: 8px 12px;
    background: transparent;
    color: var(--colorTextBody);
    -webkit-text-decoration: none;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.pagination-item:hover a {
    color: #c0392b;
    text-decoration: underline;
}

.pagination-item.active a {
    color: #222;
    font-weight: 600;
    text-decoration: none;
}

/* Next button styles */
.pagination-item:last-child {
    margin-left: 10px;
}

.pagination-item:last-child a {
    padding: 8px 16px;
    background-color:var(--primary-color);
    color: white;
    border-radius: 3px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: 1.3;
}

.pagination-item:last-child:hover a {
    background-color: #c0392b;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* 新闻详情页面样式 */
.blog-detail-banner {
    position: relative;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-detail-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.blog-detail-banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.blog-detail-banner-content h1 {
    font-size: 36px;
    font-weight: 700;
}

.blog-detail-breadcrumb {
    background-color: #f9f9f9;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    display: block;
}

.blog-detail-breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
}

.blog-detail-breadcrumb a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.blog-detail-breadcrumb a:hover {
    color: #eed172;
}

.blog-detail-section {
    padding: 60px 0;
}

.blog-detail-content {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    max-width: 1000px;
    margin: 0 auto;
}

.blog-detail-title {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

/* Back Button */
.blog-detail-back-button {
    margin-top: 30px;
    text-align: center;
}

.back-btn {
    display: inline-flex;
    background: var(--colorBtnPrimary);
    border: 1px solid transparent;
    border-radius: var(--buttonRadius);
    color: var(--colorBtnPrimaryText);
    cursor: pointer;
    display: inline-block;
    font-size: calc(var(--typeBaseSize) - 4px);
    font-size: max(calc(var(--typeBaseSize) - 4px),13px);
    font-weight: 700;
    letter-spacing: .3em;
    line-height: 1.42;
    margin: 0;
    min-width: 90px;
    padding: 11px 20px;
    text-align: center;
    -webkit-text-decoration: none;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    vertical-align: middle;
    white-space: normal;
    width: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}

.back-btn:hover {
    background-color: var(--secondary-color);
    color: #f7e4e4;
}

.blog-detail-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.blog-detail-main {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.blog-detail-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #999;
    flex-wrap: wrap;
}

.blog-detail-meta span {
  font-size: max(calc(var(--typeBaseSize)*.7),14px);
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-color);
}

.blog-detail-featured-image {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
}

.blog-detail-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-detail-body {
    color: #333;
    line-height: 1.8;
}

.blog-detail-body h2 {
    font-size: 28px;
    font-weight: 600;
    margin: 30px 0 20px;
    color: #222;
}

.blog-detail-body h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 25px 0 15px;
    color: #222;
}

.blog-detail-body p {
    margin-bottom: 20px;
}

.blog-detail-body ul,
.blog-detail-body ol {
    margin: 20px 0;
    padding-left: 20px;
}

.blog-detail-body li {
    margin-bottom: 10px;
}

.blog-detail-share {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 15px;
}

.blog-detail-share h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    white-space: nowrap;
}

.blog-detail-share-links {
    display: flex;
    gap: 10px;
}

.share-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    font-size: 14px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.share-icon-btn.facebook {
    background-color: #3b5998;
}

.share-icon-btn.twitter {
    background-color: #1da1f2;
}

.share-icon-btn.pinterest {
    background-color: #e60023;
}

.share-icon-btn.instagram {
    background-color: #c32aa3;
}

.share-icon-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* 侧边栏样式 */
.blog-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.blog-detail-widget {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.blog-detail-widget h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #222;
}

.search-form {
    display: flex;
    gap: 5px;
}

.search-form input {
    flex: 1;
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 5px;
    font-size: 14px;
}

.search-form button {
    padding: 10px 15px;
    background-color: #eed172;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-form button:hover {
    background-color: #c0392b;
}

.categories-list {
    list-style: none;
    padding: 0;
}

.categories-list li {
    margin-bottom: 15px;
}

.categories-list a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.categories-list a:hover {
    color: #eed172;
}

.recent-posts-list {
    list-style: none;
    padding: 0;
}

.recent-post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.recent-post-image {
    width: 80px;
    height: 60px;
    overflow: hidden;
    border-radius: 5px;
}

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

.recent-post-content h4 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}

.recent-post-content a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.recent-post-content a:hover {
    color: #eed172;
}

.recent-post-date {
    font-size: 12px;
    color: #999;
}

/* 相关文章样式 */
.blog-detail-related {
    margin-top: 60px;
}

.blog-detail-related h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #222;
    text-align: center;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

/* Desktop layout - use blog card style */
@media (min-width: 769px) {
    /* Reset all styles to ensure clean slate */
    .related-post-card {
        all: unset;
        background-color: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        width: 100%;
        display: block;
    }

    .related-post-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    /* Use blog card image style */
    .related-post-image {
        all: unset;
        height: 250px;
        overflow: hidden;
        width: 100%;
        display: block;
    }

    .related-post-image img {
        all: unset;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
        display: block;
    }

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

    /* Use blog card content style */
    .related-post-content {
        all: unset;
        padding: 25px;
        display: block;
        width: 100%;
        box-sizing: border-box;
        background-color: white;
    }

    /* Title styling - use blog card title style */
    .related-post-content h3 {
        all: unset;
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 15px;
        line-height: 1.2;
        font-family: 'Poppins', sans-serif;
    }

    /* Link styling */
    .related-post-content a {
        all: unset;
        color: #333;
        text-decoration: none;
        transition: all 0.3s ease;
        display: block;
        font-size: calc(var(--typeBaseSize) + 2px);
    }

    .related-post-content a:hover {
        color: #333;
    }

    /* Date styling */
    .related-post-date {
        all: unset;
        color: #666;
        font-size: 14px;
        font-size: max(calc(var(--typeBaseSize)*.7),13px);
        display: block;
        margin: 0;
    }
}

/* Related Posts View All Button */
.related-posts-view-all {
    text-align: center;
    margin-top: 30px;
}

.view-all-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    text-decoration: none;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid #000000;
}

.view-all-btn:hover {
    background-color: #222;
    color: white;
    border-color: #222;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .blogs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-detail-layout {
        grid-template-columns: 1fr;
    }
    
    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blogs-banner-content h1 {
        font-size: 36px;
    }
    
    .blogs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-card {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        border-radius: 0;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }
    
    .blog-card-image {
        flex-shrink: 0;
        width: 200px;
        height: 140px;
        border-radius: 0;
    }
    
    .blog-card-content {
        flex: 1;
        padding: 15px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .blog-card-title {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .blog-card-excerpt {
        display: none;
    }
    
    .blog-card-meta {
        margin-bottom: 10px;
    }
    
    .blog-card-read-more {
        font-size: 14px;
    }
    
    .blog-detail-banner-content h1 {
        font-size: 28px;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* 针对更小屏幕的额外调整 */
@media (max-width: 480px) {
    .blog-card-image {
        width: 180px;
        height: 126px;
    }
    
    .blog-card-content {
        padding: 12px;
    }
    
    .blog-card-title {
        font-size: 15px;
    }
}

@media (max-width: 400px) {
    .blog-card-image {
        width: 160px;
        height: 112px;
    }
    
    .blog-card-excerpt {
        display: none;
    }
}

@media (max-width: 768px) {
    .related-post-card {
        display: flex;
        align-items: center;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        border-radius: 5px;
    }
    
    .related-post-image {
        flex-shrink: 0;
        width: 220px;
        height: 112.5px;
        border-radius: 5px;
        overflow: hidden;
        margin: 10px;
    }
    
    .related-post-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }
    
    .related-post-card:hover .related-post-image img {
        transform: scale(1.05);
    }
    
    .related-post-content {
        flex: 1;
        padding: 12px 15px 12px 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .related-post-content h3 {
        margin-top: 0;
        margin-bottom: 8px;
        font-size: 16px;
        line-height: 1.4;
    }
    .related-post-content h3 a {
       color: var(--colorTextBody);
    }
    
    .related-post-date {
        font-size: max(calc(var(--typeBaseSize)*.7),12px);
    }
    
    .blog-detail-share-links {
        flex-wrap: wrap;
    }
    
    .share-link {
        flex: 1;
        justify-content: center;
    }
}

/* Affiliate Program Styles */

.affiliates-hero {
    background-color: #f8f9fa;
    padding: 80px 0;
    text-align: center;
}

.affiliates-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #222;
}

.affiliates-hero p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #666;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.affiliates-benefits {
    padding: 80px 0;
    background-color: #fff;
}

.affiliates-benefits h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #222;
}

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

.benefit-card {
    background-color: #f8f9fa;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-card i {
    font-size: 48px;
    margin-bottom: 20px;
    color: #eed172;
}

.benefit-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #222;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

.affiliates-how-it-works {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.affiliates-how-it-works h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #222;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.step-card {
    text-align: center;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: #eed172;
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #222;
}

.step-card p {
    color: #666;
    line-height: 1.6;
}

.affiliates-commission {
    padding: 80px 0;
    background-color: #fff;
}

.affiliates-commission h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #222;
}

.commission-table {
    max-width: 600px;
    margin: 0 auto;
}

.commission-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.commission-table th,
.commission-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.commission-table th {
    background-color: #eed172;
    color: #fff;
    font-weight: 600;
}

.commission-table tr:last-child td {
    border-bottom: none;
}

.affiliates-application {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.affiliates-application h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #222;
}

.affiliate-form {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #222;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #eed172;
}

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

.form-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

.form-group input[type="checkbox"] + label {
    display: inline-block;
    margin-bottom: 0;
    font-weight: 400;
}

.affiliates-faq {
    padding: 80px 0;
    background-color: #fff;
}

.affiliates-faq h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #222;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 15px;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 15px 0;
    font-size: 18px;
    font-weight: 500;
    color: #222;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #eed172;
}

.faq-question::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.faq-answer {
    display: none;
    padding: 0 0 15px 0;
    color: #666;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .affiliates-hero h1 {
        font-size: 36px;
    }
    
    .affiliates-hero p {
        font-size: 16px;
    }
    
    .affiliates-benefits h2,
    .affiliates-how-it-works h2,
    .affiliates-commission h2,
    .affiliates-application h2,
    .affiliates-faq h2 {
        font-size: 28px;
    }
    
    .benefits-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .affiliate-form {
        padding: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .affiliates-hero h1 {
        font-size: 28px;
    }
    
    .benefit-card,
    .step-card {
        padding: 20px;
    }
    
    .commission-table th,
    .commission-table td {
        padding: 15px 10px;
        font-size: 14px;
    }
}

/* User Center Styles */

.user-center {
    padding: 40px 0;
    background-color: #f8f9fa;
}

/* Order Detail Styles */
.order-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.order-back .back-link {
    display: flex;
    align-items: center;
    color: #222;
    font-size: 16px;
}

.order-back .back-link i {
    margin-right: 10px;
    font-size: 14px;
}

.order-back .back-link:hover {
    color: #eed172;
}

.order-status .status {
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.order-status .status.delivered {
    background-color: #d4edda;
    color: #155724;
}

.order-status .status.processing {
    background-color: #fff3cd;
    color: #856404;
}

.order-status .status.shipped {
    background-color: #cce7ff;
    color: #004085;
}

.order-status .status.pending {
    background-color: #f8d7da;
    color: #721c24;
}

.order-status .status.cancelled {
    background-color: #e2e3e5;
    color: #383d41;
}

.order-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.order-info-section {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.order-info-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #222;
    border-bottom: 2px solid #eed172;
    padding-bottom: 10px;
}

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

.order-info-item {
    display: flex;
    flex-direction: column;
}

.order-info-item label {
    font-weight: 600;
    color: #666;
    font-size: 14px;
    margin-bottom: 5px;
}

.order-info-item span {
    color: #222;
    font-size: 16px;
}

.order-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.order-actions .btn {
    padding: 12px 24px;
    border: 1px solid #e0e0e0;
    background-color: #fff;
    color: #222;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.order-actions .btn:hover {
    background-color: #f8f9fa;
}

.order-actions .btn.btn-outline {
    border-color: #eed172;
    color: #eed172;
}

.order-actions .btn.btn-outline:hover {
    background-color: #eed172;
    color: #fff;
}

.address-info {
    font-size: 16px;
    line-height: 1.8;
    color: #222;
}

.address-info p {
    margin-bottom: 8px;
}

.order-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.order-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background-color: #f9f9f9;
}

.order-item-image {
    width: 120px;
    height: 120px;
    overflow: hidden;
    border-radius: 8px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 8px;
    box-sizing: border-box;
}

.order-item-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.order-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.order-item-info h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #222;
}

.order-item-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #666;
}

.order-item-price {
    font-size: 18px;
    font-weight: 600;
    color: #eed172;
}

.order-summary {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    color: #222;
}

.summary-item label {
    font-weight: 500;
}

.summary-item.total {
    font-size: 18px;
    font-weight: 600;
    padding-top: 15px;
    border-top: 2px solid #eed172;
    margin-top: 10px;
    color: #eed172;
}

.delivery-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 10px;
}

.delivery-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    position: relative;
}

.delivery-step::after {
    content: '';
    position: absolute;
    left: 24px;
    top: 40px;
    bottom: -20px;
    width: 2px;
    background-color: #e0e0e0;
}

.delivery-step:last-child::after {
    display: none;
}

.delivery-step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #e0e0e0;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    flex-shrink: 0;
    z-index: 1;
}

.delivery-step-number.completed {
    background-color: #eed172;
    color: #fff;
}

.delivery-step-content {
    flex: 1;
}

.delivery-step-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #222;
}

.delivery-step-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
}

.user-center-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #222;
}

.user-center-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* User Sidebar */
.user-sidebar {
    background-color: #f8f9fa;
    padding: 30px;
    border-right: 1px solid #e0e0e0;
}

.user-profile {
    margin-bottom: 40px;
    text-align: center;
}

.user-avatar {
    width: 100px;
    height: 100px;
    background-color: #eed172;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 20px;
}

.user-info h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #222;
}

.user-info p {
    color: #666;
    font-size: 14px;
}

.user-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.user-nav-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    margin-bottom: 5px;
    background-color: #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #222;
    border: 1px solid transparent;
}

.user-nav-item:hover {
    background-color: #eed172;
    color: #fff;
}

.user-nav-item.active {
    background-color: #eed172;
    color: #fff;
    border-color: #eed172;
}

.user-nav-item i {
    margin-right: 15px;
    font-size: 18px;
}

.message-badge {
    background-color: #eed172;
    color: #fff;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: auto;
    font-weight: 600;
}

/* Messages Section */
.messages-container {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 30px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.messages-list {
    background-color: #f8f9fa;
    border-right: 1px solid #e0e0e0;
}

.messages-list-header {
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.messages-list-header h3 {
    margin: 0 0 20px 0;
    color: #222;
    font-size: 20px;
}

.message-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 15px;
    border: 1px solid #ddd;
    background-color: #fff;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: #eed172;
    color: #eed172;
}

.filter-btn.active {
    background-color: #eed172;
    color: #fff;
    border-color: #eed172;
}

.messages-list-content {
    max-height: 500px;
    overflow-y: auto;
}

.message-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 20px;
    border-bottom: 1px solid #e0e0e0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.message-item:hover {
    background-color: rgba(231, 76, 60, 0.05);
}

.message-item.active {
    background-color: rgba(231, 76, 60, 0.1);
    border-left: 3px solid #eed172;
}

.message-item.unread {
    background-color: #fff;
    font-weight: 500;
}

.message-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #eed172;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 5px;
}

.message-info {
    flex: 1;
    min-width: 0;
}

.message-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.message-header h4 {
    margin: 0;
    font-size: 16px;
    color: #222;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.message-time {
    font-size: 12px;
    color: #999;
    white-space: nowrap;
}

.message-preview {
    margin: 0;
    font-size: 14px;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.message-status {
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.unread-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #eed172;
}

.message-detail {
    display: flex;
    flex-direction: column;
}

.message-detail-header {
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.message-detail-header h3 {
    margin: 0;
    color: #222;
    font-size: 20px;
}

.message-detail-content {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    max-height: 500px;
}

.message-detail-item {
    display: none;
}

.message-detail-item.active {
    display: block;
}

.message-detail-header-info {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.message-detail-header-info h4 {
    margin: 0 0 5px 0;
    color: #222;
    font-size: 20px;
}

.message-detail-time {
    font-size: 14px;
    color: #999;
}

.message-detail-body {
    line-height: 1.8;
    color: #444;
    font-size: 15px;
}

.message-detail-body p {
    margin-bottom: 15px;
}

.message-detail-body p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .messages-container {
        grid-template-columns: 1fr;
    }
    
    .messages-list {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .messages-list-content {
        max-height: 300px;
    }
    
    .message-detail-content {
        max-height: 400px;
    }
}

@media (max-width: 576px) {
    .messages-list-header,
    .message-detail-header,
    .message-detail-content {
        padding: 15px;
    }
    
    .message-item {
        padding: 12px 15px;
    }
    
    .message-avatar {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .message-header h4 {
        font-size: 15px;
    }
    
    .message-preview {
        font-size: 13px;
    }
}

/* User Content */
.user-content {
    padding: 40px;
}

.user-section {
    display: none;
}

.user-section.active {
    display: block;
}

.user-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #222;
    border-bottom: 2px solid #eed172;
    padding-bottom: 10px;
}

/* Profile Section */
.profile-info {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
}

.profile-avatar-section {
    text-align: center;
}

.profile-avatar {
    width: 150px;
    height: 150px;
    background-color: #eed172;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    margin: 0 auto 20px;
    overflow: hidden;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Avatar Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
    overflow: auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px 0;
}

.modal-content {
    background-color: #fff;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.3s ease;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.modal-header h3 {
    margin: 0;
    color: #222;
}

.close-modal {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background-color: #f8f9fa;
    color: #222;
}

.modal-body {
    padding: 20px;
    flex: 1;
    overflow-y: auto;
    max-height: calc(90vh - 140px);
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    padding: 20px;
    border-top: 1px solid #e0e0e0;
}

/* Avatar Preview Styles */
.avatar-preview-container {
    text-align: center;
    margin-bottom: 20px;
}

.avatar-preview {
    width: 200px;
    height: 200px;
    background-color: #eed172;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.avatar-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Avatar Actions Styles */
.avatar-actions {
    text-align: center;
    margin-top: 20px;
}

.upload-info {
    margin-top: 15px;
    font-size: 14px;
    color: #666;
}

.upload-progress {
    margin-top: 15px;
    text-align: center;
}

.progress-bar-container {
    width: 100%;
    height: 8px;
    background-color: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 5px;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background-color: #eed172;
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.profile-form {
    max-width: 600px;
}

/* Orders Section */
.orders-filter {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 1px solid #e0e0e0;
    background-color: #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #222;
}

.filter-btn:hover {
    background-color: #f8f9fa;
}

.filter-btn.active {
    background-color: #eed172;
    color: #fff;
    border-color: #eed172;
}

.orders-list {
    margin-bottom: 30px;
}

.order-status-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 12px;
}

.status-bar-item {
    flex: 0 0 auto;
}

.status-filter {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.status-filter:hover {
    border-color: #eed172;
    color: #eed172;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.status-filter.active {
    background-color: #eed172;
    color: #222;
    border-color: #eed172;
    box-shadow: 0 4px 8px rgba(238, 209, 114, 0.3);
}

.status-count {
    background-color: rgba(0, 0, 0, 0.1);
    color: #222;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.status-filter.active .status-count {
    background-color: rgba(0, 0, 0, 0.15);
}

.order-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.order-card {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.order-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.order-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #f0f0f0;
    background-color: #fafafa;
}

.order-info {
    flex: 1;
}

.order-number {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin-bottom: 5px;
}

.order-date {
    font-size: 14px;
    color: #666;
}

.order-status .status {
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
}

.status.delivered {
    background-color: #d4edda;
    color: #155724;
}

.status.processing {
    background-color: #fff3cd;
    color: #856404;
}

.status.pending {
    background-color: #cce5ff;
    color: #004085;
}

.status.cancelled {
    background-color: #f8d7da;
    color: #721c24;
}

.order-card-content {
    padding: 25px;
}

.order-product {
    display: flex;
    align-items: center;
    gap: 20px;
}

.order-product .product-image {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background-color: #f5f5f5;
}

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

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

.product-details {
    flex: 1;
}

.product-details h4 {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
    line-height: 1.4;
}

.product-attributes {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.attribute {
    font-size: 12px;
    color: #888;
    background-color: #f5f5f5;
    padding: 4px 8px;
    border-radius: 4px;
}

.product-qty {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
}

.order-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    border-top: 1px solid #f0f0f0;
    background-color: #fafafa;
}

.order-total {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.total-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.total-amount {
    font-size: 24px;
    font-weight: 700;
    color: #eed172;
}

.order-actions {
    display: flex;
    gap: 12px;
    flex-wrap: nowrap;
}

.order-actions .btn {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.order-actions .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .order-cards {
        grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
    }
}

@media (max-width: 768px) {
    .order-status-bar {
        padding: 15px;
        gap: 10px;
    }
    
    .status-filter {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .order-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .order-card-header {
        padding: 15px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .order-status {
        align-self: flex-end;
    }
    
    .order-card-content {
        padding: 20px;
    }
    
    .order-product {
        gap: 15px;
    }
    
    .order-product .product-image {
        width: 80px;
        height: 80px;
    }
    
    .order-card-footer {
        padding: 15px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .order-actions {
        align-self: flex-end;
    }
    
    .order-actions .btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .order-status .status {
        padding: 6px 14px;
        font-size: 13px;
    }
    
    .product-details h4 {
        font-size: 15px;
        margin-bottom: 8px;
    }
    
    .total-amount {
        font-size: 20px;
    }
    
    .order-actions {
        flex-direction: row;
        flex-wrap: wrap;
        align-self: flex-end;
        gap: 8px;
        width: 100%;
    }
    
    .order-actions .btn {
        width: calc(50% - 4px);
        text-align: center;
        padding: 6px 12px;
        font-size: 12px;
    }
}

.orders-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pagination-btn {
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
    background-color: #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #222;
}

.pagination-btn:hover {
    background-color: #f8f9fa;
}

.pagination-btn.active {
    background-color: #eed172;
    color: #fff;
    border-color: #eed172;
}

/* Favorites Section */
.favorites-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .favorites-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .favorites-list {
        grid-template-columns: 1fr;
    }
}

.favorite-item {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.favorite-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.favorite-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.remove-favorite {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-favorite:hover {
    background-color: #eed172;
}

.favorite-info {
    padding: 20px;
}

.favorite-info h4 {
    margin-bottom: 10px;
    color: #222;
}

.favorite-price {
    font-size: 20px;
    font-weight: 600;
    color: #eed172;
    margin-bottom: 15px;
}

/* Reviews Section */
.reviews-list {
    display: grid;
    gap: 20px;
}

.review-item {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
}

.review-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.review-product {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.review-product .product-image {
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 5px;
}

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

.review-content .review-rating {
    color: #f39c12;
    margin-bottom: 15px;
    font-size: 18px;
}

.review-text {
    margin-bottom: 15px;
    color: #222;
    line-height: 1.6;
}

.review-title {
    margin-bottom: 10px;
    color: #222;
    font-size: 1.1rem;
    font-weight: 600;
}

.review-date {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.review-actions {
    display: flex;
    gap: 10px;
}

/* Star Rating Styles */
.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
    margin-bottom: 20px;
}

.star-rating input {
    display: none;
}

.star-rating label {
    cursor: pointer;
    font-size: 30px;
    color: #ddd;
    transition: color 0.3s ease;
}

.star-rating input:checked ~ label,
.star-rating input:hover ~ label,
.star-rating input:hover {
    color: #f39c12;
}

.star-rating label:hover {
    color: #f39c12;
}

.star-rating label:hover ~ label {
    color: #f39c12;
}

/* Review Form Styles */
#reviewForm .form-group {
    margin-bottom: 20px;
}

#reviewForm label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
}

#reviewForm textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    resize: vertical;
    min-height: 100px;
    transition: all 0.3s ease;
}

#reviewForm textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(255, 78, 156, 0.1);
}

/* Addresses Section */
.add-address-btn {
    margin-top: 30px;
    margin-bottom: 30px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Edit Address Page Styles */
.address-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.edit-address-section .back-link {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
}

.edit-address-section .back-link:hover {
    color: var(--primary-color);
}

.edit-address-section .back-link i {
    margin-right: 5px;
}

.address-form {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

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

.address-form .form-group {
    flex: 1;
    margin-bottom: 20px;
}

.address-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
}

.address-form input,
.address-form select {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.address-form input:focus,
.address-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(255, 78, 156, 0.1);
}

.address-form .checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: normal;
    cursor: pointer;
}

.address-form .checkbox-label input {
    width: auto;
    margin: 0;
}

.address-form .form-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .address-form .form-row {
        flex-direction: column;
    }
    
    .address-form {
        padding: 20px;
    }
    
    .address-form .form-actions {
        flex-direction: column;
    }
    
    .address-form .btn {
        width: 100%;
    }
}

.addresses-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

.address-item {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
}

.address-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.address-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.address-header h4 {
    margin: 0;
    color: #222;
}

.address-default {
    padding: 3px 10px;
    background-color: #eed172;
    color: #fff;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

.address-info p {
    margin: 5px 0;
    color: #666;
    line-height: 1.6;
}

.address-actions {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

/* Settings Section */
.settings-list {
    display: grid;
    gap: 30px;
}

.setting-item {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
}

.setting-item h3 {
    margin-bottom: 20px;
    color: #222;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 10px;
}

.setting-content {
    /* Ensure form elements are left-aligned */
}

.setting-content .form-group,
.setting-content .notification-option {
    text-align: left;
}

.setting-content .btn {
    margin-top: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.notification-option {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.notification-option input {
    margin-right: 10px;
    width: auto;
}

.notification-option label {
    margin: 0;
    cursor: pointer;
    color: #222;
}

/* Responsive Design */
@media (max-width: 992px) {
    .user-center-layout {
        grid-template-columns: 1fr;
    }
    
    .user-sidebar {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .user-nav ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .user-nav-item {
        margin-bottom: 0;
        justify-content: center;
    }
    
    .profile-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .profile-avatar-section {
        text-align: center;
    }
    
    /* Order Detail Responsive */
    .order-detail-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .order-info-grid {
        grid-template-columns: 1fr;
    }
    
    .order-actions {
        justify-content: center;
    }
    
    .order-item {
        flex-direction: row;
        align-items: center;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .user-center-layout {
        border-radius: 0;
        box-shadow: none;
    }
    
    .user-sidebar,
    .user-content {
        padding: 20px;
    }
    
    .user-center-title {
        font-size: 28px;
    }
    
    .user-section h2 {
        font-size: 24px;
    }
    
    .orders-filter {
        flex-direction: column;
    }
    
    .order-header,
    .order-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .favorites-list,
    .addresses-list {
        grid-template-columns: 1fr;
    }
    
    .review-product {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .order-actions,
    .review-actions,
    .address-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .order-actions button,
    .review-actions button,
    .address-actions button {
        width: 100%;
    }
    
    /* Order Detail Responsive */
    .order-info-section {
        padding: 15px;
    }
    
    .order-info-section h3 {
        font-size: 18px;
    }
    
    .order-item {
        padding: 15px;
    }
    
    .order-item-image {
        width: 80px;
        height: 80px;
        flex-shrink: 0;
        padding: 5px;
        box-sizing: border-box;
    }
    
    .order-item-info h4 {
        font-size: 14px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .order-item-meta {
        flex-direction: row;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .delivery-step {
        gap: 15px;
    }
    
    .delivery-step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .delivery-step-content h4 {
        font-size: 16px;
    }
    
    .delivery-step-content p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .user-nav ul {
        grid-template-columns: 1fr;
    }
    
    .user-content {
        padding: 15px;
    }
    
    .order-item,
    .favorite-item,
    .review-item,
    .address-item,
    .setting-item {
        padding: 15px;
    }
}

/* 页脚样式 */
footer {
  background-color: #ffffff;
  color: #333333;
  padding: 60px 0 0;
  border-top: 1px solid #eee;
  position: relative;
  z-index: 1;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
  gap: 30px;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

/* 邮件订阅部分样式 */
.footer-newsletter {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

/* 底部折叠模块样式 */
.footer-collapse {
  border-bottom: 1px solid #eee;
}

.footer-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.footer-collapse-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  color: #666;
  transition: transform 0.3s ease;
}

.footer-collapse-toggle.active {
  transform: rotate(180deg);
}

.footer-section-content {
  overflow: hidden;
  transition: max-height 0.3s ease;
  max-height: 200px;
}

/* 移动端底部布局 */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 0;
    display: grid;
  }
  
  .footer-newsletter {
    text-align: center !important;
    align-items: center !important;
    display: block !important;
  }
  
  .footer-newsletter p {
    text-align: center !important;
    margin: 0 auto 12px !important;
    max-width: 100% !important;
  }
  
  /* 确保所有footer标题在移动端显示 */
  #help-and-support-title, #customer-care-title, #get-in-touch-title {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    text-align: center !important;
    color: #000000 !important;
    padding: 0 !important;
    position: relative !important;
    background-color: #ffffff !important;
    font-size: 0.95rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.2em !important;
    margin: 0 !important;
    flex: 1 !important;
    line-height: 1.5 !important;
  }
  
  .footer-section {
    position: relative;
    z-index: 5 !important; /* 确保所有footer-section比社交媒体部分的z-index更高 */
    margin: 0;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
  }
  
  .footer-section-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    position: relative;
    z-index: 6 !important;
    padding: 2px 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  

  
  .footer-logo {
    grid-column: 1 / -1;
    text-align: center;
    padding-bottom: 5px;
    border-bottom: 1px solid #eee;
  }
  
  .footer-logo .social-links {
    justify-content: center;
    margin-top: 15px;
    gap: 15px;
  }
  
  .footer-section {
    text-align: center;
  }
  
  .footer-section h4 {
    font-size: 0.95rem;
    margin: 0;
    padding: 5px 0;
    color: #000000;
    display: block;
    flex: 1;
    text-align: center;
  }
  
  .footer-collapse-toggle {
    position: relative;
    right: 0;
    top: auto;
    transform: none;
    z-index: 101 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 24px !important;
    height: 24px !important;
    color: #666 !important;
    margin-left: 15px !important;
    flex-shrink: 0;
  }
  
  .footer-section ul {
    margin: 0;
    padding: 0 0 15px 0;
    text-align: center;
  }
  
  .footer-section ul li {
    margin-bottom: 8px;
    text-align: center;
  }
  
  .footer-section ul li a {
    font-size: 0.85rem;
  }
  
  .footer-collapse {
    border-bottom: 1px solid #eee;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 20px;
    margin: 0;
  }
  
  .footer-newsletter {
    border-top: none;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  
  .footer-section-content {
    max-height: 0;
    padding: 0 20px !important;
    box-sizing: border-box !important;
  }
  
  .footer-section-content.active {
    max-height: 200px;
    padding: 0 20px 15px !important;
    box-sizing: border-box !important;
  }
  
  /* 确保所有footer-section在移动端都是单列布局 */
  .footer-content > .footer-section {
    grid-column: 1;
    width: 100%;
    box-sizing: border-box;
  }
  
  .footer-newsletter {
    grid-column: 1 / -1;
    text-align: center;
    display: block !important;
    visibility: visible !important;
    margin-top: 0;
    padding: 10px 20px 0 !important;
    border-top: none;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .footer-newsletter h4 {
    text-align: center;
    margin: 0 auto;
    display: none;
  }
  
  .footer-newsletter-form {
    justify-content: center;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .footer-newsletter p {
    margin-bottom: 12px;
    font-size: 0.85rem;
    text-align: center !important;
  }
  
  .footer-newsletter-form {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    gap: 0;
  }
  
  .footer-newsletter-form input {
    font-size: 0.85rem;
    padding: 10px 12px;
  }
  
  .footer-newsletter-form button {
    font-size: 0.8rem;
    padding: 8px 16px;
    width: auto;
    flex: none;
    margin: 0 auto;
  }
  
  .payment-methods {
    flex-direction: column;
    gap: 10px;
  }
  
  .payment-methods span {
    font-size: 0.8rem;
  }
  
  .footer-bottom-content {
    text-align: center;
  }
  
  .footer-bottom-content p {
    font-size: 0.8rem;
  }
}

/* 桌面端保持展开状态 */
@media (min-width: 769px) {
  .footer-collapse-toggle {
    display: none;
  }
  
  .footer-section-content {
    max-height: none;
  }
}

.footer-logo {
  position: relative;
  z-index: 2;
}

.footer-logo .social-links {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  position: relative;
  z-index: 2;
  background-color: #ffffff;
}

.footer-logo .social-links a {
  width: 36px;
  height: 36px;
  background-color: #f5f5f5;
  color: #666;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  position: relative;
  z-index: 2;
}

.footer-logo .social-links a:hover {
  background-color: var(--primary-color);
  color: var(--primary-color);
}

.footer-logo .footer-logo-img {
  margin-bottom: 15px;
}

.footer-logo .footer-logo-img img {
  max-width: 150px;
  height: auto;
}

.footer-logo p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 5px;
}

.footer-section h4 {
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    font-family: var(--typeBasePrimary),var(--typeBaseFallback);
    font-size: calc(var(--typeBaseSize)*.95);
    letter-spacing: var(--typeBaseSpacing);
    line-height: var(--typeBaseLineHeight);
    text-rendering: optimizeSpeed;
  letter-spacing: .2em;
  margin-bottom: 20px;
  color: #000000;
  text-transform: uppercase;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #000;
  font-size: calc(var(--typeBaseSize)*.95);
  transition: color 0.3s ease;

}

.footer-section ul li a:hover {
  color: var(--primary-color);
}

.footer-newsletter p {
  color: #000;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.footer-newsletter-form {
  display: flex;
  gap: 0;
}

.footer-newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px 0 0 4px;
  font-size: 0.9rem;
  background: #fff;
  color: #333;
}

.footer-newsletter-form input::placeholder {
  color: #999;
}

.footer-newsletter-form button {
  padding: 12px 20px;
  border: none;
  border-radius: 0 4px 4px 0;
  background: var(--primary-color);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.footer-newsletter-form button:hover {
  background: var(--secondary-color);
}

.footer-newsletter {
  display: flex;
  flex-direction: column;
  visibility: visible;
}

.footer-newsletter .social-links {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  overflow: visible;
  padding-bottom: 10px;
  position: relative;
  z-index: 10;
  background-color: #ffffff;
}

.footer-newsletter .social-links a {
  width: 36px;
  height: 36px;
  background-color: #f5f5f5;
  color: #666;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  overflow: visible;
  position: relative;
  z-index: 11;
}

.footer-newsletter .social-links a:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.footer-middle {
  position: relative;
 
  padding: 15px 0;
  margin-bottom: 0;
  border-top: 0px solid #eee;
  overflow: hidden;
}

.payment-methods {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.payment-methods span {
  color: #000;
  font-size: 0.85rem;
}

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

.payment-icons i {
  font-size: 1.3rem;
}

.payment-icons .fa-cc-visa {
  color: #1A1F71;
}

.payment-icons .fa-cc-mastercard {
  color: #EB001B;
}

.payment-icons .fa-cc-amex {
  color: #006FCF;
}

.payment-icons .fa-cc-paypal {
  color: #003087;
}

.payment-icons .fa-cc-discover {
  color: #FF6000;
}

.footer-bottom {
  position: relative;
  background-color: #ffffff;
  padding: 20px 0;
  border-top: 1px solid #eee;
  z-index: 5;
}

.footer-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  background-color: #f9f9f9;
  transform: translateX(-50%);
  z-index: 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  position: relative;
  z-index: 6;
}

.footer-bottom p {
  color: #000;
  font-size: 0.85rem;
  margin: 0;
}

.footer-bottom-links a {
  color: #000;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a:hover {
  color: #c9a86c;
}

/* 响应式设计 */
@media (max-width: 1200px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
  
  .footer-logo {
    grid-column: span 4;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .footer-newsletter {
    grid-column: auto;
  }
  
  .footer-newsletter-form {
    max-width: 100%;
    margin: 0;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .footer-logo {
    grid-column: span 2;
  }
  
  .footer-section:nth-child(5) {
    grid-column: span 2;
  }
  
  .footer-newsletter {
    text-align: center !important;
    align-items: center !important;
  }
  
  .footer-newsletter p {
    text-align: center !important;
    margin: 0 auto 12px !important;
    font-size: 0.85rem;
    max-width: 100% !important;
  }
  
  .footer-newsletter-form {
    flex-direction: column;
    max-width: 400px !important;
    margin: 0 auto !important;
  }
  
  .footer-newsletter-form input {
    border-radius: 4px;
    margin-bottom: 10px;
  }
  
  .footer-newsletter-form button {
    border-radius: 4px;
    width: auto;
    padding: 8px 16px;
    font-size: 0.8rem;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-logo {
    grid-column: span 1;
  }
  
  .footer-section:nth-child(5) {
    grid-column: span 1;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-newsletter-form {
    max-width: 100%;
  }
  
  /* 确保header-left容器在小屏幕上显示 */
  .header-left {
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
  }
  
  /* 确保汉堡菜单在小屏幕上显示 */
  .hamburger {
    display: flex !important;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    cursor: pointer;
    width: 44px;
    height: 44px;
    background-color: #333;
    border-radius: 8px;
    padding: 10px 12px;
    box-sizing: border-box;
    transition: background-color 0.3s ease;
  }
}

/* 响应式设计 */
@media (max-width: 1200px) {
  /* 分类块大屏幕样式 */
  .category-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .logo {
    font-size: 1.6rem;
  }
  
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .footer-newsletter-form {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 992px) {
  /* 分类块中屏幕样式 */
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  
  .logo {
    font-size: 1.5rem;
  }
  
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    order: -1;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .category-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
  }
  
  .categories {
    padding: 15px 0;
  }
  
  .section-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 500;
    line-height: 0.9;
  }
  
  .section-header h2 {
    line-height: 0.9;
    font-size: 2.0rem;
    font-weight: 500;
  }
  
  .category-card {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 5px;
    gap: 8px;
    background-color: transparent;
    border: none;
  }
  
  .category-card img {
    width: 50px;
    height: 50px;
  }
  
  .category-name {
    font-size: 0.75rem;
    text-align: center;
  }
  
  .category-sale-tag {
    font-size: 0.6rem;
    padding: 2px 4px;
  }
  
  .container {
    padding: 0 2%;
  }
  
  

/* 头部响应式样式 */
  .header-actions {
    display: flex; /* 保持显示，但调整布局 */
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
    padding: 0 5px;
  }

  .search-input {
    width: 120px; /* 移动端缩小搜索框 */
    font-size: 0.8rem;
    padding: 6px 12px 6px 30px;
  }

  .search-input:focus {
    width: 150px; /* 聚焦时稍微扩大 */
  }

  .search-button {
    font-size: 0.8rem;
    left: 8px;
  }

  .user-text {
    display: none; /* 移动端隐藏文字，只显示图标 */
  }

  .social-links a {
    font-size: 0.9rem;
  }
  
  /* 汉堡菜单样式 - 三条线图标 */
  .hamburger {
    display: flex !important;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    cursor: pointer;
    width: 44px;
    height: 44px;
    background-color: #333;
    border-radius: 8px;
    padding: 10px 12px;
    box-sizing: border-box;
    transition: background-color 0.3s ease;
  }
  
  .hamburger:hover {
    background-color: #555;
  }
  
  .hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
    width: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  /* 导航栏样式 - 侧边栏模式 */
  .navbar {
    position: fixed;
    top: 60px;
    left: -280px;
    width: 280px;
    height: calc(100vh - 60px);
    background-color: var(--bg-white);
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    z-index: 999;
    overflow-y: auto;
    padding: 20px 0;
    transition: left 0.3s ease;
  }
  
  .navbar.active {
    left: 0;
  }
  
  .nav-container {
    width: 100%;
    padding: 0;
  }
  
  .nav-menu {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0;
  }
  
  .nav-menu li {
    width: 100%;
    margin: 0;
  }
  
  .nav-menu > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
    white-space: normal;
    background-color: var(--bg-white);
  }
  
  .nav-menu > li > a:hover {
    background-color: var(--bg-light);
    color: var(--secondary-color);
  }
  
  .nav-menu > li > a .fa-chevron-down {
    font-family: 'Font Awesome 6 Free' !important;
    font-weight: 900 !important;
    font-size: 0.75rem;
    transition: transform 0.3s ease;
    color: #666;
  }
  
  .nav-menu > li > a .fa-chevron-down.rotate {
    transform: rotate(180deg);
  }
  
  /* 下拉菜单样式 */
  .dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    background-color: #f5f5f5;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
    border: none;
  }
  
  .dropdown-menu.show {
    display: flex;
    flex-direction: column;
  }
  
  .dropdown-menu li {
    width: 100%;
    margin: 0;
  }
  
  .dropdown-menu a {
    display: block;
    padding: 12px 35px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #555;
    border-bottom: 1px solid #e8e8e8;
    background-color: transparent;
    transition: all 0.2s ease;
  }
  
  .dropdown-menu a:hover {
    background-color: var(--bg-white);
    color: var(--secondary-color);
    padding-left: 40px;
  }
  
  /* 非下拉菜单链接样式 */
  .nav-menu > li:not(.dropdown) > a {
    justify-content: flex-start;
  }
  
  .nav-menu > li:not(.dropdown) > a:hover {
    background-color: var(--bg-light);
    color: var(--secondary-color);
  }
  
  /* 遮罩层 */
  .nav-overlay {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background-color: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  /* 移动端头部操作区域样式 */
  .mobile-actions {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .mobile-actions .cart-icon {
    font-size: 1.2rem;
  }
  
  .mobile-actions .user-login {
    font-size: 1.2rem;
  }
  
  .mobile-actions .user-text {
    display: none;
  }
  
  .hero {
    padding: 60px 0;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero-content {
    display: flex;
    flex-direction: column;
  }
  
  .hero-image {
    order: -1;
    margin-top: 30px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form button {
    width: 100%;
  }
  
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .testimonial-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-bottom-links {
    margin-top: 15px;
  }
  
  .search-container {
    display: none; /* 隐藏搜索框 */
  }
  
  .language-selector {
    display: none; /* 隐藏语言选择器 */
  }
  
  .social-links {
    display: none; /* 隐藏社交媒体链接 */
  }
  
  .user-actions {
    margin-left: 0;
  }
  
  .header-container {
    padding: 10px 15px;
    min-height: 60px;
  }
  
  .logo-container {
    padding: 0 10px;
  }
  
  .header-logo-img {
    max-width: 120px;
    max-height: 50px;
    height: auto;
  }
  
  /* 隐藏顶部导航栏，只显示汉堡菜单 */
  .navbar {
    display: none;
  }
  
  /* 移动端侧边栏菜单 */
  .mobile-nav-container {
    position: fixed;
    top: 60px;
    left: -300px;
    width: 300px;
    height: calc(100vh - 60px);
    background-color: #ffffff;
    box-shadow: 4px 0 20px rgba(0,0,0,0.15);
    z-index: 1000;
    overflow-y: auto;
    transition: left 0.3s ease;
    display: block;
  }
  
  .mobile-nav-container.active {
    left: 0;
  }
  
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  
  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  .nav-container {
    display: block;
    width: max-content;
    padding: 0 15px;
    margin: 0;
  }
  
  .nav-menu {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: auto;
    background-color: transparent;
    box-shadow: none;
    padding: 0;
    overflow: visible;
  }
  
  .nav-menu li {
    flex-shrink: 0;
    margin: 0;
    padding: 0;
  }
  
  .nav-menu a {
    display: block;
    padding: 8px 12px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-color);
    white-space: nowrap;
    /*border-bottom: 2px solid transparent;*/
    transition: var(--transition);
  }
  
  .nav-menu a:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
  }
  
  .nav-menu a::after {
    display: none;
  }
  
  .dropdown {
    position: static;
  }
  
  .dropdown-menu {
    position: fixed;
    top: auto;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    background-color: var(--bg-white);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 0;
    padding: 15px;
    z-index: 1000;
    display: none;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .dropdown.active .dropdown-menu {
    display: flex;
  }
  
  .dropdown-menu li {
    flex: 0 0 auto;
  }
  
  .dropdown-menu a {
    padding: 8px 15px;
    font-size: 0.9rem;
    /*border: 1px solid var(--border-color);
    border-radius: 20px;*/
    background-color: var(--bg-white);
  }
  
  .dropdown-menu a:hover {
    background-color: var(--bg-light);
    border-color: var(--secondary-color);
  }
  
  /* 移动端轮播图样式 */
  .carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  
  .carousel-slides {
    display: flex;
    transition: transform 0.5s ease;
  }
  
  .carousel-slide {
    min-width: 100%;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  .carousel-controls {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
  }
  
  .carousel-control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid white;
    cursor: pointer;
  }
  
  .carousel-control.active {
    background-color: var(--secondary-color);
  }
  
  .carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
  }
  
  .carousel-nav:hover {
    background-color: rgba(255, 255, 255, 1);
  }
  
  .carousel-prev {
    left: 10px;
  }
  
  .carousel-next {
    right: 10px;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
}

/* 移动端菜单样式 - 侧边栏模式 */
.mobile-nav-container {
  position: fixed;
  top: 60px;
  left: -300px;
  width: 300px;
  height: calc(100vh - 60px);
  background-color: #ffffff;
  box-shadow: 4px 0 20px rgba(0,0,0,0.15);
  z-index: 1000;
  overflow-y: auto;
  transition: left 0.3s ease;
}

.mobile-nav-container.active {
  left: 0;
}

.mobile-nav-container .nav-container {
  width: 100%;
  padding: 0;
}

.mobile-nav-container .nav-menu {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0;
  background-color: transparent;
  box-shadow: none;
  height: auto;
  overflow: visible;
}

.mobile-nav-container .nav-menu li {
  width: 100%;
  margin: 0;
  /*border-bottom: 1px solid #f0f0f0;*/
}

.mobile-nav-container .nav-menu > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  background-color: #ffffff;
  transition: all 0.2s ease;
}

.mobile-nav-container .nav-menu > li > a:hover {
  background-color: #f8f9fa;
  color: #ff4e9c;
}

.mobile-nav-container .nav-menu > li > a .fa-chevron-down {
  font-family: 'Font Awesome 6 Free' !important;
  font-weight: 900 !important;
  font-size: 0.8rem;
  transition: transform 0.3s ease;
  color: #999;
}

.mobile-nav-container .nav-menu > li > a .fa-chevron-down.rotate {
  transform: rotate(180deg);
}

.mobile-nav-container .dropdown-menu {
  position: static;
  display: none !important;
  width: 100%;
  background-color: #ffffff;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
  border: none;
}

.mobile-nav-container .dropdown-menu.show {
  display: flex !important;
  flex-direction: column;
}

.mobile-nav-container .dropdown-menu li {
  width: 100%;
  margin: 0;
  border-bottom: none;
}

.mobile-nav-container .dropdown-menu a {
  display: block;
  padding: 8px 35px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #555;
  background-color: transparent;
  transition: none;
}

.mobile-nav-container .nav-menu > li:not(.dropdown) > a {
  position: relative;
}

.mobile-nav-container .nav-menu > li:not(.dropdown) > a::after {
  content: '';
  position: absolute;
  right: 20px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #ccc;
  border-right: 2px solid #ccc;
  transform: rotate(45deg);
}

.mobile-nav-container .nav-menu > li:not(.dropdown) > a:hover::after {
  border-color: #ff4e9c;
}

.mobile-nav-container .mobile-actions {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 20px;
  border-top: 1px solid #f0f0f0;
  margin-top: 10px;
}

.mobile-nav-container .mobile-actions a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: #666;
  font-size: 0.8rem;
  transition: all 0.2s ease;
}

.mobile-nav-container .mobile-actions a:hover {
  color: #ff4e9c;
}

.mobile-nav-container .mobile-actions i {
  font-size: 1.4rem;
}

/* ========================================
   WATCH AND SHOP Section Styles
======================================== */
.watch-shop {
  padding: 60px 0;
  background-color: #fafafa;
  overflow: hidden;
}

.watch-shop .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.watch-shop .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.watch-shop .section-header p {
  font-size: 1.1rem;
  color: #666;
}

.watch-shop-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.watch-shop-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 20px 10px;
  width: 100%;
  max-width: 1400px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.watch-shop-scroll::-webkit-scrollbar {
  display: none;
}

.watch-shop-item {
  flex: 0 0 160px;
  scroll-snap-align: start;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.watch-shop-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.watch-shop-image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  cursor: pointer;
}

.watch-shop-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.watch-shop-item:hover .watch-shop-image img {
  transform: scale(1.05);
}

.watch-shop-overlay {
  position: absolute;
  top: 15px;
  left: 15px;
}

.watch-shop-tag {
  display: inline-block;
  padding: 6px 14px;
  background-color: #eed172;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.watch-shop-tag:nth-of-type(2) {
  background-color: #f39c12;
}

.watch-shop-tag:nth-of-type(3) {
  background-color: #9b59b6;
}

.watch-shop-tag:nth-of-type(4) {
  background-color: #1abc9c;
}

.watch-shop-tag:nth-of-type(5) {
  background-color: #3498db;
}

.watch-shop-content {
  display: none;
}

.watch-shop-btn {
  display: inline-block;
  padding: 10px 25px;
  background-color: #333;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 25px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.watch-shop-btn:hover {
  background-color: #eed172;
  transform: translateY(-2px);
}

.watch-shop-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background-color: #fff;
  border: none;
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #333;
  z-index: 10;
  transition: all 0.3s ease;
}

.watch-shop-nav:hover {
  background-color: #333;
  color: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.watch-shop-prev {
  left: 10px;
}

.watch-shop-next {
  right: 10px;
}

@media (max-width: 768px) {
  .watch-shop {
    padding: 40px 0;
  }
  
  .watch-shop .section-header h2 {
    font-size: 1.8rem;
  }
  
  .watch-shop .section-header p {
    font-size: 0.95rem;
  }
  
  .watch-shop-scroll {
    gap: 15px;
    padding: 15px 5px;
  }
  
  .watch-shop-item {
    flex: 0 0 140px;
  }
  
  .watch-shop-image {
    height: 220px;
  }
  
  .watch-shop-content {
    padding: 15px;
  }
  
  .watch-shop-content h3 {
    font-size: 1.05rem;
  }
  
  .watch-shop-content p {
    font-size: 0.85rem;
    margin-bottom: 12px;
  }
  
  .watch-shop-btn {
    padding: 8px 20px;
    font-size: 0.8rem;
  }
  
  .watch-shop-nav {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }
  
  .watch-shop-prev {
    left: 5px;
  }
  
  .watch-shop-next {
    right: 5px;
  }
}

@media (max-width: 480px) {
  .watch-shop {
    padding: 30px 0;
  }
  
  .watch-shop .section-header h2 {
    font-size: 1.5rem;
    margin-bottom: 8px;
  }
  
  .watch-shop-item {
    flex: 0 0 220px;
  }
  
  .watch-shop-image {
    height: 180px;
  }
  
  .watch-shop-content h3 {
    font-size: 0.95rem;
  }
  
  .watch-shop-content p {
    font-size: 0.8rem;
    margin-bottom: 10px;
  }
  
  .watch-shop-btn {
    padding: 7px 18px;
    font-size: 0.75rem;
  }
}

/* 关于我们页面样式 - 参考 global.tdancelashes.com 设计 */

/* 页面横幅 */
.page-banner {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.page-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.page-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.page-banner-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  padding-top: 150px;
}

.page-banner-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.page-banner-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  font-weight: 300;
}

/* 面包屑导航 */
.breadcrumb-section {
  background: #f8f8f8;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.breadcrumb-nav a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
  color: var(--primary-color);
}

.breadcrumb-separator {
  color: #ccc;
}

.breadcrumb-current {
  color: #333;
  font-weight: 500;
}

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

.about-main {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.about-image-block {
  flex: 0 0 500px;
  position: relative;
}

.about-image-block img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.about-image-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 15px 25px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 5px 20px rgba(250, 30, 156, 0.3);
}

.about-info-block {
  flex: 1;
}

.about-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  padding: 5px 15px;
  background: rgba(250, 30, 156, 0.1);
  border-radius: 3px;
}

.about-info-block h2 {
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 25px;
  font-weight: 600;
  line-height: 1.3;
}

.about-info-block p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 30px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #444;
}

.about-feature i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

/* 统计数据区域 */
.about-stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-box {
  text-align: center;
  color: white;
  padding: 30px 20px;
}

.stat-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.stat-icon i {
  font-size: 1.8rem;
  color: white;
}

.stat-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 700;
}

.stat-label {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* 核心价值观区域 */
.about-values-section {
  padding: 80px 0;
  background: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
}

.section-header p {
  font-size: 1.1rem;
  color: #666;
}

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

.value-card {
  text-align: center;
  padding: 40px 30px;
  background: #f8f8f8;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.value-icon i {
  font-size: 2rem;
  color: white;
}

.value-card h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
}

.value-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #666;
}

/* 品质保证区域 */
.about-quality-section {
  padding: 80px 0;
  background: #f8f8f8;
}

.quality-main {
  display: flex;
  gap: 60px;
  align-items: center;
}

.quality-info {
  flex: 1;
}

.quality-image {
  flex: 0 0 500px;
}

.quality-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.quality-points {
  margin-top: 30px;
}

.quality-point {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.quality-point i {
  font-size: 1.5rem;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-top: 3px;
}

.quality-point-text h4 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 5px;
  font-weight: 600;
}

.quality-point-text p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

/* 团队区域 */
.about-team-section {
  padding: 80px 0;
  background: #fff;
}

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

.team-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.team-image {
  height: 280px;
  overflow: hidden;
}

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

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

.team-info {
  padding: 25px;
  text-align: center;
}

.team-info h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 8px;
  font-weight: 600;
}

.team-position {
  font-size: 0.9rem;
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 10px;
}

.team-desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

/* 联系区域 */
.about-contact-section {
  padding: 80px 0;
  background: #f8f8f8;
}

.contact-main {
  display: flex;
  gap: 60px;
}

.contact-info {
  flex: 1;
}

.contact-info h2 {
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.1;
}

.contact-info > p {
  font-size: 1rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 30px;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-detail-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.contact-detail-item i {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail-item h4 {
  font-size: 1rem;
  color: #333;
  margin-bottom: 3px;
  font-weight: 600;
}

.contact-detail-item p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
}

.contact-social {
  display: flex;
  gap: 12px;
}

.contact-social .social-link {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.contact-social .social-link:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

.contact-form-block {
  flex: 1;
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

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

.contact-form .form-group {
  flex: 1;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #f8f8f8;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(250, 30, 156, 0.1);
}

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

.submit-btn {
  width: 100%;
  padding: 16px 30px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(250, 30, 156, 0.35);
}

/* 响应式设计 */
@media (max-width: 1200px) {
  .about-main,
  .quality-main {
    gap: 40px;
  }
  
  .about-image-block,
  .quality-image {
    flex: 0 0 420px;
  }
}

@media (max-width: 1024px) {
  .about-main,
  .quality-main,
  .contact-main {
    flex-direction: column;
    gap: 40px;
  }
  
  .about-image-block,
  .quality-image {
    flex: 1;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .about-image-badge {
    right: 20px;
  }
  
  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .values-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-banner {
    height: 300px;
  }
  
  .page-banner-content h1 {
    font-size: 2.5rem;
  }
  
  .page-banner-content p {
    font-size: 1rem;
  }
  
  .about-section,
  .about-values-section,
  .about-quality-section,
  .about-team-section,
  .about-contact-section {
    padding: 60px 0;
  }
  
  .about-info-block h2,
  .contact-info h2 {
    font-size: 1.8rem;
  }
  
  .about-features {
    grid-template-columns: 1fr;
  }
  
  .stat-box {
    padding: 20px 15px;
  }
  
  .stat-number {
    font-size: 2.2rem;
  }
  
  .values-grid,
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .contact-form .form-row {
    flex-direction: column;
    gap: 0;
  }
  
  .contact-form-block {
    padding: 30px;
  }
  
  .about-image-badge {
    position: relative;
    right: auto;
    left: 20px;
    bottom: -15px;
    display: inline-block;
  }
}

@media (max-width: 480px) {
  .page-banner {
    height: 250px;
  }
  
  .page-banner-content {
    padding-top: 100px;
  }
  
  .page-banner-content h1 {
    font-size: 2rem;
  }
  
  .about-section,
  .about-values-section,
  .about-quality-section,
  .about-team-section,
  .about-contact-section {
    padding: 50px 0;
  }
  
  .about-info-block h2,
  .section-header h2 {
    font-size: 1.6rem;
  }
  
  .about-stats-grid {
    grid-template-columns: 1fr;
  }
  
  .value-card,
  .team-card {
    margin-bottom: 20px;
  }
  
  .contact-form-block {
    padding: 25px 20px;
  }
}

@media (max-width: 1024px) {
  .about-content,
  .quality-content {
    flex-direction: column;
    gap: 40px;
  }

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

  .contact-content {
    flex-direction: column;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .page-hero-content h1 {
    font-size: 2.2rem;
  }

  .page-hero-content p {
    font-size: 1rem;
  }

  .about-intro,
  .about-mission,
  .about-quality,
  .about-team,
  .about-contact {
    padding: 50px 0;
  }

  .about-text h2,
  .quality-text h2 {
    font-size: 1.8rem;
  }

  .mission-grid,
  .team-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-form {
    padding: 30px;
  }
}

@media (max-width: 480px) {
  .page-hero {
    padding: 50px 0;
  }

  .page-hero-content h1 {
    font-size: 1.8rem;
  }

  .about-text h2,
  .quality-text h2,
  .team-content h2,
  .contact-info h2 {
    font-size: 1.5rem;
  }

  .mission-card {
    padding: 40px 20px;
  }

  .member-image {
    height: 200px;
  }
}

/* ========================================
   About Us Page Styles (au- prefixed)
   ======================================== */

/* Banner Section */
.au-page-banner {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.au-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.au-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.au-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.au-banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 3;
  color: white;
}

.au-banner-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.au-banner-content p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Breadcrumb */
.au-breadcrumb {
  background: #f8f9fa;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

.au-breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.au-breadcrumb a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.au-breadcrumb a:hover {
  color: var(--primary-color);
}

.au-breadcrumb span {
  color: #999;
}

/* Section Base */
.au-section {
  padding: 80px 0;
}

.au-section-story {
  background: #fff;
}

.au-section-stats {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 60px 0;
}

.au-section-values {
  background: #f9f9f9;
}

.au-section-quality {
  background: #fff;
}

.au-section-team {
  background: #f9f9f9;
}

.au-section-contact {
  background: #fff;
  padding-bottom: 100px;
}

/* Story Section */
.au-story-layout {
  display: flex;
  align-items: center;
  gap: 60px;
}

.au-story-image {
  flex: 0 0 450px;
  position: relative;
}

.au-story-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.au-image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary-color);
  color: white;
  padding: 20px 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.au-image-badge span {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.au-image-badge small {
  font-size: 0.8rem;
  opacity: 0.9;
}

.au-story-content {
  flex: 1;
}

.au-label {
  display: inline-block;
  color: var(--primary-color);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.au-story-content h2 {
  font-size: 2.4rem;
  color: #333;
  margin-bottom: 25px;
  font-weight: 600;
  line-height: 1.2;
}

.au-story-content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Stats Section */
.au-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.au-stat-card {
  text-align: center;
  color: white;
  padding: 30px 20px;
}

.au-stat-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.au-stat-icon i {
  font-size: 1.8rem;
  color: white;
}

.au-stat-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.au-stat-number {
  font-size: 2.8rem;
  font-weight: 700;
}

.au-stat-label {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Values Section */
.au-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.au-section-header h2 {
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
}

.au-section-header p {
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.au-value-card {
  background: white;
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.au-value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.au-value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.au-value-icon i {
  font-size: 2rem;
  color: white;
}

.au-value-card h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
}

.au-value-card p {
  color: #666;
  line-height: 1.7;
}

/* Quality Section */
.au-quality-layout {
  display: flex;
  align-items: center;
  gap: 60px;
}

.au-quality-content {
  flex: 1;
}

.au-quality-content h2 {
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 25px;
  font-weight: 600;
  line-height: 1.2;
}

.au-quality-content > p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
}

.au-quality-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.au-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.au-feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(230, 173, 50, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.au-feature-icon i {
  font-size: 1.3rem;
  color: var(--primary-color);
}

.au-feature-text h4 {
  font-size: 1rem;
  color: #333;
  margin-bottom: 5px;
  font-weight: 600;
}

.au-feature-text p {
  font-size: 0.9rem;
  color: #888;
  line-height: 1.5;
}

.au-quality-image {
  flex: 0 0 450px;
}

.au-quality-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Team Section */
.au-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.au-team-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.au-team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.member-image {
  height: 250px;
  overflow: hidden;
}

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

.au-team-card:hover .member-image img {
  transform: scale(1.1);
}

.au-team-card h3 {
  font-size: 1.2rem;
  color: #333;
  margin: 20px 0 5px;
  font-weight: 600;
}

.au-team-card .position {
  color: var(--primary-color);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding-bottom: 20px;
}

.team-social a {
  width: 35px;
  height: 35px;
  border: 1px solid #eee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  transition: all 0.3s ease;
}

.team-social a:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

/* Contact Section */
.au-contact-layout {
  display: flex;
  gap: 60px;
}

.au-contact-info {
  flex: 0 0 400px;
}

.au-contact-info h2 {
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 25px;
  font-weight: 600;
  line-height: 1.2;
}

.au-contact-info > p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(230, 173, 50, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 1.3rem;
  color: var(--primary-color);
}

.contact-text h4 {
  font-size: 1rem;
  color: #333;
  margin-bottom: 5px;
  font-weight: 600;
}

.contact-text p {
  color: #666;
  line-height: 1.5;
}

.contact-text a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-text a:hover {
  color: var(--primary-color);
}

.au-contact-form {
  flex: 1;
  background: #f9f9f9;
  padding: 40px;
  border-radius: 10px;
}

.au-contact-form h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 25px;
  font-weight: 600;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

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

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

.form-group label span {
  color: #eed172;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 0.95rem;
  color: #333;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(230, 173, 50, 0.1);
}

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

.submit-btn {
  width: 100%;
  padding: 16px 30px;
  background: var(--primary-color);
  border: none;
  border-radius: 5px;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

/* ========================================
   Product List Page Styles - Simple (pl- prefixed)
   ======================================== */

/* Section */
.pl-section {
  padding: 40px 0;
  background: #fff;
}

.pl-products-simple {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pl-product-item {
  text-align: center;
  cursor: pointer;
}

.pl-item-image {
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
  background: #f5f5f5;
}

.pl-item-image a {
  display: block;
  position: relative;
  padding-top: 100%;
}

.pl-item-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.pl-item-title {
  font-size: 16px;
  font-weight: 500;
  color: #222;
  margin-bottom: 6px;
  line-height: 1.4;
}

.pl-item-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.pl-item-title a:hover {
  color: var(--primary-color);
}

.pl-item-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 8px;
}

.pl-stars {
  color: var(--primary-color);
  font-size: 12px;
}

.pl-reviews {
  font-size: 15px;
  color: #999;
}

.pl-item-price {
  font-size: 15px;
  font-weight: 600;
  color: #222;
}

.pl-price-original {
  font-size: 13px;
  color: #999;
  text-decoration: line-through;
  margin-right: 8px;
}

.pl-price-sale {
  color: #eed172;
}

.pl-item-image {
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
  background: #f5f5f5;
}

.pl-item-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  border-radius: 3px;
  z-index: 2;
}

.pl-badge-sale {
  background: #eed172;
}

.pl-badge-hot {
  background: #f39c12;
}

.pl-badge-new {
  background: #27ae60;
}

.pl-results-count {
   text-align: left;
   font-size: 14px;
   color: #666;
   margin-bottom: 25px;
   padding-bottom: 20px;
   border-bottom: 1px solid #eee;
 }

.pl-pagination-simple {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.pl-page-simple {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 500;
  color: #666;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.pl-page-simple:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.pl-page-simple.active {
  color: #fff;
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.pl-page-dots {
  font-size: 14px;
  color: #999;
  padding: 0 5px;
}

.pl-page-next-simple {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #666;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.pl-page-next-simple:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Responsive - Product List Simple */
@media (max-width: 1400px) {
  .pl-products-simple {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
}

@media (max-width: 1200px) {
  .pl-products-simple {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }
}

@media (max-width: 1024px) {
  .pl-products-simple {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  
  .pl-section {
    padding: 30px 0;
  }
}

@media (max-width: 768px) {
  .pl-products-simple {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .pl-item-title {
    font-size: 13px;
  }
  
  .pl-item-price {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .pl-products-simple {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .pl-section {
    padding: 20px 0;
  }
  
  .pl-item-title {
    font-size: 12px;
    margin-bottom: 4px;
  }
  
  .pl-item-price {
    font-size: 13px;
  }
  
  .pl-item-badge {
    top: 8px;
    right: 8px;
    padding: 3px 8px;
    font-size: 10px;
  }
}

.pl-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pl-product-image {
  position: relative;
  overflow: hidden;
  background: #f8f8f8;
}

.pl-product-image > a {
  display: block;
  position: relative;
  padding-top: 125%;
  overflow: hidden;
}

.pl-product-image > a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pl-product-card:hover .pl-product-image > a img {
  transform: scale(1.08);
}

.pl-product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.pl-product-badge {
  background: var(--primary-color);
}

.pl-product-badge.HOT {
  background: #eed172;
}

.pl-product-badge.BEST {
  background: #27ae60;
}

.pl-product-actions {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  display: flex;
  gap: 8px;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 3;
}

.pl-product-card:hover .pl-product-actions {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.pl-action-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: white;
  color: #333;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.pl-action-btn:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

/* Product Info */
.pl-product-info {
  padding: 20px;
  text-align: center;
}

.pl-product-title {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.4;
}

.pl-product-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.pl-product-title a:hover {
  color: var(--primary-color);
}

.pl-product-colors {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 12px;
}

.pl-product-price {
  margin-bottom: 15px;
}

.pl-price-current {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
}

.pl-add-to-cart {
  width: 100%;
  padding: 12px 20px;
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.pl-add-to-cart:hover {
  background: var(--primary-color);
  color: white;
}

/* Pagination */
.pl-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #eee;
}

.pl-page-btn {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  background: white;
  color: #666;
  text-decoration: none;
  font-size: 0.95rem;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.pl-page-btn:hover:not(.active):not(.disabled) {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.pl-page-btn.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.pl-page-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pl-page-ellipsis {
  color: #999;
  padding: 0 5px;
}

/* Back to Top */
.pl-back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
  z-index: 1000;
}

.pl-back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.pl-back-to-top:hover {
  background: var(--secondary-color);
  transform: translateY(-5px);
}

/* ========================================
   Responsive Design - Product List Page
   ======================================== */

@media (max-width: 1400px) {
  .pl-products-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }
}

@media (max-width: 1200px) {
  .pl-products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
  
  .pl-banner-content h1 {
    font-size: 3rem;
  }
}

@media (max-width: 1024px) {
  .pl-products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .pl-page-banner {
    height: 350px;
  }
  
  .pl-banner-content h1 {
    font-size: 2.5rem;
  }
  
  .pl-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .pl-toolbar-right {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  .pl-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .pl-page-banner {
    height: 280px;
  }
  
  .pl-banner-content h1 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  .pl-banner-content p {
    font-size: 1rem;
  }
  
  .pl-sort-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .pl-sort-select {
    width: 100%;
  }
  
  .pl-action-btn {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  
  .pl-product-info {
    padding: 15px;
  }
  
  .pl-product-title {
    font-size: 0.9rem;
  }
  
  .pl-pagination {
    margin-top: 40px;
    gap: 5px;
  }
  
  .pl-page-btn {
    width: 38px;
    height: 38px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .pl-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .pl-page-banner {
    height: 220px;
  }
  
  .pl-banner-content h1 {
    font-size: 1.6rem;
  }
  
  .pl-results-count {
    font-size: 0.85rem;
  }
  
  .pl-product-badge {
    top: 10px;
    left: 10px;
    padding: 4px 8px;
    font-size: 0.7rem;
  }
  
  .pl-product-actions {
    bottom: 10px;
  }
  
  .pl-action-btn {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }
  
  .pl-add-to-cart {
    padding: 10px 15px;
    font-size: 0.8rem;
  }
  
  .pl-back-to-top {
    width: 42px;
    height: 42px;
    bottom: 20px;
    right: 20px;
    font-size: 1rem;
  }
}

/* Banner Section */
.au-page-banner {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.au-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.au-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.au-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(231, 197, 96, 0.7) 0%, rgba(241, 221, 162, 0.3) 100%);
  z-index: 2;
}

.au-banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 3;
}

.au-banner-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.2);
}

.au-banner-content p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Breadcrumb */
.au-breadcrumb {
  background: #f8f9fa;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

.au-breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.au-breadcrumb a {
  color: #666;
}

.au-breadcrumb a:hover {
  color: var(--primary-color);
}

.au-breadcrumb span {
  color: #999;
}

/* Section Base */
.au-section {
  padding: 80px 0;
}

.au-section-story {
  background: #fff;
}

.au-section-stats {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.au-section-values {
  background: #fff;
}

.au-section-quality {
  background: #f8f8f8;
}

.au-section-team {
  background: #fff;
}

.au-section-contact {
  background: #f8f8f8;
}

/* Story Section */
.au-story-layout {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.au-story-image {
  flex: 0 0 450px;
  position: relative;
}

.au-story-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.au-image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 20px 30px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 10px 30px rgba(250, 30, 156, 0.3);
}

.au-story-content {
  flex: 1;
}

.au-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  padding: 5px 15px;
  background: rgba(250, 30, 156, 0.1);
  border-radius: 3px;
}

.au-story-content h2 {
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 25px;
  font-weight: 600;
  line-height: 1.3;
}

.au-story-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.au-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 30px;
}

.au-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #444;
}

.au-feature i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

/* Stats Section */
.au-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.au-stat-box {
  text-align: center;
  color: white;
  padding: 30px 20px;
}

.au-stat-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.au-stat-icon i {
  font-size: 1.8rem;
  color: white;
}

.au-stat-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.au-stat-number {
  font-size: 2.8rem;
  font-weight: 700;
}

.au-stat-label {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Values Section */
.au-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.au-section-header h2 {
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
}

.au-section-header p {
  font-size: 1.1rem;
  color: #666;
}

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

.au-value-card {
  text-align: center;
  padding: 40px 30px;
  background: #f8f8f8;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.au-value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.au-value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.au-value-icon i {
  font-size: 2rem;
  color: white;
}

.au-value-card h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
}

.au-value-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #666;
}

/* Quality Section */
.au-quality-layout {
  display: flex;
  gap: 60px;
  align-items: center;
}

.au-quality-info {
  flex: 1;
}

.au-quality-info h2 {
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 25px;
  font-weight: 600;
}

.au-quality-info p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
}

.au-quality-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.au-quality-point {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.au-quality-point i {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-top: 3px;
}

.au-quality-text h4 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 5px;
  font-weight: 600;
}

.au-quality-text p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
}

.au-quality-image {
  flex: 0 0 450px;
}

.au-quality-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Team Section */
.au-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.au-team-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.au-team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.au-team-image {
  height: 250px;
  overflow: hidden;
}

.au-team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

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

.au-team-info {
  padding: 25px;
  text-align: center;
}

.au-team-info h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 8px;
  font-weight: 600;
}

.au-team-position {
  color: var(--primary-color);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.au-team-desc {
  font-size: 0.9rem;
  color: #666;
}

/* Contact Section */
.au-contact-layout {
  display: flex;
  gap: 60px;
}

.au-contact-info {
  flex: 1;
}

.au-contact-info h2 {
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: 600;
}

.au-contact-info > p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 30px;
}

.au-contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.au-contact-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.au-contact-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-top: 3px;
}

.au-contact-item h4 {
  font-size: 1rem;
  color: #333;
  margin-bottom: 3px;
  font-weight: 600;
}

.au-contact-item p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
}

.au-contact-social {
  display: flex;
  gap: 12px;
}

.au-contact-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  transition: all 0.3s ease;
}

.au-contact-social a:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

.au-contact-form {
  flex: 1;
  background: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.au-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.au-contact-form input[type="text"],
.au-contact-form input[type="email"],
.au-contact-form textarea {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.au-contact-form input:focus,
.au-contact-form textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(250, 30, 156, 0.1);
}

.au-contact-form textarea {
  resize: vertical;
  margin-bottom: 20px;
}

.au-submit-btn {
  width: 100%;
  padding: 16px 30px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.au-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(250, 30, 156, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .au-story-layout,
  .au-quality-layout,
  .au-contact-layout {
    gap: 40px;
  }

  .au-story-image {
    flex: 0 0 380px;
  }

  .au-quality-image {
    flex: 0 0 380px;
  }

  .au-stats-grid {
    gap: 20px;
  }

  .au-stat-number {
    font-size: 2.4rem;
  }
}

@media (max-width: 1024px) {
  .au-section {
    padding: 60px 0;
  }

  .au-banner-content h1 {
    font-size: 2.8rem;
  }

  .au-story-layout,
  .au-quality-layout,
  .au-contact-layout {
    flex-direction: column;
  }

  .au-story-image,
  .au-quality-image {
    flex: 0 0 auto;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .au-story-content,
  .au-quality-info,
  .au-contact-info,
  .au-contact-form {
    width: 100%;
  }

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

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

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

@media (max-width: 768px) {
  .au-page-banner {
    height: 300px;
  }

  .au-banner-content h1 {
    font-size: 2.2rem;
  }

  .au-banner-content p {
    font-size: 1rem;
  }

  .au-section {
    padding: 50px 0;
  }

  .au-section-header h2 {
    font-size: 1.8rem;
  }

  .au-story-content h2,
  .au-quality-info h2,
  .au-contact-info h2 {
    font-size: 1.8rem;
  }

  .au-values-grid,
  .au-team-grid {
    grid-template-columns: 1fr;
  }

  .au-contact-layout {
    flex-direction: column;
  }

  .au-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .au-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .au-page-banner {
    height: 250px;
  }

  .au-banner-content h1 {
    font-size: 1.8rem;
  }

  .au-section {
    padding: 40px 0;
  }

  .au-image-badge {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 15px;
    display: inline-block;
  }

  .au-stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .au-stat-box {
    padding: 20px;
  }

  .au-stat-number {
    font-size: 2rem;
  }

  .au-contact-form {
    padding: 25px;
  }

  .au-value-card,
  .au-team-card {
    margin-bottom: 20px;
  }
}

/* Bundle & Save More Module Styles */
.bundle-save-more {
  border-radius: 8px;
  width: 100%;
    height: 100%;
    clear: both;
    text-align: left;
    margin: 20px auto;
    background-color: rgb(242, 255, 201);
    padding: 20px;
    max-width: 1420px;
}

.bundle-save-more h2 {
  text-align: left;
    font-size: 1.6rem;
    color: rgb(91, 75, 60);
    font-weight: 400;
    margin-bottom: 1rem;
}

/* 图片展示区域样式 */
.bundle-images-container {
  margin-bottom: 20px;
  padding: 15px;
  background-color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bundle-images {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.bundle-image-item {
  display: inline-block;
  width: 140px;
  height: 140px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
}

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

.bundle-image-plus {
  display: inline-block;
  user-select: none;
    font-size: 1.8rem;
    font-weight: 200;
    font-family: monospace;
    height: 140px;
    width: 19px;
    line-height: 140px;
    color: rgb(0, 0, 0);
    text-shadow: rgb(255 255 255 / 40%) -1px 0px, rgb(255 255 255 / 40%) 0px 1px, rgb(255 255 255 / 40%) 1px 0px, rgb(255 255 255 / 40%) 0px -1px;
    text-align: center;
    transition: opacity 800ms ease 0s;
    opacity: 1;

}

.bundle-options {
  margin-bottom: 20px;
}

.bundle-option {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 5px;
  margin-bottom: 5px;
  transition: all 0.3s ease;
}

.bundle-attributes {
  display: flex;
  gap: 15px;
  width: auto;
  flex-wrap: nowrap;
}

.bundle-attribute {
  display: flex;
  align-items: center;
  gap: 5px;
}

.bundle-attribute label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #333;
}

.bundle-select {
  padding: 10px 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.8rem;
  background-color: var(--colorBtnPrimary);
  color: var(--colorBtnPrimaryText);
  cursor: pointer;
  outline: none;
}

.bundle-select option {
  background-color: white;
  color: #333;
}

.bundle-option:hover {
  border-color: #ff6b6b;
  background-color: #fff5f5;
}

.bundle-option input:checked + label {
  border-color: #ff6b6b;
  background-color: #ff6b6b;
}

.bundle-checkbox {
  margin-right: 15px;
}

.bundle-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}

.bundle-checkbox label {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1px solid #999;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.bundle-checkbox input:checked + label::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 16px;
  font-weight: bold;
}

.bundle-option.disabled {
  opacity: 0.5;
  filter: grayscale(30%);
  transition: all 0.3s ease;
}

.bundle-total.disabled {
  opacity: 0.5;
  transition: all 0.3s ease;
}

.bundle-total.disabled .bundle-add-to-cart {
  cursor: not-allowed;
  border-color: #cccccc;
}

.bundle-info {
  flex: 1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.bundle-title {
  margin-bottom: 0;
  display: inline; color: rgb(0, 0, 0); 
  font-size: 1em; 
  line-height: 1em;
}

.bundle-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ff6b6b;
  margin-bottom: 0;
}

.bundle-original {
  font-size: 0.9rem;
  color: #999;
  text-decoration: line-through;
  margin-left: 8px;
}

.bundle-discount {
  font-size: 0.8rem;
  color: #27ae60;
  font-weight: 600;
  margin-bottom: 0;
}

.bundle-total {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-weight: 700;
}

.bundle-total-label {
  font-size: 1.1rem;
  color: #333;
}

.bundle-total-price {
  font-size: 1.3rem;
  color: #ff6b6b;
  margin-left: 10px;
}

.bundle-add-to-cart {
  font-family: system_ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none solid rgb(3, 3, 3);
    text-align: center;
    vertical-align: middle;
    max-height: 70px;
    letter-spacing: 3.9px;
    white-space: normal;
    line-height: normal;
   color: var(--colorBtnPrimaryText);
    background: none 0% 0% / auto repeat scroll padding-box border-box rgb(255, 26, 149);
    box-shadow: none;
    border-width: 1px;
    border-radius: 0px;
    border-color: rgb(3, 3, 3);
    padding: 13px 20px;
    position: relative;
    display: inline-block;
    width: auto;
    margin-top: 0px;
    margin-left: 0px;
    cursor: pointer;
    border-style: solid;
    opacity: 1;
    transition: opacity 500ms ease 0s;
}

.bundle-add-to-cart:hover {
  background-color: #ff5252;
}

/* Responsive Bundle Styles */
@media (max-width: 768px) {
  .bundle-save-more {
    padding: 15px;
  }
  
  .bundle-save-more h2 {
    font-size: 1.3rem;
  }
  
  /* 移动端图片展示样式 */
  .bundle-images-container {
    padding: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    flex-direction: column;
    gap: 15px;
  }
  
  .bundle-images {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 15px;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 10px;
  }
  
  .bundle-image-item {
    width: 150px;
    height: 150px;
    flex-shrink: 0;
  }
  
  .bundle-image-plus {
    font-size: 1.8rem;
    width: 30px;
    height: 150px;
    flex-shrink: 0;
    line-height: 150px;
  }
  
  .bundle-total {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  
  .bundle-total-info {
    margin-bottom: 5px;
    width: 100%;
  }
  
  .bundle-add-to-cart {
    width: auto;
    margin-top: 0;
  }
  
  /* 产品标题一行显示 */
  .bundle-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    display: inline-block;
    vertical-align: middle;
  }
  
  /* 产品信息容器布局 */
  .bundle-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2px;
    width: 100%;
  }
  
  /* 标题一行显示并居左，独占一行 */
  .bundle-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    display: block;
    margin-bottom: 1px;
    text-align: left;
    width: 100%;
  }
  
  /* 属性、价格和折扣一行显示 */
  .bundle-attributes,
  .bundle-price,
  .bundle-discount {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
  }
  

  
  .bundle-attributes {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    overflow-x: auto;
    margin: 0;
  }
  
  .bundle-attribute {
    min-width: 120px;
  }
  
  .bundle-select {
    width: 100%;
  }
  
  .bundle-price {
    flex-shrink: 0;
    margin: 0;
  }
  
  .bundle-option {
    padding: 8px 12px;
  }
  
  .bundle-price {
    font-size: 1.1rem;
  }
  
  .bundle-total {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .bundle-add-to-cart {
    width: auto;
    text-align: left;
  }
}