/* roulang page: index */
:root {
  --color-bg: oklch(97% 0.012 88);
  --color-surface: oklch(94% 0.018 88);
  --color-border: oklch(88% 0.020 88);
  --color-accent: oklch(62% 0.155 158);
  --color-accent-dk: oklch(50% 0.155 158);
  --color-warm: oklch(72% 0.130 58);
  --color-text: oklch(22% 0.018 260);
  --color-muted: oklch(54% 0.018 260);
  --color-danger: oklch(60% 0.18 25);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-card: 0 2px 8px oklch(22% 0.02 260 / 0.08);
  --shadow-hover: 0 6px 20px oklch(22% 0.02 260 / 0.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text);
  background: var(--color-bg);
}

a { color: var(--color-accent); text-decoration: none; transition: color 0.18s; }
a:hover { color: var(--color-accent-dk); }
img { max-width: 100%; display: block; }
button { cursor: pointer; }

/* ── Countdown Bar ── */
.countdown-bar {
  background: var(--color-danger);
  color: #fff;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0 16px;
}
.countdown-bar .bar-text { white-space: nowrap; }
.countdown-units { display: flex; align-items: center; gap: 4px; font-variant-numeric: tabular-nums; }
.countdown-units span.unit {
  background: rgba(0,0,0,0.2);
  border-radius: 4px;
  padding: 2px 7px;
  font-size: 1rem;
  font-weight: 700;
  min-width: 32px;
  text-align: center;
}
.countdown-units .sep { font-weight: 700; opacity: 0.8; }

/* ── Navigation ── */
.site-header {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 16px;
}
.site-logo {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-accent);
  white-space: nowrap;
  flex-shrink: 0;
}
.site-logo:hover { color: var(--color-accent-dk); }
.nav-search-wrap {
  flex: 1;
  max-width: 420px;
}
.nav-search-wrap .input-group input {
  border-color: var(--color-border);
  border-radius: var(--radius-md) 0 0 var(--radius-md) !important;
  background: var(--color-surface);
  color: var(--color-text);
  font-size: 0.9rem;
}
.nav-search-wrap .input-group input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px oklch(62% 0.155 158 / 0.15);
}
.nav-search-wrap .btn-search {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
  border-radius: 0 var(--radius-md) var(--radius-md) 0 !important;
  padding: 0 14px;
}
.nav-search-wrap .btn-search:hover { background: var(--color-accent-dk); border-color: var(--color-accent-dk); }
.btn-nav-cta {
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  padding: 8px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.18s;
  flex-shrink: 0;
}
.btn-nav-cta:hover { background: var(--color-accent-dk); color: #fff; }

.nav-channel-row {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  gap: 4px;
  padding: 6px 0 10px;
}
.nav-channel-row::-webkit-scrollbar { display: none; }
.nav-channel-row a {
  display: inline-block;
  padding: 5px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--color-muted);
  white-space: nowrap;
  transition: all 0.18s;
  flex-shrink: 0;
}
.nav-channel-row a:hover { color: var(--color-text); background: var(--color-surface); }
.nav-channel-row a.active { background: var(--color-accent); color: #fff; }

/* ── Hero ── */
.hero-section {
  background: var(--color-bg);
  padding: 56px 0 48px;
}
.hero-title {
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text);
  line-height: 1.25;
  margin-bottom: 16px;
}
.hero-title .accent { color: var(--color-accent); }
.hero-desc {
  font-size: 1rem;
  color: var(--color-muted);
  max-width: 52ch;
  margin-bottom: 28px;
  line-height: 1.75;
}
.hero-cta-group { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 32px; }
.btn-primary-custom {
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.18s, transform 0.18s;
  display: inline-block;
}
.btn-primary-custom:hover { background: var(--color-accent-dk); color: #fff; transform: translateY(-1px); }
.btn-secondary-custom {
  background: transparent;
  color: var(--color-accent);
  border: 1.5px solid var(--color-accent);
  border-radius: var(--radius-md);
  padding: 11px 24px;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.18s;
  display: inline-block;
}
.btn-secondary-custom:hover { background: var(--color-accent); color: #fff; }

.hero-stats { display: flex; gap: 24px; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat .stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-accent);
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
}
.hero-stat .stat-label { font-size: 0.8rem; color: var(--color-muted); }

/* Icon Matrix */
.icon-matrix {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.icon-cell {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px 12px;
  text-align: center;
  transition: all 0.18s;
  cursor: default;
}
.icon-cell:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); border-color: var(--color-accent); }
.icon-cell .ic-icon { font-size: 1.75rem; margin-bottom: 8px; color: var(--color-accent); }
.icon-cell .ic-label { font-size: 0.8rem; color: var(--color-text); font-weight: 500; }
.icon-cell .ic-count { font-size: 0.75rem; color: var(--color-muted); margin-top: 2px; }

