/* ===== Mobile calendar (10 columns) ===== */
.calendar-mobile{margin-top:18px}
.cal-mobile-toolbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:12px;
}
.cal-mobile-title{color:var(--muted);font-weight:700;font-size:13px}
.cal-mobile-grid{
  border:1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  background:#fff;
}
.cal-m-row{
  display:grid;
  grid-template-columns: repeat(10, 1fr);
  border-bottom:1px solid var(--line);
}
.cal-m-row:last-child{border-bottom:none}
.cal-m-cell{
  min-height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-right:1px solid var(--line);
  font-size:12px;
}
.cal-m-cell:last-child{border-right:none}
.cal-m-date{color:var(--muted);font-weight:700;background:#fafafa}
.cal-m-suitehead{
  grid-column:1 / -1;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 12px;
  color:var(--text);
  font-weight:800;
  background:#fff;
}
.cal-m-price.avail{color:#16a34a;font-weight:900}
.cal-m-price.unavail{background:#fee2e2;color:#b91c1c;font-weight:800}
.cal-m-price.selected{background:rgba(34,197,94,.16) !important}
.cal-m-price.checkout{background:rgba(14,165,233,.14) !important}