/* SmrtDesk.xyz - Refined Orange & Navy Design */
/* Last modified: 2026-07-06 19:43 — 手机端产品卡片1:1比例object-fit:cover (含480px断点补丁) */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@800&display=swap');

:root {
  --navy: #091946;
  --orange: #DEA148;
  --orange-hover: #DEA148;
  --gold: #DEA148;
  --gold-empty: #DEA148;
  --white: #ffffff;
  --bg: #f7f8fa;
  --card: #ffffff;
  --text: #1a1a2e;
  --text-heading: #222;
  --text-body: #333;
  --text-aux: #666;
  --border: #e5e7eb;
  --shadow: 0 2px 10px rgba(0,0,0,0.05);
  --shadow-hover: 0 8px 24px rgba(0,0,0,0.10);
  --radius: 10px;
  --radius-sm: 6px;
  --font: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --max-width: 1200px;
}

html{margin:0;padding:0;display:flex;flex-direction:column;min-height:100vh}
body{margin:0;padding:0;display:block;flex:1 0 auto;font-family:var(--font);color:var(--text-body);background:var(--white);line-height:1.6;font-weight:400;font-size:15px;-webkit-font-smoothing:antialiased}
/* Full-width sections that were previously flex items — ensure proper block layout */
body > .top-row,
body > .nav-bar,
body > .mobile-nav,
body > .blog-banner,
body > .subpage-hero,
body > .hero-banner,
body > .top-banner-carousel,
body > .category-hero,
body > .page-hero,
body > .site-footer,
body > .search-section,
body > .cta-section { width: 100%; }
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
ul{list-style:none}

/* FONT HIERARCHY (BestReviews-style) */
h1,.h1{font-size:26px;font-weight:800;line-height:1.3;color:#222}
h2,.h2{font-size:20px;font-weight:600;line-height:1.3;color:#222}
h3,.h3{font-size:17px;font-weight:600;line-height:1.3;color:#222}
p,.text-body{font-size:15px;line-height:1.6;color:#333}
.text-small{font-size:13px;color:#666}
.text-muted{color:#666!important;font-size:13px!important}

/* AFFILIATE BANNER */
.affiliate-banner {
  background: #fff6ed;
  text-align: center;
  padding: 7px 16px;
  font-size: 0.75rem;
  color: var(--text-light);
  border-bottom: 1px solid #f0e0d0;
}
.affiliate-banner a { color: var(--orange); font-weight: 600; }

/* TOP ROW: Logo + Search (compact white) */
.top-row {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: 56px;
  display: flex;
  align-items: center;
}
.top-row-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.top-row-inner .header-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  display: inline-block;
  letter-spacing: 1px;
  line-height: 1;
}
.top-row-inner .logo-smrt {
  color: #0A2854;
}
.top-row-inner .logo-desk {
  color: #CFA144;
}
.top-row-right { display: flex; align-items: center; gap: 0; }
.top-row-right .search-input {
  border: 1px solid var(--border);
  border-radius: 6px 0 0 6px;
  padding: 7px 14px;
  font-size: 0.82rem;
  width: 260px;
  outline: none;
  font-family: var(--font);
  color: var(--text);
}
.top-row-right .search-input:focus { border-color: var(--gold); }
.top-row-right .btn-search {
  padding: 7px 18px;
  border: 1px solid var(--gold);
  border-left: none;
  background: var(--gold);
  color: #fff;
  font-weight: 700;
  font-size: 0.78rem;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  font-family: var(--font);
  transition: background 0.15s;
  white-space: nowrap;
}
.top-row-right .btn-search:hover { background: var(--orange-hover); }

/* NAV BAR (Navy) - compressed */
.nav-bar {
  background: var(--navy);
  height: 52px;
  display: flex;
  align-items: center;
}
.nav-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 2px;
  height: 100%;
}
.nav-bar .nav-link {
  color: rgba(255,255,255,0.88);
  font-size: 15px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 6px;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.nav-bar .nav-link:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}
.nav-bar .nav-link.active {
  background: rgba(222,161,72,0.2);
  color: #DEA148;
}
.nav-bar .nav-gold { color: var(--gold); }
.nav-bar .nav-gold:hover {
  color: var(--gold) !important;
  background: rgba(222,161,72,0.12);
}

/* Dropdown  - ?within nav-bar */
.nav-bar .has-dropdown { position: relative; }
.nav-bar .has-dropdown > a::after { content: ' \25be'; font-size: 0.6rem; margin-left: 3px; }
.nav-bar .nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  min-width: 190px;
  padding: 6px 0;
  z-index: 200;
}
.nav-bar .nav-dropdown a {
  display: block;
  padding: 8px 18px;
  font-size: 0.85rem;
  color: var(--text);
  transition: background 0.12s;
}
.nav-bar .nav-dropdown a:hover { background: #f5f5f7; color: var(--orange); }
.nav-bar .has-dropdown:hover .nav-dropdown { display: block; }
/* Touch-friendly dropdown for mobile nav (when nav-bar is visible on tablet) */
@media (hover: none) and (pointer: coarse) {
  .nav-bar .has-dropdown:focus-within .nav-dropdown { display: block; }
}

/* HERO */
.hero-banner {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.hero-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}
.hero-text {
  flex: 1;
  max-width: 540px;
}
.hero-badge {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hero-text h1 {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 12px;
}
.hero-text h1 .highlight { color: var(--orange); }
.hero-text > p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.hero-cta-row {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}
.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 8px;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--orange-hover); }
.btn-secondary {
  display: inline-block;
  background: #f0f0f0;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 8px;
  transition: background 0.2s;
}
.btn-secondary:hover { background: #e0e0e0; }

/* Hero trust */
.hero-trust {
  display: flex;
  gap: 20px;
  font-size: 0.8rem;
  color: var(--text-light);
}
.trust-item { display: flex; align-items: center; gap: 4px; }

/* Hero right side  - ?product showcase */
.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-product-showcase {
  background: #f5f7fa;
  border-radius: var(--radius);
  padding: 30px;
  width: 100%;
  max-width: 380px;
  text-align: center;
  position: relative;
}
.showcase-badge-bestseller {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 3px 12px;
  border-radius: 12px;
  margin-bottom: 16px;
}
.showcase-product-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.showcase-product-img {
  width: 160px;
  height: 120px;
  background: #e8ecf0;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Orange desk icon made of CSS */
.desk-icon-table {
  width: 100px;
  height: 8px;
  background: var(--orange);
  border-radius: 2px;
  position: relative;
}
.desk-icon-table::before {
  content: '';
  position: absolute;
  left: 24px; top: 8px;
  width: 6px; height: 40px;
  background: var(--orange);
  border-radius: 2px;
}
.desk-icon-table::after {
  content: '';
  position: absolute;
  right: 24px; top: 8px;
  width: 6px; height: 40px;
  background: var(--orange);
  border-radius: 2px;
}
.showcase-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
}
.showcase-stars .showcase-rating {
  color: var(--text-muted);
  font-size: 0.78rem;
  margin-left: 4px;
}
.showcase-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}
.showcase-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--orange);
}
.showcase-btn {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 9px 22px;
  border-radius: 8px;
  transition: background 0.2s;
}
.showcase-btn:hover { background: var(--orange-hover); }

/* Carousel slides */
.hero-carousel {
  position: relative;
}
.hero-slide {
  display: none;
}
.hero-slide.active {
  display: block;
  animation: fadeSlide 0.4s ease;
}
@keyframes fadeSlide {
  from { opacity: 0; transform: translateX(10px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Nav arrows  - ?round navy */
.hero-arrows {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}
.hero-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 1rem;
  cursor: default;
  transition: opacity 0.2s;
}
.hero-arrow:hover { opacity: 0.85; }

/* Hero image - full picture */
.hero-image-wrap {
  width: 100%;
  max-width: 420px;
}
.hero-product-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* CONTAINER / LAYOUT */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.row {
  display: flex;
  gap: 32px;
}
.col-main { min-width: 0; width: 100%; }
.col-sidebar { width: 280px; flex-shrink: 0; }

/* SECTION TITLE */
.section-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 18px;
}
.section-title h2 {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-heading);
}
.section-title h2 .highlight { color: var(--orange); }
.view-all {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.view-all:hover { text-decoration: underline; }

/* TOP PICKS GRID (4 columns) */
.top-picks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

/* Product card  - ?uniform height, flex fill */

.product-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

/* Image: 1:1, object-fit contain, clickable */
.card-img-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f5f7fa;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
.card-img-link:hover { opacity: 0.92; }
.card-img-square {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
  display: block;
}

/* Card body: compact, button pinned bottom — 1:1.4 ratio feel */
.card-body {
  padding: 8px 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}
.card-body .stars {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 4px;
  line-height: 1;
}
.card-body .stars .rating-text {
  font-size: 0.65rem;
  color: var(--text-aux);
  letter-spacing: 0;
}
.card-body .pro-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  color: var(--text-heading);
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-body .pro-title a { color: inherit; }
.card-body .pro-title a:hover { color: var(--orange); }
.card-body .price-range {
  font-size: 0.7rem;
  color: var(--text-body);
  margin: 0;
  text-align: left;
  line-height: 1.2;
}
.card-body .price-range strong {
  color: var(--text-heading);
  font-weight: 700;
}
.card-body .btn-amz {
  display: block;
  width: 100%;
  padding: 7px 0;
  margin-top: auto;
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-align: center;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.2s;
  letter-spacing: 0.2px;
  line-height: 1;
}
.card-body .btn-amz:hover {
  background: var(--orange-hover);
  color: var(--white);
}
.card-body .btn-amz::after {
  content: ' \2192';
}
/* Amazon button - unified: same size, #DEA148, right arrow */
/* ARTICLE SECTIONS */
.article-section {
  width: 100vw !important;
  margin: 0 calc(-50vw + 50%) !important;
  padding: 50px 0;
}
.article-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: stretch;
}
.article-left {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
}
.article-sub {
  font-size: 13px;
  color: var(--text-aux);
  letter-spacing: 0.4px;
  margin: 0 0 5px;
}
.article-divider {
  width: 38px;
  height: 3px;
  background: #DEA148;
  border-radius: 2px;
  margin: 0 0 10px;
}
.article-header h2 {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-heading);
  margin: 0 0 8px;
}
.article-links {
  font-size: 0.88rem;
  margin: 0;
}
.article-links a { color: #5b9aff; }
.article-links a:hover { text-decoration: underline; }
.article-links .sep { color: #ccc; }
.big-cover {
  width: 100%;
  aspect-ratio: 1.6 / 1;
  background: #f0f0f0;
  border-radius: 10px;
  background-size: contain !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
.article-desc {
  margin-top: 14px;
}
.article-date {
  font-size: 13px;
  color: var(--text-aux);
  letter-spacing: 0.4px;
  margin: 0 0 4px;
}
.article-desc h3 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 4px;
  color: #222;
}
.article-desc h3 a { color: inherit; }
.article-desc h3 a:hover { color: #DEA148; }
.article-author {
  font-size: 13px;
  color: var(--text-aux);
  margin: 0 0 6px;
}
.article-excerpt {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.6;
  margin: 0 0 8px;
}
.news-list {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
}
.news-item {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  align-items: flex-start;
  width: 100%;
}
.news-thumb {
  width: 72px;
  aspect-ratio: 1 / 1;
  background: #f2f2f3;
  border-radius: 6px;
  flex-shrink: 0;
  background-size: cover !important;
  background-position: center !important;
}
.news-item > div {
  flex: 1;
}
.news-date {
  font-size: 13px;
  color: var(--text-aux);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0 0 4px 0;
}
.news-item h4 {
  font-size: 15px;    /* from 20px to 15px, matches .article-excerpt */
  font-weight: 400;   /* not bold */
  line-height: 1.3;
  margin: 0;
}
.news-item h4 a { color: var(--text); }
.news-item h4 a:hover { color: #DEA148; }
.list-footer {
  text-align: right;
  margin-top: auto;
}
.news-view-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #5b9aff;
}
.news-view-link:hover { text-decoration: underline; }

/* SHOP BY CATEGORY */
.product-wrap {
  width: 100vw !important;
  margin: 0 calc(-50vw + 50%) !important;
  padding: 50px 0;
}
.product-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.category-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}
.category-head h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
}
.view-all-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: #DEA148;
  text-decoration: none;
}
.view-all-link:hover { text-decoration: underline; }
.category-block { margin-top: 40px; }
.category-block:first-of-type { margin-top: 0; }
.category-block h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  text-align: left;
  margin: 0 0 22px;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.product-card .card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f2f2f3;
  border-radius: 8px;
  margin-bottom: 12px;
}
.star-item {
  color: #DEA148;
  margin-bottom: 8px;
  font-size: 0.85rem;
  letter-spacing: 1px;
}
.pro-title {
  font-size: 0.87rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 6px;
}
.pro-title a { color: var(--text); text-decoration: none; }
.pro-title a:hover { color: #DEA148; }
.pro-price {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 10px;
}
.pro-price strong { color: var(--text); font-weight: 700; }
.pro-btn {
  width: 100%;
  background: #DEA148;
  border: none;
  color: #fff;
  padding: 12px 0;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: background 0.2s;
  margin-top: auto;
}
.pro-btn:hover { background: #c98d3a; }
.pro-btn::after { content: ' \2192'; }

/* FOOTER */
.site-footer {
  width: 100vw !important;
  max-width: none !important;
  margin: 0 calc(-50vw + 50%) !important;
  background: #09193f !important;
  color: #fff;
  padding: 50px 0 30px !important;
  box-sizing: border-box;
}
.footer-full {
  width: 100% !important;
}
.footer-inner {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 24px !important;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  box-sizing: border-box;
}
.footer-sub-text {
  font-size: 12px;
  line-height: 1.35;
  color: rgba(255,255,255,0.6) !important;
  margin: 0 0 8px;
  font-weight: 400;
}
.footer-form {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 8px;
}
.footer-input {
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 6px;
  padding: 7px 12px;
  font-size: 0.85rem;
  background: #fff;
  color: #333;
  outline: none;
  width: 100%;
}
.footer-input::placeholder { color: #999; }
.footer-subscribe-text {
  display: block;
  text-align: center;
  width: 100%;
  color: #fff !important;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 2px 0;
}
.footer-subscribe button {
  background: #4159bb !important;
  color: #fff !important;
  border-radius: 99px !important;
  width: 100%;
  padding: 10px;
  border: none;
}
.footer-google {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  font-size: 12px;
  color: rgba(255,255,255,0.5) !important;
  line-height: 1.3;
  margin-bottom: 8px;
}
.footer-google .gg-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: #fff;
  color: #4285f4;
  font-weight: 700;
  font-size: 0.55rem;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
}
.footer-link { color: #5b9aff !important; }
.footer-link:hover { text-decoration: underline; }
.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
  letter-spacing: 0.5px;
}
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav li { margin-bottom: 4px; }
.footer-nav li:last-child { margin-bottom: 0; }
.footer-nav li a {
  font-size: 15px;
  color: rgba(255,255,255,0.5) !important;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.15s;
}
.footer-nav li a:hover { color: #DEA148; }
.footer-bottom {
  max-width:1200px !important;
  margin:30px auto 0 !important;
  padding:25px 24px 0 !important;
  border-top:1px solid #36487a !important;
  display:flex !important;
  flex-direction:column !important;
  justify-content:center !important;
  align-items:center !important;
  gap:0.5rem;
  flex-wrap:wrap;
  box-sizing:border-box;
}
.footer-copyright {
  color:rgba(255,255,255,0.6) !important;
  font-size:0.85rem;
}
.affiliate-disclosure {
  font-size: 0.78rem !important;
  color: rgba(255,255,255,0.55) !important;
  margin-bottom: 0;
  line-height: 1.4;
}
.affiliate-disclosure a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}
.affiliate-disclosure a:hover {
  color: #DEA148;
}
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  transition: background 0.2s;
  line-height: 0;
}
.social-icon:hover { background: rgba(255,255,255,0.16); }

/* RESPONSIVE */

/* LAYOUT OVERRIDES */
/* 1.深蓝色导航通栏铺满屏幕，内部菜 - ?200居中 */
.nav-bar {
 width:100% !important;
 padding:0 !important;
}
.nav-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 28px;
  align-items: center;
  height: 100%;
}

