/* ========== CSS Variables ========== */
:root {
  --primary: #f09319;
  --primary-light: #f4a85c;
  --primary-dark: #d4810f;
  --accent: #4f2a11;
  --light: #fefbf4;
  --light2: #f9f9f9;
  --dark: #4f2a11;
  --text: #4f2a11;
  --text-light: #6c4e31;
  --white: #FFFFFF;
  --border: #dde0e6;
  --danger: #D64933;
  --success: #2A8833;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Nunito', 'Inter', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

/* ========== Reset & Base ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
.container { max-width: 1560px; margin: 0 auto; padding: 0 1.5rem; }

/* Section spacing — PETZY style responsive */
section { padding: 5rem 0; }
@media (max-width: 1429px) { section { padding: 4rem 0; } }
@media (max-width: 1199px) { section { padding: 3rem 0; } }
@media (max-width: 991px) { section { padding: 3rem 0; } }
@media (max-width: 767px) { section { padding: 2rem 0; } }
@media (max-width: 575px) { section { padding: 1.5rem 0; } }

/* ========== Search Overlay ========== */
.search-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.search-overlay.active { display: flex; }
.search-overlay-content {
  background: #fff;
  padding: 2.5rem;
  border-radius: 16px;
  width: 90%;
  max-width: 560px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.search-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: none; border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #999;
  transition: color 0.2s;
}
.search-close:hover { color: #333; }
.search-form {
  display: flex;
  gap: 0.75rem;
}
.search-input {
  flex: 1;
  padding: 1rem 1.2rem;
  border: 2px solid var(--border);
  border-radius: 50px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}
.search-input:focus { border-color: var(--primary); }
.search-submit {
  padding: 0.75rem 1.5rem;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.search-submit:hover { background: var(--primary-dark); }

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
}
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: #fff; }
.btn-outline { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn-outline:hover { background: var(--accent); color: #fff; }
.btn-light { background: #fff; color: var(--accent); border-color: #fff; }
.btn-light:hover { background: var(--light); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.8rem; }

/* ========== Announcement Bar ========== */
.announcement-bar {
  background: var(--accent);
  color: #fff;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.5rem 1rem;
  position: relative;
}
.announcement-bar a { color: #fff; text-decoration: underline; }
.announcement-bar a:hover { color: var(--primary-light); }

/* ========== Header ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #dde0e6;
}
.top-bar {
  background: #2D2D2D;
  color: #ccc;
  font-size: 0.75rem;
  padding: 0.4rem 0;
  text-align: center;
}
.top-bar a { color: #fff; }
.top-bar a:hover { color: var(--primary-light); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.logo span { color: var(--primary); }
.main-nav { display: flex; gap: 1.5rem; }
.main-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  color: #6c4e31;
  padding: 0.5rem 0.4rem;
  transition: color 0.2s;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.4rem;
  right: 0.4rem;
  height: 2px;
  background: transparent;
  transition: background 0.2s;
}
.main-nav a:hover { color: var(--primary); }
.main-nav a:hover::after { background: var(--primary); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.header-actions .icon-btn {
  background: none;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0.4rem;
  color: var(--text);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.header-actions .icon-btn:hover { color: var(--primary); }
.header-actions .icon-btn .icon-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
}
.cart-toggle {
  position: relative;
  background: none;
  border: none;
  font-size: 0.9rem;
  cursor: pointer;
  padding: 0.5rem 0.5rem 0.5rem 0.8rem;
  transition: transform 0.2s;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text);
}
.cart-toggle:hover { color: var(--primary); }
.cart-badge {
  position: absolute;
  top: 0;
  right: -6px;
  background: var(--primary);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile nav */
.mobile-toggle { display: none; }
@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
    background: none; border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--text);
  }
  .main-nav { 
    position: fixed;
    top: 0; left: -100%;
    width: 280px; height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.2rem;
    transition: left 0.3s ease;
    z-index: 200;
    box-shadow: 4px 0 20px rgba(0,0,0,0.1);
  }
  .main-nav.open { left: 0; }
  .main-nav .nav-close {
    align-self: flex-end;
    background: none; border: none;
    font-size: 1.3rem;
    cursor: pointer;
    margin-bottom: 1rem;
  }
  .nav-overlay.active {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 150;
  }
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 0.8rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
  z-index: 50;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown .dropdown-menu a {
  display: block;
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
  color: var(--text);
}
.nav-dropdown .dropdown-menu a:hover { background: var(--light); }

/* ========== Section Titles ========== */
.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-title p {
  color: var(--text-light);
  font-size: 0.95rem;
  max-width: 500px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .section-title h2 { font-size: 1.5rem; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .product-card img { height: 180px; }
  .hero-content h1 { font-size: 2rem; }
  .hero-content p { font-size: 0.9rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; gap: 0.8rem; }
  .hero-content h1 { font-size: 1.6rem; }
  .container { padding: 0 0.8rem; }
  .hero { min-height: 60vh; padding: 2rem 0; }
  .section-title h2 { font-size: 1.2rem; }
  .product-card { padding: 0.8rem; }
  .product-card img { height: 150px; }
  .product-title { font-size: 0.85rem; }
  .product-price { font-size: 1rem; }
  .btn { font-size: 0.8rem; padding: 0.5rem 1rem; }
  .footer { font-size: 0.8rem; padding: 1.5rem 0; }
}

/* ========== Hero ========== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #FAF7F0 0%, #F5EDE0 50%, #E8D5B7 100%);
  overflow: hidden;
}
.hero-overlay { position: absolute; inset: 0; opacity: 0.3; }
.hero-content { position: relative; z-index: 1; max-width: 650px; }
.hero-content h1 span {
  display: block;
  color: #E8722A;
  font-size: 2.5rem;
  margin-top: 0.25rem;
}
.hero-content p {
  font-size: 1.15rem;
  color: #777;
  margin-bottom: 2rem;
  max-width: 500px;
  line-height: 1.7;
}

/* ========== Sections ========== */
.section { padding: 5rem 0; }
.section-subtitle {
  text-align: center;
  color: #777;
  margin-bottom: 3rem;
  font-size: 1.05rem;
}
.alt-bg { background: #FAF7F0; }

/* ========== Categories ========== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 1.25rem;
}
.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 2rem 1rem;
  background: #fff;
  border: 1px solid #E8E0D5;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-align: center;
}
.category-card:hover {
  border-color: #E8722A;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}
.category-icon { font-size: 2rem; font-weight: 700; color: #E8722A; }
.category-card h3 { font-size: 1rem; font-weight: 600; color: #2D2D2D; }

/* ========== Product Grid ========== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.75rem;
}

/* ========== Product Detail ========== */
.breadcrumb { padding: 1.5rem 0; font-size: 0.9rem; color: #777; }
.breadcrumb a { color: #E8722A; }
.breadcrumb a:hover { text-decoration: underline; }
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.product-detail-image {
  border-radius: 12px;
  overflow: hidden;
  background: #FAF7F0;
}
.product-detail-image img { width: 100%; height: auto; }
.product-detail-info { display: flex; flex-direction: column; gap: 1rem; }
.product-category {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #E8722A;
  font-weight: 600;
}
.product-detail-info h1 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: #2D2D2D;
  line-height: 1.2;
}
.product-price { font-size: 1.8rem; font-weight: 700; color: #E8722A; }
.product-description { line-height: 1.8; color: #333; }
.product-features h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.75rem; color: #2D2D2D; }
.product-features ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.product-features li { padding-left: 1.4rem; position: relative; font-size: 0.95rem; }
.product-features li::before { content: '+'; position: absolute; left: 0; color: #E8722A; font-weight: 700; }
.variant-group { margin-bottom: 1rem; }
.variant-group label { display: block; font-weight: 600; margin-bottom: 0.5rem; font-size: 0.9rem; color: #2D2D2D; }
.color-options { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.color-btn {
  padding: 0.5rem 1.2rem;
  border: 2px solid #E8E0D5;
  border-radius: 50px;
  background: #fff;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.2s;
}
.color-btn:hover { border-color: #E8722A; }
.color-btn.active { border-color: #E8722A; background: #E8722A; color: #fff; }
.qty-selector { display: flex; align-items: center; width: fit-content; border: 1px solid #E8E0D5; border-radius: 50px; overflow: hidden; }
.qty-btn {
  width: 44px; height: 44px; border: none; background: #FAF7F0; cursor: pointer;
  font-size: 1.2rem; font-weight: 600; color: #2D2D2D; transition: background 0.2s;
}
.qty-btn:hover { background: #F5EDE0; }
.qty-selector input {
  width: 60px; height: 44px; text-align: center; border: none;
  border-left: 1px solid #E8E0D5; border-right: 1px solid #E8E0D5;
  font-size: 1rem; font-weight: 600; -moz-appearance: textfield;
}
.qty-selector input::-webkit-inner-spin-button, .qty-selector input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.add-to-cart-detail { margin-top: 0.5rem; width: 100%; }

/* ========== Hero enhancements ========== */
.hero-tagline {
  display: inline-block;
  background: #E8722A;
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-highlight {
  display: block;
  color: #E8722A;
  font-size: 2.5rem;
  margin-top: 0.25rem;
}
.hero-discount { font-size: 1.15rem; color: #777; margin-bottom: 1rem; }
.hero-discount strong { color: #E8722A; }
.hero-urgent {
  display: inline-block;
  background: #D64933;
  color: #fff;
  padding: 0.3rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  animation: pulse 2s infinite;
  margin-bottom: 1.5rem;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ========== Countdown ========== */
.hero-countdown {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(232, 114, 42, 0.1);
  border: 1px solid rgba(232, 114, 42, 0.3);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  min-width: 70px;
}
.cd-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: #2D2D2D;
  line-height: 1;
}
.cd-label {
  font-size: 0.75rem;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.25rem;
}

/* ========== Customer Feedback ========== */
.customer-feedback {
  text-align: center;
  background: #fff;
  border-bottom: 1px solid #E8E0D5;
}
.emoji-inline { font-size: 1.3rem; }
.feedback-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.feedback-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.5rem;
  border: 1px solid #E8E0D5;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.2s;
}
.feedback-link:hover {
  border-color: #E8722A;
  color: #E8722A;
  transform: translateY(-2px);
}
.social-icon { font-size: 1.2rem; }

/* ========== Brand Section (Our Story) ========== */
.brand-section {
  background: linear-gradient(135deg, #2D2D2D, #1A1A1A);
  color: #fff;
}
.brand-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.brand-text h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.brand-text p {
  margin-bottom: 1rem;
  color: #ccc;
  line-height: 1.8;
}
.brand-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}
.badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  font-size: 0.85rem;
  color: #ddd;
}
.brand-text .btn-outline {
  border-color: #fff;
  color: #fff;
}
.brand-text .btn-outline:hover {
  background: #fff;
  color: #2D2D2D;
}
.brand-image img {
  border-radius: 20px;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

/* ========== Reviews Section ========== */
.reviews-section {
  background: #FAF7F0;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.review-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid #E8E0D5;
  transition: all 0.3s;
}
.review-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}
.review-stars {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}
.review-text {
  font-style: italic;
  line-height: 1.7;
  color: #555;
  margin-bottom: 0.75rem;
}
.review-author {
  font-size: 0.85rem;
  color: #777;
  font-weight: 500;
}
.reviews-more {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
}
.review-divider {
  color: #DDD;
  font-size: 1.2rem;
}

/* ========== Highlights Section ========== */
.highlights-section {
  background: #fff;
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.highlight-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid #E8E0D5;
  border-radius: 12px;
  transition: all 0.3s;
}
.highlight-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.highlight-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.highlight-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #2D2D2D;
  margin-bottom: 0.5rem;
}
.highlight-card p {
  font-size: 0.9rem;
  color: #777;
}
.highlights-cta {
  text-align: center;
  margin-top: 1rem;
}

/* ========== Solday Promise 信任承诺条 ========== */
.promise-bar {
  background: linear-gradient(135deg, #2D1810 0%, #4F2A11 100%);
  padding: 1.1rem 0;
  border-bottom: 3px solid #E8722A;
}
.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.promise-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: #fff;
}
.promise-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(232,114,42,0.18);
  border: 1px solid rgba(232,114,42,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.promise-title {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 2px;
}
.promise-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.3;
}
@media (max-width: 768px) {
  .promise-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
@media (max-width: 480px) {
  .promise-item { flex-direction: column; text-align: center; gap: 0.4rem; }
}

/* ========== 爆款系列聚焦 (series-section) ========== */
.series-section { background: #fff; }
.series-flower { background: #FAF7F0; }
.series-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.series-tag {
  display: inline-block;
  background: #E8722A;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 0.6rem;
}
.series-sub { color: #666; font-size: 0.95rem; max-width: 560px; line-height: 1.5; }
.series-cta { white-space: nowrap; }
@media (max-width: 600px) {
  .series-header { flex-direction: column; align-items: flex-start; }
}

/* ========== Blog Section ========== */
.blog-section {
  background: #FAF7F0;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #E8E0D5;
  transition: all 0.3s;
}
.blog-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}
.blog-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}
.blog-card h3 {
  padding: 1rem 1.25rem 0.5rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  line-height: 1.4;
}
.blog-card h3 a { color: #2D2D2D; }
.blog-card h3 a:hover { color: #E8722A; }
.blog-card p {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.9rem;
  color: #777;
  line-height: 1.6;
}
.blog-cta {
  text-align: center;
  margin-top: 1rem;
}

/* ========== Subscribe Section ========== */
.subscribe-section {
  background: linear-gradient(135deg, #E8722A 0%, #C95F1A 100%);
  color: #fff;
  text-align: center;
}
.subscribe-inner {
  max-width: 550px;
  margin: 0 auto;
}
.subscribe-inner h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}
.subscribe-inner p {
  margin-bottom: 2rem;
  opacity: 0.9;
}
.subscribe-form {
  display: flex;
  gap: 0.75rem;
}
.subscribe-form input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  outline: none;
}
.subscribe-form .btn {
  background: #2D2D2D;
  border-color: #2D2D2D;
}
.subscribe-form .btn:hover {
  background: #000;
}

/* ========== Bestsellers Section ========== */
.bestsellers-section {
  background: #FAF7F0;
}

/* ========== Brand Story ========== */
.brand-story { background: #2D2D2D; color: #fff; }
.brand-story-content { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.brand-text h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.brand-text p { margin-bottom: 1rem; color: #ccc; line-height: 1.8; }
.brand-text .btn-outline { border-color: #fff; color: #fff; }
.brand-text .btn-outline:hover { background: #fff; color: #2D2D2D; }
.brand-image img { border-radius: 20px; width: 100%; }

/* ========== FAQ / 选购指南 SEO 长尾区 (seo-guide-section) ========== */
.seo-guide-section { background: #F5ECE0; }
.seo-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.seo-guide-col {
  background: #fff;
  border-radius: 14px;
  padding: 1.8rem 1.6rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.seo-guide-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #2D1810;
  margin-bottom: 1.1rem;
  padding-bottom: 0.7rem;
  border-bottom: 2px solid #E8722A;
}
.seo-guide-list { list-style: none; margin: 0; padding: 0; }
.seo-guide-list li { margin-bottom: 0.7rem; padding-left: 1.1rem; position: relative; }
.seo-guide-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: #E8722A;
  font-weight: 700;
}
.seo-guide-list a { color: #555; font-size: 0.92rem; line-height: 1.5; transition: color 0.2s; }
.seo-guide-list a:hover { color: #E8722A; }
@media (max-width: 900px) {
  .seo-guide-grid { grid-template-columns: 1fr; gap: 1rem; }
}

/* ========== Newsletter ========== */
.newsletter {
  background: linear-gradient(135deg, #E8722A 0%, #C95F1A 100%);
  text-align: center;
  color: #fff;
}
.newsletter-content { max-width: 550px; margin: 0 auto; }
.newsletter-content h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.newsletter-content p { margin-bottom: 2rem; opacity: 0.9; }
.newsletter-form { display: flex; gap: 0.75rem; }
.newsletter-form input {
  flex: 1; padding: 1rem 1.5rem; border: none; border-radius: 50px;
  font-size: 1rem; outline: none;
}


/* ========== Footer Newsletter ========== */
.footer-newsletter {
  background: #222;
  padding: 3rem 0;
  border-bottom: 1px solid #333;
}
.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.newsletter-text h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 0.3rem;
}
.newsletter-text p {
  color: #999;
  font-size: 0.9rem;
}
.newsletter-form {
  display: flex;
  gap: 0.5rem;
  min-width: 400px;
}
.newsletter-form input {
  flex: 1;
  padding: 0.8rem 1.2rem;
  border: 1px solid #444;
  border-radius: 50px;
  background: #333;
  color: #fff;
  font-size: 0.9rem;
  outline: none;
}
.newsletter-form input:focus { border-color: var(--primary); }
.newsletter-form input::placeholder { color: #777; }
.newsletter-form .btn {
  white-space: nowrap;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .newsletter-inner { flex-direction: column; text-align: center; }
  .newsletter-form { min-width: unset; width: 100%; }
}

/* ========== Footer ========== */
.site-footer { background: #2D2D2D; color: #ccc; padding: 3rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 3rem; }
.footer-brand .logo { color: #fff; font-size: 1.5rem; }
.footer-brand p { margin-top: 1rem; font-size: 0.9rem; color: #999; max-width: 300px; line-height: 1.7; }
.footer-links h4 { color: #fff; margin-bottom: 1rem; }
.footer-links a { display: block; color: #999; margin-bottom: 0.5rem; font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: #E8722A; }
.footer-bottom { border-top: 1px solid #444; padding: 1.5rem 0; }
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.85rem; color: #777; }
.footer-bottom a { color: #999; }
.footer-bottom a:hover { color: var(--primary); }
.payment-methods { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.4rem 0.75rem; font-size: 0.8rem; color: #666; }
.payment-methods span { background: rgba(255,255,255,0.05); padding: 0.2rem 0.6rem; border-radius: 4px; }

/* ========== Product List Page ========== */
.page-layout { display: grid; grid-template-columns: 240px 1fr; gap: 2.5rem; padding: 2rem 0; }
.sidebar { padding: 1.5rem 0; }
.sidebar h2 { font-size: 1.1rem; font-weight: 700; color: #2D2D2D; margin-bottom: 1rem; }
.category-list { list-style: none; }
.category-list li { margin-bottom: 0.25rem; }
.category-list a { display: block; padding: 0.6rem 1rem; border-radius: 8px; font-size: 0.95rem; color: #333; transition: all 0.2s; }
.category-list a:hover { background: #FAF7F0; color: #E8722A; }
.category-list a.active { background: #E8722A; color: #fff; font-weight: 600; }
.page-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: #2D2D2D;
  margin-bottom: 0.25rem;
}
.product-count { color: #777; margin-bottom: 1.5rem; font-size: 0.9rem; }
.empty-state { text-align: center; padding: 3rem; }
.empty-state p { margin-bottom: 1.5rem; color: #777; }

/* ========== Cart Sidebar ========== */
.cart-sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 199;
}
.cart-sidebar-overlay.open { display: block; }
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  height: 100%;
  background: #fff;
  z-index: 200;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: -10px 0 30px rgba(0,0,0,0.1);
}
.cart-sidebar.open { right: 0; }
.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid #E8E0D5;
}
.cart-header h2 { font-size: 1.3rem; font-weight: 700; color: #2D2D2D; }
.cart-close { background: none; border: none; font-size: 1.5rem; cursor: pointer; color: #777; }
.cart-close:hover { color: #2D2D2D; }
.cart-items { flex: 1; overflow-y: auto; padding: 1.5rem; }
.cart-empty { text-align: center; color: #777; padding: 2rem 0; }
.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #E8E0D5;
}
.cart-item img { width: 70px; height: 85px; object-fit: cover; border-radius: 8px; }
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 600; color: #2D2D2D; margin-bottom: 0.2rem; }
.cart-item-color { font-size: 0.85rem; color: #777; }
.cart-item-price { font-weight: 600; color: #E8722A; }
.cart-item-actions { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.5rem; }
.cart-item-qty { display: flex; align-items: center; border: 1px solid #E8E0D5; border-radius: 6px; overflow: hidden; }
.cart-item-qty button { width: 30px; height: 30px; border: none; background: #FAF7F0; cursor: pointer; font-weight: 700; }
.cart-item-qty span { width: 32px; text-align: center; font-size: 0.9rem; }
.cart-item-remove { background: none; border: none; color: #777; cursor: pointer; font-size: 0.85rem; }
.cart-item-remove:hover { color: #D64933; }
.cart-footer { padding: 1.5rem; border-top: 1px solid #E8E0D5; }
.cart-total { display: flex; justify-content: space-between; margin-bottom: 1rem; font-size: 1.1rem; font-weight: 700; }
.cart-total span:last-child { color: #E8722A; }
.checkout-btn { width: 100%; }

/* ========== Checkout ========== */
.checkout-layout { display: grid; grid-template-columns: 1.3fr 1fr; gap: 2.5rem; padding: 1.5rem 0 3rem; }
.checkout-section { margin-bottom: 2rem; }
.checkout-section h2 {
  font-size: 1.2rem; font-weight: 700; color: #2D2D2D;
  margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 1px solid #E8E0D5;
}
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-weight: 500; margin-bottom: 0.35rem; font-size: 0.9rem; color: #2D2D2D; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.85rem 1rem; border: 1px solid #E8E0D5;
  border-radius: 8px; font-size: 0.95rem; font-family: 'Inter', sans-serif;
  transition: border-color 0.2s; outline: none; background: #fff;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: #E8722A; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-actions { display: flex; gap: 1rem; margin-top: 1.5rem; }
.checkout-summary { background: #FAF7F0; padding: 1.5rem; border-radius: 12px; position: sticky; top: 90px; }
.checkout-summary h2 { font-size: 1.2rem; font-weight: 700; margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 1px solid #E8E0D5; }
.checkout-items { margin-bottom: 1.5rem; }
.checkout-item { display: flex; gap: 0.75rem; padding: 0.75rem 0; border-bottom: 1px solid #E8E0D5; align-items: center; }
.checkout-item img { width: 50px; height: 60px; object-fit: cover; border-radius: 6px; }
.checkout-item-info { flex: 1; }
.checkout-item-name { font-weight: 600; font-size: 0.9rem; }
.checkout-item-color, .checkout-item-qty { font-size: 0.8rem; color: #777; }
.checkout-item-price { font-weight: 600; color: #E8722A; }
.checkout-totals { border-top: 2px solid #2D2D2D; padding-top: 1rem; }
.total-row { display: flex; justify-content: space-between; margin-bottom: 0.5rem; font-size: 0.95rem; }
.total-row.total-final { font-size: 1.2rem; font-weight: 700; color: #2D2D2D; margin-top: 0.75rem; padding-top: 0.75rem; border-top: 1px solid #E8E0D5; }

/* ========== Order Confirmation ========== */
.order-confirmation { text-align: center; padding: 3rem 0; max-width: 600px; margin: 0 auto; }
.confirmation-icon { font-size: 4rem; margin-bottom: 1rem; }
.order-confirmation h1 { font-family: var(--font-heading); font-size: 2rem; color: #2D2D2D; margin-bottom: 0.5rem; }
.confirmation-id { font-size: 1.2rem; color: #E8722A; font-weight: 700; }
.confirmation-details { text-align: left; background: #FAF7F0; padding: 1.5rem; border-radius: 12px; margin: 2rem 0; }
.confirmation-section { margin-bottom: 1.5rem; }
.confirmation-section h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.confirmation-section ul { list-style: none; }
.confirmation-section li { margin-bottom: 0.3rem; font-size: 0.9rem; }
.confirmation-total { font-size: 1.1rem; margin-top: 0.75rem; }
.error-message { color: #D64933; margin-bottom: 1rem; }

/* ========== Admin Login ========== */
.admin-login { max-width: 400px; margin: 4rem auto; text-align: center; }
.admin-login h1 { font-family: var(--font-heading); margin-bottom: 2rem; }
.admin-login form { text-align: left; }

/* ========== Related Products ========== */
.related-products { padding: 2rem 0 4rem; }

/* ========== Responsive ========== */
/* ========== Mobile Responsive ========== */

/* ── Header: hamburger nav on mobile ── */
.mobile-toggle { display: none; font-size: 1.5rem; background: none; border: none; cursor: pointer; color: #2D2D2D; padding: 0.5rem; }

/* ========== Category Collection Section (原站 block 0 style) ========== */
.category-collection { padding: 2rem 0; background: #F7F3EE; }
.cc-wrapper { display: grid; grid-template-columns: 1.3fr 1fr; gap: 1.5rem; align-items: stretch; }
.cc-categories { min-width: 0; }
.cc-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.75rem; }
.cc-card { border-radius: 16px; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
.cc-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.cc-link { display: block; padding: 1.25rem 1rem; text-decoration: none; color: inherit; }
.cc-img-wrap { height: 140px; display: flex; align-items: center; justify-content: center; margin-bottom: 0.75rem; }
.cc-img-wrap img { max-width: 100%; max-height: 100%; object-fit: contain; }
.cc-info h3 { font-size: 1rem; font-weight: 700; color: #2D2D2D; margin: 0 0 0.2rem; }
.cc-info p { font-size: 0.75rem; color: #888; margin: 0; text-transform: uppercase; letter-spacing: 0.5px; }
.cc-label { display: inline-block; background: #E8722A; color: #fff; padding: 0.15rem 0.6rem; border-radius: 50px; font-size: 0.6rem; font-weight: 700; text-transform: uppercase; margin-bottom: 0.4rem; letter-spacing: 0.5px; }

/* New Arrival highlight */
.cc-newarrival { min-width: 0; }
.cc-new-inner { border-radius: 16px; padding: 2rem; display: flex; align-items: center; gap: 1.5rem; height: 100%; }
.cc-new-content { flex: 1; }
.cc-new-tag { display: inline-block; background: #E8722A; color: #fff; padding: 0.2rem 0.8rem; border-radius: 50px; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.75rem; }
.cc-new-content h2 { font-family: var(--font-heading); font-size: 1.6rem; color: #2D2D2D; margin: 0 0 0.5rem; line-height: 1.3; }
.cc-new-desc { font-size: 0.85rem; color: #777; margin: 0 0 1rem; }
.cc-new-img { flex: 0 0 180px; }
.cc-new-img img { width: 100%; height: auto; object-fit: contain; max-height: 200px; }

/* Hero links */
.hero-links { display: flex; align-items: center; gap: 0.5rem; justify-content: center; margin-bottom: 1rem; }
.hero-links a { color: #FFE0C0; font-weight: 600; text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.hero-links a:hover { color: #fff; }
.hero-links span { color: rgba(255,255,255,0.3); }

/* ========== Banner Strip (原站 banner_section_style2) ========== */
.banner-strip { padding: 3rem 0; background: #FAF7F0; }
.banner-strip-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.banner-card { border-radius: 20px; padding: 2rem; display: flex; align-items: center; gap: 1.5rem; min-height: 200px; overflow: hidden; position: relative; }
.banner-link-block { display: flex; align-items: center; width: 100%; height: 100%; text-decoration: none; color: inherit; position: absolute; inset: 0; z-index: 2; }
.banner-img-full { flex: 1; height: 100%; }
.banner-img-full img { width: 100%; height: 100%; object-fit: cover; border-radius: 0 !important; }
.banner-overlay-bottom { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(0,0,0,0.65), transparent); color: #fff; padding: 2rem 1.5rem 1.2rem !important; z-index: 3; }
.banner-card-content { flex: 1; z-index: 2; }
.banner-card-tag { display: inline-block; padding: 0.2rem 0.8rem; border-radius: 50px; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; background: rgba(255,255,255,0.2); color: #fff; margin-bottom: 0.5rem; }
.banner-card h3 { font-family: var(--font-heading); font-size: 1.4rem; color: #fff; margin: 0 0 0.3rem; }
.banner-card p { font-size: 0.85rem; color: rgba(255,255,255,0.8); margin: 0 0 1rem; }
.banner-card-img { flex: 0 0 130px; z-index: 2; }
.banner-card-img img { width: 100%; height: auto; max-height: 150px; object-fit: contain; border-radius: 8px; }

/* ========== Video + Art Design Section (原站 section 6) ========== */
.video-art-section { padding: 4rem 0; background: #fff; }
.va-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.va-video-wrapper { position: relative; border-radius: 16px; overflow: hidden; background: #F5F0E8; cursor: pointer; }
.va-video-wrapper img { width: 100%; height: auto; display: block; }
.va-play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 60px; height: 60px; background: rgba(232,114,42,0.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: #fff; box-shadow: 0 4px 20px rgba(232,114,42,0.4); transition: transform 0.2s; }
.va-video-wrapper:hover .va-play-btn { transform: translate(-50%,-50%) scale(1.1); }
.va-video-label { position: absolute; bottom: 1rem; left: 1rem; background: rgba(0,0,0,0.6); color: #fff; padding: 0.3rem 1rem; border-radius: 50px; font-size: 0.8rem; font-weight: 600; }
.va-content h2 { font-family: var(--font-heading); font-size: 2rem; color: #2D2D2D; margin: 0 0 0.75rem; }
.va-tags { font-size: 0.9rem; color: #E8722A; font-weight: 600; margin: 0 0 1rem; letter-spacing: 0.5px; }
.va-content p { font-size: 0.95rem; color: #666; line-height: 1.7; margin: 0 0 1.5rem; }

/* ========== Newsletter Popup ========== */
.newsletter-popup { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 9999; align-items: center; justify-content: center; }
.newsletter-popup.visible { display: flex; }
.popup-overlay { position: absolute; width: 100%; height: 100%; background: rgba(0,0,0,0.5); backdrop-filter: blur(4px); }
.popup-content { position: relative; background: #fff; border-radius: 20px; padding: 3rem; max-width: 480px; width: 90%; text-align: center; animation: popIn 0.4s ease; }
@keyframes popIn { from { opacity: 0; transform: scale(0.9) translateY(20px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.popup-close { position: absolute; top: 1rem; right: 1rem; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: #999; }
.popup-inner h2 { font-family: var(--font-heading); font-size: 2rem; color: #2D2D2D; margin: 0 0 0.5rem; }
.popup-inner h2 span { color: #E8722A; }
.popup-inner p { font-size: 0.9rem; color: #888; margin: 0 0 1.5rem; }
.popup-skip { display: block; margin-top: 1rem; font-size: 0.8rem; color: #bbb; text-decoration: none; transition: color 0.2s; }
.popup-skip:hover { color: #E8722A; }

@media (max-width: 480px) {
  .popup-content { padding: 2rem 1.5rem; }
  .popup-inner h2 { font-size: 1.5rem; }
}

/* ========== Feedback section ========== */
.feedback-section { padding: 3rem 0; background: #F7F3EE; text-align: center; }
.feedback-social { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.5rem 1.25rem; background: #fff; border-radius: 50px; text-decoration: none; color: #2D2D2D; font-weight: 600; font-size: 0.9rem; box-shadow: 0 2px 8px rgba(0,0,0,0.06); transition: transform 0.2s, box-shadow 0.2s; }
.feedback-social:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
.feedback-handle { font-size: 0.9rem; color: #888; font-weight: 600; }
.social-icon-sm { font-size: 1.2rem; }

/* ── 1024px ── */
@media (max-width: 1024px) {
  .product-detail, .brand-story-content { grid-template-columns: 1fr; gap: 2rem; }
  .brand-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .admin-sidebar { width: 60px; }
  .admin-logo span:not(.nav-icon) { display: none; }
  .admin-main { margin-left: 60px; }
  .highlights-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
}

/* ── 768px ── */
@media (max-width: 768px) {
  /* Header mobile */
  .mobile-toggle { display: block; }
  .main-nav { display: none; position: fixed; top: 0; left: 0; width: 80%; max-width: 320px; height: 100vh; background: #fff; flex-direction: column; padding: 5rem 1.5rem; box-shadow: 2px 0 20px rgba(0,0,0,0.15); z-index: 1000; overflow-y: auto; }
  .main-nav.open { display: flex; }
  .main-nav a:not(.mobile-nav-actions a), .nav-dropdown .dropdown-trigger { font-size: 1rem; padding: 0.8rem 0; border-bottom: 1px solid #F0F0F0; }
  .dropdown-menu { position: static; box-shadow: none; padding: 0 0 0.5rem 1rem; background: #FAFAFA; border-radius: 8px; margin-bottom: 0.5rem; }
  .nav-dropdown:hover .dropdown-menu { display: none; }
  .nav-dropdown.open .dropdown-menu { display: block; }
  .dropdown-arrow { font-size: 0.7rem; }
  /* Mobile nav overlay */
  .nav-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.4); z-index: 999; }
  .nav-overlay.active { display: block; }
  .nav-close { position: absolute; top: 1rem; right: 1.2rem; font-size: 1.5rem; background: none; border: none; cursor: pointer; color: #555; }

  .header-inner { padding: 0.75rem 0; }
  .header-actions { gap: 0.15rem; }
  .header-actions .icon-label { display: none; }
  .icon-btn { padding: 0.4rem; font-size: 1.1rem; }
  .cart-toggle { padding: 0.4rem 0.6rem; gap: 0.2rem; font-size: 0.85rem; }
  .cart-toggle span:nth-child(2) { display: none; }
  .cart-badge { right: -2px; top: -2px; font-size: 0.6rem; min-width: 16px; height: 16px; line-height: 16px; }
  /* 手机端侧边栏里加搜索和账户入口 */
  .mobile-nav-actions { display: flex; flex-direction: column; gap: 0.5rem; padding: 1rem 0; border-bottom: 1px solid #F0F0F0; }
  .mobile-nav-actions a, .mobile-nav-actions button {
    display: flex; align-items: center; gap: 0.6rem;
    padding: 0.6rem 0;
    font-size: 0.95rem;
    color: #555;
    background: none; border: none;
    cursor: pointer;
    width: 100%; text-align: left;
  }
  .mobile-nav-actions a:hover, .mobile-nav-actions button:hover { color: var(--primary); }

  /* Hero */
  .hero-content h1 { font-size: 2rem; }
  .hero-content h1 .hero-highlight { font-size: 1.8rem; }
  .hero { min-height: auto; padding: 3rem 0; }
  .hero-tagline { font-size: 0.75rem; }
  .hero-countdown { gap: 0.5rem; }
  .countdown-item { min-width: 55px; padding: 0.5rem; }
  .cd-num { font-size: 1.3rem; }

  /* Layout */
  .page-layout { grid-template-columns: 1fr; }
  .sidebar { padding: 1rem 0; }
  .checkout-layout { grid-template-columns: 1fr; }
  
  /* Products */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  
  /* Cart sidebar - full width on mobile */
  .cart-sidebar { width: 100%; right: -100%; }
  
  /* Forms */
  .newsletter-form { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .subscribe-form { flex-direction: column; gap: 0.75rem; }
  .subscribe-form input { width: 100%; text-align: center; }
  .subscribe-inner h2 { font-size: 1.8rem; }
  
  /* Sections */
  .brand-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .brand-text h2 { font-size: 1.8rem; text-align: center; }
  .brand-badges { justify-content: center; }
  .brand-text { text-align: center; }
  .reviews-grid { grid-template-columns: 1fr; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .highlight-card { padding: 1.25rem 1rem; }
  .highlight-icon { font-size: 2rem; }
  .blog-grid { grid-template-columns: 1fr; }
  
  /* Categories */
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .category-card { padding: 1rem; }
  .category-card h3 { font-size: 0.95rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .newsletter-inner { flex-direction: column; text-align: center; }
  .newsletter-form { min-width: unset; width: 100%; flex-direction: row; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-brand { grid-column: 1 / -1; }
  .payment-methods { flex-wrap: wrap; gap: 0.3rem; font-size: 0.75rem; }
  
  .section-title { font-size: 1.4rem; }

  /* Blog */
  .blog-card h3 { font-size: 0.9rem; }

  /* Reviews */
  .reviews-more { flex-direction: column; gap: 0.5rem; }
  .review-divider { display: none; }

  /* Category Collection */
  .cc-wrapper { grid-template-columns: 1fr; }
  .cc-new-inner { flex-direction: column; text-align: center; padding: 1.5rem; }
  .cc-new-img { flex: 0 0 auto; max-width: 150px; }
  .cc-grid { grid-template-columns: repeat(4, 1fr); gap: 0.5rem; }
  .cc-img-wrap { height: 110px; }
  .category-collection { padding: 1.5rem 0; }
  .cc-new-content h2 { font-size: 1.3rem; }

  /* Banner Strip */
  .banner-strip-grid { grid-template-columns: 1fr; }
  .banner-card { padding: 1.5rem; min-height: 160px; }
  .banner-card h3 { font-size: 1.1rem; }

  /* Video + Art */
  .va-grid { grid-template-columns: 1fr; gap: 2rem; }
  .va-content { text-align: center; }
  .va-content h2 { font-size: 1.5rem; }
  .va-play-btn { width: 50px; height: 50px; font-size: 1.2rem; }

  /* Feedback */
  .feedback-links { flex-direction: column; align-items: center; gap: 0.75rem; }

  /* Brand Story */
  .brand-story-content { grid-template-columns: 1fr; gap: 2rem; }
  .brand-text { text-align: center; }
  .brand-text h2 { font-size: 1.6rem; }
  .brand-badges { justify-content: center; }
}

/* ── 480px ── */
@media (max-width: 480px) {
  html { font-size: 15px; }
  .container { padding: 0 0.8rem; }
  .hero { padding: 2rem 0; min-height: auto; }
  .hero-content h1 { font-size: 1.8rem; line-height: 1.3; }
  .hero-content p { font-size: 0.95rem; }
  .hero-tagline { font-size: 0.75rem; padding: 0.35rem 0.9rem; }
  .hero-urgent { font-size: 0.85rem; }
  .hero-discount { font-size: 1rem; }
  .hero-links { font-size: 0.85rem; gap: 0.4rem; }
  .countdown-item { min-width: 48px; padding: 0.45rem; }
  .cd-num { font-size: 1.2rem; }
  .cd-label { font-size: 0.7rem; }
  
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
  .highlights-grid { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
  
  .product-card { padding: 0.4rem; }
  .product-card img { height: 110px; }
  .product-title { font-size: 0.8rem; }
  .product-price { font-size: 0.95rem; }
  .product-desc { font-size: 0.75rem; }
  .product-card-info { padding: 0.5rem; }
  .product-card-category { font-size: 0.65rem; }
  .btn { font-size: 0.85rem; padding: 0.5rem 1rem; min-height: 40px; }
  
  .brand-text h2 { font-size: 1.5rem; }
  .subscribe-inner h2 { font-size: 1.5rem; }
  .subscribe-inner p { font-size: 0.85rem; }
  
  .section-title { font-size: 1.3rem; }
  .section-title p { font-size: 0.85rem; }
  
  .footer-grid { grid-template-columns: 1fr; }
  .footer { font-size: 0.85rem; padding: 1.5rem 0; }
  .footer h4 { font-size: 1rem; }
  .footer a { font-size: 0.85rem; }
  
  .hero-content h1 .hero-highlight { font-size: 1.5rem; }
  
  .main-nav a { font-size: 1rem; padding: 0.7rem 1rem; }
  .main-nav .nav-close { font-size: 1.3rem; }
  
  .page-header { font-size: 1.2rem; padding: 1rem 0; }
  .page-header h1 { font-size: 1.5rem; }
  
  input, select, textarea { font-size: 16px; padding: 10px 12px; }
  .modal-content { padding: 1.2rem; width: 95%; }
  .modal-content h2 { font-size: 1.2rem; }
}

/* ========== Hero Slider (原站顶部轮播) ========== */
.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #f5ecd7;
  padding: 0 !important;
}
.slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.slider-slide {
  min-width: 100%;
  position: relative;
  aspect-ratio: 24/9;
  overflow: hidden;
}
.slider-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}
.slider-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.08);
}
.slider-content {
  position: absolute;
  z-index: 2;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 700px;
}
.slider-content--bottom-center {
  bottom: 2rem;
}
.slider-content--middle-center {
  top: 50%;
  transform: translate(-50%, -50%);
}
.slider-content--bottom-left {
  bottom: 2rem;
  left: 3rem;
  transform: none;
  max-width: 450px;
}
.slider-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  margin: 0 0 0.5rem;
  letter-spacing: 0.5px;
  line-height: 1.2;
}
.slider-subtitle {
  font-size: 1.1rem;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
  margin: 0 0 1.2rem;
  opacity: 0.95;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .slider-title { font-size: 1.4rem; }
  .slider-subtitle { font-size: 0.85rem; margin-bottom: 0.8rem; }
}
@media (max-width: 480px) {
  .slider-title { font-size: 1.1rem; }
  .slider-subtitle { font-size: 0.75rem; margin-bottom: 0.5rem; }
  .slider-btn { padding: 0.4rem 1rem; font-size: 0.65rem; }
}
.slider-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  background: #E8722A;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.2s;
  text-decoration: none;
  border: 2px solid #E8722A;
  box-shadow: 0 4px 14px rgba(232,114,42,0.3);
}
.slider-btn:hover {
  background: #C95F1A;
  border-color: #C95F1A;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,114,42,0.4);
}
.slider-btn .slider-btn-arrow {
  display: inline-block;
  transition: transform 0.2s;
}
.slider-btn:hover .slider-btn-arrow {
  transform: translateX(4px);
}
.slider-btn.secondary {
  background: transparent;
  color: #fff;
  border-color: #fff;
  box-shadow: none;
}
.slider-btn.secondary:hover {
  background: #fff;
  color: #2D1810;
}

/* Slider Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: all 0.2s;
  color: #333;
}
.slider-arrow:hover {
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.slider-arrow.prev { left: 1rem; }
.slider-arrow.next { right: 1rem; }

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 5;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.slider-dot.active {
  background: #fff;
  transform: scale(1.3);
}

/* Slider responsive */
@media (max-width: 768px) {
  .slider-slide img { max-height: 300px; }
  .slider-content { width: 85%; }
  .slider-content--bottom-center { bottom: 1rem; }
  .slider-content--bottom-left { left: 1rem; bottom: 1rem; max-width: 70%; }
  .slider-btn { padding: 0.5rem 1.2rem; font-size: 0.75rem; }
  .slider-arrow { width: 36px; height: 36px; font-size: 0.9rem; }
  .slider-arrow.prev { left: 0.5rem; }
  .slider-arrow.next { right: 0.5rem; }
}
@media (max-width: 480px) {
  .slider-slide img { max-height: 150px; }
}

/* =======================================================================
   NEW STYLES: Promo Banner, Language Switcher, Social Icons, Card Refinements
   ======================================================================= */

/* ════════ Promo Banner (Buy 1 Get 1 Free) ════════ */
.promo-banner {
  padding: 0 !important;
  background: #fefbf4;
}
.promo-banner-inner {
  background: linear-gradient(135deg, #F9E4D4 0%, #F5C6AA 30%, #FF8A65 100%);
  border-radius: 20px;
  padding: 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(232,114,42,0.15);
}
.promo-banner-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.promo-banner-inner::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -20%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.promo-badge {
  display: inline-block;
  background: #D64933;
  color: #fff;
  padding: 0.3rem 1.2rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
  animation: pulse 2s infinite;
  position: relative;
  z-index: 1;
}
.promo-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: #2D1810;
  margin: 0 0 0.5rem;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}
.promo-highlight {
  color: #D64933;
}
.promo-desc {
  font-size: 1.05rem;
  color: #5C3A28;
  margin: 0 0 1.25rem;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.promo-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}
.promo-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  background: #2D1810;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.2s;
  text-decoration: none;
  border: none;
  box-shadow: 0 4px 14px rgba(45,24,16,0.25);
}
.promo-btn:hover {
  background: #4A2A1A;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45,24,16,0.35);
}
.promo-arrow {
  display: inline-block;
  transition: transform 0.2s;
}
.promo-btn:hover .promo-arrow {
  transform: translateX(4px);
}
.promo-urgency {
  font-size: 0.85rem;
  font-weight: 600;
  color: #8B3A1A;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .promo-banner-inner { padding: 2rem 1.5rem; }
  .promo-title { font-size: 1.8rem; }
  .promo-desc { font-size: 0.9rem; }
  .promo-cta { flex-direction: column; gap: 0.75rem; }
}
@media (max-width: 480px) {
  .promo-title { font-size: 1.4rem; }
  .promo-badge { font-size: 0.65rem; }
}

/* ════════ Language Switcher ════════ */
.lang-switcher {
  position: relative;
}
.lang-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #F7F3EE;
  border: 1px solid #E8E0D5;
  border-radius: 50px;
  padding: 0.35rem 1.8rem 0.35rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #2D2D2D;
  cursor: pointer;
  outline: none;
  transition: all 0.2s;
  font-family: var(--font-body);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23555'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.6rem center;
}
.lang-select:hover {
  border-color: var(--primary);
}
.lang-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(232,114,42,0.15);
}
@media (max-width: 768px) {
  .lang-select {
    font-size: 0.7rem;
    padding: 0.25rem 1.5rem 0.25rem 0.5rem;
    background-position: right 0.4rem center;
    background-size: 8px 5px;
  }
}

/* ════════ Announcement Bar Social Icons ════════ */
.announcement-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.announcement-text {
  flex: 1;
  text-align: center;
}
.announcement-social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.announcement-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
  transition: all 0.2s;
  text-decoration: none;
}
.announcement-social a:hover {
  background: rgba(255,255,255,0.25);
  color: #fff;
  transform: translateY(-1px);
}
.announcement-social svg {
  display: block;
}
@media (max-width: 768px) {
  .announcement-bar-inner { flex-direction: column; gap: 0.35rem; }
  .announcement-social { order: -1; }
}

/* ════════ Product Card Refinements ════════ */
.product-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #E8E0D5;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.product-card:hover {
  border-color: transparent;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
  transform: translateY(-6px);
}
.product-card-image {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #FAF7F0;
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card-image img { transform: scale(1.08); }
.product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: #E8722A;
  color: #fff;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}
.product-badge--sale {
  background: #D64933;
}
.product-card-info {
  padding: 1rem 1.15rem 1.15rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.product-card-category {
  font-size: 0.7rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  display: block;
  margin-bottom: 0.1rem;
}
.product-card-name {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #2D2D2D;
  line-height: 1.35;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card-price {
  font-weight: 800;
  font-size: 1.25rem;
  color: #E8722A;
  margin-top: auto;
  padding-top: 0.3rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.product-card-compare {
  font-size: 0.85rem;
  font-weight: 500;
  color: #aaa;
  text-decoration: line-through;
}

/* ════════ Typography & Spacing refinements ════════ */
.section-title h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: #2D2D2D;
  letter-spacing: -0.02em;
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ════════ Mobile Responsive Overrides ════════ */
@media (max-width: 768px) {
  /* Announcement bar fix */
  .announcement-bar { font-size: 0.7rem; padding: 0.4rem 0; }
  .announcement-bar .container,
  .announcement-bar-inner { flex-wrap: wrap; justify-content: center; gap: 0.3rem; }
  .announcement-social { gap: 0.4rem; }
  .announcement-social a { width: 24px; height: 24px; }
  .announcement-social svg { width: 12px; height: 12px; }

  /* Header */
  .site-header .container { min-height: 0; }
  .header-inner { flex-wrap: nowrap; gap: 0.3rem; }
  .logo { font-size: 1rem; }
  .header-actions { gap: 0.3rem; }
  .icon-btn .icon-label { display: none; }
  .lang-select { font-size: 0.65rem; padding: 0.2rem 1.2rem 0.2rem 0.4rem; background-size: 6px 4px; background-position: right 0.3rem center; }

  /* Hero slider - fix height */
  .hero-slider { max-height: 200px; }
  .slider-slide img { max-height: 200px; min-height: 160px; object-fit: cover; }
  .slider-title { font-size: 1rem !important; }
  .slider-subtitle { font-size: 0.7rem !important; margin-bottom: 0.4rem !important; }
  .slider-btn { padding: 0.35rem 1rem !important; font-size: 0.65rem !important; }
  .slider-content { bottom: 0.5rem !important; }
  .slider-dots { bottom: 0.3rem; gap: 4px; }
  .slider-dot { width: 6px; height: 6px; }
  .slider-arrow { width: 28px; height: 28px; font-size: 0.7rem; }

  /* Promo banner */
  .promo-banner { padding: 0.5rem 0; }
  .promo-banner-inner { padding: 1.5rem 1rem !important; border-radius: 12px; }
  .promo-badge { font-size: 0.6rem !important; padding: 0.15rem 0.5rem; }
  .promo-title { font-size: 1.3rem !important; }
  .promo-desc { font-size: 0.75rem !important; }
  .promo-btn { padding: 0.5rem 1.2rem; font-size: 0.8rem; }
  .promo-urgency { font-size: 0.65rem; }
  .promo-banner-inner::before,
  .promo-banner-inner::after { display: none; }

  /* Category collection */
  .category-collection { padding: 1.5rem 0; }
  .cc-wrapper { flex-direction: column; gap: 1rem; }
  .cc-grid { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
  .cc-card { padding: 0.6rem; border-radius: 10px; }
  .cc-card h3 { font-size: 0.75rem !important; }
  .cc-card p { font-size: 0.6rem !important; }
  .cc-label { font-size: 0.5rem; padding: 0.1rem 0.3rem; }

  /* New arrival right panel */
  .cc-new-inner { flex-direction: column; padding: 1rem !important; gap: 0.75rem; }
  .cc-new-content h2 { font-size: 1.1rem !important; }
  .cc-new-desc { font-size: 0.75rem !important; }

  /* Hero section */

  .hero-content h1 { font-size: 1.5rem !important; }
  .hero-content p { font-size: 0.75rem !important; }
  .hero-tagline { font-size: 0.65rem !important; }
  .hero-countdown { gap: 0.3rem; }
  .countdown-item { padding: 0.3rem 0.4rem; min-width: 40px; }
  .cd-num { font-size: 1rem !important; }
  .cd-label { font-size: 0.55rem !important; }
  .hero-links { font-size: 0.75rem; gap: 0.4rem; }

  /* Featured Products / Bestsellers */
  .featured-section,
  .bestsellers-section,
  .reviews-section,
  .highlights-section,
  .blog-section { padding: 1.5rem 0; }
  .section-title { font-size: 1.1rem !important; margin-bottom: 1rem; }
  .section-title h2 { font-size: 1.2rem !important; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
  .product-card { border-radius: 8px; }
  .product-card-info { padding: 0.5rem 0.6rem 0.6rem; gap: 0.15rem; }
  .product-card-category { font-size: 0.6rem; }
  .product-card-name { font-size: 0.75rem !important; -webkit-line-clamp: 2; }
  .product-card-price { font-size: 0.95rem !important; }
  .product-card-compare { font-size: 0.65rem; }
  .product-badge { font-size: 0.55rem; padding: 0.15rem 0.4rem; top: 0.35rem; left: 0.35rem; }

  /* Banner cards strip */
  .banner-strip-section { padding: 1rem 0; }
  .banner-strip { flex-direction: column; gap: 0.75rem; }
  .banner-card { min-height: 120px; }
  .banner-card-content h3 { font-size: 0.9rem !important; }
  .banner-card-content p { font-size: 0.7rem !important; }

  /* Brand story */
  .brand-story { padding: 1.5rem 0; }
  .brand-story-content { flex-direction: column; gap: 1rem; }
  .brand-text h2 { font-size: 1.1rem !important; }
  .brand-text p { font-size: 0.8rem !important; }
  .brand-badges { flex-wrap: wrap; }
  .brand-badge { font-size: 0.7rem; padding: 0.25rem 0.5rem; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .review-card { padding: 1rem; }
  .review-text { font-size: 0.8rem; }

  /* Video art section */
  .video-art-section { padding: 1.5rem 0; }
  .va-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .va-video-wrapper { height: 180px; }
  .va-artcard { padding: 1rem; }

  /* Highlights */
  .highlights-section .container .highlights-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .highlight-card { padding: 0.8rem 0.5rem; }
  .highlight-icon { font-size: 1.3rem; }
  .highlight-card h3 { font-size: 0.75rem !important; }
  .highlight-card p { font-size: 0.65rem !important; }

  /* Blog section */
  .blog-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .blog-card { flex-direction: row; }
  .blog-img { width: 100px; min-width: 100px; height: 80px; }
  .blog-info { padding: 0.5rem; }
  .blog-info h3 { font-size: 0.8rem !important; }
  .blog-info p { font-size: 0.7rem; }
  .blog-date { font-size: 0.6rem; }

  /* Subscribe */
  .subscribe-section { padding: 2rem 0; }
  .subscribe-inner { padding: 1.5rem 1rem; }
  .subscribe-inner h2 { font-size: 1.3rem !important; }
  .subscribe-inner p { font-size: 0.75rem; }
  .subscribe-form { flex-direction: column; gap: 0.5rem; }
  .subscribe-form input { width: 100%; text-align: center; }

  /* Newsletter popup */
  .newsletter-popup .popup-content { width: 90%; padding: 1.5rem; }
  .popup-inner h2 { font-size: 1.3rem; }
  .popup-inner p { font-size: 0.8rem; }

  /* Footer */
  .site-footer { padding-top: 2rem; }
  .footer-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 1rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p { font-size: 0.75rem; }
  .footer-links h4 { font-size: 0.8rem; }
  .footer-links a { font-size: 0.75rem; }
  .newsletter-inner { flex-direction: column; gap: 0.75rem; text-align: center; }
  .newsletter-text h3 { font-size: 1.1rem; }
  .newsletter-text p { font-size: 0.8rem; }
  .newsletter-form { width: 100%; }
  .newsletter-form input { flex: 1; min-width: 0; font-size: 0.8rem; }
  .payment-methods { flex-wrap: wrap; gap: 0.3rem; font-size: 0.55rem; justify-content: center; }
  .footer-bottom-inner { flex-direction: column; gap: 0.5rem; text-align: center; }
  .footer-bottom-inner p { font-size: 0.7rem; }

  /* Feedback section */
  .feedback-section { padding: 1.5rem 0; }
  .feedback-links { flex-direction: column; gap: 0.5rem; }
  .feedback-social { font-size: 0.85rem; }

  /* Buttons */
  .btn { font-size: 0.8rem; padding: 0.5rem 1rem; min-height: 36px; }
  .btn-lg { padding: 0.6rem 1.5rem; font-size: 0.85rem; }
  .btn-sm { padding: 0.3rem 0.6rem; font-size: 0.7rem; }

  /* Cart */
  .cart-sidebar { width: 85%; right: -85%; }
}

@media (max-width: 480px) {
  .products-grid { gap: 0.4rem; }
  .product-card-info { padding: 0.3rem 0.4rem 0.4rem; }
  .product-card-name { font-size: 0.65rem !important; }
  .product-card-price { font-size: 0.8rem !important; }
  .product-card-category { font-size: 0.5rem; }
  .product-badge { font-size: 0.45rem; padding: 0.1rem 0.3rem; }
  .cc-grid { gap: 0.3rem; }
  .cc-card h3 { font-size: 0.65rem !important; }
  .promo-title { font-size: 1rem !important; }
  .promo-desc { font-size: 0.65rem !important; }
  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 0.75rem; }
  .hero-content h1 { font-size: 1.1rem !important; }
  .btn { font-size: 0.75rem; padding: 0.4rem 0.75rem; min-height: 32px; }
}
