/*
 * hubin-product.css — Estilos Producto Individual Hubin
 * Agencia: Mark House Agency
 * Paleta:  #e31a80 · #74257e · #1b97d5 · #ee8410 · #3ba938 · #f7b718
 * Fuentes: Freeman (títulos) · Poppins (cuerpo)
 *
 * Ruta: /wp-content/themes/TU-TEMA-HIJO/css/hubin-product.css
 */

@import url('https://fonts.googleapis.com/css2?family=Freeman&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ── Variables ── */
:root {
  --pk: #e31a80;
  --pu: #74257e;
  --bl: #1b97d5;
  --or: #ee8410;
  --gr: #3ba938;
  --ye: #f7b718;
  --bg: #ffffff;
  --sf: #f7f7f8;
  --bd: #ebebeb;
  --tx: #111111;
  --mu: #777777;
  --ft: 'Freeman', sans-serif;
  --fb: 'Poppins', sans-serif;
  --r:  14px;
  --rl: 20px;
  --rs: 8px;
  --sh: 0 4px 18px rgba(0,0,0,.09);
  --sl: 0 12px 40px rgba(0,0,0,.13);
  --ss: 0 2px 6px rgba(0,0,0,.06);
  --tr: .22s cubic-bezier(.25,.46,.45,.94);
}

/* ── Reset dentro del wrapper ── */
.hb-page, .hb-page * { box-sizing: border-box; }
.hb-page { font-family: var(--fb); color: var(--tx); background: var(--bg); -webkit-font-smoothing: antialiased; }

/* ══════════════════════════════════════════
   CONTENEDOR PRINCIPAL
══════════════════════════════════════════ */
.hb-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 20px 80px;
}

/* ══════════════════════════════════════════
   BREADCRUMB
══════════════════════════════════════════ */
.hb-bc {
  font-family: var(--fb);
  font-size: 12px;
  color: var(--mu);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.hb-bc a { color: var(--bl); text-decoration: none; transition: opacity var(--tr); }
.hb-bc a:hover { opacity: .75; }
.hb-sep { color: var(--bd); }

/* ══════════════════════════════════════════
   HERO — GRID 2 COLUMNAS
══════════════════════════════════════════ */
.hb-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 28px;
}

/* ══════════════════════════════════════════
   GALERÍA
══════════════════════════════════════════ */
.hb-gallery { position: sticky; top: 80px; }

.hb-gallery-main {
  width: 100%;
  aspect-ratio: 1;
  background: var(--sf);
  border-radius: var(--rl);
  border: 1.5px solid var(--bd);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  box-shadow: var(--sh);
  cursor: zoom-in;
  transition: box-shadow var(--tr);
}
.hb-gallery-main:hover { box-shadow: var(--sl); }
.hb-gallery-main img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
  transition: transform .4s cubic-bezier(.25,.46,.45,.94);
}
.hb-gallery-main:hover img { transform: scale(1.05); }

/* Badge OFF */
.hb-off-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: linear-gradient(135deg, var(--pk), var(--or));
  color: #fff;
  font-family: var(--fb);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 30px;
  box-shadow: 0 3px 10px rgba(227,26,128,.35);
  z-index: 2;
}

/* Wishlist */
.hb-wish {
  position: absolute;
  top: 12px; right: 12px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(8px);
  border: 1.5px solid var(--bd);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all var(--tr);
  box-shadow: var(--ss);
  z-index: 2;
}
.hb-wish:hover { transform: scale(1.1); border-color: var(--pk); }
.hb-wish.liked  { color: var(--pk); border-color: var(--pk); background: #fff0f7; }

/* Miniaturas */
.hb-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.hb-thumb {
  width: 62px; height: 62px;
  border-radius: var(--rs);
  border: 2px solid var(--bd);
  background: var(--sf);
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--tr), transform var(--tr), box-shadow var(--tr);
}
.hb-thumb img { width: 100%; height: 100%; object-fit: cover; }
.hb-thumb:hover { border-color: var(--bl); transform: translateY(-2px); box-shadow: var(--ss); }
.hb-thumb.active { border-color: var(--bl); box-shadow: 0 0 0 3px rgba(27,151,213,.18); }

/* ══════════════════════════════════════════
   COLUMNA INFO
══════════════════════════════════════════ */
.hb-info { display: flex; flex-direction: column; }
.hb-info > * { animation: hbUp .4s cubic-bezier(.25,.46,.45,.94) both; }
.hb-info > *:nth-child(2) { animation-delay: .06s; }
.hb-info > *:nth-child(3) { animation-delay: .12s; }
.hb-info > *:nth-child(4) { animation-delay: .18s; }
.hb-info > *:nth-child(5) { animation-delay: .24s; }
@keyframes hbUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hb-meta-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.hb-cond { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .8px; color: var(--mu); }
.hb-sold { font-size: 12px; color: var(--or); font-weight: 600; }

