/* =========================================================
   BINKU - INFORMACIÓN, REDES, COMENTARIOS Y PROMOCIÓN
   CSS COMPLETO RESPONSIVE
========================================================= */

/* =========================================================
   VARIABLES Y CONTENEDOR GENERAL
========================================================= */
.binku-unified-content {
  --binku-primary: #2563eb;
  --binku-primary-dark: #1e40af;
  --binku-green: #317348;
  --binku-green-soft: #edf8f0;
  --binku-red: #b51632;
  --binku-red-dark: #941128;
  --binku-text: #172033;
  --binku-muted: #64748b;
  --binku-border: #dfe6ee;
  --binku-soft: #f8fafc;
  --binku-radius: 18px;
  --binku-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);

  width: min(calc(100% - 32px), 1320px);
  margin: 0 auto;
  padding: 10px 0 28px;
}

.binku-unified-content *,
.binku-unified-content *::before,
.binku-unified-content *::after {
  box-sizing: border-box;
}

.binku-unified-content img {
  max-width: 100%;
}

/* =========================================================
   GRILLA PRINCIPAL
========================================================= */
.binku-unified-grid {
  width: 100%;
  display: grid;
  gap: 18px;
}

/* Escritorio grande: 3 módulos en una línea */
.binku-unified-grid--three {
  grid-template-columns:
    minmax(300px, 1.05fr)
    minmax(260px, 0.85fr)
    minmax(360px, 1.35fr);
  align-items: stretch;
  margin: 22px 0 20px;
}

.binku-unified-grid--three > .binku-card,
.binku-unified-grid--three > .binku-module {
  width: 100%;
  min-width: 0;
  height: 100%;
}

.binku-module,
.binku-card {
  min-width: 0;
}

/* =========================================================
   TARJETAS GENERALES
========================================================= */
.binku-card,
.binku-info-module {
  min-height: 285px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--binku-border);
  border-radius: var(--binku-radius);
  box-shadow: var(--binku-shadow);
  overflow: hidden;
}

/* =========================================================
   TÍTULO INFORMACIÓN
========================================================= */
.binku-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.binku-section-title__icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
}

.binku-section-title__icon--gallery {
  color: #9a6700;
  background: #fff4d6;
}

.binku-section-title__icon--info {
  color: var(--binku-primary);
  background: #eaf1ff;
}

.binku-section-title h5 {
  min-width: 0;
  margin: 0;
  color: #334155;
  font-size: 15px;
  font-weight: 850;
  letter-spacing: 0.035em;
  line-height: 1.25;
  text-transform: uppercase;
  white-space: nowrap;
}

.binku-section-title__line {
  height: 1px;
  min-width: 18px;
  flex-grow: 1;
  margin-left: 2px;
  background: #e5e7eb;
}

/* =========================================================
   GALERÍA
========================================================= */
.story-main {
  width: 100%;
  height: 290px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  background: var(--binku-soft);
  border: 1px solid var(--binku-border);
  border-radius: var(--binku-radius);
  box-shadow: var(--binku-shadow);
}

.story-main::after {
  content: "\f00e";
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(15, 23, 42, 0.66);
  border-radius: 50%;
  font-family: "Font Awesome 6 Free";
  font-size: 13px;
  font-weight: 900;
  pointer-events: none;
}

.story-main img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.story-main:hover img {
  transform: scale(1.02);
}

.story-dots {
  min-height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px;
  padding-top: 4px;
}

.story-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  padding: 0;
  background: #cbd5e1;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.2s ease;
}

.story-dot:hover {
  background: #94a3b8;
  transform: scale(1.15);
}

.story-dot.active {
  width: 22px;
  flex-basis: 22px;
  background: var(--binku-primary);
  border-radius: 999px;
}

/* =========================================================
   INFORMACIÓN EN LÍNEA DE TIEMPO
========================================================= */
.binku-info-module {
  position: relative;
}

.business-info-timeline {
  position: relative;
  padding-left: 46px;
}

.business-info-timeline::before {
  content: "";
  position: absolute;
  top: 17px;
  bottom: 16px;
  left: 16px;
  width: 2px;
  background: #dbe7ff;
  border-radius: 999px;
}

.info-timeline-block {
  position: relative;
  padding-bottom: 24px;
}

.info-timeline-block:last-child {
  padding-bottom: 0;
}

.info-timeline-dot {
  width: 34px;
  height: 34px;
  position: absolute;
  top: 0;
  left: -46px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--binku-primary);
  background: #edf4ff;
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #dbe7ff;
  font-size: 12px;
}

.info-timeline-content {
  min-width: 0;
  padding-top: 5px;
}

.info-timeline-content h6 {
  margin: 0 0 10px;
  color: #475569;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.035em;
  line-height: 1.35;
  text-transform: uppercase;
}

.schedule-clean-list {
  width: 100%;
}

.schedule-clean-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 10px 0;
  border-bottom: 1px solid #edf0f3;
}

.schedule-clean-row:last-child {
  border-bottom: 0;
}

.schedule-clean-day,
.schedule-clean-hour {
  min-width: 0;
  font-size: 12px;
  line-height: 1.45;
}

.schedule-clean-day {
  color: var(--binku-muted);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.schedule-clean-hour {
  color: #1e293b;
  font-weight: 850;
  text-align: right;
  white-space: nowrap;
}

.info-timeline-address {
  margin: 0 0 12px;
  color: #334155;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.info-timeline-button {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 7px 13px;
  color: #1d4ed8;
  background: #eef4ff;
  border: 1px solid #dbe7ff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  transition: 0.2s ease;
}

.info-timeline-button:hover {
  color: #fff;
  background: var(--binku-primary);
  text-decoration: none;
  transform: translateY(-1px);
}

/* =========================================================
   CONECTA CON NOSOTROS
========================================================= */
.business-links-card__header {
  margin-bottom: 18px;
}

.business-links-card__badge,
.comments-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 7px;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.business-links-card__badge {
  color: var(--binku-green);
  background: var(--binku-green-soft);
  border: 1px solid #d8eedf;
}

.comments-card__badge {
  color: #1e3a8a;
  background: #eef3ff;
  border: 1px solid #dbe5ff;
}

.business-links-card__header h3,
.comments-card__title h3 {
  margin: 0;
  color: var(--binku-text);
  font-size: 20px;
  font-weight: 850;
  line-height: 1.2;
  overflow-wrap: normal;
  word-break: normal;
}

.business-links-card__header p,
.comments-card__title p {
  margin: 7px 0 0;
  color: var(--binku-muted);
  font-size: 12px;
  line-height: 1.55;
  overflow-wrap: normal;
  word-break: normal;
}

.delivery-icons {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 12px;
}

.delivery-icon-link {
  display: block;
  color: inherit;
  text-decoration: none;
  border-radius: 14px;
  outline: none;
}

.delivery-icon-link:focus-visible {
  outline: 3px solid rgba(49, 115, 72, 0.2);
  outline-offset: 3px;
}

.icon-wrapper {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dfe6e2;
  border-radius: 14px;
  box-shadow: 0 6px 15px rgba(15, 23, 42, 0.09);
  transition: 0.2s ease;
}

.icon-wrapper img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: inherit;
}

.delivery-icon-link:hover .icon-wrapper {
  border-color: rgba(49, 115, 72, 0.35);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.13);
  transform: translateY(-2px);
}