.status-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.8rem;
  color: var(--color-text);
}
.status-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--color-accent); flex-shrink: 0; }
.status-badge .dot.warm { background: var(--color-warm); }
.status-badge .dot.danger { background: var(--color-danger); }

/* ── Section Common ── */
.section-title {
  font-size: clamp(1.25rem, 2.8vw, 1.8rem);
  font-weight: 600;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 8px;
}
.section-divider {
  width: 40px;
  height: 3px;
  background: var(--color-accent);
  margin: 0 auto 12px;
  border-radius: 2px;
}
.section-sub {
  text-align: center;
  color: var(--color-muted);
  font-size: 0.9rem;
  max-width: 52ch;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* ── Highlight Cards ── */
.highlights-section { background: var(--color-surface); padding: 56px 0; }
.highlight-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.18s, box-shadow 0.18s;
  height: 100%;
}
.highlight-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.card-img-block {
  height: 140px;
  position: relative;
  overflow: hidden;
}
.card-img-block::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 8px, rgba(255,255,255,0.04) 8px, rgba(255,255,255,0.04) 16px);
}
.card-body-custom { padding: 16px; }
.card-body-custom h5 { font-size: 0.95rem; font-weight: 600; margin-bottom: 6px; color: var(--color-text); }
.card-body-custom p { font-size: 0.85rem; color: var(--color-muted); margin-bottom: 10px; line-height: 1.6; }
.card-tag {
  display: inline-block;
  background: var(--color-warm);
  color: #fff;
  font-size: 0.72rem;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  font-weight: 500;
}

/* ── Steps Section ── */
.steps-section { background: var(--color-bg); padding: 56px 0; }
.step-item { display: flex; gap: 20px; margin-bottom: 32px; position: relative; }
.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 52px;
  bottom: -12px;
  width: 2px;
  border-left: 2px dashed var(--color-border);
}
.step-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-warm);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  min-width: 40px;
  text-align: center;
  flex-shrink: 0;
  padding-top: 2px;
}
.step-content h5 { font-size: 1rem; font-weight: 600; margin-bottom: 4px; color: var(--color-text); }
.step-content p { font-size: 0.875rem; color: var(--color-muted); line-height: 1.65; }

/* ── Reviews ── */
.reviews-section { background: var(--color-surface); padding: 56px 0; }
.review-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border); border-radius: var(--radius-md); }

/* ── CTA Section ── */
.cta-section { background: var(--color-accent); color: #fff; padding: 64px 0; text-align: center; }
.cta-section h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; margin-bottom: 12px; }
.cta-section p { font-size: 1rem; opacity: 0.9; margin-bottom: 28px; }
.btn-cta-white {
  background: #fff;
  color: var(--color-accent);
  border: none;
  border-radius: var(--radius-md);
  padding: 12px 36px;
  font-size: 1rem;
  font-weight: 700;
  transition: background 0.18s;
  display: inline-block;
}
.btn-cta-white:hover { background: var(--color-bg); color: var(--color-accent-dk); }
.cta-trust { font-size: 0.82rem; color: rgba(255,255,255,0.8); margin-top: 12px; }

