.wbt-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 24px;
  border-radius:999px;
  border:0;
  cursor:pointer;
  background:#0071EB;
  color:#fff;
  font-weight:700;
}
.wbt-btn:hover,
.wbt-btn:focus{
  background:#005ed1;
  color:#fff;
}
.wbt-btn-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:20px;
  height:20px;
  flex:0 0 20px;
  line-height:1;
}
.wbt-btn-svg{
  display:block;
  width:20px;
  height:20px;
  fill:#ffffff;
}
.wbt-btn .wbt-btn-label{
  letter-spacing:0;
}

.wbt-btn-label{
  display:inline-block;
  line-height:1.2;
}
.wbt-btn:active{ transform:translateY(1px); }

.wbt-modal{ display:none; position:fixed !important; inset:0 !important; z-index:100000 !important; isolation:isolate; }
.wbt-modal.is-open{ display:block; }
body.wbt-modal-open{ overflow:hidden; }

.wbt-modal-backdrop{
  position:fixed; inset:0;
  background:rgba(0,0,0,.55);
  z-index:100001;
}
.wbt-modal-panel{
  position:fixed;
  z-index:100002;
  left:50%; top:50%;
  transform:translate(-50%,-50%);
  width:min(520px, calc(100% - 24px));
  background:#fff;
  border-radius:16px;
  padding:16px;
  isolation:isolate;
  max-height:calc(100vh - 24px);
  overflow:auto;
}
.wbt-modal-close{
  position:absolute;
  right:12px; top:10px;
  border:0; background:transparent;
  font-size:22px; cursor:pointer;
  line-height:1;
  color:#111;
  padding:6px;
  opacity:.85;
}
.wbt-modal-close:hover{opacity:1;}
.wbt-modal-close:focus{outline:2px solid rgba(0,0,0,.25);outline-offset:2px;border-radius:8px;}

.wbt-title{ margin:0 0 12px; }

.wbt-form label{ display:block; font-weight:600; margin-top:10px; }

.wbt-form-row{
  display:grid;
  grid-template-columns: minmax(110px, .8fr) minmax(0, 1.2fr);
  gap:12px;
  align-items:start;
}
.wbt-form-col{
  min-width:0;
}
.wbt-form-col label{
  margin-top:0;
}
.wbt-form-row + label,
.wbt-form-row + .wbt-summary,
.wbt-form-row + .wbt-step-next,
.wbt-form-row + .wbt-step-actions,
.wbt-form-row + .wbt-msg,
.wbt-form-row + .wbt-field,
.wbt-form-row + .wbt-date-wrap{
  margin-top:0;
}
.wbt-form-col .wbt-field,
.wbt-form-col .wbt-date-wrap{
  margin-top:6px;
}
.wbt-form-col .wbt-date-wrap .wbt-date{
  min-width:0;
}

.wbt-field{
  width:100%;
  padding:10px 12px;
  border:1px solid #ddd;
  border-radius:12px;
  margin-top:6px;
}