/* Título — Freeman */
.hb-title {
  font-family: var(--ft) !important;
  font-size: 28px !important;
  line-height: 1.2 !important;
  color: var(--tx) !important;
  font-weight: 400 !important;
  letter-spacing: .3px !important;
  margin-bottom: 14px !important;
}

/* Rating */
.hb-rating-row { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.hb-stars { display: flex; gap: 2px; }
.hb-star { width: 15px; height: 15px; fill: var(--ye); }
.hb-star.e { fill: #e0e0e0; }
.hb-rating-txt { font-family: var(--fb); font-size: 13px; color: var(--mu); }
.hb-rating-txt strong { color: var(--tx); }

/* Divisor */
.hb-div {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--bd), transparent);
  margin: 18px 0;
}

/* ── Precio ── */
.hb-price-block { margin-bottom: 20px; }
.hb-price-orig { font-family: var(--fb); font-size: 13px; color: var(--mu); text-decoration: line-through; margin-bottom: 4px; }
.hb-price-row { display: flex; align-items: flex-end; gap: 12px; flex-wrap: wrap; }
.hb-price-num {
  font-family: var(--ft) !important;
  font-size: 40px !important;
  color: var(--tx);
  line-height: 1;
  letter-spacing: -.5px;
}
.hb-price-num sup {
  font-family: var(--fb) !important;
  font-size: 20px;
  font-weight: 600;
  vertical-align: super;
}
.hb-price-pct {
  background: linear-gradient(135deg, var(--gr), #2ecc71);
  color: #fff;
  font-family: var(--fb);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 30px;
  box-shadow: 0 3px 10px rgba(59,169,56,.3);
  white-space: nowrap;
}
.hb-stock { display: inline-flex; align-items: center; gap: 5px; font-family: var(--fb); font-size: 12px; font-weight: 600; margin-top: 6px; }
.hb-stock.in  { color: var(--gr); }
.hb-stock.out { color: #cc0000; }
.hb-out-msg { color: #cc0000; font-family: var(--fb); font-weight: 600; font-size: 14px; margin-bottom: 20px; }

/* ── Variaciones ── */
.hb-variations { margin-bottom: 16px; }
.hb-variations label { font-family: var(--fb) !important; font-size: 12px !important; font-weight: 600 !important; text-transform: uppercase; letter-spacing: .5px; color: var(--mu) !important; display: block; margin-bottom: 6px; }
.hb-variations select { width: 100% !important; border: 1.5px solid var(--bd) !important; border-radius: var(--r) !important; padding: 10px 14px !important; font-family: var(--fb) !important; font-size: 14px !important; background: var(--sf) !important; color: var(--tx) !important; outline: none !important; cursor: pointer; transition: border-color var(--tr); }
.hb-variations select:focus { border-color: var(--bl) !important; }

/* ── Cantidad ── */
.hb-qty-block { margin-bottom: 18px; }
.hb-qty-lbl { font-family: var(--fb); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; color: var(--mu); margin-bottom: 10px; }
.hb-qty-wrap {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--bd);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--sf);
}
.hb-qbtn {
  width: 46px; height: 46px;
  border: none;
  background: transparent;
  font-size: 22px;
  font-weight: 300;
  cursor: pointer;
  color: var(--tx);
  transition: background var(--tr), color var(--tr);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fb);
}
.hb-qbtn:hover { background: var(--bd); color: var(--bl); }
.hb-qbtn:disabled { opacity: .35; cursor: default; }
.hb-qdisplay {
  width: 54px; height: 46px;
  text-align: center;
  font-family: var(--fb);
  font-size: 17px;
  font-weight: 600;
  color: var(--tx);
  border-left: 1.5px solid var(--bd);
  border-right: 1.5px solid var(--bd);
  display: flex; align-items: center; justify-content: center;
  user-select: none;
}

