:root {
  --primary: #2f3f4f;
  --primary-light: #4a6275;
  --accent: #b8956b;
  --accent-light: #d4bc96;
  --foreground: #141820;
  --muted: #6b7280;
  --muted-bg: #f3f1ed;
  --card: #faf8f5;
  --border: #e5e1db;
  --primary-soft: #ece8e2;
  --shadow: 0 8px 24px rgba(20, 24, 32, 0.08);
  --font-display: 'Space Grotesk', Inter, sans-serif;
  --font-body: Inter, system-ui, sans-serif;
}
body { margin: 0; font-family: var(--font-body); color: var(--foreground); background: #fff; line-height: 1.6; max-width: 100%; overflow-x: clip; }
html { max-width: 100%; overflow-x: clip; }
a { color: inherit; text-decoration: none; }
.w2c-container { width: min(1280px, calc(100% - 32px)); margin: 0 auto; }

.site-header { position: sticky; top: 0; z-index: 1000; }

/* —— Dark header theme —— */
:root {
  --header-bg: linear-gradient(180deg, #141820 0%, #1c2636 100%);
  --header-border: rgba(255, 255, 255, 0.08);
  --header-text: rgba(255, 255, 255, 0.92);
  --header-text-muted: rgba(255, 255, 255, 0.55);
  --header-hover: rgba(255, 255, 255, 0.08);
  --header-btn-bg: rgba(255, 255, 255, 0.06);
  --header-btn-border: rgba(255, 255, 255, 0.14);
}

.site-header {
  background: var(--header-bg);
  border-bottom: 1px solid var(--header-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.28);
}

.site-header .logo { color: #fff; }

.site-header .logo-mark {
  background: linear-gradient(145deg, #2a3848 0%, #3d5266 42%, #b8956b 100%);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header .logo-text:hover .logo-mark {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(212, 188, 150, 0.35);
}

.site-header .logo-w2c {
  color: #fff;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.25);
}

.site-header .logo-links {
  background: linear-gradient(115deg, #d4bc96 0%, #e8d4b8 42%, #f8f0e4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.site-header .nav-link {
  color: var(--header-text);
}

.site-header .nav-link i {
  color: var(--header-text-muted);
}

.site-header .nav-link:hover,
.site-header .nav-link:focus-visible {
  background: var(--header-hover);
  color: #fff;
}

.site-header .nav-link:hover i {
  color: #d4bc96;
}

.site-header .nav-trigger {
  color: var(--header-text);
}

.site-header .nav-trigger:hover,
.site-header .nav-dd.open .nav-trigger {
  background: var(--header-hover);
  color: #fff;
}

.site-header .btn-sm {
  background: var(--header-btn-bg);
  border-color: var(--header-btn-border);
  color: var(--header-text);
  transition: background 0.15s, border-color 0.15s;
}

.site-header .btn-sm:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.site-header .btn-sm i {
  color: var(--header-text-muted);
}

.site-header .agent-trigger img,
.site-header #agentTriggerLogo {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.95);
}

.site-header .mobile-toggle {
  color: #fff;
}

@media (max-width: 960px) {
  .header-inner.open .main-nav {
    background: #1a2332;
    border-bottom: 1px solid var(--header-border);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  }

  .header-inner.open .nav-link {
    color: var(--header-text);
  }

  .header-inner.open .nav-link i {
    color: var(--header-text-muted);
  }

  .header-inner.open .nav-link:hover {
    background: var(--header-hover);
    color: #fff;
  }
}
.header-inner { display: flex; align-items: center; gap: 0; min-height: 68px; }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; color: var(--foreground); flex-shrink: 0; margin-right: 28px; }

/* Logo — refined wordmark */
.logo-text {
  gap: 10px;
  font-size: 0;
  line-height: 1;
  letter-spacing: 0;
  transition: opacity .15s;
}
.logo-text:hover { opacity: .92; }
.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--primary) 0%, #445566 42%, var(--accent) 100%);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(47, 63, 79, .22);
  transition: transform .18s ease, box-shadow .18s ease;
}
.logo-mark i {
  color: #fff;
  font-size: 15px;
  transform: rotate(-35deg);
}
.logo-text:hover .logo-mark {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(47, 63, 79, .28);
}
.logo-wordmark {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: -0.045em;
  white-space: nowrap;
}
.logo-w2c {
  color: var(--foreground);
  font-weight: 700;
}
.logo-links {
  font-weight: 600;
  background: linear-gradient(115deg, #8a6840 0%, var(--accent) 45%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
@media (max-width: 768px) {
  .logo-mark { width: 34px; height: 34px; border-radius: 10px; }
  .logo-mark i { font-size: 13px; }
  .logo-wordmark { font-size: 22px; }
}

.logo-img { display: block; height: 44px; width: auto; max-width: 200px; object-fit: contain; }
.main-nav { position: relative; flex: 0 1 auto; min-width: 0; }
.nav-menu { display: flex; gap: 6px; list-style: none; margin: 0; padding: 0; align-items: center; flex-wrap: wrap; }
.nav-link { display: inline-flex; align-items: center; gap: 6px; padding: 8px 12px; border-radius: 999px; font-size: 13px; font-weight: 600; color: var(--foreground); white-space: nowrap; transition: background .15s, color .15s; }
.nav-link i { font-size: 12px; color: var(--muted); width: 14px; text-align: center; }
.nav-link:hover { background: var(--muted-bg); color: var(--primary); }
.nav-link:hover i { color: var(--primary); }
.nav-trigger { border: 0; background: transparent; padding: 8px 12px; border-radius: 999px; font-size: 13px; font-weight: 600; cursor: pointer; color: var(--foreground); display: inline-flex; align-items: center; gap: 6px; font-family: inherit; white-space: nowrap; }
.nav-trigger:hover, .nav-dd.open .nav-trigger { background: var(--muted-bg); color: var(--primary); }
.nav-trigger i { font-size: 10px; transition: transform .15s; }
.nav-dd.open .nav-trigger i { transform: rotate(180deg); }
.nav-dd { position: relative; }
.dropdown-panel { position: absolute; top: calc(100% + 8px); left: 0; background: #fff; border: 1px solid var(--border); border-radius: 12px; box-shadow: 0 16px 40px rgba(5,24,51,.12); opacity: 0; visibility: hidden; transform: translateY(6px); transition: .15s; z-index: 1100; min-width: 220px; }
.nav-dd.open .dropdown-panel { opacity: 1; visibility: visible; transform: translateY(0); }
.explore-panel { padding: 8px; width: 240px; }
.explore-panel a { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 8px; font-size: 14px; font-weight: 600; color: var(--foreground); }
.explore-panel a:hover { background: var(--muted-bg); color: var(--primary); }
.explore-panel i { width: 18px; color: var(--muted); }
.mega-panel { display: grid; grid-template-columns: 220px 1fr; width: min(560px, 92vw); padding: 0; overflow: hidden; }
.mega-left { border-right: 1px solid var(--border); padding: 8px; }
.mega-group { width: 100%; display: flex; align-items: center; gap: 8px; padding: 10px 12px; border: 0; background: transparent; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; text-align: left; color: var(--foreground); font-family: inherit; text-decoration: none; }
.mega-group span:first-child { width: 22px; text-align: center; }
.mega-group i { margin-left: auto; font-size: 10px; color: var(--muted); }
.mega-group:hover, .mega-group.active { background: var(--primary-soft); color: var(--primary); }
.mega-group.link-only i { display: none; }
.mega-right { padding: 12px; }
.mega-sub { display: none; grid-template-columns: 1fr 1fr; gap: 6px; }
.mega-sub.active { display: grid; }
.mega-sub a { padding: 8px 10px; border-radius: 8px; font-size: 13px; font-weight: 600; color: var(--foreground); }
.mega-sub a:hover { background: var(--muted-bg); color: var(--primary); }
.agent-dot { width: 22px; height: 22px; border-radius: 999px; display: inline-grid; place-items: center; font-size: 11px; font-weight: 800; color: #fff; background: #f97316; }
.agent-dot.orange { background: #f97316; } .agent-dot.blue { background: #2563eb; } .agent-dot.green { background: #16a34a; }
.agent-dot.purple { background: #9333ea; } .agent-dot.pink { background: #db2777; } .agent-dot.red { background: #dc2626; }
.agent-dot.teal { background: #0d9488; } .agent-dot.navy { background: #1e3a8a; } .agent-dot.gray { background: #64748b; }
.agent-dot.rose { background: #e11d48; } .agent-dot.gold { background: #ca8a04; } .agent-dot.sky { background: #0284c7; }
.agent-dot.lime { background: #65a30d; } .agent-dot.indigo { background: #4f46e5; } .agent-dot.coral { background: #fb7185; }
.agent-dot.brown { background: #92400e; } .agent-dot.cyan { background: #0891b2; }
.agent-trigger { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; }
.locale-trigger { cursor: pointer; display: inline-flex; align-items: center; gap: 6px; }
.w2c-overlay { position: fixed; inset: 0; background: rgba(5,24,51,.62); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); z-index: 1200; opacity: 0; visibility: hidden; transition: opacity .2s ease, visibility .2s ease; }
.w2c-overlay.is-visible { opacity: 1; visibility: visible; }
body.w2c-panel-open { overflow: hidden; }
.locale-panel, .agent-panel { position: fixed; z-index: 1300; opacity: 0; visibility: hidden; transition: opacity .2s ease, visibility .2s ease, transform .2s ease; }
.locale-panel.is-visible, .agent-panel.is-visible { opacity: 1; visibility: visible; }
.locale-panel { inset: 0; display: grid; place-items: center; padding: 20px; pointer-events: none; }
.locale-panel.is-visible { pointer-events: auto; }
.locale-panel .panel-card { transform: translateY(8px) scale(.98); transition: transform .2s ease; }
.locale-panel.is-visible .panel-card { transform: translateY(0) scale(1); }
.agent-panel { top: 72px; right: max(16px, calc((100vw - 1280px)/2 + 16px)); width: 320px; transform: translateY(-6px); pointer-events: none; }
.agent-panel.is-visible { pointer-events: auto; transform: translateY(0); }
.panel-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; box-shadow: 0 20px 50px rgba(5,24,51,.18); padding: 16px; width: min(360px, 92vw); }
.agent-card { max-height: 460px; display: flex; flex-direction: column; }
.panel-kicker { margin: 0 0 8px; font-size: 11px; font-weight: 800; letter-spacing: .06em; color: var(--muted); }
.option-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 14px; }
.option-btn { padding: 10px 12px; border-radius: 8px; border: 1px solid var(--border); background: #fff; font-size: 14px; font-weight: 600; cursor: pointer; font-family: inherit; }
.option-btn.active { border-color: var(--accent); background: var(--primary-soft); color: var(--primary); }
.confirm-btn { width: 100%; border: 0; border-radius: 10px; padding: 12px; font-weight: 700; color: #fff; cursor: pointer; background: linear-gradient(90deg, var(--primary), var(--primary-light)); font-family: inherit; }
.agent-list { overflow-y: auto; display: flex; flex-direction: column; gap: 2px; }
.agent-logo { width: 24px; height: 24px; max-width: 24px; max-height: 24px; border-radius: 6px; object-fit: contain; background: #fff; border: 1px solid rgba(5,24,51,.06); flex-shrink: 0; display: block; }
.agent-logo-sm, .agent-trigger img, #agentTriggerLogo { width: 20px; height: 20px; max-width: 20px; max-height: 20px; border-radius: 5px; }
.agent-item .agent-logo { width: 22px; height: 22px; max-width: 22px; max-height: 22px; border-radius: 6px; }
.agent-panel[hidden], .locale-panel[hidden], .w2c-overlay[hidden] { display: none !important; }
.agent-item { width: 100%; border: 0; background: transparent; display: flex; align-items: center; gap: 10px; padding: 10px 8px; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; text-align: left; font-family: inherit; }
.agent-item:hover { background: var(--muted-bg); }
.agent-item.active { background: var(--primary-soft); color: var(--primary); }
.agent-item i.fa-check { margin-left: auto; color: var(--primary); font-size: 12px; }
.agent-item:not(.active) i.fa-check { display: none; }
.header-search { flex: 1; max-width: 420px; position: relative; }
.header-search input { width: 100%; padding: 11px 76px 11px 16px; border-radius: 999px; border: 1px solid var(--border); font-size: 14px; }
.header-search button { position: absolute; right: 6px; top: 50%; transform: translateY(-50%); width: 32px; height: 32px; border: 0; border-radius: 999px; background: var(--primary); color: #fff; cursor: pointer; }
.header-search .header-camera { right: 42px; background: #fff; color: var(--muted); border: 1px solid var(--border); }
.header-search .header-camera:hover { color: var(--primary); border-color: var(--primary); }
.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; margin-left: auto; padding-left: 24px; }
.btn-sm { padding: 9px 14px; border-radius: 999px; font-size: 13px; font-weight: 600; border: 1px solid var(--border); background: #fff; }
.btn-sm.primary { background: var(--primary); border-color: var(--primary); color: #fff; }
.mobile-toggle { display: none; border: 0; background: transparent; font-size: 22px; cursor: pointer; }

.w2c-hero { padding: 48px 0 24px; }
.w2c-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.w2c-kicker { font-size: 14px; font-weight: 700; color: var(--muted); margin: 0 0 8px; }
.w2c-hero h1 { margin: 0 0 12px; font-family: var(--font-display); font-size: clamp(34px, 5vw, 56px); line-height: 1.05; letter-spacing: -.02em; background: linear-gradient(90deg, var(--foreground), var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.w2c-sub { margin: 0 0 20px; font-weight: 600; }
.w2c-search { display: flex; gap: 8px; padding: 8px; border: 1px solid var(--border); border-radius: 999px; background: #fff; box-shadow: var(--shadow); margin-bottom: 14px; position: relative; }
.w2c-search input { flex: 1; border: 0; outline: none; padding: 10px 44px 10px 14px; font-size: 15px; background: transparent; }
.w2c-search button[type="submit"] { border: 0; border-radius: 999px; background: var(--primary); color: #fff; padding: 10px 18px; font-weight: 600; cursor: pointer; transition: background .15s; }
.w2c-search button[type="submit"]:hover { background: var(--primary-light); }
.w2c-camera-btn { position: absolute; right: 96px; top: 50%; transform: translateY(-50%); width: 34px; height: 34px; border-radius: 999px; border: 1px solid var(--border); background: #fff; color: var(--muted); cursor: pointer; }
.w2c-camera-btn:hover { color: var(--primary); border-color: var(--primary); }
.w2c-tags { display: flex; flex-direction: column; gap: 8px; }
.w2c-tags-row { display: flex; flex-wrap: wrap; gap: 8px; }
.w2c-tags a { padding: 7px 12px; border-radius: 999px; background: var(--muted-bg); font-size: 13px; font-weight: 600; }
.w2c-tags a:hover { color: var(--primary); }
.w2c-hero-img img { width: 100%; border-radius: 16px; border: 1px solid var(--border); object-fit: cover; aspect-ratio: 4/3; }

.w2c-section { padding: 28px 0; }
.w2c-section-head { display: flex; align-items: end; justify-content: space-between; gap: 16px; margin-bottom: 16px; }
.w2c-section-head h2 { margin: 0; font-family: var(--font-display); font-size: 28px; letter-spacing: -.02em; }
.w2c-section-head a { color: var(--primary); font-weight: 600; font-size: 14px; white-space: nowrap; }
.w2c-muted { margin: 4px 0 0; color: var(--muted); font-size: 14px; }
.w2c-badge { display: inline-block; margin-bottom: 6px; padding: 4px 10px; border-radius: 999px; background: var(--primary-soft); color: var(--primary); font-size: 11px; font-weight: 800; letter-spacing: .04em; }
.w2c-badge.hot { background: #fff0e8; color: #e45a00; }

.w2c-rail-wrap {
  position: relative;
  padding-left: 44px;
  padding-right: 44px;
}
.w2c-rail { display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px 0 10px; scrollbar-width: none; position: relative; z-index: 1; }
.w2c-rail-wrap.is-autoscroll .w2c-rail { overflow-x: hidden; scroll-snap-type: none; }
.w2c-rail-wrap.is-autoscroll:hover .w2c-rail,
.w2c-rail-wrap.is-autoscroll.is-user-nav .w2c-rail,
.w2c-rail-wrap.is-autoscroll.is-paused-touch .w2c-rail { overflow-x: auto; }
@media (hover: none), (pointer: coarse), (max-width: 960px) {
  .w2c-rail-wrap:not(.is-autoscroll) .w2c-rail {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    touch-action: pan-x;
  }
  .w2c-rail-wrap.is-autoscroll.is-paused-touch .w2c-rail,
  .w2c-rail-wrap.is-autoscroll.is-user-nav .w2c-rail {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    touch-action: pan-x;
  }
}
.w2c-rail::-webkit-scrollbar { display: none; }
.w2c-rail-btn {
  position: absolute; top: 38%; transform: translateY(-50%);
  width: 36px; height: 36px; border-radius: 999px;
  border: 1px solid var(--border); background: #fff;
  box-shadow: 0 4px 12px rgba(5,24,51,.12);
  cursor: pointer; z-index: 5; font-size: 22px; line-height: 1;
  pointer-events: auto;
}
.w2c-rail-btn.prev { left: 4px; }
.w2c-rail-btn.next { right: 4px; }

.w2c-cat { flex: 0 0 92px; scroll-snap-align: start; text-align: center; }
.w2c-cat img { width: 72px; height: 72px; border-radius: 16px; object-fit: cover; background: var(--muted-bg); display: block; margin: 0 auto 8px; }
.w2c-cat span { font-size: 12px; font-weight: 600; line-height: 1.3; display: block; }

.w2c-brand { flex: 0 0 88px; scroll-snap-align: start; text-align: center; }
.w2c-brand-logo { width: 72px; height: 72px; border-radius: 14px; border: 1px solid var(--border); background: #fff; display: grid; place-items: center; margin: 0 auto 8px; overflow: hidden; }
.w2c-brand-logo img { max-width: 56px; max-height: 56px; object-fit: contain; }
.w2c-brand span { font-size: 11px; font-weight: 600; line-height: 1.25; display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

#brandRail .w2c-brand { flex: 0 0 72px; }
#brandRail .w2c-brand span { display: none; }
#brandRail .w2c-brand-logo { width: 72px; height: 72px; margin: 0; padding: 8px; box-sizing: border-box; }
#brandRail .w2c-brand-logo img { width: 100%; height: 100%; max-width: none; max-height: none; object-fit: contain; }
.w2c-rail-wrap:has(#brandRail) .w2c-rail-btn { top: 50%; }

.w2c-products { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; }
@media (min-width:768px){ .w2c-products{ grid-template-columns:repeat(3,minmax(0,1fr)); } }
@media (min-width:1100px){ .w2c-products{ grid-template-columns:repeat(6,minmax(0,1fr)); } }
.w2c-product { border: 1px solid rgba(5,24,51,.08); border-radius: 8px; background: var(--card); overflow: hidden; transition: .15s; }
.w2c-product:hover { border-color: rgba(28,92,235,.35); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(5,24,51,.08); }
.w2c-product img { width: 100%; aspect-ratio: 1/1; object-fit: cover; background: var(--muted-bg); display: block; }
.w2c-product-meta { padding: 10px 12px 12px; }
.w2c-product-title { font-size: 13px; font-weight: 600; line-height: 1.35; min-height: 36px; margin-bottom: 6px; }
.w2c-product-price { color: var(--primary); font-weight: 800; font-size: 14px; }

.w2c-info-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 16px; }
.w2c-info-grid article { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 20px; }
.w2c-info-grid h3 { margin: 0 0 8px; font-size: 16px; }
.w2c-info-grid p { margin: 0 0 10px; color: var(--muted); font-size: 14px; }
.w2c-info-grid a { color: var(--primary); font-weight: 600; font-size: 14px; }

.w2c-faq h2 { margin: 0 0 14px; font-family: var(--font-display); }
.w2c-faq details { border: 1px solid var(--border); border-radius: 10px; margin-bottom: 10px; padding: 12px 16px; background: #fff; }
.w2c-faq summary { cursor: pointer; font-weight: 600; }
.w2c-faq p { margin: 10px 0 0; color: var(--muted); font-size: 14px; }

.site-footer { margin-top: 48px; background: rgba(249,252,255,.95); border-top: 1px solid var(--border); padding: 48px 0 28px; color: var(--muted); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 28px; }
.footer-col h4 { margin: 0 0 12px; font-family: var(--font-display); color: var(--foreground); font-size: 15px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin: 0 0 8px; }
.footer-col a { color: var(--muted); font-size: 14px; }
.footer-col a:hover { color: var(--primary); }
.footer-about { font-size: 14px; line-height: 1.7; max-width: 420px; }
.footer-bottom { padding-top: 20px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 13px; }
.back-top { position: fixed; right: 24px; bottom: 24px; width: 44px; height: 44px; border-radius: 999px; background: var(--primary); color: #fff; display: grid; place-items: center; box-shadow: 0 8px 24px rgba(5,24,51,.08); z-index: 900; }

.page-hero { padding: 36px 0 18px; border-bottom: 1px solid var(--border); background: linear-gradient(180deg,#f9fcff,#fff); }
.page-hero h1 { margin: 0 0 10px; font-family: var(--font-display); font-size: clamp(28px,4vw,40px); }
.page-hero p { margin: 0; color: var(--muted); max-width: 760px; }
.filter-rail { display: flex; gap: 8px; overflow-x: auto; padding: 16px 0 8px; }
.filter-pill { white-space: nowrap; padding: 8px 14px; border-radius: 999px; border: 1px solid var(--border); font-size: 13px; font-weight: 600; background: #fff; }
.filter-pill.active, .filter-pill:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.pagination { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 6px; padding: 28px 0 40px; }
.pagination li { list-style: none; margin: 0; padding: 0; display: contents; }
.pagination a { display: inline-flex; align-items: center; justify-content: center; min-width: 38px; min-height: 38px; padding: 0 12px; border-radius: 10px; border: 1px solid var(--border); font-size: 14px; font-weight: 600; background: #fff; color: var(--foreground); text-decoration: none; transition: background .15s, border-color .15s, color .15s; }
.pagination li.active a { background: var(--primary); border-color: var(--primary); color: #fff; cursor: default; }
.pagination a:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.pagination li.active a:hover { background: var(--primary); color: #fff; }
.pagination .w-pagination-previous, .pagination .w-pagination-next { padding: 0 14px; }
.pagination .w-pagination-previous:not([href]), .pagination .w-pagination-next:not([href]) { opacity: .45; pointer-events: none; }
.pagination-info { flex-basis: 100%; text-align: center; margin-top: 10px; font-size: 13px; color: var(--muted); font-weight: 600; }
.pagination-info strong { color: var(--foreground); font-weight: 700; }

.w2c-list-layout { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: 28px; padding: 28px 0 48px; align-items: start; }
.w2c-sidebar { position: sticky; top: 84px; border: 1px solid var(--border); border-radius: 14px; background: #fff; padding: 18px; box-shadow: 0 4px 16px rgba(5,24,51,.04); max-height: calc(100vh - 100px); overflow-y: auto; }
.sidebar-block + .sidebar-block { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border); }
.sidebar-block h3 { margin: 0 0 12px; font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.sidebar-links { display: flex; flex-direction: column; gap: 2px; }
.sidebar-links a { padding: 9px 12px; border-radius: 8px; font-size: 14px; font-weight: 600; color: var(--foreground); }
.sidebar-links a.active { background: var(--primary-soft); color: var(--primary); font-weight: 700; }
.sidebar-links a:hover:not(.active) { background: var(--muted-bg); color: var(--primary); }
.sheet-category-list,
.sidebar-cat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  max-height: 420px;
  overflow-y: auto;
  scrollbar-width: thin;
}
.sheet-category-list .sheet-cat-item,
.sidebar-cat-grid .sidebar-cat-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 8px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--foreground);
  line-height: 1.25;
  min-width: 0;
}
.sheet-category-list .sheet-cat-item img,
.sidebar-cat-grid .sidebar-cat-item img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
}
.sheet-category-list .sheet-cat-item span,
.sidebar-cat-grid .sidebar-cat-item span {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.sheet-category-list .sheet-cat-item.active,
.sidebar-cat-grid .sidebar-cat-item.active {
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 700;
}
.sheet-category-list .sheet-cat-item:hover:not(.active),
.sidebar-cat-grid .sidebar-cat-item:hover:not(.active) {
  background: var(--muted-bg);
  color: var(--primary);
}
.brand-filter-list { max-height: 320px; overflow-y: auto; display: flex; flex-direction: column; gap: 2px; scrollbar-width: thin; }
.brand-filter-letter {
  position: sticky; top: 0; z-index: 1;
  padding: 8px 6px 4px; margin-top: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  color: var(--muted); background: var(--card);
  border-bottom: 1px solid var(--border);
}
.brand-filter-letter:first-child { margin-top: 0; }
.w2c-list-main { min-width: 0; }
.w2c-list-header { margin-bottom: 20px; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.w2c-list-header h1 { margin: 0 0 6px; font-family: var(--font-display); font-size: clamp(26px, 3vw, 34px); line-height: 1.15; text-transform: capitalize; }
.w2c-list-header p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; max-width: 640px; }
.w2c-products-category { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
@media (min-width:768px){ .w2c-products-category{ grid-template-columns:repeat(3,minmax(0,1fr)); } }
@media (min-width:1100px){ .w2c-products-category{ grid-template-columns:repeat(4,minmax(0,1fr)); } }
.site-footer .container, .site-footer .w2c-container { width: min(1280px, calc(100% - 32px)); margin: 0 auto; }
.brand-filter-item { display: flex; align-items: center; gap: 8px; padding: 7px 6px; border-radius: 8px; cursor: pointer; font-size: 13px; font-weight: 600; }
.brand-filter-item:hover { background: var(--muted-bg); }
.brand-filter-item input { accent-color: var(--primary); }
.brand-filter-item img { width: 22px; height: 22px; object-fit: contain; border-radius: 4px; }
.brand-apply-btn { width: 100%; margin-top: 10px; border: 0; border-radius: 8px; padding: 10px; background: var(--primary); color: #fff; font-weight: 700; cursor: pointer; font-family: inherit; }
.page-hero.compact { padding-bottom: 12px; }
.list-toolbar { margin-bottom: 12px; }
.filter-rail.compact { padding: 0; }

.w2c-empty-msg { padding: 24px; color: var(--muted); font-size: 15px; }
.w2c-load-more-wrap { text-align: center; margin: 28px 0 8px; }
.w2c-load-more { border: 0; border-radius: 999px; background: var(--primary); color: #fff; padding: 12px 24px; font-weight: 700; cursor: pointer; box-shadow: 0 8px 20px rgba(28,92,235,.22); font-family: inherit; }
.w2c-section-head.compact { margin-bottom: 8px; }

.visual-search-page { padding-top: 12px; }
.visual-search-wrap { max-width: 920px; }
.visual-search-head h1 { margin: 0 0 8px; font-family: var(--font-display); font-size: clamp(28px, 4vw, 40px); }
.visual-search-head p { margin: 0 0 24px; color: var(--muted); }
.visual-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.visual-tab { border: 1px solid var(--border); background: #fff; border-radius: 999px; padding: 10px 16px; font-size: 14px; font-weight: 700; cursor: pointer; font-family: inherit; color: var(--foreground); }
.visual-tab.active { background: #e3f0ff; border-color: var(--primary); color: var(--primary); }
.visual-panel { margin-bottom: 16px; }
.visual-dropzone { position: relative; border: 2px dashed #cbd5e1; border-radius: 16px; min-height: 260px; display: grid; place-items: center; background: linear-gradient(180deg, #f8fbff, #fff); cursor: pointer; overflow: hidden; }
.visual-dropzone.dragover, .visual-dropzone.has-image { border-color: var(--primary); background: #eef5ff; }
.visual-drop-copy { text-align: center; padding: 24px; color: var(--muted); display: grid; gap: 8px; }
.visual-drop-copy i { font-size: 34px; color: var(--primary); }
.visual-drop-copy strong { color: var(--foreground); font-size: 18px; }
.visual-preview { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; background: #fff; padding: 16px; box-sizing: border-box; }
.visual-dropzone.has-image .visual-drop-copy { opacity: .15; }
.visual-field-label { display: block; margin-bottom: 8px; font-size: 14px; font-weight: 600; color: var(--muted); }
.visual-input { width: 100%; box-sizing: border-box; padding: 14px 16px; border-radius: 12px; border: 1px solid var(--border); font-size: 15px; margin-bottom: 12px; font-family: inherit; }
.visual-action-btn { border: 0; border-radius: 999px; padding: 12px 22px; background: var(--primary); color: #fff; font-weight: 700; cursor: pointer; font-family: inherit; }
.visual-status { min-height: 22px; margin: 8px 0 16px; font-size: 14px; color: var(--muted); }
.visual-status.error { color: #dc2626; }
.visual-results { margin-top: 8px; }

@media (max-width:960px){
  .w2c-hero-grid { grid-template-columns: 1fr; }
  .w2c-hero-img { order: -1; }
  .w2c-container {
    width: 100%;
    max-width: 100%;
    padding-left: 12px;
    padding-right: 12px;
    box-sizing: border-box;
  }
  .w2c-main { width: 100%; overflow-x: clip; }
  .header-inner {
    position: relative;
    width: 100%;
    max-width: 100%;
    gap: 8px;
    flex-wrap: nowrap;
  }
  .logo { order: 1; margin-right: 0; min-width: 0; flex-shrink: 1; }
  .header-actions {
    order: 2;
    margin-left: auto;
    padding-left: 0;
    gap: 6px;
    flex-shrink: 0;
  }
  .mobile-toggle {
    order: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    margin-left: 0;
  }
  .main-nav { order: 4; width: 100%; display: none; }
  .header-actions .btn-sm {
    padding: 8px 10px;
    font-size: 12px;
    max-width: none;
  }
  .agent-trigger #agentLabel,
  .agent-trigger .fa-chevron-down { display: none; }
  .agent-trigger { padding: 8px 10px; gap: 0; }
  .locale-trigger span { white-space: nowrap; }
  .header-inner.open .main-nav {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 68px;
    background: #1a2332;
    border-bottom: 1px solid var(--header-border);
    padding: 12px 16px;
    z-index: 1001;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .header-inner.open .nav-link {
    color: var(--header-text);
    width: 100%;
    box-sizing: border-box;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 14px;
  }
  .header-inner.open .nav-link i { color: var(--header-text-muted); }
  .header-inner.open .nav-menu { flex-direction: column; align-items: stretch; gap: 4px; }
  .header-inner.open .dropdown-panel { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; margin-top: 8px; }
  .header-inner.open .mega-panel { grid-template-columns: 1fr; width: 100%; }
  .w2c-rail-wrap {
    position: relative;
    padding-left: 34px;
    padding-right: 34px;
    overflow: hidden;
  }
  .w2c-rail-wrap:not(.is-autoscroll) .w2c-rail {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    touch-action: pan-x;
  }
  .w2c-rail-wrap.is-autoscroll.is-paused-touch .w2c-rail,
  .w2c-rail-wrap.is-autoscroll.is-user-nav .w2c-rail {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    touch-action: pan-x;
  }
  .w2c-rail-btn { top: 50%; width: 32px; height: 32px; font-size: 20px; }
  .w2c-rail-btn.prev { left: 0; }
  .w2c-rail-btn.next { right: 0; }
  .w2c-list-layout { grid-template-columns: 1fr; }
  .w2c-sidebar { position: static; }
  .w2c-sheet-page { width: 100%; max-width: 100%; margin: 0; padding: 16px 0 32px; padding-left: 16px; padding-right: 16px; overflow-x: clip; }
  .w2c-sheet-layout { display: block !important; }
  .w2c-sheet-layout .w2c-list-main,
  .w2c-sheet-layout .w2c-sheet-main { width: 100%; max-width: 100%; }
  .w2c-sheet-page .w2c-sidebar {
    position: fixed !important;
    top: 0; left: 0; bottom: 0;
    width: min(320px, 88vw);
    z-index: 1200;
    transform: translateX(-108%);
    transition: transform .25s ease, visibility .25s;
    max-height: none;
    border-radius: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-top: 0;
    visibility: hidden;
  }
  .w2c-sheet-page .w2c-sidebar.mobile-open { transform: translateX(0); visibility: visible; }
  .sheet-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    position: sticky;
    top: 0;
    z-index: 2;
    background: #fff;
    padding: 14px 18px;
    margin: 0 -18px 12px;
    border-bottom: 1px solid var(--border);
  }
  .sheet-drawer-head strong { font-size: 15px; font-family: var(--font-display); }
  .agent-panel { right: 16px; left: 16px; width: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .site-header .header-inner.w2c-container { width: 100%; max-width: 100%; margin: 0 auto; padding-left: 12px; padding-right: 12px; box-sizing: border-box; }
  .site-footer .w2c-container { width: 100%; max-width: 100%; padding-left: 12px; padding-right: 12px; box-sizing: border-box; }
}

.product-detail { padding: 24px 0 48px; }
.product-detail .product-container { width: min(1280px, calc(100% - 32px)); margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 460px); gap: 40px; align-items: start; }
.product-detail .product-title { font-family: var(--font-display); font-size: clamp(24px, 3vw, 34px); line-height: 1.2; margin: 0 0 12px; }
.product-detail .product-price .current-price { color: var(--primary); font-size: 28px; font-weight: 800; }
.product-detail .product-breadcrumb { width: min(1280px, calc(100% - 32px)); margin: 0 auto 20px; color: var(--muted); font-size: 13px; }
.w2c-purchase-block { margin-top: 24px; display: flex; flex-direction: column; gap: 18px; }
.w2c-purchase-row { display: flex; flex-direction: column; gap: 10px; }
.w2c-purchase-label { font-size: 13px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.w2c-size-list { display: flex; flex-wrap: wrap; gap: 8px; }
.w2c-size-btn { min-width: 44px; height: 40px; padding: 0 14px; border-radius: 8px; border: 1px solid var(--border); background: #fff; font-weight: 600; cursor: pointer; }
.w2c-size-btn.active, .w2c-size-btn:hover { border-color: var(--primary); color: var(--primary); background: #eef4ff; }
.w2c-qty-control { display: inline-flex; align-items: center; gap: 12px; border: 1px solid var(--border); border-radius: 10px; padding: 6px; width: fit-content; background: #fff; }
.w2c-qty-btn { width: 34px; height: 34px; border: 0; border-radius: 8px; background: var(--muted-bg); font-size: 18px; cursor: pointer; }
.w2c-qty-value { min-width: 24px; text-align: center; font-weight: 700; }
.w2c-agent-buy { border: 1px solid var(--border); border-radius: 14px; padding: 16px; background: var(--card); }
.w2c-agent-buy-title { margin: 0 0 8px; font-size: 15px; font-family: var(--font-display); }
.w2c-agent-buy-desc { margin: 0 0 14px; color: var(--muted); font-size: 13px; line-height: 1.6; }
.w2c-product-agent-picker-wrap { position: relative; }
.w2c-product-agent-picker { width: 100%; display: flex; align-items: center; gap: 10px; padding: 12px 14px; border: 1px solid var(--border); border-radius: 10px; background: #fff; font-size: 14px; font-weight: 600; cursor: pointer; }
.w2c-product-agent-picker i { margin-left: auto; color: var(--muted); font-size: 12px; }
.w2c-product-agent-menu { position: absolute; left: 0; right: 0; top: calc(100% + 6px); z-index: 40; max-height: 280px; overflow: auto; border: 1px solid var(--border); border-radius: 12px; background: #fff; box-shadow: var(--shadow); padding: 6px; }
.w2c-product-agent-item { width: 100%; border: 0; background: transparent; display: flex; align-items: center; gap: 10px; padding: 10px 8px; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; text-align: left; font-family: inherit; }
.w2c-product-agent-item:hover { background: var(--muted-bg); }
.w2c-product-agent-item.active { background: var(--primary-soft); color: var(--primary); }
.w2c-product-agent-item i.fa-check { margin-left: auto; color: var(--primary); font-size: 12px; }
.w2c-product-agent-item:not(.active) i.fa-check { display: none; }
.w2c-product-buy-btn { width: 100%; min-height: 48px; border: 0; border-radius: 12px; background: var(--primary); color: #fff; font-size: 15px; font-weight: 700; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
.w2c-product-buy-btn.unavailable { background: #94a3b8; cursor: not-allowed; }
.product-gallery .main-image { border: 1px solid var(--border); border-radius: 16px; overflow: hidden; background: var(--muted-bg); aspect-ratio: 1; }
.product-gallery .main-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-gallery .thumbnail-list { display: flex; gap: 10px; margin-top: 12px; overflow-x: auto; }
.product-gallery .thumbnail-list img { width: 72px; height: 72px; object-fit: cover; border-radius: 10px; border: 2px solid transparent; cursor: pointer; flex-shrink: 0; background: #fff; }
.product-gallery .thumbnail-list img.active, .product-gallery .thumbnail-list img:hover { border-color: var(--primary); }
.product-detail .product-subtitle { color: var(--muted); font-size: 14px; margin: 0 0 16px; }
.product-detail .product-seo-block { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--border); color: var(--muted); font-size: 14px; line-height: 1.7; }
.product-detail .product-seo-block h2 { font-size: 18px; color: var(--foreground); margin: 0 0 10px; font-family: var(--font-display); }
.product-related { padding: 24px 0 48px; }
.product-related .w2c-section-head { width: min(1280px, calc(100% - 32px)); margin: 0 auto 20px; }
.product-related .w2c-products { width: min(1280px, calc(100% - 32px)); margin: 0 auto; }
.platform-modal { display: none !important; visibility: hidden !important; }
@media (max-width: 900px) {
  .product-detail .product-container { grid-template-columns: 1fr; gap: 24px; }
}

.w2c-page .w2c-sub { max-width: 720px; margin-bottom: 28px; color: var(--muted); }
.w2c-page-cat-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
@media (min-width:768px){ .w2c-page-cat-grid{ grid-template-columns:repeat(3,minmax(0,1fr)); } }
@media (min-width:1100px){ .w2c-page-cat-grid{ grid-template-columns:repeat(4,minmax(0,1fr)); } }
.w2c-page-cat-card { display: flex; gap: 12px; align-items: center; padding: 14px; border: 1px solid var(--border); border-radius: 12px; background: var(--card); transition: .15s; }
.w2c-page-cat-card:hover { border-color: rgba(28,92,235,.35); transform: translateY(-2px); }
.w2c-page-cat-card img { width: 56px; height: 56px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.w2c-page-cat-card h3 { margin: 0 0 4px; font-size: 15px; }
.w2c-page-cat-card p { margin: 0; font-size: 12px; color: var(--muted); line-height: 1.45; }
.w2c-page-brand-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
@media (min-width:768px){ .w2c-page-brand-grid{ grid-template-columns:repeat(5,minmax(0,1fr)); } }
@media (min-width:1100px){ .w2c-page-brand-grid{ grid-template-columns:repeat(6,minmax(0,1fr)); } }
.w2c-page-brand-card { display: flex; align-items: center; justify-content: center; aspect-ratio: 1; padding: 10px; border: 1px solid var(--border); border-radius: 12px; background: #fff; text-align: center; transition: .15s; overflow: hidden; }
.w2c-page-brand-card span { display: none; }
.w2c-page-brand-card img { width: 100%; height: 100%; object-fit: contain; border-radius: 8px; background: #fff; }
.w2c-page-brand-card:hover { border-color: rgba(28,92,235,.35); box-shadow: 0 8px 24px rgba(5,24,51,.06); }

.w2c-brands-layout { display: grid; grid-template-columns: minmax(0, 1fr); gap: 24px; margin-top: 8px; }
@media (min-width: 960px) {
  .w2c-brands-layout { grid-template-columns: 260px minmax(0, 1fr); gap: 32px; align-items: start; }
}
.w2c-brand-index-panel {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  padding: 20px 18px 16px;
}
@media (min-width: 960px) {
  .w2c-brand-index-panel { position: sticky; top: 88px; }
}
.w2c-brand-index-title {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
}
.w2c-brand-alpha {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px 4px;
  margin-bottom: 16px;
}
.w2c-brand-alpha-btn {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 8px 0;
  font: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  cursor: pointer;
  border-radius: 8px;
  transition: color .15s, background .15s;
}
.w2c-brand-alpha-btn:hover:not(.is-disabled):not(:disabled) { color: var(--primary); background: rgba(28,92,235,.06); }
.w2c-brand-alpha-btn.is-active { color: var(--primary); }
.w2c-brand-alpha-btn.is-disabled,
.w2c-brand-alpha-btn:disabled { color: #b8c3d1; cursor: default; }
.w2c-brand-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  color: var(--foreground);
  font-weight: 600;
  text-align: center;
  transition: border-color .15s, box-shadow .15s;
}
.w2c-brand-search-btn:hover { border-color: rgba(28,92,235,.35); box-shadow: 0 6px 18px rgba(5,24,51,.05); }
.w2c-brands-content { min-width: 0; }
.w2c-brand-letter-section { scroll-margin-top: 96px; }
.w2c-brand-letter-section + .w2c-brand-letter-section { margin-top: 28px; }
.w2c-brand-letter-heading {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  letter-spacing: .02em;
}
.w2c-agent-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width:768px){ .w2c-agent-grid{ grid-template-columns:repeat(2,minmax(0,1fr)); } }
.w2c-agent-card { border: 1px solid var(--border); border-radius: 14px; padding: 18px; background: var(--card); }
.w2c-agent-card-head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.w2c-agent-card-head h3 { margin: 0; font-size: 17px; }
.w2c-agent-card p { margin: 0 0 10px; color: var(--muted); font-size: 14px; line-height: 1.6; }
.w2c-agent-meta { margin: 0; padding-left: 18px; color: var(--muted); font-size: 13px; }
.w2c-steps-grid { display: grid; grid-template-columns: 1fr; gap: 14px; margin-bottom: 28px; }
@media (min-width:900px){ .w2c-steps-grid{ grid-template-columns:repeat(2,minmax(0,1fr)); } }
.w2c-step-card { border: 1px solid var(--border); border-radius: 12px; padding: 16px; background: #fff; position: relative; padding-left: 52px; }
.w2c-step-num { position: absolute; left: 16px; top: 16px; width: 26px; height: 26px; border-radius: 999px; background: var(--primary); color: #fff; display: grid; place-items: center; font-size: 12px; font-weight: 800; }
.w2c-step-card h3 { margin: 0 0 6px; font-size: 15px; }
.w2c-step-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.w2c-tip-grid { display: grid; grid-template-columns: 1fr; gap: 14px; margin-bottom: 28px; }
@media (min-width:768px){ .w2c-tip-grid{ grid-template-columns:repeat(2,minmax(0,1fr)); } }
.w2c-tip-grid article, .w2c-value-grid article { border: 1px solid var(--border); border-radius: 12px; padding: 16px; background: #fff; }
.w2c-tip-grid h3, .w2c-value-grid h3 { margin: 0 0 8px; font-size: 15px; }
.w2c-tip-grid p, .w2c-value-grid p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.w2c-faq details { border: 1px solid var(--border); border-radius: 10px; padding: 12px 14px; margin-bottom: 10px; background: #fff; }
.w2c-faq summary { cursor: pointer; font-weight: 600; }
.w2c-faq p { margin: 10px 0 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.w2c-page-cta, .w2c-page-cta-row { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }

.w2c-article-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.w2c-article-filter { padding: 8px 14px; border-radius: 999px; border: 1px solid var(--border); background: #fff; font-size: 13px; font-weight: 600; color: var(--foreground); text-decoration: none; }
.w2c-article-filter:hover, .w2c-article-filter.active { background: var(--primary-soft); border-color: var(--primary); color: var(--primary); }
.w2c-article-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.w2c-article-card { display: block; padding: 18px; border: 1px solid var(--border); border-radius: 12px; background: var(--card); transition: .15s; color: inherit; text-decoration: none; }
.w2c-article-card:hover { border-color: rgba(28,92,235,.35); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(5,24,51,.06); }
.w2c-article-card h2 { margin: 0 0 8px; font-size: 17px; line-height: 1.4; font-family: var(--font-display); }
.w2c-article-card p { margin: 0 0 12px; color: var(--muted); font-size: 14px; line-height: 1.55; }
.w2c-article-meta { display: flex; gap: 14px; color: var(--muted); font-size: 12px; }
.w2c-article-meta i { margin-right: 4px; }
.w2c-article-detail { max-width: 820px; margin: 0 auto; }
.w2c-article-breadcrumb { color: var(--muted); font-size: 13px; margin-bottom: 16px; }
.w2c-article-breadcrumb a { color: var(--primary); text-decoration: none; }
.w2c-article-detail h1 { margin: 0 0 14px; font-family: var(--font-display); font-size: clamp(28px, 4vw, 38px); line-height: 1.15; letter-spacing: -.02em; }
.w2c-article-body { font-size: 16px; line-height: 1.8; color: var(--foreground); }
.w2c-article-body h2 { font-size: 22px; margin: 28px 0 12px; font-family: var(--font-display); }
.w2c-article-body h3 { font-size: 18px; margin: 22px 0 10px; }
.w2c-article-body p { margin: 0 0 14px; }
.w2c-article-body img { max-width: 100%; height: auto; border-radius: 10px; margin: 14px 0; }
.w2c-article-body a { color: var(--primary); }
.w2c-article-cta { margin: 28px 0; padding: 16px 18px; border-left: 4px solid var(--primary); border-radius: 8px; background: var(--muted-bg); font-size: 15px; }
.w2c-article-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 32px; }
.w2c-article-nav a { display: block; padding: 16px; border: 1px solid var(--border); border-radius: 12px; text-decoration: none; color: inherit; transition: .15s; }
.w2c-article-nav a:hover { border-color: rgba(28,92,235,.35); }
.w2c-article-nav a.disabled { opacity: .5; pointer-events: none; }
.w2c-article-nav span { display: block; font-size: 12px; color: var(--muted); margin-bottom: 6px; }
.w2c-article-nav strong { font-size: 14px; line-height: 1.4; }
.w2c-article-nav .nav-next { text-align: right; }
.w2c-pagination { margin-top: 28px; display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.w2c-pagination a, .w2c-pagination span { display: inline-block; padding: 8px 14px; border-radius: 8px; border: 1px solid var(--border); color: var(--foreground); text-decoration: none; font-size: 14px; font-weight: 600; }
.w2c-pagination a:hover, .w2c-pagination .current { background: var(--primary); border-color: var(--primary); color: #fff; }
@media (max-width: 768px) { .w2c-article-nav { grid-template-columns: 1fr; } .w2c-article-nav .nav-next { text-align: left; } }
.w2c-btn { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 0 18px; border-radius: 10px; background: var(--primary); color: #fff; font-weight: 700; border: 0; }
.w2c-btn-outline { background: #fff; color: var(--primary); border: 1px solid var(--border); }
.w2c-h2 { font-family: var(--font-display); font-size: 22px; margin: 0 0 16px; }
.w2c-section-muted { background: var(--muted-bg); }
.w2c-stats-row { display: flex; gap: 24px; margin-top: 20px; }
.w2c-stats-row strong { display: block; font-size: 28px; color: var(--primary); }
.w2c-stats-row span { font-size: 13px; color: var(--muted); }
.w2c-value-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width:768px){ .w2c-value-grid{ grid-template-columns:repeat(2,minmax(0,1fr)); } }
@media (min-width:1100px){ .w2c-value-grid{ grid-template-columns:repeat(3,minmax(0,1fr)); } }
.w2c-contact-grid { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 8px; }
.w2c-contact-grid a { padding: 10px 16px; border: 1px solid var(--border); border-radius: 999px; background: #fff; font-weight: 600; }
.w2c-legal h1 { font-family: var(--font-display); font-size: clamp(26px, 3vw, 34px); }
.w2c-legal h2 { margin-top: 24px; font-size: 18px; }
.w2c-legal p, .w2c-legal li { color: var(--muted); line-height: 1.7; }

.w2c-sheet-page { position: relative; width: min(1280px, calc(100% - 32px)); margin: 0 auto; padding: 28px 0 48px; box-sizing: border-box; }
.w2c-sheet-layout { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: 28px; align-items: start; }
.w2c-sheet-main { min-width: 0; width: 100%; }
.w2c-sheet-page .w2c-sidebar {
  position: sticky;
  top: 84px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  padding: 18px;
  box-shadow: 0 4px 16px rgba(5,24,51,.04);
  max-height: calc(100vh - 100px);
  overflow-y: auto;
}
.sheet-drawer-head { display: none; }
.sheet-drawer-close {
  border: 0;
  background: var(--muted-bg);
  width: 36px;
  height: 36px;
  border-radius: 10px;
  cursor: pointer;
  color: var(--foreground);
  font-size: 16px;
}
.w2c-sheet-overlay { position: fixed; inset: 0; background: rgba(5,24,51,.55); z-index: 1100; opacity: 0; visibility: hidden; transition: .2s; }
.w2c-sheet-overlay.is-visible { opacity: 1; visibility: visible; }
.sheet-toolbar { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-bottom: 14px; --sheet-control-h: 38px; }
.sheet-toolbar .w2c-search-toolbar {
  flex: 1 1 280px;
  min-width: min(100%, 280px);
  max-width: 520px;
  margin-bottom: 0;
  box-shadow: none;
}
.sheet-toolbar .w2c-search-toolbar input {
  padding: 10px 14px;
}
.sheet-toolbar .w2c-search-toolbar button[type="submit"] {
  flex-shrink: 0;
}
.sheet-tool-btn {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--sheet-control-h);
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 10px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  color: var(--foreground);
  line-height: 1.2;
}
.sheet-tool-btn.active, .sheet-tool-btn.has-count { border-color: var(--primary); color: var(--primary); background: #eef4ff; }
.sheet-sort-wrap { position: relative; }
.sheet-sort-menu { position: absolute; top: calc(100% + 6px); left: 0; min-width: 220px; background: #fff; border: 1px solid var(--border); border-radius: 12px; box-shadow: var(--shadow); padding: 6px; z-index: 20; display: flex; flex-direction: column; gap: 2px; }
.sheet-sort-menu[hidden] { display: none; }
.sheet-sort-menu button { border: 0; background: transparent; text-align: left; padding: 10px 12px; border-radius: 8px; font-size: 13px; font-weight: 600; cursor: pointer; font-family: inherit; }
.sheet-sort-menu button:hover { background: var(--muted-bg); color: var(--primary); }
.sheet-view-toggle { display: inline-flex; gap: 6px; margin-left: auto; flex-shrink: 0; }
.sheet-sub-search {
  box-sizing: border-box;
  flex: 1 1 220px;
  min-width: 200px;
  min-height: var(--sheet-control-h);
  height: var(--sheet-control-h);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.sheet-sub-search:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(28, 92, 235, .1);
}
.sheet-sub-search i {
  flex-shrink: 0;
  color: #94a3b8;
  font-size: 13px;
  line-height: 1;
  pointer-events: none;
}
.sheet-sub-search:focus-within i { color: var(--primary); }
.sheet-sub-search input {
  flex: 1;
  min-width: 0;
  width: 100%;
  height: auto;
  border: 0;
  outline: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  font-family: inherit;
  background: transparent;
  color: var(--foreground);
  -webkit-appearance: none;
  appearance: none;
}
.sheet-sub-search input::placeholder {
  color: #94a3b8;
  font-weight: 500;
}
.sheet-sub-search input::-webkit-search-cancel-button,
.sheet-sub-search input::-webkit-search-decoration { display: none; }
.sheet-sub-search-clear {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 0;
  border-radius: 999px;
  background: var(--muted-bg);
  color: var(--muted);
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.sheet-sub-search-clear[hidden] { display: none; }
.sheet-sub-search-clear:hover { background: #e2e8f0; color: var(--foreground); }
.sheet-result-count { margin: 0 0 12px; font-size: 14px; }
.sheet-price-range { display: grid; grid-template-columns: 1fr auto 1fr; gap: 8px; align-items: center; }
.sheet-price-range input, .sheet-select { width: 100%; border: 1px solid var(--border); border-radius: 8px; padding: 9px 10px; font-size: 13px; font-family: inherit; background: #fff; }
.sheet-clear-btn { width: 100%; margin-top: 8px; border: 1px solid var(--border); border-radius: 8px; padding: 9px; background: #fff; font-weight: 600; cursor: pointer; font-family: inherit; color: var(--muted); }
.w2c-sheet-pagination { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; justify-content: center; padding: 24px 0 8px; }
.w2c-sheet-pagination a, .w2c-sheet-pagination span.current { display: inline-flex; align-items: center; justify-content: center; min-width: 38px; min-height: 38px; padding: 0 10px; border-radius: 10px; border: 1px solid var(--border); font-size: 14px; font-weight: 600; background: #fff; }
.w2c-sheet-pagination span.current, .w2c-sheet-pagination a:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.sheet-goto { display: inline-flex; align-items: center; gap: 6px; margin-left: 8px; font-size: 13px; color: var(--muted); }
.sheet-goto input { width: 64px; border: 1px solid var(--border); border-radius: 8px; padding: 7px 8px; font-family: inherit; }
.sheet-goto button { border: 0; border-radius: 8px; background: var(--primary); color: #fff; padding: 7px 12px; font-weight: 700; cursor: pointer; font-family: inherit; }
.w2c-sheet-table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: 14px; background: #fff; }
.w2c-sheet-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.w2c-sheet-table th, .w2c-sheet-table td { padding: 12px 14px; border-bottom: 1px solid var(--border); text-align: left; vertical-align: middle; }
.w2c-sheet-table th { font-size: 11px; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); background: var(--muted-bg); }
.w2c-sheet-table tr:hover td { background: #f9fcff; }
.sheet-td-img img { width: 52px; height: 52px; object-fit: cover; border-radius: 8px; background: var(--muted-bg); }
.sheet-td-title a { color: var(--foreground); font-weight: 600; }
.sheet-td-price { font-weight: 700; color: var(--primary); white-space: nowrap; }
.sheet-open-link { color: var(--primary); font-weight: 700; white-space: nowrap; }
.w2c-product-brand { font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.w2c-products.select-mode .w2c-product { position: relative; }
.sheet-select-check { position: absolute; top: 10px; left: 10px; z-index: 2; background: rgba(255,255,255,.92); border-radius: 6px; padding: 4px; }
@media (max-width: 980px) {
  .sheet-view-toggle { margin-left: 0; }
  .sheet-toolbar .w2c-search-toolbar { flex: 1 1 100%; order: 10; min-width: 0; width: 100%; max-width: none; }
}

@media (max-width: 768px) {
  .w2c-sheet-page .w2c-list-header { margin-bottom: 8px; }
  .w2c-sheet-page .w2c-list-header h1 { font-size: clamp(22px, 6vw, 28px); line-height: 1.2; }
  .w2c-sheet-page .w2c-sub { font-size: 14px; }
  .sheet-toolbar { gap: 8px; margin-bottom: 10px; --sheet-control-h: 36px; }
  .sheet-tool-btn { font-size: 12px; padding: 0 10px; }
  .sheet-sort-wrap { flex: 1 1 calc(50% - 4px); min-width: 0; }
  .sheet-sort-wrap .sheet-tool-btn { width: 100%; justify-content: space-between; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  #sheetFilterBtn { flex: 0 0 auto; }
  #sheetSelectBtn { flex: 0 0 auto; }
  .sheet-view-toggle { width: 100%; justify-content: flex-end; order: 9; }
  .sheet-result-count { font-size: 13px; }
  .w2c-sheet-pagination { padding: 16px 0 8px; gap: 4px; }
  .w2c-sheet-pagination a, .w2c-sheet-pagination span.current { min-width: 34px; min-height: 34px; font-size: 13px; }
  .sheet-goto { margin-left: 0; margin-top: 8px; width: 100%; justify-content: center; flex-wrap: wrap; }
  .w2c-products-category { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .w2c-sheet-table { min-width: 640px; }
  .w2c-sheet-table-wrap { -webkit-overflow-scrolling: touch; overscroll-behavior-x: contain; max-width: 100%; }
  .w2c-sheet-table-wrap:not(.is-mobile-list)::before {
    content: '';
    display: block;
    height: 0;
  }
  .sheet-mobile-list { display: flex; flex-direction: column; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; background: #fff; }
  .w2c-sheet-table-wrap.is-mobile-list { border: 0; overflow: visible; background: transparent; }
  .sheet-mobile-item { display: grid; grid-template-columns: 72px minmax(0, 1fr); gap: 12px; padding: 12px; border-bottom: 1px solid var(--border); align-items: start; background: #fff; }
  .sheet-mobile-item:last-child { border-bottom: 0; }
  .sheet-mobile-thumb img { width: 72px; height: 72px; object-fit: cover; border-radius: 10px; background: var(--muted-bg); display: block; }
  .sheet-mobile-brand { font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
  .sheet-mobile-title { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; font-size: 13px; font-weight: 600; line-height: 1.35; color: var(--foreground); margin-top: 4px; }
  .sheet-mobile-meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 8px; }
  .sheet-mobile-price { font-weight: 800; color: var(--primary); font-size: 14px; white-space: nowrap; }
  .sheet-mobile-open { color: var(--primary); font-weight: 700; font-size: 13px; white-space: nowrap; }
}

@media (max-width: 360px) {
  .w2c-products-category { grid-template-columns: 1fr; }
  .w2c-sheet-page .w2c-sub { display: none; }
}

.w2c-wa-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 14px; border-radius: 999px;
  background: #25D366; color: #fff !important; font-weight: 700; font-size: 14px;
  text-decoration: none; transition: background .15s, transform .15s;
}
.w2c-wa-btn:hover { background: #1ebe57; color: #fff; transform: translateY(-1px); }
.w2c-wa-btn i { font-size: 18px; }
.footer-wa { display: inline-flex; align-items: center; gap: 6px; }
.footer-wa i { color: #25D366; }

.footer-tg { display: inline-flex; align-items: center; gap: 6px; }
.footer-tg i { color: #229ED9; }
