.multi-slide-compare-wrapper {
  position: relative;
  max-width: 600px;
  margin: 20px auto;
}

.compare-slide {
  display: none;
}

.multi-compare-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
}

.multi-compare-container img {
  width: 100%;
  display: block;
  pointer-events: none; /* مهم للـ mobile */
}

.multi-compare-after-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  transition: width 0.3s ease;
}

.multi-compare-after-wrapper img {
  width: 100%;
  height: 100%;
  display: block;
}

.multi-slider-handle {
  position: absolute;
  right: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: rgba(255,255,255,0.8);
  cursor: ew-resize;
  touch-action: none; /* يمنع conflict السحب على mobile */
}

.multi-nav-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 15px 0;
    position: relative;
    top: -60px;
}

.nav-btn {
    cursor: pointer;
    background: #8b5e67;
    border: none;
    border-radius: 100%;
    color: #fff;
    font-size: 16px;
    transition: 0.3s;
    width: 36px;
    height: 36px;
}

.nav-btn:hover {
  opacity: 0.85;
}

.multi-compare-buttons {
  display: flex;
  gap: 10px;
}

.multi-compare-buttons button {
    padding: 8px 20px;
    cursor: pointer;
    border-radius: 25px;
    border: 2px solid #8b5e67;
    background: transparent;
    color: #8b5e67;
    transition: all 0.3s;
    font: normal 14px / 16px "Avenir LT Pro Heavy" !important;
}

.multi-compare-buttons button.active {
  background: #8b5e67;
  color: #fff;
  border: 2px solid #8b5e67;
}

.multi-compare-buttons button:hover {
  opacity: 0.85;
}

@media (max-width:480px){
  .multi-compare-buttons button, .nav-btn {
    padding: 6px 10px;
    font-size: 12px;
  }
}

