/* ============================================================
   MerryShow Wholesale — Global Stylesheet
   ============================================================
   修改说明：
   - 主色调金色：#c4a882 / #8b6914
   - 深色背景：#0f0f1e / #1a1a2e
   - 字体：系统字体栈（无需下载）
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: #1a1a2e;
  line-height: 1.6;
  background: #fff;
}

/* ── Color Variables ──────────────────────────────────────── */
:root {
  --gold:       #c4a882;
  --gold-dark:  #8b6914;
  --gold-light: #f0d5a8;
  --navy:       #1a1a2e;
  --navy-dark:  #0f0f1e;
  --navy-deep:  #0a0a18;
}

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--gold-dark); }

img { max-width: 100%; display: block; }

/* ── Layout Helpers ───────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Announcement Bar ─────────────────────────────────────── */
.announcement-bar {
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  padding: 8px 0;
}
.announcement-bar .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.announcement-bar a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.announcement-bar a:hover { color: var(--gold); }
.announcement-bar .register-btn {
  background: var(--gold);
  color: #fff;
  padding: 2px 12px;
  border-radius: 999px;
  font-weight: 600;
}
.announcement-bar .register-btn:hover { background: #d4b892; color: #fff; }

/* ── Navbar ───────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  border-bottom: 1px solid #f0f0f0;
}
.navbar .inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 20px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 15px;
  box-shadow: 0 2px 8px rgba(196,168,130,0.4);
}
.logo-text .brand { font-size: 18px; font-weight: 800; color: var(--navy); line-height: 1; }
.logo-text .tagline { font-size: 9px; color: var(--gold); text-transform: uppercase; letter-spacing: 0.2em; font-weight: 600; }

/* Search bar */
.search-bar {
  flex: 1;
  max-width: 480px;
  display: flex;
  border: 2px solid #e5e7eb;
  border-radius: 999px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.search-bar:focus-within { border-color: var(--gold); }
.search-bar select {
  background: #f9fafb;
  border-right: 1px solid #e5e7eb;
  padding: 0 10px;
  font-size: 12px;
  color: #4b5563;
  cursor: pointer;
  outline: none;
}
.search-bar input {
  flex: 1;
  padding: 8px 12px;
  font-size: 14px;
  outline: none;
  border: none;
  background: #fff;
}
.search-bar button {
  background: none;
  border: none;
  padding: 0 14px;
  cursor: pointer;
  color: #9ca3af;
}
.search-bar button:hover { color: var(--gold); }

/* Nav links */
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a, .nav-links button {
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: 8px;
  white-space: nowrap;
  transition: all 0.2s;
  display: flex; align-items: center; gap: 4px;
}
.nav-links a:hover, .nav-links button:hover { color: var(--gold-dark); background: #fef3c7; }

/* Dropdown */
.dropdown-wrap { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  border: 1px solid #f0f0f0;
  padding: 10px 0;
  min-width: 280px;
  z-index: 200;
  display: none;
}
.dropdown-wrap:hover .dropdown-menu { display: block; }
.dropdown-menu .menu-label {
  font-size: 10px;
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0 16px 8px;
}
.dropdown-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  font-size: 14px;
  color: #374151;
  transition: all 0.15s;
}
.dropdown-menu a:hover { background: #fef3c7; color: var(--gold-dark); }
.dropdown-menu .view-all {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #f0f0f0;
  padding-left: 16px;
}
.dropdown-menu .view-all a {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-dark);
  padding: 4px 0;
}

/* Cart btn */
.cart-btn {
  position: relative;
  background: none; border: none; cursor: pointer;
  color: #374151; padding: 8px;
  transition: color 0.2s;
}
.cart-btn:hover { color: var(--gold); }
.cart-badge {
  position: absolute; top: 2px; right: 2px;
  background: var(--gold); color: #fff;
  font-size: 9px; font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
}
.quote-btn {
  background: var(--navy);
  color: #fff;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s;
  border: none; cursor: pointer;
  white-space: nowrap;
}
.quote-btn:hover { background: var(--gold); color: #fff; }

/* Mobile menu toggle */
.mobile-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  color: #374151; padding: 8px;
  margin-left: auto;
}
.mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid #f0f0f0;
  padding: 12px 24px 20px;
}
.mobile-menu.open { display: block; }
.mobile-menu .mob-search {
  display: flex;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 16px;
}
.mobile-menu .mob-search input {
  flex: 1; padding: 10px 14px; font-size: 14px;
  outline: none; border: none;
}
.mobile-menu .mob-search button {
  background: none; border: none; padding: 0 14px; cursor: pointer; color: #9ca3af;
}
.mobile-menu .cat-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4px; margin-bottom: 12px;
}
.mobile-menu .cat-grid a {
  padding: 8px 10px; font-size: 13px; color: #374151;
  border-radius: 8px; transition: all 0.2s;
}
.mobile-menu .cat-grid a:hover { background: #fef3c7; color: var(--gold-dark); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 8px;
  font-size: 15px; font-weight: 700; cursor: pointer;
  border: none; transition: all 0.2s;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  box-shadow: 0 4px 16px rgba(196,168,130,0.3);
}
.btn-primary:hover { background: linear-gradient(135deg, #d4b892, #9b7924); color: #fff; }
.btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.25);
  color: #fff;
}
.btn-outline:hover { border-color: var(--gold); background: rgba(255,255,255,0.1); color: #fff; }
.btn-dark {
  background: var(--navy);
  color: #fff;
}
.btn-dark:hover { background: var(--gold); color: #fff; }
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
}
.btn-gold:hover { background: #d4b892; color: var(--navy); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #16213e 100%);
  overflow: hidden;
}
.hero-bg-glow-1 {
  position: absolute; top: 80px; right: 80px;
  width: 500px; height: 500px;
  background: rgba(196,168,130,0.08);
  border-radius: 50%; filter: blur(80px);
  pointer-events: none;
}
.hero-bg-glow-2 {
  position: absolute; bottom: 80px; left: 40px;
  width: 320px; height: 320px;
  background: rgba(139,105,20,0.12);
  border-radius: 50%; filter: blur(70px);
  pointer-events: none;
}
.hero-grid-overlay {
  position: absolute; inset: 0; opacity: 0.03;
  background-image: linear-gradient(rgba(196,168,130,0.5) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(196,168,130,0.5) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero .container { position: relative; padding-top: 60px; padding-bottom: 60px; width: 100%; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }

/* Hero left */
.hero-left { color: #fff; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(196,168,130,0.15);
  border: 1px solid rgba(196,168,130,0.3);
  color: var(--gold);
  padding: 6px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 700;
  margin-bottom: 16px;
}
.hero-stars { display: flex; align-items: center; gap: 4px; }
.hero-stars svg { color: var(--gold); }
.hero-stars span { color: #9ca3af; font-size: 12px; margin-left: 6px; }
.hero h1 {
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 20px 0;
}
.hero h1 .gradient-text {
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.hero-desc {
  color: #d1d5db;
  font-size: 17px;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 24px;
}
.trust-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.trust-badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px; padding: 8px 16px;
  font-size: 13px; color: #d1d5db;
  transition: border-color 0.2s;
}
.trust-badge:hover { border-color: rgba(196,168,130,0.4); }
.trust-badge svg { color: var(--gold); }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-value { font-size: 20px; font-weight: 800; color: var(--gold); }
.hero-stat-label { font-size: 11px; color: #6b7280; }

/* Hero right — product showcase card */
.hero-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  position: relative;
}
.hero-card-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px;
}
.hero-card-header span { color: rgba(255,255,255,0.5); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; }
.hero-card-header a { color: var(--gold); font-size: 12px; display: flex; align-items: center; gap: 4px; }
.product-mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.product-mini-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border-radius: 16px; padding: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: border-color 0.2s;
  text-decoration: none;
  display: block;
}
.product-mini-card:hover { border-color: rgba(196,168,130,0.5); }
.product-mini-card .emoji { font-size: 28px; margin-bottom: 8px; }
.product-mini-card .badge-tag {
  display: inline-block; background: rgba(196,168,130,0.2); color: var(--gold);
  font-size: 9px; font-weight: 700; padding: 2px 8px; border-radius: 999px; margin-bottom: 6px;
}
.product-mini-card .prod-name { color: #fff; font-size: 11px; font-weight: 700; }
.product-mini-card .prod-cat { color: #6b7280; font-size: 10px; }
.product-mini-card .prod-price { color: var(--gold); font-size: 13px; font-weight: 800; margin-top: 4px; }
.hero-card-flash {
  margin-top: 16px;
  background: linear-gradient(90deg, rgba(196,168,130,0.15), rgba(139,105,20,0.15));
  border: 1px solid rgba(196,168,130,0.2);
  border-radius: 12px; padding: 12px 16px;
  display: flex; justify-content: space-between; align-items: center;
}
.hero-card-flash .flash-text { font-size: 12px; color: #fff; font-weight: 600; }
.hero-card-flash .flash-sub { font-size: 10px; color: #9ca3af; }
.hero-card-flash a { color: var(--gold); font-size: 12px; font-weight: 800; }
.hero-badge-float-1 {
  position: absolute; top: -20px; right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff; border-radius: 16px; padding: 16px; text-align: center;
  box-shadow: 0 8px 24px rgba(196,168,130,0.4);
}
.hero-badge-float-1 .big { font-size: 22px; font-weight: 800; line-height: 1; }
.hero-badge-float-1 .small { font-size: 10px; font-weight: 600; opacity: 0.9; }
.hero-badge-float-2 {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--navy);
  border: 1px solid rgba(196,168,130,0.3);
  color: #fff; border-radius: 16px; padding: 12px 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.hero-badge-float-2 .label { font-size: 10px; color: #6b7280; }
.hero-badge-float-2 .value { font-size: 14px; font-weight: 800; color: var(--gold); }

/* ── Section Header ───────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 48px; }
.section-pill {
  display: inline-block;
  background: rgba(196,168,130,0.1);
  color: var(--gold-dark);
  font-size: 13px; font-weight: 700;
  padding: 6px 16px; border-radius: 999px;
  margin-bottom: 12px;
}
.section-pill.light { background: rgba(196,168,130,0.2); color: var(--gold); }
.section-pill.rose { background: #ffe4e6; color: #e11d48; }
.section-header h2 { font-size: clamp(28px, 3vw, 40px); color: var(--navy); margin-bottom: 12px; }
.section-header h2.light { color: #fff; }
.section-header p { color: #6b7280; max-width: 540px; margin: 0 auto; font-size: 15px; }
.section-header p.light { color: #9ca3af; }

/* ── Categories ───────────────────────────────────────────── */
.categories-section { padding: 80px 0; background: #f9fafb; }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cat-card {
  position: relative;
  border-radius: 20px; padding: 20px;
  border: 1px solid;
  transition: all 0.3s;
  text-decoration: none;
  display: block;
}
.cat-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.1); transform: translateY(-4px); }
.cat-card .popular-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--gold); color: #fff;
  font-size: 9px; font-weight: 800;
  padding: 3px 8px; border-radius: 999px;
  text-transform: uppercase;
}
.cat-card .cat-emoji { font-size: 30px; margin-bottom: 12px; }
.cat-card .cat-name { font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.cat-card .cat-desc { font-size: 11px; color: #9ca3af; line-height: 1.5; margin-bottom: 10px; }
.cat-card .cat-footer { display: flex; align-items: center; justify-content: space-between; }
.cat-card .cat-count { font-size: 11px; color: #9ca3af; }
.cat-card .arrow { font-size: 14px; transition: transform 0.2s; }
.cat-card:hover .arrow { transform: translateX(4px); }

/* category color themes */
.cat-blue   { background: linear-gradient(135deg,#eff6ff,#dbeafe); border-color:#bfdbfe; }
.cat-blue .cat-name { color: #1d4ed8; }
.cat-blue .arrow { color: #1d4ed8; }
.cat-purple { background: linear-gradient(135deg,#faf5ff,#ede9fe); border-color:#ddd6fe; }
.cat-purple .cat-name { color: #7c3aed; }
.cat-purple .arrow { color: #7c3aed; }
.cat-amber  { background: linear-gradient(135deg,#fffbeb,#fef3c7); border-color:#fde68a; }
.cat-amber .cat-name { color: #b45309; }
.cat-amber .arrow { color: #b45309; }
.cat-green  { background: linear-gradient(135deg,#f0fdf4,#dcfce7); border-color:#bbf7d0; }
.cat-green .cat-name { color: #15803d; }
.cat-green .arrow { color: #15803d; }
.cat-red    { background: linear-gradient(135deg,#fff1f2,#ffe4e6); border-color:#fecdd3; }
.cat-red .cat-name { color: #b91c1c; }
.cat-red .arrow { color: #b91c1c; }
.cat-emerald{ background: linear-gradient(135deg,#ecfdf5,#d1fae5); border-color:#a7f3d0; }
.cat-emerald .cat-name { color: #047857; }
.cat-emerald .arrow { color: #047857; }
.cat-cyan   { background: linear-gradient(135deg,#ecfeff,#cffafe); border-color:#a5f3fc; }
.cat-cyan .cat-name { color: #0e7490; }
.cat-cyan .arrow { color: #0e7490; }
.cat-pink   { background: linear-gradient(135deg,#fdf2f8,#fce7f3); border-color:#fbcfe8; }
.cat-pink .cat-name { color: #be185d; }
.cat-pink .arrow { color: #be185d; }

/* ── Products Grid ────────────────────────────────────────── */
.products-section { padding: 80px 0; background: #fff; }
.products-filter-bar {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px;
}
.filter-btn {
  padding: 8px 18px; border-radius: 999px;
  border: 1.5px solid #e5e7eb;
  background: #fff; color: #6b7280;
  font-size: 13px; font-weight: 600; cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--gold); color: var(--gold-dark); background: #fef9f0;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card {
  border-radius: 16px;
  border: 1px solid #f0f0f0;
  overflow: hidden;
  background: #fff;
  transition: all 0.25s;
  position: relative;
}
.product-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); transform: translateY(-3px); }

/* ── 商品图片区域 — 占位符样式 ─────────────────────────── */
/*  替换方法：把 .product-img-placeholder 的 div 换成：
    <img src="images/products/your-photo.jpg" alt="产品名" class="product-img">
    然后在 CSS 中 .product-img { width:100%; height:208px; object-fit:cover; }  */
.product-img-placeholder {
  width: 100%; height: 208px;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border: 2px dashed #cbd5e1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; color: #94a3b8; font-size: 12px;
  transition: border-color 0.2s;
}
.product-img-placeholder:hover { border-color: var(--gold); }
.product-img-placeholder .placeholder-icon { font-size: 32px; opacity: 0.5; }
.product-img-placeholder .placeholder-text { font-weight: 600; font-size: 11px; text-align: center; line-height: 1.4; }
.product-img { width: 100%; height: 208px; object-fit: cover; }

.product-badges {
  position: absolute; top: 10px; left: 10px;
  display: flex; gap: 6px;
}
.badge {
  font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 999px;
}
.badge-sale { background: #ef4444; color: #fff; }
.badge-new  { background: #3b82f6; color: #fff; }
.badge-hot  { background: #f97316; color: #fff; }
.badge-top  { background: #8b5cf6; color: #fff; }
.product-card-body { padding: 14px; }
.product-category { font-size: 10px; color: var(--gold-dark); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.product-name { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 6px; line-height: 1.3; }
.product-rating { display: flex; align-items: center; gap: 4px; margin-bottom: 8px; }
.product-rating .stars { color: #f59e0b; font-size: 11px; }
.product-rating .count { font-size: 11px; color: #9ca3af; }
.product-price-row { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.product-price { font-size: 18px; font-weight: 800; color: var(--navy); }
.product-original { font-size: 13px; color: #9ca3af; text-decoration: line-through; }
.product-moq { font-size: 11px; color: var(--gold-dark); font-weight: 600; margin-bottom: 10px; }
.product-actions { display: flex; gap: 8px; }
.btn-cart {
  flex: 1; background: var(--navy); color: #fff;
  border: none; border-radius: 8px; padding: 8px;
  font-size: 12px; font-weight: 700; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: background 0.2s;
}
.btn-cart:hover { background: var(--gold); }
.btn-wish {
  background: #fff; border: 1.5px solid #e5e7eb; border-radius: 8px;
  padding: 8px 10px; cursor: pointer; color: #9ca3af;
  transition: all 0.2s;
}
.btn-wish:hover { border-color: #ef4444; color: #ef4444; }

/* ── Why Us ───────────────────────────────────────────────── */
.whyus-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy), #16213e);
  color: #fff; position: relative; overflow: hidden;
}
.whyus-glow-1 {
  position: absolute; top: 0; right: 0; width: 500px; height: 500px;
  background: rgba(196,168,130,0.05); border-radius: 50%; filter: blur(80px); pointer-events: none;
}
.whyus-glow-2 {
  position: absolute; bottom: 0; left: 0; width: 400px; height: 400px;
  background: rgba(139,105,20,0.08); border-radius: 50%; filter: blur(70px); pointer-events: none;
}
.advantages-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-bottom: 64px;
}
.advantage-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 24px;
  transition: all 0.3s;
}
.advantage-card:hover { border-color: rgba(196,168,130,0.4); background: rgba(255,255,255,0.08); }
.advantage-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px;
}
.advantage-card h3 { color: #fff; font-size: 16px; margin-bottom: 8px; }
.advantage-card p { color: #9ca3af; font-size: 13px; line-height: 1.6; }

/* Supply chain */
.supply-chain-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px; padding: 40px;
}
.supply-chain-box h3 { text-align: center; font-size: 24px; color: #fff; margin-bottom: 40px; }
.supply-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; position: relative; }
.supply-steps::before {
  content: '';
  position: absolute; top: 40px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, rgba(196,168,130,0.2), rgba(196,168,130,0.6), rgba(196,168,130,0.2));
}
.supply-step { text-align: center; position: relative; }
.supply-step-num {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 20px; font-weight: 800; color: #fff;
  box-shadow: 0 4px 16px rgba(196,168,130,0.3);
}
.supply-step h4 { color: #fff; font-size: 15px; margin-bottom: 6px; }
.supply-step p { color: #9ca3af; font-size: 12px; }




/* ── Hot Deals ────────────────────────────────────────────── */
.deals-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #fffbeb, #fff7ed);
}
.deals-header { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 48px; }
.countdown { display: flex; gap: 8px; align-items: center; }
.countdown-label { font-size: 13px; color: #6b7280; margin-bottom: 8px; text-align: right; }
.countdown-block {
  width: 48px; height: 48px;
  background: var(--navy); color: #fff;
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-family: monospace; font-size: 20px; font-weight: 800;
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.3);
}
.countdown-sep { font-size: 22px; font-weight: 800; color: var(--navy); }
.deals-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.deal-card { border-radius: 24px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.1); transition: all 0.3s; }
.deal-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.15); transform: translateY(-4px); }
.deal-top { padding: 24px; color: #fff; position: relative; overflow: hidden; }
.deal-top .deal-bg-emoji {
  position: absolute; top: -16px; right: -16px;
  font-size: 88px; opacity: 0.15; pointer-events: none;
}
.deal-highlight-badge {
  display: inline-block; background: rgba(255,255,255,0.2);
  color: #fff; font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 999px; margin-bottom: 12px;
}
.deal-top .deal-emoji { font-size: 48px; margin-bottom: 12px; }
.deal-top h3 { font-size: 15px; font-weight: 700; line-height: 1.3; }
.deal-body { background: #fff; padding: 20px; }
.deal-includes { margin-bottom: 16px; }
.deal-includes li {
  font-size: 12px; color: #4b5563; list-style: none;
  padding: 3px 0; display: flex; align-items: center; gap: 6px;
}
.deal-includes li::before {
  content: ''; width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%; flex-shrink: 0;
}
.deal-price-row { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.deal-price { font-size: 26px; font-weight: 800; color: var(--navy); }
.deal-original { font-size: 14px; color: #9ca3af; text-decoration: line-through; }
.deal-save-badge {
  margin-left: auto; background: #ef4444; color: #fff;
  font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 999px;
  display: flex; align-items: center; gap: 4px;
}
.deal-moq { font-size: 12px; color: var(--gold-dark); font-weight: 700; margin-bottom: 16px; }
.deal-bulk-banner {
  margin-top: 32px;
  background: linear-gradient(135deg, var(--navy), #16213e);
  border-radius: 16px; padding: 24px 32px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 16px; color: #fff;
}
.deal-bulk-banner h3 { font-size: 20px; margin-bottom: 4px; }
.deal-bulk-banner p { color: #d1d5db; font-size: 14px; }

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials-section { padding: 80px 0; background: #fff; }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.review-card {
  background: #fff; border: 1px solid #f0f0f0; border-radius: 20px;
  padding: 24px; position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: all 0.25s;
}
.review-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); transform: translateY(-2px); }
.review-quote {
  position: absolute; top: 16px; right: 16px;
  font-size: 32px; color: rgba(196,168,130,0.2);
  font-family: serif; line-height: 1;
}
.review-stars { color: #f59e0b; font-size: 13px; margin-bottom: 12px; }
.review-text {
  color: #4b5563; font-size: 13px; line-height: 1.7;
  margin-bottom: 20px; font-style: italic;
}
.review-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid #f9fafb; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 14px; flex-shrink: 0;
}
.review-name { font-size: 14px; font-weight: 700; color: var(--navy); }
.review-role { font-size: 11px; color: #9ca3af; }
.review-location { font-size: 11px; color: #9ca3af; }
.review-monthly { text-align: right; flex-shrink: 0; }
.review-monthly .label { font-size: 11px; color: #9ca3af; }
.review-monthly .value { font-size: 12px; font-weight: 700; color: var(--gold-dark); }
.trust-stats-bar {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 16px;
  margin-top: 48px;
}
.trust-stat {
  text-align: center;
  background: linear-gradient(135deg, rgba(196,168,130,0.08), #fffbeb);
  border: 1px solid rgba(196,168,130,0.2);
  border-radius: 20px; padding: 20px 16px;
}
.trust-stat .big { font-size: 26px; font-weight: 800; color: var(--navy); }
.trust-stat .small { font-size: 12px; color: #6b7280; margin-top: 4px; }

/* ── Contact ──────────────────────────────────────────────── */
.contact-section {
  padding: 96px 0 100px;
  background: linear-gradient(160deg, #faf7f2 0%, #f9fafb 55%, #f2f4f8 100%);
}
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 48px; align-items: start; }

/* Info cards */
.contact-info-item {
  display: flex; gap: 18px; align-items: flex-start;
  background: #fff; border: 1.5px solid #f0ece5; border-radius: 20px;
  padding: 22px 24px; margin-bottom: 14px;
  box-shadow: 0 2px 12px rgba(139,105,20,0.06);
  transition: box-shadow 0.25s, transform 0.25s;
}
.contact-info-item:hover {
  box-shadow: 0 6px 24px rgba(139,105,20,0.12);
  transform: translateY(-2px);
}
.contact-info-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(135deg, #fdf5e8 0%, #faead4 100%);
  border: 1px solid #f0e0c0;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 20px;
}
.contact-info-label {
  font-size: 10px; color: #c4a882; text-transform: uppercase;
  letter-spacing: 0.12em; font-weight: 800; margin-bottom: 5px;
}
.contact-info-value { font-size: 15px; font-weight: 700; color: var(--navy); line-height: 1.4; }
.contact-info-sub { font-size: 12px; color: #9ca3af; margin-top: 3px; }

/* Ship worldwide box */
.ship-worldwide-box {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 20px; padding: 28px; color: #fff; margin-top: 4px;
  border: 1px solid rgba(196,168,130,0.2);
  box-shadow: 0 4px 20px rgba(26,26,46,0.2);
}
.ship-worldwide-box h4 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.ship-worldwide-box p { color: #c9d1dc; font-size: 13px; line-height: 1.7; margin-bottom: 18px; }
.ship-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.ship-tag {
  background: rgba(196,168,130,0.18); color: #f0ddb8;
  font-size: 11px; font-weight: 700; padding: 5px 14px;
  border-radius: 999px; border: 1px solid rgba(196,168,130,0.3);
  letter-spacing: 0.04em;
}

/* Form box */
.contact-form-box {
  background: #fff;
  border: 1.5px solid #ede9e1;
  border-radius: 28px; padding: 40px;
  box-shadow: 0 4px 32px rgba(139,105,20,0.08);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group { margin-bottom: 0; }
.form-group label {
  display: block; font-size: 12px; font-weight: 700;
  color: #374151; margin-bottom: 7px; letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; border: 1.5px solid #e8e3da; border-radius: 12px;
  padding: 11px 14px; font-size: 14px; outline: none;
  background: #fdfcfb; color: #1f2937;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit; box-sizing: border-box;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,168,130,0.15);
  background: #fff;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #c4bdb3; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-full { grid-column: 1/-1; }
.form-submit-note {
  text-align: center; font-size: 12px; color: #b0a898; margin-top: 14px;
}
.success-box { text-align: center; padding: 48px 24px; display: none; }
.success-box.show { display: block; }
.form-box.hidden { display: none; }

/* ── Footer ───────────────────────────────────────────────── */
.footer { background: var(--navy-deep); color: #fff; }
.footer-newsletter {
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  padding: 32px 0;
}
.footer-newsletter .inner {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 16px;
}
.footer-newsletter h3 { font-size: 18px; font-weight: 800; margin-bottom: 4px; }
.footer-newsletter p { font-size: 13px; color: rgba(255,255,255,0.8); }
.footer-newsletter .newsletter-form { display: flex; gap: 8px; }
.footer-newsletter input {
  background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px; padding: 10px 18px; font-size: 14px;
  color: #fff; outline: none; width: 260px;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.6); }
.footer-newsletter input:focus { border-color: rgba(255,255,255,0.7); }
.footer-newsletter button {
  background: var(--navy); color: #fff;
  border: none; border-radius: 999px; padding: 10px 20px;
  font-size: 13px; font-weight: 700; cursor: pointer;
  display: flex; align-items: center; gap: 6px; white-space: nowrap;
  transition: background 0.2s;
}
.footer-newsletter button:hover { background: var(--navy-dark); }
.footer-main { max-width: 1280px; margin: 0 auto; padding: 56px 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 32px; }
.footer-brand p { color: #6b7280; font-size: 13px; line-height: 1.7; max-width: 280px; margin: 16px 0; }
.footer-socials { display: flex; gap: 10px; }
.footer-social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: #6b7280; text-decoration: none; font-size: 12px; font-weight: 700;
  transition: all 0.2s;
}
.footer-social-btn:hover { color: var(--gold); border-color: rgba(196,168,130,0.4); }
.footer-col h4 { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 13px; color: #6b7280; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 24px;
  max-width: 1280px; margin: 0 auto;
}
.footer-bottom .certs {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 12px;
}
.footer-cert {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  color: #4b5563; font-size: 11px; padding: 4px 12px; border-radius: 999px;
}
.footer-payments { display: flex; gap: 8px; }
.footer-pay {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  color: #4b5563; font-size: 11px; padding: 4px 10px; border-radius: 6px;
}
.footer-bottom-row {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
  gap: 8px; font-size: 12px; color: #374151; padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

/* ── Category Page ────────────────────────────────────────── */
.cat-page-banner {
  color: #fff; padding: 48px 0;
  position: relative; overflow: hidden;
}
.cat-page-banner .container { position: relative; z-index: 1; }
.cat-page-banner .back-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.7); font-size: 14px; margin-bottom: 20px;
  transition: color 0.2s;
}
.cat-page-banner .back-link:hover { color: #fff; }
.cat-page-banner h1 { font-size: 36px; color: #fff; margin-bottom: 12px; }
.cat-page-banner p { color: rgba(255,255,255,0.8); max-width: 540px; font-size: 15px; }
.sub-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.sub-tag {
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25);
  color: #fff; font-size: 12px; font-weight: 600;
  padding: 6px 14px; border-radius: 999px; cursor: pointer;
  transition: all 0.2s;
}
.sub-tag:hover, .sub-tag.active { background: rgba(255,255,255,0.3); }
.cat-page-layout {
  display: grid; grid-template-columns: 260px 1fr;
  gap: 32px; padding: 40px 0;
}
.sidebar { flex-shrink: 0; }
.sidebar-card {
  background: #fff; border: 1px solid #f0f0f0;
  border-radius: 16px; padding: 20px; margin-bottom: 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04); overflow: hidden;
}
.sidebar-card h4 { font-size: 13px; font-weight: 700; margin-bottom: 14px; color: var(--navy); }
.price-inputs { display: flex; gap: 8px; align-items: center; width: 100%; }
.price-inputs input {
  flex: 1; min-width: 0; border: 1.5px solid #e5e7eb; border-radius: 8px;
  padding: 8px 10px; font-size: 13px; outline: none; box-sizing: border-box;
}
.price-inputs input:focus { border-color: var(--gold); }
.filter-check-list { display: flex; flex-direction: column; gap: 8px; }
.filter-check-list label { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #4b5563; cursor: pointer; }
.filter-check-list input[type="checkbox"] { accent-color: var(--gold); width: 15px; height: 15px; }
.filter-range input { width: 100%; accent-color: var(--gold); margin-top: 6px; }
.products-topbar {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; margin-bottom: 24px;
}
.view-toggle { display: flex; gap: 6px; }
.view-btn {
  width: 36px; height: 36px; border: 1.5px solid #e5e7eb; border-radius: 8px;
  background: #fff; cursor: pointer; display: flex; align-items: center;
  justify-content: center; color: #9ca3af; transition: all 0.2s;
}
.view-btn.active, .view-btn:hover { border-color: var(--gold); color: var(--gold-dark); background: #fef9f0; }
.sort-select {
  border: 1.5px solid #e5e7eb; border-radius: 8px;
  padding: 8px 12px; font-size: 13px; outline: none; cursor: pointer;
  background: #fff;
}
.sort-select:focus { border-color: var(--gold); }
.img-replace-guide {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border: 2px dashed #93c5fd; border-radius: 16px;
  padding: 24px; margin-top: 40px; text-align: center;
}
.img-replace-guide h4 { color: #1d4ed8; font-size: 16px; margin-bottom: 8px; }
.img-replace-guide p { color: #3b82f6; font-size: 13px; margin-bottom: 12px; }
.img-replace-guide code {
  background: #1e3a5f; color: #93c5fd; font-family: monospace;
  font-size: 13px; padding: 10px 16px; border-radius: 8px;
  display: inline-block;
}

/* ── Breadcrumb ───────────────────────────────────────────── */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: #9ca3af; margin-bottom: 8px;
}
.breadcrumb a { color: #9ca3af; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold-dark); }
.breadcrumb span { color: var(--navy); font-weight: 600; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .cat-grid { grid-template-columns: repeat(3,1fr); }
  .products-grid { grid-template-columns: repeat(3,1fr); }
  .advantages-grid { grid-template-columns: repeat(2,1fr); }
  .reviews-grid { grid-template-columns: repeat(2,1fr); }
  .cat-page-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 768px) {
  .announcement-bar .inner { justify-content: center; }
  .search-bar { display: none; }
  .nav-links { display: none; }
  .cart-btn, .quote-btn { display: none; }
  .mobile-toggle { display: flex; }
  .hero h1 { font-size: 38px; }
  .cat-grid { grid-template-columns: repeat(2,1fr); }
  .products-grid { grid-template-columns: repeat(2,1fr); }
  .advantages-grid { grid-template-columns: 1fr; }
  .supply-steps { grid-template-columns: repeat(2,1fr); }
  .supply-steps::before { display: none; }
  .deals-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .trust-stats-bar { grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-newsletter .newsletter-form input { width: 180px; }
}

@media (max-width: 480px) {
  .cat-grid { grid-template-columns: repeat(2,1fr); }
  .products-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
