/* =========================================================
   Shared Product Card Styles
   Used by: homepage, category, featured-brands
   ========================================================= */

/* =========================================================
   Product Card
   ========================================================= */
.product-card {
  background: #ffffff;
  color: #111827;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.03);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column;
  padding: 0; cursor: pointer; overflow: hidden;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  position: relative;
  box-sizing: border-box;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  border-color: #d1d5db;
}

/* Image wrapper — relative container for score pill overlay */
.product-image-wrap {
  position: relative;
  flex-shrink: 0;
}

.product-image {
  width: 100%; height: 180px; object-fit: contain;
  display: block;
  background: #fff;
  border: none;
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  box-shadow: none;
  padding: 12px; transition: none;
}

/* Score pill — overlaid on bottom-left of image */
.product-score-pill {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  z-index: 5;
}
.score-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.score-pill-num {
  font-weight: 800;
  font-size: 14px;
}
.score-pill-sep {
  opacity: 0.5;
  font-size: 14px;
}
.score-pill-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3px;
  opacity: 0.9;
}

/* ---- Top-cohort highlight (tier reconciliation 2026-06-20) ----
   Great/Excellent now mean "mission + stacked certs" and are deliberately rare,
   so they get a visible lift above the (large) likely_good band. */
.product-score-pill--likely_great {
  background: rgba(20, 60, 30, 0.88);
  box-shadow: 0 0 0 1.5px rgba(67, 160, 71, 0.9), 0 2px 8px rgba(0,0,0,0.35);
}
.product-score-pill--likely_excellent {
  background: linear-gradient(100deg, rgba(0,80,45,0.92), rgba(0,40,25,0.92));
  box-shadow: 0 0 0 1.5px rgba(0, 230, 118, 0.95), 0 0 14px rgba(0, 230, 118, 0.45);
}
.product-score-pill--likely_excellent .score-pill-star {
  font-size: 11px;
  color: #ffd54f;
  margin-left: 1px;
  line-height: 1;
  text-shadow: 0 0 6px rgba(255, 213, 79, 0.7);
}

.product-info {
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 6px;
  background: transparent; padding: 12px 14px 8px;
  box-sizing: border-box; flex: 1; min-width: 0;
}

/* Legacy classes kept for backwards compat but hidden */
.product-top { display: contents; }
.product-score-price-row { display: contents; }
.product-score { display: none; }

/* Score column: raw esgScore wheel + qualitative tier badge.
   Replaces the previous dual percentile-wheel + raw-wheel layout. */
.product-score-dual {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}
.product-score-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.product-score-group-label {
  font-size: 8px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  text-align: center;
  line-height: 1;
}

/* Unrated state: "?" wheel that visually mirrors the score wheel but
   communicates "we don't have enough data to score this brand". */
.product-score-unrated-wheel {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px dashed #c4c4c4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #9e9e9e;
  background: #f5f5f5;
  box-sizing: border-box;
}

/* Tier badge — sized to roughly match the score wheel (40px tall) but
   wide enough to fit the longest single-word label ("AVERAGE" / "UNRATED")
   on one line. Two-word labels like "Above Avg" wrap naturally at the
   space. Five qualitative tiers + unrated. Cutoffs grounded in the supplier
   score distribution; see `extension/utils/tier.js`. */
