/*
Theme Name: Stylux Store
Theme URI: https://styluxstore.com
Author: Stylux
Description: 時尚服飾電商佈景主題 - 基於 VOGUE FASHION 設計
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: stylux-store
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

/* ========================================
   CSS Variables / Design Tokens
   ======================================== */
:root {
  --color-gold: #b7a983;
  --color-gold-deep: #c4a77d;
  --color-dark: #333333;
  --color-text-primary: #111111;
  --color-text-secondary: #999999;
  --color-text-light: #888888;
  --color-text-footer: #555555;
  --color-white: #ffffff;
  --color-bg-light: #f9f9f9;
  --color-border: #d9d9d9;
  --font-primary: "Noto Sans TC", sans-serif;
  --font-serif: "Noto Serif TC", serif;
  --font-script: "Parisienne", cursive;
  --max-width: 1200px;
  --header-height: 80px;
}

/* ========================================
   Reset & Base
   ======================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--color-text-primary);
  background: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition:
    color 0.3s ease,
    opacity 0.3s ease;
}

a:hover {
  opacity: 0.8;
}

.price ins,
.price ins .amount,
.price ins bdi,
ins .woocommerce-Price-amount,
ins bdi {
  color: #d9534f;
  text-decoration: none;
}

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

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ========================================
   Header
   ======================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--color-white);
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16);
}

.header-inner {
  width: 100%;
  max-width: var(--max-width);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 36px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-nav a {
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  position: relative;
  padding-bottom: 6px;
}

.header-nav a.active,
.header-nav a:hover {
  color: #511600 !important;
  font-weight: 700;
}

.header-nav a.active::after,
.header-nav a:hover::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #e25b2a !important;
}

.header-logo {
  display: flex;
  align-items: center;
}

.header-logo img {
  height: 54px;
  width: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 11px;
}

.header-action-item {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #000000;
  font-size: 15px;
  cursor: pointer;
  transition: opacity 0.3s;
}

.header-action-item:hover {
  opacity: 0.8;
}

.header-cart-link {
  position: relative;
}

.header-cart-mobile-icon {
  display: none;
}

.header-cart-count {
  position: absolute;
  top: -9px;
  right: -9px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: #e25b2a;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  z-index: 2;
}

.header-cart-count.is-empty {
  display: none;
}

.header-action-item img {
  width: 12px;
  height: 12px;
  filter: brightness(0);
}

.header-action-item .search-icon {
  width: 10px;
  height: 12px;
}

.mobile-menu-toggle {
  display: none;
}

.header-mobile-tools {
  display: contents;
}

.mobile-only-link {
  display: none;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* ========================================
   Search Overlay
   ======================================== */
body.search-overlay-open {
  overflow: hidden;
}

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: calc(var(--header-height) + 40px) 20px 40px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.search-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.search-overlay-panel {
  position: relative;
  width: 100%;
  max-width: 640px;
  background: var(--color-white);
  border-radius: 12px;
  padding: 32px 28px 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  transform: translateY(-16px);
  transition: transform 0.3s ease;
}

.search-overlay.active .search-overlay-panel {
  transform: translateY(0);
}

.search-overlay-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--color-text-secondary);
  font-size: 28px;
  line-height: 1;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.search-overlay-close:hover {
  background: var(--color-bg-light);
  color: var(--color-text-primary);
  opacity: 1;
}

.search-overlay-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: #511600;
  margin-bottom: 20px;
  padding-right: 36px;
}

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

.search-overlay-input {
  flex: 1;
  min-width: 0;
  height: 48px;
  padding: 0 16px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-family: var(--font-primary);
  font-size: 16px;
  color: var(--color-text-primary);
  background: var(--color-white);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.search-overlay-input:focus {
  outline: none;
  border-color: #e25b2a;
  box-shadow: 0 0 0 3px rgba(226, 91, 42, 0.15);
}

.search-overlay-input::placeholder {
  color: var(--color-text-secondary);
}

.search-overlay-submit {
  flex-shrink: 0;
  height: 48px;
  padding: 0 24px;
  border-radius: 8px;
  background: #e25b2a;
  color: var(--color-white);
  font-size: 16px;
  font-weight: 600;
  transition:
    background 0.2s ease,
    opacity 0.2s ease;
}

.search-overlay-submit:hover {
  background: #c94e22;
  opacity: 1;
}

@media (max-width: 768px) {
  .search-overlay {
    padding: calc(var(--header-height) + 20px) 16px 20px;
  }

  .search-overlay-panel {
    padding: 28px 20px 20px;
  }

  .search-overlay-title {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .search-overlay-form {
    flex-direction: column;
  }

  .search-overlay-submit {
    width: 100%;
  }
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: var(--header-height);
  overflow: hidden;
}

.hero-section-mobile {
  display: none;
}

.hero-mobile-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 375 / 223;
  overflow: hidden;
}

.hero-mobile-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-mobile-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(81, 40, 25, 0.72) 0%,
      rgba(118, 72, 51, 0.48) 28%,
      rgba(118, 72, 51, 0.16) 48%,
      rgba(118, 72, 51, 0) 68%
    ),
    rgba(0, 0, 0, 0.08);
  pointer-events: none;
}

.hero-mobile-content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
  padding: 0 20px 0 56px;
}

.hero-mobile-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-shadow: 0 4px 2px rgba(0, 0, 0, 0.25);
}

.hero-mobile-title {
  color: var(--color-white);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-mobile-subtitle {
  color: var(--color-white);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
}

.hero-mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  height: 24px;
  padding: 0 16px;
  background: var(--color-white);
  color: #702d15;
  font-size: 12px;
  font-weight: 700;
  border-radius: 0;
  transition: opacity 0.3s ease;
}

.hero-mobile-cta:hover {
  opacity: 0.85;
}

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

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(81, 40, 25, 0.72) 0%,
      rgba(118, 72, 51, 0.48) 28%,
      rgba(118, 72, 51, 0.16) 48%,
      rgba(118, 72, 51, 0) 68%
    ),
    rgba(0, 0, 0, 0.08);
}

.hero-container {
  position: absolute;
  inset: 0;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 36px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-content {
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 38px;
  text-align: center;
}

.hero-text-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-shadow: 0px 4px 2px rgba(0, 0, 0, 0.25);
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 20px;
  font-weight: 400;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 45px;
  background: var(--color-white);
  border: 1px solid var(--color-white);
  color: #702d15;
  font-size: 16px;
  font-weight: 700;
  transition: opacity 0.3s ease;
}

.hero-cta:hover {
  background: var(--color-white);
  color: #702d15;
  opacity: 0.85;
}

/* ========================================
   Section Common Styles
   ======================================== */
.section-title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 50px;
}

.section-title {
  font-size: 24px;
  font-weight: 400;
  color: var(--color-text-primary);
  text-align: center;
}

.section-title .gold {
  color: var(--color-gold);
  font-weight: 600;
}

.section-underline {
  width: 200px;
  height: 2px;
}

.section-title-underline {
  margin-top: -10px;
  display: flex;
  justify-content: center;
}

.section-title-underline img {
  width: 200px;
  height: 4px;
  object-fit: fill;
  display: block;
}

/* ========================================
   New Arrivals Section
   ======================================== */
.new-arrivals {
  padding: 80px 0 60px;
  background: var(--color-white);
  position: relative;
}

.new-arrivals .container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 50px;
  position: relative;
}

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

.product-card {
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-image-wrap {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: #f5f5f5;
}

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

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

.product-badge {
  position: absolute;
  top: 0;
  left: 0;
  background: #e05026;
  color: var(--color-white);
  font-size: 11px;
  font-weight: 500;
  padding: 3px 5px;
  width: 60px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.5px;
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.product-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-name {
  font-size: 15px;
  font-weight: 400;
  color: #333;
}

.product-price {
  font-size: 15px;
  font-weight: 700;
  font-style: italic;
  color: #8a3319;
  font-family: Arial, sans-serif;
}

.product-price ins,
.product-price ins .amount,
.product-price ins bdi,
.top5-price ins,
.top5-price ins .amount,
.top5-price ins bdi {
  color: #d9534f;
  text-decoration: none;
}

.product-icon {
  width: 14px;
  height: 12px;
  cursor: pointer;
  transition:
    transform 0.3s,
    fill 0.3s,
    stroke 0.3s;
}

.product-icon:hover {
  transform: scale(1.2);
}

.product-icon.heart-icon path {
  stroke: #e25b2a;
  stroke-width: 1.5;
  fill: none;
  transition: fill 0.3s;
}

.product-icon.heart-icon.active path,
.product-icon.heart-icon:hover path {
  fill: #e25b2a;
}

.product-icon.bag {
  width: 17px;
  height: 17px;
}

.product-icon.bag path {
  fill: #8a3319;
  transition: opacity 0.3s;
}

.product-icon.bag:hover path {
  opacity: 0.8;
}

.nav-arrow {
  position: absolute;
  top: 245px;
  transform: translateY(-50%);
  font-size: 40px;
  font-weight: 300;
  cursor: pointer;
  user-select: none;
  transition:
    color 0.3s,
    transform 0.3s;
  z-index: 5;
  background: none;
  border: none;
  line-height: 1;
  font-family: monospace, sans-serif;
}

.nav-arrow.left {
  display: none !important;
}

.nav-arrow.right {
  right: 15px;
  color: #000000;
}

.nav-arrow.right:hover {
  color: #e05026;
  transform: translateY(-50%) scale(1.1);
}

.products-carousel-dots {
  display: none;
}

.products-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e8d5cc;
  border: none;
  padding: 0;
  cursor: pointer;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.products-carousel-dot.active {
  background: #e05026;
  transform: scale(1.25);
}

/* ========================================
   Categories Section
   ======================================== */
.categories-section {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  min-height: 600px;
  gap: 0;
}

.category-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.category-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.category-card:hover img {
  transform: scale(1.08);
}

.category-accessories {
  margin-top: -1px;
}

.category-women {
  grid-row: 1 / 3;
}

.category-women .category-overlay {
  gap: 7px;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.category-women .category-title {
  font-size: 32px;
  line-height: 1.25;
}

.category-women .category-subtitle {
  font-size: 16px;
  line-height: 1.4;
  margin-top: 0;
}

.category-women .category-btn {
  width: 118px;
  height: 44px;
  margin-top: 24px;
  font-size: 16px;
  font-weight: 600;
}

.category-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.category-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-white);
  text-align: center;
}

.category-subtitle {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-white);
  text-align: center;
  margin-top: 4px;
}