/* =========================================================
   COMENTARIOS
========================================================= */
.comments-card {
  display: flex;
  flex-direction: column;
}

.comments-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.comments-card__title {
  min-width: 0;
  flex: 1 1 auto;
}

.comments-card__actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}

#btnToggleComentarios {
  min-height: 36px;
  padding: 8px 14px !important;
  color: #fff !important;
  background: #1e3a8a !important;
  border: 0 !important;
  border-radius: 10px !important;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 5px 13px rgba(30, 58, 138, 0.22);
  transition: 0.2s ease;
}

#btnToggleComentarios:hover {
  background: #172f72 !important;
  box-shadow: 0 7px 17px rgba(30, 58, 138, 0.3);
  transform: translateY(-1px);
}

.comments-card .btn-outline-primary {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 13px !important;
  color: #475569 !important;
  background: var(--binku-soft) !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 10px !important;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  transition: 0.2s ease;
}

.comments-card .btn-outline-primary:hover {
  color: #fff !important;
  background: #1e3a8a !important;
  transform: translateY(-1px);
}

#comentarios.row {
  width: 100%;
  margin: 10px 0 0 !important;
}

/* Evita que las tarjetas de comentarios se salgan */
#comentarios > * {
  min-width: 0;
  max-width: 100%;
}

#comentarios img {
  max-width: 100%;
  height: auto;
}

.comments-card__list {
  overflow: hidden;
}

.comments-card__pagination {
  display: flex;
  justify-content: center;
  margin-top: auto;
  padding-top: 16px;
}

#pagination-controls {
  min-height: 38px;
  max-width: 100%;
  padding: 5px 7px;
  background: var(--binku-soft);
  border: 1px solid #e2e8f0;
  border-radius: 11px;
}

#pagination-controls .btn {
  min-width: 32px;
  min-height: 30px;
  padding: 5px 8px !important;
  color: #1e3a8a !important;
  background: transparent !important;
  border: 0 !important;
  font-size: 11px;
  font-weight: 750;
}

#pagination-controls .btn:hover:not(:disabled) {
  background: #e8eefc !important;
  border-radius: 8px;
}

#pagination-controls .btn:disabled {
  color: #a5afbd !important;
  opacity: 0.65;
}

#page-info {
  margin: 0 8px !important;
  font-size: 11px !important;
  white-space: nowrap;
}

/* =========================================================
   PUBLICIDAD BINKU
========================================================= */
.binku-promo {
  width: min(100%, 820px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  margin: 0 auto 18px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid #e7e9ee;
  border-radius: 16px;
  box-shadow: 0 5px 16px rgba(15, 23, 42, 0.055);
}

.binku-promo__icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--binku-red);
  background: #f8ecef;
  border-radius: 50%;
  font-size: 16px;
}

.binku-promo__content {
  min-width: 0;
}

.binku-promo__kicker {
  display: block;
  margin-bottom: 3px;
  color: var(--binku-red);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.07em;
  line-height: 1.2;
  text-transform: uppercase;
}

.binku-promo__content strong {
  display: block;
  margin-bottom: 3px;
  color: var(--binku-text);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.3;
}

.binku-promo__content p {
  margin: 0;
  color: var(--binku-muted);
  font-size: 11px;
  line-height: 1.45;
}

.binku-promo__button {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 14px;
  color: #fff;
  background: var(--binku-red);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: 0.2s ease;
}

.binku-promo__button:hover {
  color: #fff;
  background: var(--binku-red-dark);
  text-decoration: none;
  transform: translateY(-1px);
}

/* =========================================================
   NOTEBOOK / TABLET HORIZONTAL
   Información y redes arriba; comentarios ocupa todo abajo
========================================================= */
@media (max-width: 1100px) {
  .binku-unified-content {
    width: min(calc(100% - 28px), 1000px);
  }

  .binku-unified-grid--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .binku-unified-grid--three > .comments-card {
    grid-column: 1 / -1;
  }

  .binku-card,
  .binku-info-module {
    min-height: auto;
  }
}

/* =========================================================
   TABLET VERTICAL Y MÓVIL
   Todos los módulos uno debajo del otro
========================================================= */
@media (max-width: 767.98px) {
  .binku-unified-content {
    width: calc(100% - 24px);
    padding: 6px 0 22px;
  }

  .binku-unified-grid {
    gap: 14px;
  }

  .binku-unified-grid--three {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    margin: 16px 0;
  }

  .binku-unified-grid--three > .comments-card {
    grid-column: auto;
  }

  .binku-card,
  .binku-info-module {
    width: 100%;
    min-height: auto;
    padding: 18px;
    border-radius: 16px;
  }

  .binku-section-title {
    margin-bottom: 16px;
  }

  .binku-section-title h5 {
    font-size: 14px;
  }

  .business-info-timeline {
    padding-left: 43px;
  }

  .business-info-timeline::before {
    left: 15px;
  }

  .info-timeline-dot {
    left: -43px;
    width: 32px;
    height: 32px;
  }

  .info-timeline-content h6 {
    font-size: 12px;
  }

  .schedule-clean-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
  }

  .schedule-clean-day,
  .schedule-clean-hour {
    font-size: 12px;
  }

  .business-links-card__header h3,
  .comments-card__title h3 {
    font-size: 19px;
  }

  .business-links-card__header p,
  .comments-card__title p {
    font-size: 12px;
  }

  .comments-card__header {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .comments-card__actions {
    width: 100%;
    justify-content: flex-start;
  }

  .icon-wrapper {
    width: 56px;
    height: 56px;
  }

  .binku-promo {
    width: 100%;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 11px;
    padding: 14px;
  }

  .binku-promo__button {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 38px;
  }
}

/* =========================================================
   MÓVIL PEQUEÑO
========================================================= */
@media (max-width: 480px) {
  .binku-unified-content {
    width: calc(100% - 18px);
  }

  .binku-card,
  .binku-info-module {
    padding: 15px;
  }

  .binku-section-title__icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .binku-section-title h5 {
    font-size: 13px;
    white-space: normal;
  }

  .business-info-timeline {
    padding-left: 40px;
  }

  .business-info-timeline::before {
    left: 14px;
  }

  .info-timeline-dot {
    left: -40px;
    width: 30px;
    height: 30px;
    font-size: 11px;
  }

  .schedule-clean-row {
    grid-template-columns: 1fr;
    gap: 3px;
    padding: 9px 0;
  }

  .schedule-clean-hour {
    text-align: left;
    white-space: normal;
  }

  .business-links-card__header h3,
  .comments-card__title h3 {
    font-size: 18px;
  }

  .delivery-icons {
    gap: 10px;
  }

  .icon-wrapper {
    width: 54px;
    height: 54px;
  }

  .comments-card__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  #btnToggleComentarios,
  .comments-card .btn-outline-primary {
    width: 100%;
    min-width: 0;
    padding-right: 8px !important;
    padding-left: 8px !important;
    font-size: 11px;
  }

  #pagination-controls {
    width: 100%;
    justify-content: space-between;
  }

  .binku-promo__content strong {
    font-size: 14px;
  }

  .binku-promo__content p {
    font-size: 10px;
  }
}