/* ── FAQ ── */
.faq-section { background: var(--color-bg); padding: 56px 0; }
.accordion-item { border: 1px solid var(--color-border); border-radius: var(--radius-md) !important; margin-bottom: 8px; overflow: hidden; }
.accordion-button {
  background: var(--color-surface);
  color: var(--color-text);
  font-weight: 500;
  border-radius: var(--radius-md) !important;
  box-shadow: none !important;
}
.accordion-button:not(.collapsed) { background: var(--color-accent); color: #fff; }
.accordion-button::after { filter: none; }
.accordion-button:not(.collapsed)::after { filter: brightness(10); }
.accordion-body {
  background: var(--color-bg);
  border-left: 3px solid var(--color-accent);
  padding-left: 16px;
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.7;
}

/* ── News Section ── */
.news-section { background: var(--color-surface); padding: 56px 0; }
.news-list { list-style: none; padding: 0; }
.news-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
}
.news-list li:last-child { border-bottom: none; }
.news-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--color-accent); flex-shrink: 0; margin-top: 8px; }
.news-list a { color: var(--color-text); font-size: 0.9rem; line-height: 1.6; }
.news-list a:hover { color: var(--color-accent); }
.news-date { font-size: 0.78rem; color: var(--color-muted); white-space: nowrap; flex-shrink: 0; margin-top: 4px; }
.news-sidebar-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px;
}
.news-sidebar-card h6 { font-size: 0.875rem; font-weight: 600; color: var(--color-text); margin-bottom: 12px; }
.sidebar-link-list { list-style: none; padding: 0; }
.sidebar-link-list li { padding: 6px 0; border-bottom: 1px solid var(--color-border); font-size: 0.85rem; }
.sidebar-link-list li:last-child { border-bottom: none; }
.sidebar-link-list a { color: var(--color-muted); }
.sidebar-link-list a:hover { color: var(--color-accent); }

/* ── Reviews ── */
.review-item {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-card);
  height: 100%;
}
.review-stars { color: var(--color-warm); font-size: 0.9rem; margin-bottom: 8px; }
.review-text { font-size: 0.875rem; color: var(--color-text); line-height: 1.7; margin-bottom: 12px; }
.review-author { font-size: 0.8rem; color: var(--color-muted); font-weight: 500; }
.review-score-card {
  background: var(--color-accent);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
}
.review-score-card .big-score { font-size: 3.5rem; font-weight: 800; line-height: 1; }
.review-score-card .score-label { font-size: 0.875rem; opacity: 0.9; margin-top: 6px; }
.review-score-card .score-count { font-size: 0.8rem; opacity: 0.75; margin-top: 4px; }

/* ── Guarantee ── */
.guarantee-section { background: var(--color-bg); padding: 48px 0; }
.guarantee-item { display: flex; align-items: flex-start; gap: 16px; padding: 16px; }
.guarantee-icon { font-size: 1.75rem; color: var(--color-accent); flex-shrink: 0; width: 44px; text-align: center; }
.guarantee-item h6 { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; color: var(--color-text); }
.guarantee-item p { font-size: 0.85rem; color: var(--color-muted); margin: 0; line-height: 1.6; }