.category-men .category-title,
.category-accessories .category-title {
  font-size: 24px;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.category-men .category-subtitle,
.category-accessories .category-subtitle {
  font-size: 12px;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.category-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 36px;
  border: 1px solid var(--color-white);
  color: var(--color-white);
  font-size: 14px;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.category-btn:hover {
  background: var(--color-white);
  color: var(--color-dark);
  opacity: 1;
}

.category-women-mobile {
  display: none;
}

.category-women-mobile-bg {
  position: absolute;
  width: 146.32%;
  height: 130.67%;
  left: -31.45%;
  top: -30.67%;
  max-width: none;
  object-fit: cover;
}

.category-women-mobile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.category-women-mobile-content {
  z-index: 2;
  gap: 16px;
}

.category-women-mobile-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  width: 160px;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.category-women-mobile-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  color: var(--color-white);
  text-align: center;
}

.category-women-mobile-subtitle {
  font-size: 13px;
  font-weight: 400;
  line-height: 22px;
  color: var(--color-white);
  text-align: center;
  margin-top: 0;
}

.category-women-mobile-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 24px;
  padding: 6px 22px;
  border: 1px solid var(--color-white);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 600;
  line-height: 22px;
  margin-top: 0;
}

.category-men-mobile {
  display: none;
}

.category-men-mobile-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-men-mobile-content {
  z-index: 2;
}

.category-men-mobile-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
}

.category-men-mobile-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  color: var(--color-white);
  text-align: center;
}

.category-men-mobile-subtitle {
  font-size: 13px;
  font-weight: 400;
  line-height: 22px;
  color: var(--color-white);
  text-align: center;
  margin-top: 0;
  white-space: nowrap;
}

.category-accessories-mobile {
  display: none;
}

.category-accessories-mobile-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-accessories-mobile-content {
  z-index: 2;
}

.category-accessories-mobile-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  width: 270px;
  max-width: calc(100% - 40px);
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.category-accessories-mobile-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  color: var(--color-white);
  text-align: center;
}

.category-accessories-mobile-subtitle {
  font-size: 13px;
  font-weight: 400;
  line-height: 22px;
  color: var(--color-white);
  text-align: center;
  margin-top: 0;
}

/* ========================================
   Top 5 Section
   ======================================== */
.top5-section {
  padding: 38px 0 48px;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.top5-section::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: auto;
  left: -146px;
  width: 611px;
  height: 350px;
  background: url("./assets/images/fujiaxiang_top5_bg.png") no-repeat left top;
  background-size: 611px auto;
  opacity: 0.16;
  transform: none;
  z-index: 0;
  pointer-events: none;
}

.top5-section .container {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 60px;
}

.top5-section .section-title-wrap {
  margin-bottom: 26px;
}

.top5-section .section-title {
  color: #333;
}

.top5-section .section-title .gold {
  color: #e05026;
}

.top5-section .section-underline {
  width: 151px;
  height: 2px;
  background: #e05026;
  object-fit: cover;
  opacity: 1;
  padding: 0;
  filter: brightness(0) saturate(100%) invert(42%) sepia(91%) saturate(934%)
    hue-rotate(348deg) brightness(94%) contrast(88%);
}

.top5-grid {
  display: flex;
  gap: 42px;
  justify-content: center;
  align-items: flex-start;
}

.top5-card {
  position: relative;
  display: block;
  width: 124px;
  padding-top: 38px;
  flex-shrink: 0;
  color: inherit;
  text-decoration: none;
  transition: transform 0.3s;
}

.top5-card-body {
  display: block;
}

.top5-info {
  display: block;
}

.top5-card:hover {
  transform: translateY(-5px);
  opacity: 1;
}

.top5-image-wrap {
  position: relative;
  width: 124px;
  height: 105px;
  overflow: hidden;
  background: transparent;
  border: none;
}

.top5-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: static;
}

.top5-rank {
  position: absolute;
  top: 0;
  left: -14px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
  z-index: 2;
}

.top5-rank.rank-1 {
  background: #e05026;
}

.top5-rank.rank-2 {
  background: #1a1a1a;
}

.top5-rank.rank-3 {
  background: #8c8c8c;
}

.top5-rank.rank-4 {
  background: #b3b3b3;
}

.top5-rank.rank-5 {
  background: #d9d9d9;
}

.top5-name {
  font-size: 10px;
  font-weight: 500;
  line-height: 1.4;
  color: #333;
  margin-top: 10px;
  padding: 0;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.top5-price {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  color: #8a3319;
  margin-top: 2px;
  padding: 0;
  white-space: nowrap;
}

.top5-mobile-banner {
  display: none;
}

.top5-mobile-banner-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 375 / 192;
  object-fit: cover;
}

/* ========================================
   Sustainability Section
   ======================================== */
.sustainability-section {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: clamp(300px, 25vw, 420px);
}