/* =========================================================
   MÓVIL MUY ANGOSTO
========================================================= */
@media (max-width: 360px) {
  .comments-card__actions {
    grid-template-columns: 1fr;
  }

  .delivery-icons {
    justify-content: flex-start;
  }

  .binku-promo {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .binku-promo__icon {
    margin-bottom: 2px;
  }

  .binku-promo__button {
    grid-column: auto;
  }
}


/* =========================================================
   BINKU — GALERÍA PREMIUM V2
   Capa final, aislada y compatible con el CSS existente
========================================================= */

.binku-gallery-premium {
  --gallery-brand: #9f1d32;
  --gallery-brand-dark: #741322;
  --gallery-brand-soft: #f9eaed;
  --gallery-text: #17191d;
  --gallery-muted: #737983;
  --gallery-border: #e7e8eb;
  --gallery-surface: #ffffff;
  --gallery-bg: #f7f7f8;

  position: relative;
  width: 100%;
  margin: 22px 0 28px;
  padding: 24px;
  border: 1px solid var(--gallery-border);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(159, 29, 50, .065), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fbfbfc 100%);
  box-shadow:
    0 1px 1px rgba(17, 24, 39, .02),
    0 18px 45px rgba(17, 24, 39, .065);
  outline: none;
  overflow: hidden;
}

.binku-gallery-premium::before {
  content: "";
  position: absolute;
  top: -110px;
  right: -90px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(159, 29, 50, .07);
  border-radius: 50%;
  pointer-events: none;
}

.binku-gallery-premium__header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.binku-gallery-premium__heading {
  min-width: 0;
}

.binku-gallery-premium__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 7px;
  color: var(--gallery-brand);
  font-size: 10px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.binku-gallery-premium__eyebrow i {
  font-size: 11px;
}

.binku-gallery-premium__heading h2 {
  margin: 0;
  color: var(--gallery-text);
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -.035em;
  overflow-wrap: anywhere;
}

.binku-gallery-premium__meta {
  flex: 0 0 auto;
}

.binku-gallery-premium__count {
  min-width: 54px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0 11px;
  border: 1px solid var(--gallery-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, .88);
  color: #90959c;
  font-size: 11px;
  box-shadow: 0 4px 12px rgba(17, 24, 39, .04);
}

.binku-gallery-premium__count strong {
  color: var(--gallery-text);
  font-size: 13px;
  font-weight: 850;
}


/* VISOR */
.binku-gallery-premium__stage {
  position: relative;
  width: 100%;
}

.binku-gallery-premium__ambient {
  position: absolute;
  inset: 12px 9% -12px;
  z-index: 0;
  border-radius: 28px;
  background: rgba(15, 23, 42, .12);
  filter: blur(26px);
  opacity: .36;
  pointer-events: none;
}

.binku-gallery-premium__main {
  position: relative;
  z-index: 1;
  width: 100%;
  height: clamp(330px, 46vw, 610px);
  display: block;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  background: #ececee;
  cursor: zoom-in;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .8) inset,
    0 14px 34px rgba(15, 23, 42, .11);
}

.binku-gallery-premium__main img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.001);
  opacity: 1;
  transition:
    opacity .22s ease,
    transform .65s cubic-bezier(.2, .75, .2, 1);
}

.binku-gallery-premium__main:hover img {
  transform: scale(1.025);
}

.binku-gallery-premium__main img.is-changing {
  opacity: .16;
  transform: scale(1.015);
}

.binku-gallery-premium__shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to top, rgba(10, 12, 16, .31) 0%, transparent 28%),
    linear-gradient(to bottom, rgba(10, 12, 16, .10) 0%, transparent 22%);
  pointer-events: none;
}

.binku-gallery-premium__expand {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 4;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, .36);
  border-radius: 999px;
  background: rgba(17, 20, 25, .54);
  color: #fff;
  font-size: 11px;
  font-weight: 750;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
  transition: .2s ease;
}

.binku-gallery-premium__main:hover .binku-gallery-premium__expand {
  background: rgba(17, 20, 25, .72);
  transform: translateY(-2px);
}

.binku-gallery-premium__mobile-counter {
  display: none;
}


/* FLECHAS */
.binku-gallery-premium__nav {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .54);
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: #24272d;
  font-size: 13px;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(15, 23, 42, .16);
  transform: translateY(-50%);
  transition:
    background .2s ease,
    color .2s ease,
    transform .2s ease,
    box-shadow .2s ease;
}

.binku-gallery-premium__nav:hover {
  background: var(--gallery-brand);
  color: #fff;
  box-shadow: 0 12px 30px rgba(159, 29, 50, .25);
}

.binku-gallery-premium__nav--prev {
  left: 16px;
}

.binku-gallery-premium__nav--next {
  right: 16px;
}

.binku-gallery-premium__nav--prev:hover {
  transform: translateY(-50%) translateX(-2px);
}

.binku-gallery-premium__nav--next:hover {
  transform: translateY(-50%) translateX(2px);
}


/* MINIATURAS */


/* ACCESIBILIDAD */
.binku-gallery-premium:focus-visible {
  box-shadow:
    0 0 0 4px rgba(159, 29, 50, .10),
    0 18px 45px rgba(17, 24, 39, .065);
}

.binku-gallery-premium__main:focus-visible,
.binku-gallery-premium__nav:focus-visible,
.binku-gallery-premium__thumb:focus-visible {
  outline: 3px solid rgba(159, 29, 50, .24);
  outline-offset: 3px;
}


/* TABLET */
@media (max-width: 900px) {
  .binku-gallery-premium {
    padding: 20px;
    border-radius: 24px;
  }

  .binku-gallery-premium__main {
    height: clamp(320px, 58vw, 520px);
    border-radius: 19px;
  }
}


/* MÓVIL */
@media (max-width: 767.98px) {
  .binku-unified-content {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
  }

  .binku-gallery-premium {
    margin: 14px 0 20px;
    padding: 0;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    overflow: visible;
  }

  .binku-gallery-premium::before {
    display: none;
  }

  .binku-gallery-premium__header {
    align-items: center;
    margin-bottom: 13px;
    padding: 0 16px;
  }

  .binku-gallery-premium__eyebrow {
    margin-bottom: 5px;
    font-size: 9px;
  }

  .binku-gallery-premium__heading h2 {
    font-size: 23px;
  }

  .binku-gallery-premium__meta {
    display: none;
  }

  .binku-gallery-premium__ambient {
    display: none;
  }

  .binku-gallery-premium__main {
    height: min(78vw, 410px);
    min-height: 285px;
    border-radius: 0;
    box-shadow: none;
  }

  .binku-gallery-premium__main:hover img {
    transform: none;
  }

  .binku-gallery-premium__expand {
    right: 13px;
    bottom: 13px;
    width: 38px;
    height: 38px;
    min-height: 38px;
    justify-content: center;
    padding: 0;
  }

  .binku-gallery-premium__expand span {
    display: none;
  }

  .binku-gallery-premium__mobile-counter {
    position: absolute;
    left: 13px;
    bottom: 13px;
    z-index: 4;
    min-width: 42px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 9px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 999px;
    background: rgba(15, 17, 21, .52);
    color: #fff;
    font-size: 10px;
    font-weight: 750;
    backdrop-filter: blur(8px);
  }

  .binku-gallery-premium__nav {
    width: 38px;
    height: 48px;
    border: 0;
    border-radius: 0 14px 14px 0;
    background: rgba(255, 255, 255, .90);
    font-size: 11px;
    box-shadow: 0 7px 18px rgba(15, 23, 42, .12);
  }

  .binku-gallery-premium__nav--prev {
    left: 0;
  }

  .binku-gallery-premium__nav--next {
    right: 0;
    border-radius: 14px 0 0 14px;
  }

  .binku-gallery-premium__thumbs {
    gap: 7px;
    margin-top: 9px;
    padding: 3px 16px 7px;
    scrollbar-width: none;
  }

  .binku-gallery-premium__thumbs::-webkit-scrollbar {
    display: none;
  }

  .binku-gallery-premium__thumb {
    width: 72px;
    height: 55px;
    flex-basis: 72px;
    border-width: 2px;
    border-radius: 10px;
  }

  .binku-gallery-premium__thumb-number {
    display: none;
  }
}


