/* ============================
   COMPARISON TABLE
============================ */

.comparison-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.product-card {
  background: var(--brand-bg-card);
  border: 1px solid var(--brand-border);
  border-radius: 14px;
  padding: 1.25rem;

  transition: border-color 0.2s ease, transform 0.2s ease;
}

.product-card:hover {
  transform: translateY(-2px);
}

.product-card.featured {
  position: relative;
}

.product-card.featured::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;

  box-shadow:
    0 0 0 1px rgba(53,231,255,0.15),
    0 0 24px rgba(53,231,255,0.08);
}
.product-actions .btn-primary {
  font-weight: 600;
}

.product-actions .btn-primary:hover {
  transform: translateY(-1px);
}


.product-tag {
  margin-bottom: 0.4rem;

  color: var(--brand-accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


/* ============================
   TRUST / CONTEXT BLOCK
============================ */

.lede {
  max-width: 680px;
  margin-bottom: 1.75rem;

  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* Mini verdict cards */
.mini-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
}

.mini-card {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 0.85rem 1rem;

  transition: border-color 0.2s ease, transform 0.2s ease;
}

.mini-card:hover {
  border-color: rgba(53,231,255,0.25);
  transform: translateY(-1px);
}

.mini-title {
  margin-bottom: 0.25rem;

  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.mini-sub {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
}


/* ============================
   DISCLOSURE
============================ */

.disclosure {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}
/* ============================
   COMPARISON SECTION
============================ */

.section-head {
  max-width: 720px;
  margin-bottom: 1.75rem;
}

.section-head h2 {
  margin-bottom: 0.35rem;
}

.section-head .muted {
  font-size: 0.9rem;
  color: var(--text-muted);
}


/* ============================
   PRODUCT CARD INTERNALS
============================ */

.product-top {
  margin-bottom: 0.75rem;
}

.product-top h3 {
  margin-bottom: 0.15rem;
}

.product-media {
  padding: 0.85rem;
  margin-bottom: 0.5rem;

  border-radius: 12px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.03),
    rgba(255,255,255,0.015)
  );
}
.product-media img {
  border-radius: 8px;
}


/* Bullet list */
.product-points {
  margin: 0.75rem 0 1rem;
  padding-left: 1.1rem;

  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-main);
}

.product-points li {
  margin-bottom: 0.35rem;
}

/* Actions area */
.product-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Micro helper text */
.micro {
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--text-muted);
}


/* ============================
   FEATURED CARD TUNING
============================ */

.product-card.featured h3 {
  font-weight: 700;
}

.product-card.featured .btn-primary {
  box-shadow:
    0 6px 18px rgba(53,231,255,0.25);
}


/* ============================
   SECTION FOOT NOTE
============================ */

.section-foot {
  margin-top: 1.25rem;
  max-width: 720px;

  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-muted);
}
.back-link {
  display: inline-block;
  margin: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
}

.back-link:hover {
  color: var(--brand-accent);
}
/* Muted / under-review card */
.muted-card {
  opacity: 0.85;
}

.btn-disabled {
  cursor: not-allowed;
  background: rgba(255,255,255,0.06);
  border: 1px dashed rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.6);
}
.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-meta .micro {
  font-size: 0.75rem;
  opacity: 0.7;
}
/* ============================
   PRODUCT CONTEXT (EDITORIAL)
============================ */

.product-context {
  margin-bottom: 0.75rem;
}

.context-lead {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.context-lead strong {
  color: var(--text-main);
  font-weight: 600;
}
@media (max-width: 640px) {
  .product-card {
    padding: 1rem;
  }

  .product-media {
    padding: 0.65rem;
  }

  .product-points {
    font-size: 0.88rem;
  }
}
/* ============================
   PRODUCT MEDIA IMAGE TUNING
============================ */

.product-media img {
  width: 100%;
  max-height: 340px;   /* 👈 key control */
  object-fit: contain;

  border-radius: 8px;
}
.product-media {
  position: relative;
}

.product-media::after {
  content: "Preview";
  position: absolute;
  bottom: 10px;
  right: 12px;

  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;

  padding: 0.25rem 0.45rem;
  border-radius: 6px;

  background: rgba(0,0,0,0.55);
  color: rgba(255,255,255,0.75);
}
.product-media {
  opacity: 0.92;
}

.product-card:hover .product-media {
  opacity: 1;
}
.product-media {
  margin-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 0.75rem;
}
.product-media img {
  max-width: 220px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.product-media img {
  max-width: 240px;
  margin: 0.5rem auto;
  display: block;
}
.mini-label {
  margin-bottom: 0.35rem;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