.sustainability-image {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.sustainability-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.sustainability-content {
  background: #faf7f2;
  padding: clamp(40px, 6vw, 72px) clamp(36px, 7vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.sustainability-label {
  font-size: 12px;
  font-weight: 500;
  color: #e05026;
  margin-bottom: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sustainability-title {
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  letter-spacing: 0.06em;
  line-height: 1.35;
}

.sustainability-text {
  font-size: 15px;
  font-weight: 400;
  color: #555;
  line-height: 1.85;
  margin-bottom: 28px;
  max-width: 480px;
}

.sustainability-text p + p {
  margin-top: 0.35em;
}

.sustainability-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  height: 44px;
  padding: 0 24px;
  border: 1px solid #e05026;
  background: #e05026;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}

.sustainability-btn:hover {
  background: transparent;
  color: #e05026;
  opacity: 1;
}

/* ========================================
   Urban Outfit Section
   ======================================== */
.urban-outfit {
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
  background: #1a1a1a;
}

.urban-outfit-bg {
  position: relative;
  z-index: 0;
  width: 100%;
}

.urban-outfit-bg img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.urban-outfit-mobile {
  display: none;
}

.urban-outfit-mobile-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 375 / 279;
  overflow: hidden;
}

.urban-outfit-mobile-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.urban-outfit-mobile-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.urban-outfit-mobile-headline {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.urban-outfit-mobile-headline-left {
  position: absolute;
  top: 12.19%;
  left: 9.07%;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
  width: 25.07%;
}

.urban-outfit-mobile-headline-right {
  position: absolute;
  top: 22.94%;
  left: 61.6%;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  width: 30.4%;
}

.urban-outfit-mobile-headline-cn-stack {
  display: flex;
  flex-direction: column;
  gap: 1px;
  align-items: flex-end;
  width: 48px;
}

.urban-outfit-mobile-headline-cn {
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}

.urban-outfit-mobile-headline-script {
  margin: 0;
  width: 100%;
  font-family: var(--font-script);
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  color: #fff4d0;
  text-align: center;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}

.urban-outfit-mobile-headline-script--want {
  width: 114px;
  text-align: center;
}

.urban-outfit-mobile-callout {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 4px;
  pointer-events: none;
}

.urban-outfit-mobile-callout--fish {
  top: 35.13%;
  left: 9.87%;
  width: 154px;
}

.urban-outfit-mobile-callout--chicken {
  top: 64.87%;
  left: 46.13%;
  width: 164px;
}

.urban-outfit-mobile-callout-text {
  border: 0.86px solid #fff;
  border-radius: 8.64px;
  background: transparent;
  padding: 8px 10px;
  flex: 1;
  min-width: 0;
  text-align: center;
}

.urban-outfit-mobile-callout-title {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: normal;
  color: #fff;
  text-shadow: 0 3.5px 3.5px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
}

.urban-outfit-mobile-callout-desc {
  margin: 2px 0 0;
  font-size: 10px;
  font-weight: 400;
  line-height: normal;
  color: #fff;
  text-shadow: 1.7px 1.7px 3.5px rgba(0, 0, 0, 0.35);
  white-space: nowrap;
}

.urban-outfit-mobile-callout-plus {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border: 0.86px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

/* ========================================
   Instagram Section
   ======================================== */
.instagram-section {
  padding: 80px 0;
  text-align: center;
}

.instagram-handle {
  font-size: 20px;
  color: var(--color-text-primary);
  margin-bottom: 8px;
}

.instagram-desc {
  font-size: 15px;
  color: var(--color-text-light);
  margin-bottom: 40px;
}

.instagram-grid {
  display: flex;
  justify-content: center;
  gap: 26px;
}

.instagram-item {
  width: 200px;
  height: 200px;
  overflow: hidden;
  cursor: default;
}

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

.instagram-item:hover img {
  transform: scale(1.1);
}

.instagram-carousel-dots {
  display: none;
}

.instagram-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e8d5cc;
  border: none;
  padding: 0;
  cursor: pointer;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.instagram-carousel-dot.active {
  background: #e05026;
  transform: scale(1.25);
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
  background: #e25b2a;
  color: var(--color-white);
  position: relative;
}

/* Newsletter */
.footer-newsletter {
  padding: 50px 0;
  text-align: center;
}

.footer-newsletter-title {
  font-size: 20px;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 10px;
}

.footer-newsletter-desc {
  font-size: 14px;
  color: var(--color-white);
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  max-width: 400px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 7px 16px;
  border: 1px solid var(--color-white);
  background: transparent;
  color: var(--color-white);
  font-size: 14px;
  font-family: var(--font-primary);
  outline: none;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.newsletter-btn {
  padding: 7px 35px;
  background: var(--color-white);
  border: 1px solid var(--color-white);
  color: #e25b2a;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-primary);
  cursor: pointer;
  transition:
    background 0.3s,
    color 0.3s;
}

.newsletter-btn:hover {
  background: #fbf3da;
  color: #e25b2a;
}

/* Footer Links */
.footer-divider {
  width: 100%;
  max-width: 1000px;
  height: 1px;
  background: var(--color-white);
  opacity: 0.8;
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 100px;
}

.footer-links {
  display: contents;
}

.footer-social-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-col-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul,
.footer-col .menu {
  list-style: none;
}

.footer-col ul li a,
.footer-col .menu li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  transition:
    color 0.3s,
    opacity 0.3s;
}

.footer-col ul li a:hover,
.footer-col .menu li a:hover {
  color: var(--color-white);
  opacity: 1;
}

.footer-social {
  display: flex;
  gap: 17px;
  align-items: center;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social img {
  width: 28px;
  height: 27px;
}

/* Footer Bottom */
.footer-bottom-links {
  display: flex;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 16px 100px;
}

.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom-links a:hover {
  color: var(--color-white);
  opacity: 1;
}

.footer-copyright {
  background: #fbf3da;
  text-align: center;
  padding: 16px 0;
  /* 桌機：一列並排不換行；窄螢幕才自動換行 */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  column-gap: 6px;
  row-gap: 4px;
}

.footer-copyright-line,
.footer-copyright-design {
  font-size: 14px;
  font-weight: 600;
  color: #702d15;
  margin: 0;
}

.footer-copyright-design::before {
  content: "｜";
  margin-right: 6px;
  color: #b89a6a;
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children */
.animate-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.animate-stagger.animated > *:nth-child(1) {
  transition-delay: 0s;
  opacity: 1;
  transform: translateY(0);
}

.animate-stagger.animated > *:nth-child(2) {
  transition-delay: 0.1s;
  opacity: 1;
  transform: translateY(0);
}

.animate-stagger.animated > *:nth-child(3) {
  transition-delay: 0.2s;
  opacity: 1;
  transform: translateY(0);
}

.animate-stagger.animated > *:nth-child(4) {
  transition-delay: 0.3s;
  opacity: 1;
  transform: translateY(0);
}

.animate-stagger.animated > *:nth-child(5) {
  transition-delay: 0.4s;
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
  .categories-section {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .category-women {
    grid-row: auto;
    min-height: 400px;
  }

  .category-men,
  .category-accessories {
    min-height: 300px;
  }

  .top5-grid {
    flex-wrap: wrap;
  }

  .urban-text-group.group-left {
    left: 3%;
    top: 6%;
  }

  .urban-text-group.group-right {
    right: 2%;
    bottom: 4%;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 60px;
  }

  /* Header UI */
  .site-header {
    overflow: hidden;
  }

  .header-inner {
    padding: 0 16px;
    height: 100%;
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    grid-template-rows: minmax(0, 1fr) 0;
    align-items: center;
    column-gap: 8px;
  }

  .header-mobile-tools {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2px;
    width: auto;
    max-width: none;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    flex-shrink: 0;
    z-index: 2;
    overflow: visible;
  }

  .header-logo {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    z-index: 1;
    min-width: 0;
    max-width: 226px;
    justify-self: center;
    grid-column: 2;
    grid-row: 1;
    pointer-events: auto;
  }

  .header-logo a,
  .header-logo .custom-logo-link {
    display: inline-flex;
  }

  .header-logo img {
    width: auto !important;
    height: auto !important;
    max-height: 36px;
    max-width: 150px;
    object-fit: contain;
  }

  .header-action-item > span:not(.header-cart-count) {
    display: none;
  }

  .header-cart-count {
    display: block;
    top: 2px;
    right: -2px;
    min-width: 15px;
    height: 15px;
    font-size: 9px;
    line-height: 15px;
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
    z-index: 2;
    margin-right: 0;
  }

  .header-actions
    .header-action-item:not(#search-toggle):not(.header-cart-link) {
    display: none !important;
  }

  .header-cart-link {
    display: flex !important;
  }

  .header-cart-link > img {
    display: none;
  }

  .header-cart-mobile-icon {
    display: block;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
  }

  .header-action-item {
    min-width: 32px;
    min-height: 32px;
    justify-content: center;
    padding: 4px;
    box-sizing: border-box;
    flex-shrink: 0;
  }

  .header-action-item .search-icon {
    width: 22px !important;
    height: 22px !important;
    object-fit: contain;
    aspect-ratio: 10.108 / 11.5394;
    flex-shrink: 0;
  }

  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    flex: 0 0 auto;
    min-width: 32px;
    min-height: 32px;
    padding: 7px 4px;
    box-sizing: border-box;
    z-index: 2;
    flex-shrink: 0;
    overflow: visible;
  }

  .hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    flex: 0 0 2px;
    background-color: #000000 !important;
    transition: all 0.3s ease;
  }

  .mobile-menu-toggle.active .hamburger-line {
    background-color: #e25b2a !important;
  }

  .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

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

  .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .header-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: var(--color-dark);
    padding: 40px 20px;
    gap: 25px;
    transition: left 0.3s ease;
    z-index: 999;
    grid-column: 1 / -1;
    grid-row: 2;
    min-height: 0;
    overflow: visible;
  }

  .header-nav.active {
    left: 0;
  }

  .header-nav .mobile-only-link {
    display: block;
  }

  .header-nav a {
    color: var(--color-white) !important;
  }

  .header-nav a.active,
  .header-nav a:hover {
    color: var(--color-gold-deep) !important;
    font-weight: 700;
  }

  .header-nav a::after {
    display: none !important;
  }

  /* Hero UI */
  .hero-section {
    display: none !important;
  }

  .hero-section-mobile {
    display: block;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: var(--header-height);
    overflow: hidden;
  }

  .hero-mobile-inner {
    aspect-ratio: 375 / 223;
  }

  .hero-mobile-title {
    font-size: 20px;
  }

  .hero-mobile-subtitle {
    font-size: 12px;
  }

  .hero-mobile-cta {
    height: 24px;
    font-size: 12px;
    border-radius: 0;
  }

  /* Footer UI */
  .site-footer {
    --footer-mobile-gutter: 35px;
    display: grid;
    grid-template-areas:
      "newsletter"
      "divider-top"
      "links"
      "divider-nav"
      "social"
      "legal"
      "copyright";
  }

  .footer-newsletter {
    grid-area: newsletter;
    padding: 32px var(--footer-mobile-gutter) 28px;
  }

  .footer-newsletter-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
  }

  .footer-newsletter-desc {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .site-footer > .footer-divider {
    width: calc(100% - (var(--footer-mobile-gutter) * 2));
    max-width: none;
    margin-inline: auto;
    opacity: 1;
  }

  .site-footer > .footer-divider:nth-of-type(2) {
    grid-area: divider-top;
  }

  .site-footer > .footer-divider:nth-of-type(4) {
    grid-area: divider-nav;
  }

  .footer-main {
    display: contents;
  }

  .footer-links {
    grid-area: links;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 24px var(--footer-mobile-gutter) 20px;
    text-align: left;
  }

  .footer-col {
    width: 100%;
    max-width: 282px;
    margin-inline: auto;
  }

  .footer-col-title {
    margin-bottom: 14px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
  }

  .footer-col ul,
  .footer-col .menu {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 10px;
    width: auto;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .footer-col ul li,
  .footer-col .menu li {
    margin-bottom: 0;
    min-width: 0;
  }

  .footer-col ul li a,
  .footer-col .menu li a {
    display: block;
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    opacity: 1;
    white-space: nowrap;
  }

  .footer-social-row {
    grid-area: social;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    padding: 20px var(--footer-mobile-gutter) 12px;
  }

  .footer-social-row .footer-col-title {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
  }

  .footer-social {
    justify-content: flex-end;
    gap: 12px;
  }

  .footer-social img {
    width: 28px;
    height: 27px;
  }

  .newsletter-form {
    flex-direction: row;
    gap: 0;
    max-width: 335px;
  }

  .newsletter-input {
    flex: 1;
    min-width: 0;
    width: auto;
    padding: 8px 12px;
    font-size: 14px;
  }

  .newsletter-input::placeholder {
    color: #ffffff;
    opacity: 1;
  }

  .newsletter-btn {
    width: auto;
    flex-shrink: 0;
    padding: 8px 24px;
    font-size: 15px;
  }

  .footer-bottom-links {
    grid-area: legal;
    flex-direction: row;
    justify-content: flex-end;
    gap: 16px;
    padding: 0 var(--footer-mobile-gutter) 24px;
    flex-wrap: wrap;
    max-width: none;
  }

  .footer-bottom-links a {
    font-size: 12px;
    color: #ffffff;
    opacity: 1;
  }

  .footer-copyright {
    grid-area: copyright;
    background: #fdf2d9;
    padding: 14px 20px 16px;
    flex-direction: column; /* 手機版堆疊換行 */
  }

  .footer-copyright-line,
  .footer-copyright-design {
    font-size: 12px;
    font-weight: 400;
    color: #5a4033;
    line-height: 1.6;
  }

  .footer-copyright-design::before {
    display: none; /* 手機版換行 → 不顯示分隔線 */
  }

  /* Others */
  .top5-section {
    padding: 40px 0 50px;
  }

  .top5-section::before {
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 210px;
    background-image: url("./assets/images/magnific_a-closeup-of-a-hand-gentl_2894603463 1.png");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    opacity: 0.18;
  }

  .top5-section .container {
    padding: 0 35px;
  }

  .top5-section .section-title-wrap {
    margin-bottom: 20px;
    gap: 7px;
  }

  .top5-section .section-title {
    font-size: 13px;
    font-weight: 600;
    line-height: 22px;
    color: #111;
  }

  .top5-section .section-title .gold {
    color: #e25b2a;
    font-weight: 600;
  }

  .top5-section .section-underline {
    display: none;
  }

  .top5-section .section-title-wrap::after {
    content: "";
    display: block;
    width: 122px;
    height: 2px;
    background: url("./assets/images/top5-mobile-underline.svg") no-repeat
      center / contain;
  }

  .top5-grid {
    flex-direction: column;
    align-items: center;
    gap: 22px;
    overflow: visible;
    padding: 0;
    margin: 0;
    scroll-snap-type: none;
  }

  .top5-card {
    width: 100%;
    max-width: 304px;
    height: 134px;
    padding-top: 0;
    scroll-snap-align: unset;
    background: #fff;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.25);
    transform: none;
  }

  .top5-card:hover {
    transform: none;
  }

  .top5-card-body {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 100%;
    padding: 31px 16px 18px 18px;
  }

  .top5-image-wrap {
    width: 100px;
    height: 86px;
    border: none;
    background: transparent;
    flex-shrink: 0;
    overflow: hidden;
  }

  .top5-image-wrap img {
    position: static;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .top5-rank {
    top: 0;
    left: 0;
    width: 25px;
    height: 25px;
    font-size: 11px;
    font-weight: 700;
    line-height: normal;
  }

  .top5-rank.rank-1 {
    background: #e25b2a;
  }

  .top5-rank.rank-2 {
    background: #191515;
    width: 24.6px;
    height: 24.6px;
  }

  .top5-rank.rank-3 {
    background: #888;
    width: 24.6px;
    height: 24.6px;
  }

  .top5-rank.rank-4 {
    background: #aaa;
    width: 24.6px;
    height: 24.6px;
  }

  .top5-rank.rank-5 {
    background: #ccc;
    width: 24.6px;
    height: 24.6px;
  }

  .top5-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
  }

  .top5-name {
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    color: #191515;
    min-height: 0;
    margin: 0;
    padding: 0;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .top5-price {
    font-size: 13px;
    font-weight: 600;
    line-height: 22px;
    color: #8a3319;
    margin: 0;
    padding: 0;
    white-space: nowrap;
  }

  .top5-price ins,
  .top5-price ins .amount,
  .top5-price ins bdi {
    color: #8a3319;
  }

  .top5-mobile-banner {
    display: block;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
  }

  .products-grid {
    display: flex;
    grid-template-columns: unset;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-padding: 0 20px;
    padding: 0 20px 6px;
    margin: 0;
  }

  .products-grid::-webkit-scrollbar {
    display: none;
  }

  .new-arrivals {
    padding: 40px 0 30px;
  }

  .new-arrivals .container {
    padding: 0;
  }

  .new-arrivals .section-title-wrap {
    margin-bottom: 24px;
    padding: 0 20px;
    gap: 6px;
  }

  .new-arrivals .section-title {
    font-size: 13px;
    font-weight: 600;
    line-height: 22px;
    color: #111;
    text-align: center;
    word-break: break-word;
  }

  .new-arrivals .section-underline {
    display: none;
  }

  .new-arrivals .section-title-wrap::after {
    content: "";
    display: block;
    width: 110.854px;
    height: 2px;
    background: url("./assets/images/new-arrivals-mobile-underline.svg")
      no-repeat center / contain;
  }

  .product-card {
    flex: 0 0 158px;
    width: 158px;
    scroll-snap-align: center;
    gap: 10px;
  }

  .product-card:hover {
    transform: none;
  }

  .product-image-wrap {
    height: 180px;
  }

  .new-arrivals .product-info-row {
    gap: 6px;
    min-width: 0;
  }

  .new-arrivals .product-name {
    flex: 1 1 auto;
    min-width: 0;
    font-size: clamp(10px, 3.47vw, 13px);
    line-height: 1.3;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .new-arrivals .product-name a {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: inherit;
  }

  .product-price {
    font-size: 14px;
  }

  .product-icon.bag {
    width: 16px;
    height: 16px;
  }

  .nav-arrow {
    display: none !important;
  }

  .products-carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    margin-top: 14px;
    padding: 0 20px;
  }

  .products-carousel-dot,
  .instagram-carousel-dot {
    width: 6px;
    height: 6px;
  }

  .products-carousel-dot.active,
  .instagram-carousel-dot.active {
    transform: scale(1.18);
  }

  .sustainability-section {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
  }

  .sustainability-image {
    display: none;
  }

  .sustainability-content {
    padding: 41px 62px;
    align-items: flex-start;
    text-align: left;
    justify-content: flex-start;
    gap: 0;
    min-height: 236px;
    background-color: #faf7f2;
    background-image: url("./assets/images/sustainability-mobile-bg.png");
    background-size: cover;
    background-position: center;
  }

  .sustainability-label,
  .sustainability-title,
  .sustainability-text {
    text-align: left;
  }

  .sustainability-label {
    margin: 0 0 2px;
    font-size: 12px;
    font-weight: 400;
    color: #e25b2a;
    letter-spacing: 0;
    text-transform: none;
  }

  .sustainability-title {
    margin: 0 0 9px;
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 700;
    color: #702d15;
    letter-spacing: 0;
    line-height: normal;
  }

  .sustainability-text {
    max-width: 251px;
    margin: 0 0 20px;
    font-size: 12px;
    font-weight: 400;
    color: #000;
    line-height: normal;
  }

  .sustainability-text p {
    margin: 0;
  }

  .sustainability-text .sustain-mobile-line {
    display: block;
  }

  .sustainability-text p + p {
    margin-top: 0;
  }

  .sustainability-btn {
    align-self: flex-start;
    width: 140px;
    min-width: 140px;
    height: 28px;
    padding: 0;
    border: none;
    border-radius: 0;
    background: #e25b2a;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: 0;
  }

  .sustainability-btn:hover {
    background: #e25b2a;
    color: #fff;
    opacity: 0.9;
  }

  .urban-outfit {
    display: none !important;
  }

  .urban-outfit-mobile {
    display: block;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
  }

  .category-women {
    display: none !important;
  }

  .category-women-mobile {
    display: flex;
    grid-row: auto;
    min-height: 0;
    aspect-ratio: 375 / 234;
    width: 100%;
  }

  .category-men {
    display: none !important;
  }

  .category-men-mobile {
    display: flex;
    min-height: 0;
    aspect-ratio: 375 / 300;
    width: 100%;
  }

  .category-accessories {
    display: none !important;
  }

  .category-accessories-mobile {
    display: flex;
    min-height: 0;
    aspect-ratio: 375 / 300;
    width: 100%;
  }

  .instagram-section {
    padding: 40px 0 30px;
  }

  .instagram-handle {
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    color: #111;
    margin-bottom: 6px;
    padding: 0 20px;
  }

  .instagram-desc {
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    color: #666;
    margin-bottom: 20px;
    padding: 0 20px;
  }

  .instagram-carousel {
    width: 100%;
  }

  .instagram-grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-padding: 0 20px;
    padding: 0 20px 6px;
    margin: 0;
  }

  .instagram-grid::-webkit-scrollbar {
    display: none;
  }

  .instagram-item {
    flex: 0 0 118px;
    width: 118px;
    height: 118px;
    scroll-snap-align: center;
  }

  .instagram-item:hover img {
    transform: none;
  }

  .instagram-carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    margin-top: 14px;
    padding: 0 20px;
  }
}

/* Narrow mobile (e.g. iPhone SE 375px) */
@media (max-width: 390px) {
  .header-inner {
    padding: 0 12px;
    column-gap: 6px;
  }
}

/* Shorter mobile viewports (e.g. iPhone SE) — compact spacing, preserve layout */
@media (max-width: 768px) and (max-height: 700px) {
  .sustainability-content {
    padding: 32px 40px;
  }

  .sustainability-title {
    font-size: 16px;
    margin-bottom: 9px;
  }

  .sustainability-text {
    font-size: 12px;
    line-height: normal;
    margin-bottom: 20px;
  }
}

/* WooCommerce overrides */
.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.woocommerce ul.products li.product {
  width: 100% !important;
  margin: 0 !important;
  float: none !important;
}

/* ========================================
   Product Page Styles (page-product.php)
   ======================================== */
.page-products-wrap {
  padding-top: var(--header-height);
  padding-bottom: 60px;
  background: var(--color-white);
}

.page-products-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 50px;
  position: relative;
}

.pl-products-content {
  padding-top: 40px;
}

/* Breadcrumbs */
.pl-breadcrumb-bar {
  width: 100%;
  background: #f5f5f5;
}

.pl-breadcrumb-container {
  padding-top: 14px;
  padding-bottom: 14px;
}

.pl-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  color: #8a8a8a;
  text-align: left;
}

.pl-breadcrumbs a {
  color: #8a8a8a;
  text-decoration: none;
}

.pl-breadcrumbs a:hover {
  color: #e25b2a;
}

.pl-breadcrumb-sep {
  margin: 0 8px;
  color: #b8b8b8;
}

.pl-breadcrumbs .current {
  color: #8a8a8a;
}

/* Title Section */
.pl-title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.pl-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text-primary);
}

.pl-title-underline {
  width: 200px;
  height: 2px;
  background: #e25b2a;
}

.pl-subtitle {
  font-size: 14px;
  color: var(--color-text-light);
}

/* Toolbar */
.pl-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  margin-bottom: 40px;
}

