.custom-carousel-track {
  --card-width: clamp(270px, 75vw, 520px);
  gap: clamp(10px, 1vw, 40px);
  padding-bottom: 20px;
  display: flex !important;
  flex-wrap: nowrap !important;
  overflow-x: auto !important;
  scroll-snap-type: x mandatory !important;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
  justify-content: start !important;
  cursor: grab;
}

@media (min-width: 768px) {
  .custom-carousel-track::before, .custom-carousel-track::after {
    content: '';
    margin: auto;
    display: block;
  }
}

.custom-carousel-track > div {
  flex: 0 0 var(--card-width) !important;
  max-width: var(--card-width) !important;
  scroll-snap-align: center !important;
}

.btn-navcm-round {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dee2e6;
  background: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-navcm-round:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
}

.btn-navcm-round:active {
  transform: scale(0.9);
}

