/* ==================== 全局基础样式 ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roobert PRO', 'RoobertPRO', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #1E2426;
  background: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 24px;
}

/* 字体兜底（如本地无 Roobert） */
@font-face {
  font-family: 'Roobert PRO';
  src: local('RoobertPRO-Regular'), local('Roobert PRO');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Roobert PRO';
  src: local('RoobertPRO-Medium'), local('Roobert PRO');
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'Roobert PRO';
  src: local('RoobertPRO-SemiBold'), local('Roobert PRO');
  font-weight: 600;
  font-display: swap;
}

/* ==================== 顶部公告条 ==================== */
.top-bar {
  background: #ad9882;
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 16px;
  letter-spacing: 0.02em;
}

/* ==================== 导航栏 ==================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  transition: box-shadow 0.25s ease;
  position: relative;
}

.navbar.scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.navbar-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  /* max-width: 1600px; */
  margin: 0 auto;
  padding: 0 24px;
}

.navbar-logo img {
  height: 26px;
  width: auto;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar-menu>li {}

.navbar-menu>li.has-mega-menu {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-menu>li.has-mega-menu::after {
  content: '';
  transform: translateX(-50%) rotate(135deg);
  width: 6px;
  height: 6px;
  border-right: 2px solid #000;
  border-top: 2px solid #000;
  object-position: center;
}

.navbar-menu>li.has-mega-menu:hover::after {
  transform: translateX(-50%) rotate(-45deg);
}

.navbar-menu>li>a {
  font-size: 16px;
  font-weight: 500;
  padding: 24px 0;
  display: block;
  transition: opacity 0.2s;
}

.navbar-menu>li>a:hover {
  opacity: 0.6;
}

/* 下拉菜单 */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  padding: 16px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s ease;
}

.navbar-menu>li:hover .dropdown,
.dropdown.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.dropdown li a {
  display: block;
  padding: 10px 24px;
  font-size: 14px;
  color: #1E2426;
  transition: background 0.2s;
}

.dropdown li a:hover {
  background: #f7f7f7;
}

/* Mega menu dropdown */
.dropdown.mega-menu {
  min-width: auto;
  width: 100%;
  padding: 32px;
  text-align: left;
}

.mega-menu-inner {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 40px;
}

.mega-menu-links {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  padding-right: 400px;
}

.mega-menu-column h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #1E2426;
  letter-spacing: 0.5px;
}

.mega-menu-column h4 a {
  color: inherit;
  text-decoration: none;
  display: inline-block;
}

.mega-menu-column h4 a:hover {
  color: inherit;
  background: none;
}

.mega-menu-column ul {
  list-style: none;
}

.mega-menu-column li a {
  display: block;
  padding: 5px 0;
  font-size: 13px;
  color: #555;
  transition: color 0.2s;
  white-space: nowrap;
}

.mega-menu-column li a:hover {
  color: #1E2426;
  background: none;
}

.mega-menu-preview {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mega-menu-preview img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.mega-menu-preview-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #1E2426;
}

@media (max-width: 1100px) {
  .dropdown.mega-menu {
    width: 940px;
  }

  .mega-menu-links {
    gap: 16px;
  }
}

@media (max-width: 991px) {
  .dropdown.mega-menu {
    display: none;
  }
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.navbar-actions-item {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.2s;
}

.navbar-actions-item:hover {
  opacity: 0.6;
}

.navbar-actions-item img {
  width: 22px;
  height: 22px;
}

.search-box {
  display: flex;
  align-items: center;
  background: #f5f5f5;
  border-radius: 24px;
  padding: 8px 16px;
  width: 220px;
  transition: width 0.25s ease;
}

.search-box:focus-within {
  width: 280px;
}

.search-box img {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  opacity: 0.5;
}

.search-box input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 14px;
  width: 100%;
  color: #1E2426;
}

.navbar-actions-menu {
  display: none;
}

/* ==================== 移动端菜单 ==================== */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 110;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 360px;
  max-width: 85vw;
  height: 100vh;
  background: #fff;
  z-index: 120;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 80px 24px 32px;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 24px;
  line-height: 1;
}

.mobile-menu-panels {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.mobile-menu-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding-right: 4px;
}

.mobile-menu-panel.active {
  transform: translateX(0);
}

.mobile-menu-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid #f0f0f0;
  color: #1E2426;
  text-decoration: none;
}

.mobile-menu-link.has-children::after {
  content: '›';
  font-size: 20px;
  color: #1E2426;
}

.mobile-menu-back {
  padding: 0 0 16px;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 16px;
}

.mobile-menu-back-btn {
  background: none;
  border: none;
  padding: 0;
  font-size: 14px;
  color: #666;
  cursor: pointer;
}

.mobile-menu-panel-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #1E2426;
}

.mobile-accordion-item {
  border-bottom: 1px solid #f0f0f0;
}

.mobile-accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  color: #1E2426;
  cursor: pointer;
  text-align: left;
}

.mobile-accordion-icon {
  width: 12px;
  height: 12px;
  position: relative;
  flex-shrink: 0;
}

.mobile-accordion-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid #1E2426;
  border-bottom: 1.5px solid #1E2426;
  transform: translate(-50%, -70%) rotate(45deg);
  transition: transform 0.25s ease;
}

.mobile-accordion-item.open .mobile-accordion-icon::before {
  transform: translate(-50%, -30%) rotate(-135deg);
}

.mobile-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 0 0 12px;
}

.mobile-accordion-item.open .mobile-accordion-content {
  max-height: 600px;
  padding: 0 0 16px 12px;
}

.mobile-accordion-content a {
  display: block;
  padding: 8px 0;
  font-size: 14px;
  color: #666;
  text-decoration: none;
}

/* 兼容旧版移动端菜单结构 */
.mobile-menu>a {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid #f0f0f0;
  color: #1E2426;
  text-decoration: none;
}

.mobile-submenu {
  padding-left: 16px;
  display: none;
}

.mobile-submenu.open {
  display: block;
}

.mobile-submenu a {
  display: block;
  font-size: 14px;
  color: #666;
  padding: 10px 0;
  border-bottom: none;
  text-decoration: none;
}

/* ==================== 按钮 ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 45px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.2s ease;
}

.btn-primary {
  background: #1E2426;
  color: #fff;
  border: 1px solid #1E2426;
}

.btn-primary:hover:not(:disabled) {
  background: #fff;
  color: #1E2426;
}

.btn-primary:disabled,
.add-to-cart:disabled,
.single_add_to_cart_button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-outline {
  background: #fff;
  color: #1E2426;
  border: 1px solid #1E2426;
}

.btn-outline:hover {
  background: #1E2426;
  color: #fff;
}

.btn-block {
  width: 100%;
}

/* ==================== Hero 轮播 ==================== */
.hero-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-banner .swiper-slide picture,
.hero-banner .swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.hero-banner .hero-slide-link {
  display: block;
  line-height: 0;
}

.hero-banner .swiper-pagination {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 10;
}

.hero-banner .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: background 0.2s;
}

.hero-banner .swiper-pagination-bullet-active {
  background: #fff;
}

.hero-banner .swiper-button-prev,
.hero-banner .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
  transition: background 0.2s;
}

.hero-banner .swiper-button-prev:hover,
.hero-banner .swiper-button-next:hover {
  background: #fff;
}

.hero-banner .swiper-button-prev {
  left: 24px;
}

.hero-banner .swiper-button-next {
  right: 24px;
}

.hero-banner .swiper-button-prev:after,
.hero-banner .swiper-button-next:after {
  font-size: 18px;
  color: #1E2426;
  font-weight: bold;
}

.hero-banner .swiper-button-prev:after {
  content: '‹';
}

.hero-banner .swiper-button-next:after {
  content: '›';
}

.hero-banner .banner-content {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 5;
}

/* ==================== 全宽横幅 ==================== */
.full-banner {
  position: relative;
  width: 100%;
  margin-top: 0;
}

.full-banner img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.full-banner .banner-btn {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

/* ==================== 区块标题 ==================== */
.section-title {
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
  color: #1E2426;
}

.section-subtitle {
  font-size: 16px;
  color: #666;
  text-align: center;
  margin-top: -28px;
  margin-bottom: 40px;
}

/* ==================== 产品网格 ==================== */
.product-section {
  padding: 80px 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 991px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .product-grid {
    gap: 12px;
    grid-template-columns: repeat(1, 1fr);
  }

  .section-title {
    font-size: 24px;
  }
}

/* ==================== 产品卡片 ==================== */
.product-card {
  position: relative;
  cursor: pointer;
}

.product-card .image-box {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #f7f7f7;
  aspect-ratio: 2 / 2.5;
}

.product-card .image-box img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.4s ease;
}

.product-card .image-box img.hover-img {
  opacity: 0;
}

.product-card:hover .image-box img.main-img {
  opacity: 0;
}

.product-card:hover .image-box img.hover-img {
  opacity: 1;
}

.product-card-wrap {
  position: relative;
}

.product-card-wrap .like-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s, background 0.2s;
  cursor: pointer;
}

.product-card-wrap .like-btn:hover {
  transform: scale(1.1);
  background: #fff;
}

.product-card-wrap .like-btn.inited-add-wishlist,
.product-card-wrap .like-btn.tinvwl-product-added {
  background: #fff;
}

.product-card-wrap .like-btn.inited-add-wishlist img,
.product-card-wrap .like-btn.tinvwl-product-added img {
  filter: invert(31%) sepia(100%) saturate(7465%) hue-rotate(353deg) brightness(95%) contrast(92%);
}

.product-card-wrap .like-btn img {
  width: 25px;
  height: 25px;
  pointer-events: none;
}

.product-card .quick-size {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.75);
  padding: 12px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 5;
  backdrop-filter: blur(10px);
}

.product-card:hover .quick-size {
  transform: translateY(0);
}

.product-card .quick-size-title {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
  text-align: center;
}

.product-card .size-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.product-card .size-list span {
  min-width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.2s;
}

.product-card .size-list span:hover {
  border-color: #1E2426;
  background: #1E2426;
  color: #fff;
}

.product-card .size-list span.disabled {
  opacity: 0.4;
  text-decoration: line-through;
  pointer-events: none;
}

.product-card .discount-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #E9423A;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 20px;
  z-index: 5;
}

.product-card .colors {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.product-card .color-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  cursor: pointer;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}

.product-card .color-dot:hover {
  transform: scale(1.15);
}

.product-card .color-dot.active:after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1px solid #1E2426;
  border-radius: 50%;
}

.product-card .product-title {
  font-size: 16px;
  font-weight: 600;
  margin-top: 12px;
  color: #1E2426;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-card .color-label {
  font-size: 14px;
  color: #666;
  margin-top: 2px;
}

.product-card .price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  font-size: 16px;
  font-weight: 600;
}

.product-card .price .compare {
  text-decoration: line-through;
  color: #999;
  font-weight: 400;
}

/* ==================== 分类页 ==================== */
.page-header {
  padding: 20px 0 10px;
}

