.autoscan-wrap{
  max-width: 920px;
  margin: 18px auto;
  padding: 0 14px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.autoscan-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:16px;
  padding:16px;
  margin-bottom:14px;
  box-shadow:0 8px 18px rgba(0,0,0,.05);
}

.autoscan-header{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:12px;
}

.autoscan-h1{ font-size:18px; font-weight:900; line-height:1.2; }
.autoscan-sub{ margin-top:4px; font-size:13px; opacity:.75; }

.autoscan-badge{
  margin-top:10px;
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,0,0,.25);
  background:rgba(255,0,0,.06);
  font-weight:900;
}
.autoscan-badge .dot{
  width:10px;height:10px;border-radius:50%;
  background:#e11;
  box-shadow:0 0 0 4px rgba(255,0,0,.15);
}

.autoscan-lang{ display:flex; gap:8px; flex-wrap:wrap; justify-content:flex-end; }
.autoscan-lang-btn{
  border:1px solid rgba(0,0,0,.18);
  background:#fafafa;
  padding:8px 10px;
  border-radius:999px;
  font-weight:800;
  cursor:pointer;
}
.autoscan-lang-btn.is-active{ background:#111; color:#fff; border-color:#111; }

.autoscan-step{ display:flex; gap:10px; align-items:center; margin-bottom:12px; }
.autoscan-step-num{
  width:28px; height:28px;
  border-radius:10px;
  display:inline-flex; align-items:center; justify-content:center;
  font-weight:900; background:rgba(0,0,0,.06);
}
.autoscan-step-text{ font-weight:900; }

.autoscan-grid{ display:grid; grid-template-columns:1fr; gap:10px; }
@media (min-width:720px){
  .autoscan-grid{ grid-template-columns:1fr 1fr 1fr 1fr; }
  .autoscan-h1{ font-size:20px; }
}

.autoscan-choice{
  width:100%;
  text-align:left;
  border:1px solid rgba(0,0,0,.12);
  background:#fff;
  border-radius:14px;
  padding:14px;
  cursor:pointer;
  transition:transform .05s ease, border-color .15s ease;
}
.autoscan-choice:active{ transform:scale(.99); }
.autoscan-choice.is-selected{
  border-color:#111;
  box-shadow:0 10px 22px rgba(0,0,0,.08);
}
.autoscan-choice-title{ font-weight:900; margin-bottom:6px; }
.autoscan-choice-desc{ font-size:13px; opacity:.75; line-height:1.35; }

.autoscan-row{
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
}
@media (min-width:720px){
  .autoscan-row{ grid-template-columns:repeat(4, 1fr); }
}
.autoscan-row select{
  width:100%;
  padding:11px 12px;
  border-radius:12px;
  border:1px solid rgba(0,0,0,.15);
  background:#fff;
  font-weight:800;
}

.autoscan-result{
  margin-top:12px;
  background:#f8f8f8;
  border:1px solid rgba(0,0,0,.08);
  padding:14px;
  border-radius:14px;
}
.autoscan-result-title{ font-weight:900; font-size:16px; margin-bottom:6px; }
.autoscan-result-line{ font-size:14px; opacity:.85; margin:4px 0; }

.autoscan-actions{
  display:flex; gap:10px; flex-wrap:wrap;
  margin-top:12px;
}

.autoscan-btn{
  display:inline-flex; align-items:center; justify-content:center;
  text-decoration:none;
  border-radius:12px;
  padding:12px 14px;
  font-weight:900;
  border:1px solid rgba(0,0,0,.12);
  cursor:pointer;
}

.autoscan-btn-call{ background:#111; color:#fff; border-color:#111; flex:1; min-width:220px; }
.autoscan-btn-wa{ background:#fff; color:#111; }
.autoscan-btn-book{ background:#fff; color:#111; }

.autoscan-small{ margin-top:10px; font-size:12px; opacity:.7; }

/* Modal */
.autoscan-modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.45);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:16px;
  z-index:99999;
}
.autoscan-modal-card{
  width:100%;
  max-width:520px;
  background:#fff;
  border-radius:16px;
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 18px 40px rgba(0,0,0,.20);
  overflow:hidden;
}
.autoscan-modal-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 16px;
  border-bottom:1px solid rgba(0,0,0,.08);
}
.autoscan-modal-title{ font-weight:900; }
.autoscan-x{
  font-size:22px;
  border:none;
  background:transparent;
  cursor:pointer;
  line-height:1;
}
.autoscan-modal-body{
  padding:16px;
  display:grid;
  gap:10px;
}
.autoscan-modal-body input,
.autoscan-modal-body textarea{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid rgba(0,0,0,.15);
  font-weight:700;
}
.autoscan-modal-body textarea{ min-height:90px; resize:vertical; }
.autoscan-booking-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:6px;
}