/* MÓVIL PEQUEÑO */
@media (max-width: 420px) {
  .binku-gallery-premium__header {
    padding: 0 13px;
  }

  .binku-gallery-premium__heading h2 {
    font-size: 21px;
  }

  .binku-gallery-premium__main {
    height: 82vw;
    min-height: 270px;
    max-height: 350px;
  }

  .binku-gallery-premium__thumbs {
    padding-right: 13px;
    padding-left: 13px;
  }

  .binku-gallery-premium__thumb {
    width: 66px;
    height: 51px;
    flex-basis: 66px;
  }
}


/* MOVIMIENTO REDUCIDO */
@media (prefers-reduced-motion: reduce) {
  .binku-gallery-premium *,
  .binku-gallery-premium *::before,
  .binku-gallery-premium *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}

/* =========================================================
   BINKU — GALERÍA EDITORIAL V3
   IMPORTANTE:
   Esta capa se agrega AL FINAL del CSS existente.
   No elimina ni reemplaza estilos de información, redes,
   comentarios, paginación, promoción u otros módulos.
========================================================= */

.binku-editorial-gallery {
  --eg-brand: #9f1d32;
  --eg-brand-dark: #731526;
  --eg-text: #16181c;
  --eg-muted: #7d838b;
  --eg-border: #e7e8eb;

  width: 100%;
  margin: 26px 0 34px;
  padding: 28px;
  border: 1px solid var(--eg-border);
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 0, rgba(159,29,50,.055), transparent 26%),
    #fff;
  box-shadow: 0 24px 60px rgba(20,24,30,.07);
  outline: none;
}

.binku-editorial-gallery *,
.binku-editorial-gallery *::before,
.binku-editorial-gallery *::after {
  box-sizing: border-box;
}

.binku-editorial-gallery__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.binku-editorial-gallery__kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 7px;
  color: var(--eg-brand);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.binku-editorial-gallery__head h2 {
  margin: 0;
  color: var(--eg-text);
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.04em;
}

.binku-editorial-gallery__counter {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #9a9fa6;
  font-variant-numeric: tabular-nums;
}

.binku-editorial-gallery__counter strong {
  color: var(--eg-text);
  font-size: 20px;
  font-weight: 800;
}

.binku-editorial-gallery__counter span {
  width: 42px;
  height: 1px;
  background: #d9dce0;
}

.binku-editorial-gallery__counter small {
  font-size: 11px;
  font-weight: 700;
}

/* LAYOUT EDITORIAL */
.binku-editorial-gallery__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 154px;
  gap: 14px;
  min-height: 560px;
}

.binku-editorial-gallery__hero {
  position: relative;
  min-width: 0;
}

.binku-editorial-gallery__hero-button {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 560px;
  display: block;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 24px;
  background: #ececee;
  cursor: zoom-in;
  box-shadow: 0 18px 45px rgba(15,23,42,.13);
}

.binku-editorial-gallery__hero-button img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.001);
  opacity: 1;
  transition:
    opacity .22s ease,
    transform .7s cubic-bezier(.2,.72,.18,1);
}

.binku-editorial-gallery__hero-button:hover img {
  transform: scale(1.025);
}

.binku-editorial-gallery__hero-button img.is-leaving {
  opacity: .12;
  transform: scale(1.018);
}

.binku-editorial-gallery__hero-button img.is-entering {
  transform: scale(1.01);
}

.binku-editorial-gallery__gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(11,13,17,.38), transparent 34%),
    linear-gradient(to right, rgba(11,13,17,.08), transparent 24%);
  pointer-events: none;
}

.binku-editorial-gallery__index {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 3;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  background: rgba(14,16,20,.42);
  color: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.binku-editorial-gallery__index b {
  font-size: 11px;
  letter-spacing: .06em;
}

.binku-editorial-gallery__zoom {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  background: rgba(14,16,20,.42);
  color: #fff;
  font-size: 13px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: .2s ease;
}

.binku-editorial-gallery__hero-button:hover .binku-editorial-gallery__zoom {
  background: var(--eg-brand);
  transform: rotate(6deg) scale(1.05);
}

/* RIEL LATERAL */
.binku-editorial-gallery__rail {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.binku-editorial-gallery__rail-label {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #8d939a;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.binku-editorial-gallery__rail-list {
  min-height: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 9px;
  overflow-y: auto;
  padding-right: 2px;
  scrollbar-width: none;
}

.binku-editorial-gallery__rail-list::-webkit-scrollbar {
  display: none;
}

.binku-editorial-gallery__thumb {
  position: relative;
  width: 100%;
  height: 108px;
  flex: 0 0 108px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 16px;
  background: #eceef0;
  cursor: pointer;
  opacity: .55;
  transform: translateX(0);
  transition:
    opacity .22s ease,
    transform .22s ease,
    box-shadow .22s ease;
}

.binku-editorial-gallery__thumb:hover {
  opacity: .88;
  transform: translateX(-3px);
}

.binku-editorial-gallery__thumb.is-active {
  opacity: 1;
  transform: translateX(-7px);
  box-shadow:
    7px 0 0 var(--eg-brand),
    0 10px 24px rgba(15,23,42,.13);
}

.binku-editorial-gallery__thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.binku-editorial-gallery__thumb-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,12,16,.42), transparent 58%);
  pointer-events: none;
}

.binku-editorial-gallery__thumb-index {
  position: absolute;
  left: 9px;
  bottom: 8px;
  z-index: 2;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
}

.binku-editorial-gallery__mobile-actions {
  display: none;
}

/* FOCUS */
.binku-editorial-gallery:focus-visible,
.binku-editorial-gallery__hero-button:focus-visible,
.binku-editorial-gallery__thumb:focus-visible,
.binku-editorial-gallery__mobile-actions button:focus-visible {
  outline: 3px solid rgba(159, 29, 50, .22);
  outline-offset: 3px;
}

/* TABLET */
@media (max-width: 980px) {
  .binku-editorial-gallery {
    padding: 22px;
    border-radius: 26px;
  }

  .binku-editorial-gallery__layout {
    grid-template-columns: minmax(0, 1fr) 128px;
    min-height: 500px;
  }

  .binku-editorial-gallery__hero-button {
    min-height: 500px;
  }

  .binku-editorial-gallery__thumb {
    height: 94px;
    flex-basis: 94px;
  }
}

