/* =====================================================================
   AffiliCloak — Price comparison widget styles
   ===================================================================== */

/* ── Entry animation ─────────────────────────────────────────────── */
@keyframes affili-fadein {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.affili-compare-anim {
  animation: affili-fadein 0.35s ease both;
}

/* ── Widget container ────────────────────────────────────────────── */
.affili-compare-widget {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  margin: 16px 0;
  font-size: 14px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.07);
}

/* ── Header ──────────────────────────────────────────────────────── */
.affili-compare-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: #f8f9fa;
  border-bottom: 1px solid #e0e0e0;
}

.affili-compare-title {
  font-weight: 700;
  color: #333;
  display: flex;
  align-items: center;
  gap: 6px;
}

.affili-compare-age {
  font-size: 11px;
  color: #888;
}

/* ── Offer rows ──────────────────────────────────────────────────── */
.affili-compare-row {
  display: grid;
  grid-template-columns: 40px 1fr auto auto;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid #f0f0f0;
  background: #fff;
  transition: background .15s;
}

.affili-compare-row:last-child {
  border-bottom: none;
}

.affili-compare-row:hover {
  background: #fafafa;
}

/* ── Best-price row highlight ────────────────────────────────────── */
.affili-compare-row.affili-best {
  background: #f0fff4;
  border-left: 3px solid #28a745;
}

.affili-compare-row.affili-best:hover {
  background: #e6ffee;
}

/* ── Rank badge ──────────────────────────────────────────────────── */
.affili-rank-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.affili-rank-1 {
  background: #28a745;
  color: #fff;
  font-size: 16px;
}

.affili-rank-2 {
  background: #e9ecef;
  color: #555;
}

.affili-rank-3 {
  background: #f8f9fa;
  color: #888;
}

/* ── Merchant name + badges ──────────────────────────────────────── */
.affili-merchant {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.affili-merchant-name {
  font-weight: 600;
  color: #222;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.affili-badge-best {
  display: inline-block;
  background: #28a745;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 10px;
  letter-spacing: .3px;
  text-transform: uppercase;
}

.affili-badge-hot {
  font-size: 13px;
  line-height: 1;
  cursor: default;
}

/* ── Price block ─────────────────────────────────────────────────── */
.affili-price-block {
  text-align: right;
  min-width: 80px;
}

.affili-price {
  font-size: 17px;
  font-weight: 700;
  color: #555;
  white-space: nowrap;
}

.affili-price-best {
  color: #28a745;
  font-size: 20px;
}

.affili-savings {
  display: block;
  font-size: 11px;
  color: #28a745;
  font-weight: 600;
  margin-top: 2px;
}

.affili-price-na {
  font-size: 12px;
  color: #aaa;
}

/* ── CTA buttons ─────────────────────────────────────────────────── */
.affili-cta-block {
  flex-shrink: 0;
}

.affili-compare-cta {
  border: 1px solid #6c757d;
  background: #fff;
  color: #555;
  border-radius: 5px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all .15s;
}

.affili-compare-cta:hover {
  background: #6c757d;
  color: #fff;
}

.affili-compare-cta.affili-cta-best {
  border-color: #28a745;
  background: #28a745;
  color: #fff;
}

.affili-compare-cta.affili-cta-best:hover {
  background: #218838;
  border-color: #1e7e34;
}

/* Loading state on click */
.affili-compare-cta.affili-loading {
  opacity: .7;
  pointer-events: none;
}

/* ── RGPD notice ─────────────────────────────────────────────────── */
.affili-compare-notice {
  padding: 6px 14px;
  background: #f8f9fa;
  border-top: 1px solid #f0f0f0;
  color: #999;
  font-size: 11px;
  margin: 0;
}

/* ── Responsive: stack on narrow screens ─────────────────────────── */
@media (max-width: 480px) {
  .affili-compare-row {
    grid-template-columns: 32px 1fr;
    grid-template-rows: auto auto;
  }
  .affili-price-block { grid-column: 2; text-align: left; }
  .affili-cta-block   { grid-column: 1 / -1; }
  .affili-compare-cta { width: 100%; }
}
