
  /* ============================================
     Theme tokens — change these to re-brand
     ============================================ */
  :root {
    --color-tab-blue: #0F6E7E;
    --color-tab-purple: #C9912E;
    --color-number-badge: #0F6E7E;
    --color-thumb-active: #4FC3F7;
    --color-link: #1B6BB8;
    --color-cta: #F18820;
    --color-cta-hover: #D9760E;
    --color-card-border: #C9A55A;
    --color-star: #F5B400;
    --color-check: #2E7D32;

    --color-badge-ada-bg: #E8F5E9;
    --color-badge-ada-text: #2E7D32;
    --color-badge-psi-bg: #E3F2FD;
    --color-badge-psi-text: #1565C0;
    --color-badge-amber-bg: #FFF3E0;
    --color-badge-amber-text: #B25C00;
    --color-badge-purple-bg: #F3E5F5;
    --color-badge-purple-text: #6A1B9A;
    --color-badge-teal-bg: #E0F2F1;
    --color-badge-teal-text: #00695C;

    --color-text: #1A1A1A;
    --color-text-body: #3D3D3D;
    --color-text-muted: #6B6B6B;
    --color-surface: #FFFFFF;
    --color-page-bg: #F4F4F4;
    --color-border-subtle: #E2E2E2;

    --radius-sm: 3px;
    --radius-md: 4px;
    --radius-lg: 6px;
  }

  .wfl-listicle, .wfl-listicle *, .wfl-listicle *::before, .wfl-listicle *::after { box-sizing: border-box; margin: 0; padding: 0; }

  

  /* ============================================
     Page heading
     ============================================ */
  .wfl-page-header {
    max-width: 1100px;
    margin: 0 auto 32px;
    text-align: center;
  }
  .wfl-page-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -0.5px;
  }
  .wfl-page-subtitle {
    margin-top: 6px;
    font-size: 14px;
    color: var(--color-text-muted);
  }

  /* ============================================
     Card wrapper — stacks vertically
     ============================================ */
  .wfl-product-card-wrapper {
    max-width: 1100px;
    margin: 0 auto;
  }

  .wfl-product-card-wrapper + .wfl-product-card-wrapper {
    border-top: 1px solid #EEEEEE;
  }

  /* ============================================
     Top tabs
     ============================================ */
  .wfl-tab-row {
    display: flex;
    position: relative;
    z-index: 2;
    margin-bottom: -2px;
  }

  .wfl-tab {
    padding: 5px 18px;
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.2px;
  }

  .wfl-tab-best {
    background: var(--color-tab-blue);
    border-top-left-radius: var(--radius-sm);
  }
  .wfl-tab-popular {
    background: var(--color-tab-purple);
    padding-right: 22px;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
  }

  /* ============================================
     Main product card
     ============================================ */
  .wfl-product-card {
    position: relative;
    border: none;
    border-radius: var(--radius-sm);
    background: var(--color-surface);
    padding: 10px 20px 18px;
    display: grid;
    grid-template-columns: 200px 1fr 200px;
    gap: 20px;
    align-items: start;
    cursor: pointer;
    transition: box-shadow 0.15s ease;
  }

  .wfl-product-card:hover {
    box-shadow: inset 0 0 0 1px #64B5F6;
  }

  .wfl-product-card:has(.wfl-product-badge) {
    padding-top: 14px;
  }

  .wfl-product-badge {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 4;
    background: var(--color-tab-blue);
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    padding: 5px 22px 5px 14px;
    letter-spacing: 0.2px;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
  }

  .wfl-product-badge--gold { background: var(--color-tab-purple); }

  /* ============================================
     LEFT — image column
     ============================================ */
  .wfl-left-col {
    position: relative;
    align-self: center;
  }

  .wfl-number-badge {
    position: absolute;
    left: -37px;
    top: 83px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #FFFFFF;
    color: var(--color-number-badge);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 17px;
    z-index: 3;
    border: 2px solid var(--color-number-badge);
  }

  .wfl-main-image {
    width: 200px;
    height: 200px;
    background: #F6F6F6;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }

  .wfl-main-image img { width: 100%; height: 100%; object-fit: cover; }

  .wfl-img-placeholder {
    width: 80%;
    height: 80%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .wfl-img-placeholder svg { width: 100%; height: 100%; }

  /* ============================================
     MIDDLE — content column
     ============================================ */
  .wfl-middle-col { padding-top: 2px; }

  .wfl-product-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.45;
    margin-top: 0;
  }

  .wfl-title-divider {
    border-bottom: 1px solid var(--color-border-subtle);
    margin: 12px 0 14px;
  }

  /* Trust badges row */
  .wfl-badges-row {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
    flex-wrap: wrap;
    align-items: center;
  }

  .wfl-badge-pill {
    font-size: 13px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    line-height: 1.4;
  }

  .wfl-badge-ada    { background: var(--color-badge-ada-bg);    color: var(--color-badge-ada-text); }
  .wfl-badge-psi    { background: var(--color-badge-psi-bg);    color: var(--color-badge-psi-text); }
  .wfl-badge-amber  { background: var(--color-badge-amber-bg);  color: var(--color-badge-amber-text); }
  .wfl-badge-purple { background: var(--color-badge-purple-bg); color: var(--color-badge-purple-text); }
  .wfl-badge-teal   { background: var(--color-badge-teal-bg);   color: var(--color-badge-teal-text); }

  .wfl-badge-pill svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
  }

  /* Spec / bullet list */
  .wfl-spec-list {
    list-style: none;
  }

  .wfl-spec-list li {
    padding: 1px 0 1px 26px;
    position: relative;
    font-size: 14px;
    color: var(--color-text-body);
    line-height: 1.55;
  }

  .wfl-spec-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><circle cx='12' cy='12' r='11' fill='%232E7D32'/><polyline points='17 9 10.5 15.5 7 12' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
  }

  .wfl-spec-label {
    font-weight: 700;
    color: var(--color-text);
  }

  /* Cons list — same compact pattern as spec-list, red X icon */
  .wfl-cons-list {
    list-style: none;
    margin-top: 6px;
  }

  .wfl-cons-list li {
    padding: 1px 0 1px 26px;
    position: relative;
    font-size: 14px;
    color: var(--color-text-body);
    line-height: 1.55;
  }

  .wfl-cons-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><circle cx='12' cy='12' r='11' fill='%23C03A2B'/><line x1='8' y1='8' x2='16' y2='16' stroke='white' stroke-width='3' stroke-linecap='round'/><line x1='16' y1='8' x2='8' y2='16' stroke='white' stroke-width='3' stroke-linecap='round'/></svg>");
    background-repeat: no-repeat;
  }

  .wfl-full-review-link {
    display: inline-block;
    margin-left: auto;
    color: var(--color-link);
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    position: relative;
    z-index: 2;
  }

  .wfl-full-review-link:hover { text-decoration: underline; }

  /* ============================================
     RIGHT — CTA column
     ============================================ */
  .wfl-right-col {
    text-align: center;
    align-self: center;
  }

  .wfl-price-card {
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius-md);
    padding: 14px;
    background: var(--color-surface);
    width: 100%;
    box-sizing: border-box;
  }

  .wfl-score-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 14px;
  }

  .wfl-score-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -0.6px;
    line-height: 1;
  }

  .wfl-score-stars {
    font-size: 17px;
    letter-spacing: 2px;
    margin-right: -2px;
    background: linear-gradient(
      90deg,
      var(--color-star) 0,
      var(--color-star) var(--rating-percent, 100%),
      #D8D8D8 var(--rating-percent, 100%),
      #D8D8D8 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
  }

  .wfl-check-price-btn {
    background: var(--color-cta);
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 18px;
    font-weight: 700;
    border-radius: var(--radius-md);
    width: 100%;
    cursor: pointer;
    display: block;
    text-decoration: none;
    text-align: center;
    font-family: inherit;
    transition: background 0.15s, transform 0.08s;
  }

  .wfl-check-price-btn:hover { background: var(--color-cta-hover); }
  .wfl-check-price-btn:active { transform: scale(0.99); }

  /* Card-link pattern: extend the Check Price link's clickable area to cover the entire card */
  .wfl-check-price-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
  }

  .wfl-amazon-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
  }

  .wfl-bought-info {
    margin-top: 14px;
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.45;
  }

  /* ============================================
     Responsive
     ============================================ */
  @media (max-width: 960px) {
    .wfl-product-card {
      grid-template-columns: 200px 1fr;
    }
    .wfl-right-col {
      grid-column: 1 / -1;
      max-width: 320px;
      margin: 0 auto;
      width: 100%;
    }
  }

  @media (max-width: 640px) {
    
    .wfl-product-card {
      grid-template-columns: 1fr;
      padding: 18px;
      gap: 20px;
    }
    .wfl-left-col {
      max-width: none;
      margin: 0;
      width: auto;
    }
    .wfl-number-badge {
      top: 83px;
      left: -35px;
    }
    .wfl-tab { padding: 4px 14px; font-size: 11px; }
    .wfl-page-title { font-size: 22px; }
  }
