/* Force the Book Online page to match the Wix layout */

/* Background image behind the services grid */
.page-book .services-hero{
  position: relative;
  min-height: 1200px;
  padding: 40px 0 70px;
  overflow: hidden;
}

.page-book .services-bg{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0,0,0,0.18), rgba(0,0,0,0.18)),
    url("assets/book-bg.jpg") center/cover no-repeat;
  z-index: 0;
}

/* The translucent centered panel */
.page-book .services-panel{
  position: relative;
  z-index: 1;
  width: min(980px, 92vw);
  margin: 0 auto;
  background: rgba(255,255,255,0.50);
  padding: 24px 26px 30px;
}

/* Top text + title */
.page-book .services-kicker{
  margin: 0 auto 14px;
  width: min(720px, 92vw);
  text-align: center;
  font-size: 12px;
  color: rgba(0,0,0,0.78);
  font-weight: 600;
}

.page-book .services-title{
  margin: 0 0 18px;
  text-align:center;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: rgba(0,0,0,0.70);
}

/* The 3-column card grid */
.page-book .services-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* Each card */
.page-book .service-card{
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(0,0,0,0.08);
  padding: 0 0 16px;
  text-align: center;
}

.page-book .service-card img{
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.page-book .service-card h3{
  margin: 14px 10px 10px;
  font-family:"Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: rgba(0,0,0,0.70);
  line-height: 1.2;
}

.page-book .service-meta{
  margin: 0;
  font-size: 12px;
  color: rgba(0,0,0,0.65);
}

.page-book .service-price{
  margin: 8px 0 12px;
  font-size: 12px;
  color: rgba(0,0,0,0.70);
}

.page-book .service-btn{
  display: inline-block;
  background: #B63A2B;
  color: #fff;
  text-decoration: none;
  padding: 8px 18px;
  font-size: 12px;
  border-radius: 2px;
}

.page-book .service-btn:hover{ filter: brightness(1.06); }

/* Responsive */
@media (max-width: 980px){
  .page-book .services-grid{ grid-template-columns: 1fr; }
}

/* ===== Make selections obvious (Calendar + Time) ===== */
.cal-day{ cursor: pointer; }
.cal-day:hover{ border-color: rgba(182,58,43,0.55); }

.cal-day.is-selected{
  background: #B63A2B;
  color: #fff;
  border-color: #B63A2B;
  font-weight: 700;
  box-shadow: 0 0 0 2px rgba(182,58,43,0.18);
}

.cal-day.is-disabled,
.cal-day:disabled{
  opacity: .35;
  cursor: not-allowed;
  background: rgba(0,0,0,0.03);
  border-color: rgba(0,0,0,0.08);
}

.time-slot{
  cursor: pointer;
  transition: transform .05s ease;
}

.time-slot:hover{
  border-color: rgba(182,58,43,0.55);
  transform: translateY(-1px);
}

/* IMPORTANT: keep time text visible */
.time-slot.is-selected{
  background: #B63A2B;
  border-color: #B63A2B;
  color: #fff !important;
  font-weight: 700;
  box-shadow: 0 0 0 2px rgba(182,58,43,0.18);
}

.time-slot:disabled{
  opacity: .45;
  cursor: not-allowed;
  text-decoration: line-through;
}

.next-btn.is-disabled{
  opacity: 0.6;
  cursor: not-allowed;
}

/* Selected summary + details price */
.selected-summary{
  margin-top: 14px;
  font-size: 12px;
  color: rgba(0,0,0,0.65);
}

.details-price{
  margin-top: 8px;
  font-size: 12px;
  color: rgba(0,0,0,0.70);
}

/* nicer keyboard focus */
.time-slot:focus-visible,
.cal-day:focus-visible{
  outline: 3px solid rgba(182, 58, 43, 0.35);
  outline-offset: 2px;
}
