.fito-slider-viewport {
  overflow: hidden;
  position: relative;
}

.fito-slide-out-left {
  animation: fitoSlideOutLeft 0.35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.fito-slide-out-right {
  animation: fitoSlideOutRight 0.35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.fito-slide-in-left {
  animation: fitoSlideInLeft 0.35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.fito-slide-in-right {
  animation: fitoSlideInRight 0.35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fitoSlideOutLeft {
  from { transform: translateX(0); opacity: 1; }
  to   { transform: translateX(-60px); opacity: 0; }
}

@keyframes fitoSlideOutRight {
  from { transform: translateX(0); opacity: 1; }
  to   { transform: translateX(60px); opacity: 0; }
}

@keyframes fitoSlideInLeft {
  from { transform: translateX(-60px); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}

@keyframes fitoSlideInRight {
  from { transform: translateX(60px); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}

.fito-loading-overlay {
  display: none;
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
  z-index: 20;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  border-radius: 6px;
}

.fito-loading-overlay.active {
  display: flex;
}

.fito-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid #e0e0e0;
  border-top-color: #2b5c1e;
  border-radius: 50%;
  animation: fitoSpin 0.7s linear infinite;
}

.fito-loading-text {
  color: #2b5c1e;
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
}

@keyframes fitoSpin {
  to { transform: rotate(360deg); }
}

.fito-loading {
  pointer-events: none;
  opacity: 0.45;
  transition: opacity 0.2s ease;
}
