@font-face {
  font-family: vazir;
  src: url('../fonts/Vazir.woff2');
}

body {
  margin: 0;
  font-family: vazir;
  background: #fdfdfd;
  padding: 20px;
}

/* کانتینر */
.container {
  max-width: 500px;
  margin: auto;
}

/* تصاویر */
.full {
  width: 100%;
  display: block;
  margin-top: 30px;
}

.fullhead {
  width: 50%;
  display: block;
  margin-top: 30px;
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-right: 25%;
}

/* فاصله دقیق مثل طراحی */
.banner {
  margin-top: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* گرید */
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  padding-top: 25px;
}

.grid img {
  width: 100%;
}

/* دکمه‌ها */
.actions {
  text-align: center;
  padding: 10px 10px 0;
}

.btn-img {
  width: 50%;
  max-width: 260px;
  margin: 4px 0;
  box-shadow: 0 5px 12px rgba(0,0,0,0.08);
}

/* عکس اینماد زیر دکمه پرداخت */
.enamad-link {
  display: block;
  width: 72px;
  margin: 8px auto 0;
  line-height: 0;
}

.enamad-img {
  width: 72px;
  height: auto;
  display: block;
  margin: 0 auto;
  cursor: pointer;
}

/* فوتر */
footer {
  text-align: center;
  color: #777;
  padding: 25px 10px;
  font-size: 13px;
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.4);
  backdrop-filter: blur(6px);
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.3s;
}

.modal.show {
  opacity: 1;
}

/* باکس */
.modal-box {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(18px);
  border-radius: 20px;
  padding: 20px;
  margin: 10px;
  width: 92%;
  max-width: 420px;
  transform: translateY(40px) scale(0.95);
  transition: 0.3s;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.modal.show .modal-box {
  transform: translateY(0) scale(1);
}

/* محتوا */
.modal-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: justify;
}

.row {
  display: flex;
  gap: 10px;
  font-size: 15px;
  line-height: 2;
}

.icon {
  font-size: 18px;
}

/* هایلایت قیمت */
.highlight {
  background: rgba(255,255,255,0.6);
  padding: 10px;
  border-radius: 12px;
}

/* بستن */
.close {
  float: left;
  font-size: 22px;
  cursor: pointer;
}