/* 2.Logo+搜索栏整 - ?200居中 */
.top-row-inner {
 max-width:1200px !important;
 margin:0 auto !important;
 padding:0 24px !important;
}

/* 3.轮播外层通栏，内层内容居 - ?*/
.hero-banner {
 width:100% !important;
}
.hero-inner {
 max-width:1200px !important;
 margin:0 auto !important;
 padding:0 24px !important;
}

/* 4.下方主体商品、栏目内容统一1200居中 */
.container {
 max-width:1200px !important;
 margin:0 auto !important;
 padding:0 24px !important;
}

/* Push footer to bottom: body has min-height:100vh, so page always fills viewport */

/* SEARCH SECTION */
.search-section {
  width: 100vw !important;
  max-width: none !important;
  margin: 0 calc(-50vw + 50%) !important;
  background: #f8f9fc !important;
  padding: 60px 0 !important;
  box-sizing: border-box;
}
.search-section-inner {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 24px !important;
  box-sizing: border-box;
  text-align: center;
}
.search-heading {
  font-size: 1.8rem !important;
  font-weight: 700 !important;
  color: #1a1a2e !important;
  margin: 0 0 24px !important;
  font-family: Open Sans, sans-serif !important;
  text-align: center;
}
.search-section-inner .top-row-right {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

/* HERO SLIDE FIX */
.hero-slide:not(.active) { display: none !important; }
.hero-slide.active { display: block; }

/* CARD GRID SPACING */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

/* HEADER  - ?Logo + Nav + Search (72px one-row navy) */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  height: 72px;
  display: flex;
  align-items: center;
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 100%;
}

/* Logo  - ?white text on navy */
.site-header .header-logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
  letter-spacing: -0.3px;
  flex-shrink: 0;
}
.site-header .header-logo span { color: var(--gold); }

/* Navigation  - ?central */
.header-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: flex-start;
  overflow: hidden;
}
.header-nav .nav-link {
  color: rgba(255,255,255,0.88);
  font-size: 15px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.header-nav .nav-link:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}
.header-nav .nav-gold { color: var(--gold); }
.header-nav .nav-gold:hover {
  color: var(--gold-hover) !important;
  background: rgba(222,161,72,0.12);
}

.has-dropdown { position: relative; }
.has-dropdown > a::after { content: ' \25be'; font-size: 0.6rem; margin-left: 3px; }

/* Dropdown menu  - ?white, rounded, shadow */
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  min-width: 190px;
  padding: 6px 0;
  z-index: 200;
}
.nav-dropdown a {
  display: block;
  padding: 8px 18px;
  font-size: 0.85rem;
  color: var(--text);
  transition: background 0.12s;
}
.nav-dropdown a:hover { background: #f5f5f7; color: var(--orange); }
.has-dropdown:hover .nav-dropdown { display: block; }

/* Search bar on right */
.header-search {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}
.header-search .search-input {
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px 0 0 6px;
  padding: 7px 14px;
  font-size: 0.82rem;
  color: #fff;
  background: rgba(255,255,255,0.08);
  width: 240px;
  outline: none;
  font-family: var(--font);
}
.header-search .search-input:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.14);
}
.header-search .search-input::placeholder { color: rgba(255,255,255,0.4); }
.header-search .btn-search {
  padding: 7px 18px;
  border: none;
  background: var(--gold);
  color: #fff;
  font-weight: 700;
  font-size: 0.78rem;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  font-family: var(--font);
  transition: background 0.15s;
  white-space: nowrap;
}
.header-search .btn-search:hover { background: var(--orange-hover); }