.pl-filters,
.pl-categories {
  display: flex;
  gap: 20px;
  align-items: center;
}

.pl-categories {
  flex: 0 0 auto;
  justify-content: flex-start;
}

.pl-categories.is-scrollable {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 4px;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.pl-categories.is-scrollable .pl-btn-outline {
  flex: 0 0 auto;
}

.pl-sort {
  margin-left: auto;
}

.pl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  padding: 0 30px;
  border: 1px solid var(--color-border);
  font-size: 13px;
  color: var(--color-dark);
  background: #fff;
  transition: all 0.2s ease;
}

.pl-btn::after {
  content: "▼";
  font-size: 10px;
  margin-left: 8px;
}

.pl-filter-form {
  margin: 0;
}

.pl-sort-form {
  margin-left: auto;
}

.pl-sort-label {
  color: var(--color-text-light);
}

.pl-select-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.pl-select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 0;
  height: 0;
  margin-top: -2px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 7px solid #1f2a37;
  pointer-events: none;
}

.pl-select {
  width: 106px;
  height: 35px;
  padding: 0 34px 0 24px;
  border: 1px solid var(--color-border);
  border-radius: 0;
  background: #fff;
  color: var(--color-dark);
  font-family: inherit;
  font-size: 13px;
  line-height: 35px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.pl-filter-form .pl-select {
  padding-left: 28px;
  padding-right: 28px;
  text-align: center;
  text-align-last: center;
}

.pl-filter-form .pl-select option {
  text-align: center;
}

.pl-select:focus {
  outline: none;
  border-color: #e25b2a;
}

.pl-sort-select {
  width: 146px;
  padding-left: 18px;
}

.pl-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  padding: 0 24px;
  border: 1px solid #e25b2a;
  font-size: 13px;
  color: #e25b2a;
  background: #fff;
  transition: all 0.2s ease;
  cursor: pointer;
}