.page-header:nth-child(2) {
  padding: 0;
}

.page-header:nth-child(3) {
  padding: 50px 0 30px;
}

.page-header .container {
  max-width: 1400px;
}

.single-product .page-header .container {
  max-width: 1600px;
}

.category-nav-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.category-nav-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  text-decoration: none;
  color: #1E2426;
}

.category-nav-media {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 12px;
  background: #f5f5f5;
}

.category-nav-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.category-nav-card:hover img {
  transform: scale(1.05);
}

.category-nav-title {
  font-size: 24px;
  font-weight: 500;
}

@media (max-width: 991px) {
  .category-nav-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .category-nav-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .category-nav-title {
    font-size: 14px;
  }
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
  font-weight: 600;
}

.breadcrumb a:hover {
  color: #1E2426;
}

.page-title {
  font-size: 36px;
  font-weight: 600;
  color: #1E2426;
  text-align: center;
}

.page-subtitle {
  font-size: 15px;
  color: #666;
  margin-top: 10px;
  text-align: center;
}

.divider {
  height: 1px;
  background: rgba(30, 36, 38, 0.1);
  margin: 24px 0;
}

/* 分类页布局 */
.category-layout .container {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  padding-bottom: 80px;
  max-width: 1400px;
}

@media (max-width: 991px) {
  .category-layout .container {
    grid-template-columns: 1fr;
  }
}

/* 筛选器 */
.filter-sidebar {
  position: sticky;
  top: 90px;
  height: fit-content;
}

.filter-sidebar-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

.filter-clear {
  font-size: 14px;
  color: #222;
  text-decoration: underline;
}

.filter-group {
  border-bottom: 1px solid #eee;
  padding: 16px 0;
}

.filter-group-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  display: none;
}

.filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-options a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.2s;
  font-weight: 600;
}

.filter-options a:hover,
.filter-options a.active {
  background: #1E2426;
  color: #fff;
  border-color: #1E2426;
}

/* Filter accordion with checkboxes */
.filter-group-accordion .filter-group-title {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #1E2426;
  text-align: left;
}

.filter-group-toggle {
  width: 12px;
  height: 12px;
  position: relative;
  flex-shrink: 0;
}

.filter-group-toggle::before,
.filter-group-toggle::after {
  content: '';
  position: absolute;
  background: #1E2426;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.filter-group-toggle::before {
  width: 10px;
  height: 1.5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.filter-group-toggle::after {
  width: 1.5px;
  height: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.filter-group-accordion.open .filter-group-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.filter-group-accordion .filter-options {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, margin 0.3s ease;
  margin-top: 0;
}

.filter-group-accordion.open .filter-options {
  max-height: 500px;
  margin-top: 12px;
}

.filter-options-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.filter-options-checkboxes.color-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  cursor: pointer;
  font-size: 14px;
  color: #222;
  font-weight: 500;
}

.filter-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border: 1px solid #ccc;
  border-radius: 4px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  margin: 0;
}

.filter-checkbox input[type="checkbox"]:checked {
  background: #1E2426;
  border-color: #1E2426;
}

.filter-checkbox input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.color-swatch {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.checkbox-label {
  line-height: 1.4;
}

.filter-options-tags {
  gap: 8px;
}

.filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid #1E2426;
  background: #1E2426;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}

.filter-tag .remove {
  font-size: 14px;
  line-height: 1;
}

.filter-checkbox.active .checkbox-label {
  font-weight: 700;
}

.filter-checkbox.color-checkbox {
  padding: 8px 12px;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  gap: 10px;
  transition: all 0.2s;
  background: #fff;
}

.filter-checkbox.color-checkbox:hover {
  border-color: #d0d0d0;
  background: #fafafa;
}

.filter-checkbox.color-checkbox.active {
  border-color: #1E2426;
  background: #f5f5f5;
}

.filter-checkbox.color-checkbox.active .checkbox-label {
  font-weight: 700;
}

.filter-checkbox.color-checkbox.active .color-swatch {
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px #1E2426;
}

@media (max-width: 991px) {
  .filter-group-accordion .filter-options {
    max-height: none;
  }
}

.filter-mobile-bar {
  display: none;
  margin-bottom: 20px;
}

.filter-mobile-bar .filter-options {
  gap: 10px;
}

.filter-mobile-bar .filter-options a {
  padding: 10px 20px;
  font-size: 14px;
}

/* 结果统计 */
.results-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 14px;
  color: #666;
}

.results-bar .orderby {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 0 center;
  padding: 4px 16px 4px 4px;
  font-size: 14px;
  color: #666;
  cursor: pointer;
  outline: none;
}

.results-bar .orderby option {
  font-size: 14px;
  color: #1E2426;
}

.results-bar .results-bar-sort {
  margin-left: auto;
}

/* ==================== 商品详情页 ==================== */
.product-detail-layout .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 0 24px 60px;
  border-bottom: 1px solid #ddd;
}

@media (max-width: 991px) {
  .product-detail-layout .container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* 详情图库 */
.product-gallery {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  align-items: start;
}

@media (max-width: 768px) {
  .product-gallery {
    grid-template-columns: 1fr;
  }

  .product-gallery .thumbs {
    display: none;
  }
}

.thumbs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.thumbs img {
  width: 80px;
  height: 110px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}

.thumbs img.active,
.thumbs img:hover {
  border-color: #1E2426;
}

.main-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #f7f7f7;
  aspect-ratio: 3 / 4;
  cursor: crosshair;
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.main-image .zoom-lens {
  position: absolute;
  width: 120px;
  height: 160px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.2);
  pointer-events: none;
  display: none;
  border-radius: 4px;
}

/* 商品信息 */
.product-info .product-name {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 12px;
}

.product-info .product-price {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
}

.product-info .product-price .compare {
  font-size: 16px;
  color: #999;
  text-decoration: line-through;
  font-weight: 400;
}

.product-info .product-price .discount-tag {
  background: #E9423A;
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
}

.product-info .product-meta {
  font-size: 14px;
  color: #666;
  margin-bottom: 24px;
}

.option-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1E2426;
}

.color-options {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;

}

.color-options .color-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #ddd;
  cursor: pointer;
  position: relative;
  transition: transform 0.2s;
}

.color-options .color-dot:hover {
  transform: scale(1.1);
}

.color-options .color-dot.active:after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 2px solid #1E2426;
  border-radius: 50%;
}

.size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.size-options .size-btn {
  min-width: 56px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.2s;
  padding: 0 15px;
}

.size-options .size-btn:hover {
  border-color: #1E2426;
}

.size-options .size-btn.active {
  background: #1E2426;
  color: #fff;
  border-color: #1E2426;
}

.size-options .size-btn.disabled {
  opacity: 0.4;
  text-decoration: line-through;
  pointer-events: none;
}

.product-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.product-actions .quantity {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 50px;
  overflow: hidden;
}

.product-actions .quantity button {
  width: 44px;
  height: 48px;
  font-size: 18px;
  color: #1E2426;
  transition: background 0.2s;
}

.product-actions .quantity button:hover {
  background: #f5f5f5;
}

.product-actions .quantity input {
  width: 50px;
  text-align: center;
  border: none;
  outline: none;
  font-size: 14px;
  font-weight: 600;
}

.product-actions .add-to-cart {
  flex: 1;
}

.product-info .shipping-note {
  font-size: 13px;
  color: #666;
  margin-bottom: 32px;
  padding: 12px 16px;
  background: #f9f9f9;
  border-radius: 8px;
}

.product-tabs {
  border-top: 1px solid #eee;
}

.tab-header {
  display: flex;
  border-bottom: 1px solid #eee;
}

.tab-header button {
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 600;
  color: #666;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}

.tab-header button.active,
.tab-header button:hover {
  color: #1E2426;
  border-bottom-color: #1E2426;
}

.tab-content {
  padding: 24px 0;
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

.tab-content p+p {
  margin-top: 12px;
}

/* ==================== Product Detail V2 (参考图布局) ==================== */
.product-detail-v2 .container {
  grid-template-columns: 1fr 0.5fr;
  gap: 80px;
  align-items: start;
  border-bottom: 1px solid #ddd;
}

.product-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.product-gallery-grid .gallery-item {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  background: #f7f7f7;
  overflow: hidden;
}

.product-gallery-grid img,
.product-gallery-grid video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.product-info-sticky {
  position: sticky;
  top: 100px;
}

.product-info .product-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 16px;
}

.product-info .product-rating .stars {
  color: #ddd;
  letter-spacing: 1px;
}

.product-info .product-rating .stars .full {
  color: #ff8c27;
}

.product-info .product-rating .stars .empty {
  color: #ddd;
}

.product-info .product-rating .reviews {
  color: #666;
  text-decoration: underline;
  cursor: pointer;
}

.product-info .product-price {
  margin-bottom: 20px;
}

.purchase-type {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.purchase-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
}

.purchase-option:hover,
.purchase-option.active {
  border-color: #1E2426;
  background: #fafafa;
}

.purchase-option input {
  width: 18px;
  height: 18px;
  accent-color: #1E2426;
  cursor: pointer;
}

.purchase-option .option-label {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
}

.purchase-option .option-price {
  font-size: 14px;
  font-weight: 600;
}

.why-betterme {
  margin-top: 32px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 12px;
}

.why-betterme .why-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 14px;
}

.why-betterme .why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.why-betterme .why-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #555;
}

.why-betterme .why-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #1E2426;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .product-detail-v2 .container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .product-info-sticky {
    position: static;
  }

  .product-gallery-grid {
    gap: 12px;
  }

  .product-gallery-grid img {
    aspect-ratio: 4 / 5;
  }
}

/* Product Banner */
.product-banner {
  position: relative;
  width: 100%;
  min-height: 360px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: #f5f5f5;
  border-radius: 16px;
  overflow: hidden;
  margin-top: 80px;
}

.product-banner-content {
  padding: 48px;
}

.product-banner-content h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 16px;
  max-width: 360px;
}

.product-banner-content p {
  font-size: 15px;
  color: #666;
  margin-bottom: 24px;
  max-width: 400px;
  line-height: 1.6;
}

.product-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
}

@media (max-width: 991px) {
  .product-banner {
    grid-template-columns: 1fr;
  }

  .product-banner-content {
    padding: 32px 24px;
    order: 2;
  }

  .product-banner img {
    order: 1;
    min-height: 240px;
  }
}

/* Product Steps */
.product-steps {
  padding: 80px 0;
}

.product-steps .section-title {
  margin-bottom: 48px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-item {
  text-align: center;
}

.step-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 20px;
  background: #f5f5f5;
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1E2426;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  margin: 0 auto 16px;
}

.step-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.step-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

/* Product Details */
.product-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
  background: #f9f9f9;
  border-radius: 16px;
  padding: 60px;
  margin: 0 auto;
  max-width: 1440px;
}

.product-details-text h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.3;
}

.product-details-text p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.product-details-text ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-details-text li {
  font-size: 14px;
  color: #555;
  padding-left: 20px;
  position: relative;
}