/* Mobile hamburger  - ?hidden by default */
.hamburger {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 6px;
  color: #fff;
  font-size: 1.3rem;
  padding: 6px 10px;
  cursor: pointer;
}

/* Category 3-column grid */
.cat-grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.cat-block-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111c33;
  margin: 0 0 14px;
}
.cat-block-title a { color: inherit; }
.cat-block-title a:hover { color: #DEA148; }
.category-block {
  margin-bottom: 32px;
}

/* G SECTION — Shop by Category (carousels) */

/* Outer wrapper — full-width padding */
.shop-by-category {
  width: 100%;
}

/* Category Section (each carousel block) */
.category-section {
  margin-bottom: 32px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  padding: 28px 24px 24px;
  box-shadow: 0 1px 8px rgba(0,0,0,0.04);
  transition: box-shadow 0.25s ease;
}
.category-section:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Header: title + subtitle + left accent bar */
.category-section__header {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: 18px;
  padding-left: 14px;
  position: relative;
}
.category-section__header::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  bottom: 3px;
  width: 4px;
  background: var(--gold, #DEA148);
  border-radius: 2px;
}
.category-section__title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #111c33;
  margin: 0;
  line-height: 1.3;
}
.category-section__subtitle {
  font-size: 0.84rem;
  color: #888;
  margin: 0;
  flex: 1;
  min-width: 180px;
  font-weight: 400;
}

/* Keep legacy class for backward compat — maps to same styles */
.category-home-section {
  margin-bottom: 32px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  padding: 28px 24px 24px;
  box-shadow: 0 1px 8px rgba(0,0,0,0.04);
}
.category-home-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-left: 14px;
  position: relative;
}
.category-home-title-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.category-home-header::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  bottom: 3px;
  width: 4px;
  background: var(--gold, #DEA148);
  border-radius: 2px;
}
.category-home-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #111c33;
  margin: 0;
}
.category-home-subtitle {
  font-size: 0.84rem;
  color: #888;
  margin: 0;
}
.category-home-link {
  font-size: 0.85rem;
  color: #d19f35;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.category-home-link:hover {
  text-decoration: underline;
}

/* Carousel Wrapper */
.category-carousel-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

/* Track — scrollable strip */
.category-carousel-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 18px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  flex: 1;
  padding: 8px 0;
  -webkit-overflow-scrolling: touch;
}

/* Cards inside carousels — PC: 4 visible, 1:1 square image + 1:0.4 text body */
.category-carousel-track .product-card {
  flex: 0 0 calc(25% - 13.5px);
  min-width: 0;
}
.category-carousel-track .product-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  transform: translateY(-3px);
}

/* Arrow buttons (round, shadow, gold accent on hover) */
.cat-prev,
.cat-next {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
  background: #fff;
  font-size: 1.5rem;
  color: #555;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 2;
  line-height: 1;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  user-select: none;
}
.cat-prev:hover,
.cat-next:hover {
  background: var(--gold, #DEA148);
  color: #fff;
  border-color: var(--gold, #DEA148);
  box-shadow: 0 4px 16px rgba(222,161,72,0.35);
  transform: scale(1.05);
}
.cat-prev:active,
.cat-next:active {
  transform: scale(0.96);
}

/* Keep legacy arrow class for compat */
.category-carousel-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
  background: #fff;
  font-size: 1.5rem;
  color: #555;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 2;
  line-height: 1;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}
.category-carousel-arrow:hover {
  background: var(--gold, #DEA148);
  color: #fff;
  border-color: var(--gold, #DEA148);
  box-shadow: 0 4px 16px rgba(222,161,72,0.35);
}

/* Responsive: Tablet — 3 cards */

/* TOP BANNER CAROUSEL */
.top-banner-carousel {
  width: 100%;
  height: 580px;
  position: relative;
  overflow: hidden;
  background: #f0f0f0;
}
.banner-slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 480px) {
  .banner-slide { background-size: cover; background-position: center center; }
}
.banner-slide.active {
  display: block;
}
.banner-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.85);
  color: #333;
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.banner-arrow:hover {
  background: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.banner-prev {
  left: 24px;
}
.banner-next {
  right: 24px;
}

/* Banner dots indicator */
.banner-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.banner-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.8);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
}
.banner-dot.active {
  background: #fff;
}

/* Related Products Section */
.related-products-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}
.related-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 20px;
  text-align: center;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.related-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.related-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.related-item a {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.related-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  background: #f5f5f5;
}
.related-item-title {
  padding: 12px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* COMPREHENSIVE MOBILE RESPONSIVE */

/* ─── Fix: 800px forced width on product images ─── */
.review-product-image { max-width: 100%; width: 100%; }

/* ─── Fix: product-layout 2-col → stack on mobile ─── */
@media (max-width: 768px) {
  .product-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .product-layout .article-sidebar {
    order: 2;
  }
}

/* ─── Fix: blog-articles fixed height on mobile ─── */
@media (max-width: 768px) {
  .blog-articles--fixed .article-card,
  .blog-articles .article-card {
    height: auto;
    min-height: auto;
  }
  .blog-articles--fixed .article-card__image,
  .blog-articles .article-card__image {
    flex: 0 0 auto;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    min-height: auto;
  }
  .blog-articles--fixed .article-card__body,
  .blog-articles .article-card__body {
    padding: 20px 18px;
    gap: 8px;
  }
}

/* Mobile Hamburger Menu */
.hamburger-menu {
  display: none;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1.4rem;
  padding: 6px 12px;
  cursor: pointer;
  line-height: 1;
  flex-shrink: 0;
  margin-left: 4px;
  transition: background 0.2s;
}
.hamburger-menu:hover { background: #0d2456; }
.hamburger-menu.open { background: var(--orange); }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  animation: slideDown 0.25s ease;
}
.mobile-nav.active { display: block; }
.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  padding: 8px 0;
  max-width: 1200px;
  margin: 0 auto;
}
.mobile-nav-inner a {
  display: block;
  padding: 12px 24px;
  color: rgba(255,255,255,0.88);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-nav-inner a:hover,
.mobile-nav-inner a:active {
  background: rgba(255,255,255,0.08);
  color: #fff;
}
.mobile-nav-inner a.nav-gold { color: var(--orange); }
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Tablet (≤1024px) — banner carousel  */
@media (max-width: 1024px) {
  .top-banner-carousel { height: 400px; }
  .category-page-grid { grid-template-columns: repeat(3, 1fr) !important; }
}

/* Large Phone / Small Tablet (≤768px) — banner + grid refinements */
@media (max-width: 768px) {
  .top-banner-carousel { height: 320px; }
  .banner-arrow { width: 36px; height: 36px; font-size: 1.1rem; }
  .banner-prev { left: 10px; }
  .banner-next { right: 10px; }
  .category-page-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px; }
  .search-section-inner .top-row-right { flex-wrap: wrap; }
  .search-section-inner .search-input { max-width: 220px; }
}

/* Small Phone (≤480px) — banner smallest + single column grids */
@media (max-width: 480px) {
  .top-banner-carousel { height: 200px; }
  .banner-arrow { width: 28px; height: 28px; font-size: 0.9rem; }
  .banner-prev { left: 6px; }
  .banner-next { right: 6px; }
  .banner-dots { bottom: 6px; gap: 5px; }
  .banner-dot { width: 7px; height: 7px; }
  .category-page-grid { grid-template-columns: 1fr !important; }
  .search-section-inner .search-input { max-width: 100%; width: 100% !important; }
  .blog-articles--fixed .article-card__body { padding: 14px; }
  .product-layout { grid-template-columns: 1fr; }
}

/* G SECTION REDESIGN — Shop by Category v2
   F-zone color scheme: white bg, navy/gold accents,
   premium cards with 4:3 images, warm tones */

/* Outer wrapper — clean white bg, consistent with F section */
.shop-by-category {
  background: #ffffff !important;
  padding: 56px 0 48px !important;
  width: 100%;
}

/* Section main heading */
.shop-by-category .container {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.section-heading {
  text-align: center;
  margin-bottom: 40px;
}
.section-heading .accent-line {
  width: 44px;
  height: 3px;
  background: #DEA148;
  border-radius: 2px;
  margin: 0 auto 14px;
}
.section-heading h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #111c33;
  margin: 0 0 6px;
  letter-spacing: -0.3px;
}
.section-heading p {
  font-size: 0.88rem;
  color: #999;
  margin: 0;
}

/* Category header */
.g-category {
  margin-bottom: 36px;
}
.g-category:last-child {
  margin-bottom: 0;
}
.g-category__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-bottom: 18px;
  padding-left: 0;
}
.g-category__header::before {
  display: none !important;
}
/* Left side: title + subtitle */
.g-category__header-left {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.g-category__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #111c33;
  margin: 0;
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 10px;
}
/* Title left accent line — thin gold vertical bar */
.g-category__title-line {
  display: inline-block;
  width: 3px;
  height: 18px;
  background: #DEA148;
  border-radius: 2px;
  flex-shrink: 0;
}
.g-category__subtitle {
  font-size: 0.82rem;
  color: #999;
  margin: 0;
}