/* ── Footer ── */
.site-footer {
  background: oklch(18% 0.015 260);
  color: var(--color-muted);
  font-size: 0.875rem;
  padding: 48px 0 0;
}
.footer-brand { font-size: 1.1rem; font-weight: 700; color: var(--color-accent); margin-bottom: 10px; }
.footer-desc { font-size: 0.85rem; line-height: 1.7; max-width: 36ch; }
.footer-nav-title { font-size: 0.8rem; font-weight: 600; color: oklch(70% 0.015 260); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; }
.footer-nav-list { list-style: none; padding: 0; }
.footer-nav-list li { margin-bottom: 8px; }
.footer-nav-list a { color: var(--color-muted); font-size: 0.85rem; transition: color 0.18s; }
.footer-nav-list a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid oklch(30% 0.015 260);
  padding: 16px 0;
  margin-top: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.8rem;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .hero-section .row { flex-direction: column; }
  .icon-matrix { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767px) {
  .hero-title { font-size: 1.75rem; }
  .icon-matrix { grid-template-columns: repeat(2, 1fr); }
  .countdown-bar { font-size: 0.78rem; gap: 8px; }
  .btn-nav-cta span { display: none; }
  .btn-nav-cta::before { content: '🎁'; }
  .nav-search-wrap { max-width: 200px; }
  .hero-stats { gap: 16px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 520px) {
  .icon-matrix { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; }
  .status-bar { gap: 6px; }
}

/* roulang page: category1 */
:root {
  --color-bg: oklch(97% 0.012 88);
  --color-surface: oklch(94% 0.018 88);
  --color-border: oklch(88% 0.020 88);
  --color-accent: oklch(62% 0.155 158);
  --color-accent-dk: oklch(50% 0.155 158);
  --color-warm: oklch(72% 0.130 58);
  --color-text: oklch(22% 0.018 260);
  --color-muted: oklch(54% 0.018 260);
  --color-danger: oklch(60% 0.18 25);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-card: 0 2px 8px oklch(22% 0.02 260 / 0.08);
  --shadow-hover: 0 6px 20px oklch(22% 0.02 260 / 0.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text);
  background: var(--color-bg);
}
a { color: var(--color-accent); text-decoration: none; }
a:hover { color: var(--color-accent-dk); }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }

/* ── Header ── */
.site-header {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-brand-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
}
.site-logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-accent);
  white-space: nowrap;
  flex-shrink: 0;
}
.site-logo:hover { color: var(--color-accent-dk); }
.nav-search-wrap { flex: 1; max-width: 420px; }
.nav-search-wrap .form-control {
  border-color: var(--color-border);
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  background: var(--color-surface);
  color: var(--color-text);
  font-size: 0.9rem;
}
.nav-search-wrap .form-control:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px oklch(62% 0.155 158 / 0.15);
}
.btn-search {
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 8px 14px;
}
.btn-search:hover { background: var(--color-accent-dk); color: #fff; }
.btn-nav-cta {
  background: var(--color-accent);
  color: #fff;
  padding: 8px 20px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: background 180ms ease;
}
.btn-nav-cta:hover { background: var(--color-accent-dk); color: #fff; }
.nav-channel-row {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 6px 0;
}
.nav-channel-row::-webkit-scrollbar { display: none; }
.nav-channel-row a {
  padding: 5px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--color-muted);
  white-space: nowrap;
  transition: all 150ms ease;
}
.nav-channel-row a:hover { color: var(--color-text); }
.nav-channel-row a.active {
  background: var(--color-accent);
  color: #fff;
}

/* ── Breadcrumb / Page Head ── */
.page-head {
  background: var(--color-surface);
  padding: 32px 0;
  border-bottom: 1px solid var(--color-border);
}
.breadcrumb { margin-bottom: 12px; }
.breadcrumb-item, .breadcrumb-item a {
  font-size: 0.875rem;
  color: var(--color-muted);
}
.breadcrumb-item.active { color: var(--color-text); }
.breadcrumb-item + .breadcrumb-item::before { color: var(--color-muted); }
.page-head h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-bottom: 8px;
}
.page-head-desc {
  font-size: 0.9375rem;
  color: var(--color-muted);
  max-width: 560px;
}
.page-head-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--color-muted);
}
.meta-badge i { color: var(--color-accent); }

/* ── Filter Bar ── */
.filter-bar {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 97px;
  z-index: 90;
  padding: 10px 0;
}
.filter-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.filter-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.btn-filter {
  padding: 5px 14px;
  font-size: 0.8125rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: transparent;
  color: var(--color-muted);
  cursor: pointer;
  transition: all 150ms ease;
}
.btn-filter:hover { border-color: var(--color-accent); color: var(--color-accent); }
.btn-filter.active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}
.sort-select {
  font-size: 0.8125rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 5px 10px;
  background: var(--color-surface);
  color: var(--color-text);
  cursor: pointer;
}
.sort-select:focus { outline: none; border-color: var(--color-accent); }