.pl-btn-outline:hover {
  background: #e25b2a;
  color: #fff;
  border-color: #e25b2a;
}

.page-products-wrap .pl-categories > button {
  display: none;
}

.page-products-wrap .pl-btn-outline.active {
  background: #e25b2a;
  color: #fff;
  border-color: #e25b2a;
}

.pl-btn {
  cursor: pointer;
}

.pl-sort {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--color-text-light);
}

.pl-sort .pl-btn {
  padding: 0 16px;
}

/* Custom Product Card Modifiers for Listing */
.pl-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pl-image-box {
  position: relative;
  width: 100%;
  height: 350px;
  background: #f0f0f0;
  overflow: hidden;
}

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

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

.pl-fav-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #eee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--color-gold-deep);
  z-index: 5;
  transition: transform 0.2s;
}

.pl-fav-btn:hover {
  transform: scale(1.1);
}

.pl-variants {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 48px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 10%;
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 4;
}

.pl-product-card:hover .pl-variants {
  transform: translateY(0);
  opacity: 1;
}

.pl-variant-box {
  border: 1px solid var(--color-dark);
  font-size: 10px;
  color: var(--color-dark);
  width: 35px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.pl-variant-box:hover {
  background: var(--color-dark);
  color: #fff;
}

/* Tags */
.pl-tag-sale {
  position: absolute;
  top: 0;
  left: 0;
  background: #d9534f;
  color: #fff;
  font-size: 11px;
  padding: 2px 12px;
  z-index: 5;
}

.pl-tag-vip {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-gold);
  color: #fff;
  font-size: 11px;
  padding: 2px 12px;
  z-index: 5;
}

/* Card Info */
.pl-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pl-name {
  font-size: 14px;
  color: var(--color-dark);
}

.pl-name a {
  color: inherit;
  text-decoration: none;
}

.pl-name-main,
.pl-name-sub {
  display: inline;
}

@media (min-width: 769px) {
  .pl-name-sub:not(:empty) {
    margin-left: 0.25em;
  }
}

.pl-name a:hover {
  color: var(--color-gold-deep);
}

.pl-empty-notice {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--color-text-light);
  padding: 40px 0;
}

/* Search Results Page */
.page-search-wrap .pl-breadcrumbs a {
  color: var(--color-text-light);
  transition: color 0.2s ease;
}

.page-search-wrap .pl-breadcrumbs a:hover {
  color: #511600;
  opacity: 1;
}

.pl-breadcrumb-sep {
  margin: 0 8px;
}

.pl-search-toolbar {
  max-width: 640px;
  margin: 0 auto 40px;
}

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

.pl-search-input {
  flex: 1;
  min-width: 0;
  height: 48px;
  padding: 0 16px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-family: var(--font-primary);
  font-size: 16px;
  color: var(--color-text-primary);
  background: var(--color-white);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.pl-search-input:focus {
  outline: none;
  border-color: #e25b2a;
  box-shadow: 0 0 0 3px rgba(226, 91, 42, 0.15);
}

.pl-search-input::placeholder {
  color: var(--color-text-secondary);
}

.pl-search-submit {
  flex-shrink: 0;
  height: 48px;
  padding: 0 24px;
  border-radius: 8px;
  background: #e25b2a;
  color: var(--color-white);
  font-size: 16px;
  font-weight: 600;
  transition: background 0.2s ease;
}

.pl-search-submit:hover {
  background: #c94e22;
}

.pl-empty-state {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 0 40px;
}

.pl-empty-state .pl-empty-notice {
  padding: 0;
}

.pl-empty-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 28px;
  border: 1px solid #8a3319;
  border-radius: 999px;
  color: #8a3319;
  font-size: 14px;
  font-weight: 600;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.pl-empty-btn:hover {
  background: #8a3319;
  color: var(--color-white);
  opacity: 1;
}

.pl-price-wrap {
  display: flex;
  gap: 12px;
  align-items: baseline;
}

.pl-price {
  font-size: 14px;
  font-weight: 700;
  color: #000;
}

.pl-price.sale {
  color: #d9534f;
}

.pl-old-price {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
  font-weight: 400;
}

.pl-swatches {
  margin-top: 8px;
  display: flex;
  gap: 6px;
}

.pl-swatch {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid #ccc;
  cursor: pointer;
}

.pl-swatch.active {
  border: 1px solid #000;
  padding: 1px;
  background-clip: content-box;
}

/* Pagination */
.pl-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 60px;
}

.pl-page {
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  border: 1px solid #8a3319;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  color: #8a3319;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
  text-decoration: none;
  background: #fff;
  cursor: pointer;
}

a.pl-page:hover {
  background: #8a3319;
  color: #fff;
  border-color: #8a3319;
}