.wbt-summary{
  margin-top:12px;
  padding:12px;
  border-radius:12px;
  background:#f7f7f7;
  display:flex;
  justify-content:space-between;
  gap:10px;
}
.wbt-book-now{
  width:100%;
  margin-top:12px;
  padding:14px 20px;
  border-radius:999px;
  border:0;
  background:#000000;
  color:#fff;
  font-weight:800;
  cursor:pointer;
}
.wbt-book-now:hover,.wbt-book-now:focus{ background:#111111; color:#fff; }
.wbt-msg{ margin-top:10px; font-size:13px; }


/* Date field: show icon + placeholder overlay (iOS friendly) */
.wbt-date-wrap{
  position: relative;
  width: 100%;
  display: block;
}

.wbt-date-wrap .wbt-date{
  width: 100%;
  box-sizing: border-box;
  padding-right: 58px; /* space for icon */
  /* IMPORTANT: do NOT remove native date UI on desktop.
     Some browsers won't open the picker if appearance is stripped. */
  -webkit-appearance: auto;
  appearance: auto;
}

/* Our calendar icon (bigger + tappable) */
.wbt-date-icon{
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  line-height: 1;
  opacity: .85;
  pointer-events: auto;
  user-select: none;
  cursor: pointer;
}

/*
  Fake placeholder overlay is ONLY needed on iOS Safari (where date placeholders can be unreliable).
  On desktop it can appear "double" and look like text is stacked.
*/
@supports (-webkit-touch-callout: none) {
  /* Fake placeholder for iOS (shown when empty) */
  .wbt-date-wrap::before{
    content: attr(data-placeholder);
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    opacity: .55;
    pointer-events: none;
    font-size: 14px;
  }

  /* Hide fake placeholder when value exists */
  .wbt-date-wrap.has-value::before{
    display: none;
  }
}

/* Keep the native date picker working on desktop */
.wbt-date{ cursor: pointer; }



/* Calendar SVG icon */
.wbt-date-icon{
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(0,0,0,.04);
}
.wbt-date-svg{
  width: 22px;
  height: 22px;
  fill: rgba(0,0,0,.70);
}

/* iOS Safari-specific reset (safe on touch Safari only) */
@supports (-webkit-touch-callout: none) {
  .wbt-date-wrap .wbt-date{
    -webkit-appearance: none;
    appearance: none;
    background-color: #f2f2f2;
  }

  /* Hide native indicator on iOS, we use our own icon */
  .wbt-date::-webkit-calendar-picker-indicator{
    opacity: 0 !important;
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
    color: transparent !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .wbt-date::-webkit-inner-spin-button,
  .wbt-date::-webkit-clear-button{
    display: none;
  }

  .wbt-date::-webkit-datetime-edit{
    color: inherit;
  }
}


/* Inline form mode (shortcode [wbt_booking_form]) */

.wbt-inline{
  position:relative !important;
}
.wbt-inline .wbt-inline-card{
  position:static !important;
  inset:auto !important;
  left:auto !important;
  top:auto !important;
  transform:none !important;
  width:100%;
  max-width:100%;
  z-index:auto !important;
  background:#fff;
  padding:20px;
  border-radius:20px;
  box-shadow:0 16px 48px rgba(0,0,0,.08);
}
.wbt-inline .wbt-form,
.wbt-inline .wbt-step,
.wbt-inline .wbt-summary,
.wbt-inline .wbt-step-head,
.wbt-inline .wbt-inline-price{
  position:static !important;
}
.wbt-inline .wbt-modal{
  display:block;
}
.wbt-inline .wbt-modal-backdrop{
  display:none;
}
.wbt-inline .wbt-modal-panel{
  position:relative;
  left:auto;
  top:auto;
  transform:none;
  width:100%;
  max-width:100%;
  z-index:auto;
  padding:0;
  border-radius:0;
}
.wbt-inline .wbt-title{
  margin:0 0 12px;
}

.wbt-inline .wbt-modal-panel.wbt-inline-steps{
  background:#fff;
  padding:20px;
  border-radius:20px;
  box-shadow:0 16px 48px rgba(0,0,0,.08);
}

.wbt-inline-price{
  margin:0 0 18px;
  padding:0 0 16px;
  border-bottom:1px solid #e5e7eb;
}
.wbt-inline-price-top{
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:4px;
  font-size:14px;
  color:#111827;
}
.wbt-inline-price-from{
  font-weight:700;
}
.wbt-inline-price-strike{
  color:#6b7280;
  text-decoration:line-through;
  font-weight:700;
}
.wbt-inline-price-main{
  display:flex;
  align-items:baseline;
  gap:8px;
  flex-wrap:wrap;
}
.wbt-inline-price-amount{
  font-size:18px;
  line-height:1.2;
  font-weight:800;
  color:#d92d20;
}
.wbt-inline-price-suffix{
  font-size:14px;
  color:#111827;
  font-weight:600;
}
.wbt-inline .wbt-inline-steps .wbt-step-head{
  margin-bottom:16px;
}

/* Two-step popup booking form */
.wbt-modal-panel-steps{
  max-width: 560px;
  padding: 22px;
  border-radius: 22px;
  box-shadow: 0 24px 80px rgba(0,0,0,.18);
}
.wbt-step-head{
  margin-bottom: 14px;
}
.wbt-step-kicker{
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 8px;
}
.wbt-step-progress{
  display:flex;
  align-items:center;
  gap:8px;
  margin: 0 0 12px;
}
.wbt-step-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #d1d5db;
}
.wbt-step-dot.is-active{
  background: #111827;
}
.wbt-step-line{
  flex:1;
  height:2px;
  background:#e5e7eb;
}
.wbt-step{
  display:block;
}
.wbt-step[hidden]{
  display:none !important;
}
.wbt-step-next,
.wbt-step-back{
  width:100%;
  margin-top:12px;
  padding:14px 20px;
  border-radius:999px;
  font-weight:800;
  cursor:pointer;
}
.wbt-step-next{
  border:0;
  background:#111827;
  color:#fff;
}
.wbt-step-next:hover,
.wbt-step-next:focus{
  background:#000;
  color:#fff;
}
.wbt-step-back{
  border:1px solid #d1d5db;
  background:#fff;
  color:#111827;
}
.wbt-step-summary{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
  margin-bottom:12px;
}
.wbt-step-summary-item{
  padding:12px 14px;
  border:1px solid #ececec;
  border-radius:14px;
  background:#fafafa;
}
.wbt-step-summary-item span{
  display:block;
  font-size:12px;
  color:#6b7280;
  margin-bottom:4px;
}
.wbt-step-summary-item strong{
  display:block;
  font-size:14px;
  color:#111827;
}
.wbt-step-actions{
  display:grid;
  grid-template-columns: 1fr 1.3fr;
  gap:12px;
  align-items:center;
}
.wbt-step-actions .wbt-book-now,
.wbt-step-actions .wbt-step-back{
  margin-top:0;
}
.wbt-has-steps .wbt-summary{
  margin-top:14px;
  padding:14px;
  background:#f9fafb;
  border:1px solid #ececec;
}

@media (max-width: 767px){
  .wbt-modal-panel-steps{
    width: min(100% - 16px, 560px);
    padding: 18px;
    border-radius: 18px;
    max-height: calc(100vh - 24px);
    overflow:auto;
  }
  .wbt-step-actions{
    grid-template-columns:1fr;
  }
}

@media (max-width: 480px){
  .wbt-form-row{
    grid-template-columns: minmax(92px, .8fr) minmax(0, 1.2fr);
    gap:10px;
  }
  .wbt-form-col .wbt-field{
    padding:10px 10px;
  }
  .wbt-form-col .wbt-date-wrap .wbt-date{
    padding-right:46px;
  }
  .wbt-form-col .wbt-date-icon{
    right:10px;
    width:34px;
    height:34px;
  }
}


/* Unavailable dates helper */
.wbt-unavailable-dates{margin-top:8px;}
.wbt-unavailable-label{font-size:12px;font-weight:600;color:#6b7280;margin-bottom:6px;}
.wbt-unavailable-list{display:flex;flex-wrap:wrap;gap:6px;}
.wbt-unavailable-chip{display:inline-flex;align-items:center;padding:4px 8px;border-radius:999px;background:#f3f4f6;color:#9ca3af;border:1px solid #e5e7eb;text-decoration:line-through;font-size:12px;line-height:1.2;}


/* jQuery UI calendar for unavailable booking dates */
#ui-datepicker-div.wbt-datepicker-ui{z-index:100003 !important;background:#fff;border:1px solid #e5e7eb;border-radius:14px;box-shadow:0 16px 40px rgba(15,23,42,.14);padding:10px;width:290px;}
#ui-datepicker-div.wbt-datepicker-ui .ui-datepicker-header{position:relative;display:flex;align-items:center;justify-content:center;padding:4px 34px 10px;}
#ui-datepicker-div.wbt-datepicker-ui .ui-datepicker-title{font-size:15px;font-weight:700;color:#1f2937;}
#ui-datepicker-div.wbt-datepicker-ui .ui-datepicker-prev,
#ui-datepicker-div.wbt-datepicker-ui .ui-datepicker-next{position:absolute;top:2px;width:30px;height:30px;border-radius:999px;border:1px solid #e5e7eb;cursor:pointer;background:#fff;}
#ui-datepicker-div.wbt-datepicker-ui .ui-datepicker-prev{left:0;}
#ui-datepicker-div.wbt-datepicker-ui .ui-datepicker-next{right:0;}
#ui-datepicker-div.wbt-datepicker-ui .ui-datepicker-prev:before,
#ui-datepicker-div.wbt-datepicker-ui .ui-datepicker-next:before{content:'';position:absolute;top:50%;left:50%;width:8px;height:8px;border-top:2px solid #111827;border-right:2px solid #111827;transform-origin:center;}
#ui-datepicker-div.wbt-datepicker-ui .ui-datepicker-prev:before{transform:translate(-35%,-50%) rotate(-135deg);}
#ui-datepicker-div.wbt-datepicker-ui .ui-datepicker-next:before{transform:translate(-65%,-50%) rotate(45deg);}
#ui-datepicker-div.wbt-datepicker-ui .ui-datepicker-prev span,
#ui-datepicker-div.wbt-datepicker-ui .ui-datepicker-next span{display:none;}
#ui-datepicker-div.wbt-datepicker-ui table{width:100%;border-collapse:separate;border-spacing:4px;}
#ui-datepicker-div.wbt-datepicker-ui th{font-size:12px;font-weight:700;color:#6b7280;padding:4px 0;text-align:center;}
#ui-datepicker-div.wbt-datepicker-ui td{padding:0;text-align:center;}
#ui-datepicker-div.wbt-datepicker-ui td a,
#ui-datepicker-div.wbt-datepicker-ui td span{display:flex;align-items:center;justify-content:center;width:34px;height:34px;margin:0 auto;border-radius:999px;font-size:14px;text-decoration:none;}
#ui-datepicker-div.wbt-datepicker-ui td a{color:#111827;background:#fff;}
#ui-datepicker-div.wbt-datepicker-ui td a:hover{background:#eff6ff;}
#ui-datepicker-div.wbt-datepicker-ui td .ui-state-active{background:#111827 !important;color:#fff !important;}
#ui-datepicker-div.wbt-datepicker-ui td.wbt-date-disabled-day span,
#ui-datepicker-div.wbt-datepicker-ui td.ui-datepicker-unselectable span{background:#f3f4f6 !important;color:#9ca3af !important;text-decoration:line-through;cursor:not-allowed;}
#ui-datepicker-div.wbt-datepicker-ui .ui-datepicker-current-day a{background:#111827;color:#fff;}

.ui-widget-overlay{z-index:100000 !important;}

/* GYG two-step shortcode */
.wbt-gyg-wrap{--wbt-gyg-navy:#0f2554;--wbt-gyg-blue:#1273ea;--wbt-gyg-text:#14213d;--wbt-gyg-muted:#5d6778;--wbt-gyg-border:#d8dfeb;--wbt-gyg-bg:#fff;max-width:100%;color:var(--wbt-gyg-text);font-family:inherit}
.wbt-gyg-step1{background:var(--wbt-gyg-navy);border-radius:28px;padding:28px;box-shadow:0 14px 34px rgba(13,37,84,.12);margin:0 0 28px}
.wbt-gyg-step1__title{color:#fff;font-weight:800;font-size:clamp(28px,4vw,44px);line-height:1.05;text-align:center;margin:0 0 20px}
.wbt-gyg-step1__grid{display:grid;grid-template-columns:1fr;gap:16px}
.wbt-gyg-control{display:flex;align-items:center;gap:12px;background:#fff;border-radius:999px;padding:0 20px;min-height:76px}
.wbt-gyg-control__icon{font-size:28px;line-height:1}
.wbt-gyg-control select,.wbt-gyg-control input{border:0;background:transparent;box-shadow:none;font-size:20px;font-weight:700;color:var(--wbt-gyg-text);width:100%;min-height:60px;padding:0}
.wbt-gyg-check{min-height:76px;border:0;border-radius:999px;background:var(--wbt-gyg-blue);color:#fff;font-size:22px;font-weight:800;cursor:pointer}
.wbt-gyg-step1__from{margin-top:14px;color:#dce5f9;text-align:right;font-size:14px}.wbt-gyg-step1__from strong{color:#fff;font-size:22px}
.wbt-gyg-heading{font-size:clamp(28px,3vw,42px);font-weight:800;line-height:1.1;margin:0 0 20px}
.wbt-gyg-options{display:grid;gap:22px}
.wbt-gyg-card{border:2px solid var(--wbt-gyg-blue);border-radius:24px;background:var(--wbt-gyg-bg);overflow:hidden}
.wbt-gyg-card__toggle{width:100%;display:flex;justify-content:space-between;align-items:center;gap:18px;border:0;background:transparent;padding:22px 24px;cursor:pointer;text-align:left}
.wbt-gyg-card__title{font-size:clamp(24px,2.4vw,38px);font-weight:800;line-height:1.2;color:var(--wbt-gyg-text)}
.wbt-gyg-card__chev{font-size:32px;color:var(--wbt-gyg-blue);transform:rotate(180deg)}
.wbt-gyg-card__body{padding:0 24px 24px}.wbt-gyg-card:not(.is-open) .wbt-gyg-card__chev{transform:none}
.wbt-gyg-card__desc{font-size:20px;line-height:1.5;color:var(--wbt-gyg-muted);margin:0 0 18px}
.wbt-gyg-meta{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px 28px;padding:0 0 18px;margin:0 0 18px;border-bottom:1px solid var(--wbt-gyg-border)}
.wbt-gyg-meta__item{font-size:18px;font-weight:700;display:flex;align-items:center;gap:10px}
.wbt-gyg-label,.wbt-gyg-starting__label{display:block;font-size:16px;font-weight:800;margin:0 0 8px}
.wbt-gyg-pickup,.wbt-gyg-pickup-address-wrap,.wbt-gyg-starting{margin:0 0 16px}
.wbt-gyg-area,.wbt-gyg-address{width:100%;border:1px solid var(--wbt-gyg-border);border-radius:16px;min-height:58px;padding:14px 16px;font-size:17px;box-sizing:border-box}
.wbt-gyg-starting__date{font-size:18px;font-weight:700;color:var(--wbt-gyg-text)}
.wbt-gyg-badges{display:grid;gap:10px;padding:16px 0;border-top:1px solid var(--wbt-gyg-border);border-bottom:1px solid var(--wbt-gyg-border);margin:8px 0 18px}
.wbt-gyg-badge{font-size:18px;font-weight:700;color:var(--wbt-gyg-text)}
.wbt-gyg-pricebox{background:#f5f7fb;border-radius:0 0 20px 20px;margin:0 -24px -24px;padding:22px 24px 24px}
.wbt-gyg-pricebox__main{display:flex;align-items:baseline;gap:12px;flex-wrap:wrap}
.wbt-gyg-pricebox__sale{font-size:clamp(28px,3vw,46px);font-weight:900;color:#d12950}
.wbt-gyg-pricebox__strike{font-size:24px;color:#6b7280;text-decoration:line-through}
.wbt-gyg-pricebox__discount{font-size:24px;font-weight:800;color:#d12950}
.wbt-gyg-pricebox__sub,.wbt-gyg-pricebox__tax{font-size:18px;color:var(--wbt-gyg-muted);margin-top:4px}
.wbt-gyg-actions{display:flex;gap:16px;margin-top:18px}.wbt-gyg-book{flex:1;min-height:64px;border:2px solid var(--wbt-gyg-blue);border-radius:999px;background:#fff;color:var(--wbt-gyg-blue);font-size:22px;font-weight:800;cursor:pointer}
.wbt-gyg-msg{margin-top:10px;font-size:14px;color:#c03656;font-weight:700}
@media (min-width: 768px){.wbt-gyg-step1__grid{grid-template-columns:repeat(3,minmax(0,1fr));align-items:center}.wbt-gyg-card__body{padding:0 24px 24px}.wbt-gyg-step1__title{text-align:left}.wbt-gyg-step1__from{grid-column:3;text-align:right}}
@media (max-width: 767px){.wbt-gyg-step1{padding:24px 18px;border-radius:24px}.wbt-gyg-control{min-height:66px;padding:0 16px}.wbt-gyg-control select,.wbt-gyg-control input{font-size:18px;min-height:54px}.wbt-gyg-check{min-height:66px;font-size:20px}.wbt-gyg-heading{font-size:24px}.wbt-gyg-card__toggle{padding:18px}.wbt-gyg-card__title{font-size:20px}.wbt-gyg-card__body{padding:0 18px 18px}.wbt-gyg-card__desc,.wbt-gyg-badge,.wbt-gyg-pricebox__sub,.wbt-gyg-pricebox__tax,.wbt-gyg-starting__date,.wbt-gyg-meta__item{font-size:16px}.wbt-gyg-meta{grid-template-columns:1fr;gap:10px}.wbt-gyg-pricebox{margin:0 -18px -18px;padding:18px}.wbt-gyg-pricebox__sale{font-size:24px}.wbt-gyg-pricebox__strike,.wbt-gyg-pricebox__discount{font-size:18px}.wbt-gyg-actions{display:block}.wbt-gyg-book{width:100%;min-height:58px;font-size:20px}}

/* GYG layout tuning for single product */
.wbt-gyg-step1-origin,.wbt-gyg-step2-origin{display:none}
.wbt-gyg-wrap.is-desktop-mounted{display:block}
@media (min-width:1101px){
  .wbt-gyg-sidebar-mount .wbt-gyg-step1{background:#fff;border:1px solid #dfe4ee;border-radius:24px;padding:22px 18px;box-shadow:none;margin:0}
  .wbt-gyg-sidebar-mount .wbt-gyg-step1__title{display:none}
  .wbt-gyg-sidebar-mount .wbt-gyg-step1__from{margin:0 0 14px;text-align:left;color:#14213d;font-size:14px}
  .wbt-gyg-sidebar-mount .wbt-gyg-step1__from strong{font-size:20px;color:#0f2554}
  .wbt-gyg-sidebar-mount .wbt-gyg-step1__grid{display:grid;grid-template-columns:1fr;gap:12px}
  .wbt-gyg-sidebar-mount .wbt-gyg-control{min-height:54px;background:#f1f4f9;padding:0 16px;border-radius:999px;gap:10px}
  .wbt-gyg-sidebar-mount .wbt-gyg-control__icon{font-size:20px}
  .wbt-gyg-sidebar-mount .wbt-gyg-control select,
  .wbt-gyg-sidebar-mount .wbt-gyg-control input{min-height:46px;font-size:14px;font-weight:700}
  .wbt-gyg-sidebar-mount .wbt-gyg-check{min-height:54px;font-size:16px;border-radius:999px}
  .wbt-gyg-options-mount .wbt-gyg-heading{font-size:20px;margin:0 0 14px}
  .wbt-gyg-options-mount .wbt-gyg-options{gap:16px}
  .wbt-gyg-options-mount .wbt-gyg-card{border-radius:20px}
  .wbt-gyg-options-mount .wbt-gyg-card__toggle{padding:18px 20px}
  .wbt-gyg-options-mount .wbt-gyg-card__title{font-size:16px;line-height:1.35}
  .wbt-gyg-options-mount .wbt-gyg-card__chev{font-size:24px}
  .wbt-gyg-options-mount .wbt-gyg-card__body{padding:0 20px 20px}
  .wbt-gyg-options-mount .wbt-gyg-card__desc{font-size:14px;line-height:1.5;margin:0 0 14px}
  .wbt-gyg-options-mount .wbt-gyg-meta{gap:10px 20px;padding:0 0 14px;margin:0 0 14px}
  .wbt-gyg-options-mount .wbt-gyg-meta__item{font-size:14px}
  .wbt-gyg-options-mount .wbt-gyg-label,
  .wbt-gyg-options-mount .wbt-gyg-starting__label{font-size:14px;margin:0 0 6px}
  .wbt-gyg-options-mount .wbt-gyg-area,
  .wbt-gyg-options-mount .wbt-gyg-address{min-height:48px;padding:10px 14px;font-size:14px;border-radius:14px}
  .wbt-gyg-options-mount .wbt-gyg-starting__date,
  .wbt-gyg-options-mount .wbt-gyg-badge{font-size:14px}
  .wbt-gyg-options-mount .wbt-gyg-badges{padding:12px 0;margin:6px 0 14px}
  .wbt-gyg-options-mount .wbt-gyg-pricebox{margin:0 -20px -20px;padding:18px 20px 20px}
  .wbt-gyg-options-mount .wbt-gyg-pricebox__sale{font-size:22px}
  .wbt-gyg-options-mount .wbt-gyg-pricebox__strike,
  .wbt-gyg-options-mount .wbt-gyg-pricebox__discount{font-size:16px}
  .wbt-gyg-options-mount .wbt-gyg-pricebox__sub,
  .wbt-gyg-options-mount .wbt-gyg-pricebox__tax{font-size:13px}
  .wbt-gyg-options-mount .wbt-gyg-actions{gap:12px;margin-top:14px}
  .wbt-gyg-options-mount .wbt-gyg-book{min-height:48px;font-size:16px}
}
@media (max-width:767px){
  .wbt-gyg-step1{padding:18px 16px;border-radius:22px;margin:0 0 20px}
  .wbt-gyg-step1__title{font-size:18px;line-height:1.15;margin:0 0 12px}
  .wbt-gyg-step1__from{display:none}
  .wbt-gyg-control{min-height:56px;padding:0 14px;gap:10px}
  .wbt-gyg-control__icon{font-size:20px}
  .wbt-gyg-control select,.wbt-gyg-control input{font-size:16px;min-height:44px}
  .wbt-gyg-check{min-height:52px;font-size:16px}
  .wbt-gyg-control--desktop{display:none}
  .wbt-gyg-heading{font-size:18px;margin:0 0 12px}
  .wbt-gyg-card__title{font-size:17px}
  .wbt-gyg-book{min-height:50px;font-size:17px}
}

/* 2026-03 refinement for GYG layout */
.wbt-gyg-wrap{max-width:100%}
.wbt-gyg-step1__title{letter-spacing:-.02em}
.wbt-gyg-control{position:relative;border:0;box-shadow:none}
.wbt-gyg-control select,.wbt-gyg-control input{appearance:none;-webkit-appearance:none}
.wbt-gyg-control__icon{display:inline-flex;align-items:center;justify-content:center;width:24px;height:24px;flex:0 0 24px;color:#111827}
.wbt-gyg-control__icon::before{content:"";display:block;width:24px;height:24px;background-repeat:no-repeat;background-position:center;background-size:24px 24px}
.wbt-gyg-control__icon--participants::before{background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111827' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='M16 21v-2a4 4 0 0 0-4-4H7a4 4 0 0 0-4 4v2'/><circle cx='9.5' cy='7' r='4'/><path d='M22 21v-2a4 4 0 0 0-3-3.87'/><path d='M16 3.13a4 4 0 0 1 0 7.75'/></svg>")}
.wbt-gyg-control__icon--calendar::before{background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111827' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='4' width='18' height='18' rx='2' ry='2'/><line x1='16' y1='2' x2='16' y2='6'/><line x1='8' y1='2' x2='8' y2='6'/><line x1='3' y1='10' x2='21' y2='10'/></svg>")}
.wbt-gyg-control__icon--globe::before{background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111827' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='10'/><line x1='2' y1='12' x2='22' y2='12'/><path d='M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z'/></svg>")}
.wbt-gyg-step1__grid{gap:12px}
.wbt-gyg-check{display:inline-flex;align-items:center;justify-content:center;box-shadow:none}
.wbt-gyg-check:hover{filter:brightness(.98)}
.wbt-gyg-card{box-shadow:none}
.wbt-gyg-card__toggle,.wbt-gyg-book,.wbt-gyg-check{font-family:inherit}
.wbt-gyg-card__toggle{padding:16px 18px}
.wbt-gyg-card__body{padding:0 18px 18px}
.wbt-gyg-card__title{display:block}
.wbt-gyg-card__desc{font-size:14px;line-height:1.5}
.wbt-gyg-heading{font-size:20px;line-height:1.2;margin:0 0 14px}
.wbt-gyg-meta__item{font-size:14px}
.wbt-gyg-area,.wbt-gyg-address{font-size:14px;min-height:46px;padding:10px 14px;border-radius:14px}
.wbt-gyg-badge,.wbt-gyg-starting__date,.wbt-gyg-pricebox__sub,.wbt-gyg-pricebox__tax{font-size:14px}
.wbt-gyg-pricebox{padding:16px 18px 18px;margin:0 -18px -18px;border-top:1px solid var(--wbt-gyg-border);background:#f7f9fc}
.wbt-gyg-pricebox__sale{font-size:18px}
.wbt-gyg-pricebox__strike,.wbt-gyg-pricebox__discount{font-size:14px}
.wbt-gyg-actions{margin-top:12px}
.wbt-gyg-book{width:100%;min-height:46px;font-size:15px}

@media (max-width: 767px){
  .wbt-gyg-step1{padding:14px 14px 16px;border-radius:18px;margin:0 0 16px}
  .wbt-gyg-step1__title{font-size:16px;line-height:1.15;margin:0 0 10px}
  .wbt-gyg-control{min-height:48px;padding:0 12px;gap:8px}
  .wbt-gyg-control__icon,.wbt-gyg-control__icon::before{width:20px;height:20px;background-size:20px 20px}
  .wbt-gyg-control select,.wbt-gyg-control input{font-size:14px;min-height:38px}
  .wbt-gyg-check{min-height:44px;font-size:14px}
  .wbt-gyg-heading{font-size:16px;margin:0 0 10px}
  .wbt-gyg-card{border-radius:18px}
  .wbt-gyg-card__toggle{padding:14px 14px 10px}
  .wbt-gyg-card__title{font-size:15px;line-height:1.32}
  .wbt-gyg-card__chev{font-size:20px}
  .wbt-gyg-card__body{padding:0 14px 14px}
  .wbt-gyg-card__desc{font-size:13px;margin:0 0 12px}
  .wbt-gyg-meta{gap:8px;padding:0 0 12px;margin:0 0 12px}
  .wbt-gyg-meta__item{font-size:13px}
  .wbt-gyg-label,.wbt-gyg-starting__label{font-size:13px;margin:0 0 5px}
  .wbt-gyg-pickup,.wbt-gyg-pickup-address-wrap,.wbt-gyg-starting{margin:0 0 12px}
  .wbt-gyg-area,.wbt-gyg-address{min-height:42px;padding:9px 12px;font-size:13px;border-radius:12px}
  .wbt-gyg-badge,.wbt-gyg-starting__date,.wbt-gyg-pricebox__sub,.wbt-gyg-pricebox__tax{font-size:13px}
  .wbt-gyg-badges{padding:10px 0;margin:4px 0 12px}
  .wbt-gyg-pricebox{padding:14px;margin:0 -14px -14px}
  .wbt-gyg-pricebox__sale{font-size:17px}
  .wbt-gyg-pricebox__strike,.wbt-gyg-pricebox__discount{font-size:13px}
  .wbt-gyg-book{min-height:42px;font-size:14px}
}

@media (min-width: 1101px){
  .wbt-gyg-sidebar-mount{position:sticky;top:90px}
  .wbt-gyg-sidebar-mount .wbt-gyg-step1{display:block !important;background:#fff;border:1px solid #dfe4ee;border-radius:22px;padding:18px 16px;margin:0}
  .wbt-gyg-sidebar-mount .wbt-gyg-step1__title{display:none}
  .wbt-gyg-sidebar-mount .wbt-gyg-step1__from{display:block;margin:0 0 12px;text-align:left;color:#111827;font-size:13px}
  .wbt-gyg-sidebar-mount .wbt-gyg-step1__from strong{font-size:18px;color:#0f2554}
  .wbt-gyg-sidebar-mount .wbt-gyg-step1__grid{display:grid !important;grid-template-columns:1fr !important;gap:10px}
  .wbt-gyg-sidebar-mount .wbt-gyg-control{display:flex !important;min-height:50px;background:#f1f4f9;padding:0 14px;border-radius:999px;gap:10px}
  .wbt-gyg-sidebar-mount .wbt-gyg-control__icon,.wbt-gyg-sidebar-mount .wbt-gyg-control__icon::before{width:20px;height:20px;background-size:20px 20px}
  .wbt-gyg-sidebar-mount .wbt-gyg-control select,
  .wbt-gyg-sidebar-mount .wbt-gyg-control input{display:block !important;min-height:42px;font-size:14px;font-weight:700;color:#0f172a}
  .wbt-gyg-sidebar-mount .wbt-gyg-check{display:flex !important;visibility:visible !important;opacity:1 !important;min-height:50px;font-size:15px}
  .wbt-gyg-options-mount .wbt-gyg-step2{display:block !important}
  .wbt-gyg-options-mount .wbt-gyg-heading{font-size:18px;margin:0 0 12px}
  .wbt-gyg-options-mount .wbt-gyg-options{gap:14px}
  .wbt-gyg-options-mount .wbt-gyg-card{border-width:2px;border-radius:18px}
  .wbt-gyg-options-mount .wbt-gyg-card__toggle{padding:14px 16px 10px}
  .wbt-gyg-options-mount .wbt-gyg-card__title{font-size:15px;line-height:1.35;color:#14213d}
  .wbt-gyg-options-mount .wbt-gyg-card__chev{font-size:20px}
  .wbt-gyg-options-mount .wbt-gyg-card__body{padding:0 16px 16px}
  .wbt-gyg-options-mount .wbt-gyg-card__desc{font-size:13px;margin:0 0 12px}
  .wbt-gyg-options-mount .wbt-gyg-meta{grid-template-columns:repeat(2,minmax(0,1fr));gap:8px 18px;padding:0 0 12px;margin:0 0 12px}
  .wbt-gyg-options-mount .wbt-gyg-meta__item{font-size:13px}
  .wbt-gyg-options-mount .wbt-gyg-label,.wbt-gyg-options-mount .wbt-gyg-starting__label{font-size:13px;margin:0 0 5px}
  .wbt-gyg-options-mount .wbt-gyg-pickup,.wbt-gyg-options-mount .wbt-gyg-pickup-address-wrap,.wbt-gyg-options-mount .wbt-gyg-starting{margin:0 0 12px}
  .wbt-gyg-options-mount .wbt-gyg-area,.wbt-gyg-options-mount .wbt-gyg-address{min-height:42px;font-size:13px;padding:9px 12px;border-radius:12px}
  .wbt-gyg-options-mount .wbt-gyg-badge,.wbt-gyg-options-mount .wbt-gyg-starting__date,.wbt-gyg-options-mount .wbt-gyg-pricebox__sub,.wbt-gyg-options-mount .wbt-gyg-pricebox__tax{font-size:13px}
  .wbt-gyg-options-mount .wbt-gyg-badges{padding:10px 0;margin:4px 0 12px}
  .wbt-gyg-options-mount .wbt-gyg-pricebox{padding:14px 16px 16px;margin:0 -16px -16px}
  .wbt-gyg-options-mount .wbt-gyg-pricebox__sale{font-size:20px}
  .wbt-gyg-options-mount .wbt-gyg-pricebox__strike,.wbt-gyg-options-mount .wbt-gyg-pricebox__discount{font-size:13px}
  .wbt-gyg-options-mount .wbt-gyg-book{min-height:42px;font-size:14px}
}


/* 2026-03 desktop hard-fix */
@media (min-width:1101px){
  .wbt-gyg-sidebar-mount .wbt-gyg-step1{display:block !important;padding:20px 18px 18px !important;border:1px solid #dfe4ee !important;border-radius:24px !important;background:#fff !important;box-shadow:none !important;}
  .wbt-gyg-sidebar-mount .wbt-gyg-step1__grid{display:grid !important;grid-template-columns:1fr !important;gap:12px !important;align-items:stretch !important;}
  .wbt-gyg-sidebar-mount .wbt-gyg-step1__grid > *{width:100% !important;max-width:100% !important;}
  .wbt-gyg-sidebar-mount .wbt-gyg-control{min-height:52px !important;padding:0 14px !important;background:#f1f4f9 !important;border-radius:999px !important;display:flex !important;align-items:center !important;gap:10px !important;}
  .wbt-gyg-sidebar-mount .wbt-gyg-control select,
  .wbt-gyg-sidebar-mount .wbt-gyg-control input{width:100% !important;min-height:42px !important;font-size:14px !important;line-height:1.2 !important;padding:0 !important;margin:0 !important;border:0 !important;background:transparent !important;}
  .wbt-gyg-sidebar-mount .wbt-gyg-check{display:flex !important;align-items:center !important;justify-content:center !important;width:100% !important;min-height:52px !important;margin:0 !important;padding:0 16px !important;background:#1273ea !important;color:#fff !important;border:0 !important;border-radius:999px !important;font-size:15px !important;font-weight:800 !important;line-height:1 !important;visibility:visible !important;opacity:1 !important;}
  .wbt-gyg-sidebar-mount .wbt-gyg-step1__from{display:block !important;margin:0 0 14px !important;font-size:14px !important;color:#111827 !important;text-align:left !important;}
  .wbt-gyg-sidebar-mount .wbt-gyg-step1__from strong{font-size:18px !important;color:#0f2554 !important;}

  .wbt-gyg-options-mount .wbt-gyg-heading{font-size:18px !important;line-height:1.2 !important;margin:0 0 12px !important;}
  .wbt-gyg-options-mount .wbt-gyg-options{display:grid !important;gap:14px !important;}
  .wbt-gyg-options-mount .wbt-gyg-card{border:2px solid #1273ea !important;border-radius:18px !important;background:#fff !important;overflow:hidden !important;}
  .wbt-gyg-options-mount .wbt-gyg-card__toggle{width:100% !important;display:flex !important;justify-content:space-between !important;align-items:flex-start !important;gap:10px !important;padding:14px 14px 10px !important;border:0 !important;background:transparent !important;text-align:left !important;}
  .wbt-gyg-options-mount .wbt-gyg-card__title{font-size:15px !important;line-height:1.32 !important;font-weight:800 !important;color:#14213d !important;display:block !important;}
  .wbt-gyg-options-mount .wbt-gyg-card__chev{font-size:20px !important;color:#1273ea !important;}
  .wbt-gyg-options-mount .wbt-gyg-card__body{display:block !important;padding:0 14px 14px !important;}
  .wbt-gyg-options-mount .wbt-gyg-card__desc{font-size:13px !important;line-height:1.5 !important;margin:0 0 12px !important;color:#5d6778 !important;}
  .wbt-gyg-options-mount .wbt-gyg-meta{display:grid !important;grid-template-columns:repeat(2,minmax(0,1fr)) !important;gap:8px 18px !important;padding:0 0 12px !important;margin:0 0 12px !important;border-bottom:1px solid #d8dfeb !important;}
  .wbt-gyg-options-mount .wbt-gyg-meta__item{font-size:13px !important;font-weight:700 !important;display:flex !important;align-items:center !important;gap:8px !important;}
  .wbt-gyg-options-mount .wbt-gyg-label,
  .wbt-gyg-options-mount .wbt-gyg-starting__label{font-size:13px !important;font-weight:800 !important;margin:0 0 5px !important;}
  .wbt-gyg-options-mount .wbt-gyg-pickup,
  .wbt-gyg-options-mount .wbt-gyg-pickup-address-wrap,
  .wbt-gyg-options-mount .wbt-gyg-starting{margin:0 0 12px !important;}
  .wbt-gyg-options-mount .wbt-gyg-area,
  .wbt-gyg-options-mount .wbt-gyg-address{width:100% !important;min-height:42px !important;padding:9px 12px !important;font-size:13px !important;border:1px solid #d8dfeb !important;border-radius:12px !important;background:#fff !important;}
  .wbt-gyg-options-mount .wbt-gyg-badges{display:grid !important;gap:8px !important;padding:10px 0 !important;margin:4px 0 12px !important;border-top:1px solid #d8dfeb !important;border-bottom:1px solid #d8dfeb !important;}
  .wbt-gyg-options-mount .wbt-gyg-badge,
  .wbt-gyg-options-mount .wbt-gyg-starting__date,
  .wbt-gyg-options-mount .wbt-gyg-pricebox__sub,
  .wbt-gyg-options-mount .wbt-gyg-pricebox__tax{font-size:13px !important;}
  .wbt-gyg-options-mount .wbt-gyg-pricebox{background:#f7f9fc !important;border-top:1px solid #d8dfeb !important;padding:14px 14px 14px !important;margin:0 -14px -14px !important;}
  .wbt-gyg-options-mount .wbt-gyg-pricebox__sale{font-size:17px !important;font-weight:900 !important;color:#d12950 !important;}
  .wbt-gyg-options-mount .wbt-gyg-pricebox__strike,
  .wbt-gyg-options-mount .wbt-gyg-pricebox__discount{font-size:13px !important;}
  .wbt-gyg-options-mount .wbt-gyg-actions{display:block !important;margin-top:12px !important;}
  .wbt-gyg-options-mount .wbt-gyg-book{display:inline-flex !important;align-items:center !important;justify-content:center !important;width:100% !important;min-height:42px !important;padding:0 16px !important;border:2px solid #1273ea !important;border-radius:999px !important;background:#fff !important;color:#1273ea !important;font-size:14px !important;font-weight:800 !important;}
}

/* 2026-03-18 fixes */
.wbt-gyg-step2[hidden],
.wbt-gyg-card__body[hidden]{display:none !important;}
.wbt-gyg-wrap:not(.is-availability-ready) .wbt-gyg-step2{display:none !important;}

@media (min-width:1101px){
  .wbt-gyg-sidebar-mount .wbt-gyg-step1{padding:20px 18px 18px !important;}
  .wbt-gyg-sidebar-mount .wbt-gyg-step1__grid{gap:12px !important;}
  .wbt-gyg-sidebar-mount .wbt-gyg-check{display:flex !important;visibility:visible !important;opacity:1 !important;background:#1273ea !important;color:#fff !important;min-height:50px !important;}
  .wbt-gyg-options-mount .wbt-gyg-step2{display:none !important;}
  .wbt-gyg-wrap.is-availability-ready .wbt-gyg-options-mount .wbt-gyg-step2{display:block !important;}
  .wbt-gyg-options-mount .wbt-gyg-heading{font-size:16px !important;line-height:1.25 !important;margin:0 0 12px !important;}
  .wbt-gyg-options-mount .wbt-gyg-card{border:2px solid #1273ea !important;border-radius:18px !important;background:#fff !important;overflow:hidden !important;}
  .wbt-gyg-options-mount .wbt-gyg-card__toggle{padding:14px 14px 10px !important;}
  .wbt-gyg-options-mount .wbt-gyg-card__title{font-size:15px !important;line-height:1.32 !important;font-weight:800 !important;color:#14213d !important;display:block !important;white-space:normal !important;}
  .wbt-gyg-options-mount .wbt-gyg-card__body{padding:0 14px 14px !important;}
  .wbt-gyg-options-mount .wbt-gyg-meta{grid-template-columns:1fr 1fr !important;gap:8px 18px !important;}
  .wbt-gyg-options-mount .wbt-gyg-pricebox{display:block !important;padding:14px !important;margin:0 -14px -14px !important;background:#f7f9fc !important;border-top:1px solid #d8dfeb !important;}
  .wbt-gyg-options-mount .wbt-gyg-pricebox__main{display:flex !important;align-items:baseline !important;gap:10px !important;flex-wrap:wrap !important;}
  .wbt-gyg-options-mount .wbt-gyg-pricebox__sale{display:inline !important;font-size:18px !important;color:#d12950 !important;font-weight:900 !important;}
  .wbt-gyg-options-mount .wbt-gyg-pricebox__strike{display:inline !important;font-size:13px !important;color:#6b7280 !important;text-decoration:line-through !important;}
  .wbt-gyg-options-mount .wbt-gyg-pricebox__discount{display:inline !important;font-size:13px !important;color:#d12950 !important;font-weight:800 !important;}
  .wbt-gyg-options-mount .wbt-gyg-pricebox__sub,
  .wbt-gyg-options-mount .wbt-gyg-pricebox__tax{display:block !important;font-size:13px !important;color:#5d6778 !important;}
  .wbt-gyg-options-mount .wbt-gyg-actions{display:block !important;margin-top:12px !important;}
  .wbt-gyg-options-mount .wbt-gyg-book{display:inline-flex !important;align-items:center !important;justify-content:center !important;width:100% !important;min-height:42px !important;padding:0 16px !important;border:2px solid #1273ea !important;border-radius:999px !important;background:#fff !important;color:#1273ea !important;font-size:14px !important;font-weight:800 !important;cursor:pointer !important;}
}


/* Desktop GYG availability state lives on .wbt-csp because step2 is mounted outside .wbt-gyg-wrap */
.wbt-csp .wbt-gyg-options-mount .wbt-gyg-step2[hidden]{display:none !important;}
@media (min-width:1101px){
  .wbt-csp:not(.wbt-gyg-availability-ready) .wbt-gyg-options-mount .wbt-gyg-step2{display:none !important;}
  .wbt-csp.wbt-gyg-availability-ready .wbt-gyg-options-mount .wbt-gyg-step2{display:block !important;}
}


/* Dynamic card meta icons */
.wbt-gyg-meta{display:flex;flex-wrap:wrap;gap:14px 22px;align-items:center;}
.wbt-gyg-meta__item{display:inline-flex;align-items:center;gap:8px;}
.wbt-gyg-meta__icon{display:inline-block;width:18px;height:18px;position:relative;flex:0 0 18px;}
.wbt-gyg-meta__icon::before,.wbt-gyg-meta__icon::after{content:"";position:absolute;box-sizing:border-box;}
.wbt-gyg-meta__icon--duration::before{left:1px;top:1px;width:16px;height:16px;border:2px solid currentColor;border-radius:50%;}
.wbt-gyg-meta__icon--duration::after{left:8px;top:4px;width:2px;height:6px;background:currentColor;box-shadow:3px 4px 0 0 currentColor;transform-origin:bottom center;}
.wbt-gyg-meta__icon--language::before{left:1px;top:2px;width:8px;height:12px;border:2px solid currentColor;border-right:none;border-radius:7px 0 0 7px;}
.wbt-gyg-meta__icon--language::after{right:1px;top:2px;width:8px;height:12px;border:2px solid currentColor;border-left:none;border-radius:0 7px 7px 0;}
.wbt-gyg-meta__icon--location::before{left:4px;top:1px;width:10px;height:14px;border:2px solid currentColor;border-radius:10px 10px 10px 10px/12px 12px 8px 8px;transform:rotate(45deg);border-left-color:transparent;border-top-color:transparent;}
.wbt-gyg-meta__icon--location::after{left:7px;top:5px;width:4px;height:4px;border:2px solid currentColor;border-radius:50%;background:#fff;}
.wbt-gyg-meta__icon--custom::before{left:2px;top:8px;width:14px;height:2px;background:currentColor;box-shadow:0 -4px 0 0 currentColor,0 4px 0 0 currentColor;border-radius:2px;}


/* Clearer horizontal meta icons override */
.wbt-gyg-meta,
.wbt-csp .wbt-gyg-options-mount .wbt-gyg-meta{
  display:flex !important;
  flex-wrap:nowrap !important;
  align-items:center !important;
  gap:14px !important;
  overflow-x:auto !important;
  overflow-y:hidden !important;
  white-space:nowrap !important;
  padding:0 0 14px !important;
  margin:0 0 14px !important;
  border-bottom:1px solid #d8dfeb !important;
  scrollbar-width:none;
}
.wbt-gyg-meta::-webkit-scrollbar{display:none;}
.wbt-gyg-meta__item,
.wbt-csp .wbt-gyg-options-mount .wbt-gyg-meta__item{
  display:inline-flex !important;
  align-items:center !important;
  gap:8px !important;
  white-space:nowrap !important;
  font-size:14px !important;
  line-height:1.2 !important;
  color:#24324a !important;
  font-weight:700 !important;
  flex:0 0 auto !important;
}
.wbt-gyg-meta__icon,
.wbt-csp .wbt-gyg-options-mount .wbt-gyg-meta__icon{
  width:18px !important;
  height:18px !important;
  flex:0 0 18px !important;
  display:inline-block !important;
  position:relative !important;
  background-repeat:no-repeat !important;
  background-position:center !important;
  background-size:18px 18px !important;
}
.wbt-gyg-meta__icon::before,
.wbt-gyg-meta__icon::after{display:none !important;content:none !important;}
.wbt-gyg-meta__icon--duration{background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2324324a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='9'/><path d='M12 7v5l3 2'/></svg>") !important;}
.wbt-gyg-meta__icon--language{background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2324324a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M4 5h8'/><path d='M8 5c0 6-2 10-4 12'/><path d='M8 5c0 2 2 6 4 8'/><path d='M14 19h6'/><path d='M17 5l4 14'/><path d='M13 19l4-14'/></svg>") !important;}
.wbt-gyg-meta__icon--location{background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2324324a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M12 21s-6-5.3-6-11a6 6 0 1 1 12 0c0 5.7-6 11-6 11z'/><circle cx='12' cy='10' r='2.5'/></svg>") !important;}
.wbt-gyg-meta__icon--custom{background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2324324a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12h14'/><path d='M12 5v14'/></svg>") !important;}
@media (max-width:767px){
  .wbt-gyg-meta,
  .wbt-csp .wbt-gyg-options-mount .wbt-gyg-meta{gap:12px !important;padding:0 0 12px !important;margin:0 0 12px !important;}
  .wbt-gyg-meta__item,
  .wbt-csp .wbt-gyg-options-mount .wbt-gyg-meta__item{font-size:13px !important;}
  .wbt-gyg-meta__icon,
  .wbt-csp .wbt-gyg-options-mount .wbt-gyg-meta__icon{width:17px !important;height:17px !important;flex-basis:17px !important;background-size:17px 17px !important;}
}

/* 2026-03-18 tablet uses mobile presentation */
@media (min-width:768px) and (max-width:1100px){
  .wbt-gyg-step1{padding:18px 16px;border-radius:22px;margin:0 0 20px}
  .wbt-gyg-step1__title{font-size:18px;line-height:1.15;margin:0 0 12px;text-align:left}
  .wbt-gyg-step1__from{display:none}
  .wbt-gyg-step1__grid{grid-template-columns:1fr;gap:12px}
  .wbt-gyg-control{min-height:56px;padding:0 14px;gap:10px}
  .wbt-gyg-control__icon{width:20px;height:20px;flex:0 0 20px}
  .wbt-gyg-control__icon::before{width:20px;height:20px;background-size:20px 20px}
  .wbt-gyg-control select,.wbt-gyg-control input{font-size:16px;min-height:44px}
  .wbt-gyg-check{min-height:52px;font-size:16px}
  .wbt-gyg-control--desktop{display:none}
  .wbt-gyg-heading{font-size:18px;margin:0 0 12px}
  .wbt-gyg-card__toggle{padding:18px}
  .wbt-gyg-card__title{font-size:17px;line-height:1.35}
  .wbt-gyg-card__body{padding:0 18px 18px}
  .wbt-gyg-card__desc,.wbt-gyg-badge,.wbt-gyg-pricebox__sub,.wbt-gyg-pricebox__tax,.wbt-gyg-starting__date,.wbt-gyg-meta__item{font-size:16px}
  .wbt-gyg-meta{grid-template-columns:1fr;gap:10px}
  .wbt-gyg-pricebox{margin:0 -18px -18px;padding:18px}
  .wbt-gyg-pricebox__sale{font-size:24px}
  .wbt-gyg-pricebox__strike,.wbt-gyg-pricebox__discount{font-size:18px}
  .wbt-gyg-actions{display:block}
  .wbt-gyg-book{width:100%;min-height:50px;font-size:17px}
}


/* Bottom floating bar like GYG for mobile/tablet */
.wbt-gyg-bottom-sticky{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:100050;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  width:100%;
  padding:12px 16px calc(12px + env(safe-area-inset-bottom,0px));
  border-radius:0;
  background:#ffffff;
  box-shadow:0 -8px 22px rgba(0,0,0,.12);
  border-top:1px solid #e5e7eb;
}
.wbt-gyg-bottom-sticky[hidden]{display:none !important}
.wbt-gyg-bottom-sticky__price{
  display:flex;
  flex-direction:column;
  gap:2px;
  min-width:0;
  color:#111827;
  line-height:1.1;
}
.wbt-gyg-bottom-sticky__amount-row{
  display:flex;
  align-items:baseline;
  gap:8px;
  flex-wrap:wrap;
}
.wbt-gyg-bottom-sticky__price strong{
  font-size:22px;
  font-weight:800;
  color:#111827;
  letter-spacing:-0.02em;
}
.wbt-gyg-bottom-sticky__from,
.wbt-gyg-bottom-sticky__suffix{
  font-size:12px;
  color:#4b5563;
  font-weight:600;
}
.wbt-gyg-bottom-sticky__button{
  flex:0 0 auto;
  border:0;
  border-radius:999px;
  background:#0071eb;
  color:#fff;
  font-weight:800;
  font-size:15px;
  line-height:1;
  padding:16px 22px;
  min-width:188px;
  cursor:pointer;
}
.wbt-gyg-bottom-sticky__button:hover,
.wbt-gyg-bottom-sticky__button:focus{background:#005ed1;color:#fff}
@media (min-width:1101px){
  .wbt-gyg-bottom-sticky{display:none !important}
}
@media (max-width:767px){
  .wbt-gyg-bottom-sticky{
    left:0;
    right:0;
    bottom:0;
    padding:10px 12px calc(10px + env(safe-area-inset-bottom,0px));
    gap:10px;
    border-radius:0;
  }
  .wbt-gyg-bottom-sticky__price strong{font-size:20px}
  .wbt-gyg-bottom-sticky__button{
    min-width:168px;
    padding:14px 18px;
    font-size:14px;
  }
}

/* Fix date field alignment on mobile Safari and desktop */
.wbt-gyg-date{ text-align:left !important; }
.wbt-gyg-date::-webkit-date-and-time-value{ text-align:left !important; }
.wbt-gyg-date::-webkit-date-and-time-value-min{ text-align:left !important; }
.wbt-gyg-date::-webkit-datetime-edit{ text-align:left !important; padding:0 !important; }
.wbt-gyg-date::-webkit-datetime-edit-fields-wrapper{ justify-content:flex-start !important; }
.wbt-gyg-date::-webkit-calendar-picker-indicator{ opacity:0; position:absolute; inset:0; width:100%; height:100%; cursor:pointer; }
.wbt-gyg-control input.wbt-gyg-date{ padding-left:0 !important; }


/* 2026-03 desktop sticky booking sidebar hard fix */
@media (min-width:1101px){
  .wbt-gyg-sidebar-mount{
    position:sticky !important;
    top:96px !important;
    align-self:start !important;
    z-index:30 !important;
  }
}


/* 2026-03-18 collapsed preview for unselected options */
.wbt-gyg-card{position:relative}
.wbt-gyg-card__body{display:block}
.wbt-gyg-card:not(.is-open) .wbt-gyg-card__body{
  max-height:none;
  overflow:visible;
  position:relative;
  padding-bottom:14px;
}
.wbt-gyg-card:not(.is-open) .wbt-gyg-card__body::after{display:none !important;content:none !important;}
.wbt-gyg-card:not(.is-open) .wbt-gyg-pickup,
.wbt-gyg-card:not(.is-open) .wbt-gyg-pickup-address-wrap,
.wbt-gyg-card:not(.is-open) .wbt-gyg-starting,
.wbt-gyg-card:not(.is-open) .wbt-gyg-badges,
.wbt-gyg-card:not(.is-open) .wbt-gyg-actions,
.wbt-gyg-card:not(.is-open) .wbt-gyg-msg{
  display:none !important;
}
.wbt-gyg-card:not(.is-open) .wbt-gyg-pricebox{margin-top:8px;display:block !important;visibility:visible !important;opacity:1 !important}
.wbt-gyg-card:not(.is-open) .wbt-gyg-card__toggle{padding-bottom:12px}
.wbt-gyg-card.is-open .wbt-gyg-card__chev{transform:rotate(180deg)}
.wbt-gyg-card:not(.is-open) .wbt-gyg-card__chev{transform:none}
@media (max-width: 767px){
  .wbt-gyg-card:not(.is-open) .wbt-gyg-card__body{max-height:none}
  .wbt-gyg-card:not(.is-open) .wbt-gyg-card__body::after{display:none !important}
}

.wbt-gyg-card{cursor:pointer}
.wbt-gyg-card input,.wbt-gyg-card select,.wbt-gyg-card textarea,.wbt-gyg-card button,.wbt-gyg-card a,.wbt-gyg-card label{cursor:auto}
