.scroll-to-top {
  position: fixed;
  left: 20px;             /* سمت چپ */
  bottom: 40px;           /* دسکتاپ */
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, #ff9800, #ff5722); /* نارنجی-قرمز مدرن */
  border: 3px solid #FFD700; /* کادر زرد طلایی */
  color: #fff;
  border-radius: 16px;     /* مربع با گوشه‌های گرد */
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* موبایل: کمی بالاتر بیاد */
@media (max-width:768px){
  .scroll-to-top {
    bottom: 100px; /* بالاتر از ناوبری */
    left: 16px;
  }
}