/* View All link — right side */
.g-category__viewall {
  font-size: 0.8rem;
  font-weight: 600;
  color: #4159bb;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}
.g-category__viewall:hover {
  color: #DEA148;
  text-decoration: underline;
}

/* Product card inside G */
.g-category 
.g-category .product-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

/* Card image: 1:1 ratio */
.g-category .card-img-link {
  aspect-ratio: 1 / 1;
  background: #f6f8fa;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.g-category .card-img-square {
  object-fit: contain;
  padding: 20px;
  width: 100%;
  height: 100%;
}

/* Card body — flexible height, button pinned to bottom for alignment */
.g-category .card-body {
  padding: 6px 10px 8px;
  gap: 2px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.g-category .card-body .stars {
  font-size: 0.65rem;
  color: #DEA148;
  letter-spacing: 0.2px;
  line-height: 1;
  margin: 0;
}
.g-category .card-body .stars .rating-text {
  color: #aaa;
  font-size: 0.6rem;
  letter-spacing: 0;
}
.g-category .card-body .pro-title {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.25;
  color: #111c33;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.g-category .card-body .price-range {
  font-size: 0.65rem;
  color: #888;
  margin: 0;
  line-height: 1.2;
}
.g-category .card-body .price-range strong {
  color: #091946;
  font-weight: 700;
}
.g-category .card-body .btn-amz {
  padding: 5px 0;
  font-size: 0.65rem;
  background: #DEA148;
  border-radius: 4px;
  font-weight: 700;
  transition: background 0.2s, transform 0.2s;
  color: #fff;
  letter-spacing: 0;
  line-height: 1;
  margin-top: auto;
}
.g-category .card-body .btn-amz:hover {
  background: #c98d3a;
  transform: translateY(-1px);
}

/* Track */
.g-category .category-carousel-track {
  gap: 18px;
  padding: 8px 2px;
}
.g-category .category-carousel-wrap {
  gap: 10px;
}

/* Responsive */

/* F SECTION — Article Block (SEO content hub) */
.article-block-section {
  width: 100vw !important;
  max-width: none !important;
  margin: 0 calc(-50vw + 50%) !important;
  background: #f7f8fa !important;
  padding: 40px 0 !important;
  box-sizing: border-box;
}
.article-block-section:first-of-type {
  padding-top: 48px !important;
}
.article-block-section:last-of-type {
  padding-bottom: 56px !important;
}
.article-block-inner {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 24px !important;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Article Card */
.article-card {
  display: flex;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: box-shadow 0.25s ease;
  position: relative;
}
.article-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}

/* Image column */
.article-card__image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #eef0f4;
}
.blog-articles .article-card {
  height: 400px;
}
.blog-articles .article-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.blog-articles .article-card:hover .article-card__image img {
  transform: scale(1.08);
}
.article-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Image link wrapper — enables clickable image with hover zoom + shadow */
.article-card__image-link {
  display: block;
  flex: 0 0 400px;
  max-width: 400px;
  overflow: hidden;
}
.article-card__image-link:hover .article-card__image img {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* Text column */
.article-card__body {
  flex: 1;
  padding: 36px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

/* Category tag — line style with gold underline */
.article-card__tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #fff;
  background: #4159bb;
  padding: 5px 14px;
  border-radius: 99px;
  line-height: 1;
  border: none;
  margin-bottom: 10px;
}

/* Title */
.article-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.35;
  color: #111c33;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* Meta line */
.article-card__meta {
  font-size: 0.82rem;
  color: #888;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.article-card__meta-sep {
  color: #ccc;
}

/* Excerpt */
.article-card__excerpt {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* User quote */
.article-card__quote {
  margin: 0;
  padding: 12px 18px;
  border-left: 3px solid #f5a623;
  background: #fef9f0;
  border-radius: 0 8px 8px 0;
  font-size: 0.88rem;
  font-style: italic;
  color: #7a6a3a;
  line-height: 1.6;
}

/* CTA button */
.article-card__cta {
  align-self: flex-start;
  display: inline-block;
  margin-top: 4px;
  padding: 11px 28px;
  background: #4159bb;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  letter-spacing: 0.3px;
}
.article-card__cta:hover {
  background: #3148a1;
  transform: translateY(-1px);
}

/* Reverse variant (right image / left text) — for even cards */
.article-card--reverse {
  flex-direction: row-reverse;
}

/* Spacer line between cards (centered in gap) */
.article-card:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: #d4d4d4;
  border-radius: 1px;
  z-index: 1;
}

/* Responsive: Mobile (≤768px) → stack vertically */

/* Blog Card Grid (category-blog.html style) */
.blog-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.blog-card {
  display: flex;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow 0.25s, transform 0.25s;
}
.blog-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}
.blog-card__image {
  flex: 0 0 40%;
  min-height: 220px;
  position: relative;
  overflow: hidden;
  background: #e9ecef;
}
.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-card__body {
  flex: 1;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.blog-card__tag {
  display: inline-block;
  background: #DEA148;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  width: fit-content;
}
.blog-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #222;
  line-height: 1.4;
  margin: 0 0 8px;
}
.blog-card__meta {
  font-size: 0.78rem;
  color: #888;
  margin: 0 0 12px;
}
.blog-card__meta span {
  margin-right: 8px;
}
.blog-card__excerpt {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.6;
  margin: 0 0 18px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card__read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #091946;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s;
}
.blog-card__read-more:hover {
  color: #DEA148;
}
.blog-card__read-more .arrow {
  transition: transform 0.2s;
}
.blog-card__read-more:hover .arrow {
  transform: translateX(4px);
}

/* ============================================================
   Blog Page Styles — Banner, Layout, Sidebar, Filter, Search
   ============================================================ */

/* Blog Banner */
.blog-banner {
  background: linear-gradient(135deg, #0a1a3a 0%, #142850 50%, #0d1f40 100%);
  padding: 56px 0 44px;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.blog-banner__grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.blog-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(222,161,72,0.18) 0%, transparent 70%);
  border-radius: 50%;
}
.blog-banner::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(222,161,72,0.10) 0%, transparent 70%);
  border-radius: 50%;
}
.blog-banner__title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
  position: relative;
  z-index: 1;
}
.blog-banner__accent {
  color: var(--orange);
}
.blog-banner__subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  margin: 0 auto 20px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.blog-banner__search {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
  z-index: 1;
  max-width: 420px;
  margin: 0 auto;
}
.blog-banner__search-input {
  flex: 1;
  padding: 10px 16px;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 6px 0 0 6px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 0.88rem;
  font-family: var(--font);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.blog-banner__search-input::placeholder {
  color: rgba(255,255,255,0.45);
}
.blog-banner__search-input:focus {
  border-color: var(--orange);
  background: rgba(255,255,255,0.16);
}
.blog-banner__search-btn {
  padding: 10px 22px;
  border: 1.5px solid var(--orange);
  border-left: none;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  font-family: var(--font);
  transition: background 0.15s;
  white-space: nowrap;
}
.blog-banner__search-btn:hover {
  background: var(--orange-hover);
}

/* Blog Layout: Main + Sidebar */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 36px;
  padding: 32px 0 48px;
}

/* Blog Main (article list area) */
.blog-main {
  min-width: 0;
}

/* Category Filter Pills (top bar) */
.blog-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.blog-filter-pill {
  padding: 6px 18px;
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid var(--border);
  background: var(--card);
  color: var(--text-aux);
  transition: all 0.2s;
  user-select: none;
  font-family: var(--font);
}
.blog-filter-pill:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.blog-filter-pill.active {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

/* Blog Article Cards Container */
.blog-articles {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
/* Remove the ::after divider for cards inside blog-articles (not in article-block-section) */
.blog-articles .article-card:not(:last-child)::after {
  display: none;
}

/* Blog Sidebar */
.blog-sidebar {
  min-width: 0;
}
.blog-sidebar-widget {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
}
.blog-sidebar-widget__title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-heading);
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blog-sidebar-widget p {
  font-size: 0.82rem;
  color: var(--text-body);
  line-height: 1.6;
  margin: 0;
}
.blog-sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.blog-sidebar-list li {
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
  line-height: 1.5;
}
.blog-sidebar-list li:last-child {
  border-bottom: none;
}
.blog-sidebar-list li a {
  color: #1a3a6b;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.15s;
}
.blog-sidebar-list li a:hover {
  color: var(--orange);
}
.blog-sidebar-count {
  color: #aaa;
  font-size: 0.75rem;
  font-weight: 400;
}

/* Blog Empty State */
.blog-empty {
  display: none;
  text-align: center;
  padding: 48px 20px;
  color: #888;
}
.blog-empty p {
  font-size: 1rem;
  margin-bottom: 12px;
}
.blog-empty__reset {
  background: none;
  border: none;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  font-family: var(--font);
  text-decoration: underline;
}
.blog-empty__reset:hover {
  color: var(--orange-hover);
}

/* Blog Page Responsive */
@media (max-width: 1024px) {
  .blog-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .blog-banner {
    padding: 40px 0 36px;
  }
  .blog-banner__grid {
    flex-direction: column;
    gap: 20px;
  }
  .blog-banner__title {
    font-size: 1.6rem;
    text-align: center;
  }
  .blog-banner__subtitle {
    font-size: 0.92rem;
    padding: 0 16px;
    text-align: center;
    max-width: 100%;
  }
  .blog-banner__search {
    padding: 0 16px;
    max-width: 100%;
    width: 100%;
  }
  .blog-layout {
    padding: 24px 0 36px;
  }
  .blog-articles .article-card,
  .blog-articles .article-card--reverse {
    flex-direction: column;
  }
  .blog-articles .article-card__image {
    flex: 0 0 auto;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    width: 100%;
  }
  .blog-articles .article-card__body {
    padding: 20px 18px;
    gap: 8px;
  }
  .blog-articles .article-card__title {
    font-size: 1.1rem;
  }
  .blog-articles .article-card__excerpt {
    font-size: 0.84rem;
    line-height: 1.6;
  }
}
@media (max-width: 480px) {
  .blog-banner {
    padding: 32px 0 28px;
  }
  .blog-banner__title {
    font-size: 1.3rem;
  }
  .blog-banner__subtitle {
    font-size: 0.82rem;
  }
  .blog-filter-bar {
    gap: 6px;
  }
  .blog-filter-pill {
    padding: 5px 14px;
    font-size: 0.76rem;
  }
}

/* Merged responsive blocks */
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr; }
  .hero-grid { flex-direction: column; }
  .hero-text { max-width: 100%; }
  .hero-visual { width: 100%; }
  .hero-product-showcase { max-width: 100%; }
  .row { flex-direction: column; }
  .col-sidebar { width: 100%; }
  .top-picks-grid { grid-template-columns: repeat(2, 1fr); }
  .btn-amz { font-size: 0.7rem; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-bar { display: none; }
  .search-input { width: 120px; }
  .category-carousel-track { gap: 14px; }
  .category-carousel-track .product-card { flex: 0 0 calc(33.333% - 9.33px); }
  .cat-prev,
  .cat-next,
  .category-carousel-arrow { width: 36px;
    height: 36px;
    font-size: 1.25rem; }
}

