
.hmbp-booking-app {
    --hmbp-green: #0f3f2b;
    --hmbp-green-2: #15583c;
    --hmbp-gold: #c6a15b;
    --hmbp-cream: #f8f5ed;
    --hmbp-paper: #fffdfa;
    --hmbp-paper-2: #fcfaf5;
    --hmbp-border: rgba(15, 63, 43, 0.10);
    --hmbp-shadow: 0 26px 60px rgba(15, 63, 43, 0.08);
    --hmbp-shadow-soft: 0 16px 34px rgba(15, 63, 43, 0.05);
    max-width: 1380px;
    margin: 26px auto 72px;
    padding: 0 22px;
    color: var(--hmbp-green);
    font-family: inherit;
    box-sizing: border-box;
}
.hmbp-booking-app *,
.hmbp-booking-app *::before,
.hmbp-booking-app *::after {
    box-sizing: border-box;
}
.hmbp-booking-app button,
.hmbp-booking-app input,
.hmbp-booking-app textarea,
.hmbp-booking-app select {
    font-family: inherit;
}
.hmbp-hero {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    padding: clamp(36px, 5vw, 74px) clamp(30px, 5vw, 82px);
    margin: 0 0 32px;
    background: radial-gradient(circle at 92% 0%, rgba(198,161,91,.18) 0 17%, transparent 18% 38%), linear-gradient(135deg, #11462f 0%, #0c3a28 44%, #072b1d 100%);
    color: #fff;
    box-shadow: var(--hmbp-shadow);
}
.hmbp-hero::after {
    content: '';
    position: absolute;
    inset: auto -8% -18% auto;
    width: clamp(220px, 28vw, 420px);
    height: clamp(220px, 28vw, 420px);
    border-radius: 50%;
    border: 40px solid rgba(198,161,91,.14);
    pointer-events: none;
}
.hmbp-hero h2 {
    position: relative;
    z-index: 1;
    margin: 0 0 16px;
    color: #fff;
    font-size: clamp(34px, 4.4vw, 70px);
    line-height: .98;
    letter-spacing: -0.05em;
    font-weight: 800;
    max-width: 12ch;
}
.hmbp-hero p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: rgba(255,255,255,.94);
    font-size: clamp(18px, 1.55vw, 25px);
    line-height: 1.48;
    max-width: 960px;
}
.hmbp-progress {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin: 0 0 32px;
}
.hmbp-progress button {
    appearance: none;
    border: 1px solid rgba(15,63,43,.08);
    border-radius: 22px;
    background: var(--hmbp-paper);
    color: rgba(15,63,43,.72);
    min-height: 72px;
    padding: 14px 20px;
    font-weight: 800;
    font-size: 20px;
    box-shadow: var(--hmbp-shadow-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: .22s ease;
}
.hmbp-progress button:hover:not([aria-disabled="true"]) {
    transform: translateY(-2px);
    box-shadow: 0 20px 38px rgba(15,63,43,.08);
}
.hmbp-progress button[aria-disabled="true"] {
    cursor: default;
    opacity: .74;
}
.hmbp-progress button span {
    flex: 0 0 auto;
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(198,161,91,.20);
    color: var(--hmbp-green);
    font-size: 16px;
}
.hmbp-progress button.is-active,
.hmbp-progress button.is-complete {
    background: var(--hmbp-green);
    color: #fff;
    border-color: var(--hmbp-green);
}
.hmbp-progress button.is-active span,
.hmbp-progress button.is-complete span {
    background: var(--hmbp-gold);
    color: #fff;
}
.hmbp-form { margin: 0; }
.hmbp-step { display: none; }
.hmbp-step.is-active { display: block; }
.hmbp-card {
    background: var(--hmbp-paper);
    border: 1px solid var(--hmbp-border);
    border-radius: 32px;
    padding: clamp(28px, 3.2vw, 46px);
    box-shadow: var(--hmbp-shadow);
}
.hmbp-step-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 34px;
    margin: 0 0 32px;
}
.hmbp-step-head h3 {
    margin: 0;
    color: var(--hmbp-green);
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.04;
    letter-spacing: -0.04em;
    font-weight: 800;
}
.hmbp-step-head p {
    margin: 8px 0 0;
    color: rgba(15,63,43,.72);
    font-size: 19px;
    line-height: 1.65;
    max-width: 680px;
}
.hmbp-service-options {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}
.hmbp-service-card {
    appearance: none;
    width: 100%;
    min-height: 250px;
    text-align: left;
    border: 1px solid rgba(15,63,43,.10);
    border-radius: 28px;
    background: linear-gradient(180deg, #ffffff 0%, #fcfaf4 100%);
    padding: 28px;
    color: var(--hmbp-green);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    box-shadow: 0 12px 26px rgba(15,63,43,.04);
}
.hmbp-service-card:hover,
.hmbp-service-card.is-selected {
    transform: translateY(-3px);
    border-color: var(--hmbp-green);
    box-shadow: 0 24px 46px rgba(15,63,43,.11);
}
.hmbp-service-card.is-selected {
    background: linear-gradient(135deg, var(--hmbp-green), var(--hmbp-green-2));
    color: #fff;
}
.hmbp-service-dot {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: rgba(198,161,91,.15);
    border: 1px solid rgba(198,161,91,.34);
    display: inline-block;
    position: relative;
}
.hmbp-service-dot::after {
    content: '';
    position: absolute;
    inset: 13px;
    border-radius: 999px;
    background: var(--hmbp-gold);
}
.hmbp-service-card strong {
    font-size: 24px;
    line-height: 1.15;
    letter-spacing: -0.025em;
}
.hmbp-service-card small {
    color: rgba(15,63,43,.68);
    font-size: 15px;
    line-height: 1.7;
}
.hmbp-service-card.is-selected small { color: rgba(255,255,255,.82); }
.hmbp-service-card em {
    margin-top: auto;
    font-style: normal;
    font-weight: 800;
    color: var(--hmbp-gold);
}
.hmbp-visit-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}
.hmbp-choice {
    position: relative;
    border: 1px solid rgba(15,63,43,.12);
    border-radius: 26px;
    background: linear-gradient(180deg, #fff, #fcfaf5);
    padding: 30px;
    min-height: 138px;
    display: flex;
    align-items: center;
    gap: 18px;
    cursor: pointer;
    transition: .22s ease;
    box-shadow: 0 12px 26px rgba(15,63,43,.04);
}
.hmbp-choice:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 38px rgba(15,63,43,.08);
}
.hmbp-choice input { position: absolute; opacity: 0; pointer-events: none; }
.hmbp-choice span {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: rgba(198,161,91,.24);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    flex: 0 0 auto;
}
.hmbp-choice strong {
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.025em;
}
.hmbp-choice.is-selected {
    background: var(--hmbp-green);
    border-color: var(--hmbp-green);
    color: #fff;
}
.hmbp-choice.is-selected span { background: var(--hmbp-gold); color: #fff; }
.hmbp-boarding-note,
.hmbp-provisional-note {
    margin-top: 22px;
    border-radius: 22px;
    background: rgba(198,161,91,.11);
    border: 1px solid rgba(198,161,91,.24);
    padding: 18px 20px;
    color: var(--hmbp-green);
    font-weight: 700;
    line-height: 1.7;
}
.hmbp-date-mode {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.hmbp-date-mode label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    padding: 12px 16px;
    background: var(--hmbp-cream);
    color: var(--hmbp-green);
    font-weight: 800;
    white-space: nowrap;
}

.hmbp-booking-app .fc,
.hmbp-booking-app .fc .fc-view-harness,
.hmbp-booking-app .fc .fc-view,
.hmbp-booking-app .fc .fc-scrollgrid,
.hmbp-booking-app .fc .fc-col-header,
.hmbp-booking-app .fc .fc-daygrid-body,
.hmbp-booking-app .fc .fc-daygrid-body table,
.hmbp-booking-app .fc .fc-scrollgrid-sync-table {
    width: 100% !important;
}
.hmbp-booking-app .fc table {
    table-layout: fixed !important;
}
.hmbp-booking-app .fc .fc-scrollgrid {
    border-radius: 18px;
    overflow: hidden;
}

#hmbp-calendar {
    background: #fff;
    border: 1px solid rgba(15,63,43,.10);
    border-radius: 26px;
    overflow: hidden;
    padding: 18px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.45);
}
.hmbp-booking-app .fc .fc-toolbar {
    gap: 16px;
    margin-bottom: 24px;
    align-items: center;
}
.hmbp-booking-app .fc .fc-toolbar-title {
    color: var(--hmbp-green);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 900;
    letter-spacing: -0.04em;
}
.hmbp-booking-app .fc .fc-button {
    background: var(--hmbp-green);
    border-color: var(--hmbp-green);
    border-radius: 12px;
    font-weight: 800;
    text-transform: capitalize;
    box-shadow: none;
    padding: .66em .95em;
}
.hmbp-booking-app .fc .fc-button:hover,
.hmbp-booking-app .fc .fc-button:focus {
    background: var(--hmbp-green-2);
    border-color: var(--hmbp-green-2);
}
.hmbp-booking-app .fc .fc-col-header-cell {
    background: #fbfaf4;
}
.hmbp-booking-app .fc .fc-col-header-cell-cushion,
.hmbp-booking-app .fc .fc-daygrid-day-number {
    color: var(--hmbp-green);
    text-decoration: none;
    font-weight: 800;
}
.hmbp-booking-app .fc .fc-daygrid-day-frame {
    min-height: 106px;
    padding: 6px;
}
.hmbp-booking-app .fc .fc-daygrid-day {
    cursor: pointer;
    background: #fff;
    transition: background .15s ease;
}
.hmbp-booking-app .fc .fc-daygrid-day:hover { background: rgba(198,161,91,.08); }
.hmbp-booking-app .hmbp-date-disabled {
    cursor: not-allowed !important;
    background: repeating-linear-gradient(135deg, rgba(15,63,43,.055), rgba(15,63,43,.055) 6px, rgba(15,63,43,.02) 6px, rgba(15,63,43,.02) 12px) !important;
    opacity: .72;
}
.hmbp-booking-app .hmbp-date-blocked .fc-daygrid-day-number::after {
    content: 'Unavailable';
    display: block;
    margin-top: 8px;
    color: #8a3b2a;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.hmbp-booking-app .hmbp-selected-single,
.hmbp-booking-app .hmbp-selected-start,
.hmbp-booking-app .hmbp-selected-end {
    background: var(--hmbp-green) !important;
}
.hmbp-booking-app .hmbp-selected-single .fc-daygrid-day-number,
.hmbp-booking-app .hmbp-selected-start .fc-daygrid-day-number,
.hmbp-booking-app .hmbp-selected-end .fc-daygrid-day-number {
    color: #fff !important;
    font-weight: 900;
}
.hmbp-booking-app .hmbp-selected-between,
.hmbp-booking-app .hmbp-range-preview { background: rgba(198,161,91,.22) !important; }
.hmbp-selected-date {
    margin-top: 18px;
    border-radius: 18px;
    padding: 16px 20px;
    background: rgba(15,63,43,.07);
    color: var(--hmbp-green);
    font-weight: 800;
    line-height: 1.55;
}
.hmbp-clear-dates {
    appearance: none;
    border: 0;
    background: transparent;
    color: var(--hmbp-green);
    font-weight: 800;
    margin-top: 14px;
    cursor: pointer;
    text-decoration: underline;
}
.hmbp-request-layout {
    display: grid;
    grid-template-columns: minmax(300px, .84fr) minmax(360px, 1.16fr);
    gap: 28px;
    align-items: start;
}
.hmbp-summary-panel,
.hmbp-details-panel {
    border-radius: 28px;
    border: 1px solid rgba(15,63,43,.10);
    padding: clamp(22px, 2.6vw, 32px);
    background: #fcfaf5;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.6);
}
.hmbp-live-total {
    border-radius: 26px;
    background: linear-gradient(135deg, var(--hmbp-green), var(--hmbp-green-2));
    color: #fff;
    padding: 28px;
    margin-bottom: 22px;
    text-align: center;
}
.hmbp-live-total span {
    display: block;
    color: rgba(255,255,255,.76);
    font-weight: 800;
    margin-bottom: 8px;
}
.hmbp-live-total strong {
    color: #fff;
    font-size: clamp(38px, 5vw, 56px);
    line-height: 1;
    font-weight: 900;
}
.hmbp-review-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(15,63,43,.11);
}
.hmbp-review-row span {
    color: rgba(15,63,43,.65);
    font-weight: 800;
}
.hmbp-review-row strong {
    color: var(--hmbp-green);
    text-align: right;
    max-width: 68%;
    line-height: 1.55;
}
.hmbp-review-total strong { color: var(--hmbp-gold); font-size: 24px; }
.hmbp-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.hmbp-booking-app label {
    display: block;
    color: var(--hmbp-green);
    font-weight: 800;
    font-size: 15px;
}
.hmbp-booking-app input[type="text"],
.hmbp-booking-app input[type="email"],
.hmbp-booking-app input[type="tel"],
.hmbp-booking-app textarea,
.hmbp-booking-app select {
    width: 100%;
    margin-top: 9px;
    border: 1px solid rgba(15,63,43,.16);
    border-radius: 16px;
    padding: 16px 17px;
    background: #fff;
    color: var(--hmbp-green);
    font-size: 16px;
    line-height: 1.45;
    outline: none;
    transition: border-color .18s ease, box-shadow .18s ease;
}
.hmbp-booking-app textarea { resize: vertical; }
.hmbp-booking-app input:focus,
.hmbp-booking-app textarea:focus,
.hmbp-booking-app select:focus {
    border-color: var(--hmbp-green);
    box-shadow: 0 0 0 4px rgba(15,63,43,.08);
}
.hmbp-field-full {
    display: block;
    margin-top: 18px;
    width: 100%;
}
.hmbp-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 14px;
    margin-top: 26px;
}
.hmbp-actions .hmbp-secondary { margin-right: auto; }
.hmbp-button {
    appearance: none;
    border: 0;
    border-radius: 16px;
    background: var(--hmbp-green);
    color: #fff;
    padding: 17px 30px;
    min-height: 58px;
    min-width: 160px;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 18px 36px rgba(15,63,43,.12);
    transition: transform .18s ease, background .18s ease, opacity .18s ease;
}
.hmbp-button:hover { transform: translateY(-2px); background: var(--hmbp-green-2); }
.hmbp-button:disabled { opacity: .7; cursor: progress; transform: none; }
.hmbp-secondary {
    background: rgba(15,63,43,.08);
    color: var(--hmbp-green);
    box-shadow: none;
}
.hmbp-secondary:hover { background: rgba(15,63,43,.13); color: var(--hmbp-green); }
.hmbp-submit-request {
    min-width: 220px;
    background: var(--hmbp-gold);
    color: #fff;
}
.hmbp-submit-request:hover { background: var(--hmbp-green); }
.hmbp-form-error {
    margin-top: 18px;
    border: 1px solid #e6b2a5;
    background: #fff0ed;
    color: #7b2e1d;
    padding: 15px 17px;
    border-radius: 16px;
    font-weight: 800;
}
.hmbp-empty {
    grid-column: 1 / -1;
    border-radius: 18px;
    padding: 20px;
    background: #fff8e7;
    border: 1px solid rgba(198,161,91,.35);
    font-weight: 800;
}
.hmbp-confirmation {
    max-width: 940px;
    margin: 0 auto 50px;
    text-align: center;
}
.hmbp-confirmation-icon {
    width: 76px;
    height: 76px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--hmbp-green);
    color: #fff;
    font-size: 34px;
    font-weight: 900;
    margin-bottom: 18px;
}
.hmbp-confirmation h2 {
    margin: 0 0 10px;
    color: var(--hmbp-green);
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.05;
}
.hmbp-confirmation-ref { font-size: 18px; }
.hmbp-confirmation-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 28px 0;
    text-align: left;
}
.hmbp-confirmation-grid > div {
    border-radius: 20px;
    background: #fbfaf6;
    border: 1px solid rgba(15,63,43,.12);
    padding: 20px;
}
.hmbp-confirmation-grid span {
    display: block;
    color: rgba(15,63,43,.64);
    font-weight: 800;
    margin-bottom: 6px;
}
.hmbp-confirmation-grid strong { color: var(--hmbp-green); }
.hmbp-confirmation-note {
    border-radius: 20px;
    background: rgba(198,161,91,.13);
    border: 1px solid rgba(198,161,91,.30);
    padding: 20px;
    text-align: left;
    font-weight: 700;
    line-height: 1.6;
}
@media (max-width: 1180px) {
    .hmbp-service-options { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .hmbp-request-layout { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
    .hmbp-booking-app { padding: 0 14px; margin-top: 20px; }
    .hmbp-hero { border-radius: 26px; padding: 30px 22px; }
    .hmbp-progress { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
    .hmbp-progress button { min-height: 58px; font-size: 16px; padding: 12px 14px; }
    .hmbp-step-head,
    .hmbp-calendar-head { display: block; }
    .hmbp-date-mode { justify-content: flex-start; margin-top: 16px; }
    .hmbp-service-options,
    .hmbp-visit-options,
    .hmbp-grid,
    .hmbp-confirmation-grid { grid-template-columns: 1fr; }
    .hmbp-service-card,
    .hmbp-choice { min-height: auto; }
    .hmbp-booking-app .fc .fc-toolbar { flex-direction: column; align-items: stretch; }
    .hmbp-booking-app .fc .fc-toolbar-title { text-align: center; }
    .hmbp-booking-app .fc .fc-daygrid-day-frame { min-height: 88px; }
    .hmbp-review-row { display: block; }
    .hmbp-review-row strong { display: block; text-align: left; max-width: none; margin-top: 5px; }
    .hmbp-actions { display: grid; grid-template-columns: 1fr; }
    .hmbp-actions .hmbp-secondary { margin-right: 0; }
    .hmbp-button { width: 100%; }
}


/* v1.0.15 refinement: lighter typography + better spacing */
.hmbp-hero h2 {
    font-size: clamp(32px, 4vw, 60px);
    font-weight: 700;
    line-height: 1.02;
}
.hmbp-hero p {
    font-size: clamp(16px, 1.35vw, 21px);
}
.hmbp-progress button {
    font-size: 18px;
    font-weight: 700;
    gap: 14px;
}
.hmbp-progress button span {
    width: 32px;
    height: 32px;
    font-size: 15px;
}
.hmbp-step-head h3 {
    font-size: clamp(24px, 2.6vw, 36px);
    font-weight: 700;
    line-height: 1.08;
}
.hmbp-step-head p {
    font-size: 17px;
    line-height: 1.6;
}
.hmbp-service-card strong {
    font-size: 21px;
    font-weight: 700;
    line-height: 1.22;
}
.hmbp-service-card small {
    font-size: 14px;
}
.hmbp-choice {
    padding: 28px 30px;
    gap: 22px;
    align-items: center;
}
.hmbp-choice span {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    font-size: 20px;
}
.hmbp-choice strong {
    display: block;
    margin: 0;
    padding-left: 2px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.01em;
}
.hmbp-booking-app label,
.hmbp-live-total span,
.hmbp-review-row span,
.hmbp-confirmation-grid span,
.hmbp-booking-app .fc .fc-col-header-cell-cushion,
.hmbp-booking-app .fc .fc-daygrid-day-number,
.hmbp-booking-app .fc .fc-button,
.hmbp-button {
    font-weight: 700;
}
@media (max-width: 760px) {
    .hmbp-progress button {
        font-size: 15px;
    }
    .hmbp-choice {
        padding: 24px;
        gap: 18px;
    }
    .hmbp-choice strong {
        font-size: 18px;
    }
}


/* v1.0.16 visit option inline alignment fix */
.hmbp-booking-app label.hmbp-choice,
.hmbp-booking-app .hmbp-choice {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 24px !important;
}
.hmbp-booking-app label.hmbp-choice span,
.hmbp-booking-app .hmbp-choice span {
    margin: 0 !important;
    flex: 0 0 50px !important;
}
.hmbp-booking-app label.hmbp-choice strong,
.hmbp-booking-app .hmbp-choice strong {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    align-self: center !important;
}
@media (max-width: 760px) {
    .hmbp-booking-app label.hmbp-choice,
    .hmbp-booking-app .hmbp-choice {
        gap: 18px !important;
    }
}


/* v1.0.17 pet boarding wording + one-option nights mode */
.hmbp-progress-label {
    font: inherit;
    font-weight: inherit;
    line-height: 1.15;
}
.hmbp-boarding-mode .hmbp-visit-options {
    grid-template-columns: minmax(0, 1fr);
    max-width: 640px;
}
.hmbp-boarding-mode .hmbp-one-visit-choice {
    min-height: 116px;
}
.hmbp-boarding-mode .hmbp-one-visit-choice .hmbp-choice-number {
    font-size: 18px;
}
.hmbp-boarding-mode .hmbp-one-visit-choice strong {
    font-size: 20px;
}


/* v1.0.20 pet boarding: hide visit-only option and use a simple nights card */
.hmbp-booking-app.hmbp-boarding-mode .hmbp-two-visits-choice,
.hmbp-booking-app .hmbp-two-visits-choice[hidden] {
    display: none !important;
}
.hmbp-booking-app.hmbp-boarding-mode .hmbp-visit-options {
    grid-template-columns: minmax(0, 1fr) !important;
    max-width: 640px;
}
.hmbp-booking-app.hmbp-boarding-mode .hmbp-one-visit-choice {
    min-height: 124px;
}
.hmbp-booking-app.hmbp-boarding-mode .hmbp-one-visit-choice strong {
    font-size: 20px;
    font-weight: 700;
}
