.sbm-space-wrap{max-width:1200px;margin:32px auto;padding:0 16px}
.sbm-section{margin-bottom:32px}
.sbm-hero-row{display:grid;grid-template-columns:1.2fr 1fr;gap:24px;align-items:start}
.sbm-main-image{border:1px solid #e5e7eb;border-radius:12px;overflow:hidden}
#sbm-main-img{width:100%;height:auto;display:block}
.sbm-thumbs{display:flex;flex-wrap:wrap;gap:10px;margin-top:10px}
.sbm-thumb{border:1px solid #e5e7eb;border-radius:8px;padding:0;overflow:hidden;background:#fff;cursor:pointer}
.sbm-thumb img{display:block;width:80px;height:80px;object-fit:cover}
.sbm-info-col .sbm-title{margin:0 0 8px}
.sbm-short{color:#666}
.sbm-actions{display:flex;flex-wrap:wrap;gap:10px;margin:12px 0}
.btn{display:inline-block;padding:10px 14px;border:1px solid #cbd5e1;border-radius:8px;background:#fff;text-decoration:none;color:#111;font-weight:600}
.btn.primary{background:#111;color:#fff;border-color:#111}
.sbm-social{display:flex;flex-wrap:wrap;gap:10px;margin:6px 0 10px}
.sbm-social-link{font-size:.9rem;border:1px solid #e2e8f0;border-radius:999px;padding:6px 10px;text-decoration:none;color:#111;background:#f8fafc}
.sbm-features-chips{display:flex;flex-wrap:wrap;gap:8px;margin:8px 0 12px}
.chip{background:#f1f5f9;border:1px solid #e2e8f0;border-radius:999px;padding:6px 10px;font-size:.9rem}
.sbm-video-list{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:16px}
.sbm-video-embed iframe{width:100%;height:180px}
.sbm-date-controls{display:flex;gap:10px;align-items:center;margin-bottom:10px}
.sbm-slots{display:flex;flex-wrap:wrap;gap:8px}
.sbm-slot{padding:8px 12px;border:1px solid #cbd5e1;border-radius:8px;background:#fff;cursor:pointer}
.sbm-slot.active{border-color:#111;font-weight:600}
.sbm-booking input{width:100%;max-width:260px;margin:8px 8px 8px 0}
.sbm-gmap{width:100%;height:320px;border-radius:12px;border:1px solid #e5e7eb}
.sbm-related-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(180px,1fr));gap:16px}
.sbm-related-item{display:block;border:1px solid #e5e7eb;border-radius:10px;overflow:hidden;background:#fff;text-decoration:none;color:inherit}
.sbm-related-item .thumb img{width:100%;height:140px;object-fit:cover;display:block}
.sbm-related-item .title{padding:10px;font-weight:600}
@media(max-width:900px){.sbm-hero-row{grid-template-columns:1fr}.sbm-video-embed iframe{height:200px}}


/* ===== Card Layout ===== */
.turf-card {
  display: flex;
  gap: 2rem;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  align-items: flex-start; 
  margin: 0 auto;
  flex-wrap: wrap;
}

/* ===== Gallery ===== */
.turf-gallery {
  flex: 0 0 40%;
  min-width: 280px;
}
.turf-gallery .main-img img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}
.turf-gallery .thumbs {
  margin-top: 8px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.turf-gallery .thumbs img,
.turf-gallery .thumbs button img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 4px;
}

/* ===== Info ===== */
.turf-info {
  flex: 1 1 55%;
  font-size: 15px;
  min-width: 300px;
}

.turf-info .title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}
.turf-info .location {
  margin: 4px 0 8px;
  color: #444;
}

.meta {
  font-size: .95rem;
  color: #666;
  margin-bottom: 8px;
}
.rating small {
  color: #777;
  margin-left: 2px;
}

/* ===== Price + Button ===== */
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 8px 0 4px;
  flex-wrap: wrap;
}

.price {
  font-size: 1.25rem;
  font-weight: 600;
}

.btn-book {
  background: #28a745;
  color: #fff;
  padding: 8px 18px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

/* ===== Under Price Links ===== */
.price-note {
  font-size: .85rem;
  color: #555;
}

.actions {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.btn-link {
  font-size: .9rem;
  color: #007bff;
  text-decoration: none;
}

/* ===== Features ===== */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 4px 16px;
  margin: 14px 0;
  padding: 0;
  list-style: none;
}
.features li {
  font-size: .9rem;
}

/* ===== Cancellation Note ===== */
.cancel {
  font-size: .85rem;
  color: #555;
  margin-top: 6px;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .turf-card { gap: 1.5rem; }
  .turf-gallery,
  .turf-info { flex: 1 1 100%; }
}

@media (max-width: 600px) {
  .turf-card { padding: 16px; }
  .turf-info .title { font-size: 1.25rem; }
  .price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .btn-book {
    align-self: stretch;
    text-align: center;
  }
  .turf-gallery .thumbs img { width: 44px; height: 44px; }
}

/* ===== Container ===== */
.booking-wrap {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  margin: 20px auto;
}

/* ===== Availability box ===== */
.avail-box {
  flex: 1 1 60%;
  min-width: 300px;
}
.avail-box h2 {
  margin-top: 0;
  font-size: 1.2rem;
}

.sbm-date-controls {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}
#sbm-date {
  flex: 1;
  padding: 6px;
}

.sbm-slots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 8px;
  margin-bottom: 12px;
}
.slot {
  background: #f8f9fa;
  border: 1px solid #ddd;
  padding: 6px 8px;
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
}

.sbm-booking input {
  width: 100%;
  padding: 6px;
  margin-bottom: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.sbm-booking .button-primary {
  background: #28a745;
  color: #fff;
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
}
.tip {
  font-size: 0.85rem;
  color: #666;
  margin-top: 4px;
}

/* ===== Location box ===== */
.loc-box {
  flex: 1 1 35%;
  min-width: 260px;
}
.loc-box h2 {
  margin-top: 0;
  font-size: 1.2rem;
}
.sbm-gmap {
  height: 180px;
  background: #f2f2f2;
  border: 1px solid #ddd;
  margin: 8px 0;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 0.9rem;
}
.get-dir {
  font-size: 0.9rem;
  color: #007bff;
  text-decoration: none;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .booking-wrap {
    flex-direction: column;
    padding: 16px;
  }
  .sbm-slots {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
  .sbm-gmap { height: 200px; }
}
/* ===== Reviews container ===== */
.sbm-reviews {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05); 
  margin: 20px auto;
}

.sbm-reviews h2 {
  margin: 0 0 12px;
  font-size: 1.1rem;
}

/* ===== List ===== */
.review-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ===== Item ===== */
.review {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: #fff;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.review:last-child {
  border-bottom: none;
}

.left {
  flex: 1;
}

.meta {
  font-size: 0.95rem;
  font-weight: 600;
  color: #222;
}

.meta .ago {
  margin-left: 4px;
  font-weight: 400;
  color: #777;
  font-size: 0.85rem;
}

.text {
  margin-top: 4px;
  font-size: 0.95rem;
  color: #444;
}

/* ===== Rating ===== */
.rating {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 1rem;
  color: #f5a623; /* gold */
  white-space: nowrap;
}

.rating .star {
  margin-right: 2px;
  font-size: 1.1rem;
}

/* ===== Write button ===== */
.btn-review {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 14px;
  font-size: 0.9rem;
  background: #f8f9fa;
  border: 1px solid #ccc;
  border-radius: 4px;
  color: #333;
  text-decoration: none;
}

/* ===== Responsive ===== */
@media (max-width: 600px) {
  .review {
    flex-direction: column;
  }
  .rating {
    margin-top: 6px;
  }
}
/* ===== Related section ===== */
.sbm-related {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05); 
  margin: 20px auto;
}

.sbm-related h2 {
  margin-top: 0;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

/* ===== Grid ===== */
.sbm-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}

/* ===== Card ===== */
.related-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}

.related-card .thumb {
  display: block;
  width: 100%;
  height: 150px;
  background: #f4f4f4;
  overflow: hidden;
}
.related-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.no-thumb {
  width: 100%;
  height: 150px;
  background: #f0f0f0;
}

/* ===== Info ===== */
.related-card .info {
  padding: 12px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.related-card .title {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #222;
}
.related-card .title a {
  text-decoration: none;
  color: inherit;
}

.related-card .meta {
  font-size: 0.9rem;
  color: #555;
  margin: 6px 0 12px;
}

/* ===== Book button ===== */
.related-card .btn-book {
  align-self: flex-start;
  background: #28a745;
  color: #fff;
  padding: 6px 14px;
  font-size: 0.85rem;
  border-radius: 4px;
  text-decoration: none;
}

/* ===== Responsive ===== */
@media (max-width: 600px) {
  .related-card .thumb { height: 120px; }
}