@media (max-width: 600px) {
  .cat-grid { grid-template-columns: 1fr; }
  .top-picks-grid { grid-template-columns: 1fr; }
  .hero-text h1 { font-size: 1.8rem; }
  .category-carousel-wrap {
    margin: 0 -8px;
  }
  .category-carousel-track {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0;
    padding-bottom: 4px;
  }
  .category-carousel-track .product-card {
    min-width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    flex: 0 0 calc(100vw - 32px);
    scroll-snap-align: start;
    margin: 0 8px;
  }
  /* 分类轮播卡片: 图片1:1 + 文字0.4 = 卡片总高1.4 */
  .category-carousel-wrap .product-card .card-img-square {
    aspect-ratio: 1/1;
    height: auto;
  }
  .category-carousel-wrap .product-card .card-body {
    padding: 8px 10px;
    min-height: 0;
  }
  /* 所有产品卡片手机端统一比例: 图片1:1 + cover铺满 */
  .product-card .card-img-link {
    aspect-ratio: 1/1 !important;
    max-height: none !important;
  }
  .product-card .card-img-square {
    aspect-ratio: 1/1 !important;
    height: auto !important;
    object-fit: cover !important;
  }
  .product-card .card-body {
    padding: 8px 10px !important;
    min-height: 0 !important;
  }
  .cat-prev,
  .cat-next,
  .category-carousel-arrow { display: none; }
  .g-category .category-carousel-track { overflow-x: auto; padding-bottom: 4px; }
  .g-category .cat-prev, .g-category .cat-next { display: none; }
  .g-category { margin-bottom: 24px; }
  .section-heading h2 { font-size: 1.2rem; }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .header-search { display: none; }
  .hamburger { display: block; }
  .site-header { height: 60px; }
  .header-inner { padding: 0 16px; }
  .cat-grid-3col { grid-template-columns: 1fr; }
  .category-carousel-track { gap: 12px; }
  .category-carousel-track .product-card { flex: 0 0 calc(33.333% - 8px); }
  .category-section { padding: 18px 14px 16px;
    margin-bottom: 20px;
    border-radius: 10px; }
  .category-section__header { padding-left: 10px;
    margin-bottom: 12px; }
  .category-section__header::before { width: 3px;
    top: 2px;
    bottom: 2px; }
  .category-section__title,
  .category-home-title { font-size: 1.1rem; }
  .category-section__subtitle,
  .category-home-subtitle { font-size: 0.78rem;
    min-width: 0; }
  .cat-prev,
  .cat-next,
  .category-carousel-arrow { width: 32px;
    height: 32px;
    font-size: 1.1rem; }
  .top-banner-carousel { height: 320px; }
  .banner-arrow { width: 32px;
    height: 32px;
    font-size: 1rem; }
  /* Top row: stack logo + search vertically */
  .top-row { height: auto;
    padding: 10px 0; }
  .top-row-inner { flex-direction: column;
    gap: 10px;
    align-items: center;
    padding: 0 16px !important; }
  .top-row-inner .header-logo { font-size: 1.5rem; }
  .top-row-right { width: 100%;
    justify-content: center; }
  .search-input { width: 100% !important;
    max-width: 280px; }
  /* Container / layout padding */
  .container { padding: 0 16px !important; }
  .hero-inner,
  .search-section-inner,
  .footer-inner,
  .product-inner,
  .article-inner { padding: 0 16px !important; }
  /* Hero */
  .hero-banner { padding: 24px 0; }
  .hero-grid { gap: 24px; }
  .hero-text h1 { font-size: 1.7rem; }
  .hero-text > p { font-size: 0.88rem; }
  .hero-cta-row { flex-direction: column;
    gap: 8px; }
  .btn-primary,
  .btn-secondary { text-align: center;
    width: 100%; }
  .hero-image-wrap { max-width: 100%; }
  .hero-visual { max-width: 340px;
    margin: 0 auto; }
  /* Product cards: card-grid for sub-pages */
  .card-grid { grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px; }
  .category-page-grid { grid-template-columns: repeat(2, 1fr) !important; }
  /* Top picks: 2 columns max */
  .top-picks-grid { grid-template-columns: repeat(2, 1fr);
    gap: 12px; }
  /* Article sections: stack vertically (mobile already same as desktop layout) */
  .article-inner { gap: 20px; }
  .article-left, .news-list { width: 100%;
    max-width: 100%; }
  .news-item { width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin-bottom: 16px; }
  .article-section { padding: 32px 0; }
  .article-header h2 { font-size: 1.4rem; }
  .big-cover { aspect-ratio: 1.6 / 1; }
  /* Section titles */
  .section-title h2 { font-size: 1.3rem; }
  .section-title { flex-wrap: wrap; }
  /* Category home sections */
  .category-home-header { flex-wrap: wrap; }
  .category-home-title { font-size: 1.05rem; }
  .category-home-subtitle { font-size: 0.78rem;
    min-width: 0; }
  /* Banner carousel: 手机端适配 */
  .top-banner-carousel { height: 320px; }
  .banner-prev { left: 12px; }
  .banner-next { right: 12px; }
  /* Service nav - show simple mobile nav placeholder */
  .nav-bar { display: none; }
  .hamburger-menu { display: block; }
  /* Footer adjustments */
  .site-footer { padding: 36px 0 20px !important; }
  .footer-inner { grid-template-columns: 1fr !important;
    gap: 24px; }
  .footer-inner > div:first-child { text-align: center; }
  .footer-inner > div:first-child .footer-form { max-width: 400px;
    margin-left: auto;
    margin-right: auto; }
  .footer-inner > div:first-child .footer-google { justify-content: center; }
  .footer-inner > div:first-child .footer-social { justify-content: center; }
  .footer-bottom { padding: 20px 16px 0 !important;
    margin: 20px auto 0 !important;
    text-align: center; }
  .affiliate-disclosure { text-align: center; }
  /* Search section */
  .search-section { padding: 40px 0 !important; }
  .search-heading { font-size: 1.3rem !important; }
  /* Product wrap / category blocks */
  .product-wrap { padding: 32px 0; }
  .category-head h2 { font-size: 1.2rem; }
  .category-block h3 { font-size: 1rem; }
  /* Related products */
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  /* Card image size adjustment */
  .card-img-link { max-height: 220px; }
  .g-category .category-carousel-track { gap: 14px; }
  .g-category .category-carousel-track .product-card { flex: 0 0 calc(33.333% - 9.33px); }
  .section-heading h2 { font-size: 1.3rem; }
  .g-category__title { font-size: 1.05rem; }
  .shop-by-category { padding: 32px 0 28px !important; }
  .article-block-section { padding: 40px 0 !important; }
  .article-block-inner { padding: 0 16px !important;
    gap: 28px; }
  .article-card__image { flex: 0 0 auto;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    width: 100%; }
  .article-card,
  .article-card--reverse { flex-direction: column; }
  .article-card__image img { width: 100%;
    height: 100%; }
  .article-card__body { padding: 24px 20px;
    gap: 10px; }
  .article-card__title { font-size: 1.2rem; }
  .article-card__excerpt { font-size: 0.88rem; }
  .article-card__quote { font-size: 0.82rem;
    padding: 10px 14px; }
  .blog-grid { grid-template-columns: 1fr; gap: 20px; padding: 32px 0; }
  .blog-card { flex-direction: column; }
  .blog-card__image { flex: 0 0 auto; height: 200px; min-height: auto; }
  .blog-card__body { padding: 20px; }
  .blog-card__title { font-size: 1.05rem; }

  /* 产品内页手机端：隐藏侧边栏，改为单列 */
  .product-layout {
    grid-template-columns: 1fr !important;
  }
  .product-layout .sidebar-card {
    display: none !important;
  }
  .product-layout .sidebar-card:first-child {
    display: none !important;
  }
  .product-layout [class*="sidebar"] {
    display: none !important;
  }
  /* 产品内页手机端：去掉侧边栏 */
  .product-aside, .product-sidebar, 
  .product-layout-sidebar, .product-layout-aside,
  .product-main + aside, .product-main ~ aside,
  [class*="sidebar"], [class*="side-bar"],
  /* 去掉左右布局，改为单列 */
  .product-content-wrapper, .product-content-area,
  .product-layout {
      flex-direction: column !important;
  }
  .product-main, .product-content-main {
      width: 100% !important;
      flex: none !important;
  }
  /* 所有产品卡片手机端统一比例: 图片1:1 + 文字0.4 = 卡片总高1.4 */
  .product-card .card-img-link {
    aspect-ratio: 1/1 !important;
    max-height: none !important;
  }
  .product-card .card-img-square {
    aspect-ratio: 1/1 !important;
    height: auto !important;
    object-fit: cover !important;
  }
  .product-card .card-body {
    padding: 8px 10px !important;
    min-height: 0 !important;
  }
}