/* MÓVIL */
@media (max-width: 767.98px) {
  /* Mantiene el ancho general del .binku-unified-content
     definido arriba. No lo sobrescribimos a 100%. */

  .binku-editorial-gallery {
    margin: 14px 0 22px;
    padding: 14px;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(15,23,42,.06);
  }

  .binku-editorial-gallery__head {
    align-items: center;
    margin-bottom: 12px;
    padding: 0 2px;
  }

  .binku-editorial-gallery__head h2 {
    font-size: 24px;
  }

  .binku-editorial-gallery__counter {
    display: none;
  }

  .binku-editorial-gallery__layout {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 0;
  }

  .binku-editorial-gallery__hero {
    width: 100%;
  }

  .binku-editorial-gallery__hero-button {
    width: 100%;
    height: 72vw;
    min-height: 280px;
    max-height: 430px;
    margin: 0;
    border-radius: 18px;
  }

  .binku-editorial-gallery__hero-button:hover img {
    transform: none;
  }

  .binku-editorial-gallery__index {
    left: 14px;
    bottom: 14px;
    width: 42px;
    height: 42px;
  }

  .binku-editorial-gallery__zoom {
    right: 14px;
    bottom: 14px;
    width: 42px;
    height: 42px;
  }

  .binku-editorial-gallery__rail {
    width: 100%;
  }

  .binku-editorial-gallery__rail-label {
    display: none;
  }

  .binku-editorial-gallery__rail-list {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 104px;
    gap: 8px;
    width: 100%;
    padding: 0 1px 7px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .binku-editorial-gallery__rail-list::-webkit-scrollbar {
    display: none;
  }

  .binku-editorial-gallery__thumb {
    width: 104px;
    height: 72px;
    flex: none;
    border-radius: 14px;
    scroll-snap-align: start;
  }

  .binku-editorial-gallery__thumb:hover,
  .binku-editorial-gallery__thumb.is-active {
    transform: none;
  }

  .binku-editorial-gallery__thumb.is-active {
    box-shadow:
      0 4px 0 var(--eg-brand),
      0 7px 18px rgba(15,23,42,.11);
  }

  .binku-editorial-gallery__mobile-actions {
    position: absolute;
    left: 50%;
    bottom: 15px;
    z-index: 4;
    display: flex;
    gap: 7px;
    transform: translateX(-50%);
  }

  .binku-editorial-gallery__mobile-actions button {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(255,255,255,.38);
    border-radius: 50%;
    background: rgba(17,20,25,.50);
    color: #fff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
}

@media (max-width: 420px) {
  .binku-editorial-gallery {
    padding: 10px;
    border-radius: 18px;
  }

  .binku-editorial-gallery__head h2 {
    font-size: 22px;
  }

  .binku-editorial-gallery__hero-button {
    height: 78vw;
    min-height: 270px;
    max-height: 360px;
    border-radius: 16px;
  }

  .binku-editorial-gallery__rail-list {
    grid-auto-columns: 92px;
  }

  .binku-editorial-gallery__thumb {
    width: 92px;
    height: 66px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .binku-editorial-gallery *,
  .binku-editorial-gallery *::before,
  .binku-editorial-gallery *::after {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
}

/* =========================================================
   BINKU — SHOWCASE SOBRIO
   Capa aislada. No modifica los módulos existentes.
========================================================= */

.binku-showcase {
  --bs-brand: #9f1d32;
  --bs-text: #1c2025;
  --bs-muted: #737a83;
  --bs-border: #e6e8eb;
  --bs-soft: #f7f8f9;

  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  width: 100%;
  min-height: 430px;
  margin: 22px 0 30px;
  overflow: hidden;

  border: 1px solid var(--bs-border);
  border-radius: 22px;

  background: #fff;

  box-shadow:
    0 1px 2px rgba(15, 23, 42, .02),
    0 12px 32px rgba(15, 23, 42, .055);

  outline: none;
}

.binku-showcase *,
.binku-showcase *::before,
.binku-showcase *::after {
  box-sizing: border-box;
}


/* IMAGEN PRINCIPAL */
.binku-showcase__media {
  position: relative;
  min-width: 0;
  min-height: 430px;
  background: #eceeef;
}

.binku-showcase__main {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 430px;

  display: block;
  padding: 0;

  overflow: hidden;

  border: 0;
  background: #eceeef;

  cursor: zoom-in;
}

.binku-showcase__main img {
  width: 100%;
  height: 100%;

  display: block;
  object-fit: cover;

  opacity: 1;
  transform: scale(1.001);

  transition:
    opacity .22s ease,
    transform .55s ease;
}

.binku-showcase__main:hover img {
  transform: scale(1.018);
}

.binku-showcase__main img.is-changing {
  opacity: .18;
}

.binku-showcase__overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(to top, rgba(14,16,20,.22), transparent 34%);

  pointer-events: none;
}

.binku-showcase__zoom {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;

  width: 38px;
  height: 38px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(255,255,255,.4);
  border-radius: 50%;

  background: rgba(20,22,26,.42);
  color: #fff;

  font-size: 11px;

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.binku-showcase__counter-mobile,
.binku-showcase__mobile-nav {
  display: none;
}


/* CONTENIDO */
.binku-showcase__content {
  min-width: 0;

  display: flex;
  flex-direction: column;

  padding: 30px;
}

.binku-showcase__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

  margin-bottom: 15px;
}

.binku-showcase__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  color: var(--bs-brand);

  font-size: 9px;
  font-weight: 850;
  letter-spacing: .11em;
  line-height: 1;

  text-transform: uppercase;
}

.binku-showcase__counter {
  color: #a0a5ab;

  font-size: 10px;
  font-weight: 650;
  font-variant-numeric: tabular-nums;
}

.binku-showcase__counter strong {
  color: var(--bs-text);
  font-size: 12px;
}

.binku-showcase__content h2 {
  margin: 0;

  color: var(--bs-text);

  font-size: clamp(25px, 3vw, 36px);
  font-weight: 780;
  line-height: 1.06;
  letter-spacing: -.035em;
}

.binku-showcase__description {
  max-width: 470px;

  margin: 14px 0 0;

  color: var(--bs-muted);

  font-size: 13px;
  line-height: 1.65;
}


/* MINIATURAS DISCRETAS */
.binku-showcase__thumbs {
  display: flex;
  align-items: center;
  gap: 8px;

  width: 100%;

  margin-top: 24px;
  padding-bottom: 4px;

  overflow-x: auto;

  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.binku-showcase__thumbs::-webkit-scrollbar {
  display: none;
}

.binku-showcase__thumb {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;

  padding: 0;

  overflow: hidden;

  border: 2px solid transparent;
  border-radius: 11px;

  background: #eef0f2;

  cursor: pointer;

  opacity: .55;

  transition:
    opacity .18s ease,
    border-color .18s ease,
    transform .18s ease;
}

.binku-showcase__thumb:hover {
  opacity: .9;
}

.binku-showcase__thumb.is-active {
  opacity: 1;
  border-color: var(--bs-brand);
}

.binku-showcase__thumb img {
  width: 100%;
  height: 100%;

  display: block;
  object-fit: cover;
}


/* PIE */
.binku-showcase__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

  margin-top: auto;
  padding-top: 26px;
}

.binku-showcase__arrows {
  display: flex;
  gap: 7px;
}

.binku-showcase__arrows button {
  width: 36px;
  height: 36px;

  display: grid;
  place-items: center;

  padding: 0;

  border: 1px solid var(--bs-border);
  border-radius: 10px;

  background: #fff;
  color: #4d545c;

  font-size: 10px;

  cursor: pointer;

  transition: .18s ease;
}

.binku-showcase__arrows button:hover {
  border-color: #d8dade;
  background: var(--bs-soft);
  color: var(--bs-brand);
}

.binku-showcase__open {
  min-height: 36px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 0 13px;

  border: 1px solid var(--bs-border);
  border-radius: 10px;

  background: #fff;
  color: #4d545c;

  font-size: 10px;
  font-weight: 750;

  cursor: pointer;

  transition: .18s ease;
}

.binku-showcase__open:hover {
  color: var(--bs-brand);
  border-color: rgba(159,29,50,.2);
  background: #fcf7f8;
}


/* ACCESIBILIDAD */
.binku-showcase:focus-visible,
.binku-showcase button:focus-visible {
  outline: 3px solid rgba(159,29,50,.18);
  outline-offset: 3px;
}


/* TABLET */
@media (max-width: 950px) {
  .binku-showcase {
    grid-template-columns: minmax(0, 1fr) minmax(280px, .8fr);
    min-height: 390px;
  }

  .binku-showcase__media,
  .binku-showcase__main {
    min-height: 390px;
  }

  .binku-showcase__content {
    padding: 24px;
  }
}


/* MÓVIL */
@media (max-width: 767.98px) {
  .binku-showcase {
    display: block;

    min-height: 0;

    margin: 16px 0 22px;

    border-radius: 18px;

    box-shadow: 0 8px 22px rgba(15,23,42,.05);
  }

  .binku-showcase__media,
  .binku-showcase__main {
    min-height: 0;
  }

  .binku-showcase__main {
    height: 62vw;
    min-height: 250px;
    max-height: 390px;
  }

  .binku-showcase__main:hover img {
    transform: none;
  }

  .binku-showcase__content {
    padding: 20px;
  }

  .binku-showcase__content h2 {
    font-size: 25px;
  }

  .binku-showcase__description {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.55;
  }

  .binku-showcase__thumbs {
    margin-top: 18px;
  }

  .binku-showcase__thumb {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
    border-radius: 10px;
  }

  .binku-showcase__footer {
    padding-top: 20px;
  }

  .binku-showcase__arrows {
    display: none;
  }

  .binku-showcase__counter-mobile {
    position: absolute;
    left: 13px;
    bottom: 13px;
    z-index: 2;

    min-width: 38px;
    height: 28px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 8px;

    border-radius: 999px;

    background: rgba(18,20,24,.45);
    color: #fff;

    font-size: 9px;
    font-weight: 750;

    backdrop-filter: blur(8px);
  }

  .binku-showcase__mobile-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 4;

    display: flex;
    justify-content: space-between;

    pointer-events: none;

    transform: translateY(-50%);
  }

  .binku-showcase__mobile-nav button {
    width: 34px;
    height: 44px;

    display: grid;
    place-items: center;

    padding: 0;

    border: 0;

    background: rgba(255,255,255,.88);
    color: #30343a;

    font-size: 10px;

    pointer-events: auto;
  }

  .binku-showcase__mobile-nav button:first-child {
    border-radius: 0 10px 10px 0;
  }

  .binku-showcase__mobile-nav button:last-child {
    border-radius: 10px 0 0 10px;
  }
}


@media (max-width: 420px) {
  .binku-showcase__main {
    height: 68vw;
    min-height: 235px;
  }

  .binku-showcase__content {
    padding: 17px;
  }

  .binku-showcase__content h2 {
    font-size: 23px;
  }

  .binku-showcase__thumb {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }
}


@media (prefers-reduced-motion: reduce) {
  .binku-showcase *,
  .binku-showcase *::before,
  .binku-showcase *::after {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
}

/* =========================================================
   BINKU — GALERÍA MINIMAL FINAL
   Solo imagen + navegación + miniaturas.
   No modifica información, redes, comentarios ni paginación.
========================================================= */

.binku-gallery-clean {
  --gallery-clean-brand: #9f1d32;
  --gallery-clean-border: #e5e7eb;

  width: 100%;
  margin: 20px 0 28px;
  padding: 12px;

  background: #fff;
  border: 1px solid var(--gallery-clean-border);
  border-radius: 18px;

  box-shadow: 0 8px 24px rgba(15, 23, 42, .05);

  outline: none;
}

.binku-gallery-clean *,
.binku-gallery-clean *::before,
.binku-gallery-clean *::after {
  box-sizing: border-box;
}


.binku-gallery-clean__viewer {
  position: relative;
  width: 100%;

  overflow: hidden;

  border-radius: 14px;
  background: #f2f3f4;
}


.binku-gallery-clean__image {
  width: 100%;
  height: clamp(300px, 42vw, 520px);

  display: block;

  object-fit: cover;

  opacity: 1;

  transition:
    opacity .2s ease,
    transform .35s ease;
}

.binku-gallery-clean__image.is-changing {
  opacity: .15;
}


/* FLECHAS DISCRETAS */
.binku-gallery-clean__arrow {
  position: absolute;
  top: 50%;
  z-index: 3;

  width: 38px;
  height: 46px;

  display: grid;
  place-items: center;

  padding: 0;

  border: 0;

  background: rgba(255, 255, 255, .88);
  color: #34383e;

  font-size: 11px;

  cursor: pointer;

  transform: translateY(-50%);

  transition:
    background .18s ease,
    color .18s ease;
}

.binku-gallery-clean__arrow:hover {
  background: #fff;
  color: var(--gallery-clean-brand);
}

.binku-gallery-clean__arrow--prev {
  left: 0;
  border-radius: 0 10px 10px 0;
}

.binku-gallery-clean__arrow--next {
  right: 0;
  border-radius: 10px 0 0 10px;
}


/* CONTADOR */
.binku-gallery-clean__counter {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 3;

  min-width: 40px;
  height: 26px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 8px;

  border-radius: 999px;

  background: rgba(20, 22, 26, .48);
  color: #fff;

  font-size: 9px;
  font-weight: 700;

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}


/* MINIATURAS */
.binku-gallery-clean__thumbs {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 7px;

  width: 100%;

  margin-top: 10px;
  padding: 2px 0;

  overflow-x: auto;

  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.binku-gallery-clean__thumbs::-webkit-scrollbar {
  display: none;
}


.binku-gallery-clean__thumb {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;

  padding: 0;

  overflow: hidden;

  border: 2px solid transparent;
  border-radius: 10px;

  background: #f0f1f2;

  opacity: .55;

  cursor: pointer;

  transition:
    opacity .16s ease,
    border-color .16s ease;
}


.binku-gallery-clean__thumb:hover {
  opacity: .9;
}


.binku-gallery-clean__thumb.is-active {
  opacity: 1;
  border-color: var(--gallery-clean-brand);
}


.binku-gallery-clean__thumb img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
}


/* ACCESIBILIDAD */
.binku-gallery-clean:focus-visible,
.binku-gallery-clean button:focus-visible {
  outline: 3px solid rgba(159, 29, 50, .16);
  outline-offset: 3px;
}


/* MÓVIL */
@media (max-width: 767.98px) {

  .binku-gallery-clean {
    margin: 14px 0 20px;
    padding: 8px;

    border-radius: 14px;

    box-shadow: 0 5px 16px rgba(15, 23, 42, .045);
  }


  .binku-gallery-clean__viewer {
    border-radius: 11px;
  }


  .binku-gallery-clean__image {
    height: 66vw;
    min-height: 240px;
    max-height: 380px;
  }


  .binku-gallery-clean__arrow {
    width: 32px;
    height: 42px;

    font-size: 10px;
  }


  .binku-gallery-clean__thumbs {
    justify-content: flex-start;

    gap: 6px;

    margin-top: 8px;
  }


  .binku-gallery-clean__thumb {
    width: 48px;
    height: 48px;
    flex-basis: 48px;

    border-radius: 9px;
  }

}


@media (max-width: 420px) {

  .binku-gallery-clean {
    padding: 6px;
  }


  .binku-gallery-clean__image {
    height: 70vw;
    min-height: 225px;
  }


  .binku-gallery-clean__thumb {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

}


@media (prefers-reduced-motion: reduce) {

  .binku-gallery-clean *,
  .binku-gallery-clean *::before,
  .binku-gallery-clean *::after {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }

}


/* =========================================================
   BINKU — VIDEO DE PRESENTACIÓN
   Sustituye visualmente la galería sin modificar los demás
   módulos que comparten este archivo CSS.
========================================================= */

.binku-business-video {
  width: min(100%, 900px);
  margin: 18px auto 26px;
}

.binku-business-video__frame {
  position: relative;
  width: 100%;
  overflow: hidden;

  background: #0f1115;
  border: 1px solid #e3e6ea;
  border-radius: 20px;

  box-shadow:
    0 10px 30px rgba(15, 23, 42, .08);
}

.binku-business-video__player {
  width: 100%;
  max-height: 560px;
  display: block;

  background: #0f1115;
  object-fit: contain;
}


/* ADMIN — PREVISUALIZACIÓN */
.binku-video-admin__preview {
  position: relative;
  width: min(100%, 520px);

  padding: 8px;

  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
}

.binku-video-admin__preview video {
  width: 100%;
  max-height: 320px;
  display: block;

  background: #111318;
  border-radius: 10px;

  object-fit: contain;
}

.binku-video-admin__remove {
  margin-top: 9px;
}


/* MÓVIL */
@media (max-width: 767.98px) {

  .binku-business-video {
    width: 100%;
    margin: 14px auto 20px;
  }

  .binku-business-video__frame {
    border-radius: 15px;
  }

  .binku-business-video__player {
    max-height: 68vh;
  }

  .binku-video-admin__preview {
    width: 100%;
  }

  .binku-video-admin__preview video {
    max-height: 260px;
  }
}

/* =========================================================
   BINKU — VIDEO ADMIN / RECORTE 60s
   Override final. Solo presentación.
========================================================= */

.binku-video-admin {
  width: 100%;
  max-width: 100%;
}

.binku-video-admin #videoPresentacionPreview {
  width: 100%;
  max-width: 100%;
}

.binku-video-admin .binku-video-admin__preview {
  width: 100%;
  max-width: 560px;
  margin: 12px auto 0;
  padding: 9px;
  overflow: hidden;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 15px;
  box-shadow: 0 5px 18px rgba(15, 23, 42, .05);
}

.binku-video-admin .binku-video-admin__preview > video {
  width: 100% !important;
  height: 340px !important;
  max-width: 100% !important;
  max-height: 340px !important;
  display: block !important;
  margin: 0 auto;
  background: #111318;
  border-radius: 11px;
  object-fit: contain !important;
}

.binku-video-trim {
  margin-top: 11px;
  padding: 12px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
}

.binku-video-trim__range {
  margin-top: 5px;
  margin-bottom: 5px;
}

.binku-video-trim__preview-btn {
  min-height: 34px;
  padding: 7px 11px !important;
  border-radius: 9px !important;
  font-size: 11px !important;
}

.binku-video-admin .binku-video-admin__remove {
  min-height: 34px;
  margin-top: 9px;
  padding: 7px 11px !important;
  border-radius: 9px !important;
  font-size: 11px !important;
}

@media (max-width: 767.98px) {
  .binku-video-admin .binku-video-admin__preview {
    max-width: 100%;
    padding: 8px;
    border-radius: 13px;
  }

  .binku-video-admin .binku-video-admin__preview > video {
    height: 300px !important;
    max-height: 300px !important;
  }

  .binku-video-trim {
    padding: 11px;
  }
}

@media (max-width: 480px) {
  .binku-video-admin .binku-video-admin__preview {
    padding: 7px;
  }

  .binku-video-admin .binku-video-admin__preview > video {
    height: 265px !important;
    max-height: 265px !important;
  }

  .binku-video-trim__preview-btn,
  .binku-video-admin .binku-video-admin__remove {
    min-height: 32px;
    font-size: 10px !important;
  }
}


/* =========================================================
   BINKU — PREVIEW PEQUEÑO EN ADMIN
   Mantiene el video completo visible sin ocupar toda la pantalla.
========================================================= */

.binku-video-admin .binku-video-admin__preview {
  width: min(100%, 300px) !important;
  max-width: 300px !important;
  margin: 12px auto 0 !important;
  padding: 8px !important;
}

.binku-video-admin .binku-video-admin__preview > video {
  width: 100% !important;
  height: 230px !important;
  max-width: 100% !important;
  max-height: 230px !important;
  margin: 0 auto !important;
  object-fit: contain !important;
  background: #111318 !important;
}

/* El selector del recorte conserva el mismo ancho compacto */
.binku-video-admin .binku-video-trim {
  width: 100% !important;
  margin-top: 9px !important;
  padding: 10px !important;
}

/* Móvil */
@media (max-width: 480px) {
  .binku-video-admin .binku-video-admin__preview {
    width: min(100%, 260px) !important;
    max-width: 260px !important;
    padding: 6px !important;
  }

  .binku-video-admin .binku-video-admin__preview > video {
    height: 200px !important;
    max-height: 200px !important;
  }
}


/* =========================================================
   BINKU — MINI PREVIEW FINAL (ADMIN)
   Selector muy específico para evitar que reglas anteriores
   vuelvan a agrandar videos verticales.
========================================================= */

html body .binku-video-admin #videoPresentacionPreview .binku-video-admin__preview {
  box-sizing: border-box !important;
  width: 180px !important;
  min-width: 0 !important;
  max-width: 180px !important;
  margin: 12px auto 0 !important;
  padding: 5px !important;
  overflow: hidden !important;
  border-radius: 12px !important;
}

html body .binku-video-admin #videoPresentacionPreview .binku-video-admin__preview video,
html body .binku-video-admin #videoPresentacionPreview #videoPresentacionPlayer {
  box-sizing: border-box !important;
  display: block !important;
  width: 170px !important;
  min-width: 0 !important;
  max-width: 170px !important;
  height: 210px !important;
  min-height: 0 !important;
  max-height: 210px !important;
  margin: 0 auto !important;
  object-fit: contain !important;
  background: #111318 !important;
  border-radius: 9px !important;
}

