/* ═══════════════════════════════════════════════
   HONEY'B — EXTRAS v2
   Pega al FINAL de tu styles.css existente
   ═══════════════════════════════════════════════ */

/* ─────────────────────────────────────────────
   PRODUCTOS: panel que sube al hover / click
   ───────────────────────────────────────────── */

.prod2-card {
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.prod2-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(200,151,42,0.18);
}

/* Pulso en badge para llamar atención inicial */
.prod2-badge {
  animation: pulseBadge 2.5s ease infinite;
}
@keyframes pulseBadge {
  0%,100% { box-shadow: 0 0 0 0 rgba(200,151,42,0.5); }
  60%     { box-shadow: 0 0 0 7px rgba(200,151,42,0); }
}

/* Flecha visual en la card */
.prod2-tap-hint {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(200,151,42,0.18);
  border: 1px solid rgba(200,151,42,0.45);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C8972A;
  font-size: 15px;
  z-index: 5;
  transition: opacity 0.3s, transform 0.3s;
  animation: bounce 1.8s ease infinite;
}
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-4px); }
}
.prod2-card:hover .prod2-tap-hint,
.prod2-card.panel-open .prod2-tap-hint {
  opacity: 0;
  pointer-events: none;
}

/* Panel de 3 botones que sube desde abajo */
.prod2-action-panel {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top,
    rgba(8,4,0,0.99) 0%,
    rgba(8,4,0,0.94) 65%,
    rgba(8,4,0,0.0) 100%);
  padding: 36px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  transform: translateY(100%);
  transition: transform 0.42s cubic-bezier(0.22,1,0.36,1);
  border-radius: 0 0 inherit inherit;
  z-index: 10;
}

/* Desktop: hover activa el panel */
@media (hover: hover) {
  .prod2-card:hover .prod2-action-panel { transform: translateY(0); }
}
/* Móvil/touch: clase JS */
.prod2-card.panel-open .prod2-action-panel { transform: translateY(0); }

/* Botones */
.pap-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px 14px;
  border-radius: 5px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.pap-btn:hover  { transform: translateY(-1px); }
.pap-btn:active { transform: scale(0.98); }

