/* بوليصات التوصيل - Zee */

.zee-wrap {
  --zee-b: #111;
  --zee-line: #e2e2ea;
  font-family: Tajawal, "Noto Sans Arabic", system-ui, sans-serif;
  max-width: 640px;
  margin: 0 auto;
  color: #111;
  direction: rtl;
  text-align: right;
}

.zee-wrap * { box-sizing: border-box; }

.zee-form,
.zee-result {
  background: #fff;
  border: 1px solid var(--zee-line);
  border-radius: 16px;
  padding: 22px;
}

.zee-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.zee-full { grid-column: 1 / -1; }

.zee-field { display: block; }
.zee-field > span {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}
.zee-field > span em { font-weight: 500; color: #77777f; font-style: normal; font-size: 13px; }

.zee-field input,
.zee-field textarea {
  width: 100%;
  font: inherit;
  font-size: 16px;
  padding: 12px 14px;
  border: 1px solid #d7d7e0;
  border-radius: 10px;
  background: #fff;
  color: #111;
  transition: border-color .15s;
}
.zee-field input:focus,
.zee-field textarea:focus { outline: none; border-color: var(--zee-b); }
.zee-field textarea { resize: vertical; line-height: 1.6; }
.zee-field small { display: block; color: #77777f; font-size: 12.5px; margin-top: 5px; }

.zee-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }

.zee-btn {
  font: inherit;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 26px;
  border: 0;
  border-radius: 10px;
  background: var(--zee-b);
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  line-height: 1.4;
}
.zee-btn:hover { opacity: .88; color: #fff; }
.zee-btn:disabled { opacity: .5; cursor: default; }
.zee-btn.zee-ghost { background: #fff; color: #111; border: 1px solid #d7d7e0; }

.zee-error {
  margin: 14px 0 0;
  padding: 11px 14px;
  border-radius: 9px;
  background: #fee2e2;
  color: #991b1b;
  font-size: 14px;
  font-weight: 600;
}

.zee-warn {
  margin: 14px 0 0;
  padding: 11px 14px;
  border-radius: 9px;
  background: #fef3c7;
  color: #854d0e;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.7;
}

.zee-preview {
  background: #eeeef3;
  border-radius: 12px;
  padding: 18px;
  text-align: center;
}
.zee-preview img {
  width: 100%;
  max-width: 360px;
  height: auto;
  background: #fff;
  box-shadow: 0 3px 14px rgba(0, 0, 0, .16);
  border-radius: 3px;
}

.zee-hint {
  margin: 14px 0 0;
  font-size: 13px;
  color: #5c5c66;
  background: #f5f5f8;
  padding: 11px 14px;
  border-radius: 9px;
  line-height: 1.7;
}

@media (max-width: 520px) {
  .zee-grid { grid-template-columns: 1fr; }
  .zee-actions .zee-btn { flex: 1; text-align: center; }
}
