
/* Grid layout — respects theme width (no forced full width) */
.bsm-grid{
  display:grid;
  gap:12px;
  padding:12px 0;
}
.bsm-slot{
  border-radius:10px;
  box-shadow:0 1px 2px rgba(0,0,0,.06);
  background:#fff;
  overflow:hidden;
  height:100%;
  border:1px solid #e6e8eb;
}
.bsm-inner{position:relative;width:100%;height:100%}
.bsm-img, .bsm-img-ph{width:100%;height:auto;display:block}
.bsm-overlay-text{
  position:absolute;left:10px;right:10px;bottom:10px;
  background:rgba(0,0,0,.55);color:#fff;padding:8px 10px;
  font-size:15px;line-height:1.35;border-radius:6px;text-align:left;
}
.bsm-caption{
  position:absolute;left:10px;top:10px;
  background:rgba(255,255,255,.9);color:#111;
  font-weight:700;padding:6px 10px;border-radius:6px;max-width:80%;
  box-shadow:0 1px 2px rgba(0,0,0,.05);
}
.bsm-free{padding:26px 0;color:#666;text-align:center}
.bsm-grid .button.bsm-book{
  display:inline-block;margin:8px auto 0;text-decoration:none;
  border:1px solid #cfd3d7;padding:6px 10px;border-radius:6px;background:#f7fafc
}

/* Submit form */
.bsm-form{
  border:1px solid #e3e5e8;border-radius:12px;padding:20px;background:#fff;max-width:900px;margin-top:20px
}
.bsm-form h3{margin:0 0 12px 0}
.bsm-form .bsm-form-row{display:grid;grid-template-columns:1fr 1fr;gap:14px}
@media(max-width:800px){.bsm-form .bsm-form-row{grid-template-columns:1fr}}
.bsm-form .bsm-field input[type="text"],
.bsm-form .bsm-field input[type="url"],
.bsm-form .bsm-field input[type="file"],
.bsm-form .bsm-field select,
.bsm-form .bsm-field textarea{width:100%}
.bsm-form .bsm-field textarea{min-height:110px}
.bsm-radios{display:flex;gap:18px;margin-top:6px}
.bsm-actions{margin-top:14px}
.bsm-note{font-size:12px;color:#666;margin-top:8px}
.bsm-hint{color:#666;margin-left:6px}
