/*
  =============================================================
  PHONE SLIDER — Estilos
  =============================================================
*/

/* ── SOLO EN MÓVIL ── */
.ps-wrapper {
  display: none;
}

@media (max-width: 767px) {
  .ps-wrapper {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
  }
}

/* ── CONTENEDOR ── */
.ps-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
}

/* ── SLIDES — efecto persiana ── */
.ps-slide {
  position: absolute;
  inset: 0;
  opacity: 1;
  pointer-events: none;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.6s cubic-bezier(0.77, 0, 0.18, 1);
  will-change: clip-path;
}

.ps-slide--active {
  clip-path: inset(0 0 0% 0);
  pointer-events: auto;
}

/* ── CUADRÍCULA 2×2 ── */
.ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  width: 100%;
  height: 100%;
  gap: 0;
}

/* ── IMÁGENES ── */
.ps-cell {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ── DOTS — ocultos ── */
.ps-dots {
  display: none;
}