/* El panel de selección NO hereda el ancho mini del video:
   usa el ancho disponible del formulario. */
html body .binku-video-admin #videoPresentacionPreview .binku-video-trim {
  box-sizing: border-box !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 10px 0 0 !important;
}

/* Celulares muy angostos */
@media (max-width: 380px) {
  html body .binku-video-admin #videoPresentacionPreview .binku-video-admin__preview {
    width: 160px !important;
    max-width: 160px !important;
  }

  html body .binku-video-admin #videoPresentacionPreview .binku-video-admin__preview video,
  html body .binku-video-admin #videoPresentacionPreview #videoPresentacionPlayer {
    width: 150px !important;
    max-width: 150px !important;
    height: 190px !important;
    max-height: 190px !important;
  }
}

/* =========================================================
   VIDEO PRESENTACIÓN - TAMAÑO COMPACTO
========================================================= */

.binku-business-video {
  width: 100%;
  margin: 18px auto 28px;
  display: flex;
  justify-content: center;
}

.binku-business-video__frame {
  position: relative;

  /* MÁS PEQUEÑO */
  width: 280px;
  max-width: 100%;

  overflow: hidden;
  background: #0f1115;

  border: 1px solid #e3e6ea;
  border-radius: 18px;

  box-shadow: 0 10px 30px rgba(15, 23, 42, .08);
}

