/* Thrive Shop - Related Products styles (loaded only on posts) */

.thrive-related-products { margin: 24px 0; }
.thrive-related-products > h2 { font-size: 18px; margin: 0 0 10px; }
/* Section-level disclaimer under title */
.thrive-related-products .related-disclaimer {
  margin: -8px 0 10px 0;
  line-height: 1.3;
}
.thrive-related-products .related-disclaimer small { 
  display: block;
  font-size: 12px;
}

/* Grid */
.thrive-related-products .thrive-shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}

/* Mini card */
.thrive-related-products .thrive-product-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Thumb smaller */
.thrive-related-products .thrive-product-item .thumb {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.thrive-related-products .thrive-product-item .thumb img {
  width: auto;
  max-height: 100%;
  object-fit: contain;
  border-radius: 6px;
}

/* Title */
.thrive-related-products .thrive-product-item .title {
  font-size: 14px;
  margin: 0;
  line-height: 1.3;
}

/* Prices */
.thrive-related-products .thrive-product-item .prices {
  display: inline-flex;
  gap: 6px;
  align-items: baseline;
}
.thrive-related-products .thrive-product-item .price-old {
  color: #6b7280;
  text-decoration: line-through;
  font-size: 12px;
}
.thrive-related-products .thrive-product-item .price-current {
  color: #111827;
  font-weight: 700;
  font-size: 14px;
}

/* Price disclaimer */
.thrive-related-products .thrive-product-item .price-disclaimer {
  margin: 4px 0 0 0;
  color: #6b7280;
  font-style: italic;
  line-height: 1.2;
}
.thrive-related-products .thrive-product-item .price-disclaimer small {
  font-size: 11px;
}
