.ing-swiper {
  position: relative;
  width: 100%;
}

/* Full page mode:
   Uses CSS variable --ing-vh set by JS for robust mobile vh handling */
.ing-swiper--fullpage {
  height: var(--ing-vh, 100vh);
  min-height: var(--ing-vh, 100vh);
}

.ing-swiper__swiper {
  width: 100%;
}

.ing-swiper--fullpage .ing-swiper__swiper {
  height: 100%;
}

.ing-swiper__slide {
  position: relative;
}

.ing-swiper__slide:after {
  display: block;
  position: absolute;
  content:'';
  inset:0;
  background-color: #000000;
  opacity: .3;
}

.ing-swiper--fullpage .ing-swiper__slide {
  height: 100%;
}

.ing-swiper__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Fullpage: image must fill the viewport height */
.ing-swiper--fullpage .ing-swiper__image {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* UI overlay */
.ing-swiper__ui {
  position: absolute;
  left: 4vw;
  right: 4vw;
  bottom: 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  gap: 12px;
}

.ing-swiper__counter {
  pointer-events: auto;
  z-index: 99;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.02em;
  padding: 6px 10px;
  border-radius: 999px;
  font-family: "ITC Avant Garde Gothic Std", Sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 15px;
  letter-spacing: 1.5px;
  
}
.ing-swiper__counter .ing-swiper__current{
  font-size: 2em;
  line-height: 1em;
}
.ing-swiper__nav {
  pointer-events: auto;
  display: inline-flex;
  gap: 8px;
  z-index: 99;
  align-items: center;
  justify-content: space-between;
  width: 140px;
}

.ing-swiper__nav button {
  appearance: none;
  border: 0;
  width: 44px;              /* hit area accesible */
  height: 44px;
  border-radius: 999px;
  cursor: pointer;

  display: inline-flex;     /* centra el svg */
  align-items: center;
  justify-content: center;

  padding: 0;               /* evita “descentrados” */
  line-height: 0;           /* evita baseline/altura extra */
  color: currentColor;      /* el SVG usa currentColor */

  transition: transform 120ms ease, opacity 120ms ease;
}

.ing-swiper__nav button svg {
  display: block;           /* evita gaps */
  width: 27px;              /* opcional: fuerza tamaño */
  height: 27px;
}

.ing-swiper__nav button:hover {
  transform: translateY(-1px);
}

.ing-swiper__nav button:active {
  transform: translateY(0);
  opacity: 0.9;
}

.ing-swiper__nav button:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

/* Si quieres desactivar botones cuando Swiper los marca como disabled */
.ing-swiper__nav button.swiper-button-disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}