.pap-cart {
  background: linear-gradient(135deg, #C8972A, #e8b840);
  color: #080400;
  box-shadow: 0 4px 16px rgba(200,151,42,0.35);
}
.pap-cart:hover { box-shadow: 0 6px 22px rgba(200,151,42,0.5); }

.pap-wa {
  background: #1DB954;
  color: #fff;
  box-shadow: 0 4px 12px rgba(29,185,84,0.22);
}
.pap-wa:hover { background: #1ed760; }

.pap-info {
  background: transparent;
  color: rgba(250,246,238,0.72);
  border: 1px solid rgba(200,151,42,0.28);
}
.pap-info:hover { border-color: rgba(200,151,42,0.6); color: #C8972A; }

/* ─────────────────────────────────────────────
   MODAL INFO PRODUCTO
   ───────────────────────────────────────────── */

.pim-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(8px);
  z-index: 9500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.26s;
}
.pim-overlay.open { opacity: 1; pointer-events: all; }

.pim-box {
  background: #110900;
  border: 1px solid rgba(200,151,42,0.26);
  border-radius: 14px;
  width: 100%;
  max-width: 500px;
  overflow: hidden;
  transform: translateY(22px);
  transition: transform 0.32s cubic-bezier(0.22,1,0.36,1);
}
.pim-overlay.open .pim-box { transform: translateY(0); }

.pim-hero {
  position: relative;
  height: 170px;
}
.pim-hero img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pim-hero-fade {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 30%, #110900 100%);
}
.pim-close-btn {
  position: absolute;
  top: 11px; right: 11px;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50%;
  width: 30px; height: 30px;
  color: #fff; font-size: 15px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.pim-close-btn:hover { background: rgba(200,151,42,0.45); }

.pim-body {
  padding: 18px 22px 24px;
}
.pim-tag { font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: #C8972A; margin-bottom: 3px; }
.pim-title { font-size: 1.3rem; font-weight: 800; color: #FAF6EE; margin-bottom: 8px; }
.pim-text { font-size: 0.8rem; color: rgba(250,246,238,0.6); line-height: 1.6; margin-bottom: 14px; }

.pim-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-bottom: 16px;
}
.pim-s {
  background: rgba(200,151,42,0.07);
  border: 1px solid rgba(200,151,42,0.14);
  border-radius: 7px;
  padding: 9px 11px;
}
.pim-s-k {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #C8972A;
  margin-bottom: 2px;
}
.pim-s-v { display: block; font-size: 0.78rem; color: #FAF6EE; font-weight: 600; }

.pim-actions { display: flex; gap: 8px; }
.pim-actions .pap-btn { flex: 1; }

/* ─────────────────────────────────────────────
   CARRITO — pantalla completa
   ───────────────────────────────────────────── */

#carrito-page {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 8000;
  background: #070300;
  overflow-y: auto;
}
#carrito-page.open { display: block; }

.crt-bar {
  position: sticky; top: 0;
  background: rgba(7,3,0,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(200,151,42,0.14);
  padding: 13px 26px;
  display: flex; align-items: center; justify-content: space-between;
  z-index: 10;
}
.crt-bar-logo { font-weight: 900; font-size: 0.95rem; letter-spacing: 0.2em; color: #C8972A; }
.crt-bar-back {
  display: flex; align-items: center; gap: 6px;
  background: none;
  border: 1px solid rgba(200,151,42,0.26);
  color: rgba(250,246,238,0.7);
  border-radius: 4px;
  padding: 7px 15px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  cursor: pointer;
  transition: all 0.18s;
}
.crt-bar-back:hover { border-color: #C8972A; color: #C8972A; }

.crt-body {
  max-width: 840px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}
.crt-h1 { font-size: clamp(1.7rem,4vw,2.5rem); font-weight: 800; color: #FAF6EE; margin-bottom: 4px; }
.crt-h1 em { color: #C8972A; font-style: normal; }
.crt-sub { font-size: 0.8rem; color: rgba(250,246,238,0.4); margin-bottom: 30px; }

.crt-layout { display: grid; grid-template-columns: 1fr 300px; gap: 22px; align-items: start; }
@media (max-width: 640px) { .crt-layout { grid-template-columns: 1fr; } }

.crt-list { display: flex; flex-direction: column; gap: 11px; }

/* Item */
.ci {
  background: rgba(200,151,42,0.05);
  border: 1px solid rgba(200,151,42,0.13);
  border-radius: 10px;
  padding: 15px;
  display: flex; gap: 13px; align-items: flex-start;
  transition: border-color 0.2s;
}
.ci:hover { border-color: rgba(200,151,42,0.28); }
.ci > img { width: 64px; height: 64px; border-radius: 7px; object-fit: cover; flex-shrink: 0; border: 1px solid rgba(200,151,42,0.16); }
.ci-info { flex: 1; }
.ci-name { font-weight: 700; color: #FAF6EE; font-size: 0.88rem; margin-bottom: 1px; }
.ci-sub2 { font-size: 0.7rem; color: rgba(250,246,238,0.42); margin-bottom: 9px; }

.ci-aromas { display: flex; gap: 4px; flex-wrap: wrap; margin-bottom: 9px; }
.ci-ar {
  background: rgba(200,151,42,0.08);
  border: 1px solid rgba(200,151,42,0.18);
  border-radius: 3px;
  padding: 3px 8px;
  font-size: 0.62rem;
  color: rgba(250,246,238,0.6);
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: all 0.14s;
}
.ci-ar:hover,.ci-ar.sel { background: rgba(200,151,42,0.2); border-color: #C8972A; color: #C8972A; }

.ci-row { display: flex; align-items: center; gap: 9px; }
.ci-qty-box { display: flex; align-items: center; border: 1px solid rgba(200,151,42,0.2); border-radius: 4px; overflow: hidden; }
.ci-qty-box button { background: rgba(200,151,42,0.1); border: none; color: #FAF6EE; width: 27px; height: 27px; font-size: 1rem; cursor: pointer; font-family: 'Poppins', sans-serif; transition: background 0.13s; }
.ci-qty-box button:hover { background: rgba(200,151,42,0.22); }
.ci-qty-n { width: 32px; text-align: center; font-size: 0.82rem; color: #FAF6EE; font-weight: 700; }
.ci-del { background: none; border: 1px solid rgba(255,65,65,0.2); border-radius: 3px; color: rgba(255,85,85,0.6); font-size: 0.62rem; font-family: 'Poppins', sans-serif; padding: 3px 8px; cursor: pointer; transition: all 0.14s; }
.ci-del:hover { border-color: #ff5050; color: #ff5050; background: rgba(255,50,50,0.07); }

/* Sidebar */
.crt-side { background: rgba(200,151,42,0.05); border: 1px solid rgba(200,151,42,0.16); border-radius: 11px; padding: 20px; position: sticky; top: 72px; }
.crt-side-ttl { font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(250,246,238,0.4); margin-bottom: 12px; }
.crt-row { display: flex; justify-content: space-between; font-size: 0.78rem; padding: 6px 0; border-bottom: 1px solid rgba(200,151,42,0.08); color: rgba(250,246,238,0.55); }
.crt-row b { color: #FAF6EE; font-weight: 600; }
.crt-total { display: flex; justify-content: space-between; align-items: center; padding: 12px 0 14px; margin-top: 4px; }
.crt-total span { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(250,246,238,0.45); }
.crt-total strong { font-size: 1.25rem; color: #C8972A; }

.crt-notes { width: 100%; background: rgba(255,255,255,0.03); border: 1px solid rgba(200,151,42,0.16); border-radius: 5px; color: #FAF6EE; font-family: 'Poppins', sans-serif; font-size: 0.76rem; padding: 8px 10px; resize: none; min-height: 60px; margin-bottom: 11px; transition: border-color 0.2s; }
.crt-notes:focus { outline: none; border-color: rgba(200,151,42,0.42); }
.crt-notes::placeholder { color: rgba(250,246,238,0.25); }

.crt-wa { display: flex; align-items: center; justify-content: center; gap: 7px; width: 100%; padding: 13px; background: linear-gradient(135deg,#C8972A,#e8b840); color: #070300; font-family: 'Poppins', sans-serif; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; border: none; border-radius: 6px; cursor: pointer; text-decoration: none; transition: all 0.2s; box-shadow: 0 5px 16px rgba(200,151,42,0.3); }
.crt-wa:hover { transform: translateY(-2px); box-shadow: 0 9px 24px rgba(200,151,42,0.4); }
.crt-footnote { font-size: 0.62rem; color: rgba(250,246,238,0.28); text-align: center; margin-top: 8px; line-height: 1.5; }

.crt-empty { text-align: center; padding: 52px 20px; color: rgba(250,246,238,0.28); }
.crt-empty-ico { font-size: 2.6rem; margin-bottom: 12px; }
.crt-empty p { font-size: 0.84rem; margin-bottom: 16px; }
.crt-back-btn { background: none; border: 1px solid rgba(200,151,42,0.34); color: #C8972A; padding: 9px 20px; border-radius: 4px; cursor: pointer; font-family: 'Poppins', sans-serif; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; }

/* FAB carrito */
.hb-fab {
  position: fixed;
  bottom: 90px; left: 20px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg,#C8972A,#e8b840);
  color: #070300;
  border: none; cursor: pointer;
  box-shadow: 0 6px 20px rgba(200,151,42,0.4);
  display: flex; align-items: center; justify-content: center;
  z-index: 7000;
  transition: transform 0.2s, box-shadow 0.2s;
}
.hb-fab:hover { transform: scale(1.08); box-shadow: 0 10px 28px rgba(200,151,42,0.52); }
.hb-fab-badge {
  position: absolute; top: -3px; right: -3px;
  background: #ff3f3f; color: #fff;
  border-radius: 50%; width: 18px; height: 18px;
  font-size: 0.62rem; font-weight: 800;
  font-family: 'Poppins', sans-serif;
  display: none; align-items: center; justify-content: center;
}

/* ─────────────────────────────────────────────
   VIDEOS DE CLIENTES — grid limpio con player modal
   (Reemplaza la sección de videos previa)
   ───────────────────────────────────────────── */

/* Ocultar la sección duplicada que generamos antes */
#resenas-split { display: none !important; }

.testi-vids {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
  margin-top: 26px;
}
@media (max-width: 600px) { .testi-vids { grid-template-columns: 1fr 1fr; } }

.tv-card {
  background: rgba(200,151,42,0.05);
  border: 1px solid rgba(200,151,42,0.15);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.24s, border-color 0.24s;
}
.tv-card:hover { transform: translateY(-4px); border-color: rgba(200,151,42,0.38); }

.tv-thumb {
  position: relative;
  aspect-ratio: 9/14;
  background: #1a0d00;
  overflow: hidden;
}
.tv-thumb video { width: 100%; height: 100%; object-fit: cover; display: block; }
.tv-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.28);
  transition: background 0.2s;
}
.tv-card:hover .tv-overlay { background: rgba(0,0,0,0.1); }
.tv-play {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(200,151,42,0.88);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(200,151,42,0.4);
  transition: transform 0.2s;
}
.tv-card:hover .tv-play { transform: scale(1.1); }
.tv-badge {
  position: absolute; bottom: 9px; left: 9px;
  background: rgba(200,151,42,0.92);
  color: #070300; font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 3px 7px; border-radius: 3px;
}
.tv-info { padding: 10px 12px; }
.tv-stars { color: #C8972A; font-size: 0.68rem; margin-bottom: 2px; }
.tv-desc { font-size: 0.72rem; color: rgba(250,246,238,0.6); }

/* Modal de video */
.vid-modal {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 9900;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.22s;
}
.vid-modal.open { opacity: 1; pointer-events: all; }
.vid-modal-inner { position: relative; width: 100%; max-width: 340px; }
.vid-modal-inner video { width: 100%; border-radius: 10px; display: block; max-height: 80vh; }
.vid-modal-x {
  position: absolute; top: -13px; right: -13px;
  background: #C8972A; border: none; border-radius: 50%;
  width: 32px; height: 32px; color: #070300; font-size: 17px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 12px rgba(200,151,42,0.4);
}