/* ══════════════════════════════════════
   Adent – تماس قبل از خرید  |  v2.0.0
══════════════════════════════════════ */

/* ── دکمه قفل‌شده ── */
.adent-btn-locked {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
  filter: grayscale(60%) !important;
}

/* wrapper کلیک‌پذیر روی دکمه قفل */
.adent-locked-wrap {
  display: inline-block;
  cursor: pointer;
  position: relative;
}

/* نشانه قفل روی دکمه */
.adent-locked-wrap::after {
  content: "🔒";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  font-size: 14px;
  pointer-events: none;
}

/* ── پوشش تیره پشت مودال ── */
#adent-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999999;
  align-items: center;
  justify-content: center;
}
#adent-overlay.adent-active {
  display: flex !important;
}

/* ── باکس مودال ── */
#adent-modal {
  background: #fff;
  border-radius: 16px;
  padding: 40px 28px 28px;
  max-width: 420px;
  width: 92%;
  text-align: center;
  direction: rtl;
  font-family: Tahoma, "Segoe UI", Arial, sans-serif;
  position: relative;
  animation: adentSlideIn 0.28s ease;
}

@keyframes adentSlideIn {
  from {
    transform: translateY(32px) scale(0.95);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

/* دکمه بستن × */
#adent-modal-close {
  position: absolute;
  top: 12px;
  left: 16px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #aaa;
  line-height: 1;
  padding: 0;
}
#adent-modal-close:hover {
  color: #555;
}

/* آیکون تلفن */
.adent-icon {
  font-size: 56px;
  margin-bottom: 10px;
  line-height: 1;
}

/* عنوان */
#adent-modal h2 {
  font-size: 18px !important;
  font-weight: bold !important;
  margin: 0 0 10px !important;
  color: #222 !important;
}

/* متن توضیح */
#adent-modal p {
  font-size: 13px !important;
  color: #666 !important;
  line-height: 1.9 !important;
  margin: 0 0 24px !important;
}

/* دکمه تماس آبی */
#adent-phone-btn {
  display: block !important;
  width: 100% !important;
  padding: 14px 12px !important;
  margin-bottom: 12px !important;
  background: #1a73e8 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 10px !important;
  font-size: 18px !important;
  font-family: inherit !important;
  font-weight: bold !important;
  letter-spacing: 1px !important;
  text-decoration: none !important;
  cursor: pointer !important;
  transition: background 0.2s !important;
  box-sizing: border-box !important;
}
#adent-phone-btn:hover {
  background: #1557b0 !important;
}
#adent-phone-btn small {
  display: block;
  font-size: 12px;
  font-weight: normal;
  margin-top: 4px;
  opacity: 0.9;
}

/* دکمه تأیید سبز */
#adent-confirm-btn {
  display: block !important;
  width: 100% !important;
  padding: 12px !important;
  margin-bottom: 10px !important;
  background: #e8f5e9 !important;
  color: #2e7d32 !important;
  border: 1.5px solid #81c784 !important;
  border-radius: 10px !important;
  font-size: 14px !important;
  font-family: inherit !important;
  cursor: pointer !important;
  transition: background 0.2s !important;
  box-sizing: border-box !important;
}
#adent-confirm-btn:hover {
  background: #c8e6c9 !important;
}

/* دکمه انصراف */
#adent-cancel-btn {
  background: none !important;
  border: none !important;
  font-size: 12px !important;
  color: #bbb !important;
  cursor: pointer !important;
  font-family: inherit !important;
  padding: 4px !important;
}
#adent-cancel-btn:hover {
  color: #777 !important;
}
