.cr-gallery-wrapper {
  position: relative;
}
.cr-gallery-prev,
.cr-gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  font-size: 24px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.2s ease;
}
.cr-gallery-prev:hover,
.cr-gallery-next:hover {
  background: rgba(0,0,0,0.8);
}
.cr-gallery-prev.disabled,
.cr-gallery-next.disabled {
  opacity: 0.3;
  pointer-events: none;
}
.cr-gallery-prev { left: -16px; }
.cr-gallery-next { right: -16px; }
@media (max-width: 768px) {
  .cr-gallery-prev { left: -10px; }
  .cr-gallery-next { right: -10px; }
} 