@media (max-width: 1024px) {
  .category-carousel-track .product-card { flex: 0 0 calc(25% - 13.5px); }
  .category-section { padding: 22px 18px 20px;
    margin-bottom: 24px; }
  .card-grid { grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px; }
  .category-page-grid { grid-template-columns: repeat(3, 1fr) !important; }
  .top-picks-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-text h1 { font-size: 2rem; }
  .hero-banner { padding: 32px 0; }
  .g-category .category-carousel-track .product-card { flex: 0 0 calc(25% - 13.5px); }
  .shop-by-category { padding: 40px 0 36px !important; }
  .g-category { margin-bottom: 28px; }
  .section-heading { margin-bottom: 30px; }
}

@media (max-width: 480px) {
  /* Top row: compact */
  .top-row { padding: 8px 0; }
  .top-row-inner .header-logo { font-size: 1.3rem; }
  .top-row-inner { gap: 8px;
    padding: 0 12px !important; }
  /* Container */
  .container { padding: 0 12px !important; }
  .hero-inner,
  .search-section-inner,
  .footer-inner,
  .product-inner,
  .article-inner { padding: 0 12px !important; }
  /* Hero: minimal */
  .hero-banner { padding: 20px 0; }
  .hero-grid { gap: 16px; }
  .hero-text h1 { font-size: 1.35rem;
    line-height: 1.25; }
  .hero-text > p { font-size: 0.82rem;
    margin-bottom: 14px; }
  .hero-badge { font-size: 0.65rem;
    padding: 3px 10px;
    margin-bottom: 8px; }
  .hero-visual { max-width: 100%; }
  .hero-product-showcase { padding: 20px; }
  .hero-arrows { margin-top: 14px; }
  /* Product cards: single column */
  .card-grid { grid-template-columns: 1fr !important;
    gap: 12px; }
  .category-page-grid { grid-template-columns: 1fr !important; }
  .top-picks-grid { grid-template-columns: 1fr;
    gap: 12px; }
  /* Article section */
  .article-section { padding: 24px 0; }
  .article-header h2 { font-size: 1.2rem; }
  .article-excerpt { font-size: 14px; }
  .big-cover { aspect-ratio: 1.3 / 1; }
  /* Section titles */
  .section-title h2 { font-size: 1.15rem; }
  /* Category home */
  .category-home-title { font-size: 1rem; }
  .category-home-subtitle { font-size: 0.75rem; }
  .category-home-header { gap: 4px 10px;
    margin-bottom: 10px; }
  /* Banner: 手机端适配 */
  .top-banner-carousel { height: 320px; }
  .banner-arrow { width: 28px;
    height: 28px;
    font-size: 0.9rem; }
  .banner-dots { bottom: 8px;
    gap: 6px; }
  .banner-dot { width: 8px;
    height: 8px; }
  /* Search section */
  .search-section { padding: 32px 0 !important; }
  .search-heading { font-size: 1.15rem !important;
    margin-bottom: 16px !important; }
  .btn-search { padding: 7px 14px; }
  /* Footer */
  .site-footer { padding: 28px 0 16px !important; }
  .footer-title { font-size: 13px; }
  .footer-inner { gap: 18px; }
  .footer-inner > div:first-child { text-align: center; }
  .footer-bottom { padding: 16px 12px 0 !important;
    margin: 16px auto 0 !important;
    text-align: center;
    gap: 6px; }
  .footer-copyright { font-size: 0.78rem; }
  .affiliate-disclosure { font-size: 0.72rem !important;
    text-align: center;
    max-width: 100%;
    word-break: break-word; }
  /* Product wrap */
  .product-wrap { padding: 24px 0; }
  .category-head h2 { font-size: 1.1rem; }
  .category-block h3 { font-size: 0.95rem;
    margin-bottom: 14px; }
  /* Card image */
  .card-img-link { max-height: 260px; }
  /* 所有产品卡片手机端统一比例: 图片1:1 + cover铺满 */
  .product-card .card-img-link {
    aspect-ratio: 1/1 !important;
    max-height: none !important;
  }
  .product-card .card-img-square {
    aspect-ratio: 1/1 !important;
    height: auto !important;
    object-fit: cover !important;
  }
  .card-body { padding: 10px 12px 14px; }
  .card-body .pro-title { font-size: 15px; }
  /* Related products */
  .related-grid { grid-template-columns: 1fr; }
  .related-title { font-size: 1.2rem; }
  /* Hero carousel dots */
  .hero-trust { flex-direction: column;
    gap: 6px; }
  .article-block-section { padding: 28px 0 !important; }
  .article-block-inner { padding: 0 12px !important;
    gap: 20px; }
  .article-card__body { padding: 20px 16px;
    gap: 8px; }
  .article-card__title { font-size: 1.1rem; }
  .article-card__excerpt { font-size: 0.84rem;
    line-height: 1.6; }
  .article-card__cta { font-size: 0.8rem;
    padding: 10px 22px; }
}

/* ====== Product Hero Enhancements ====== */
.page-hero-text .breadcrumb {
  font-size: 0.85rem;
  margin-bottom: 14px;
  letter-spacing: 0.2px;
}
.page-hero-text .breadcrumb a {
  color: #555;
  transition: color 0.2s;
}
.page-hero-text .breadcrumb a:hover {
  color: #DEA148;
}
.page-hero-text .breadcrumb .sep {
  color: #DEA148;
  margin: 0 6px;
}
.page-hero-text .breadcrumb span:last-child {
  color: #111c33;
  font-weight: 500;
}
.page-hero-text h1 {
  font-size: 1.85rem;
  letter-spacing: -0.3px;
  line-height: 1.15;
  margin-bottom: 14px;
}
.page-hero-meta {
  gap: 10px;
  margin-bottom: 18px;
}
.meta-badge {
  font-size: 0.74rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 6px;
}

/* ====== Product Hero Summary Enhancements ====== */
.page-hero-summary {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #4b5563;
  margin: 0 0 22px;
  max-width: 620px;
}

/* ====== Expert Tested Module Enhancements ====== */
.expert-tested {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: 36px 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.expert-tested-inner {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  max-width: 780px;
}
.expert-tested-icon {
  font-size: 1.6rem;
  color: #2e7d32;
  background: #e8f5e9;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(46,125,50,0.15);
}
.expert-tested-text h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 6px;
  color: #111c33;
}
.expert-tested-text p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #6b7280;
  margin: 0 0 14px;
}

/* ====== Category Hero Enhancements ====== */
.category-hero {
  background: linear-gradient(135deg, #f7f8fa 0%, #eef0f4 100%);
  padding: 44px 0 38px;
  border-bottom: 1px solid #e5e7eb;
}
.category-hero .breadcrumb {
  font-size: 0.82rem;
  color: #888;
  margin: 0 0 14px;
  letter-spacing: 0.2px;
}
.category-hero .breadcrumb a {
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}
.category-hero .breadcrumb a:hover {
  color: #DEA148;
}
.category-hero .breadcrumb .sep {
  margin: 0 6px;
  color: #DEA148;
}
.category-hero .breadcrumb span:last-child {
  color: #111c33;
  font-weight: 500;
}
.category-hero h1 {
  font-size: 1.85rem;
  font-weight: 800;
  color: #111c33;
  margin: 0 0 12px;
  letter-spacing: -0.3px;
  line-height: 1.15;
}
.category-hero p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #4b5563;
  max-width: 680px;
  margin: 0;
}

/* ============================================================
   Product Page: Pros/Cons, About This Product, Specs Table
   ============================================================ */