/* ── Envío dinámico ── */
.hb-ship {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: var(--r);
  padding: 12px 16px;
  margin-bottom: 14px;
  font-family: var(--fb);
  font-size: 13px;
  border: 1.5px solid var(--bd);
  background: var(--sf);
  transition: all var(--tr);
}
.hb-ship.free { background: linear-gradient(135deg, #f0fff4, #e8f8f0); border-color: #b2eecb; }
.hb-ship-ico { font-size: 20px; flex-shrink: 0; }
.hb-ship-txt { display: block; font-weight: 700; font-size: 14px; font-family: var(--fb); }
.hb-ship.free .hb-ship-txt { color: var(--gr); }
.hb-ship:not(.free) .hb-ship-txt { color: var(--mu); }

.hb-ship-prog { margin-bottom: 14px; }
.hb-ship-lbl { font-family: var(--fb); font-size: 12px; color: var(--mu); margin-bottom: 6px; }
.hb-ship-lbl strong { color: var(--tx); }
.hb-prog-bar { height: 6px; background: var(--bd); border-radius: 3px; overflow: hidden; }
.hb-prog-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--bl), var(--gr)); transition: width .5s cubic-bezier(.25,.46,.45,.94); }

/* ── Botones CTA ── */
.hb-btn-group { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.hb-btn {
  width: 100%;
  border: none;
  border-radius: var(--r);
  padding: 14px 24px;
  font-family: var(--fb);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--tr);
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  letter-spacing: .2px;
  text-decoration: none;
}
.hb-btn:active { transform: scale(.98); }

.hb-btn-buy {
  background: linear-gradient(135deg, var(--bl), var(--pu));
  color: #fff;
  box-shadow: 0 5px 18px rgba(27,151,213,.35);
}
.hb-btn-buy:hover { filter: brightness(1.07); box-shadow: 0 8px 24px rgba(27,151,213,.45); }

.hb-btn-cart {
  background: #ffffff;
  color: var(--bl);
  border: 2px solid var(--bl);
}
.hb-btn-cart:hover { background: #f0f9ff; }

/* Ripple */
.hb-rip {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: hbRip .55s linear;
  background: rgba(255,255,255,.32);
  pointer-events: none;
}
@keyframes hbRip { to { transform: scale(4); opacity: 0; } }

/* ── Métodos de pago ── */
.hb-pay-wrap { margin-top: 4px; }
.hb-pay-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--sf);
  border: 1.5px solid var(--bd);
  border-radius: var(--r);
  cursor: pointer;
  font-family: var(--fb);
  font-size: 13px;
  font-weight: 600;
  color: var(--tx);
  transition: all var(--tr);
}
.hb-pay-toggle:hover { border-color: var(--bl); background: #f0f9ff; }
.hb-chev { font-size: 14px; color: var(--mu); transition: transform .3s; }
.hb-pay-toggle.open { border-radius: var(--r) var(--r) 0 0; border-color: var(--bl); }
.hb-pay-toggle.open .hb-chev { transform: rotate(180deg); color: var(--bl); }

.hb-pay-drawer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.25,.46,.45,.94);
  border: 1.5px solid var(--bl);
  border-top: none;
  border-radius: 0 0 var(--r) var(--r);
}
.hb-pay-drawer.open { max-height: 500px; }
.hb-pay-inner { padding: 16px; }
.hb-pay-tabs { display: flex; gap: 6px; margin-bottom: 14px; flex-wrap: wrap; }
.hb-pay-tab {
  font-family: var(--fb);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 30px;
  border: 1.5px solid var(--bd);
  cursor: pointer;
  color: var(--mu);
  background: #fff;
  transition: all var(--tr);
}
.hb-pay-tab.active {
  background: linear-gradient(135deg, var(--bl), var(--pu));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 3px 10px rgba(27,151,213,.25);
}
.hb-pay-tab:not(.active):hover { border-color: var(--bl); color: var(--bl); }
.hb-pay-panel { display: none; }
.hb-pay-panel.visible { display: block; animation: hbFade .2s ease; }
@keyframes hbFade { from { opacity: 0; } to { opacity: 1; } }
.hb-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 10px; }
.hb-chip {
  height: 30px; min-width: 48px;
  border: 1px solid var(--bd);
  border-radius: 6px;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  padding: 4px 10px;
  font-family: var(--fb);
  font-size: 9px;
  font-weight: 800;
  box-shadow: var(--ss);
  letter-spacing: .3px;
}
.hb-pay-note { font-family: var(--fb); font-size: 12px; color: var(--mu); line-height: 1.5; margin-top: 4px; }

