/* ═══════════════════════════════════════════════════════════
   Product Page — page-specific styles
   ═══════════════════════════════════════════════════════════ */

/* Hero image fallback gradient (if image fails to load) */
.product-hero-img.img-fallback-usa {
  background: linear-gradient(135deg, #b91c1c 0%, #7c1d1d 60%, #2a0a0a 100%);
  min-height: 280px;
}
.product-hero-img.img-fallback-usa::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,200,150,0.20), transparent 60%),
              radial-gradient(circle at 70% 70%, rgba(255,255,255,0.05), transparent 50%);
}

/* Trustpilot stars (Trustpilot green) */
.trustpilot-stars { color: hsl(152 68% 36%); }

/* ── Plan select grid — List Row Style ── */
.pg-list-wrap {
  background: #ffffff;
  border: 1.5px solid hsl(var(--gs-border));
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 4px;
}
.plan-card-pick {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  background: #ffffff;
  border: none;
  border-radius: 0;
  border-left: 3px solid transparent;
  border-bottom: 1px solid hsl(var(--gs-border));
  padding: 15px 18px;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s;
}
.plan-card-pick:last-child { border-bottom: none; }
.plan-card-pick:hover { background: #f8fafc; }
.plan-card-pick.selected {
  background: hsl(var(--gs-gradient-start)/0.05);
  border-left-color: hsl(var(--gs-gradient-start));
}
.pg-radio {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid hsl(var(--gs-border));
  background: hsl(var(--gs-card));
  position: relative;
  transition: border-color 0.15s;
}
.plan-card-pick.selected .pg-radio { border-color: hsl(var(--gs-gradient-start)); }
.plan-card-pick.selected .pg-radio::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 9px; height: 9px;
  border-radius: 50%;
  background: hsl(var(--gs-gradient-start));
}
.pg-info { flex: 1; display: flex; flex-direction: row; align-items: center; gap: 8px; flex-wrap: wrap; }
.pg-data { font-size: 15px; font-weight: 700; color: hsl(var(--gs-foreground)); line-height: 1.2; }
.pg-dot { font-size: 9px; color: #cbd5e1; font-weight: 400; }
.pg-days { font-size: 9px; color: hsl(var(--gs-muted-foreground)); font-weight: 400; }
.pg-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.pg-popular {
  display: inline-block;
  background: hsl(var(--gs-gradient-start)/0.10);
  color: hsl(var(--gs-gradient-start));
  border: 1px solid hsl(var(--gs-gradient-start)/0.25);
  border-radius: 100px;
  font-size: 10px; font-weight: 700;
  padding: 2px 9px;
}
.pg-price { font-size: 15px; font-weight: 700; color: hsl(var(--gs-gradient-start)); }

/* ── Fast & Reliable Connection — Minimal Tiles ── */
.gs-tiles-section {
  background: #ffffff;
  border: 1.5px solid hsl(var(--gs-border));
  border-radius: 18px;
  padding: 1.5rem;
}
.gs-tiles-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 0.75rem; margin-bottom: 1.25rem; flex-wrap: nowrap;
}
.gs-tiles-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 800; color: hsl(var(--gs-foreground)); margin: 0;
}
.gs-tiles-sub { font-size: 13px; color: hsl(var(--gs-muted-foreground)); margin: 3px 0 0; }
.gs-tiles-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; font-weight: 700; color: hsl(var(--gs-gradient-start));
  background: hsl(var(--gs-gradient-start)/0.07);
  border: 1.5px solid hsl(var(--gs-gradient-start)/0.20);
  border-radius: 8px; padding: 5px 11px; white-space: nowrap; flex-shrink: 0;
}
.gs-tiles-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: hsl(var(--gs-gradient-start)); display: inline-block;
  animation: gs-tiles-pulse 2s infinite; flex-shrink: 0;
}
@keyframes gs-tiles-pulse { 0%,100%{opacity:1} 50%{opacity:0.30} }
.gs-tiles-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem; margin-bottom: 1.25rem;
}
.gs-tile {
  background: hsl(var(--gs-secondary)/0.4);
  border: 1.5px solid hsl(var(--gs-border));
  border-radius: 14px; padding: 1rem 0.5rem;
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  transition: border-color 0.15s, background 0.15s, transform 0.15s;
  cursor: default;
}
.gs-tile:hover { border-color: hsl(var(--gs-gradient-start)); background: hsl(var(--gs-card)); transform: translateY(-2px); }
.gs-tile-icon {
  width: 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.12);
}
.gs-tile-icon i { font-size: 1.3rem; color: #fff; }
.gs-tile-name { font-size: 12px; font-weight: 700; color: hsl(var(--gs-foreground)); text-align: center; line-height: 1.2; }
.gs-tile-cat { font-size: 10px; color: hsl(var(--gs-muted-foreground)); font-weight: 500; }
.gs-tiles-stats {
  display: flex; gap: 0;
  background: hsl(var(--gs-secondary)/0.5);
  border: 1.5px solid hsl(var(--gs-border));
  border-radius: 12px; overflow: hidden;
}
.gs-tiles-stat { flex: 1; padding: 0.7rem 0.5rem; text-align: center; }
.gs-tiles-stat + .gs-tiles-stat { border-left: 1.5px solid hsl(var(--gs-border)); }
.gs-tiles-stat-val { font-size: 0.95rem; font-weight: 800; color: hsl(var(--gs-foreground)); line-height: 1; }
.gs-tiles-stat-lbl { font-size: 10px; color: hsl(var(--gs-muted-foreground)); margin-top: 2px; }

/* ── Compatibility Modal ── */
.cm-modal { border-radius: 20px !important; overflow: hidden; }
.cm-header {
  display: flex; align-items: center; gap: 12px; padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, hsl(var(--gs-gradient-start)), hsl(var(--gs-gradient-end)));
}
.cm-header-icon {
  width: 40px; height: 40px; border-radius: 11px;
  background: rgba(255,255,255,0.20); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cm-header-icon i { font-size: 1.2rem; color: #fff; }
.cm-header-text { flex: 1; }
.cm-header-title { font-weight: 800; font-size: 1rem; color: #fff; line-height: 1.2; }
.cm-header-sub { font-size: 11.5px; color: rgba(255,255,255,0.75); margin-top: 2px; }
.cm-close {
  background: rgba(255,255,255,0.15); border: none; border-radius: 8px;
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  color: #fff; flex-shrink: 0; transition: background 0.15s;
}
.cm-close:hover { background: rgba(255,255,255,0.25); }
.cm-close i { font-size: .85rem; }
.cm-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0; }
.cm-step {
  display: flex; gap: 1rem; padding-bottom: 1.25rem;
  border-left: 2px solid hsl(var(--gs-border)); margin-left: 14px; padding-left: 1.25rem;
  position: relative;
}
.cm-step-last { border-left-color: transparent; padding-bottom: 0; }
.cm-step-num {
  position: absolute; left: -15px; top: 0;
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, hsl(var(--gs-gradient-start)), hsl(var(--gs-gradient-end)));
  color: #fff; font-size: 12px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px hsl(var(--gs-gradient-start)/0.30);
}
.cm-step-content { flex: 1; padding-top: 3px; }
.cm-step-title { font-size: 14px; font-weight: 700; color: hsl(var(--gs-foreground)); margin-bottom: 4px; }
.cm-step-desc { font-size: 12.5px; color: hsl(var(--gs-muted-foreground)); margin-bottom: 0; }
.cm-step-hint { font-size: 11.5px; color: hsl(var(--gs-muted-foreground)); margin-top: 8px; }
.cm-code-btn {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; background: hsl(var(--gs-secondary)/0.6);
  border: 2px dashed hsl(var(--gs-gradient-start)/0.35);
  border-radius: 12px; padding: 10px 14px; cursor: pointer;
  transition: background 0.15s, border-color 0.15s; margin-top: 8px;
}
.cm-code-btn:hover { background: hsl(var(--gs-gradient-start)/0.06); border-color: hsl(var(--gs-gradient-start)/0.6); }
.cm-code-text { font-family: monospace; font-size: 1.6rem; font-weight: 800; letter-spacing: 0.15em; color: hsl(var(--gs-foreground)); }
.cm-copy-lbl { font-size: 11.5px; font-weight: 600; color: hsl(var(--gs-gradient-start)); display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
.cm-results { display: flex; flex-direction: column; gap: 8px; margin-top: 10px; }
.cm-result { display: flex; align-items: flex-start; gap: 10px; padding: 10px 12px; border-radius: 10px; border: 1.5px solid; }
.cm-yes { background: #f0fdf4; border-color: #bbf7d0; }
.cm-yes i { color: #16a34a; font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.cm-no { background: #fff5f5; border-color: #fecaca; }
.cm-no i { color: #dc2626; font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.cm-result-title { font-size: 12.5px; font-weight: 700; color: hsl(var(--gs-foreground)); }
.cm-result-desc { font-size: 11.5px; color: hsl(var(--gs-muted-foreground)); margin-top: 1px; }
.cm-brands {
  display: flex; align-items: center; flex-wrap: nowrap; gap: 6px;
  padding: 12px 0; border-top: 1px solid hsl(var(--gs-border)); margin-top: 1.25rem;
  overflow: hidden;
}
.cm-brands-lbl { font-size: 11px; font-weight: 600; color: hsl(var(--gs-muted-foreground)); white-space: nowrap; }
.cm-brand {
  display: inline-flex; align-items: center; gap: 4px; white-space: nowrap;
  background: hsl(var(--gs-secondary)/0.7); border: 1px solid hsl(var(--gs-border));
  border-radius: 100px; padding: 3px 10px; font-size: 11px; font-weight: 600; color: hsl(var(--gs-foreground));
}
.cm-brand i { font-size: .85rem; }
.cm-footer-link {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  color: hsl(var(--gs-gradient-start)); font-size: 13px; font-weight: 700;
  text-decoration: none; padding-top: 12px; transition: gap 0.15s;
}
.cm-footer-link:hover { gap: 10px; color: hsl(var(--gs-gradient-start)); }

/* ── Info tabs (Key Features / Description / Rules) ── */
.info-tab-btn {
  background: transparent;
  border: 0;
  color: hsl(var(--gs-muted-foreground));
  transition: all .2s ease;
}
.info-tab-btn.active {
  background: linear-gradient(135deg, hsl(var(--gs-gradient-start)), hsl(var(--gs-gradient-end)));
  color: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.10);
}

/* ── Quantity buttons ── */
.qty-btn {
  width: 32px; height: 32px;
  border-radius: 0.5rem;
  border: 1px solid hsl(var(--gs-border));
  background: hsl(var(--gs-background));
  color: hsl(var(--gs-foreground));
  display: flex; align-items: center; justify-content: center;
  transition: background .15s ease;
}
.qty-btn:hover:not(:disabled) { background: hsl(var(--gs-secondary)); }
.qty-btn:disabled { opacity: .4; cursor: not-allowed; }

/* ── Steps (How It Works) ── */
.step-card {
  background: hsl(var(--gs-card));
  border: 1px solid hsl(var(--gs-border));
  border-radius: 1rem;
  padding: 1.5rem;
}
.step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(var(--gs-gradient-start)), hsl(var(--gs-gradient-end)));
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.25rem;
  margin-bottom: 0.75rem;
  box-shadow: 0 4px 12px hsl(var(--gs-primary)/0.25);
}

/* ── FAQ category pills ── */
.faq-cat {
  padding: 8px 16px !important;
  border-radius: 999px;
  background: hsl(var(--gs-card));
  border: 1px solid hsl(var(--gs-border));
  color: hsl(var(--gs-muted-foreground));
  font-weight: 500;
  font-size: 13px;
  transition: all .15s ease;
}
.faq-cat:hover { color: hsl(var(--gs-foreground)); }
.faq-cat.active {
  background: linear-gradient(135deg, hsl(var(--gs-gradient-start)), hsl(var(--gs-gradient-end)));
  color: #fff;
  border-color: transparent;
}

/* ── Article TOC list ── */
#article-toc li {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
#article-toc .toc-num {
  font-size: 12px;
  font-weight: 700;
  color: hsl(var(--gs-primary));
  font-family: 'JetBrains Mono', monospace;
}
#article-toc .toc-label { font-size: 14px; color: hsl(var(--gs-muted-foreground)); }

/* ── Article body sections ── */
.article-section h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: hsl(var(--gs-foreground));
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  margin-bottom: 1rem;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}
.article-section h3 .section-num {
  color: hsl(var(--gs-primary)/0.5);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875rem;
}
.article-section .article-body {
  padding-left: 2rem;
  border-left: 2px solid hsl(var(--gs-primary)/0.15);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.article-section .article-body p {
  color: hsl(var(--gs-muted-foreground));
  line-height: 1.85;
  font-size: 15px;
  margin: 0;
}

/* ── Comparison rows ── */
.cmp-row {
  font-size: 14px;
  border-bottom: 1px solid hsl(var(--gs-border));
}
.cmp-row:last-child { border-bottom: 0; }
.cmp-row > div { padding: 14px 12px; }
.cmp-row .cmp-name { text-align: left; font-weight: 500; color: hsl(var(--gs-foreground)); }
.cmp-row .cmp-us   { background: hsl(var(--gs-primary)/0.05); text-align: center; }
.cmp-row .cmp-alt  { background: hsl(var(--gs-secondary)/0.30); text-align: center; }
.cmp-yes { color: hsl(var(--gs-success)); }
.cmp-no  { color: hsl(var(--gs-destructive)/0.40); }

/* ── Pricing rows ── */
.price-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  border-bottom: 1px solid hsl(var(--gs-border));
  font-size: 14px;
}
.price-row:last-child { border-bottom: 0; }
.price-row.popular { background: hsl(var(--gs-primary)/0.05); }
.price-row > div { padding: 14px 12px; }

/* ── Mobile sticky CTA spacing (avoid overlapping content) ── */
@media (max-width: 767.98px) {
  body { padding-bottom: 80px; }
  .container { padding-left: 1.75rem !important; padding-right: 1.75rem !important; }
}

/* ── Advantages grid: force heading size; remove outer right border ── */
#adv-grid h3 { font-size: 0.9375rem !important; }
@media (min-width: 992px) {
  #adv-grid > div:nth-child(3n) > div { border-right: none !important; }
}
@media (min-width: 576px) and (max-width: 991.98px) {
  #adv-grid > div:nth-child(2n) > div { border-right: none !important; }
}
@media (max-width: 575.98px) {
  #adv-grid > div > div { border-right: none !important; }
}