.product-details-text li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: #1E2426;
  font-weight: bold;
}

.product-details-image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 16px;
}

@media (max-width: 991px) {
  .product-details {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 24px;
  }
}

/* Product Ingredients */
.product-ingredients {
  padding: 80px 0;
  background: #f5efe4;
}

.product-ingredients .section-title {
  margin-bottom: 48px;
  font-size: 48px;
}

.ingredients-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.ingredient-card {
  position: relative;
  flex: 0 0 calc(25% - 18px);
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  overflow: hidden;
  background: #f5f5f5;
  text-align: left;
}

.ingredient-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
  margin: 0;
  background: #f5f5f5;
}

.ingredient-number {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.ingredient-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px 20px 50px;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

.ingredient-card h3 {
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  text-align: center;
  line-height: 1.2;
}

@media (max-width: 991px) {
  .ingredient-card {
    flex: 0 0 calc(50% - 12px);
    max-width: none;
  }
}

@media (max-width: 576px) {
  .ingredient-card {
    flex: 0 0 100%;
    max-width: 340px;
    aspect-ratio: 4 / 5;
  }

  .ingredient-content {
    padding: 20px;
  }

  .ingredient-card h3 {
    font-size: 18px;
  }
}

/* Product Quality */
.product-quality {
  padding: 80px 0;
}

.quality-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  align-items: center;
  margin: 0 auto;
  padding: 0 20px;
}

.quality-label {
  background-color: #ebe1d3;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding: 8px 12px;
  font-size: 14px;
  display: inline-flex;
  font-weight: 600;
  color: #333;
}

.quality-label:before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #333;
}

.quality-title {
  font-size: 36px;
  font-weight: 500;
  color: #1E2426;
  line-height: 1.2;
  margin-bottom: 40px;
}

.quality-list {
  display: flex;
  flex-direction: column;
}

.quality-list-item {
  padding: 20px 0;
  cursor: pointer;
  transition: opacity 0.2s;
}

.quality-list-item .text-box {
  display: flex;
  gap: 16px;
}

.quality-list-item:not(.active) {
  opacity: 0.5;
}

.quality-list-item:hover {
  opacity: 1;
}

.quality-list-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #f5f5f5;
  color: #1E2426;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.quality-list-icon svg {
  width: 22px;
  height: 22px;
}

.quality-list-content {
  flex: 1;
}

.quality-list-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1E2426;
  margin-bottom: 8px;
}

.quality-list-content p {
  font-size: 16px;
  color: #888;
  line-height: 1.5;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease, margin-bottom 0.3s ease;
}

.quality-list-item.active .quality-list-content p {
  max-height: 100px;
  opacity: 1;
}

.quality-progress {
  margin-top: 20px;
  width: 100%;
  height: 2px;
  background: #eee;
  border-radius: 2px;
  overflow: hidden;
}

.quality-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: #1E2426;
  border-radius: 2px;
}

.quality-images {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
  background: #f5f5f5;
}

.quality-images img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 991px) {
  .quality-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .quality-title {
    font-size: 28px;
    margin-bottom: 32px;
  }

  .quality-images {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 576px) {
  .quality-title {
    font-size: 24px;
  }

  .quality-list-item {
    gap: 12px;
    padding: 16px 0;
  }

  .quality-list-icon {
    width: 40px;
    height: 40px;
  }

  .quality-list-icon svg {
    width: 20px;
    height: 20px;
  }

  .quality-list-content h3 {
    font-size: 15px;
  }

  .quality-list-content p {
    font-size: 12px;
  }
}

/* Product Reviews (Meet the Fabric cards) */
.product-reviews {
  padding: 80px 0;
  background: #f5efe4;
  text-align: center;
}

.product-reviews .section-title {
  margin-bottom: 12px;
  font-size: 48px;
  margin-bottom: 30px;
}

.product-reviews .section-subtitle>p {
  margin: 0;
  font-size: 20px;
}

.product-reviews .section-subtitle>p+p {
  margin-top: 0.5em;
}

.section-subtitle {
  font-size: 14px;
  color: #888;
  margin-bottom: 48px;
  line-height: 1.6;
}

.reviews-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0 auto 32px;
}

.review-card {
  position: relative;
  aspect-ratio: 3 / 3;
  border-radius: 20px;
  overflow: hidden;
  background: #f5f5f5;
}

.review-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.review-card-label {
  position: absolute;
  transform: translate(-50%);
  top: unset;
  bottom: 32px ;
  left: 50% ;
  right: 12px;
  padding: 15px;
  background: #806b5966;
  border-radius:10px;
  backdrop-filter: blur(10px);
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  width: calc(100% - 24px);
  text-align: left;
}

.reviews-link {
  font-size:18px;
  color: #1E2426;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: opacity 0.2s;
  color: #7f7570;
}

.reviews-link:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .reviews-cards {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .review-card {
    aspect-ratio: 16 / 10;
  }
}

/* Product FAQ */
.product-faq {
  padding: 80px 0;
  text-align: center;
  background: #f5efe4;
}
.product-faq .container{
  max-width: 880px;
}

.product-faq .section-title {
  margin-bottom: 32px;
  font-size: 48px;
  font-weight: 600;
}

.faq-tabs {
  display: inline-flex;
  background: #fffcf5;
  border-radius: 30px;
  padding: 4px;
  margin-bottom: 40px;
}

.faq-tab {
  padding: 10px 50px;
  border-radius: 30px;
  border: none;
  background: transparent;
  color: #666;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.faq-tab.active {
  background: #fffcf5;
  color: #1E2426;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.faq-panel {
  display: none;
  text-align: left;
  max-width: 880px;
}

.faq-panel.active {
  display: block;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 18px 0;
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-question {
  width: 100%;
  text-align: left;
  font-size: 20px;
  font-weight: 400;
  color: #1E2426;
  padding: 0;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question:after {
  content: '›';
  font-size: 24px;
  color: #222;
  transform: rotate(90deg);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question:after {
  transform: rotate(-90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  padding-top: 12px;
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

.faq-contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  background: #fffcf5;
  border-radius: 16px;
  text-align: left;
  width: 85%;
  margin: 40px auto 0;
}

.faq-contact h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1E2426;
  margin-bottom: 4px;
}

.faq-contact p {
  font-size: 14px;
  color: #666;
  font-weight: 500;
  margin: 0;
}

.faq-contact-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1E2426;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: opacity 0.2s;
}

.faq-contact-arrow:hover {
  opacity: 0.9;
}

.faq-contact-arrow svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 576px) {
  .product-faq .section-title {
    font-size: 26px;
  }

  .faq-tab {
    padding: 8px 24px;
    font-size: 13px;
  }

  .faq-contact {
    padding: 18px;
  }
}

/* Product Customers */
.product-customers {
  padding: 80px 0;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.product-customers .section-title {
  margin-bottom: 40px;
  font-size: 48px;
}

.trust-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 68px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
  background: #f5efe4;
  border-radius: 20px;
  text-align: left;
}

.trust-badges {
  display: flex;
  gap: 40px;
  justify-content: center;
}

.trust-badge {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #333;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.trust-badge svg,
.trust-badge .trust-icon {
  width: 28px;
  height: 28px;
  color: #5a544b;
}

.trust-badge .trust-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.trust-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.trust-list li {
  position: relative;
  padding-left: 28px;
  font-size:20px;
  color: #222;
  line-height: 1.5;
  font-weight: 500;
}

.trust-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #1E2426;
  font-weight: 700;
}

@media (max-width: 768px) {
  .trust-card {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .trust-list li {
    text-align: left;
  }
}

/* Product Reviews Section */
.product-purpose {
  padding: 80px 0;
  margin: 0 auto;
}

.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  gap: 20px;
}

.reviews-header-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.product-purpose .section-title {
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 600;
  margin-right: 30px;
}

.reviews-header-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #666;
}

.reviews-header-meta div {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  border-left: 1px solid #eee;
  padding-left: 20px;
  margin-left: 15px;
  font-weight: 600;
  font-size: 14px;
}

.reviews-header-stars {
  color: #F5A623;
  font-size: 18px;
}

.write-review-btn {
  padding: 10px 20px;
  border: 1px solid #ddd;
  border-radius: 30px;
  background: #fff;
  color: #1E2426;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.write-review-btn:hover {
  background: #1E2426;
  color: #fff;
}

.reviews-feed {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #eee;
  padding-top: 30px;
}

.review-entry {
  padding: 24px 0;
  border-bottom: 1px solid #eee;
}

.review-entry-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.review-entry-name {
  font-size: 16px;
  font-weight: 600;
  color: #1E2426;
}

.review-entry-date {
  font-size: 14px;
  color: #999;
}

.review-entry-stars {
  color: #F5A623;
  font-size: 16px;
  margin-bottom: 8px;
}

.review-entry p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 12px;
  max-width: 520px;
}

.review-entry img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 576px) {
  .reviews-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .reviews-header-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .product-purpose .section-title {
    font-size: 26px;
  }
}

/* Review Modal */
.review-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.95);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}

.review-modal-overlay.active {
  display: flex;
}

.review-modal {
  position: relative;
  width: 100%;
  max-width: 900px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  padding: 40px;
}

.review-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #eee;
  background: #fff;
  color: #1E2426;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.review-modal-close:hover {
  background: #f5f5f5;
}

.review-modal-body {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
}

.review-modal-product img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 12px;
  background: #f5f5f5;
}

.review-modal-form h2 {
  font-size: 26px;
  font-weight: 600;
  color: #1E2426;
  line-height: 1.3;
  margin-bottom: 8px;
}

