/* WatchGuys-inspired theme — USA REPLICA WATCH EXPERT */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,600;1,500&display=swap');

/* Never apply dark :root vars on admin pages */
html:has(body[data-admin-user]),
body[data-admin-user] {
  --ink: #1a1a1a !important;
  --muted: #666666 !important;
  --paper: #f7f5f1 !important;
  --soft: #f0f0f0 !important;
  --line: #ddd9ce !important;
  color-scheme: light !important;
}

:root:not(:has(body[data-admin-user])) {
  --ink: #111111;
  --muted: #666666;
  --paper: #ffffff;
  --soft: #f5f5f5;
  --line: #e5e5e5;
  --brand: #2563eb;
  --brand-hover: #1d4ed8;
  --brand-deep: #1e40af;
  --brand-soft: rgba(37,99,235,.12);
  --gold: #b8860b;
  --display: "Playfair Display", Georgia, serif;
  --sans: "Inter", system-ui, sans-serif;
  --radius: 999px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  color-scheme: light;
}

html[data-theme="dark"]:not(:has(body[data-admin-user])) {
  --ink: #111111;
  --muted: #666666;
  --paper: #ffffff;
  --soft: #f5f5f5;
  --line: #e5e5e5;
  color-scheme: light;
}

html[data-theme="light"] {
  --ink: #111;
  --muted: #666;
  --paper: #fafafa;
  --soft: #f0f0f0;
  --line: #e5e5e5;
  color-scheme: light;
}

body:not([data-admin-user]) {
  background: var(--paper) !important;
  color: var(--ink);
  font-family: var(--sans) !important;
}

.utility-bar {
  background: #111 !important;
  border-bottom: 1px solid rgba(255,255,255,.12);
  font-size: 11px;
  letter-spacing: .04em;
  color: #fff !important;
}
.utility-bar span,
.utility-bar a,
.utility-bar p,
.utility-bar .sell-now {
  color: #fff !important;
}
.utility-bar .sell-now {
  border-color: rgba(255,255,255,.45) !important;
}
.utility-bar .sell-now:hover {
  background: #fff !important;
  color: #111 !important;
}

.site-header {
  background: rgba(255,255,255,.92) !important;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid #e5e5e5;
  box-shadow: none !important;
  position: absolute !important;
  left: 0; right: 0;
  z-index: 50;
}

.site-chrome {
  background: transparent !important;
  box-shadow: none !important;
}

.brand {
  font-family: var(--sans) !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  letter-spacing: .18em !important;
  color: #111 !important;
  -webkit-text-fill-color: #111 !important;
  background: none !important;
  filter: none !important;
}

.main-nav a, .nav-link {
  color: #111 !important;
  font-size: 11px;
  letter-spacing: .14em;
  opacity: .85;
}

.main-nav a:hover, .nav-link.active { opacity: 1; color: #111 !important; }

.header-actions .header-icon { color: #111; }

.wg-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: #000;
  margin-top: 0;
}

.wg-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.wg-hero-bg img,
.wg-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: .55;
}

.wg-hero-video { display: block; border: 0; }

.wg-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.2) 40%, rgba(0,0,0,.75) 100%);
}

.wg-hero-center {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 200px;
  max-width: 900px;
}

.wg-hero-center h1 {
  margin: 0 0 28px;
  font-family: var(--sans);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 600;
  letter-spacing: -.02em;
  color: #fff;
  line-height: 1.1;
}

.wg-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.wg-hero-contact {
  margin: 44px auto 0;
  max-width: 960px;
  padding: 0 12px;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: .01em;
  color: rgba(255,255,255,.92);
  text-align: center;
}

.wg-hero-contact-line {
  display: block;
  white-space: nowrap;
}

.wg-hero-contact a {
  color: #fff !important;
  text-decoration: none;
}

.wg-hero-contact a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.wg-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  padding: 14px 28px;
  border-radius: var(--radius);
  background: var(--brand);
  color: #fff !important;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  border: none;
  transition: background .2s, transform .2s;
}

.wg-btn-primary:hover { background: var(--brand-hover); transform: translateY(-1px); }

.wg-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  padding: 13px 28px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  color: #fff !important;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,.35);
}

.wg-btn-ghost:hover { background: rgba(255,255,255,.2); }

.wg-hero-strip {
  position: absolute;
  bottom: 24px;
  left: 0; right: 0;
  z-index: 3;
  padding: 0 clamp(16px, 3vw, 40px);
}

.wg-hero-cards {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  max-width: 1400px;
  margin: 0 auto;
}

.wg-hero-card {
  flex: 0 0 min(280px, 85vw);
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  text-decoration: none;
}

.wg-hero-card img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
}

.fp-hero, .fp-strip, .fp-ways, .fp-values, .product-recommend, .service-strip.wg-hidden { display: none !important; }