.binku-business-video__player {
  display: block;

  width: 100%;
  height: auto;

  max-height: 500px;

  background: #0f1115;
  object-fit: contain;
}


/* TABLET */
@media (max-width: 767.98px) {

  .binku-business-video {
    width: 100%;
    margin: 14px auto 24px;
    display: flex;
    justify-content: center;
  }

  .binku-business-video__frame {
    width: 250px;
    max-width: 70vw;
    border-radius: 16px;
  }

  .binku-business-video__player {
    width: 100%;
    height: auto;
    max-height: 445px;
  }
}


/* CELULAR */
@media (max-width: 480px) {

  .binku-business-video__frame {
    width: 220px;
    max-width: 62vw;
    border-radius: 15px;
  }

  .binku-business-video__player {
    max-height: 390px;
  }
}

/* =========================================================
   VIDEO PRESENTACIÓN - TAMAÑO COMPACTO
========================================================= */

.binku-business-video {
  width: 100%;
  margin: 18px auto 28px;
  display: flex;
  justify-content: center;
}

.binku-business-video__frame {
  position: relative;

  /* MÁS PEQUEÑO */
  width: 280px;
  max-width: 100%;

  overflow: hidden;
  background: #0f1115;

  border: 1px solid #e3e6ea;
  border-radius: 18px;

  box-shadow: 0 10px 30px rgba(15, 23, 42, .08);
}