.review-modal-form>p {
  font-size: 14px;
  color: #666;
  margin-bottom: 32px;
  line-height: 1.5;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field.full {
  grid-column: 1 / -1;
  margin-bottom: 24px;
}

.form-field label {
  font-size: 11px;
  font-weight: 600;
  color: #1E2426;
  letter-spacing: 0.5px;
}

.form-field .required {
  color: #e74c3c;
}

.form-field input,
.form-field textarea {
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  color: #1E2426;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: #1E2426;
}

.form-field textarea {
  resize: vertical;
  min-height: 60px;
}

.form-field.full textarea {
  min-height: 120px;
}

.rating-stars-input {
  display: flex;
  gap: 4px;
  color: #ddd;
  font-size: 22px;
  cursor: pointer;
}

.rating-stars-input span {
  transition: color 0.2s;
}

.rating-stars-input span.active {
  color: #F5A623;
}

.form-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.add-photos-btn {
  padding: 12px 24px;
  border: 1px solid #ddd;
  border-radius: 30px;
  background: #fff;
  color: #1E2426;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.add-photos-btn:hover {
  background: #f5f5f5;
}

.submit-btn {
  padding: 12px 40px;
  border: none;
  border-radius: 30px;
  background: #1E2426;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s;
}

.submit-btn:hover {
  opacity: 0.9;
}

@media (max-width: 768px) {
  .review-modal {
    padding: 24px;
  }

  .review-modal-body {
    grid-template-columns: 1fr;
  }

  .review-modal-product {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Happy Customers Carousel */
.happy-customers-carousel {
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}

.happy-customers-carousel .section-title {
  margin-bottom: 40px;
  font-size: 48px;
}

.happy-customers-swiper {
  overflow: visible !important;
  padding-bottom: 8px;
}

.happy-customers-swiper .swiper-slide img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 12px;
  background: #f5f5f5;
  display: block;
}

.happy-customers-pagination {
  position: relative;
  bottom: auto !important;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.happy-customers-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
  opacity: 1;
  margin: 0 !important;
  cursor: pointer;
  transition: background 0.2s;
}

.happy-customers-pagination .swiper-pagination-bullet-active {
  background: #1E2426;
}

.happy-customers-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  padding: 12px 24px;
  background: #000;
  color: #fff;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: opacity 0.2s;
}

.happy-customers-btn:hover {
  opacity: 0.85;
}

@media (max-width: 576px) {
  .happy-customers-carousel {
    padding: 60px 16px;
  }

  .happy-customers-carousel .section-title {
    font-size: 24px;
  }
}

/* Brand Purpose */
.brand-purpose {
  padding: 80px 0;
  text-align: center;
}

.brand-purpose .section-title {
  margin-bottom: 12px;
  font-size: 48px;
}

.brand-purpose .section-subtitle {
  font-size: 15px;
  color: #888;
  margin-bottom: 48px;
  line-height: 1.2;
  margin-top: 0;
}

.brand-purpose .section-subtitle>p {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
}

.brand-purpose .section-subtitle>p+p {
  margin-top: 0.5em;
}

.purpose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0 auto;
}

.purpose-card {
  background: #f5f2eb;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
}

.purpose-image {
  position: relative;
  aspect-ratio: 4 / 2.5;
  overflow: hidden;
}

.purpose-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.purpose-image .icon{
  position: absolute;
  top: 16px;
  left: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 10px;
}
.purpose-icon {
  object-fit: contain;
}


.purpose-content {
  padding: 24px;
}

.purpose-content h3 {
  font-size: 24px;
  font-weight: 600;
  color: #1E2426;
  margin-bottom: 10px;
}

.purpose-content p {
  font-size: 14px;
  font-weight: 500;
  color: #666;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .purpose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .brand-purpose {
    padding: 60px 16px;
  }

  .purpose-grid {
    grid-template-columns: 1fr;
  }
}

/* Footer */
.footer {
  background: #000;
  color: #fff;
  padding: 48px 0 24px;
}

.footer-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 32px;
  margin-bottom: 48px;
}

.footer-logo {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}

.footer-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 48px;
}

@media (max-width: 991px) {
  .footer-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-wrap {
    grid-template-columns: 1fr;
  }
}

.footer-column h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}

.footer-column a {
  display: flex;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
  transition: color 0.2s;
  text-decoration: none;
}

.footer-column a:hover {
  color: #fff;
}

.footer-app-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-app-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: #fff;
}

.footer-newsletter {
  justify-self: end;
}

.footer-newsletter p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-newsletter p strong {
  color: #fff;
  font-weight: 600;
}

.footer-newsletter-form {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  overflow: hidden;
  margin-bottom: 12px;
}

.footer-newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 16px;
  color: #fff;
  font-size: 14px;
  outline: none;
}

.footer-newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter-form button {
  width: 44px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-newsletter-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.footer-newsletter-note a {
  display: inline;
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-inner a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

.footer-bottom .payment-icons {
  display: flex;
  gap: 8px;
}

.footer-bottom .payment-icons span {
  font-size: 11px;
  color: #000;
  background: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 600;
}

.footer-logo img {
  max-height: 28px;
  width: auto;
  display: block;
}

.footer-app-icon img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  display: block;
}

.footer-bottom .payment-icons img {
  height: 24px;
  width: auto;
  border-radius: 4px;
  display: block;
}

@media (max-width: 768px) {
  .footer-bottom-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-newsletter {
    justify-self: stretch;
  }
}

/* ==================== 悬浮按钮 ==================== */
.backtop-top,
.backtop-cart,
.backtop-chat {
  position: fixed;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  z-index: 90;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}

.backtop-top:hover,
.backtop-cart:hover,
.backtop-chat:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.14);
}

.backtop-top {
  bottom: 152px;
}

.backtop-cart {
  bottom: 88px;
}

.backtop-chat {
  bottom: 24px;
}

.backtop-top img {
  width: 20px;
  height: 20px;
  display: block;
}

/* ==================== Cart Drawer ==================== */
.cart-toggle {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
}

/* .cart-toggle::after {
  content: attr(data-count);
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: #1E2426;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
} */

.cart-toggle[data-count="0"]::after {
  display: none;
}

.cart-toggle .cart-count-badge {
  font-size: 10px;
  position: absolute;
  right: -5px;
  bottom: -5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 130;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 460px;
  max-width: 92vw;
  height: 100vh;
  background: #fff;
  z-index: 140;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  display: flex;
  flex-direction: column;
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #f0f0f0;
}

.cart-drawer-header h2 {
  font-size: 20px;
  font-weight: 600;
  color: #1E2426;
}

.cart-count-text {
  font-size: 14px;
  font-weight: 400;
  color: #666;
}

.cart-drawer-close {
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: #1E2426;
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

.cart-empty {
  text-align: center;
  padding: 40px 0;
}

.cart-empty-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  color: #ccc;
}

.cart-empty h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1E2426;
}

.cart-empty p {
  font-size: 14px;
  color: #888;
  margin-bottom: 24px;
}

.cart-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #f0f0f0;
}

.cart-item-media {
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  overflow: hidden;
  background: #f5f5f5;
}

.cart-item-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cart-item-title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 8px;
  color: #1E2426;
}

.cart-item-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.cart-item-price .current {
  font-size: 15px;
  font-weight: 600;
  color: #d73a49;
}

.cart-item-price .original {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid #e0e0e0;
  border-radius: 24px;
  overflow: hidden;
}

.qty-btn {
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  color: #1E2426;
}

.qty-input {
  width: 36px;
  height: 32px;
  border: none;
  text-align: center;
  font-size: 14px;
  color: #1E2426;
  background: none;
}

.cart-item-remove {
  background: none;
  border: none;
  font-size: 13px;
  color: #1E2426;
  text-decoration: underline;
  cursor: pointer;
}

.cart-upsell {
  margin-bottom: 24px;
}

.cart-upsell-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.cart-upsell-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1E2426;
}

.upsell-nav {
  display: flex;
  gap: 8px;
}

.upsell-nav button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.upsell-swiper {
  overflow: hidden;
}

.upsell-product-card {
  user-select: none;
}

.upsell-product-media {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  overflow: hidden;
  background: #f5f5f5;
  margin-bottom: 12px;
}

.upsell-product-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.35s ease;
}

.upsell-product-media img.upsell-img-hover {
  opacity: 0;
}

.upsell-product-media:hover img.upsell-img-main {
  opacity: 0;
}

.upsell-product-media:hover img.upsell-img-hover {
  opacity: 1;
}

.upsell-discount {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ef4b4b;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 20px;
}

.upsell-add-cart {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  color: #1E2426;
}

.upsell-product-colors {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.upsell-product-colors .color-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.upsell-product-name {
  font-size: 14px;
  font-weight: 500;
  color: #1E2426;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.upsell-product-variant {
  font-size: 13px;
  color: #888;
  margin-bottom: 6px;
}

.upsell-product-price {
  font-size: 14px;
  font-weight: 600;
  color: #1E2426;
  display: flex;
  align-items: center;
  gap: 8px;
}

.upsell-product-price .sale {
  color: #d73a49;
}

.upsell-product-price .original {
  font-weight: 400;
  color: #999;
  text-decoration: line-through;
}

.cart-promo {
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 20px;
}

.cart-promo-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  padding: 16px 0;
  font-size: 14px;
  color: #1E2426;
  cursor: pointer;
  text-align: left;
}

.cart-promo-icon {
  width: 12px;
  height: 12px;
  position: relative;
}

.cart-promo-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid #1E2426;
  border-bottom: 1.5px solid #1E2426;
  transform: translate(-50%, -70%) rotate(45deg);
  transition: transform 0.25s ease;
}

.cart-promo.open .cart-promo-icon::before {
  transform: translate(-50%, -30%) rotate(-135deg);
}

.cart-promo-form {
  display: none;
  gap: 8px;
  padding-bottom: 16px;
}

.cart-promo.open .cart-promo-form {
  display: flex;
}

.cart-promo-form input {
  flex: 1;
  height: 42px;
  padding: 0 14px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
}

.cart-promo-form button {
  height: 42px;
  padding: 0 20px;
  border: none;
  border-radius: 8px;
  background: #f0f0f0;
  color: #1E2426;
  font-size: 14px;
  cursor: pointer;
}

.cart-summary {
  margin-bottom: 20px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 14px;
  color: #555;
}

.summary-row .cart-subtotal,
.summary-row .cart-total {
  font-weight: 600;
  color: #1E2426;
}

.summary-total {
  font-size: 16px;
  font-weight: 700;
  color: #1E2426;
  padding-top: 10px;
  border-top: 1px solid #f0f0f0;
  margin-top: 6px;
}

.cart-progress-wrap {
  margin-bottom: 20px;
}

.cart-progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #888;
  margin-bottom: 6px;
}

.cart-progress-bar {
  position: relative;
  height: 10px;
  background: #f0f0f0;
  border-radius: 5px;
  overflow: visible;
}

.cart-progress-fill {
  height: 100%;
  background: repeating-linear-gradient(45deg,
      #4dd6a6,
      #4dd6a6 10px,
      #3cc99a 10px,
      #3cc99a 20px);
  border-radius: 5px;
  transition: width 0.3s ease;
}

.cart-progress-marker {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.cart-progress-marker.active{
  border-color: #4dd6a6;
}
.cart-progress-marker img {
  height: 16px;
}

.cart-progress-end {
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #888;
}

.cart-progress-msg {
  text-align: center;
  font-size: 13px;
  color: #555;
  margin-top: 10px;
}

.cart-progress-msg strong {
  color: #1E2426;
}

.cart-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.btn-block {
  width: 100%;
}

.btn-paypal {
  background: #ffc439;
  color: #1E2426;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-paypal strong {
  font-weight: 800;
}
.btn-paypal strong img {
  height: 16px;
}

.cart-payment-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.cart-payment-icons span {
}
.cart-payment-icons span img {
  height: 20px;
}

.cart-view-link {
  display: block;
  text-align: center;
  font-size: 14px;
  color: #1E2426;
  text-decoration: underline;
}

@media (max-width: 576px) {
  .cart-drawer {
    width: 100%;
    max-width: 100%;
  }

  .cart-item {
    grid-template-columns: 76px 1fr;
    gap: 12px;
  }
}

/* ==================== Size Guide Drawer ==================== */
.size-guide-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 130;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.size-guide-overlay.active {
  opacity: 1;
  visibility: visible;
}

.size-guide-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 520px;
  max-width: 92vw;
  height: 100vh;
  background: #fff;
  z-index: 140;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  display: flex;
  flex-direction: column;
}

.size-guide-drawer.open {
  transform: translateX(0);
}

.size-guide-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #f0f0f0;
}