/* Brand logo */
.brand-logo {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
}
.brand-mark {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
}
.brand-name { font-size: 1.05rem !important; letter-spacing: .22em !important; }

/* Homepage: sticky chrome; solid bar after scroll (class from watchguys-home.js) */
body:has(.wg-hero) .site-chrome {
  position: sticky !important;
  top: 0;
  z-index: 100;
  background: transparent !important;
  transition: background .25s ease, box-shadow .25s ease;
}

body:has(.wg-hero) .site-chrome.site-chrome--scrolled {
  background: #fff !important;
  box-shadow: none !important;
  border-bottom: 1px solid #e5e5e5;
}

body:has(.wg-hero) .site-chrome.site-chrome--scrolled .site-header {
  position: relative !important;
  background: rgba(255,255,255,.98) !important;
  border-bottom: 1px solid #e5e5e5 !important;
  box-shadow: none !important;
}

body:has(.wg-hero) .site-chrome.site-chrome--scrolled .utility-bar {
  background: #111 !important;
}

/* Sections */
.wg-section { padding: 64px 24px; background: #ffffff; }
.wg-eyebrow {
  text-align: center;
  font-size: 11px;
  letter-spacing: .2em;
  color: #888;
  margin: 0 0 20px;
  text-transform: uppercase;
}
.wg-eyebrow-blue { color: var(--brand); }

/* Testimonials — WatchGuys style */
.wg-testimonials { background: #f5f5f5; padding: 72px 24px; }
.wg-testimonials .wg-eyebrow { color: #888; }
.wg-testimonial-box {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: 52px 72px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.08);
  background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
  text-align: center;
  min-height: 200px;
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
}
.wg-testimonial-slide { display: none; }
.wg-testimonial-slide.active { display: block; }
.wg-testimonial-slide blockquote {
  margin: 0 0 18px;
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-style: normal;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  letter-spacing: -.01em;
}
.wg-stars {
  display: block;
  margin: 0 auto 14px;
  width: fit-content;
  line-height: 1;
}
.wg-stars::before {
  content: "★★★★★";
  color: #e8a020;
  font-size: 1.35rem;
  letter-spacing: .22em;
}
.wg-testimonial-sub { color: rgba(255,255,255,.5); font-size: 12px; margin: 0; letter-spacing: .02em; }
.wg-testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 300;
  cursor: pointer;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 2px;
}
.wg-testimonial-nav:hover { background: rgba(255,255,255,.14); }
.wg-testimonial-prev { left: 16px; }
.wg-testimonial-next { right: 16px; }

/* As seen in — media logos (WatchGuys style) */
.wg-as-seen { background: #fff; padding: 48px 24px 64px; border-top: 1px solid #eee; }
.wg-as-seen .wg-eyebrow { color: #888; margin-bottom: 28px; }
.wg-media-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px 44px;
  max-width: 1100px;
  margin: 0 auto;
}
.wg-media-logos img {
  display: block;
  height: 44px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.72;
  transition: opacity .25s ease, filter .25s ease;
}
.wg-media-logos a:hover img,
.wg-media-logos img:hover {
  opacity: 1;
  filter: grayscale(0%);
}
@media (max-width: 768px) {
  .wg-media-logos { gap: 20px 28px; }
  .wg-media-logos img { height: 32px; max-width: 110px; }
}

/* Latest arrivals — WatchGuys Rolex carousel */
.wg-arrivals { background: #111; padding: 64px 0; }
.wg-arrivals-inner {
  display: grid;
  grid-template-columns: minmax(240px, 340px) 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}
.wg-arrivals-tag { font-size: 11px; letter-spacing: .18em; color: rgba(255,255,255,.55); margin: 0 0 12px; text-transform: uppercase; }
.wg-arrivals-left h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 16px;
  color: #fff;
}
.wg-arrivals-left p { color: rgba(255,255,255,.65); font-size: 14px; line-height: 1.6; margin: 0 0 24px; }
.wg-arrivals-right {
  min-width: 0;
  overflow: visible;
}
.wg-arrivals-carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  min-width: 0;
  --wg-arrival-cols: 4;
  --wg-arrival-gap: 16px;
  --wg-arrival-card-w: 220px;
}
.wg-arrivals-viewport {
  flex: 0 0 auto;
  min-width: 0;
  overflow: hidden;
  width: calc(var(--wg-arrival-cols) * var(--wg-arrival-card-w) + (var(--wg-arrival-cols) - 1) * var(--wg-arrival-gap));
  max-width: calc(100% - 100px);
}
.wg-arrivals-track {
  display: flex;
  gap: var(--wg-arrival-gap);
  padding: 4px 0 12px;
  will-change: transform;
  transition: transform 0.35s ease;
}
.wg-arrival-card {
  flex: 0 0 var(--wg-arrival-card-w);
  width: var(--wg-arrival-card-w);
  scroll-snap-align: start;
  display: block;
  text-decoration: none;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 14px 14px 16px;
  color: #fff;
  transition: border-color .2s ease, transform .2s ease;
}
.wg-arrival-card:hover {
  border-color: rgba(255,255,255,.18);
  transform: translateY(-2px);
}
.wg-arrival-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  color: rgba(255,255,255,.75);
  margin-bottom: 10px;
}
.wg-arrival-badge i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e53935;
  display: inline-block;
}
.wg-arrival-media {
  display: block;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  background: #0d0d0d;
  margin-bottom: 12px;
}
.wg-arrival-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.wg-arrival-card h3 {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  color: #fff;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  min-height: calc(1.35em * 2);
}
.wg-arrival-price {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.wg-arrivals-nav {
  position: relative;
  transform: none;
  flex: 0 0 44px;
  z-index: 30;
  pointer-events: auto;
  touch-action: manipulation;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 2px;
}
.wg-arrivals-nav:hover:not(:disabled) { background: rgba(0,0,0,.75); }
.wg-arrivals-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.wg-arrivals-prev { order: -1; }
.wg-arrivals-next { order: 1; }
.wg-arrivals--luxury { background: #0a0a0a; }
.wg-arrivals-loading {
  color: rgba(255,255,255,.55);
  padding: 40px 16px;
  margin: 0;
}

/* Blog section */
.wg-blog-section { background: #fff; }

/* Sell section */
.wg-sell { background: #fff; color: #111; padding: 80px 24px; }
.wg-sell-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.wg-sell-visual img { width: 100%; border-radius: 12px; }
.wg-sell-copy h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin: 8px 0 16px; color: #111; }
.wg-sell-copy p { color: #555; line-height: 1.65; margin: 0 0 20px; }
.wg-check-list { list-style: none; padding: 0; margin: 0 0 24px; }
.wg-check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  color: #333;
  font-size: 14px;
}
.wg-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 700;
}
.wg-link-arrow {
  color: var(--brand) !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Brand buttons */
.wg-brands { background: #fafafa; color: #111; text-align: center; padding: 72px 24px; }
.wg-center-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 500;
  margin: 0 0 32px;
  color: #111;
}
.wg-center-title em { font-family: var(--display); font-style: italic; color: var(--brand); }
.wg-brand-btns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}
.wg-brand-btns a {
  padding: 16px 12px;
  background: #eee;
  border-radius: 8px;
  color: #111 !important;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background .2s;
}
.wg-brand-btns a:hover { background: #e0e0e0; }

/* Popular models / all categories */
.wg-popular { background: #fff; color: #111; text-align: center; padding: 56px 24px; }
.wg-popular-title { font-size: 1.4rem; margin: 0 0 28px; color: #111; }
.wg-popular-cols {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 6px 20px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}
.wg-popular-cols a {
  display: block;
  color: var(--brand) !important;
  font-size: 13px;
  padding: 5px 0;
  text-decoration: underline;
}
.wg-popular-loading { color: #888; font-size: 13px; grid-column: 1 / -1; text-align: center; margin: 0; }

/* Trust cards */
.wg-trust { background: #fafafa; color: #111; padding: 72px 24px; text-align: center; }
.wg-trust-title em { color: var(--brand); font-style: italic; }
.wg-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 32px auto 0;
}
.wg-trust-grid article {
  background: #eee;
  border-radius: 12px;
  padding: 32px 24px 28px;
  text-align: center;
}
.wg-trust-grid h3 { font-size: 1.2rem; margin: 0 0 12px; color: #111; }
.wg-trust-grid p { color: #666; font-size: 14px; margin: 0 0 20px; }
.wg-trust-grid a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  color: #111 !important;
  text-decoration: none;
}

/* Newsletter */
.wg-newsletter {
  background: #fff;
  color: #111;
  text-align: center;
  padding: 72px 24px 80px;
  max-width: 640px;
  margin: 0 auto;
}
.wg-newsletter h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 8px 0 12px;
  color: #111;
}
.wg-newsletter-lead { color: #666; font-size: 14px; line-height: 1.6; margin: 0 0 28px; }
.wg-newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  overflow: hidden;
}
.wg-newsletter-form input {
  flex: 1;
  border: 0;
  padding: 14px 16px;
  font-size: 14px;
  outline: none;
}
.wg-newsletter-form button {
  padding: 14px 24px;
  background: var(--brand-deep);
  color: #fff;
  border: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  cursor: pointer;
}
.wg-newsletter-note { font-size: 12px; color: #999; margin: 0; }

.wg-product-source { display: none !important; }

/* Override legacy critical CSS */
html, body {
  background: #ffffff !important;
  color: #111111 !important;
}

.site-chrome {
  background: transparent !important;
  box-shadow: none !important;
}

body:not(:has(.wg-hero)) .site-chrome {
  position: relative !important;
  box-shadow: none !important;
}

/* Blue pill buttons site-wide */
.btn-primary, .fp-btn-primary, .checkout-button, #checkout-button,
.product-card .add-to-cart, button[type=submit].primary {
  background: var(--brand) !important;
  border-color: var(--brand) !important;
  color: #fff !important;
  border-radius: var(--radius) !important;
}

.btn-primary:hover, .fp-btn-primary:hover, #checkout-button:hover {
  background: var(--brand-hover) !important;
}

.home-blog-block-head .home-blog-block-title a {
  color: #111 !important;
  font-size: 1.25rem;
  letter-spacing: .06em;
}

.home-blog-more {
  color: var(--brand) !important;
}

.home-blog-wrap { background: #fff; padding: 48px 0 64px; }
.home-blog-layout { display: block !important; }
.home-blog-layout .blog-sidebar { display: none !important; }
.home-blog-block:not([data-home-cat-block="USA SHOP BLOG"]) { display: none !important; }

.home-blog-grid, .blog-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  gap: 20px 14px !important;
}

.home-blog-card, .blog-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.home-blog-card .blog-card-title {
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 3 !important;
  line-clamp: 3 !important;
  overflow: hidden;
  color: #111 !important;
  padding: 10px 12px 6px;
  font-size: 12px !important;
  font-weight: 500;
  line-height: 1.45 !important;
  max-height: none !important;
  min-height: calc(1.45em * 3 + 16px);
  text-decoration: none;
  flex-shrink: 0;
}
.home-blog-card .blog-card-excerpt {
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
  line-clamp: 2 !important;
  overflow: hidden;
  color: var(--muted) !important;
  padding: 0 12px 14px;
  margin: 0 !important;
  font-size: 11px !important;
  font-weight: 400;
  line-height: 1.5 !important;
  max-height: none !important;
  min-height: calc(1.5em * 2 + 14px);
  flex-shrink: 0;
}

.fp-values, .fp-ways, .product-recommend { background: #fff; color: #111; }
.product-card {
  background: #fff !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  overflow: hidden;
}
.product-card:hover {
  border: none !important;
  box-shadow: none !important;
  transform: none !important;
}
.product-card .product-category,
.product-card .product-info,
.product-card .price-row {
  padding-left: 10px !important;
  padding-right: 10px !important;
}
.product-card .product-info {
  padding-top: 10px !important;
  padding-bottom: 8px !important;
}
.product-card .product-category {
  padding-top: 8px !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.product-card .price-row {
  padding-bottom: 12px !important;
}
.product-card .product-image,
.product-card .product-image img {
  border-radius: 0 !important;
}
.product-recommend-grid .product-card,
.home-shop-grid .product-card,
.product-grid .product-card {
  border: none !important;
  box-shadow: none !important;
}

/* Sidebar: hide everywhere except article/blog pages */
.blog-sidebar { display: none !important; }
.article-with-sidebar .blog-sidebar { display: grid !important; }
.article-with-sidebar .blog-layout {
  grid-template-columns: minmax(0, 1fr) 300px !important;
  gap: 36px !important;
}
.blog-browser:not(.article-with-sidebar) .blog-layout,
.home-blog-layout { grid-template-columns: 1fr !important; }

/* Non-home pages: sticky light header */
body:not(:has(.wg-hero)) .site-header {
  position: sticky !important;
  top: 0;
  background: #fff !important;
  backdrop-filter: blur(16px);
  box-shadow: none !important;
  border-bottom: 1px solid #e5e5e5 !important;
}
body:not(:has(.wg-hero)) .site-chrome {
  background: #fff !important;
  position: sticky !important;
  top: 0;
  z-index: 50;
  box-shadow: none !important;
}

/* Global page surfaces */
main { background: var(--paper); }
.product-browser, .product-detail, .page-shell, .blog-browser {
  background: var(--paper) !important;
  color: var(--ink) !important;
}
.product-card h3 a,
.product-card .product-category,
.product-card .condition {
  color: #111 !important;
  font-weight: 400 !important;
}
.product-card .brand,
.product-card .product-info .brand {
  display: none !important;
}
.product-card h3,
.product-card h3 a {
  font-weight: 400 !important;
  text-shadow: none !important;
}
.product-card .condition {
  color: var(--muted) !important;
}
.product-card .price-row,
.product-card .price-row strong {
  color: #111 !important;
  font-weight: 400 !important;
  font-family: var(--sans) !important;
  text-shadow: none !important;
}
.page-title, .section-title, h1, h2 { color: var(--ink); }
.lang-switch { display: none !important; }

/* Selling Time section */
.wg-selling { background: #fff; padding: 56px 24px 72px; }
.wg-selling-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto 28px;
  flex-wrap: wrap;
}
.wg-selling-head h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 500;
  color: #111;
}
.wg-selling-head h2 em { font-family: var(--display); font-style: italic; }
.wg-selling-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px 14px;
  max-width: 1400px;
  margin: 0 auto;
}
.wg-selling-grid.home-blog-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  display: grid !important;
  min-height: 120px;
}
.home-blog-card .blog-card-media {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: #eee;
}
.home-blog-card .blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.home-blog-empty {
  color: #666 !important;
  text-align: center;
  padding: 24px 0;
}
.wg-selling-card {
  display: block;
  text-decoration: none;
  color: #111;
}
.wg-selling-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
}
.wg-selling-card span { font-size: 13px; line-height: 1.4; opacity: .85; }

/* Showcase strip — WatchGuys style */
.wg-showcase { background: #f5f5f5; color: #111; padding: 64px 24px; }
.wg-showcase-inner {
  display: grid;
  grid-template-columns: minmax(240px, 360px) 1fr;
  gap: 28px 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  background: #e8e8e8;
  border-radius: 16px;
  padding: 36px 32px;
}
.wg-showcase-copy h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  margin: 0 0 10px;
  color: #111;
  line-height: 1.2;
}
.wg-showcase-copy h2 em { font-family: var(--display); font-style: italic; }
.wg-showcase-link {
  color: var(--brand) !important;
  font-size: 13px;
  font-weight: 600;
  text-decoration: underline;
}
.wg-showcase-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 0;
  min-width: 0;
}
.wg-showcase-item {
  display: block;
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.wg-showcase-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.wg-showcase-item img {
  width: 100%;
  height: 110px;
  object-fit: contain;
  display: block;
}
.wg-showcase-loading {
  grid-column: 1 / -1;
  color: #666;
  font-size: 13px;
}
@media (max-width: 900px) {
  .wg-showcase-inner { grid-template-columns: 1fr; }
  .wg-showcase-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow-x: auto;
  }
}

/* Press coverage */
.wg-press { background: #fff; color: #111; padding: 72px 24px; text-align: center; }
.wg-press h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 0 0 32px; color: #111; }
.wg-press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}
.wg-press-card {
  background: #f5f5f5;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: #111;
  display: block;
}
.wg-press-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.wg-press-card h3 { font-size: 15px; margin: 14px 16px 8px; line-height: 1.35; }
.wg-press-card span { display: block; padding: 0 16px 16px; font-size: 12px; color: var(--brand); }

/* Proud members */
.wg-members { background: #fafafa; color: #111; padding: 56px 24px; text-align: center; }
.wg-members h3 { font-size: 1.2rem; margin: 0 0 24px; color: #111; }
.wg-member-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 48px;
  max-width: 900px;
  margin: 0 auto;
}
.wg-member-logos span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  color: #888;
  text-transform: uppercase;
}

/* Footer */
.site-footer {
  background: #f5f5f5 !important;
  color: #444 !important;
  border-top: 1px solid #e5e5e5;
  padding-top: 48px;
}
.site-footer h3, .site-footer h4 { color: #111 !important; }
.site-footer a { color: #555 !important; }
.site-footer a:hover { color: #111 !important; }
.footer-newsletter button {
  width: 42px;
  border: 0;
  background: transparent;
  color: #111;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}
.footer-newsletter p { margin: 0 0 10px; color: #666; font-size: 12px; }
.socials { display: flex; gap: 8px; }
.socials span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid #ccc;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  color: #555;
  text-transform: lowercase;
}
.footer-bottom { border-top: 1px solid #e5e5e5; color: #888 !important; }

@media (max-width: 1400px) { .home-blog-grid { grid-template-columns: repeat(5, 1fr) !important; } }
@media (max-width: 1100px) {
  .home-blog-grid { grid-template-columns: repeat(4, 1fr) !important; }
  .wg-arrivals-carousel { --wg-arrival-cols: 3; --wg-arrival-card-w: 200px; }
  .wg-sell-grid { grid-template-columns: 1fr; }
  .wg-brand-btns { grid-template-columns: repeat(2, 1fr); }
  .wg-trust-grid { grid-template-columns: 1fr; }
  .wg-popular-cols { grid-template-columns: 1fr; text-align: center; }
  .wg-selling-grid.home-blog-grid { grid-template-columns: repeat(4, 1fr) !important; }
  .wg-press-grid { grid-template-columns: 1fr; }
  .article-with-sidebar .blog-layout { grid-template-columns: 1fr !important; }
}
@media (max-width: 900px) {
  .home-blog-grid { grid-template-columns: repeat(3, 1fr) !important; }
  .wg-arrivals-inner { grid-template-columns: 1fr; }
  .wg-arrivals-carousel { --wg-arrival-cols: 2; --wg-arrival-card-w: 180px; }
}
@media (max-width: 520px) {
  .wg-arrivals-carousel { --wg-arrival-cols: 1; --wg-arrival-card-w: min(280px, 78vw); }
}
@media (max-width: 600px) {
  .home-blog-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .wg-testimonial-box { padding: 40px 48px; }
  .wg-hero-center h1 { font-size: 1.8rem; }
  .wg-hero-contact { font-size: 18px; margin-top: 36px; }
  .wg-hero-contact-line { white-space: normal; }
}

/* Mega menu nav — ROLEX / LUXURY WATCHES */
.site-header { overflow: visible !important; }
.main-nav { align-items: center; gap: 8px 20px !important; overflow: visible; }
.nav-item--mega { position: relative; overflow: visible; }
.nav-item--mega > .nav-link { display: inline-flex; align-items: center; gap: 4px; }
.nav-item--mega > .nav-link::after {
  content: "";
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: .6; margin-top: 2px;
}
.nav-mega-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 480px;
  width: max-content;
  max-width: min(92vw, 860px);
  padding: 10px 0 0;
  background: transparent;
  border: none;
  box-shadow: none;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, visibility .18s ease;
}
.nav-item--mega:last-of-type .nav-mega-panel {
  left: auto;
  right: 0;
  transform: none;
}
.nav-mega-panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 10px;
}
.nav-item--mega.is-open .nav-mega-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nav-mega-empty {
  margin: 0;
  padding: 8px 0;
  font-size: 12px;
  color: var(--muted);
}
body:not(:has(.wg-hero)) .site-chrome { z-index: 100; position: relative; }
.nav-mega-inner {
  padding: 18px 20px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e5e5e5;
  box-shadow: 0 16px 40px rgba(0,0,0,.1);
  min-width: 460px;
  max-width: min(92vw, 860px);
}
.nav-mega-all {
  display: block;
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--brand) !important;
  text-transform: uppercase;
}
.nav-mega-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}
.nav-mega-grid--cols2 {
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 8px 24px;
  max-height: none;
  overflow: visible;
}
.nav-mega-grid a {
  display: block;
  padding: 8px 10px;
  border-radius: 6px;
  color: #111 !important;
  font-size: 12px;
  line-height: 1.4;
  text-decoration: none;
  white-space: normal;
  word-break: break-word;
}
.nav-mega-grid a:hover { background: #f5f5f5; color: #111 !important; }
@media (max-width: 1100px) {
  .nav-item--mega > .nav-link::after { display: none; }
  .nav-mega-panel {
    position: static; transform: none;
    opacity: 1; visibility: visible; pointer-events: auto;
    padding: 8px 0 0 12px; max-width: none;
  }
  .nav-mega-inner {
    box-shadow: none; border: 0; background: transparent;
    padding: 0;
  }
  .nav-mega-grid--cols2 { grid-template-columns: 1fr; }
}

/* Blog sidebar: light rectangular cards (override future-theme ovals) */
.blog-sidebar .blog-widget {
  background: #fff !important;
  border: 1px solid #e5e5e5 !important;
  border-radius: 8px !important;
  backdrop-filter: none !important;
  color: #111 !important;
}
.blog-sidebar .blog-widget h3 {
  color: #111 !important;
}
.blog-sidebar .blog-about p,
.blog-sidebar .blog-stats span,
.blog-sidebar .blog-stats strong,
.blog-sidebar .blog-popular li time,
.blog-sidebar .blog-popular a {
  color: #111 !important;
}
.blog-sidebar .blog-avatar {
  background: #111 !important;
  color: #fff !important;
}

/* Blog article meta & excerpt: black text for readability */
.article-meta,
.article-meta time,
.article-meta span {
  color: #111 !important;
}
.article-header .eyebrow {
  color: #111 !important;
}
.prose .begin-single-meta,
.prose .begin-single-meta-c,
.prose .single-meta-area,
.prose .meta-date,
.prose .meta-date time,
.prose .meta-cat,
.prose .views,
.prose .word-time,
.prose .abstract,
.prose .abstract fieldset,
.prose .abstract legend {
  color: #111 !important;
}
.prose .meta-cat a,
.prose .begin-single-meta a {
  color: #111 !important;
}

/* Private Concierge contact block (articles + products) */
.concierge-shell {
  margin: 0 auto 28px;
}
.article-contact {
  margin: 40px 0 12px;
}
.article-contact-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid #2a2620;
  background:
    radial-gradient(900px 280px at 8% 0%, rgba(196, 165, 116, .18), transparent 55%),
    radial-gradient(700px 240px at 100% 100%, rgba(140, 115, 80, .12), transparent 50%),
    linear-gradient(165deg, #1a1815 0%, #12110f 48%, #0e0d0c 100%);
  color: #f3efe6;
  box-shadow: 0 18px 48px rgba(18, 16, 12, .18);
}
.article-contact-frame::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, transparent, #c4a574 20%, #e8d5a8 50%, #c4a574 80%, transparent);
}
.article-contact-head {
  padding: 28px 28px 8px;
  text-align: center;
}
.article-contact-kicker {
  margin: 0 0 12px;
  color: #c4a574;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
}
.article-contact-lead {
  margin: 0 auto;
  max-width: 42rem;
  color: #f7f2e8;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: .01em;
}
.article-contact-body {
  display: grid;
  grid-template-columns: minmax(150px, 190px) 1fr minmax(150px, 190px);
  gap: 22px 28px;
  align-items: stretch;
  padding: 22px 28px 28px;
}
.article-contact-channel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 16px 14px 14px;
  border: 1px solid rgba(196, 165, 116, .28);
  background: rgba(255, 255, 255, .03);
  text-decoration: none;
  color: inherit;
  transition: border-color .25s var(--ease), transform .25s var(--ease), background .25s var(--ease);
}
a.article-contact-channel:hover {
  border-color: rgba(196, 165, 116, .7);
  background: rgba(255, 255, 255, .06);
  transform: translateY(-2px);
}
.article-contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.article-contact-badge--wx {
  background: #07c160;
}
.article-contact-qrwrap {
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 168px;
  aspect-ratio: 1;
  padding: 10px;
  background: #fff;
}
.article-contact-qrwrap--dark {
  background: #0a0a0a;
}
.article-contact-qrwrap img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
}
.article-contact-id {
  color: #f3efe6;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  text-align: center;
  word-break: break-all;
}
.article-contact-sub {
  color: rgba(243, 239, 230, .55);
  font-size: 11px;
  text-align: center;
  line-height: 1.4;
}
.article-contact-mid {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 8px 6px;
  text-align: center;
}
.article-contact-mid-title {
  margin: 0 0 16px;
  color: #c4a574;
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: .04em;
}
.article-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.article-contact-list li {
  display: grid;
  gap: 2px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(196, 165, 116, .18);
}
.article-contact-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.article-contact-list span {
  color: rgba(243, 239, 230, .55);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.article-contact-list a,
.article-contact-wx-link {
  color: #fff;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: .01em;
  text-decoration: none;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.article-contact-list a:hover,
.article-contact-wx-link:hover {
  color: #e8d5a8;
}
.article-contact-hint {
  margin: 18px 0 0;
  color: rgba(243, 239, 230, .58);
  font-size: 13px;
  letter-spacing: .04em;
}
@media (max-width: 900px) {
  .article-contact-body {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 18px 18px 22px;
  }
  .article-contact-head { padding: 24px 18px 6px; }
  .article-contact-mid {
    grid-column: 1 / -1;
    order: -1;
    padding: 0 0 14px;
    border-bottom: 1px solid rgba(196, 165, 116, .2);
  }
}
@media (max-width: 560px) {
  .article-contact-body { grid-template-columns: 1fr; }
  .article-contact-qrwrap { max-width: 200px; }
}

/* Readable black body text site-wide (light surfaces + dark theme flag = gray-on-white bug) */
html[data-theme="dark"] .prose,
html[data-theme="dark"] .prose p,
html[data-theme="dark"] .prose li,
html[data-theme="dark"] .prose div,
html[data-theme="dark"] .prose span,
html[data-theme="dark"] .prose h1,
html[data-theme="dark"] .prose h2,
html[data-theme="dark"] .prose h3,
html[data-theme="dark"] .prose h4,
html[data-theme="dark"] .prose td,
html[data-theme="dark"] .prose th,
html[data-theme="dark"] .prose strong,
html[data-theme="dark"] .prose b,
.prose,
.prose p,
.prose li,
.prose div,
.prose span,
.prose h1,
.prose h2,
.prose h3,
.prose h4,
.prose td,
.prose th,
.prose strong,
.prose b {
  color: #111 !important;
  font-weight: 400 !important;
}
.prose a,
.product-copy a {
  color: var(--brand) !important;
  font-weight: 400 !important;
}

.product-copy,
.product-copy *,
#local-product-body,
#local-product-body *,
.product-description-block,
.product-description-block p,
.product-description-block summary,
.product-policy-note,
.product-policy-note p,
.detail-notes,
.detail-notes p,
.detail-notes summary,
.product-page .product-meta-lines,
.product-page .product-meta-lines p,
.product-page .option-block,
.product-page .option-block span,
.product-page .product-price-note,
.page-shell,
.page-shell p,
.blog-browser .prose *,
.article-body,
.article-body *,
.post-content,
.post-content *,
.entry-content,
.entry-content * {
  color: #111 !important;
  font-weight: 400 !important;
}
.product-copy a,
#local-product-body a,
.article-body a,
.post-content a,
.entry-content a {
  color: var(--brand) !important;
}

/* Customer Reviews page */
.wg-reviews-page {
  padding: 48px 0 72px;
  background: #f7f5f1;
  min-height: 60vh;
}
.wg-reviews-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
  padding: 0 24px;
}
.wg-reviews-header h1 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -.01em;
  color: #111;
}
.wg-reviews-header p {
  margin: 0;
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}
.wg-reviews-toolbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
  padding: 0 24px;
}
.wg-reviews-count {
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #888;
}
.wg-reviews-grid {
  column-count: 5;
  column-gap: 16px;
  padding: 0 24px 40px;
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .wg-reviews-grid { column-count: 4; }
}
@media (max-width: 980px) {
  .wg-reviews-grid { column-count: 3; }
}
@media (max-width: 720px) {
  .wg-reviews-grid { column-count: 2; }
}
@media (max-width: 480px) {
  .wg-reviews-grid { column-count: 1; padding: 0 12px 32px; }
}
.wg-reviews-card {
  display: inline-block;
  width: 100%;
  break-inside: avoid;
  margin: 0 0 16px;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
  transition: transform .2s ease, box-shadow .2s ease;
  height: auto;
}
.wg-reviews-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .1);
}
.wg-reviews-photo {
  display: block;
  overflow: hidden;
  background: #f4f4f4;
  border: 0;
  padding: 0;
  margin: 0;
  width: 100%;
  cursor: zoom-in;
  position: relative;
}
.wg-reviews-photo::before,
.wg-reviews-photo::after {
  display: none !important;
  content: none !important;
}
.wg-reviews-photo img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
  object-fit: contain;
}
.wg-reviews-photo--empty {
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
  cursor: default;
}
.wg-reviews-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, .88);
  cursor: zoom-out;
}
.wg-reviews-lightbox[hidden] {
  display: none;
}
.wg-reviews-lightbox-img {
  max-width: min(96vw, 1100px);
  max-height: 92vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .45);
  cursor: default;
}
.wg-reviews-lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  opacity: .85;
  transition: opacity .2s ease;
}
.wg-reviews-lightbox-close:hover {
  opacity: 1;
}
.wg-reviews-body {
  padding: 16px 18px 18px;
  display: block;
  height: auto;
}
.wg-reviews-body > * + * {
  margin-top: 10px;
}
.wg-reviews-author {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.wg-reviews-author-id {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  color: #111;
}
.wg-reviews-verified {
  font-size: 12px;
  font-style: italic;
  letter-spacing: 0;
  text-transform: none;
  color: #1f8f4e;
  background: transparent;
  padding: 0;
}
.wg-reviews-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.wg-reviews-stars {
  display: inline-flex;
  gap: 2px;
  line-height: 1;
}
.wg-reviews-star {
  color: #ddd;
  font-size: 14px;
}
.wg-reviews-star.is-filled {
  color: #e8a020;
}
.wg-reviews-date {
  font-size: 12px;
  color: #888;
  white-space: nowrap;
}
.wg-reviews-product {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  color: #1d4ed8;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.wg-reviews-product:hover { text-decoration: underline; }
.wg-reviews-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: #444;
}
.wg-reviews-view-btn {
  display: block;
  margin-top: auto;
  text-align: center;
  text-decoration: none;
  background: #2563eb;
  color: #fff !important;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 4px;
  transition: background .2s ease;
}
.wg-reviews-view-btn:hover { background: #1d4ed8; }
.wg-reviews-actions {
  text-align: center;
  margin-top: 36px;
  padding: 0 24px;
}
.wg-reviews-load {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 12px 28px;
  border: 1px solid #111;
  background: transparent;
  color: #111;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}
.wg-reviews-load:hover {
  background: #111;
  color: #fff;
}
.wg-reviews-empty,
.wg-reviews-error {
  text-align: center;
  padding: 48px 24px;
  color: #666;
  max-width: 520px;
  margin: 0 auto;
}
.wg-reviews-error {
  color: #b42318;
}
html[data-theme="dark"] .wg-reviews-page {
  background: #0f0f0f;
}
html[data-theme="dark"] .wg-reviews-header h1,
html[data-theme="dark"] .wg-reviews-author-id {
  color: #f5f5f5;
}
html[data-theme="dark"] .wg-reviews-header p,
html[data-theme="dark"] .wg-reviews-count,
html[data-theme="dark"] .wg-reviews-date,
html[data-theme="dark"] .wg-reviews-product,
html[data-theme="dark"] .wg-reviews-empty {
  color: rgba(255, 255, 255, .65);
}
html[data-theme="dark"] .wg-reviews-card {
  background: #1a1a1a;
  border-color: rgba(255, 255, 255, .1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .35);
}
html[data-theme="dark"] .wg-reviews-load {
  border-color: #fff;
  color: #fff;
}
html[data-theme="dark"] .wg-reviews-load:hover {
  background: #fff;
  color: #111;
}


/* HIDE_SHOP_LIST_TITLE */
body:has([data-shop-page]) .shop-header,body:has([data-shop-page]) main > h1 {display:none!important;margin:0!important;padding:0!important;height:0!important;overflow:hidden!important}