.pl-page.current {
  background: #8a3319;
  color: #fff;
  border-color: #8a3319;
  cursor: default;
}

.pl-page.next {
  width: auto;
  min-width: 72px;
  height: 40px;
  border-radius: 100px;
  padding: 0 20px;
}

.pl-page.dots {
  border: 1px solid #8a3319;
  color: #8a3319;
  cursor: default;
  pointer-events: none;
  font-size: 12px;
  letter-spacing: 1px;
}

@media (max-width: 1024px) {
  .pl-image-box {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .page-products-wrap {
    padding-top: var(--header-height);
    padding-bottom: 40px;
  }

  .page-products-container {
    padding: 0 clamp(34px, 9vw, 52px);
  }

  .pl-breadcrumb-container {
    min-height: 56px;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    align-items: center;
  }

  .pl-products-content {
    padding-top: 31px;
  }

  .page-products-wrap .pl-breadcrumbs {
    display: flex;
    font-size: clamp(15px, 3.3vw, 19px);
    line-height: 1.2;
  }

  .pl-title-wrap {
    gap: 10px;
    margin-bottom: 28px;
    align-items: center;
  }

  .page-products-wrap .pl-title {
    font-size: clamp(18px, 3.8vw, 22px);
    font-weight: 700;
    line-height: 1.35;
    color: #111;
    text-align: center;
  }

  .page-products-wrap .pl-title-underline {
    width: min(172px, 72vw);
    height: 2px;
    background: #e25b2a;
  }

  .page-products-wrap .pl-subtitle {
    font-size: clamp(17px, 3.45vw, 20px);
    line-height: 1.3;
    color: #888;
    text-align: center;
    margin: 0;
  }

  .pl-title {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
  }

  .pl-title-underline {
    width: 120px;
  }

  .pl-subtitle {
    font-size: 12px;
    text-align: center;
  }

  .pl-search-toolbar {
    margin-bottom: 24px;
  }

  .pl-search-form {
    flex-direction: column;
  }

  .pl-search-submit {
    width: 100%;
  }

  .pl-toolbar {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    align-items: center;
    justify-content: space-between;
    column-gap: 12px;
    row-gap: 18px;
    margin-bottom: 24px;
    width: 100%;
    max-width: 470px;
    margin-left: auto;
    margin-right: auto;
  }

  .pl-filters {
    grid-column: 1;
    grid-row: 1;
    gap: 16px;
    min-width: 0;
  }

  .pl-sort,
  .pl-sort-form {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    margin-left: 0;
    gap: 12px;
    font-size: clamp(14px, 3.1vw, 18px);
    white-space: nowrap;
  }

  .pl-sort-label {
    color: var(--color-text-primary);
    font-size: clamp(14px, 3.1vw, 18px);
  }

  .pl-categories {
    grid-column: 1 / -1;
    grid-row: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 17px;
    width: 100%;
    max-width: 415px;
  }

  .pl-btn {
    height: 32px;
    padding: 0 12px;
    font-size: 12px;
    border-color: var(--color-border);
    color: var(--color-dark);
  }

  .pl-btn::after {
    margin-left: 4px;
    font-size: 8px;
  }

  .pl-select {
    width: clamp(82px, 19vw, 110px);
    height: 38px;
    padding: 0 30px 0 25px;
    font-size: clamp(14px, 3.1vw, 18px);
    line-height: 38px;
    text-align: left;
  }

  .pl-filter-form .pl-select {
    padding-left: 24px;
    padding-right: 24px;
    text-align: center;
    text-align-last: center;
  }

  .pl-sort-select {
    width: clamp(96px, 21.7vw, 126px);
    padding-left: 16px;
  }

  .pl-select-wrap::after {
    right: 18px;
    border-left-width: 8px;
    border-right-width: 8px;
    border-top-width: 14px;
    margin-top: -6px;
  }

  .pl-sort .pl-btn {
    padding: 0 10px;
  }

  .page-products-wrap .pl-btn-outline {
    flex: 1 1 0;
    min-width: 0;
    height: 39px;
    padding: 0 6px;
    font-size: clamp(14px, 3.1vw, 18px);
    border: 1px solid #e25b2a;
    color: #e25b2a;
    background: #fff;
    border-radius: 0;
    white-space: nowrap;
    text-align: center;
    justify-content: center;
  }

  .page-products-wrap .pl-btn-outline:hover {
    background: #e25b2a;
    color: #fff;
    border-color: #e25b2a;
  }

  .page-products-wrap .pl-pagination .pl-page {
    width: auto;
    min-width: 28px;
    height: 24px;
    padding: 0 8px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 500;
    border-color: #e25b2a;
    color: #e25b2a;
  }

  .page-products-wrap .pl-pagination .pl-page.next {
    min-width: 52px;
    height: 24px;
    padding: 0 14px;
    font-size: 11px;
  }

  .page-products-wrap .pl-pagination a.pl-page:hover,
  .page-products-wrap .pl-pagination .pl-page.current {
    background: #e25b2a;
    border-color: #e25b2a;
    color: #fff;
  }

  .page-products-wrap .pl-pagination .pl-page.dots {
    border-color: #e25b2a;
    color: #e25b2a;
  }

  .pl-btn-outline {
    height: 32px;
    padding: 0 14px;
    font-size: 12px;
  }

  .page-products-wrap .products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 12px;
    overflow: visible;
    scroll-snap-type: none;
    padding: 0;
    margin: 0;
  }

  .page-products-wrap .pl-product-card {
    gap: 10px;
    min-width: 0;
  }

  .page-products-wrap .pl-image-box {
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .page-products-wrap .pl-product-card:hover .pl-image {
    transform: none;
  }

  .page-products-wrap .pl-fav-btn {
    width: 28px;
    height: 28px;
    font-size: 14px;
    top: 6px;
    right: 6px;
    border-color: #e25b2a;
    color: #e25b2a;
  }

  .page-products-wrap .pl-tag-sale {
    font-size: 10px;
    padding: 2px 8px;
  }

  .page-products-wrap .pl-name {
    font-size: 13px;
    line-height: 1.45;
  }

  .page-products-wrap .pl-name-main,
  .page-products-wrap .pl-name-sub {
    display: block;
  }

  .page-products-wrap .pl-name-sub {
    font-weight: 400;
  }

  .page-products-wrap .pl-price-wrap {
    gap: 6px;
  }

  .page-products-wrap .pl-price {
    font-size: 13px;
  }

  .page-products-wrap .pl-old-price {
    font-size: 12px;
  }

  .page-products-wrap .pl-pagination {
    margin-top: 32px;
  }
}

@media (max-width: 390px) {
  .page-products-container {
    padding-left: clamp(28px, 9vw, 34px);
    padding-right: clamp(28px, 9vw, 34px);
  }

  .pl-filters {
    gap: 6px;
  }

  .pl-select {
    width: clamp(62px, 20vw, 76px);
    padding: 0 20px 0 10px;
    font-size: clamp(11px, 3.5vw, 14px);
  }

  .pl-filter-form .pl-select {
    padding-left: 16px;
    padding-right: 16px;
  }

  .pl-sort-select {
    width: clamp(74px, 23vw, 88px);
    padding-left: 10px;
  }

  .pl-sort-label {
    font-size: clamp(11px, 3.5vw, 14px);
  }

  .pl-sort,
  .pl-sort-form {
    gap: 4px;
  }

  .pl-select-wrap::after {
    right: 9px;
    border-left-width: 5px;
    border-right-width: 5px;
    border-top-width: 9px;
    margin-top: -4px;
  }

  .page-products-wrap .pl-btn-outline {
    padding: 0 4px;
    font-size: clamp(11px, 3.5vw, 14px);
  }

  .pl-categories {
    gap: 6px;
  }
}

/* ========================================
   About Us Page
   ======================================== */
.about-hero {
  position: relative;
  width: 100%;
  height: 660px;
  margin-top: var(--header-height);
  background: transparent;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.1) 60%,
    transparent 100%
  );
  z-index: 2;
}

.about-hero-inner {
  position: relative;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  z-index: 3;
}

.about-hero-content {
  position: relative;
  width: 50%;
  padding-left: 50px;
}

.about-hero-badge {
  display: inline-block;
  color: #ffeebf;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
  letter-spacing: 2px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.about-hero-title {
  color: var(--color-white);
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.about-hero-underline {
  margin-bottom: 30px;
  display: flex;
  justify-content: flex-start;
}

.about-hero-underline img {
  width: 90px;
  height: 4px;
  object-fit: fill;
  display: block;
}

.about-hero-desc {
  color: var(--color-white);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about-hero-quote {
  color: var(--color-gold-deep);
  font-size: 14px;
  font-style: italic;
}

.about-hero-mobile {
  display: none;
}

.about-hero-mobile-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 375 / 190;
  overflow: hidden;
}

.about-hero-mobile-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-hero-mobile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1;
}

.about-hero-mobile-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 28px 46px 16px;
  text-align: left;
}