.size-guide-drawer-header h2 {
  font-size: 20px;
  font-weight: 600;
  color: #1E2426;
  margin: 0;
}

.size-guide-drawer-close {
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: #1E2426;
}

.size-guide-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

.size-guide-intro {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 24px;
}

.size-guide-intro p:last-child {
  margin-bottom: 0;
}

.size-guide-section {
  margin-bottom: 28px;
}

.size-guide-section h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1E2426;
  margin: 0 0 12px;
}

.size-guide-section-image {
  margin-bottom: 12px;
}

.size-guide-section-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.size-guide-section-content {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
}

.size-guide-section-content p:last-child {
  margin-bottom: 0;
}

.size-guide-notes {
  font-size: 13px;
  line-height: 1.5;
  color: #666;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}

.size-guide-trigger {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
  color: inherit;
}

.size-guide-chart {
  margin-bottom: 28px;
}

.size-guide-chart-title {
  font-size: 16px;
  font-weight: 600;
  color: #1E2426;
  margin: 0 0 12px;
}

.size-guide-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.size-guide-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}

.size-guide-table th,
.size-guide-table td {
  padding: 12px 8px;
  text-align: center;
  border-bottom: 1px solid #f0f0f0;
  font-size: 13px;
  color: #444;
}

.size-guide-table th {
  font-weight: 500;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.size-guide-table tbody tr:last-child td {
  border-bottom: none;
}

.size-guide-measure {
  margin-bottom: 28px;
}

.size-guide-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  border-bottom: 1px solid #f0f0f0;
}

.size-guide-tab {
  position: relative;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #888;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
  white-space: nowrap;
}

.size-guide-tab::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #1E2426;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.size-guide-tab:hover {
  color: #1E2426;
}

.size-guide-tab.active {
  color: #1E2426;
}

.size-guide-tab.active::after {
  transform: scaleX(1);
}

.size-guide-panel {
  display: none;
}

.size-guide-panel.active {
  display: block;
}

.size-guide-measure-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.size-guide-measure-label {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
  color: #1E2426;
  background: #f7f7f7;
  border: 1px solid #eee;
  border-radius: 20px;
}

.size-guide-measure-title {
  font-size: 18px;
  font-weight: 600;
  color: #1E2426;
  margin: 0 0 16px;
  text-align: center;
}

.size-guide-measure-content {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 20px;
}

.size-guide-measure-wrap {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.size-guide-measure-image {
  flex: 0 0 45%;
  max-width: 280px;
}

.size-guide-measure-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.size-guide-measure-steps {
  flex: 1;
  min-width: 0;
}

.size-guide-measure-step {
  margin-bottom: 16px;
}

.size-guide-measure-step-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.size-guide-measure-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #1E2426;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

.size-guide-measure-step-name {
  font-weight: 600;
  color: #1E2426;
  font-size: 14px;
}

.size-guide-measure-step-text {
  font-size: 13px;
  line-height: 1.5;
  color: #666;
}

@media (max-width: 576px) {
  .size-guide-drawer {
    width: 100%;
    max-width: 100%;
  }
  .size-guide-measure-wrap {
    flex-direction: column;
  }
  .size-guide-measure-image {
    flex: 0 0 auto;
    max-width: 100%;
  }
}

/* ==================== Toast 提示 ==================== */
.toast {
  position: fixed;
  top: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  background: #1E2426;
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
  z-index: 200;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* ==================== Wishlist 页面 ==================== */
.wishlist-page .tinv-wishlist {
  padding: 20px 0 80px;
}

.wishlist-page article > h1,
.wishlist-page .page-title {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  margin: 48px 0 8px;
  color: #1E2426;
}

.wishlist-page .tinv-header {
  text-align: center;
  margin-bottom: 40px;
}

.wishlist-page .tinv-header h2 {
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #888 !important;
  margin: 0;
}

.wishlist-page .cart-empty.woocommerce-info {
  text-align: center;
  padding: 56px 24px;
  background: #f8f8f8;
  border: 1px solid #eee;
  border-radius: 16px;
  color: #555;
  font-size: 16px;
  line-height: 1.6;
  margin: 0 auto 24px;
  max-width: 560px;
}

.wishlist-page .cart-empty.woocommerce-info::before {
  content: '';
  display: block;
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: url('../../images/me-red.svg') no-repeat center / contain;
  opacity: 0.8;
}

.wishlist-page .return-to-shop {
  text-align: center;
}

.wishlist-page .return-to-shop .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 32px;
  background: #1E2426;
  color: #fff;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  border: none;
}

.wishlist-page .return-to-shop .button:hover {
  background: #333;
  transform: translateY(-2px);
}

/* Wishlist 商品表格（有商品时） */
.wishlist-page .tinvwl-table-manage-list {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
}

.wishlist-page .tinvwl-table-manage-list th,
.wishlist-page .tinvwl-table-manage-list td {
  padding: 16px;
  border-bottom: 1px solid #eee;
  text-align: left;
  vertical-align: middle;
}

.wishlist-page .tinvwl-table-manage-list th {
  font-size: 13px;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.wishlist-page .tinvwl-table-manage-list .product-thumbnail img {
  width: 80px;
  height: auto;
  border-radius: 8px;
}

.wishlist-page .tinvwl-table-manage-list .product-name a {
  font-size: 16px;
  font-weight: 600;
  color: #1E2426;
  text-decoration: none;
}

.wishlist-page .tinvwl-table-manage-list .product-name a:hover {
  color: #555;
}

.wishlist-page .tinvwl-table-manage-list .product-price {
  font-size: 15px;
  color: #1E2426;
  font-weight: 500;
}

.wishlist-page .tinvwl-table-manage-list .tinvwl-add-to-cart .button {
  height: 40px;
  padding: 0 20px;
  border-radius: 20px;
  background: #1E2426;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.wishlist-page .tinvwl-table-manage-list .tinvwl-add-to-cart .button:hover {
  background: #333;
}

@media (max-width: 768px) {
  .wishlist-page article > h1,
  .wishlist-page .page-title {
    font-size: 26px;
    margin-top: 32px;
  }

  .wishlist-page .cart-empty.woocommerce-info {
    padding: 40px 20px;
  }

  .wishlist-page .tinvwl-table-manage-list .product-thumbnail img {
    width: 60px;
  }
}

/* ==================== 响应式导航 ==================== */
@media (max-width: 991px) {

  .navbar-menu,
  .navbar-actions .search-box,
  .navbar-actions-item[href="/orders"],
  .navbar-actions-item[href="/wishlist"] {
    display: none;
  }

  .navbar-actions-menu {
    display: flex;
  }

  .navbar-wrap {
    height: 60px;
  }

  .navbar-logo img {
    height: 22px;
  }

  .filter-mobile-bar {
    display: block;
  }

  .filter-sidebar {
    display: none;
  }

  .hero-banner .swiper-button-prev,
  .hero-banner .swiper-button-next {
    display: none;
  }
}

/* ==================== 辅助类 ==================== */
.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: 8px;
}

.mt-2 {
  margin-top: 16px;
}

.mt-3 {
  margin-top: 24px;
}

.mt-4 {
  margin-top: 40px;
}

.mb-1 {
  margin-bottom: 8px;
}

.mb-2 {
  margin-bottom: 16px;
}

.mb-3 {
  margin-bottom: 24px;
}

.mb-4 {
  margin-bottom: 40px;
}

.hidden {
  display: none !important;
}

/* 快捷入口区（首页） */
.looking-for {
  padding: 160px 0;
}

.looking-for .cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 991px) {
  .looking-for .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.looking-for .card {
  display: block;
}

.looking-for .card-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.looking-for .card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.looking-for .card:hover .card-image img {
  transform: scale(1.05);
}

.looking-for .card .card-title {
  margin-top: 16px;
  color: #1E2426;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}

.looking-for .card .card-title .arrow {
  margin-left: 2px;
  font-size: 18px;
  line-height: 1;
}

/* ==================== New Arrivals 轮播 ==================== */
.new-arrivals {
  padding: 60px 0;
  overflow: hidden;
}

.new-arrivals .section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.new-arrivals .section-header .section-title {
  margin-bottom: 0;
  text-align: left;
  font-size: 32px;
  font-weight: 500;
}
.single .new-arrivals .section-header .section-title{
  font-size: 48px;
}

.new-arrivals .section-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.new-arrivals-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.new-arrivals-nav button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #fff;
  color: #1E2426;
  font-size: 16px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.new-arrivals-nav button:hover {
  border-color: #1E2426;
  background: #1E2426;
  color: #fff;
}

.new-arrivals-swiper {
  overflow: visible !important;
}

.new-arrivals-swiper .swiper-slide {
  height: auto;
}

/* New Arrivals 卡片 */
.new-arrivals .product-card {
  cursor: pointer;
}

.new-arrivals .product-card .image-box {
  position: relative;
  background: #f5f5f5;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1 / 1.25;
  display: block;
}

.new-arrivals .product-card .image-box img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.4s ease;
}

.new-arrivals .product-card .image-box img.hover-img {
  opacity: 0;
}

.new-arrivals .product-card:hover .image-box img.main-img {
  opacity: 0;
}

.new-arrivals .product-card:hover .image-box img.hover-img {
  opacity: 1;
}

.new-arrivals .product-card .like-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: transform 0.2s;
  display: none;
}

.new-arrivals .product-card .like-btn:hover {
  transform: scale(1.1);
}

.new-arrivals .product-card .quick-size {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.86);
  padding: 14px 16px 16px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 5;
  text-align: center;
  backdrop-filter: blur(12px);
}

.new-arrivals .product-card:hover .quick-size {
  transform: translateY(0);
}

.new-arrivals .product-card .quick-size-title {
  font-size: 14px;
  font-weight: 500;
  color: #1E2426;
  margin-bottom: 10px;
}

