/*******************************************************************
 * OffSale Refurb — mejoras visibles Sprint 2 mini (2026-07-21)
 * Cargado desde child theme functions.php
 *******************************************************************/

/* --- Reset del cuadro negro fantasma en PDP (iframe Elementor video sin src) --- */
iframe.elementor-video,
iframe#widget2,
.elementor-widget-video iframe[src=""],
.elementor-widget-video iframe:not([src]),
.elementor-widget-video:has(iframe:not([src])),
.elementor-widget-video:has(iframe[src=""]) {
  display: none !important;
}
.woocommerce div.product .product_meta_wrap:empty,
.single-product .elementor-widget-container:empty {
  display: none !important;
}

/* --- Badges de Grado (pills coloridas) --- */
.offsale-badge-grado {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  line-height: 1;
  color: #fff;
  margin-right: 6px;
  vertical-align: middle;
}
.offsale-badge-grado--excelente {
  background: #16a34a;
}
.offsale-badge-grado--muy-bueno {
  background: #ca8a04;
}
.offsale-badge-grado--bueno {
  background: #ea580c;
}
.offsale-badge-grado--outlet {
  background: #b91c1c;
}

/* --- Badge de Garantía 12m (sello visible) --- */
.offsale-badge-garantia {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: #f5630a; /* naranja marca OffSale */
  border: 2px solid #d4520a;
  margin: 6px 6px 6px 0;
  vertical-align: middle;
}
.offsale-badge-garantia::before {
  content: "🛡";
  margin-right: 6px;
}

/* --- Trust row en PDP (envío / garantía / testeo) --- */
.offsale-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 14px;
  margin: 16px 0;
  background: #fff8f0;
  border: 1px solid #f5db9a;
  border-radius: 8px;
  font-size: 14px;
}
.offsale-trust-row > div {
  flex: 1 1 200px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.offsale-trust-row .offsale-trust-icon {
  font-size: 22px;
  line-height: 1;
}
.offsale-trust-row strong {
  color: #d4520a;
}

/* --- Botón WhatsApp secundario en PDP --- */
.offsale-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #25d366;
  color: #fff !important;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none !important;
  margin-top: 10px;
  transition: background 0.2s;
}
.offsale-btn-whatsapp:hover {
  background: #1ea952;
}
.offsale-btn-whatsapp::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23fff' d='M16.001 0C7.164 0 0 7.164 0 15.998c0 2.822.735 5.575 2.13 8.005L0 32l8.192-2.148a15.94 15.94 0 007.809 1.997h.006C24.836 31.849 32 24.685 32 15.85 32 11.593 30.394 7.615 27.484 4.706 24.575 1.797 20.597.191 16.34.191z'/%3E%3C/svg%3E")
    no-repeat center/contain;
}

/* --- Card de producto: badge grado en esquina --- */
.woocommerce ul.products li.product .offsale-card-badges {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* --- Trust bar sticky arriba (opcional) --- */
.offsale-topbar {
  background: #1a1a1a;
  color: #fff;
  padding: 6px 12px;
  font-size: 12px;
  text-align: center;
  letter-spacing: 0.3px;
}
.offsale-topbar strong {
  color: #f5630a;
}
.offsale-topbar a {
  color: #fff;
  text-decoration: underline;
}
@media (max-width: 640px) {
  .offsale-topbar {
    font-size: 11px;
  }
}
