
/* Navigation Buttons (hidden on mobile by default) */
.navigation-buttons {
  display: none;
}

.nav-btn {
  border: 1px solid #000000;
  border-radius: 16px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-btn i {
  font-size: 12px;
  color: #6c757d;
  transition: color 0.3s ease;
}

.nav-btn:hover {
  background: #4d2c20;
  border-color: #4d2c20;
}

.nav-btn:hover i {
  color: white;
}

.nav-btn.active {
  background: #4d2c20;
  border-color: #4d2c20;
}

.nav-btn.active i {
  color: white;
}

/* Desktop Styles */
@media (min-width: 992px) {

  .nav-btn i {
    font-size: 22px;
  }

  .navigation-buttons {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-bottom: 40px;
  }
}

/* Desktop Large Styles */
@media (min-width: 1440px) {
  .nav-btn i {
    font-size: 12px;
  }
}