.new-arrivals .product-card .quick-size .size-list {
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.new-arrivals .product-card .quick-size .size-list.active {
  display: flex;
}

.new-arrivals .product-card .quick-size .size-list span {
  min-width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.2s;
  cursor: pointer;
}

.new-arrivals .product-card .quick-size .size-list span:hover {
  border-color: #1E2426;
  background: #1E2426;
  color: #fff;
}

.new-arrivals .product-card .quick-size .size-list span.disabled {
  opacity: 0.4;
  text-decoration: line-through;
  pointer-events: none;
}

.new-arrivals .product-card .quick-size .custom-size-btn,
.new-arrivals .product-card .quick-size .add-cart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  min-height: 34px;
  border-radius: 50px;
  border: 1px solid #1E2426;
  background: #fff;
  color: #1E2426;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.new-arrivals .product-card .quick-size .custom-size-btn:hover,
.new-arrivals .product-card .quick-size .add-cart-btn:hover {
  background: #1E2426;
  color: #fff;
}

.new-arrivals .product-card .quick-size .custom-size-btn.hidden,
.new-arrivals .product-card .quick-size .add-cart-btn.hidden {
  display: none;
}

.new-arrivals .product-card .colors {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.new-arrivals .product-card .color-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  cursor: pointer;
  position: relative;
}

.new-arrivals .product-card .color-dot.active:after {
  content: '';
  position: absolute;
  inset: -3px;
  border: 1px solid #1E2426;
  border-radius: 50%;
}

.new-arrivals .product-card .product-title {
  font-size: 16px;
  font-weight: 600;
  margin-top: 10px;
  color: #1E2426;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.new-arrivals .product-card .color-label {
  font-size: 14px;
  color: #666;
  margin-top: 2px;
}

.new-arrivals .product-card .price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  font-size: 16px;
  font-weight: 400;
  color: #1E2426;
}

.new-arrivals .product-card .price .compare {
  text-decoration: line-through;
  color: #999;
}

.new-arrivals .product-card .price .sale {
  color: #E9423A;
}

@media (max-width: 991px) {
  .new-arrivals .section-header {
    margin-bottom: 24px;
  }

  .new-arrivals .section-header .section-title {
    font-size: 24px;
  }

  .new-arrivals-nav {
    display: none;
  }

  .new-arrivals .product-card .image-box {
    aspect-ratio: 1 / 1.2;
  }
}

/* ==================== Even Better in Real Life 轮播 ==================== */
.real-life {
  padding: 60px 0 100px;
  overflow: hidden;
}

.real-life .section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.real-life .section-header .section-title {
  margin-bottom: 0;
  text-align: left;
  font-size: 36px;
  font-weight: 500;
}

.real-life-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.real-life-nav button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #fff;
  color: #1E2426;
  font-size: 16px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.real-life-nav button:hover {
  border-color: #1E2426;
  background: #1E2426;
  color: #fff;
}

.real-life-swiper {
  overflow: visible !important;
  border-radius: 16px;
}

.real-life-swiper .swiper-slide {
  height: auto;
}

.look-card {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 23;
  background: #f5f5f5;
  border-radius: 16px;
  overflow: hidden;
}

.look-image {
  display: block;
  width: 100%;
  height: 100%;
}

.look-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.hotspot {
  position: absolute;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 5;
  transform: translate(-50%, -50%);
}

.hotspot-dot {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  transition: transform 0.2s ease;
}

.hotspot-dot:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #666;
}

.hotspot:hover .hotspot-dot,
.hotspot.active .hotspot-dot {
  transform: scale(1.15);
}

.hotspot-tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 180px;
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s ease;
  text-align: left;
}

.hotspot-tooltip:before {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #fff;
}

.hotspot:hover .hotspot-tooltip,
.hotspot.active .hotspot-tooltip {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.tooltip-name {
  font-size: 14px;
  font-weight: 500;
  color: #1E2426;
  margin-bottom: 6px;
  padding-right: 24px;
}

.tooltip-price {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.tooltip-price .sale {
  color: #E9423A;
  font-weight: 500;
}

.tooltip-price .compare {
  color: #999;
  text-decoration: line-through;
  font-weight: 400;
}

.tooltip-arrow {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 18px;
  color: #1E2426;
}

@media (max-width: 991px) {
  .real-life .section-header .section-title {
    font-size: 24px;
  }

  .real-life-nav {
    display: none;
  }

  .look-card {
    aspect-ratio: 4 / 5;
  }

  .hotspot-tooltip {
    min-width: 150px;
    padding: 10px 12px;
  }

  .tooltip-name {
    font-size: 13px;
  }

  .tooltip-price {
    font-size: 13px;
  }
}

/* ==================== Meet the BetterMe World 轮播 ==================== */
.meet-world {
  padding: 60px 0;
  background: #f7f8f9;
  overflow: hidden;
}

.meet-world .section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.meet-world .section-header .section-title {
  margin-bottom: 0;
  text-align: left;
  font-size: 36px;
  font-weight: 500;
}

.meet-world-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.meet-world-nav button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #fff;
  color: #1E2426;
  font-size: 16px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.meet-world-nav button:hover {
  border-color: #1E2426;
  background: #1E2426;
  color: #fff;
}

.meet-world-swiper {
  overflow: visible !important;
  border-radius: 16px;
}

.meet-world-swiper .swiper-slide {
  height: auto;
}

.world-card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  overflow: hidden;
  background: #1E2426;
}

.world-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.world-card:hover img {
  transform: scale(1.05);
}

.world-card:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.2) 40%, transparent 70%);
  z-index: 1;
}

.world-tag {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  padding: 10px 20px;
  border-radius: 50px;
  /* background: rgba(0,0,0,0.35); */
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 1);
  font-size: 14px;
  font-weight: 500;
  /* backdrop-filter: blur(4px); */
}

.world-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 35px 25px;
  color: #fff;
  text-align: center;
}

.world-content h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 25px;
}

.world-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: #fff;
  color: #1E2426;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.world-card:hover .world-btn {
  background: #1E2426;
  color: #fff;
}

@media (max-width: 991px) {
  .meet-world .section-header .section-title {
    font-size: 24px;
  }

  .meet-world-nav {
    display: none;
  }

  .world-content {
    padding: 18px;
  }

  .world-content h3 {
    font-size: 18px;
    margin-bottom: 14px;
  }

  .world-btn {
    padding: 8px 18px;
    font-size: 12px;
  }
}

/* ==================== Product Detail Custom Layout (参考 BetterMe Store _ BTTRM11122) ==================== */
.product-info-custom {
  position: static;
}

.product-info-custom .product-price {
  margin-bottom: 4px;
}

.product-info-custom .product-price span {
  font-size: 24px;
  font-weight: 500;
}

.product-info-custom .shipping-included {
  font-size: 16px;
  color: #666;
  margin-bottom: 24px;
}

.product-info-custom .option-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  border-top: 1px solid #ddd;
  padding-top: 20px;
}

.product-info-custom .option-row .option-title {
  margin-bottom: 0;
}

.product-info-custom .option-value {
  color: #1E2426;
  font-weight: 500;
}

.product-info-custom .option-link {
  font-size: 13px;
  color: #666;
  text-decoration: underline;
  transition: color 0.2s;
}

.product-info-custom .option-link:hover {
  color: #1E2426;
}

.product-info-custom .custom-size-terms {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #5c5f6a;
  cursor: pointer;
  font-weight: 500;
}

.product-info-custom .custom-size-terms input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: #1E2426;
  flex-shrink: 0;
}

.product-info-custom .terms-list {
  margin-bottom: 24px;
  padding-left: 26px;
  list-style: disc;
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
}

.product-info-custom .terms-list li {
  font-size: 12px;
  color: #5c5f6a;
  margin-bottom: 4px;
  font-weight: 500;
}

.product-info-custom .stone-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.product-info-custom .stone-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
}

.product-info-custom .stone-option:hover,
.product-info-custom .stone-option.active {
  border-color: #1E2426;
  /* background: #fafafa; */
}

.product-info-custom .stone-option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.product-info-custom .stone-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  transition: all 0.2s;
  flex-shrink: 0;
}

.product-info-custom .stone-option.active .stone-check {
  background: #1E2426;
  border-color: #1E2426;
  color: #fff;
}

.product-info-custom .stone-option.active .stone-check::after {
  content: '';
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-top: -2px;
}

.product-info-custom .stone-label {
  flex: 1;
  font-size: 14px;
  font-weight: 400;
}

.product-info-custom .stone-price {
  font-size: 14px;
  font-weight: 400;
  color: #1E2426;
}

.product-info-custom .total-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 500;
}

.product-info-custom .total-price {
  font-size: 20px;
  font-weight: 600;
}

.add-to-cart {
  font-size: 20px;
}

.product-info-custom .paypal-pay-later {
  margin-bottom: 24px;
  font-size: 12px;
  color: #666;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.product-info-custom .paypal-pay-later img {
  height: 24px;
}

.product-info-custom .product-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.product-info-custom .product-benefit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid #eee;
  border-radius: 20px;
  font-size: 12px;
  color: #1E2426;
  background: #fff;
}

.product-info-custom .product-benefit svg {
  width: 14px;
  height: 14px;
  color: #1E2426;
}

.product-info-custom .product-options-divider {
  height: 1px;
  background: #eee;
  margin: 20px 0;
}

.product-info-custom .available-options-title {
  font-size: 15px;
  font-weight: 600;
  color: #1E2426;
  margin-bottom: 16px;
}

.product-info-custom .product-options-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-info-custom .option-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-info-custom .option-label-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-info-custom .option-label {
  font-size: 13px;
  font-weight: 500;
  color: #1E2426;
}

.product-info-custom .option-label .required {
  color: #E9423A;
  margin-left: 2px;
}

.product-info-custom .option-link {
  background: none;
  border: none;
  padding: 0;
  font-size: 13px;
  font-weight: 500;
  color: #1E2426;
  text-decoration: underline;
  cursor: pointer;
}

.product-info-custom .option-select-wrapper {
  position: relative;
}

.product-info-custom .option-select-wrapper::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid #666;
  border-bottom: 1.5px solid #666;
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.product-info-custom .option-select {
  width: 100%;
  height: 44px;
  padding: 0 36px 0 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  color: #999;
  background: #fff;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.product-info-custom .option-select:focus {
  outline: none;
  border-color: #1E2426;
}

.product-info-custom .option-select option {
  color: #1E2426;
}

.product-info-custom .option-select:valid {
  color: #1E2426;
}

.product-info-custom .social-proof {
  margin-bottom: 24px;
  margin-top: 20px;
}

.product-info-custom .social-proof h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  text-align: center;
}

.product-info-custom .social-proof-swiper {
  position: relative;
  width: 100%;
  max-width: 600px;
  padding-bottom: 8px;
  overflow: hidden;
}

.product-info-custom .social-proof-swiper .swiper-wrapper {
  align-items: center;
}

.product-info-custom .social-proof-swiper .swiper-slide {
  /* width: 200px; */
  height: auto;
  width: 60%;
}

.product-info-custom .social-proof-slide {
  position: relative;
}

.product-info-custom .social-proof-video {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  overflow: hidden;
  background: #f5f5f5;
}

.product-info-custom .social-proof-slide.swiper-slide-active .social-proof-video {
  aspect-ratio: 2 / 3;
}

.product-info-custom .social-proof-video video,
.product-info-custom .social-proof-video .social-proof-video-link {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-info-custom .social-proof-video-link {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e8e8e8;
  text-decoration: none;
}

.product-info-custom .social-proof-play-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  padding-left: 4px;
}

.product-info-custom .social-proof-mute {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s;
}

.product-info-custom .social-proof-mute:hover {
  background: rgba(0, 0, 0, 0.7);
}

.product-info-custom .social-proof-mute.unmuted {
  background: rgba(30, 36, 38, 0.85);
}

