/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Nov 12 2025 | 12:31:06 */
.rs {
  position: relative;
}

.rs-viewport {
  overflow: hidden !important;
  width: 100% !important;
}

.rs-track {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 20px !important;
  transition: transform 0.5s ease;
  will-change: transform;
}

.rs-card {
  min-width: 520px !important;
  width: 520px !important;	
  flex-shrink: 0 !important;
  display: block !important;
}

.rs-prev,
.rs-next {
  cursor: pointer !important;
}

/* Прибираємо disabled стан, оскільки слайдер циклічний */
.rs-prev.disabled,
.rs-next.disabled {
  opacity: 1;
  pointer-events: auto;
  cursor: pointer !important;
}

/* Для мобільних */
@media (max-width: 768px) {
  .rs-track {
    flex-direction: row !important;
  }
  
  .rs-card {
    min-width: 320px !important;
    width: 320px !important;
  }
}

@media (max-width: 480px) {
  .rs-track {
    flex-direction: row !important;
  }
  
  .rs-card {
    min-width: 280px !important;
    width: 280px !important;
  }
}