.about-hero-mobile-badge {
  margin: 0 0 6px;
  max-width: 240px;
  color: #ffeebf;
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.about-hero-mobile-title-wrap {
  margin-bottom: 16px;
}

.about-hero-mobile-title {
  margin: 0 0 7px;
  color: var(--color-white);
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.about-hero-mobile-underline {
  display: flex;
  justify-content: flex-start;
}

.about-hero-mobile-underline img {
  width: 80px;
  height: 3px;
  object-fit: fill;
  display: block;
}

.about-hero-mobile-desc {
  margin: 0;
  max-width: 259px;
  color: var(--color-white);
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about-hero-mobile-desc br {
  display: none;
}

/* Design Philosophy */
.about-philosophy {
  padding: 42px 0 31px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.philosophy-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 62px;
}

.philosophy-stats .stat-card[data-stat-key="1"] {
  order: 1;
}

.philosophy-stats .stat-card[data-stat-key="2"] {
  order: 2;
}

.philosophy-stats .stat-card[data-stat-key="3"] {
  order: 3;
}

.philosophy-stats .stat-card[data-stat-key="4"] {
  order: 4;
}

.philosophy-stats .stat-card[data-stat-key="5"] {
  order: 5;
}

.stat-card {
  width: 148px;
  height: 215px;
  border: 1px solid #1a1a1a;
  border-radius: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s;
}

.stat-card:hover {
  transform: translateY(-10px);
}

.stat-number {
  color: #e25b2a;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
}

.stat-text {
  color: #333;
  font-size: 14px;
  margin-top: 5px;
}

.philosophy-features {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 45px auto 48px;
  padding: 0 40px;
  /* Add side padding to keep it from hitting the edges */
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: center;
  width: 330px;
}

.feature-heading {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

.feature-icon img {
  width: 42px;
  height: 42px;
}

.feature-title-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.feature-title-group h3 {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin-bottom: 2px;
  white-space: nowrap;
}

.feature-title-group h4 {
  font-size: 14px;
  font-weight: 400;
  color: #b7a983;
  margin-bottom: 0;
  white-space: nowrap;
}

.feature-desc {
  font-size: 12px;
  color: #999;
  line-height: 1.6;
  margin: 0;
  padding-top: 3px;
  flex: 1;
}

/* Brand Timeline */
.about-timeline-section {
  padding: 100px 0;
  position: relative;
  background: #f2efe8;
  /* 設計稿淺米色 */
}

.timeline-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  height: 240px;
  margin-top: 60px;
}

/* 水平虛線 */
.timeline-line-dashed {
  position: absolute;
  top: 100px;
  /* 線條垂直位置 */
  left: 50px;
  right: 50px;
  height: 0;
  border-top: 2px dashed #4a4a4a;
  z-index: 1;
}

/* 端點小黑點 */
.line-dot-start,
.line-dot-end {
  position: absolute;
  top: -4px;
  width: 6px;
  height: 6px;
  background: #333;
  border-radius: 50%;
}

.line-dot-start {
  left: -3px;
}

.line-dot-end {
  right: -3px;
}

.timeline-nodes {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  z-index: 2;
  padding: 0 100px;
}

.timeline-node {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 200px;
  /* 寬度足以容納右側文字 */
}

/* 年份在上 */
.node-year {
  position: absolute;
  top: 30px;
  font-size: 20px;
  font-weight: 700;
  color: #111;
  font-family: var(--font-serif);
}

.timeline-node.current .node-year {
  color: #e25b2a;
  /* 橘色 */
}

/* 垂直連接線 */
.node-connector {
  position: absolute;
  top: 64px;
  width: 1px;
  height: 72px;
  background: #333333;
}

/* 線上的小圓點 */
.node-dot-small {
  position: absolute;
  top: 60px;
  /* 對齊虛線 */
  width: 8px;
  height: 8px;
  background: #702d15;
  border-radius: 50%;
}

/* 下方的內容區 (大圓點 + 文字) */
.node-content {
  position: absolute;
  top: 136px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  left: 50%;
  transform: translateX(-16px);
  /* 稍微向左偏移讓圓點對齊中心 */
}

.node-dot-large {
  width: 32px;
  height: 32px;
  background: #e25b2a;
  /* 橘色實心圓 */
  border-radius: 50%;
  opacity: 1;
  flex-shrink: 0;
}

.timeline-node.current .node-dot-large {
  opacity: 1;
}

.node-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  white-space: nowrap;
}

.node-title {
  font-size: 14px;
  color: #111;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1px;
}

.node-desc {
  font-size: 12px;
  line-height: 1.25;
  color: #888;
}

/* Brand Timeline Mobile (Figma 2054:4616) */
.about-timeline-mobile {
  display: none;
  background-color: #f2efe8;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.about-timeline-mobile-inner {
  max-width: 276px;
  margin: 0 auto;
  padding: 32px 0 48px;
}

.about-timeline-mobile-title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
}

.about-timeline-mobile-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  color: var(--color-text-primary);
  text-align: center;
}

.about-timeline-mobile-underline {
  width: 111px;
  height: 2px;
  background: #e25b2a;
}

.timeline-mobile-body {
  position: relative;
  margin-top: 56px;
  transform: translateX(-12px);
}

.timeline-mobile-spine {
  position: absolute;
  left: calc(127px - 2.5rem);
  top: calc(20px - 2rem);
  bottom: calc(20px - 2rem);
  width: 6px;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 1;
}

.timeline-mobile-spine-line {
  position: absolute;
  left: 50%;
  top: 6px;
  bottom: 6px;
  width: 0;
  transform: translateX(-50%);
  border-left: 1px dashed var(--color-dark);
}

.timeline-mobile-spine-dot {
  position: absolute;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-dark);
  transform: translateX(-50%);
}

.timeline-mobile-spine-dot--top {
  top: 0;
}

.timeline-mobile-spine-dot--bottom {
  bottom: 0;
}

.timeline-mobile-list {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.timeline-mobile-item {
  position: relative;
  min-height: 40px;
}

.timeline-mobile-label {
  position: absolute;
  left: 0;
  top: 7px;
  display: flex;
  align-items: center;
  gap: 5px;
  width: 135px;
}

.timeline-mobile-phase {
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  color: var(--color-text-primary);
  white-space: nowrap;
}

.timeline-mobile-item.current .timeline-mobile-phase {
  color: #e25b2a;
}

.timeline-mobile-dot-small {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #702d15;
  flex-shrink: 0;
}

.timeline-mobile-connector {
  position: absolute;
  left: 45px;
  top: 18px;
  width: 96px;
  height: 1px;
  background: var(--color-dark);
  z-index: 1;
}

.timeline-mobile-dot-large {
  position: absolute;
  left: 125px;
  top: 2px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e25b2a;
  z-index: 3;
}

.timeline-mobile-text {
  margin-left: 163px;
  min-height: 40px;
  width: max-content;
  max-width: none;
  overflow: visible;
}

.timeline-mobile-event-title {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: var(--color-text-primary);
  white-space: nowrap;
  overflow: visible;
  text-overflow: clip;
}

.timeline-mobile-event-desc {
  margin-top: 3px;
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  color: var(--color-text-light);
  white-space: nowrap;
  overflow: visible;
  text-overflow: clip;
}

/* Brand Honors */
.about-honors {
  padding: 100px 0;
  max-width: 100%;
  margin: 0 auto;
  background: #fff;
  /* 改回白色 */
}

.honors-grid {
  display: flex;
  gap: 33px;
  justify-content: center;
  margin-top: 60px;
}

.honor-card {
  width: 178px;
  height: 194px;
  border: 1px solid #e25b2a;
  border-radius: 12px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  /* 文字內容居底 */
  padding: 24px 20px;
  position: relative;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  overflow: hidden;
  text-align: center;
}

.honor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(183, 169, 131, 0.1);
}

.honor-icon {
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.honor-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.honor-text {
  position: relative;
  z-index: 2;
  width: 100%;
}

.honor-text h3 {
  font-size: 15px;
  font-weight: 700;
  color: #e25b2a;
  /* 橘色標題 */
  margin-bottom: 4px;
}

.honor-text p {
  font-size: 12px;
  color: #888;
  margin: 0;
}

/* Design Team */
.about-team {
  padding: 100px 0;
  background: #fff;
  /* 改回白色 */
  color: #111;
}

.about-team .section-title {
  color: #111;
}

/* About 頁電腦端區塊標題與底線 */
@media (min-width: 769px) {
  .about-philosophy .section-title,
  .about-timeline-section .section-title,
  .about-honors .section-title,
  .about-team .section-title {
    color: #111;
    text-align: center;
    font-family: "Noto Sans TC", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }

  .about-philosophy .section-title-underline,
  .about-timeline-section .section-title-underline,
  .about-honors .section-title-underline,
  .about-team .section-title-underline {
    margin-top: 0;
    width: 200px;
    height: 0;
    border-top: 2px solid #e25b2a;
    display: block;
  }

  .about-philosophy .section-title-underline img,
  .about-timeline-section .section-title-underline img,
  .about-honors .section-title-underline img,
  .about-team .section-title-underline img {
    display: none;
  }
}

.team-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  gap: 30px;
  justify-content: center;
}

.team-card {
  width: 220px;
  height: 298px;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-photo {
  transform: scale(1.05);
}

.team-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 82px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
  backdrop-filter: blur(2px);
  border-radius: 0 0 22px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
  transition: height 0.3s ease;
}