.product-info-custom .social-proof-location {
  font-size: 12px;
  font-weight: 500;
  color: #1E2426;
  text-align: center;
  margin-top: 10px;
  padding: 0 8px;
}

.product-info-custom .social-proof-prev,
.product-info-custom .social-proof-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(30, 36, 38, 0.75);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  z-index: 5;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: -14px;
}

.product-info-custom .social-proof-prev:hover,
.product-info-custom .social-proof-next:hover {
  background: rgba(30, 36, 38, 0.95);
}

.product-info-custom .social-proof-prev {
  left: 8px;
}

.product-info-custom .social-proof-next {
  right: 8px;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: '' !important;
}

.product-info-custom .trust-badges {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.product-info-custom .trust-badge {
  display: flex;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px 16px;
}

.product-info-custom .trust-icon {
  width: 40px;
  height: 40px;
  color: #1E2426;
  flex-shrink: 0;
  object-fit: contain;
}

.product-info-custom .trust-label {
  line-height: 1.4;
}

.product-info-custom .delivery-info {
  margin-bottom: 24px;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #ddd;
}

.product-info-custom .delivery-title {
  font-size: 16px;
  font-weight: 600;
  color: #1E2426;
  margin-bottom: 16px;
  text-align: center;
}

.product-info-custom .delivery-timeline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.product-info-custom .delivery-step {
  flex: 1;
  text-align: center;
}

.product-info-custom .delivery-icon {
  width: 24px;
  height: 24px;
  color: #666;
  margin: 0 auto 8px;
}

.product-info-custom .delivery-icon-img {
  width: auto;
  height: auto;
  max-width: 36px;
  max-height: 36px;
  object-fit: contain;
  display: block;
}

.product-info-custom .delivery-label {
  font-size: 14px;
  color: #888;
  font-weight: 600;
  margin-bottom: 4px;
}

.product-info-custom .delivery-value {
  font-size: 14px;
  font-weight: 600;
  color: #1E2426;
}

.product-info-custom .delivery-value.delivery-highlight {
  color: #E9423A;
}

.product-info-custom .delivery-plus {
  font-size: 14px;
  font-weight: 600;
  color: #999;
  margin-top: -16px;
}

.product-info-custom .fit-guarantee {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #ddd;
}

.product-info-custom .fit-guarantee-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
}

.product-info-custom .fit-guarantee-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.product-info-custom .fit-guarantee-content {
  flex: 1;
  min-width: 0;
}

.product-info-custom .fit-guarantee h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1E2426;
}

.product-info-custom .fit-guarantee p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 8px;
}

.product-info-custom .fit-guarantee .learn-more {
  display: inline-block;
  font-size: 13px;
  color: #1E2426;
  font-weight: 600;
  text-decoration: underline;
}

/* Product info custom additions */
.product-info .product-price .sale {
  color: #E9423A;
}

.product-info-custom .fit-note {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 24px;
}

.product-info-custom .notify-btn {
  background: #1E2426;
  color: #fff;
  border-radius: 30px;
  margin-bottom: 12px;
}

.product-info-custom .paypal-pay-later {
  margin-bottom: 24px;
  margin-top: 15px;
  font-size: 16px;
}

/* Shop the look */
.shop-the-look {
  padding-top: 24px;
  border-top: 1px solid #eee;
}

.shop-the-look-title {
  font-size: 20px;
  font-weight: 600;
  color: #1E2426;
  margin-bottom: 16px;
}

.look-products {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.look-product {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 15px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
  position: relative;
}

.look-product-image {
  width:105px;
  height: 145px;
  border-radius: 8px;
  overflow: hidden;
  background: #f5f5f5;
}

.look-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.look-product-info {
  min-width: 0;
}

.look-product-title {
  font-size: 16px;
  font-weight: 600;
  color: #1E2426;
  line-height: 1.4;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  overflow: hidden;
}

.look-product-color {
  font-size: 16px;
  color: #666;
  margin-bottom: 4px;
}

.look-product-price {
  font-size: 16px;
  font-weight: 600;
  color: #1E2426;
}

.look-product-price .sale {
  color: #E9423A;
}

.look-product-price .compare {
  color: #999;
  text-decoration: line-through;
  font-weight: 400;
  margin-left: 4px;
}

.look-product-cart {
  margin-top: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1E2426;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.2s;
  position: absolute;
  bottom: 20px;
  right: 0;
}

.look-product-cart:hover {
  opacity: 0.85;
}

@media (max-width: 991px) {
  .product-info-custom .delivery-timeline {
    flex-wrap: wrap;
  }

  .product-info-custom .delivery-step {
    flex: 1 1 30%;
  }
}

@media (max-width: 576px) {
  .product-info-custom .trust-badges {
    flex-direction: column;
    gap: 16px;
  }

  .product-info-custom .trust-badge {
    justify-content: center;
  }

  .product-info-custom .social-proof-slide {
    min-width: 80%;
  }
}

@media (max-width: 768px) {
  /* DemoA 产品信息区移动端适配：修复固定宽度导致的横向滚动 */
  .product-info-custom,
  .product-info-sticky,
  .product-attributes,
  .product-info-custom .option-row,
  .product-info-custom .attribute-options,
  .product-info-custom .color-options,
  .product-info-custom .size-options,
  .product-info-custom .stone-options,
  .product-info-custom .total-price-row,
  .product-info-custom .add-to-cart,
  .product-info-custom .paypal-pay-later {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .product-info-custom .social-proof-swiper {
    width: 100% !important;
  }

  .product-info-custom .option-row {
    flex-wrap: wrap;
    gap: 8px;
  }

  .product-info-custom .option-row .option-title {
    flex: 1 1 auto;
  }

  .product-info-custom .attribute-options {
    flex-wrap: wrap;
  }
}

@media (max-width: 576px) {
  .product-detail-layout .container {
    padding: 0 16px 40px;
  }

  .product-info-custom .product-name {
    font-size: 22px;
  }

  .product-info-custom .product-price span {
    font-size: 20px;
  }

  .product-info-custom .option-row {
    padding-top: 16px;
  }

  .product-info-custom .color-options .color-dot {
    width: 28px;
    height: 28px;
  }

  .product-info-custom .size-options .size-btn {
    min-width: 48px;
    height: 40px;
    font-size: 14px;
    padding: 0 12px;
  }

  .product-info-custom .add-to-cart {
    font-size: 16px;
    padding: 14px 20px;
  }

  .product-info-custom .paypal-pay-later {
    flex-wrap: wrap;
    font-size: 11px;
  }

  /* 轮播组件在移动端关闭 overflow:visible，避免撑出横向滚动条 */
  .happy-customers-swiper,
  .new-arrivals-swiper,
  .showcase-swiper,
  .product-info-custom .social-proof-swiper {
    overflow: hidden !important;
  }

  .product-marquee {
    width: 100%;
    overflow: hidden;
  }
}

.product-marquee {
  overflow: hidden;
  background: #ae9982;
  padding: 20px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 40s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-content {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 0 50px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.marquee-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}

@media (max-width: 576px) {
  .marquee-item {
    padding: 0 28px;
    font-size: 13px;
  }

  .marquee-item svg {
    width: 12px;
    height: 12px;
  }
}

/* ==================== Product Showcase (Swiper) ==================== */
.product-showcase-3d {
  padding: 80px 0;
  overflow: hidden;
}

.showcase-title {
  font-size: 48px;
  font-weight: 500;
  text-align: center;
  color: #1E2426;
  margin-bottom: 40px;
}

.showcase-swiper {
  position: relative;
  overflow: visible !important;
  padding: 20px 0 40px;
}

.showcase-swiper .swiper-wrapper {
  align-items: center;
}

.showcase-swiper .swiper-slide {
  width: 70%;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.showcase-swiper .swiper-slide.swiper-slide-active {
  width: 80%;
}

.showcase-swiper .swiper-slide:not(.swiper-slide-active) {}

.showcase-swiper .swiper-slide:not(.swiper-slide-active) .showcase-card img {
  filter: blur(4px);
}

.showcase-card {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  background: #f5f5f5;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.4s ease;
}

.showcase-card-text {
  position: absolute;
  top: 95px;
  left: 40px;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.showcase-card-text h3 {
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
  margin: 0;
  max-width: 400px;
}

.showcase-tag {
  position: absolute;
  top: 40px;
  left: 40px;
  z-index: 5;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.3px;
  pointer-events: none;
}

.showcase-swiper .showcase-nav {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  z-index: 20;
  transition: background 0.2s;
  line-height: 1;
  padding: 0;
}

.showcase-swiper .showcase-nav:after {
  content: 'prev' !important;
  font-size: 20px;
}

.showcase-swiper .showcase-nav.showcase-next:after {
  content: 'next' !important;
}

.showcase-swiper .showcase-nav:hover {
  background: rgba(255, 255, 255, 0.6);
}

.showcase-swiper .showcase-nav.swiper-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}

.showcase-swiper .showcase-nav.showcase-prev {
  left: -54px;
}

.showcase-swiper .showcase-nav.showcase-prev {
  left: -54px;
}

.showcase-swiper .showcase-next {
  right: 24px;
}

.showcase-tabs {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.showcase-tab {
  padding: 10px 20px;
  border-radius: 30px;
  background: transparent;
  color: #888;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.showcase-tab:hover {
  color: #1E2426;
  background: #ece1d4;
}

.showcase-tab.active {
  color: #1E2426;
  background: #ece1d4;
  border-color: #e0e0e0;
  font-weight: 600;
}

.showcase-pagination {
  margin-top: 30px;
  display: none;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

.showcase-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: background 0.2s;
}

.showcase-pagination .swiper-pagination-bullet-active {
  background: #1E2426;
}

.showcase-disclaimer {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  font-size: 14px;
  color: #999;
  line-height: 1.6;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .showcase-tabs {
    display: none;
  }

  .showcase-pagination {
    display: flex;
  }
}

@media (max-width: 991px) {
  .showcase-title {
    font-size: 26px;
  }

  .showcase-swiper {
    padding: 16px 0 32px;
  }

  .showcase-swiper .swiper-slide {
    width: 70%;
  }

  .showcase-card-text {
    padding: 24px;
    top: 40px;
    left: 0;
  }

  .showcase-card-text h3 {
    font-size: 22px;
  }

  .showcase-tag {
    top: 20px;
    left: 20px;
  }

  .showcase-swiper .showcase-nav.showcase-prev {
    left: 0;
  }

  .showcase-swiper .showcase-nav.showcase-next {
    right: 0;
  }
}

@media (max-width: 576px) {
  .showcase-title {
    font-size: 22px;
    margin-bottom: 28px;
  }

  .showcase-swiper .swiper-slide {
    width: 80%;
  }

  .showcase-card {
    border-radius: 14px;
  }

  .showcase-card-text {
    padding: 18px;
  }

  .showcase-card-text h3 {
    font-size: 18px;
  }

  .showcase-tag {
    top: 14px;
    left: 14px;
    padding: 5px 10px;
    font-size: 11px;
  }

  .showcase-nav {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .showcase-prev {
    left: 8px;
  }

  .showcase-next {
    right: 8px;
  }

  .showcase-tab {
    padding: 8px 14px;
    font-size: 12px;
  }
}

/* ==================== Testimonial 用户评价卡片 ==================== */
.testimonial-section {
  padding: 60px 0 0;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  border: 1px solid #eee;
  border-radius: 16px;
  background: #fff;
}

.testimonial-avatar {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
}

.testimonial-avatar svg,
.testimonial-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}

.testimonial-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.testimonial-author {
  color: #1E2426;
  font-weight: 600;
}

@media (max-width: 576px) {
  .testimonial-card {
    flex-direction: column;
    gap: 16px;
  }

  .testimonial-content p {
    font-size: 14px;
  }
}

/* ==================== Product Description Section ==================== */
.product-description-section {
  padding: 60px 0;
}

.product-description-grid {
  display: grid;
  grid-template-columns: 1fr .4fr;
  gap: 48px;
  align-items: start;
}

.product-description-left {
  max-width: 680px;
}

.product-description-title {
  font-size: 22px;
  font-weight: 600;
  color: #1E2426;
  margin-bottom: 18px;
}

.product-description-text {
  font-size: 16px;
  font-weight: 500;
  color: #222;
  line-height: 1.7;
  margin-bottom: 18px;
}

.product-description-list {
  margin: 0 0 18px 0;
  padding-left: 18px;
}

.product-description-list li {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 4px;
}

.product-description-model {
  font-size: 16px;
  color: #222;
  line-height: 1.6;
  margin-bottom: 24px;
  font-weight: 500;
}

.product-description-model strong {
  font-weight: 600;
}

.product-description-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.pd-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 8px;
  border: 1px solid #eee;
  border-radius: 12px;
  text-align: center;
  transition: border-color 0.2s;
}

.pd-badge:hover {
  border-color: #ddd;
}

.pd-badge svg,
.pd-badge-icon {
  width: 36px;
  height: 36px;
  color: #1E2426;
}

.pd-badge-icon {
  object-fit: contain;
  display: block;
}

.pd-badge span {
  font-size: 16px;
  color: #222;
  font-weight: 500;
}

.product-description-subtitle {
  font-size: 15px;
  font-weight: 600;
  color: #1E2426;
  margin: 0 0 12px;
}

/* Product Description Accordion */
.pd-accordion {
  overflow: hidden;
}

.pd-accordion-item {
  border-bottom: 1px solid #eee;
}

.pd-accordion-item:last-child {
  border-bottom: none;
}

.pd-accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 0;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: #1E2426;
  transition: background 0.2s;
}

/* .pd-accordion-header:hover {
  background: #fafafa;
} */

.pd-accordion-icon {
  width: 24px;
  height: 24px;
  color: #1E2426;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  object-fit: contain;
}

.pd-accordion-icon svg {
  width: 100%;
  height: 100%;
}

.pd-accordion-title {
  flex: 1;
  font-size: 24px;
}

.pd-accordion-toggle {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
}

.pd-accordion-toggle::before,
.pd-accordion-toggle::after {
  content: '';
  position: absolute;
  background: #1E2426;
  transition: transform 0.3s ease;
}

.pd-accordion-toggle::before {
  width: 12px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pd-accordion-toggle::after {
  width: 2px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pd-accordion-item.open .pd-accordion-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.pd-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.pd-accordion-item.open .pd-accordion-content {
  max-height: 800px;
}

.pd-accordion-content>p {
  padding: 0 20px 18px 0;
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

.pd-accordion-block {
  padding: 0 20px 18px 0;
}

.pd-accordion-block+.pd-accordion-block {
  padding-top: 4px;
}

.pd-accordion-block h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1E2426;
  margin-bottom: 10px;
}

.pd-accordion-block ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.pd-accordion-block li {
  font-size: 16px;
  color: #666;
  line-height: 1.3;
  margin-bottom: 6px;
  position: relative;
  padding-left: 12px;
}

.pd-accordion-block li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #999;
}

.pd-accordion-block li span {
  color: #444;
  font-weight: 500;
}

.pd-care-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 0 20px 18px 52px;
}

.pd-care-column h4 {
  font-size: 14px;
  font-weight: 600;
  color: #1E2426;
  margin-bottom: 12px;
}

.pd-care-column ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.pd-care-column li {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 6px;
}

.pd-care-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
}

.pd-care-icon {
  width: 18px;
  height: 18px;
  color: #1E2426;
  flex-shrink: 0;
  margin-top: 1px;
}

.pd-care-icon svg {
  width: 100%;
  height: 100%;
}

/* ==================== Adaptive Collection Feature ==================== */
.adaptive-feature-section {
  padding: 80px 0;
}

.adaptive-feature-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 60px;
  align-items: center;
}

.adaptive-feature-video {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #f5f5f5;
  aspect-ratio: 3 / 2.5;
}

.adaptive-feature-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.adaptive-feature-content {
}
.adaptive-feature-content p {
  font-size: 16px;
  margin-bottom: 20px;
}
.adaptive-feature-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #1E2426;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  padding: 8px 14px;
  background: #f2ece4;
  border-radius: 20px;
}

