/* ===== Booking Flow Theming ===== */
.booking-hero {
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  padding: clamp(40px, 5vw, 72px) 0;
  border-bottom: 1px solid color-mix(in oklab, var(--bg-2), #000 8%);
}

.booking-title {
  text-align: center;
  font-family: inherit; /* use same site font */
  font-weight: 900;
  font-size: clamp(2.6rem, 2.2rem + 3vw, 4.8rem);
  line-height: 1.05;
  margin: 0;
  color: var(--text);
}

/* Container width + remove big white frame */
#zbook-here { background: linear-gradient(180deg, var(--bg-2), var(--bg)); padding: 0; }
#zbook-root-div { width: min(980px, 92%); margin-inline: auto; }

/* Hide/flatten the top wrapper shell if your theme adds one */
.zbook-top-wrapper { background: transparent !important; box-shadow: none !important; border: 0 !important; padding: 0 !important; }

/* Progress tabs: only active visible */
#zbook-progresstab-wrapper { justify-content: center; margin: 18px 0; border-bottom: 2px solid var(--text);}
#zbook-progresstab-wrapper .zbook-tab-inactive { display: none !important; }
#zbook-progresstab-wrapper .zbook-tab-active { 
  color: var(--text); font-weight: 700; border: transparent; background: transparent;
}
/* Card fills the Bootstrap column but never exceeds 340px */
.zbook-tile-wrapper {
  width: 100% !important;     /* take the column width */
  max-width: 340px;           /* cap so all tiles look identical */
  margin: 0 auto;
  margin-bottom: 20px;             /* center within the column */
}

/* Fixed image area; no stretching, no pull */
.zbook-tile-photo {
  height: 195px;              
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  overflow: hidden;  
}

.zbook-tile-photo-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Tidy label under image */
.zbook-tile-label {
  height: 60px;
  display: grid;
  place-items: center;
}

/* (Optional) stronger spacing between rows on big screens */
@media (min-width: 992px) {
  #zbook-step1-wrapper .row.g-3 { row-gap: 28px; }
}

.zbook-service-back {
  color: var(--text);                 /* global text color */
  background-color: transparent;      /* clean background */
  border: 2px solid var(--accent);          /* your global accent */
  transition: all 0.25s ease-in-out;  /* smooth hover/active */
}

/* Hover effect */
.zbook-service-back:hover {
  background-color: var(--accent);   /* fill with your pink tone */
  color: #fff;                 /* invert text/icon */
  box-shadow: 0 4px 12px rgba(234,73,153,0.3);
}

/* Active (on click) effect */
.zbook-service-back:active {
  transform: scale(0.96);       /* slight "press down" */
  box-shadow: 0 2px 6px rgba(234,73,153,0.4);
}

.zbook-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  height: 38px;
  padding: 0 16px;

  font-size: 14px;
  font-weight: 600;
  font-family: inherit;

  border: 2px solid var(--accent);     /* accent border */
  background: transparent;       /* transparent default */
  color: var(--text);            /* global text color */

  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  white-space: nowrap;
}

/* Hover */
.zbook-button:hover {
  background: var(--accent);           /* accent fill */
  color: #fff;                   /* invert text */
  text-decoration: none;
}

.zbook-service-item-wrapper {
  display: flex;              /* stack rows vertically */
  flex-direction: column;
  align-items: stretch;
  gap: 6px;                   /* space between title row and desc */
}

/* Description: smaller + lighter text, sits under the first row */
.zbook-service-item-desc {
  font-size: clamp(.82rem, .78rem + .2vw, .95rem);
  line-height: 1.4;
  color: var(--muted, #6b7280);  /* use your muted color if defined */
  padding-left: 15px;
  white-space: normal;
  overflow-wrap: anywhere;       /* long words won’t overflow */
}

/* No space if there’s no description */
.zbook-service-item-desc:empty {
  display: none;
}

.zbook-provider-tile-wrapper {
  min-width: 80px;
}