/* ── Product Grid ── */
.products-section { padding: 32px 0 48px; }
.product-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 180ms ease, box-shadow 180ms ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.product-img {
  height: 160px;
  position: relative;
  overflow: hidden;
}
.product-img-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img-inner i {
  font-size: 2.5rem;
  opacity: 0.35;
  color: #fff;
}
.product-img-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--color-danger);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
}
.product-body {
  padding: 14px 16px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
}
.product-tags { display: flex; gap: 4px; flex-wrap: wrap; }
.product-tag {
  font-size: 0.7rem;
  padding: 2px 7px;
  border-radius: 4px;
  font-weight: 500;
}
.tag-warm { background: oklch(72% 0.130 58 / 0.15); color: var(--color-warm); }
.tag-accent { background: oklch(62% 0.155 158 / 0.12); color: var(--color-accent); }
.tag-muted { background: var(--color-surface); color: var(--color-muted); }
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--color-border);
}
.product-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-danger);
  font-variant-numeric: tabular-nums;
}
.product-price-orig {
  font-size: 0.75rem;
  color: var(--color-muted);
  text-decoration: line-through;
  margin-left: 4px;
}
.btn-product {
  font-size: 0.8rem;
  padding: 5px 12px;
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 150ms ease;
}
.btn-product:hover { background: var(--color-accent-dk); }

/* ── Pagination ── */
.pagination-wrap { padding: 24px 0 8px; display: flex; justify-content: center; }
.pagination .page-link {
  color: var(--color-accent);
  border-color: var(--color-border);
  border-radius: var(--radius-sm) !important;
  margin: 0 2px;
  font-size: 0.875rem;
}
.pagination .page-link:hover { background: var(--color-surface); border-color: var(--color-accent); }
.pagination .page-item.active .page-link {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}
.pagination .page-item.disabled .page-link { color: var(--color-muted); }

/* ── CTA Strip ── */
.cta-strip {
  background: var(--color-accent);
  color: #fff;
  padding: 40px 0;
  text-align: center;
}
.cta-strip h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  margin-bottom: 10px;
}
.cta-strip p { font-size: 0.9375rem; opacity: 0.9; margin-bottom: 20px; }
.btn-cta-white {
  background: #fff;
  color: var(--color-accent);
  font-weight: 700;
  padding: 12px 36px;
  border-radius: var(--radius-md);
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transition: background 150ms ease;
  display: inline-block;
}
.btn-cta-white:hover { background: var(--color-bg); color: var(--color-accent-dk); }
.cta-trust { font-size: 0.8125rem; color: rgba(255,255,255,0.75); margin-top: 10px; }

/* ── Footer ── */
.site-footer {
  background: oklch(18% 0.015 260);
  color: var(--color-muted);
  padding: 48px 0 0;
  font-size: 0.875rem;
}
.footer-brand {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.footer-desc { color: var(--color-muted); line-height: 1.7; }
.footer-nav-title {
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
  font-size: 0.9rem;
}
.footer-nav-list { list-style: none; padding: 0; }
.footer-nav-list li { margin-bottom: 8px; }
.footer-nav-list a { color: var(--color-muted); transition: color 150ms ease; }
.footer-nav-list a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid oklch(30% 0.015 260);
  margin-top: 32px;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.8125rem;
}

/* ── Responsive ── */
@media (max-width: 767px) {
  .nav-brand-row { gap: 10px; }
  .nav-search-wrap { flex: 1; }
  .btn-nav-cta span { display: none; }
  .btn-nav-cta::after { content: "\f07a"; font-family: FontAwesome; }
  .btn-nav-cta { padding: 8px 12px; }
  .filter-bar { top: 88px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 520px) {
  .page-head h1 { font-size: 1.35rem; }
  .product-img { height: 130px; }
}