/* Pros & Cons Section */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}
.pros-box, .cons-box {
  padding: 18px 22px;
  border-radius: 10px;
  border: 1px solid;
}
.pros-box {
  background: #f0faf0;
  border-color: #d4edda;
}
.cons-box {
  background: #fffbf0;
  border-color: #ffeeba;
}
.pros-box h3, .cons-box h3 {
  font-size: 0.88rem;
  font-weight: 700;
  margin: 0 0 10px;
}
.pros-box h3 { color: #155724; }
.cons-box h3 { color: #856404; }
.pros-box ul, .cons-box ul {
  margin: 0;
  padding: 0 0 0 18px;
  font-size: 0.82rem;
  list-style: disc;
}
.pros-box li { color: #155724; margin-bottom: 4px; }
.cons-box li { color: #856404; margin-bottom: 4px; }

/* About This Product Section */
.review-section {
  margin-bottom: 28px;
}
.review-section h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111c33;
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid #DEA148;
  display: inline-block;
}
.review-section p {
  font-size: 0.85rem;
  line-height: 1.75;
  color: #4b5563;
}

/* Specs Table */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}
.specs-table tr {
  border-bottom: 1px solid #eee;
}
.specs-table tr:last-child {
  border-bottom: none;
}
.specs-table td {
  padding: 10px 12px;
}
.spec-label {
  font-weight: 600;
  color: #333;
  width: 120px;
}
.spec-value {
  color: #555;
}

/* 404 not-found fallback */
.not-found-block {
  display: none;
  text-align: center;
  padding: 60px 20px;
}
.not-found-block h2 {
  color: #111c33;
}
.not-found-block p {
  color: #6b7280;
}
.not-found-block a {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 28px;
  background: #DEA148;
  color: #fff;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
}

/* Product layout (2-col: main + sidebar) */
.product-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 36px;
  padding-top: 32px;
  padding-bottom: 48px;
}

/* ====== Product Page Premium Design (smrtdesk.xyz aligned) ====== */
.product-hero {
  position: relative;
  padding: 28px 0 40px;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}
.product-hero-inner {
  max-width: 680px;
}
.page-hero-inner {
  max-width: 680px;
}
.page-hero-text {
  position: relative;
}

/* Breadcrumb Upgraded */
.page-hero-text .breadcrumb {
  font-size: 0.82rem;
  margin-bottom: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  letter-spacing: 0.2px;
}
.page-hero-text .breadcrumb a {
  color: #666;
  text-decoration: none;
  transition: color 0.2s;
}
.page-hero-text .breadcrumb a:hover {
  color: #DEA148;
}
.page-hero-text .breadcrumb .sep {
  color: #DEA148;
  margin: 0 6px;
}
.page-hero-text .breadcrumb span:last-child {
  color: #111c33;
  font-weight: 500;
}

/* Title Upgraded */
.page-hero-text h1 {
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.3px;
  line-height: 1.12;
  color: #111c33;
  margin: 0 0 16px;
}

/* Meta Badges Upgraded */
.page-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #2e7d32;
  background: #e8f5e9;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.2px;
}
.meta-badge.updated { background: #e3f2fd; color: #1565c0; }
.meta-badge.verified { background: #e8f5e9; color: #2e7d32; }
.meta-badge.tested { background: #fff3e0; color: #e65100; }

/* Summary Paragraph Upgraded */
.page-hero-summary {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4b5563;
  max-width: 600px;
  margin: 0 0 24px;
}

/* Expert Tested Card Upgraded */
.expert-tested {
  background: #f9fafb;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #e5e7eb;
  padding: 32px 0;
  box-shadow: none;
}
.expert-tested-inner {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  max-width: 780px;
}
.expert-tested-icon {
  width: 48px;
  height: 48px;
  background: #e8f5e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #2e7d32;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(46,125,50,0.12);
}
.expert-tested-text h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #111c33;
  margin: 0 0 4px;
}
.expert-tested-text p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #6b7280;
  margin: 0;
}

/* Product Image Area Upgraded */
.product-image-area {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  background: #f7f8fa center/cover no-repeat;
  border-radius: 14px;
  margin-bottom: 24px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

/* Price Card Upgraded */
.price-card {
  background: #f7f8fa;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 22px 28px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.price-card__label {
  font-size: 0.7rem;
  color: #888;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.price-card__price {
  font-size: 1.5rem;
  font-weight: 800;
  color: #111c33;
}
.price-card__stars {
  font-size: 0.8rem;
  color: #DEA148;
  margin-top: 2px;
}
.btn-amz {
  display: inline-block;
  padding: 12px 28px;
  background: #DEA148;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
  border: none;
  cursor: pointer;
}
.btn-amz:hover {
  background: #c88a32;
  transform: translateY(-1px);
}

/* Large Amazon button variant */
.btn-amz-large {
  padding: 12px 34px;
}

/* Full-width block Amazon button variant */
.btn-amz-block {
  display: block;
  width: 100%;
}

/* Ready to buy CTA section */
.ready-to-buy {
  background: linear-gradient(135deg, #f0f2f5, #e8ebf0);
  border: 1px solid #e0e4e8;
  border-radius: 14px;
  padding: 28px 32px;
  text-align: center;
  margin-bottom: 12px;
}
.ready-to-buy h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #111c33;
  margin: 0 0 6px;
}
.ready-to-buy p {
  font-size: 0.82rem;
  color: #6b7280;
  margin: 0 0 16px;
}

/* Sidebar card */
.sidebar-card {
  background: #f7f8fa;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
}
.sidebar-card h3 {
  font-size: 0.82rem;
  font-weight: 700;
  color: #111c33;
  margin: 0 0 14px;
  padding-bottom: 11px;
  border-bottom: 1.5px solid #e5e7eb;
}
.sidebar-cat-desc {
  font-size: 0.78rem;
  color: #6b7280;
  margin: 0 0 14px;
}

/* Quick links list */
.quick-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.quick-links li {
  font-size: 0.78rem;
  padding: 9px 0;
  border-bottom: 1px solid #eee;
}
.quick-links li:last-child { border-bottom: none; }
.quick-links a {
  color: #4b5563;
  text-decoration: none;
  display: block;
}
.quick-links a:hover { color: #DEA148; }

/* Category Hero Upgraded */
.category-hero {
  background: linear-gradient(135deg, #f7f8fa 0%, #eef0f4 100%);
  padding: 44px 0 38px;
  border-bottom: 1px solid #e5e7eb;
}
.category-hero .breadcrumb {
  font-size: 0.82rem;
  color: #888;
  margin: 0 0 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.category-hero .breadcrumb a {
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}
.category-hero .breadcrumb a:hover { color: #DEA148; }
.category-hero .breadcrumb .sep { margin: 0 6px; color: #DEA148; }
.category-hero .breadcrumb span:last-child { color: #111c33; font-weight: 500; }
.category-hero h1 {
  font-size: 1.9rem;
  font-weight: 800;
  color: #111c33;
  margin: 0 0 12px;
  letter-spacing: -0.3px;
  line-height: 1.15;
}
.category-hero p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #4b5563;
  max-width: 680px;
  margin: 0;
}

/* Category Page Grid — Fixed 4 columns */
.category-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* Search Results Grid — Fixed 4 columns, never collapse to 1 */
.sr-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px;
  margin-top: 16px;
}
@media (max-width: 1024px) {
  .sr-grid { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 768px) {
  .sr-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 480px) {
  .sr-grid { grid-template-columns: 1fr !important; }
}

/* Subcategory filter pills (mobile only, PC hidden) */
.subcat-row {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    gap: 8px;
    margin-bottom: 20px;
    padding: 4px 16px 12px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.subcat-row::-webkit-scrollbar { display: none; }
.subcat-row .blog-filter-pill {
    padding: 5px 14px;
    border-radius: 99px;
    font-size: 0.78rem;
    font-weight: 500;
    border: 1px solid #ddd;
    background: #f5f6f8;
    color: #444;
    text-decoration: none;
    white-space: nowrap;
    flex: 0 0 auto;
    transition: all 0.2s;
}
.subcat-row .blog-filter-pill:hover {
    border-color: #DEA148;
    color: #DEA148;
    background: #fff8ed;
}
.subcat-row .blog-filter-pill:active {
    background: #DEA148;
    color: #fff;
    border-color: #DEA148;
}

@media (min-width: 769px) {
    .subcat-row { display: none !important; }
}


/* ====== Product Card (Category Grid) — matches online smrtdesk.xyz ====== */
.product-card {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.2s, transform 0.15s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.product-card .card-img-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f5f7fa;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
.product-card .card-img-link:hover { opacity: 0.92; }
.product-card .card-img-square {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
  display: block;
}
.product-card .card-body {
  padding: 8px 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}
.product-card .card-body .stars {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 4px;
  line-height: 1;
}
.product-card .card-body .stars .rating-text {
  font-size: 0.65rem;
  color: var(--text-aux);
  letter-spacing: 0;
}
.product-card .card-body .pro-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  color: var(--text-heading);
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card .card-body .pro-title a { color: inherit; }
.product-card .card-body .pro-title a:hover { color: var(--orange); }
.product-card .card-body .price-range {
  font-size: 0.7rem;
  color: var(--text-body);
  margin: 0;
  text-align: left;
  line-height: 1.2;
}
.product-card .card-body .price-range strong {
  color: var(--text-heading);
  font-weight: 700;
}
.product-card .card-body .btn-amz {
  display: block;
  width: 100%;
  padding: 7px 0;
  margin-top: auto;
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-align: center;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.2s;
  letter-spacing: 0.2px;
  line-height: 1;
}
.product-card .card-body .btn-amz:hover {
  background: var(--orange-hover);
  color: var(--white);
}
.product-card .card-body .btn-amz::after {
  content: ' \2192';
}

/* ============================================================
   Article Page Styles — Hero, Layout, Body, Sidebar, Related
   ============================================================ */

/* Article Hero */
.article-hero {
  background: #F6F7F9;
  padding: 44px 0 38px;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}
.article-hero__breadcrumb {
  font-size: 0.82rem;
  color: #888;
  margin: 0 0 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.article-hero__breadcrumb a {
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}
.article-hero__breadcrumb a:hover {
  color: #DEA148;
}
.article-hero__breadcrumb .sep {
  margin: 0 6px;
  color: #DEA148;
}
.article-hero__breadcrumb span:last-child {
  color: #111c33;
  font-weight: 500;
}
.article-hero__title {
  font-size: 1.85rem;
  font-weight: 800;
  color: #111c33;
  margin: 0 0 12px;
  letter-spacing: -0.3px;
  line-height: 1.15;
}
.article-hero__meta {
  font-size: 0.82rem;
  color: #888;
}

/* Article Layout: Main + Sidebar */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  padding: 36px 0 48px;
}

/* Article Main (left column) — left-aligned */
.article-main {
  min-width: 0;
  text-align: left;
}

/* Article Body — clean typography, left-aligned */
.article-body {
  font-size: 1rem;
  line-height: 1.85;
  color: #333;
  text-align: left;
}
.article-body h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #111c33;
  margin: 36px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--orange);
}
.article-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #111c33;
  margin: 28px 0 10px;
  padding-left: 12px;
  border-left: 3px solid var(--orange);
}
.article-body h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #222;
  margin: 22px 0 8px;
}
.article-body p {
  font-size: 0.98rem;
  line-height: 1.85;
  color: #444;
  margin: 0 0 18px;
}
.article-body strong {
  color: #1a1a2e;
}
.article-body a {
  color: #4159bb;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.article-body a:hover {
  color: var(--orange);
}
.article-body img {
  border-radius: 14px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 24px 0;
}
.article-body ul,
.article-body ol {
  margin: 0 0 18px 24px;
  color: #444;
  line-height: 1.85;
}
.article-body ul li,
.article-body ol li {
  margin-bottom: 6px;
  font-size: 0.95rem;
}
.article-body blockquote {
  background: #fdf3e5;
  border-left: 4px solid var(--orange);
  padding: 18px 22px;
  margin: 24px 0;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #5a4a30;
  line-height: 1.8;
}
.article-body blockquote p {
  margin: 0;
  color: inherit;
}
.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.9rem;
}
.article-body table th {
  background: #0a1a3a;
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
  font-size: 0.85rem;
}
.article-body table td {
  padding: 9px 14px;
  border-bottom: 1px solid #e5e7eb;
  color: #444;
}
.article-body table tr:nth-child(even) td {
  background: #f8f9fc;
}

/* Featured image inside article body — first img is large */
.article-body > img:first-child {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 14px;
  margin: 0 0 28px;
}

/* Related Articles Section */
.article-related {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.article-related__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111c33;
  margin: 0 0 20px;
}
.article-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
/* Styled list items → card style */
.article-related__grid li {
  list-style: none;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.article-related__grid li:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.article-related__grid li a {
  display: block;
  padding: 20px 18px;
  color: #111c33;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.45;
  text-decoration: none;
  transition: color 0.15s;
}
.article-related__grid li a:hover {
  color: var(--orange);
}

/* Article Sidebar */
.article-sidebar {
  min-width: 0;
}
.article-sidebar-widget {
  background: var(--bg);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
}
.article-sidebar-widget__title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #222;
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.article-sidebar-widget__text {
  font-size: 0.82rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}
.article-sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.article-sidebar-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.84rem;
  line-height: 1.5;
}
.article-sidebar-list li:last-child {
  border-bottom: none;
}
.article-sidebar-list li a {
  color: #1a3a6b;
  text-decoration: none;
  font-weight: 500;
  display: block;
  transition: color 0.15s;
}
.article-sidebar-list li a:hover {
  color: var(--orange);
}
.article-sidebar-back-btn {
  display: block;
  width: 100%;
  padding: 12px 0;
  background: var(--orange);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}
.article-sidebar-back-btn:hover {
  background: var(--orange-hover);
}

/* ============================================================
   Article Page — Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .article-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .article-hero__title {
    font-size: 1.8rem;
  }
  .article-related__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-info-box {
    max-width: 100%;
  }
  .review-rating-breakdown {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .article-hero {
    padding: 36px 0 28px;
  }
  .article-hero__title {
    font-size: 1.45rem;
  }
  .article-hero__breadcrumb {
    font-size: 0.76rem;
  }
  .article-layout {
    padding: 24px 0 36px;
  }
  .article-body h2 {
    font-size: 1.2rem;
  }
  .article-body h3 {
    font-size: 1.05rem;
  }
  .article-body p {
    font-size: 0.92rem;
  }
  .article-related__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .article-related__grid li a {
    padding: 14px;
    font-size: 0.82rem;
  }
  .article-sidebar {
    order: 2;
  }
  .review-pros-cons {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .review-rating-breakdown {
    flex-direction: column;
    gap: 16px;
  }
  .review-product-image {
    margin: 20px 0 0;
    max-width: 400px;
  }
}
@media (max-width: 480px) {
  .article-hero {
    padding: 28px 0 22px;
  }
  .article-hero__title {
    font-size: 1.25rem;
  }
  .article-hero__meta {
    font-size: 0.75rem;
  }
  .article-layout {
    padding: 20px 0 32px;
    gap: 20px;
  }
  .article-body h2 {
    font-size: 1.1rem;
  }
  .article-body h3 {
    font-size: 1rem;
  }
  .article-body p {
    font-size: 0.88rem;
  }
  .article-related__grid {
    grid-template-columns: 1fr;
  }
  .article-sidebar-widget {
    padding: 18px;
  }
  .review-pros-cons {
    grid-template-columns: 1fr;
  }
  .review-card__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .review-product-image {
    margin: 16px 0 0;
    max-width: 100%;
  }
  .product-info-box {
    padding: 18px;
  }
}

/* ============================================================
   Product Review Framework Styles
   ============================================================ */

/* ── Article Product Header Responsive — deprecated ── */
@media (max-width: 768px) {
  .article-product-header {
    display: none;
  }
}

/* ── Product Image (1:1 square, min 800px wide) ── */
.review-product-image {
  width: 800px;
  aspect-ratio: 1 / 1;
  margin: 0 0 32px;
  border-radius: 16px;
  overflow: hidden;
  background: #f5f7fa;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  position: relative;
  float: none;
}
.review-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #fff;
}
/* Hide placeholder when img[src] is valid */
.review-product-img[src]:not([src=""]) ~ .review-product-placeholder {
  display: none;
}
.review-product-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #b0b7c3;
  font-size: 0.85rem;
  font-weight: 500;
  gap: 8px;
  pointer-events: none;
}
.review-product-placeholder-icon {
  font-size: 2.4rem;
  opacity: 0.4;
}

/* ── Pros & Cons Boxes ── */
.review-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 28px 0;
}
.review-box {
  padding: 24px 28px;
  border-radius: 14px;
  border: 1.5px solid;
}
.review-box__title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 14px;
  letter-spacing: 0.2px;
}
.review-box--pros {
  background: #f0faf5;
  border-color: #c3e6cb;
}
.review-box--pros .review-box__title {
  color: #1e7e34;
}
.review-box--cons {
  background: #fff9f0;
  border-color: #ffe0a0;
}
.review-box--cons .review-box__title {
  color: #d39e00;
}
.review-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.review-list li {
  position: relative;
  padding: 6px 0 6px 26px;
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 4px;
}
.review-list--pros li {
  color: #1a5333;
}
.review-list--pros li::before {
  content: '✅';
  position: absolute;
  left: 0;
  top: 6px;
  font-size: 0.75rem;
}
.review-list--cons li {
  color: #6b4e00;
}
.review-list--cons li::before {
  content: '❌';
  position: absolute;
  left: 0;
  top: 6px;
  font-size: 0.75rem;
}