/* ══════════════════════════════════════════
   DESCRIPCIÓN DESPLEGABLE
══════════════════════════════════════════ */
.hb-desc-card {
  background: var(--sf);
  border-radius: var(--rl);
  border: 1.5px solid var(--bd);
  overflow: hidden;
  margin-top: 28px;
  box-shadow: var(--ss);
}
.hb-desc-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--ft);
  font-size: 18px;
  color: var(--tx);
  transition: background var(--tr);
  text-align: left;
}
.hb-desc-toggle:hover { background: #f0f0f0; }
.hb-desc-ico {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bd);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  transition: transform .3s, background .2s;
  flex-shrink: 0;
}
.hb-desc-toggle.open .hb-desc-ico { transform: rotate(180deg); background: var(--bl); color: #fff; }
.hb-desc-body { max-height: 0; overflow: hidden; transition: max-height .45s cubic-bezier(.25,.46,.45,.94); }
.hb-desc-body.open { max-height: 2000px; }
.hb-desc-inner { padding: 4px 24px 24px; border-top: 1.5px solid var(--bd); font-family: var(--fb); font-size: 14px; color: #555; line-height: 1.8; }
.hb-desc-inner p { margin-bottom: 12px; }
.hb-desc-inner h2, .hb-desc-inner h3 { font-family: var(--ft); color: var(--tx); font-weight: 400; margin: 18px 0 10px; }
.hb-spec-title { font-family: var(--ft) !important; color: var(--tx) !important; font-weight: 400 !important; font-size: 18px !important; margin-top: 20px !important; }
.hb-spec-table { width: 100%; border-collapse: collapse; margin-top: 12px; border: 1.5px solid var(--bd); border-radius: var(--rs); overflow: hidden; }
.hb-spec-table th, .hb-spec-table td { padding: 10px 14px; font-family: var(--fb); font-size: 13px; border-bottom: 1px solid var(--bd); text-align: left; }
.hb-spec-table th { background: var(--bg); font-weight: 600; color: var(--tx); border-right: 1.5px solid var(--bd); width: 38%; }
.hb-spec-table td { color: #555; }
.hb-spec-table tr:nth-child(even) td { background: var(--sf); }
.hb-spec-table tr:last-child th, .hb-spec-table tr:last-child td { border-bottom: none; }

/* ══════════════════════════════════════════
   PRODUCTOS RELACIONADOS
══════════════════════════════════════════ */
.hb-related { margin-top: 52px; }
.hb-rel-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 22px; }
.hb-rel-head h2 {
  font-family: var(--ft) !important;
  font-size: 26px !important;
  color: var(--tx) !important;
  font-weight: 400 !important;
  line-height: 1;
}
.hb-rel-head h2 span {
  display: block;
  width: 48px; height: 4px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--pk), var(--or), var(--ye));
  margin-top: 8px;
}
.hb-rel-head a { font-family: var(--fb); font-size: 13px; color: var(--bl); text-decoration: none; font-weight: 600; transition: opacity var(--tr); }
.hb-rel-head a:hover { opacity: .7; }

.hb-slider-wrap { overflow: hidden; }
.hb-slider-track { display: flex; gap: 16px; transition: transform .42s cubic-bezier(.25,.46,.45,.94); }