.product-tier-badge {
  min-width: 62px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  padding: 0 6px;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.1;
  font-size: 10px;
}
.product-tier-badge-label {
  display: block;
  white-space: normal;
  word-break: normal;
  overflow-wrap: normal;
}
.product-tier-badge--great   { background: #2e7d32; }
.product-tier-badge--good    { background: #7cb342; }
.product-tier-badge--above   { background: #c0ca33; color: #2a3000; }
.product-tier-badge--average { background: #f9a825; color: #3a2a00; }
.product-tier-badge--below   { background: #e53935; }
.product-tier-badge--unrated {
  background: #f5f5f5;
  color: #757575;
  border: 2px dashed #c4c4c4;
}

/* Price + Stars inline row */
.product-price-stars-row {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.product-price {
  display: inline-flex; align-items: center;
  flex-wrap: wrap; gap: 0 4px;
  font-weight: 700; font-variant-numeric: tabular-nums;
  color: #111; font-size: 16px;
}
.price-timestamp {
  display: block;
  width: 100%;
  font-size: 9px;
  font-weight: 400;
  color: #999;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-top: 1px;
}

/* Stars */
.product-stars { display: flex; align-items: center; }
.product-stars .rating { display: inline-flex; align-items: center; gap: 4px; color: #666; }
.product-stars .stars { display: inline-grid; grid-auto-flow: column; gap: 2px; }
.product-stars .star { width: 14px; height: 14px; }
.product-stars .star path { stroke: #f5a623; stroke-width: 1; fill: none; }
.product-stars .star--empty path { fill: rgba(0,0,0,0.10); stroke: rgba(0,0,0,0.10); }
.product-stars .star--full path,
.product-stars .star--half path { fill: #f5a623; stroke: #f5a623; }
.product-stars .rating-count { font-size: 11px; color: #888; }

/* Product attribute tags — horizontal scroll with arrow */
.product-tags-wrap {
  position: relative;
  width: 100%;
  margin-top: 4px;
}
.product-tags-grouped {
  display: flex;
  flex-wrap: nowrap;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-right: 20px;
}
.product-tags-grouped::-webkit-scrollbar { display: none; }
.product-tags-arrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0,0,0,0.06);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #666;
  transition: background 0.15s ease;
  padding: 0;
  flex-shrink: 0;
  z-index: 2;
}
.product-tags-arrow:hover {
  background: rgba(0,0,0,0.12);
  color: #333;
}
.product-tags-arrow[hidden] { display: none; }
.product-tag {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(0,0,0,0.04);
  color: #333;
  line-height: 1.2;
  white-space: nowrap;
  flex-shrink: 0;
}
.product-tag-icon {
  font-size: 10px;
  line-height: 1;
}
/* Materials — neutral gray-green */
.product-tag--material {
  background: #edf5f0;
  border-color: rgba(11,122,79,0.25);
  color: #0b5e3f;
}
/* Physical features — blue */
.product-tag--feature {
  background: #eef3fa;
  border-color: rgba(23,105,170,0.25);
  color: #1a5276;
}
/* Demographics — warm brown */
.product-tag--demographic {
  background: #f5f0eb;
  border-color: rgba(139,109,71,0.25);
  color: #5c4a2e;
}
/* Origin — purple */
.product-tag--origin {
  background: #f0eef5;
  border-color: rgba(93,71,139,0.25);
  color: #3d2e5c;
}
/* Health & safety — green with emphasis (what's NOT in the product) */
.product-tag--health {
  background: #e8f5e9;
  border-color: rgba(46,125,50,0.35);
  color: #1b5e20;
}
.product-tag--health .product-tag-icon { color: #2e7d32; }
/* Certifications — gold/amber (third-party verified trust) */
.product-tag--certification {
  background: #fff8e1;
  border-color: rgba(183,143,28,0.35);
  color: #7b6a1c;
}
.product-tag--certification .product-tag-icon { color: #b78f1c; }
/* Sustainability — teal */
.product-tag--sustainability {
  background: #e0f2f1;
  border-color: rgba(0,121,107,0.3);
  color: #00695c;
}
.product-tag--sustainability .product-tag-icon { color: #00897b; }
/* Diet / food labels — warm orange */
.product-tag--diet {
  background: #fff3e0;
  border-color: rgba(183,110,28,0.3);
  color: #7b4b1c;
}
.product-tag--diet .product-tag-icon { color: #e65100; }

/* Brand value attributes — full-width row below image+info area */
.product-brand-values {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 4px;
}
.product-brand-values--below {
  padding: 0 2px;
  margin-top: 6px;
}
.brand-value-pill {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 6px;
  background: rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.12);
  color: #333;
  line-height: 1.3;
}
.brand-value-pill.brand-value--more {
  background: transparent;
  border: 1px dashed rgba(0,0,0,0.2);
  color: #666;
  font-style: italic;
}
.brand-value-icon {
  font-weight: 700;
  font-size: 11px;
  color: #e03a3a;
}
.brand-value-pill.brand-value--true .brand-value-icon {
  color: #2e7d32;
}

/* Values-match badge row — inline in footer */
.values-match-row {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}
.values-match-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  cursor: default;
}
.values-match-fraction {
  font-weight: 800;
  font-size: 11px;
}
.values-match-text {
  font-weight: 700;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
/* Amber for VALUES */
.values-match--amber {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fcd34d;
}
/* Blue for FEATURES */
.values-match--blue {
  background: #dbeafe;
  color: #1e40af;
  border: 1px solid #93c5fd;
}
/* Legacy color classes (kept for backwards compat) */
.values-match--high {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #86efac;
}
.values-match--mid {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fcd34d;
}
.values-match--low {
  background: #f3f4f6;
  color: #4b5563;
  border: 1px solid #d1d5db;
}

/* Product title — now first in info, no border */
.product-title {
  position: relative; margin: 0 0 2px; padding: 0;
  font-size: 13px; font-weight: 600; text-align: left; line-height: 1.4;
  border: none;
}
.product-title::before { display: none; }
.product-title a {
  color: #111827; text-decoration: none;
  display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; text-overflow: ellipsis;
}
.product-title a:hover { color: #072908; text-decoration: underline; }

/* =========================================================
   Card Footer (values/features badges + source button)
   ========================================================= */
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 14px 10px;
  border-top: 1px solid #e5e7eb;
  margin-top: auto;
}

/* Source button (Amazon, Target, Walmart) — replaces old absolute badge */
.product-source-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
  margin-left: auto;
  flex-shrink: 0;
}
.product-source-btn--amazon {
  background: #072908;
  color: #fff;
}
.product-source-btn--amazon:hover {
  background: #0b4f2d;
}
/* Affiliate partners (Clarks, Grey State, Axiology…) — match the Amazon
   button so every buy CTA reads the same, regardless of retailer. */
.product-source-btn--affiliate {
  background: #072908;
  color: #fff;
}
.product-source-btn--affiliate:hover {
  background: #0b4f2d;
}
.product-source-btn--target {
  background: #cc0000;
  color: #fff;
}
.product-source-btn--target:hover {
  background: #a30000;
}
.product-source-btn--walmart {
  background: #0071ce;
  color: #fff;
}
.product-source-btn--walmart:hover {
  background: #005fa3;
}
.source-btn-arrow {
  font-size: 12px;
  line-height: 1;
}

/* =========================================================
   Source Badge (legacy — now replaced by footer button)
   ========================================================= */
.source-badge { display: none; }

/* Leif Verified badge — top-left of image (opposite heart) */
.certified-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 26px;
  height: 26px;
  z-index: 10;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.2));
}
.certified-card-badge svg {
  width: 100%;
  height: 100%;
}

/* Sponsored badge for sponsored product slots */
.sponsored-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, #fdf5e6 0%, #f9f0d9 100%);
  color: #5a5a5a;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 9px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(180, 148, 31, 0.15);
  letter-spacing: 0.3px;
  z-index: 10;
}

/* =========================================================
   Heart (Wishlist) Button on Product Cards
   ========================================================= */
.product-heart-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.product-heart-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 3px 12px rgba(0,0,0,0.18);
  background: #fff;
}
.product-heart-btn svg {
  width: 18px;
  height: 18px;
  stroke: #999;
  fill: none;
  stroke-width: 2;
  transition: stroke 0.2s ease, fill 0.3s ease, transform 0.3s ease;
}
.product-heart-btn.hearted svg {
  stroke: #e91e63;
  fill: #e91e63;
}

/* Heart pop animation */
@keyframes heartPop {
  0% { transform: scale(1); }
  30% { transform: scale(1.4); }
  60% { transform: scale(0.9); }
  100% { transform: scale(1); }
}
.product-heart-btn.heart-pop svg {
  animation: heartPop 0.4s ease;
}

/* =========================================================
   No Results Message
   ========================================================= */
.no-results-message {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px 20px;
}
.no-results-title {
  font-size: 28px;
  font-weight: 800;
  color: #000000;
  margin-bottom: 8px;
}
.no-results-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 20px;
}
.no-results-suggestions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.no-results-suggestion {
  font-size: 14px;
  font-weight: 500;
  color: #000000;
  background: #ffffff;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.12);
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.no-results-suggestion--all {
  font-weight: 700;
  margin-top: 4px;
}

/* =========================================================
   RESPONSIVE — Product Card breakpoints
   ========================================================= */

/* --- Tablet (max 900px) --- */
@media (max-width: 900px) {
  .product-card {
    max-width: none;
  }
  .product-image {
    height: 180px;
  }
  .product-title {
    font-size: 12px;
  }
  .product-price {
    font-size: 15px;
  }
}

/* --- Mobile (max 640px) --- */
@media (max-width: 640px) {
  .product-card {
    max-width: none;
    padding: 0;
    min-height: auto;
    border-radius: 10px;
  }
  .product-image {
    width: 100%;
    height: 140px;
    border-radius: 10px 10px 0 0;
    padding: 8px;
  }
  .product-info {
    min-width: 0;
    width: 100%;
    padding: 8px 10px 6px;
    gap: 4px;
  }
  .product-score-pill {
    bottom: 8px;
    left: 8px;
    padding: 3px 8px;
    font-size: 10px;
    gap: 3px;
  }
  .score-pill-num { font-size: 12px; }
  .score-pill-dot { width: 6px; height: 6px; }
  .score-pill-label { font-size: 8px; }
  .product-price { font-size: 13px; }
  .product-stars .star { width: 12px; height: 12px; }
  .product-stars .rating-count { font-size: 9px; }
  .product-tags-wrap {
    margin-top: 2px;
  }
  .product-tags-grouped {
    display: flex;
    gap: 3px;
    padding-right: 16px;
  }
  .product-tag {
    font-size: 8px;
    padding: 1px 5px;
  }
  .product-tags-arrow {
    width: 16px;
    height: 16px;
    font-size: 9px;
  }
  .product-title {
    font-size: 11px;
    line-height: 1.3;
  }
  .product-title a {
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  .product-card-footer {
    padding: 6px 10px 8px;
  }
  .product-source-btn {
    padding: 4px 10px;
    font-size: 10px;
  }
  .values-match-badge {
    font-size: 9px;
    padding: 2px 6px;
  }
  .values-match-fraction { font-size: 9px; }
  .values-match-text { font-size: 7px; }

  .sponsored-badge {
    font-size: 9px;
    padding: 3px 7px;
    top: 8px;
    left: 8px;
  }
  .certified-card-badge {
    top: 6px;
    left: 6px;
    width: 20px;
    height: 20px;
  }
  .product-heart-btn {
    width: 26px;
    height: 26px;
    top: 6px;
    right: 6px;
  }
  .product-heart-btn svg {
    width: 13px;
    height: 13px;
  }
}

/* =========================================================
   Skeleton Loading Cards
   ========================================================= */
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

.skeleton-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  padding: 16px;
  box-sizing: border-box;
}

.skeleton-pulse {
  background: linear-gradient(90deg, #eee 25%, #e0e0e0 37%, #eee 63%);
  background-size: 800px 100%;
  animation: shimmer 1.4s ease infinite;
  border-radius: 6px;
}

.skeleton-card .skeleton-top {
  display: flex;
  gap: 14px;
  padding-bottom: 4px;
}

.skeleton-card .skeleton-image {
  width: 180px;
  height: 180px;
  border-radius: 8px;
  flex-shrink: 0;
}

.skeleton-card .skeleton-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 4px 0;
}

.skeleton-card .skeleton-score {
  width: 46px;
  height: 46px;
  border-radius: 50%;
}

.skeleton-card .skeleton-price {
  width: 60px;
  height: 22px;
}

.skeleton-card .skeleton-stars {
  width: 120px;
  height: 14px;
}

.skeleton-card .skeleton-tags {
  display: flex;
  gap: 5px;
}

.skeleton-card .skeleton-tag {
  width: 70px;
  height: 20px;
  border-radius: 999px;
}

.skeleton-card .skeleton-title {
  width: 100%;
  height: 16px;
  margin-top: 8px;
  border-radius: 4px;
}

.skeleton-card .skeleton-title-short {
  width: 65%;
  height: 16px;
  margin-top: 6px;
  border-radius: 4px;
}

/* Responsive skeleton */
@media (max-width: 900px) {
  .skeleton-card .skeleton-image { width: 120px; height: 120px; }
}
@media (max-width: 640px) {
  .skeleton-card .skeleton-image { width: 80px; height: 80px; }
  .skeleton-card .skeleton-score { width: 40px; height: 40px; }
}

/* --- Small mobile (max 500px) --- */
@media (max-width: 500px) {
  .products-grid { grid-template-columns: 1fr; gap: 12px; }
}

/* =========================================================
   Supplier Skeleton Loading
   ========================================================= */
.supplier-skeleton {
  max-width: 820px;
  margin: 24px auto;
  padding: 0 16px;
}

.supplier-skeleton .skel-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 28px;
}

.supplier-skeleton .skel-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.supplier-skeleton .skel-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  flex-shrink: 0;
}

.supplier-skeleton .skel-header-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.supplier-skeleton .skel-title {
  width: 60%;
  height: 22px;
}

.supplier-skeleton .skel-subtitle {
  width: 35%;
  height: 16px;
}

.supplier-skeleton .skel-section {
  margin-bottom: 20px;
}

.supplier-skeleton .skel-section-title {
  width: 120px;
  height: 14px;
  margin-bottom: 12px;
}

.supplier-skeleton .skel-line {
  width: 100%;
  height: 14px;
  margin-bottom: 8px;
}

.supplier-skeleton .skel-line-short {
  width: 75%;
  height: 14px;
  margin-bottom: 8px;
}

.supplier-skeleton .skel-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.supplier-skeleton .skel-pill {
  width: 90px;
  height: 28px;
  border-radius: 999px;
}

/* Affiliate disclosure bar (category, featured-brands, supplier pages) */
.affiliate-bar {
  text-align: center;
  padding: 12px 20px;
  background: #f5f5f5;
  border-top: 1px solid #e0e0e0;
  margin-top: 32px;
}
.affiliate-bar p {
  margin: 0;
  font-size: 11px;
  color: #888;
  line-height: 1.4;
}
.affiliate-bar-links {
  margin-top: 6px !important;
}
.affiliate-bar-links a {
  color: #666;
  text-decoration: underline;
}
.affiliate-bar-links a:hover {
  color: #333;
}

/* "See price on Amazon" link (shown when PA-API is not yet active) */
.see-on-amazon-link {
  font-size: 12px;
  font-weight: 600;
  color: #1a6b3c;
  text-decoration: none;
  white-space: nowrap;
}
.see-on-amazon-link:hover {
  text-decoration: underline;
  color: #145530;
}