/* ── Customer Reviews Section ── */
.review-customer-reviews {
  margin: 36px 0;
}
.review-section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111c33;
  margin: 0 0 20px;
}
.review-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Review Card */
.review-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 22px 26px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s, transform 0.15s;
}
.review-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transform: translateY(-1px);
}
.review-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4159bb 0%, #0a1a3a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-card__avatar-inner {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.review-card__user-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.review-card__name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #111c33;
}
.review-card__verified {
  font-size: 0.72rem;
  color: #2e7d32;
  font-weight: 500;
}
.review-card__body blockquote {
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
  line-height: 1.75;
  color: #4b5563;
  font-style: italic;
  quotes: none;
  border: none;
  background: none;
}

/* Review Stars */
.review-star {
  color: #d0d5dd;
  font-size: 0.9rem;
  letter-spacing: 1px;
}
.review-star--filled {
  color: #DEA148;
}
.review-star--half {
  color: #DEA148;
}
.review-card__stars .review-star {
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}

/* ── Rating Summary Section ── */
.review-rating-summary {
  margin: 36px 0;
}
.review-rating-breakdown {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  background: #f7f8fa;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  padding: 28px 32px;
}

/* Overall score */
.rating-overall {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  min-width: 140px;
  text-align: center;
}
.rating-overall__score {
  font-size: 3rem;
  font-weight: 800;
  color: #111c33;
  line-height: 1;
}
.rating-overall__max {
  font-size: 1.1rem;
  color: #888;
  font-weight: 600;
  margin-top: -4px;
}
.rating-overall__stars .review-star {
  font-size: 1rem;
  letter-spacing: 1.5px;
}
.rating-overall__count {
  font-size: 0.78rem;
  color: #888;
  margin-top: 4px;
}

/* Rating Bars */
.rating-bars {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 200px;
}
.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.rating-bar-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #555;
  width: 52px;
  flex-shrink: 0;
  text-align: right;
}
.rating-bar-track {
  flex: 1;
  height: 10px;
  background: #e2e5ea;
  border-radius: 5px;
  overflow: hidden;
}
.rating-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #DEA148 0%, #f5c76a 100%);
  border-radius: 5px;
  transition: width 0.6s ease;
}
.rating-bar-percent {
  font-size: 0.78rem;
  font-weight: 600;
  color: #555;
  width: 36px;
  text-align: right;
  flex-shrink: 0;
}

/* ── Article Product Header (Image + Info side by side) — deprecated, replaced by article-layout grid ── */
.article-product-header {
  display: none;
}

/* ── Product Info Box (Sidebar) ── */
.product-info-box {
  background: linear-gradient(135deg, #f7f8fa 0%, #eef0f4 100%);
  border: 1.5px solid #DEA148;
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(222,161,72,0.12);
}
.product-info-box__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111c33;
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 1.5px solid #e5e7eb;
}
.product-info-box__rating {
  font-size: 1rem;
  color: #555;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.product-info-box__rating strong {
  color: #111c33;
  font-size: 1.15rem;
}
.product-info-box__price {
  font-size: 1rem;
  color: #555;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.product-info-box__price strong {
  color: #111c33;
  font-size: 1.4rem;
}
.product-info-box__btn {
  display: block;
  width: 100%;
  padding: 12px 0;
  background: linear-gradient(135deg, #DEA148 0%, #c88a32 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(222,161,72,0.3);
  margin-bottom: 12px;
}
.product-info-box__btn:hover {
  background: linear-gradient(135deg, #c88a32 0%, #b87828 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(222,161,72,0.4);
  color: #fff;
}
.product-info-box__disclosure {
  font-size: 0.7rem;
  color: #999;
  line-height: 1.4;
  text-align: center;
  margin: 0;
}