.team-name-role {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}

.team-name-role h3 {
  font-size: 19px;
  font-weight: 700;
  color: #fff;
}

.team-name-role span {
  font-size: 15px;
  color: #ffeebf;
}

.team-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 5px 0;
}

@media (min-width: 769px) {
  .about-team .team-divider {
    display: block !important;
    flex: 0 0 auto;
    position: relative;
    z-index: 5;
    width: calc(100% - 24px);
    height: 1px;
    margin: 7px auto 6px;
    background: rgba(255, 255, 255, 0.82) !important;
  }
}

.team-desc {
  display: flex;
  gap: 10px;
  font-size: 11px;
  color: #ddd;
  font-weight: 300;
}

/* Subscribe Section */
.about-subscribe {
  position: relative;
  height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.subscribe-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.subscribe-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.subscribe-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 600px;
  padding: 0 20px;
}

.subscribe-subtitle {
  color: #ffeebf;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 15px;
  display: block;
}

.subscribe-title {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 30px;
}

.subscribe-form {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  height: 40px;
}

.subscribe-form input {
  flex: 1;
  height: 40px;
  background: transparent;
  border: 1px solid #ffffff;
  border-right: none;
  color: #fff;
  font-size: 13px;
  padding: 0 15px;
  outline: none;
  box-sizing: border-box;
}

.subscribe-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.subscribe-form button {
  background: #e25b2a;
  color: #fff;
  border: 1px solid #fff;
  width: 100px;
  height: 40px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 0;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  box-sizing: border-box;
}

.subscribe-form button:hover {
  background: #fff;
  color: #e25b2a;
}

/* Responsive */
@media (max-width: 1200px) {
  .about-hero-visual {
    right: -50px;
    width: 55%;
  }

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

  .philosophy-features {
    gap: 20px;
    flex-wrap: wrap;
  }

  .timeline-nodes {
    width: 90%;
  }
}

@media (max-width: 768px) {
  .about-hero {
    display: none !important;
  }

  .about-hero-mobile {
    display: block;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: var(--header-height);
    overflow: hidden;
  }

  .about-hero-mobile-inner {
    width: 100%;
    aspect-ratio: 375 / 190;
  }

  .about-philosophy .section-title-wrap,
  .about-honors .section-title-wrap,
  .about-team .section-title-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
  }

  .about-philosophy .section-title,
  .about-honors .section-title,
  .about-team .section-title,
  .about-timeline-mobile-title {
    align-self: stretch;
    margin: 0;
    color: #111;
    text-align: center;
    font-family: Inter, sans-serif;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    word-break: break-word;
  }

  .about-philosophy .section-title-underline,
  .about-honors .section-title-underline,
  .about-team .section-title-underline,
  .about-timeline-mobile-underline {
    margin-top: 0;
    width: 110.854px;
    height: 0;
    flex-shrink: 0;
    border-top: 1.109px solid #e25b2a;
    background: none;
    display: block;
  }

  .about-philosophy .section-title-underline img,
  .about-honors .section-title-underline img,
  .about-team .section-title-underline img {
    display: none;
  }

  .about-philosophy {
    padding: 40px 0;
  }

  .philosophy-features {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 32px;
    width: 272px;
    max-width: calc(100% - 103px);
    margin: 0 auto 28px;
    padding: 0;
  }

  .feature-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    width: auto;
    max-width: 100%;
  }

  .feature-heading {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    min-width: 84px;
  }

  .feature-icon img {
    width: 24px;
    height: 24px;
  }

  .feature-title-group {
    align-items: flex-start;
  }

  .feature-title-group h3 {
    font-size: 13px;
    font-weight: 600;
    line-height: 22px;
    color: #000;
    margin: 0;
    white-space: nowrap;
  }

  .feature-title-group h4 {
    font-size: 12px;
    line-height: 22px;
  }

  .feature-desc {
    font-size: 12px;
    font-weight: 400;
    line-height: 13px;
    color: #888;
    margin: 0;
    padding-top: 0;
    flex: 0 1 auto;
    white-space: pre-line;
  }

  .feature-desc br {
    display: block;
    margin-top: -1px;
  }

  .philosophy-stats {
    display: grid;
    grid-template-columns: repeat(2, 124px);
    column-gap: 24px;
    row-gap: 12px;
    justify-content: center;
    width: 272px;
    max-width: calc(100% - 40px);
    margin: 28px auto 0;
  }

  .stat-card {
    width: 124px;
    height: 160px;
    border-radius: 62px;
    padding: 0 10px;
  }

  .stat-card:hover {
    transform: none;
  }

  .stat-number {
    font-size: 18px;
    line-height: 22px;
  }

  .stat-text {
    font-size: 11px;
    line-height: 11px;
    margin-top: 0;
    text-align: center;
    max-width: 104px;
  }

  .about-timeline-section {
    display: none !important;
  }

  .about-timeline-mobile {
    display: block;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: 50px;
    padding-right: 49px;
    min-height: 570px;
  }

  .about-timeline-mobile-inner {
    max-width: 276px;
  }

  .about-honors {
    box-sizing: border-box;
    min-height: min(720px, 100svh);
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .honors-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    width: min(257px, calc(100% - 40px));
    max-width: 257px;
    margin: 0 auto;
    align-self: center;
    flex-wrap: nowrap;
  }

  .honor-card {
    width: 257px;
    height: auto;
    min-height: 108px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 18px 20px;
    border: 1px solid #e25b2a;
    border-radius: 11px;
    text-align: center;
  }

  .honor-card:hover {
    transform: none;
    box-shadow: none;
  }

  .honor-icon {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    order: -1;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    margin-right: 0;
  }

  .honor-icon img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(46%) sepia(95%) saturate(1533%)
      hue-rotate(346deg) brightness(93%) contrast(90%);
  }

  .honor-text {
    flex: 0 1 146px;
    min-width: 0;
    text-align: center;
  }

  .honor-text h3 {
    font-size: 14px;
    line-height: 17px;
    margin-bottom: 5px;
    color: #e25b2a;
    font-weight: 700;
  }

  .honor-text p {
    font-size: 12px;
    line-height: 14px;
    color: #888888;
    white-space: normal;
  }

  .about-team {
    padding-top: 30px;
  }

  .team-grid {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .team-card {
    width: 100%;
    height: 180px;
    border-radius: 20px;
  }

  .team-card:hover .team-photo {
    transform: none;
  }

  .team-info {
    height: 82px;
    padding: 10px 20px;
    border-radius: 0 0 20px 20px;
  }

  .about-team .team-divider {
    display: block !important;
    flex: 0 0 auto;
    width: calc(100% - 32px);
    height: 1px;
    margin: 7px auto 6px;
    background: rgba(255, 255, 255, 0.82) !important;
  }

  .team-desc {
    font-size: 13px;
    color: #ffffff;
    font-weight: 400;
    justify-content: center;
    width: 100%;
    text-align: center;
    gap: 8px;
  }

  .team-desc p {
    margin: 0;
    width: auto;
    flex: 0 0 auto;
    text-align: center;
    white-space: nowrap;
  }

  .about-subscribe {
    height: 205px;
  }

  .subscribe-subtitle {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .subscribe-title {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.4;
  }

  .subscribe-bg {
    background-image: url("assets/images/about-subscribe-mobile-bg.png") !important;
    background-position: center center;
  }

  .subscribe-form {
    width: 100%;
    max-width: 335px;
    height: 40px;
    flex-direction: row;
    gap: 0;
    margin: 0 auto;
  }

  .subscribe-form input {
    border-right: none;
  }

  .subscribe-form button {
    width: 100px;
  }
}

/* ============================================================
   AJAX 加入購物車 Toast 與動畫樣式
   ============================================================ */
.stylux-toast-container {
  position: fixed;
  top: 100px;
  right: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stylux-toast {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(183, 169, 131, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 14px 22px;
  border-radius: 8px;
  color: #333333;
  font-family: "Noto Sans TC", sans-serif;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateX(120%);
  transition:
    transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    opacity 0.4s;
  opacity: 0;
  min-width: 280px;
}

.stylux-toast.show {
  transform: translateX(0);
  opacity: 1;
}

.stylux-toast-icon {
  width: 20px;
  height: 20px;
  background: #8b9e6b;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: bold;
  flex-shrink: 0;
}

.stylux-toast-close {
  margin-left: auto;
  border: none;
  background: transparent;
  color: #bbb;
  cursor: pointer;
  padding: 0 0 0 12px;
  font-size: 14px;
  line-height: 1;
  transition: color 0.2s;
}

.stylux-toast-close:hover {
  color: #333333;
}

/* 按鈕載入中與成功特效 */
.add-to-cart-btn-ajax {
  position: relative;
  transition: all 0.3s ease;
}

.add-to-cart-btn-ajax.loading {
  opacity: 0.6;
  pointer-events: none;
}

@keyframes popScale {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.3);
  }

  100% {
    transform: scale(1);
  }
}

.add-to-cart-btn-ajax.added svg {
  animation: popScale 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.add-to-cart-btn-ajax.added svg path {
  fill: #8b9e6b !important;
}