.adaptive-feature-title {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  color: #222;
  margin-bottom: 20px;
}

.adaptive-feature-text {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 32px;
}

.adaptive-feature-list {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.adaptive-feature-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
}

.adaptive-feature-list .icon {
  width: 56px;
  height: 56px;
  border-radius: 5px;
  background: #f2ece4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1E2426;
  flex-shrink: 0;
  padding: 10px;
}

.adaptive-feature-icon svg {
  width: 22px;
  height: 22px;
}

.adaptive-feature-text-label {
  font-size: 18px;
  font-weight: 500;
  color: #1E2426;
}

@media (max-width: 991px) {
  .adaptive-feature-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .adaptive-feature-content {
    max-width: 100%;
  }

  .adaptive-feature-title {
    font-size: 28px;
  }

  .product-description-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-description-left {
    max-width: 100%;
  }

  .pd-care-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .adaptive-feature-section {
    padding: 60px 0;
  }

  .adaptive-feature-title {
    font-size: 24px;
  }

  .adaptive-feature-video {
    aspect-ratio: 1 / 1;
  }

  .product-description-badges {
    grid-template-columns: repeat(2, 1fr);
  }

  .pd-accordion-header {
    padding: 16px;
    font-size: 14px;
  }

  .pd-accordion-block,
  .pd-accordion-content>p,
  .pd-care-grid {
    padding-left: 16px;
  }

  .pd-accordion-icon {
    display: none;
  }

  .pd-accordion-block h4 {
    font-size: 13px;
  }

  .pd-accordion-block li,
  .pd-accordion-content>p {
    font-size: 12px;
  }
}

/* ==================== Product Features ==================== */
.product-features-section {
  padding: 80px 0;
  background: #f5efe4;
}

.product-features-wrap {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.feature-row:nth-child(2n){
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}

.feature-content {
}

.feature-row-text-left .feature-content {
}

.feature-row-image-left .feature-content {
  order: 2;
  padding-left: 24px;
  padding-right: 0;
  justify-self: end;
}

.feature-row-image-left .feature-media {
  order: 1;
}

.feature-title {
  font-size: 48px;
  font-weight: 600;
  color: #1E2426;
  margin-bottom: 34px;
  line-height: 1.2;
}

.feature-content-text {
  color: #555;
  font-size: 18px;
  line-height: 1.7;
  padding-left: 20px;
}

.feature-content-text>*:first-child {
  margin-top: 0;
}

.feature-content-text>*:last-child {
  margin-bottom: 0;
}

.feature-content-text ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature-content-text li {
  position: relative;
  padding-left: 16px;
}

.feature-content-text li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #1E2426;
}

.feature-content-text li strong {
  color: #1E2426;
  font-weight: 600;
}

.feature-content-text li strong::after {
  content: ' ';
}

.feature-media {
  overflow: hidden;
  background: #eee;
  aspect-ratio: 4 / 2.5;
}

.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 991px) {
  .product-features-section {
    padding: 60px 0;
  }

  .product-features-wrap {
    gap: 60px;
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .feature-row:nth-child(2n){
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .feature-row .feature-media {
    order: 1;
  }

  .feature-row .feature-content {
    order: 2;
  }

  .feature-content {
    max-width: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .feature-title {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .product-features-section {
    padding: 48px 0;
  }

  .product-features-wrap {
    gap: 48px;
  }

  .feature-title {
    font-size: 24px;
    margin-bottom: 18px;
  }

  .feature-content-text,
  .feature-content-text li {
    font-size: 13px;
  }

  .feature-media {
    aspect-ratio: 1 / 1;
  }
}

/* ==================== About / Contact pages ==================== */
.about-hero {
  margin-bottom: 40px;
}

.about-hero img {
  width: 100%;
  height: auto;
  min-height: 360px;
  border-radius: 16px;
  display: block;
  object-fit: cover;
  background: #F5F0E8;
}

.about-intro {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 60px;
}

.about-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 60px;
}

.about-block:nth-child(even) {
  direction: rtl;
}

.about-block:nth-child(even) > * {
  direction: ltr;
}

.about-block-image img {
  width: 100%;
  height: auto;
  min-height: 360px;
  border-radius: 16px;
  display: block;
  object-fit: cover;
  background: #F5F0E8;
}

.about-block-content h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #1E2426;
}

.about-block-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 16px;
}

.about-team {
  margin-top: 80px;
}

.about-team > h2 {
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
  color: #1E2426;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-member {
  text-align: center;
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  background: #F5F0E8;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #1E2426;
}

.team-member p {
  font-size: 14px;
  color: #888;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 60px;
}

.contact-info h3 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #888;
  margin-bottom: 8px;
}

.contact-item {
  margin-bottom: 28px;
}

.contact-item p,
.contact-item a {
  font-size: 16px;
  color: #1E2426;
  line-height: 1.6;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-social .social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-social .social-links a {
  font-size: 14px;
  font-weight: 600;
  color: #1E2426;
  text-decoration: underline;
}

.contact-map {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 60px;
}

.contact-map iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

.map-placeholder {
  width: 100%;
  height: 360px;
  border-radius: 16px;
  background: #F5F0E8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1E2426;
  font-size: 18px;
  font-weight: 600;
}

.simple-form .form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.simple-form label {
  font-size: 14px;
  font-weight: 600;
  color: #1E2426;
}

.simple-form input[type="text"],
.simple-form input[type="email"],
.simple-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  color: #1E2426;
  background: #fff;
  outline: none;
  transition: border-color 0.2s ease;
}

.simple-form input[type="text"]:focus,
.simple-form input[type="email"]:focus,
.simple-form textarea:focus {
  border-color: #1E2426;
}

.simple-form textarea {
  resize: vertical;
  min-height: 140px;
}

@media (max-width: 991px) {
  .about-block,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-block:nth-child(even) {
    direction: ltr;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
