
  
/* استایل مدال */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}

/* استایل تصویر درون مدال */
.modal img {
  display: block;
  margin: auto;
  max-width: 90%;
  max-height: 90%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* استایل متن درون مدال */
.modal-text-container {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 100%;
}

/* استایل کد محصول */
.product-code {
  color: #fff;
  font-size: 18px;
  margin-top: 10px;
}

/* استایل لینک سفارش آنلاین */
.order-button {
  display: block;
  text-align: center;
  font-size: 20px;
  color: #fff;
  background-color: #3498db;
  padding: 10px;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 10px;
}

/* استایل بستن مدال */
.close {
  color: #fff;
  font-size: 50px;
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
}