.binku-business-video__player {
  display: block;

  width: 100%;
  height: auto;

  max-height: 500px;

  background: #0f1115;
  object-fit: contain;
}


/* TABLET */
@media (max-width: 767.98px) {

  .binku-business-video {
    width: 100%;
    margin: 14px auto 24px;
    display: flex;
    justify-content: center;
  }

  .binku-business-video__frame {
    width: 250px;
    max-width: 70vw;
    border-radius: 16px;
  }

  .binku-business-video__player {
    width: 100%;
    height: auto;
    max-height: 445px;
  }
}


/* CELULAR */
@media (max-width: 480px) {

  .binku-business-video__frame {
    width: 220px;
    max-width: 62vw;
    border-radius: 15px;
  }

  .binku-business-video__player {
    max-height: 390px;
  }
}


/* =========================================================
   VIDEO PRESENTACIÓN - TAMAÑO COMPACTO
========================================================= */

.binku-business-video {
  width: 100%;
  margin: 18px auto 28px;
  display: flex;
  justify-content: center;
}

.binku-business-video__frame {
  position: relative;

  /* MÁS PEQUEÑO */
  width: 280px;
  max-width: 100%;

  overflow: hidden;
  background: #0f1115;

  border: 1px solid #e3e6ea;
  border-radius: 18px;

  box-shadow: 0 10px 30px rgba(15, 23, 42, .08);
}

.binku-business-video__player {
  display: block;

  width: 100%;
  height: auto;

  max-height: 500px;

  background: #0f1115;
  object-fit: contain;
}


/* TABLET */
@media (max-width: 767.98px) {

  .binku-business-video {
    width: 100%;
    margin: 14px auto 24px;
    display: flex;
    justify-content: center;
  }

  .binku-business-video__frame {
    width: 250px;
    max-width: 70vw;
    border-radius: 16px;
  }

  .binku-business-video__player {
    width: 100%;
    height: auto;
    max-height: 445px;
  }
}


/* CELULAR */
@media (max-width: 480px) {

  .binku-business-video__frame {
    width: 220px;
    max-width: 62vw;
    border-radius: 15px;
  }

  .binku-business-video__player {
    max-height: 390px;
  }
}


/* =========================================================
   VIDEO PRESENTACIÓN - TAMAÑO COMPACTO
========================================================= */

.binku-business-video {
  width: 100%;
  margin: 18px auto 28px;
  display: flex;
  justify-content: center;
}

.binku-business-video__frame {
  position: relative;

  /* MÁS PEQUEÑO */
  width: 280px;
  max-width: 100%;

  overflow: hidden;
  background: #0f1115;

  border: 1px solid #e3e6ea;
  border-radius: 18px;

  box-shadow: 0 10px 30px rgba(15, 23, 42, .08);
}

.binku-business-video__player {
  display: block;

  width: 100%;
  height: auto;

  max-height: 500px;

  background: #0f1115;
  object-fit: contain;
}


/* TABLET */
@media (max-width: 767.98px) {

  .binku-business-video {
    width: 100%;
    margin: 14px auto 24px;
    display: flex;
    justify-content: center;
  }

  .binku-business-video__frame {
    width: 250px;
    max-width: 70vw;
    border-radius: 16px;
  }

  .binku-business-video__player {
    width: 100%;
    height: auto;
    max-height: 445px;
  }
}


/* CELULAR */
@media (max-width: 480px) {

  .binku-business-video__frame {
    width: 220px;
    max-width: 62vw;
    border-radius: 15px;
  }

  .binku-business-video__player {
    max-height: 390px;
  }
}


/* =========================================================
   VIDEO PRESENTACIÓN - TAMAÑO COMPACTO
========================================================= */

.binku-business-video {
  width: 100%;
  margin: 18px auto 28px;
  display: flex;
  justify-content: center;
}

.binku-business-video__frame {
  position: relative;

  /* MÁS PEQUEÑO */
  width: 280px;
  max-width: 100%;

  overflow: hidden;
  background: #0f1115;

  border: 1px solid #e3e6ea;
  border-radius: 18px;

  box-shadow: 0 10px 30px rgba(15, 23, 42, .08);
}

.binku-business-video__player {
  display: block;

  width: 100%;
  height: auto;

  max-height: 500px;

  background: #0f1115;
  object-fit: contain;
}


/* TABLET */
@media (max-width: 767.98px) {

  .binku-business-video {
    width: 100%;
    margin: 14px auto 24px;
    display: flex;
    justify-content: center;
  }

  .binku-business-video__frame {
    width: 250px;
    max-width: 70vw;
    border-radius: 16px;
  }

  .binku-business-video__player {
    width: 100%;
    height: auto;
    max-height: 445px;
  }
}


/* CELULAR */
@media (max-width: 480px) {

  .binku-business-video__frame {
    width: 220px;
    max-width: 62vw;
    border-radius: 15px;
  }

  .binku-business-video__player {
    max-height: 390px;
  }
}


/* CELULAR MUY PEQUEÑO */
@media (max-width: 360px) {

  .binku-business-video__frame {
    width: 200px;
    max-width: 60vw;
  }

  .binku-business-video__player {
    max-height: 355px;
  }
}