/* Professional Navigation Arrows */
.button-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  border: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  cursor: pointer;
  z-index: 100; 
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.button-nav:hover {
  transform: translateY(-50%) scale(1.1);
  background: #fdc936;
}

.button-nav svg {
  width: 20px;
  height: 20px;
  fill: #111;
}

.button-nav.prev {
  left: 20px;
}

.button-nav.next {
  right: 20px;
}

/* MOBILE: HIDE THE BUTTONS - USERS CAN SWIPE */
@media (max-width: 600px) {
  .button-nav {
    display: none;
  }
}