/* 💻 دسکتاپ — تصویر کامل دایره‌ای */
  .image-wrapper {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 1);
    overflow: hidden;
  }

  #image-main-mobile {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* 📱 موبایل — فقط کمی از پایین بریده بشه */
  @media (max-width: 768px) {
    .image-wrapper {
      width: 100% !important;
      height: 80vw !important; /* حدود ۲۰٪ پایین بریده میشه */
      border-top-left-radius: 50vw;
      border-top-right-radius: 50vw;
      border-bottom-left-radius: 0;
      border-bottom-right-radius: 0;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0,0,0,1);
      margin-bottom: 2rem;
    }

    #image-main-mobile {
      width: 100% !important;
      height: 100vw !important;
      object-fit: cover;
    }
  }