.hb-prod-card {
  min-width: calc(25% - 12px);
  background: #fff;
  border-radius: var(--rl);
  border: 1.5px solid var(--bd);
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform var(--tr), box-shadow var(--tr);
  box-shadow: var(--ss);
  text-decoration: none;
  color: inherit;
  display: block;
}
.hb-prod-card:hover { transform: translateY(-5px); box-shadow: var(--sl); }
.hb-card-stripe { height: 4px; }
.hb-card-img { width: 100%; aspect-ratio: 1; background: var(--sf); display: flex; align-items: center; justify-content: center; border-bottom: 1.5px solid var(--bd); overflow: hidden; }
.hb-card-img img { max-width: 80%; max-height: 80%; object-fit: contain; }
.hb-card-body { padding: 14px 16px 16px; }
.hb-card-name { font-family: var(--fb); font-size: 13px; font-weight: 500; color: var(--tx); line-height: 1.45; margin-bottom: 6px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.hb-card-stars { display: flex; align-items: center; gap: 3px; margin-bottom: 8px; }
.hb-cs   { font-size: 11px; color: var(--ye); }
.hb-cs.e { color: #e0e0e0; }
.hb-cr   { font-size: 11px; color: var(--mu); margin-left: 2px; }
.hb-card-price { font-family: var(--ft) !important; font-size: 20px !important; color: var(--tx); line-height: 1; }
.hb-card-off { display: inline-block; font-family: var(--fb); font-size: 11px; font-weight: 700; color: var(--gr); background: #e8fce8; padding: 2px 8px; border-radius: 20px; margin-top: 4px; }

.hb-sl-nav { display: flex; justify-content: center; gap: 10px; margin-top: 20px; }
.hb-sl-arr {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--bd);
  background: #fff;
  cursor: pointer;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  color: var(--tx);
  transition: all var(--tr);
  box-shadow: var(--ss);
}
.hb-sl-arr:hover { background: linear-gradient(135deg,var(--bl),var(--pu)); color: #fff; border-color: transparent; box-shadow: 0 4px 14px rgba(27,151,213,.35); }
.hb-sl-arr:disabled { opacity: .28; cursor: default; box-shadow: none; }
.hb-sl-arr:disabled:hover { background: #fff; color: var(--tx); border-color: var(--bd); box-shadow: none; }

/* ══════════════════════════════════════════
   TOAST
══════════════════════════════════════════ */
.hb-toast {
  position: fixed;
  bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(70px);
  background: var(--tx);
  color: #fff;
  padding: 13px 28px;
  border-radius: 30px;
  font-family: var(--fb);
  font-size: 14px;
  font-weight: 500;
  z-index: 99999;
  opacity: 0;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), opacity .3s;
  white-space: nowrap;
  pointer-events: none;
}
.hb-toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ══════════════════════════════════════════
   BARRA MÓVIL STICKY
══════════════════════════════════════════ */
.hb-mob-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  border-top: 1.5px solid var(--bd);
  padding: 10px 16px;
  z-index: 9998;
  gap: 10px;
  align-items: center;
  box-shadow: 0 -4px 24px rgba(0,0,0,.1);
}
.hb-mob-price { font-family: var(--ft); font-size: 22px; flex: 1; color: var(--tx); }
.hb-mob-btn { border: none; border-radius: var(--r); padding: 11px 16px; font-family: var(--fb); font-size: 13px; font-weight: 600; cursor: pointer; transition: all var(--tr); }
.hb-mob-cart { flex: 1; background: #fff; color: var(--bl); border: 2px solid var(--bl); }
.hb-mob-buy  { flex: 2; background: linear-gradient(135deg,var(--bl),var(--pu)); color: #fff; box-shadow: 0 4px 12px rgba(27,151,213,.3); }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 800px) {
  .hb-hero { grid-template-columns: 1fr; gap: 0; }
  .hb-gallery { position: static; margin-bottom: 24px; }
  .hb-title { font-size: 22px !important; }
  .hb-price-num { font-size: 30px !important; }
  .hb-prod-card { min-width: calc(50% - 8px); }
  .hb-mob-bar { display: flex; }
  .hb-page { padding-bottom: 90px; }
}
@media (max-width: 480px) {
  .hb-prod-card { min-width: calc(72% - 8px); }
  .hb-page { padding: 20px 16px 90px; }
}

/* ══════════════════════════════════════════
   SUFIJO DE IMPUESTO JUNTO AL PRECIO
══════════════════════════════════════════ */
.hb-tax-suffix {
  font-family: var(--fb);
  font-size: 13px;
  font-weight: 700;
  align-self: flex-end;
  margin-bottom: 7px;
  white-space: nowrap;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(0,0,0,.04);
  border: 1.5px solid currentColor;
  opacity: .85;
}

/* ══════════════════════════════════════════
   RESPONSIVE MÓVIL (con !important para Divi)
══════════════════════════════════════════ */
@media (max-width: 800px) {
  .hb-hero {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .hb-gallery {
    position: static !important;
    margin-bottom: 8px !important;
  }
  .hb-title { font-size: 24px !important; }
  .hb-price-num { font-size: 32px !important; }
  .hb-prod-card { min-width: calc(50% - 8px) !important; }
  .hb-mob-bar { display: flex !important; }
  .hb-page { padding: 16px 16px 90px !important; }
  .hb-price-row { flex-wrap: wrap !important; gap: 8px !important; }
  .hb-tax-suffix { font-size: 11px !important; }
}

@media (max-width: 480px) {
  .hb-prod-card { min-width: calc(80% - 8px) !important; }
  .hb-title { font-size: 20px !important; }
}

/* ══════════════════════════════════════════
   FIX FONDO GRIS DIVI
══════════════════════════════════════════ */
body.single-product,
body.single-product #page-container,
body.single-product #et-boc,
body.single-product #et-main-area {
  background-color: #ffffff !important;
  max-width: 100% !important;
  width: 100% !important;
}
body.single-product #et-main-area {
  padding: 0 !important;
  margin: 0 !important;
}
body.single-product .hb-page {
  max-width: 1200px !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding: 32px 40px 80px !important;
  background: #ffffff !important;
  box-sizing: border-box !important;
}
