/* Booking widget + results styles (v4.4) */
*{box-sizing:border-box;}
.afb-card{--p:#0a66c2;--b:#e5e7eb;--muted:#6b7280;--ok:#16a34a;background:#fff;border:1px solid var(--b);border-radius:16px;box-shadow:0 6px 18px rgba(0,0,0,.06);padding:16px;max-width:1000px;margin:20px auto;}
/* Responsive form improvements */
.afb-form{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;align-items:end;}
.afb-field{display:flex;flex-direction:column;min-width:0;}
.afb-field label{font-size:12px;color:var(--muted);margin-bottom:6px;}
.afb-field input,.afb-field select{width:100%;padding:10px 12px;border:1px solid var(--b);border-radius:10px;outline:none;transition:border-color .15s;background:#fff;min-width:0;}
.afb-field input:focus,.afb-field select:focus{border-color:var(--p);}
.afb-actions{grid-column:1/-1;display:flex;justify-content:flex-start;}
.afb-btn-blue{background:var(--p);color:#fff;border:none;border-radius:10px;padding:10px 16px;font-weight:700;cursor:pointer;display:inline-flex;align-items:center;gap:8px;width:auto;}
.afb-btn-blue:hover{filter:brightness(.95);}
.afb-spinner{width:16px;height:16px;border:3px solid #e5e7eb;border-top-color:#fff;border-radius:50%;animation:afb-spin 1s linear infinite;}
@keyframes afb-spin{to{transform:rotate(360deg)}}
@media (max-width: 900px){.afb-form{grid-template-columns:repeat(2,1fr);}}
@media (max-width: 767px){
  .afb-form{grid-template-columns:1fr;}
  .afb-actions{width:100%;}
  .afb-btn-blue{width:100%; justify-content:center;}
}
.afb-results{margin-top:16px; position:relative; min-height:60px;}
.afb-overlay{position:absolute; inset:0; background:rgba(255,255,255,.8); display:flex; align-items:center; justify-content:center; gap:10px; font-weight:600; border-radius:12px;}
.afb-placeholder{padding:16px;border:1px dashed var(--b);border-radius:12px;color:var(--muted);text-align:center;}

/* Desktop table */
.afb-table{width:100%;border-collapse:separate;border-spacing:0;margin-top:8px;border:1px solid var(--b);border-radius:12px;overflow:hidden;}
.afb-table th,.afb-table td{padding:10px;border-bottom:1px solid var(--b);font-size:14px;text-align:left;}
.afb-table th{background:#f9fafb;font-weight:700;cursor:pointer;user-select:none;}
.afb-table tr:nth-child(even) td{background:#fcfcfd;}
.afb-price{font-weight:800;}
.afb-pagination{display:flex;justify-content:center;gap:6px;margin-top:12px;}
.afb-pagination button{padding:6px 10px;border:1px solid var(--b);background:#f3f4f6;border-radius:8px;cursor:pointer;}
.afb-pagination button.active{background:var(--p);color:#fff;border-color:var(--p);}

/* Call Now button */
.afb-btn-call{background:#16a34a; color:#fff; padding:8px 12px; border-radius:10px; text-decoration:none; font-weight:700; display:inline-flex; align-items:center; gap:6px; border:1px solid #12893c;}
.afb-btn-call:hover{filter:brightness(.95);}

/* Mobile cards */
.afb-mobile-controls{display:none; gap:8px; margin:8px 0;}
.afb-seg{display:flex; border:1px solid var(--b); border-radius:10px; overflow:hidden;}
.afb-seg button{flex:1; padding:8px 10px; border:none; background:#f3f4f6; cursor:pointer; font-weight:600;}
.afb-seg button.active{background:#16a34a; color:#fff;}
.afb-card-list{display:none; display:flex; flex-direction:column; gap:12px; margin-top:8px;}
.afb-card-item{border:1px solid var(--b); border-radius:12px; box-shadow:0 6px 18px rgba(0,0,0,.04); padding:12px;}
.afb-card-line{display:flex; justify-content:space-between; margin-bottom:6px; font-size:14px;}
.afb-card-price{font-weight:800;}
.afb-card-call{margin-top:8px; display:flex; justify-content:flex-end;}

/* Responsive behavior */
@media (max-width: 767px){
  /* Hide table + pagination on mobile, show cards + controls */
  .afb-table, .afb-pagination { display:none !important; }
  .afb-mobile-controls{ display:flex; }
  .afb-card-list{ display:flex; }
}

@media (min-width: 768px){
  /* Desktop: no mobile controls/cards */
  .afb-mobile-controls{ display:none !important; }
  .afb-card-list{ display:none !important; }
}
