.gallery-carousel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-slide {
  width: 100%;
  display: block;
  text-align: center;
  margin: 0 10px;
}

.gallery-slide img {
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.85);
  border: none;
  color: #333;
  font-size: 2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-nav:hover {
  background: #eee;
}

.gallery-prev {
  left: 12px;
}

.gallery-next {
  right: 12px;
}

