/* —— CF7 (bookbar) — inputs —— */
.wpcf7 form .bookbar{display:grid;grid-template-columns:1fr;gap:10px;direction:rtl}
.wpcf7 form .bookbar .bb-row{display:grid;grid-template-columns:1fr;gap:10px}
.wpcf7 form .bookbar .bb-col{width:100%}
.wpcf7 form .bookbar .col-100{grid-column:1 / -1}
.wpcf7 form .bookbar .bb-actions{text-align:center;margin-top:4px}

.wpcf7 form .bookbar input,
.wpcf7 form .bookbar select,
.wpcf7 form .bookbar textarea{
  width:100%;
  padding:12px 14px;
  border:1px solid #e5e7eb;
  border-radius:10px;
  font-size:15px;
  background:#f8fafc;
  color:#0f172a;
  text-align:right;
  transition:border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.wpcf7 form .bookbar input[type="date"]{direction:rtl;text-align:right}
.wpcf7 form .bookbar textarea{min-height:90px;resize:vertical}

/* Focus بشكل ثيم */
.wpcf7 form .bookbar input:focus,
.wpcf7 form .bookbar select:focus,
.wpcf7 form .bookbar textarea:focus{
  outline:0;
  border-color:var(--wd-primary-color, #f7b500);
  box-shadow:0 0 0 3px rgba(247,181,0,.15);
  background:#fff;
}

/* إخفاء السهام الرقمية */
.wpcf7 form .bookbar input[type=number]::-webkit-outer-spin-button,
.wpcf7 form .bookbar input[type=number]::-webkit-inner-spin-button{ -webkit-appearance:none; margin:0 }
.wpcf7 form .bookbar input[type=number]{ -moz-appearance:textfield }

/* —— زر الحجز (نفس الثيم + أنيميشن) —— */
.wpcf7 form .bookbar .bb-btn{
  display:inline-block;
  width:100%;
  max-width:420px;
  background:var(--wd-primary-color, #f7b500);
  color:#000;
  border:0;
  border-radius:999px;
  padding:12px 20px;
  font-weight:800;
  font-size:16px;
  cursor:pointer;
  box-shadow:0 6px 14px rgba(0,0,0,.06);
  transition:transform .12s ease, box-shadow .2s ease, filter .2s ease, opacity .2s ease;
}
.wpcf7 form .bookbar .bb-btn:hover{
  transform:translateY(-1px);
  box-shadow:0 10px 20px rgba(0,0,0,.08);
  filter:brightness(.98);
}
.wpcf7 form .bookbar .bb-btn:active{
  transform:translateY(0) scale(.98);
}

/* سبينر أثناء الإرسال */
.wpcf7 form.submitting .bookbar .bb-btn{
  opacity:.75; pointer-events:none; position:relative;
}
.wpcf7 form.submitting .bookbar .bb-btn::after{
  content:"";
  width:16px; height:16px;
  border:2px solid rgba(0,0,0,.25);
  border-top-color:#000;
  border-radius:50%;
  display:inline-block;
  margin-inline-start:8px;
  vertical-align:-3px;
  animation:amanSpin .7s linear infinite;
}
@keyframes amanSpin { to { transform:rotate(360deg) } }

/* استجابة ديسكتوب */
@media (min-width:480px){ .wpcf7 form .bookbar .bb-row{grid-template-columns:1fr 1fr} }
@media (min-width:900px){
  .wpcf7 form .bookbar{gap:12px}
  .wpcf7 form .bookbar .bb-row{gap:12px}
}
