:root {
    --hhbc-primary: #82947A;
    --hhbc-primary-dark: #64745E;
    --hhbc-cream: #F7F3EC;
    --hhbc-text: #111111;
    --hhbc-white: #ffffff;
    --hhbc-border: #ded8cf;
    --hhbc-muted: #62665f;
    --hhbc-shadow: 0 18px 55px rgba(31, 39, 29, .11);
    --hhbc-radius: 22px;
}

.hhbc-services,
.hhbc-booking,
.hhbc-service-single,
.hhbc-thankyou {
    color: var(--hhbc-text);
    font-family: inherit;
}

.hhbc-services *,
.hhbc-booking *,
.hhbc-service-single *,
.hhbc-thankyou * {
    box-sizing: border-box;
}

.hhbc-container {
    width: min(1240px, calc(100% - 40px));
    margin-inline: auto;
}

.hhbc-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--hhbc-primary-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .15em;
    line-height: 1.2;
    text-transform: uppercase;
}

.hhbc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 12px 27px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 750;
    line-height: 1;
    text-align: center;
    text-decoration: none !important;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

.hhbc-btn:hover,
.hhbc-btn:focus-visible {
    transform: translateY(-2px);
}

.hhbc-btn--primary {
    background: var(--hhbc-primary);
    color: var(--hhbc-white) !important;
    box-shadow: 0 9px 24px rgba(75, 94, 68, .2);
}

.hhbc-btn--primary:hover,
.hhbc-btn--primary:focus-visible {
    background: var(--hhbc-primary-dark);
    box-shadow: 0 14px 32px rgba(75, 94, 68, .28);
}

.hhbc-btn--outline {
    background: transparent;
    border-color: var(--hhbc-primary);
    color: var(--hhbc-primary-dark) !important;
}

.hhbc-btn--outline:hover,
.hhbc-btn--outline:focus-visible {
    background: var(--hhbc-primary);
    color: var(--hhbc-white) !important;
}

.hhbc-btn--large {
    min-height: 56px;
    padding-inline: 32px;
    font-size: 16px;
}

/* Service cards */
.hhbc-services {
    position: relative;
    width: 100%;
}

.hhbc-services__viewport {
    overflow: hidden;
}

.hhbc-services__track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}

.hhbc-cols-1 .hhbc-services__track { grid-template-columns: 1fr; }
.hhbc-cols-2 .hhbc-services__track { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.hhbc-cols-3 .hhbc-services__track { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.hhbc-cols-4 .hhbc-services__track { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.hhbc-service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 100%;
    overflow: hidden;
    background: var(--hhbc-cream);
    border: 1px solid var(--hhbc-border);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.hhbc-services--grid .hhbc-service-card {
    margin: -1px 0 0 -1px;
}

.hhbc-service-card:hover {
    z-index: 2;
    border-color: color-mix(in srgb, var(--hhbc-primary) 70%, #ffffff);
    box-shadow: var(--hhbc-shadow);
    transform: translateY(-5px);
}

.hhbc-service-card__image {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #e9e5de;
}

.hhbc-service-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
}

.hhbc-service-card:hover .hhbc-service-card__image img {
    transform: scale(1.045);
}

.hhbc-service-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 34px 31px 32px;
}

.hhbc-service-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    margin-bottom: 30px;
}

.hhbc-service-card__arrow {
    display: inline-grid;
    width: 47px;
    height: 47px;
    place-items: center;
    border-radius: 50%;
    background: var(--hhbc-primary);
    color: var(--hhbc-white);
    font-size: 19px;
    transition: transform .3s ease, background .3s ease;
}

.hhbc-service-card:hover .hhbc-service-card__arrow {
    background: var(--hhbc-primary-dark);
    transform: translateX(4px);
}

.hhbc-service-card__badge {
    max-width: 55%;
    padding: 7px 11px;
    border: 1px solid color-mix(in srgb, var(--hhbc-primary) 35%, transparent);
    border-radius: 999px;
    color: var(--hhbc-primary-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.hhbc-service-card__title {
    margin: 0 0 20px;
    color: var(--hhbc-text);
    font-size: clamp(22px, 2vw, 29px);
    font-weight: 500;
    line-height: 1.18;
}

.hhbc-service-card__title a {
    color: inherit !important;
    text-decoration: none !important;
}

.hhbc-service-card__excerpt {
    min-height: 76px;
    margin-bottom: 22px;
    color: var(--hhbc-text);
    font-size: 16px;
    line-height: 1.65;
}

.hhbc-service-card__price {
    margin-top: auto;
    color: var(--hhbc-primary-dark);
    font-size: 21px;
    font-weight: 800;
    line-height: 1.2;
}


.hhbc-service-card__price-note {
    min-height: 34px;
    margin-top: 7px;
    color: var(--hhbc-muted);
    font-size: 12px;
    line-height: 1.4;
}

.hhbc-service-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 25px;
}

.hhbc-service-card__actions .hhbc-btn {
    min-height: 47px;
    padding-inline: 23px;
}

/* Slider */
.hhbc-services--slider .hhbc-services__viewport {
    margin-inline: -9px;
    padding: 9px;
}

.hhbc-services--slider .hhbc-services__track {
    display: flex;
    align-items: stretch;
    gap: 0;
    will-change: transform;
    transition: transform .55s cubic-bezier(.22,.61,.36,1);
}

.hhbc-services--slider .hhbc-service-card {
    flex: 0 0 calc(100% / 3);
}

.hhbc-services--slider.hhbc-cols-1 .hhbc-service-card { flex-basis: 100%; }
.hhbc-services--slider.hhbc-cols-2 .hhbc-service-card { flex-basis: 50%; }
.hhbc-services--slider.hhbc-cols-3 .hhbc-service-card { flex-basis: 33.333333%; }
.hhbc-services--slider.hhbc-cols-4 .hhbc-service-card { flex-basis: 25%; }

.hhbc-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 28px;
}

.hhbc-slider-prev,
.hhbc-slider-next {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid var(--hhbc-primary);
    border-radius: 50%;
    background: transparent;
    color: var(--hhbc-primary-dark);
    font-size: 19px;
    cursor: pointer;
    transition: background .25s ease, color .25s ease, transform .25s ease, opacity .25s ease;
}

.hhbc-slider-prev:hover,
.hhbc-slider-next:hover {
    background: var(--hhbc-primary);
    color: var(--hhbc-white);
    transform: translateY(-2px);
}

.hhbc-slider-prev:disabled,
.hhbc-slider-next:disabled {
    cursor: not-allowed;
    opacity: .35;
    transform: none;
}

.hhbc-slider-dots {
    display: flex;
    gap: 7px;
}

.hhbc-slider-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #c7c9c3;
    cursor: pointer;
    transition: width .25s ease, background .25s ease;
}

.hhbc-slider-dot.is-active {
    width: 28px;
    border-radius: 999px;
    background: var(--hhbc-primary);
}

/* Booking */
.hhbc-booking {
    width: min(1240px, calc(100% - 32px));
    margin: 40px auto;
}

.hhbc-booking__intro {
    max-width: 800px;
    margin: 0 auto 34px;
    text-align: center;
}

.hhbc-booking__intro h2 {
    margin: 0 0 13px;
    color: var(--hhbc-text);
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 500;
    line-height: 1.05;
}

.hhbc-booking__intro > p {
    margin: 0 auto;
    color: var(--hhbc-muted);
    font-size: 17px;
    line-height: 1.7;
}

.hhbc-secure-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 22px;
    margin-top: 20px;
    color: var(--hhbc-primary-dark);
    font-size: 13px;
    font-weight: 700;
}

.hhbc-booking-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(310px, .75fr);
    gap: 28px;
    align-items: start;
}

.hhbc-booking-fields {
    display: grid;
    gap: 24px;
}

.hhbc-form-section,
.hhbc-booking-summary {
    background: var(--hhbc-white);
    border: 1px solid var(--hhbc-border);
    border-radius: var(--hhbc-radius);
    box-shadow: 0 12px 42px rgba(31, 39, 29, .06);
}

.hhbc-form-section {
    padding: clamp(24px, 4vw, 42px);
}

.hhbc-form-section__heading {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 29px;
    padding-bottom: 23px;
    border-bottom: 1px solid var(--hhbc-border);
}

.hhbc-form-section__heading > span {
    display: grid;
    flex: 0 0 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    background: var(--hhbc-primary);
    color: var(--hhbc-white);
    font-size: 16px;
    font-weight: 800;
}

.hhbc-form-section__heading h3 {
    margin: 0 0 5px;
    color: var(--hhbc-text);
    font-size: 24px;
    font-weight: 650;
    line-height: 1.25;
}

.hhbc-form-section__heading p {
    margin: 0;
    color: var(--hhbc-muted);
    font-size: 14px;
    line-height: 1.55;
}

.hhbc-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 21px;
}

.hhbc-form-field {
    min-width: 0;
}

.hhbc-form-field--full {
    grid-column: 1 / -1;
}

.hhbc-form-field label:not(.hhbc-checkbox) {
    display: block;
    margin-bottom: 9px;
    color: var(--hhbc-text);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .01em;
}

.hhbc-form-field label > span {
    color: #a04336;
}

.hhbc-form-field input,
.hhbc-form-field select,
.hhbc-form-field textarea {
    width: 100%;
    min-height: 52px;
    margin: 0;
    padding: 12px 14px;
    border: 1px solid #d8d4cd;
    border-radius: 12px;
    outline: none;
    background: #fff;
    color: var(--hhbc-text);
    font-family: inherit;
    font-size: 15px;
    line-height: 1.4;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.hhbc-form-field textarea {
    min-height: 120px;
    resize: vertical;
}

.hhbc-form-field input:focus,
.hhbc-form-field select:focus,
.hhbc-form-field textarea:focus {
    border-color: var(--hhbc-primary);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--hhbc-primary) 17%, transparent);
}

.hhbc-form-field select:disabled,
.hhbc-form-field input:disabled {
    cursor: not-allowed;
    background: #f3f2ef;
    opacity: .75;
}

.hhbc-form-field small {
    display: block;
    margin-top: 7px;
    color: var(--hhbc-muted);
    font-size: 12px;
    line-height: 1.45;
}

.hhbc-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 16px;
    border: 1px solid color-mix(in srgb, var(--hhbc-primary) 32%, var(--hhbc-border));
    border-radius: 14px;
    background: color-mix(in srgb, var(--hhbc-cream) 80%, #ffffff);
    color: var(--hhbc-muted);
    cursor: pointer;
    font-size: 13px;
    line-height: 1.5;
}

.hhbc-checkbox input {
    flex: 0 0 auto;
    width: 19px;
    height: 19px;
    min-height: 0;
    margin-top: 2px;
    accent-color: var(--hhbc-primary);
}

.hhbc-checkbox strong {
    display: block;
    margin-bottom: 3px;
    color: var(--hhbc-text);
}

.hhbc-booking-summary {
    position: sticky;
    top: 30px;
    padding: 32px;
    background: var(--hhbc-cream);
}

.hhbc-booking-summary h3 {
    margin: 0 0 22px;
    font-size: 28px;
    font-weight: 600;
}

.hhbc-summary-placeholder {
    padding: 23px 18px;
    border: 1px dashed color-mix(in srgb, var(--hhbc-primary) 50%, #cfc9c0);
    border-radius: 14px;
    color: var(--hhbc-muted);
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
}

.hhbc-summary-lines {
    display: grid;
    gap: 12px;
}

.hhbc-summary-line {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--hhbc-border);
    color: var(--hhbc-muted);
    font-size: 13px;
    line-height: 1.45;
}

.hhbc-summary-line strong {
    color: var(--hhbc-text);
    white-space: nowrap;
}

.hhbc-summary-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 15px;
    padding: 17px 0;
    border-bottom: 1px solid var(--hhbc-border);
    color: var(--hhbc-text);
    font-size: 17px;
    font-weight: 750;
}

.hhbc-summary-total strong {
    color: var(--hhbc-primary-dark);
    font-size: 28px;
}

.hhbc-summary-policy {
    margin: 19px 0;
    color: var(--hhbc-muted);
    font-size: 12px;
    line-height: 1.55;
}

.hhbc-summary-policy p {
    margin: 0 0 8px;
    color: var(--hhbc-text);
}

.hhbc-summary-policy ul {
    margin: 0;
    padding-left: 18px;
}

.hhbc-summary-policy li {
    margin: 3px 0;
}

.hhbc-btn--checkout {
    width: 100%;
    min-height: 56px;
    justify-content: space-between;
}

.hhbc-btn--checkout:disabled {
    cursor: not-allowed;
    opacity: .55;
    transform: none;
}

.hhbc-checkout-note {
    margin: 12px 0 0;
    color: var(--hhbc-muted);
    font-size: 11px;
    line-height: 1.5;
    text-align: center;
}

.hhbc-notice {
    margin: 18px 0;
    padding: 15px 18px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.55;
}

.hhbc-notice--warning {
    border: 1px solid #e4ca8b;
    background: #fff9e9;
    color: #6c5420;
}

.hhbc-notice--error {
    border: 1px solid #e0a4a4;
    background: #fff1f1;
    color: #7d2525;
}

.hhbc-notice--info {
    border: 1px solid #b8c9dc;
    background: #f2f7fc;
    color: #294c70;
}

.hhbc-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Standalone payment selection */
.hhbc-payment-methods {
    display: grid;
    gap: 10px;
    margin: 20px 0 17px;
}

.hhbc-payment-methods__title {
    margin: 0 0 2px;
    color: var(--hhbc-text);
    font-size: 13px;
    font-weight: 750;
}

.hhbc-payment-methods__title span {
    color: #a33b3b;
}

.hhbc-payment-method {
    position: relative;
    display: grid;
    grid-template-columns: auto auto minmax(0, 1fr);
    gap: 11px;
    align-items: center;
    min-height: 66px;
    padding: 11px 13px;
    border: 1px solid var(--hhbc-border);
    border-radius: 14px;
    background: #fff;
    cursor: pointer;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease, background .2s ease;
}

.hhbc-payment-method:hover {
    border-color: var(--hhbc-primary);
    box-shadow: 0 8px 23px rgba(53, 68, 48, .08);
    transform: translateY(-1px);
}

.hhbc-payment-method:has(input:checked) {
    border-color: var(--hhbc-primary-dark);
    background: color-mix(in srgb, var(--hhbc-primary) 7%, #fff);
    box-shadow: 0 0 0 2px color-mix(in srgb, var(--hhbc-primary) 20%, transparent);
}

.hhbc-payment-method input[type="radio"] {
    width: 17px;
    height: 17px;
    margin: 0;
    accent-color: var(--hhbc-primary-dark);
}

.hhbc-payment-method__logo {
    display: inline-grid;
    min-width: 58px;
    min-height: 31px;
    place-items: center;
    padding: 5px 8px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: -.01em;
}

.hhbc-payment-method__logo--stripe {
    background: #635bff;
    color: #fff;
}

.hhbc-payment-method__logo--paypal {
    background: #fff5d8;
    color: #003087;
}

.hhbc-payment-method > span:last-child {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.hhbc-payment-method strong {
    color: var(--hhbc-text);
    font-size: 13px;
    line-height: 1.25;
}

.hhbc-payment-method small {
    color: var(--hhbc-muted);
    font-size: 10px;
    line-height: 1.35;
}

/* Gateway return pages */
.hhbc-payment-result {
    width: min(760px, calc(100% - 32px));
    margin: clamp(45px, 8vw, 100px) auto;
    padding: clamp(30px, 6vw, 58px);
    border: 1px solid var(--hhbc-border);
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--hhbc-shadow);
    color: var(--hhbc-text);
    text-align: center;
}

.hhbc-payment-result * {
    box-sizing: border-box;
}

.hhbc-payment-result__icon {
    display: grid;
    width: 74px;
    height: 74px;
    margin: 0 auto 24px;
    place-items: center;
    border-radius: 50%;
    background: var(--hhbc-primary);
    color: #fff;
    font-size: 32px;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(69, 91, 61, .2);
}

.hhbc-payment-result--failed .hhbc-payment-result__icon,
.hhbc-payment-result--cancelled .hhbc-payment-result__icon {
    background: #9b4a4a;
}

.hhbc-payment-result--pending .hhbc-payment-result__icon {
    background: #ad7c24;
}

.hhbc-payment-result h1 {
    max-width: 650px;
    margin: 0 auto 14px;
    color: var(--hhbc-text);
    font-size: clamp(31px, 5vw, 48px);
    font-weight: 600;
    letter-spacing: -.025em;
    line-height: 1.1;
}

.hhbc-payment-result > p {
    max-width: 630px;
    margin: 0 auto 25px;
    color: var(--hhbc-muted);
    font-size: 16px;
    line-height: 1.65;
}

.hhbc-payment-result__summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    margin: 30px 0;
    overflow: hidden;
    border: 1px solid var(--hhbc-border);
    border-radius: 16px;
    background: var(--hhbc-border);
    text-align: left;
}

.hhbc-payment-result__summary > div {
    display: grid;
    gap: 5px;
    min-width: 0;
    padding: 15px 17px;
    background: var(--hhbc-cream);
}

.hhbc-payment-result__summary span {
    color: var(--hhbc-muted);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hhbc-payment-result__summary strong {
    min-width: 0;
    overflow-wrap: anywhere;
    color: var(--hhbc-text);
    font-size: 14px;
    line-height: 1.35;
}

.hhbc-booking-loading {
    position: relative;
    pointer-events: none;
    opacity: .75;
}

.hhbc-booking-loading::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 5;
    border-radius: inherit;
    background: rgba(255,255,255,.25);
}

/* Service detail */
.hhbc-service-single {
    overflow: hidden;
    background: #fff;
}

.hhbc-service-hero {
    padding: clamp(55px, 8vw, 110px) 0;
    background: var(--hhbc-cream);
    border-bottom: 1px solid var(--hhbc-border);
}

.hhbc-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 37px;
    color: var(--hhbc-muted);
    font-size: 13px;
}

.hhbc-breadcrumb a {
    color: var(--hhbc-primary-dark) !important;
    text-decoration: none !important;
}

.hhbc-service-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
    gap: clamp(45px, 8vw, 100px);
    align-items: center;
}

.hhbc-service-hero__content h1 {
    max-width: 760px;
    margin: 0 0 22px;
    color: var(--hhbc-text);
    font-size: clamp(48px, 7vw, 86px);
    font-weight: 500;
    letter-spacing: -.035em;
    line-height: .98;
}

.hhbc-service-hero__lead {
    max-width: 680px;
    margin: 0 0 25px;
    color: var(--hhbc-muted);
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.65;
}

.hhbc-service-hero__price {
    color: var(--hhbc-primary-dark);
    font-size: clamp(27px, 3vw, 40px);
    font-weight: 800;
}

.hhbc-service-hero__note {
    margin: 7px 0 0;
    color: var(--hhbc-muted);
    font-size: 13px;
}

.hhbc-service-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.hhbc-service-hero__visual {
    min-height: 510px;
    overflow: hidden;
    border-radius: 180px 180px 24px 24px;
    background: var(--hhbc-primary);
    box-shadow: var(--hhbc-shadow);
}

.hhbc-service-hero__visual > img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 510px;
    object-fit: cover;
}

.hhbc-service-hero__placeholder {
    display: flex;
    min-height: 510px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 45px;
    background: linear-gradient(150deg, var(--hhbc-primary), var(--hhbc-primary-dark));
    color: #fff;
    text-align: center;
}

.hhbc-service-hero__placeholder span {
    display: grid;
    width: 110px;
    height: 110px;
    margin-bottom: 25px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 50%;
    font-size: 28px;
    font-weight: 800;
}

.hhbc-service-hero__placeholder strong {
    font-size: 28px;
}

.hhbc-service-hero__placeholder small {
    margin-top: 8px;
    font-size: 14px;
    opacity: .85;
}

.hhbc-service-content {
    padding: clamp(65px, 9vw, 120px) 0;
}

.hhbc-service-content__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(310px, .65fr);
    gap: clamp(45px, 8vw, 95px);
    align-items: start;
}

.hhbc-service-main > h2,
.hhbc-included > h2,
.hhbc-process > h2,
.hhbc-faqs > h2,
.hhbc-related-services h2 {
    margin: 0 0 24px;
    color: var(--hhbc-text);
    font-size: clamp(34px, 5vw, 55px);
    font-weight: 500;
    letter-spacing: -.025em;
    line-height: 1.08;
}

.hhbc-rich-content {
    color: #454a43;
    font-size: 17px;
    line-height: 1.85;
}

.hhbc-rich-content p {
    margin: 0 0 20px;
}

.hhbc-included,
.hhbc-process,
.hhbc-faqs {
    margin-top: 70px;
    padding-top: 65px;
    border-top: 1px solid var(--hhbc-border);
}

.hhbc-included__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.hhbc-included__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 18px;
    border: 1px solid var(--hhbc-border);
    border-radius: 14px;
    background: var(--hhbc-cream);
}

.hhbc-included__item span {
    display: grid;
    flex: 0 0 27px;
    height: 27px;
    place-items: center;
    border-radius: 50%;
    background: var(--hhbc-primary);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

.hhbc-included__item p {
    margin: 1px 0 0;
    color: var(--hhbc-text);
    font-size: 14px;
    line-height: 1.55;
}

.hhbc-process__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 13px;
}

.hhbc-process__grid > div {
    padding: 25px 22px;
    border: 1px solid var(--hhbc-border);
    border-radius: 16px;
}

.hhbc-process__grid > div > span {
    color: var(--hhbc-primary);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .13em;
}

.hhbc-process__grid h3 {
    margin: 18px 0 10px;
    color: var(--hhbc-text);
    font-size: 19px;
}

.hhbc-process__grid p {
    margin: 0;
    color: var(--hhbc-muted);
    font-size: 13px;
    line-height: 1.65;
}

.hhbc-faq {
    border-bottom: 1px solid var(--hhbc-border);
}

.hhbc-faq summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 21px 0;
    color: var(--hhbc-text);
    font-size: 17px;
    font-weight: 750;
    list-style: none;
    cursor: pointer;
}

.hhbc-faq summary::-webkit-details-marker { display: none; }

.hhbc-faq summary span {
    display: grid;
    flex: 0 0 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    background: var(--hhbc-cream);
    color: var(--hhbc-primary-dark);
    font-size: 22px;
    transition: transform .25s ease;
}

.hhbc-faq[open] summary span { transform: rotate(45deg); }

.hhbc-faq > div {
    padding: 0 50px 20px 0;
    color: var(--hhbc-muted);
    font-size: 15px;
    line-height: 1.7;
}

.hhbc-faq > div p { margin: 0; }

.hhbc-service-sidebar {
    position: sticky;
    top: 28px;
    display: grid;
    gap: 18px;
}

.hhbc-service-book-card {
    padding: 34px;
    border-radius: var(--hhbc-radius);
    background: var(--hhbc-cream);
    border: 1px solid var(--hhbc-border);
    box-shadow: var(--hhbc-shadow);
}

.hhbc-service-book-card h2 {
    margin: 0 0 13px;
    font-size: 31px;
    font-weight: 550;
}

.hhbc-service-book-card > p {
    margin: 0;
    color: var(--hhbc-muted);
    font-size: 14px;
    line-height: 1.65;
}

.hhbc-book-card__price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin: 24px 0 20px;
    padding: 17px 0;
    border-block: 1px solid var(--hhbc-border);
}

.hhbc-book-card__price small {
    color: var(--hhbc-muted);
}

.hhbc-book-card__price strong {
    color: var(--hhbc-primary-dark);
    font-size: 22px;
}

.hhbc-service-book-card ul {
    display: grid;
    gap: 9px;
    margin: 0 0 23px;
    padding: 0;
    color: var(--hhbc-text);
    font-size: 13px;
    list-style: none;
}

.hhbc-help-card {
    display: flex;
    gap: 16px;
    padding: 24px;
    border: 1px solid var(--hhbc-border);
    border-radius: 18px;
}

.hhbc-help-card > span {
    display: grid;
    flex: 0 0 43px;
    height: 43px;
    place-items: center;
    border-radius: 50%;
    background: var(--hhbc-primary);
    color: #fff;
}

.hhbc-help-card h3 {
    margin: 0 0 7px;
    font-size: 18px;
}

.hhbc-help-card p {
    margin: 0 0 7px;
    color: var(--hhbc-muted);
    font-size: 12px;
    line-height: 1.5;
}

.hhbc-help-card a {
    color: var(--hhbc-primary-dark) !important;
    font-weight: 800;
    text-decoration: none !important;
}

.hhbc-related-services {
    padding: clamp(65px, 8vw, 100px) 0;
    background: var(--hhbc-cream);
    border-top: 1px solid var(--hhbc-border);
}

/* Thank you */
.hhbc-thankyou {
    display: flex;
    gap: 22px;
    margin: 35px 0;
    padding: 30px;
    border: 1px solid var(--hhbc-border);
    border-radius: var(--hhbc-radius);
    background: var(--hhbc-cream);
}

.hhbc-thankyou__icon {
    display: grid;
    flex: 0 0 58px;
    height: 58px;
    place-items: center;
    border-radius: 50%;
    background: var(--hhbc-primary);
    color: #fff;
    font-size: 25px;
}

.hhbc-thankyou h2 {
    margin: 0 0 8px;
    font-size: 28px;
}

.hhbc-thankyou p {
    margin: 0;
    color: var(--hhbc-muted);
}

.hhbc-thankyou__details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 1px;
    margin-top: 20px;
    overflow: hidden;
    border: 1px solid var(--hhbc-border);
    border-radius: 13px;
    background: var(--hhbc-border);
}

.hhbc-thankyou__details > div {
    display: grid;
    gap: 3px;
    padding: 13px;
    background: #fff;
}

.hhbc-thankyou__details span {
    color: var(--hhbc-muted);
    font-size: 11px;
    text-transform: uppercase;
}

.hhbc-thankyou__details strong {
    font-size: 14px;
}

.hhbc-empty {
    padding: 26px;
    border: 1px dashed var(--hhbc-border);
    border-radius: 14px;
    color: var(--hhbc-muted);
    text-align: center;
}

@media (max-width: 1050px) {
    .hhbc-cols-4 .hhbc-services__track { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .hhbc-services--slider.hhbc-cols-4 .hhbc-service-card { flex-basis: 50%; }
    .hhbc-booking-layout,
    .hhbc-service-content__grid { grid-template-columns: 1fr; }
    .hhbc-booking-summary,
    .hhbc-service-sidebar { position: static; }
    .hhbc-service-hero__grid { grid-template-columns: 1fr 410px; gap: 45px; }
}

@media (max-width: 820px) {
    .hhbc-cols-2 .hhbc-services__track,
    .hhbc-cols-3 .hhbc-services__track,
    .hhbc-cols-4 .hhbc-services__track { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .hhbc-services--slider .hhbc-service-card,
    .hhbc-services--slider.hhbc-cols-2 .hhbc-service-card,
    .hhbc-services--slider.hhbc-cols-3 .hhbc-service-card,
    .hhbc-services--slider.hhbc-cols-4 .hhbc-service-card { flex-basis: 50%; }
    .hhbc-service-hero__grid { grid-template-columns: 1fr; }
    .hhbc-service-hero__visual,
    .hhbc-service-hero__visual > img,
    .hhbc-service-hero__placeholder { min-height: 430px; }
    .hhbc-service-hero__visual { border-radius: 120px 120px 22px 22px; }
    .hhbc-process__grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
    .hhbc-container { width: min(100% - 28px, 1240px); }
    .hhbc-services__track,
    .hhbc-cols-2 .hhbc-services__track,
    .hhbc-cols-3 .hhbc-services__track,
    .hhbc-cols-4 .hhbc-services__track { grid-template-columns: 1fr; }
    .hhbc-services--slider .hhbc-service-card,
    .hhbc-services--slider.hhbc-cols-2 .hhbc-service-card,
    .hhbc-services--slider.hhbc-cols-3 .hhbc-service-card,
    .hhbc-services--slider.hhbc-cols-4 .hhbc-service-card { flex-basis: 100%; }
    .hhbc-service-card__body { padding: 28px 23px 26px; }
    .hhbc-service-card__excerpt { min-height: 0; }
    .hhbc-service-card__actions { flex-direction: column; }
    .hhbc-service-card__actions .hhbc-btn { width: 100%; }
    .hhbc-booking { width: min(100% - 22px, 1240px); margin-block: 25px; }
    .hhbc-form-section,
    .hhbc-booking-summary { padding: 23px 18px; border-radius: 17px; }
    .hhbc-form-grid { grid-template-columns: 1fr; }
    .hhbc-form-field--full { grid-column: auto; }
    .hhbc-secure-strip { display: grid; justify-content: start; text-align: left; }
    .hhbc-booking__intro { text-align: left; }
    .hhbc-service-hero { padding-block: 48px; }
    .hhbc-service-hero__content h1 { font-size: 47px; }
    .hhbc-service-hero__actions { flex-direction: column; }
    .hhbc-service-hero__actions .hhbc-btn { width: 100%; }
    .hhbc-service-hero__visual,
    .hhbc-service-hero__visual > img,
    .hhbc-service-hero__placeholder { min-height: 340px; }
    .hhbc-service-hero__visual { border-radius: 90px 90px 18px 18px; }
    .hhbc-included__grid { grid-template-columns: 1fr; }
    .hhbc-service-book-card { padding: 27px 21px; }
    .hhbc-thankyou { flex-direction: column; padding: 23px 18px; }
    .hhbc-thankyou__details { grid-template-columns: 1fr; }
}


/* Complete Payments & Bookings page shortcode */
.hhbc-payments-bookings {
    width: min(100% - 34px, 1240px);
    margin: 64px auto;
}

.hhbc-payments-bookings__intro {
    max-width: 790px;
    margin: 0 auto 38px;
    text-align: center;
}

.hhbc-payments-bookings__intro h2 {
    margin: 9px 0 14px;
    color: var(--hhbc-text);
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 500;
    line-height: 1.08;
}

.hhbc-payments-bookings__intro p {
    margin: 0;
    color: var(--hhbc-muted);
    font-size: 17px;
    line-height: 1.7;
}

.hhbc-payments-bookings__checkout {
    margin-top: 70px;
}

.hhbc-payments-bookings__checkout .hhbc-booking {
    width: 100%;
    margin-inline: 0;
}

#hhbc-booking-form {
    scroll-margin-top: 120px;
}

@media (max-width: 620px) {
    .hhbc-payments-bookings {
        width: min(100% - 22px, 1240px);
        margin-block: 38px;
    }

    .hhbc-payments-bookings__intro {
        text-align: left;
    }

    .hhbc-payments-bookings__checkout {
        margin-top: 45px;
    }
}

@media (max-width: 620px) {
    .hhbc-payment-method {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .hhbc-payment-method__logo {
        grid-column: 2;
        grid-row: 1;
        justify-self: start;
    }

    .hhbc-payment-method > span:last-child {
        grid-column: 2;
    }

    .hhbc-payment-method input[type="radio"] {
        grid-row: 1 / span 2;
    }

    .hhbc-payment-result {
        padding: 29px 19px;
        border-radius: 20px;
    }

    .hhbc-payment-result__summary {
        grid-template-columns: 1fr;
    }
}

/* v2.0.1: Prevent page-builder/theme CSS from clipping the client-information fields. */
.hhbc-booking-form .hhbc-booking-layout,
.hhbc-booking-form .hhbc-booking-fields,
.hhbc-booking-form .hhbc-form-section,
.hhbc-booking-form .hhbc-form-grid,
.hhbc-booking-form .hhbc-form-field {
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
}

.hhbc-booking-form .hhbc-form-section {
    min-height: 0 !important;
}

.hhbc-booking-form .hhbc-service-address-input,
.hhbc-booking-form .hhbc-customer-notes-input {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: static !important;
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
}

.hhbc-booking-form .hhbc-service-address-input {
    min-height: 52px !important;
}

.hhbc-booking-form .hhbc-customer-notes-input {
    min-height: 120px !important;
}


/* v2.0.3: Interactive service showcase. The wrapper intentionally has no background. */
.hhbc-feature-showcase {
    --hhbc-showcase-accent: #f49370;
    --hhbc-showcase-tab-bg: #f8f3ec;
    --hhbc-showcase-tab-text: #151515;
    --hhbc-showcase-frame: rgba(255, 255, 255, 0.35);
    display: grid;
    grid-template-columns: minmax(260px, 390px) minmax(300px, 380px) minmax(290px, 1fr);
    align-items: center;
    gap: clamp(34px, 4.2vw, 64px);
    width: min(100%, 1380px);
    margin-inline: auto;
    padding: clamp(18px, 2vw, 30px) 0;
    background: transparent !important;
    box-sizing: border-box;
}

.hhbc-feature-showcase *,
.hhbc-feature-showcase *::before,
.hhbc-feature-showcase *::after {
    box-sizing: border-box;
}

.hhbc-feature-showcase--dark {
    color: #fff;
}

.hhbc-feature-showcase--light {
    color: var(--hhbc-text, #111);
    --hhbc-showcase-frame: rgba(17, 17, 17, 0.16);
}

.hhbc-feature-showcase__tabs {
    display: grid;
    gap: 20px;
    align-content: center;
    min-width: 0;
}

.hhbc-feature-showcase__tab {
    appearance: none;
    -webkit-appearance: none;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
    width: 100%;
    min-height: 74px;
    margin: 0;
    padding: 16px 20px 16px 15px;
    border: 1px solid rgba(15, 15, 15, 0.05);
    border-radius: 12px;
    background: var(--hhbc-showcase-tab-bg);
    color: var(--hhbc-showcase-tab-text);
    text-align: left;
    cursor: pointer;
    box-shadow: none;
    transition: transform 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.hhbc-feature-showcase__tab:hover,
.hhbc-feature-showcase__tab:focus-visible {
    transform: translateX(5px);
    outline: none;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.hhbc-feature-showcase__tab:focus-visible {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.75), 0 0 0 6px var(--hhbc-showcase-accent);
}

.hhbc-feature-showcase__tab.is-active {
    background: var(--hhbc-showcase-accent);
}

.hhbc-feature-showcase__tab-title {
    min-width: 0;
    overflow-wrap: anywhere;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(24px, 2vw, 31px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hhbc-feature-showcase__tab-arrow {
    display: inline-grid;
    place-items: center;
    width: 24px;
    height: 24px;
    font-family: Arial, sans-serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1;
    transition: transform 220ms ease;
}

.hhbc-feature-showcase__tab.is-active .hhbc-feature-showcase__tab-arrow,
.hhbc-feature-showcase__tab:hover .hhbc-feature-showcase__tab-arrow {
    transform: translate(2px, 2px);
}

.hhbc-feature-showcase__visual {
    min-width: 0;
}

.hhbc-feature-showcase__image {
    position: relative;
    width: 100%;
    aspect-ratio: 0.76;
    min-height: 420px;
    margin: 0;
    padding: 12px;
    overflow: hidden;
    border: 1px solid var(--hhbc-showcase-frame);
    border-radius: 46px;
    background: rgba(255, 255, 255, 0.24);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.13);
    animation: hhbcShowcaseReveal 380ms ease both;
}

.hhbc-feature-showcase__image[hidden],
.hhbc-feature-showcase__panel[hidden] {
    display: none !important;
}

.hhbc-feature-showcase__image img,
.hhbc-feature-showcase__image-placeholder {
    display: block;
    width: 100%;
    height: 100%;
    min-height: inherit;
    border-radius: 34px;
}

.hhbc-feature-showcase__image img {
    object-fit: cover;
    object-position: center;
}

.hhbc-feature-showcase__image-placeholder {
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, var(--hhbc-primary, #82947a), var(--hhbc-primary-dark, #64745e));
    color: #fff;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(88px, 10vw, 144px);
}

.hhbc-feature-showcase__content {
    min-width: 0;
}

.hhbc-feature-showcase__panel {
    max-width: 465px;
    animation: hhbcShowcaseReveal 380ms ease both;
}

.hhbc-feature-showcase__panel h3 {
    margin: 0 0 18px;
    color: inherit;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(43px, 4.2vw, 68px);
    font-weight: 400;
    line-height: 0.94;
    letter-spacing: -0.035em;
    overflow-wrap: anywhere;
}

.hhbc-feature-showcase__panel p {
    margin: 0;
    max-width: 440px;
    color: inherit;
    font-size: clamp(17px, 1.35vw, 21px);
    font-weight: 400;
    line-height: 1.48;
}

.hhbc-feature-showcase--dark .hhbc-feature-showcase__panel p {
    color: rgba(255, 255, 255, 0.94);
}

.hhbc-feature-showcase--light .hhbc-feature-showcase__panel p {
    color: rgba(17, 17, 17, 0.82);
}

.hhbc-feature-showcase__price {
    margin-top: 18px;
    color: inherit;
    font-size: 17px;
    font-weight: 700;
}

.hhbc-feature-showcase__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 154px;
    min-height: 52px;
    margin-top: 38px;
    padding: 12px 25px;
    border: 1px solid transparent;
    border-radius: 999px;
    background: var(--hhbc-primary, #82947a);
    color: #fff !important;
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none !important;
    box-shadow: none;
    transition: transform 200ms ease, background-color 200ms ease, box-shadow 200ms ease;
}

.hhbc-feature-showcase__button:hover,
.hhbc-feature-showcase__button:focus-visible {
    transform: translateY(-2px);
    background: var(--hhbc-primary-dark, #64745e);
    color: #fff !important;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.18);
    outline: none;
}

@keyframes hhbcShowcaseReveal {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1080px) {
    .hhbc-feature-showcase {
        grid-template-columns: minmax(230px, 0.8fr) minmax(280px, 1fr) minmax(260px, 0.9fr);
        gap: 30px;
    }

    .hhbc-feature-showcase__tab {
        min-height: 66px;
    }

    .hhbc-feature-showcase__tab-title {
        font-size: 23px;
    }

    .hhbc-feature-showcase__image {
        min-height: 390px;
        border-radius: 38px;
    }

    .hhbc-feature-showcase__image img,
    .hhbc-feature-showcase__image-placeholder {
        border-radius: 28px;
    }
}

@media (max-width: 860px) {
    .hhbc-feature-showcase {
        grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
        align-items: stretch;
        gap: 30px;
    }

    .hhbc-feature-showcase__tabs {
        grid-column: 1 / -1;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .hhbc-feature-showcase__tab:hover,
    .hhbc-feature-showcase__tab:focus-visible {
        transform: translateY(-2px);
    }

    .hhbc-feature-showcase__panel {
        display: flex;
        min-height: 100%;
        flex-direction: column;
        justify-content: center;
    }

    .hhbc-feature-showcase__button {
        align-self: flex-start;
    }
}

@media (max-width: 620px) {
    .hhbc-feature-showcase {
        display: block;
        width: 100%;
        padding: 8px 0;
    }

    .hhbc-feature-showcase__tabs {
        display: flex;
        gap: 10px;
        margin: 0 0 22px;
        padding: 2px 2px 12px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: thin;
    }

    .hhbc-feature-showcase__tab {
        flex: 0 0 min(84vw, 330px);
        min-height: 64px;
        scroll-snap-align: start;
    }

    .hhbc-feature-showcase__tab-title {
        font-size: 22px;
    }

    .hhbc-feature-showcase__visual {
        width: min(100%, 420px);
        margin-inline: auto;
    }

    .hhbc-feature-showcase__image {
        min-height: 0;
        aspect-ratio: 0.82;
        padding: 9px;
        border-radius: 34px;
    }

    .hhbc-feature-showcase__image img,
    .hhbc-feature-showcase__image-placeholder {
        min-height: 0;
        border-radius: 26px;
    }

    .hhbc-feature-showcase__content {
        margin-top: 30px;
    }

    .hhbc-feature-showcase__panel {
        max-width: none;
        min-height: 0;
    }

    .hhbc-feature-showcase__panel h3 {
        margin-bottom: 14px;
        font-size: clamp(39px, 13vw, 54px);
        line-height: 0.98;
    }

    .hhbc-feature-showcase__panel p {
        font-size: 17px;
    }

    .hhbc-feature-showcase__button {
        margin-top: 26px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hhbc-feature-showcase__tab,
    .hhbc-feature-showcase__tab-arrow,
    .hhbc-feature-showcase__button,
    .hhbc-feature-showcase__image,
    .hhbc-feature-showcase__panel {
        animation: none !important;
        transition: none !important;
    }
}

/* v2.0.5: booking review, same-day scheduling and direct payment UI */
.hhbc-checkbox--urgent {
    transition: border-color .2s ease, background .2s ease, opacity .2s ease;
}

.hhbc-checkbox--urgent.is-disabled {
    cursor: not-allowed;
    opacity: .58;
    background: #f5f3ef;
}

.hhbc-checkbox--urgent:not(.is-disabled):hover {
    border-color: var(--hhbc-primary-dark);
    background: color-mix(in srgb, var(--hhbc-primary) 8%, #fff);
}

.hhbc-checkbox--urgent small {
    display: block;
    margin-top: 5px;
    color: var(--hhbc-primary-dark);
    font-weight: 650;
}

.hhbc-booking-review {
    display: grid;
    gap: 0;
    margin: 0 0 22px;
    overflow: hidden;
    border: 1px solid var(--hhbc-border);
    border-radius: 15px;
    background: #fff;
}

.hhbc-booking-review > div {
    display: grid;
    grid-template-columns: minmax(92px, .8fr) minmax(0, 1.45fr);
    gap: 13px;
    align-items: start;
    padding: 11px 13px;
    border-bottom: 1px solid var(--hhbc-border);
}

.hhbc-booking-review > div:last-child {
    border-bottom: 0;
}

.hhbc-booking-review span {
    color: var(--hhbc-muted);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
}

.hhbc-booking-review strong {
    min-width: 0;
    overflow-wrap: anywhere;
    color: var(--hhbc-text);
    font-size: 12px;
    line-height: 1.45;
    text-align: right;
}

.hhbc-booking-review__urgent {
    background: #fff7ed;
}

.hhbc-booking-review__urgent strong {
    color: #9a4b1f;
}

.hhbc-price-summary-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 12px;
    color: var(--hhbc-text);
    font-size: 13px;
    font-weight: 800;
}

.hhbc-price-summary-title::after {
    flex: 1;
    height: 1px;
    background: var(--hhbc-border);
    content: "";
}

.hhbc-notice__action {
    display: inline-flex;
    margin-left: 8px;
    color: inherit !important;
    font-weight: 800;
    text-decoration: underline !important;
    text-underline-offset: 3px;
}

.hhbc-payment-empty {
    padding: 15px;
    border: 1px dashed #d8b878;
    border-radius: 12px;
    background: #fff9e9;
    color: #6c5420;
    font-size: 12px;
    line-height: 1.5;
}

.hhbc-gateway-panel {
    margin: 15px 0 18px;
    padding: 16px;
    border: 1px solid var(--hhbc-border);
    border-radius: 14px;
    background: #fff;
}

.hhbc-gateway-panel[hidden] {
    display: none !important;
}

.hhbc-card-field-label {
    display: block;
    margin: 0 0 9px;
    color: var(--hhbc-text);
    font-size: 13px;
    font-weight: 800;
}

.hhbc-card-field-label span {
    color: #a33b3b;
}

.hhbc-stripe-card {
    min-height: 52px;
    padding: 15px 14px;
    border: 1px solid #cfcac3;
    border-radius: 11px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(17, 17, 17, .03);
    transition: border-color .2s ease, box-shadow .2s ease;
}

.hhbc-stripe-card.StripeElement--focus {
    border-color: var(--hhbc-primary-dark);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--hhbc-primary) 17%, transparent);
}

.hhbc-stripe-card.StripeElement--invalid {
    border-color: #b54a4a;
}

.hhbc-card-errors,
.hhbc-payment-error {
    margin-top: 8px;
    color: #942f2f;
    font-size: 12px;
    font-weight: 650;
    line-height: 1.45;
}

.hhbc-payment-error {
    margin: 0 0 12px;
    padding: 11px 13px;
    border: 1px solid #e3aaaa;
    border-radius: 10px;
    background: #fff2f2;
}

.hhbc-payment-error[hidden] {
    display: none !important;
}

.hhbc-gateway-help {
    margin: 9px 0 0;
    color: var(--hhbc-muted);
    font-size: 10px;
    line-height: 1.5;
}

.hhbc-paypal-message,
.hhbc-stripe-hosted-message {
    display: grid;
    gap: 5px;
}

.hhbc-paypal-message strong,
.hhbc-stripe-hosted-message strong {
    color: var(--hhbc-text);
    font-size: 13px;
}

.hhbc-paypal-message span,
.hhbc-stripe-hosted-message span,
.hhbc-stripe-fallback {
    color: var(--hhbc-muted);
    font-size: 11px;
    line-height: 1.5;
}

/* Strong specificity prevents theme button colors and disabled styles from
   changing the plugin checkout action. */
.hhbc-booking-form button.hhbc-btn.hhbc-btn--checkout {
    appearance: none !important;
    display: inline-flex !important;
    width: 100% !important;
    min-height: 58px !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin: 0 !important;
    padding: 15px 20px !important;
    border: 1px solid var(--hhbc-primary-dark) !important;
    border-radius: 14px !important;
    background: var(--hhbc-primary-dark) !important;
    color: #fff !important;
    box-shadow: 0 10px 26px rgba(75, 94, 68, .22) !important;
    font-family: inherit !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    cursor: pointer !important;
    opacity: 1 !important;
}

.hhbc-booking-form button.hhbc-btn.hhbc-btn--checkout:hover,
.hhbc-booking-form button.hhbc-btn.hhbc-btn--checkout:focus-visible {
    background: var(--hhbc-primary) !important;
    border-color: var(--hhbc-primary) !important;
    color: #fff !important;
    transform: translateY(-1px) !important;
}

.hhbc-booking-form button.hhbc-btn.hhbc-btn--checkout:disabled {
    border-color: #b9b5ae !important;
    background: #d2cfc9 !important;
    color: #6f6b65 !important;
    box-shadow: none !important;
    cursor: not-allowed !important;
    opacity: 1 !important;
    transform: none !important;
}

.hhbc-booking-form button.hhbc-btn.hhbc-btn--checkout.is-processing {
    cursor: progress !important;
}

.hhbc-booking-form button.hhbc-btn.hhbc-btn--checkout.is-processing span:first-child::before {
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 9px;
    border: 2px solid rgba(255,255,255,.45);
    border-top-color: #fff;
    border-radius: 50%;
    vertical-align: -2px;
    animation: hhbc-spin .75s linear infinite;
    content: "";
}

@keyframes hhbc-spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 620px) {
    .hhbc-booking-review > div {
        grid-template-columns: 1fr;
        gap: 3px;
    }

    .hhbc-booking-review strong {
        text-align: left;
    }

    .hhbc-notice__action {
        display: flex;
        margin: 8px 0 0;
    }
}

/* v2.0.6: removed autofill-prone booking honeypot; submission protections remain server-side */

/* v2.0.8: selectable payments-only mode and manual Zelle checkout */
.hhbc-payment-method__logo--zelle {
    background: #6d1ed4;
    color: #fff;
}

.hhbc-zelle-panel {
    display: grid;
    gap: 14px;
    background: linear-gradient(180deg, #fff 0%, #fbf8ff 100%);
}

.hhbc-zelle-panel__head {
    display: flex;
    gap: 12px;
    align-items: center;
}

.hhbc-zelle-panel__head > div {
    display: grid;
    gap: 3px;
}

.hhbc-zelle-panel__head strong {
    color: var(--hhbc-text);
    font-size: 14px;
}

.hhbc-zelle-panel__head span:not(.hhbc-zelle-panel__mark) {
    color: var(--hhbc-muted);
    font-size: 11px;
    line-height: 1.45;
}

.hhbc-zelle-panel__mark {
    display: inline-grid;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    place-items: center;
    border-radius: 11px;
    background: #6d1ed4;
    color: #fff;
    font-size: 19px;
    font-weight: 900;
}

.hhbc-zelle-panel__row {
    display: grid;
    grid-template-columns: minmax(92px, .7fr) minmax(0, 1.3fr);
    gap: 10px;
    align-items: center;
    padding: 11px 12px;
    border: 1px solid #e6ddf2;
    border-radius: 11px;
    background: #fff;
}

.hhbc-zelle-panel__row > span {
    color: var(--hhbc-muted);
    font-size: 11px;
    font-weight: 700;
}

.hhbc-zelle-panel__row > strong {
    min-width: 0;
    overflow-wrap: anywhere;
    color: var(--hhbc-text);
    font-size: 12px;
    text-align: right;
}

.hhbc-zelle-panel__email {
    grid-template-columns: minmax(82px, .55fr) minmax(0, 1.2fr) auto;
}

.hhbc-zelle-copy {
    appearance: none;
    min-height: 34px;
    padding: 7px 11px;
    border: 1px solid #6d1ed4;
    border-radius: 9px;
    background: #fff;
    color: #6d1ed4;
    font: inherit;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
}

.hhbc-zelle-copy:hover,
.hhbc-zelle-copy:focus-visible {
    background: #6d1ed4;
    color: #fff;
}

.hhbc-zelle-panel__instructions,
.hhbc-zelle-panel__notice {
    margin: 0;
    padding: 11px 12px;
    border-radius: 10px;
    color: #4d4555;
    font-size: 11px;
    line-height: 1.55;
}

.hhbc-zelle-panel__instructions {
    background: #f3ecfb;
}

.hhbc-zelle-panel__notice {
    border: 1px solid #e3d3a6;
    background: #fff9e9;
    color: #6c5420;
}

.hhbc-zelle-reference-label {
    display: block;
    margin-bottom: -7px;
    color: var(--hhbc-text);
    font-size: 12px;
    font-weight: 800;
}

.hhbc-zelle-panel input[type="text"] {
    width: 100%;
    min-height: 46px;
    padding: 11px 12px;
    border: 1px solid #cfcac3;
    border-radius: 10px;
    background: #fff;
    color: var(--hhbc-text);
    font: inherit;
}

.hhbc-booking--payments-only .hhbc-booking-summary {
    align-self: start;
}

@media (max-width: 620px) {
    .hhbc-zelle-panel__row,
    .hhbc-zelle-panel__email {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .hhbc-zelle-panel__row > strong {
        text-align: left;
    }

    .hhbc-zelle-copy {
        justify-self: start;
    }
}

/* v2.0.9: improved Zelle recipient email and copy control */
.hhbc-zelle-panel__email {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    padding: 12px;
}

.hhbc-zelle-panel__email-label {
    display: block;
    color: var(--hhbc-muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .06em;
    line-height: 1.2;
    text-transform: uppercase;
}

.hhbc-zelle-email-control {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    align-items: center;
    min-width: 0;
    padding: 5px;
    border: 1px solid #e4d9ef;
    border-radius: 12px;
    background: #faf8fc;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .85);
}

.hhbc-zelle-email-control > strong {
    min-width: 0;
    padding: 5px 7px;
    color: var(--hhbc-text);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.4;
    text-align: left;
    overflow-wrap: anywhere;
    word-break: normal;
}

.hhbc-zelle-copy {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    min-height: 38px;
    padding: 8px 11px;
    border: 1px solid #6d1ed4 !important;
    border-radius: 9px;
    background: #fff !important;
    color: #6d1ed4 !important;
    box-shadow: 0 2px 8px rgba(109, 30, 212, .08);
    font: inherit;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    transition: background-color .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.hhbc-zelle-copy svg {
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    fill: currentColor;
}

.hhbc-zelle-copy:hover,
.hhbc-zelle-copy:focus-visible,
.hhbc-zelle-copy.is-copied {
    background: #6d1ed4 !important;
    color: #fff !important;
    box-shadow: 0 5px 14px rgba(109, 30, 212, .2);
    transform: translateY(-1px);
}

.hhbc-zelle-copy:focus-visible {
    outline: 3px solid rgba(109, 30, 212, .18);
    outline-offset: 2px;
}

@media (max-width: 420px) {
    .hhbc-zelle-email-control {
        grid-template-columns: minmax(0, 1fr);
    }

    .hhbc-zelle-copy {
        width: 100%;
    }
}

/* Keep the recipient address readable inside the narrow checkout summary column. */
.hhbc-zelle-panel {
    container-type: inline-size;
}

@container (max-width: 310px) {
    .hhbc-zelle-email-control {
        grid-template-columns: minmax(0, 1fr);
    }

    .hhbc-zelle-email-control > strong {
        padding: 7px 8px 4px;
        font-size: 12px;
    }

    .hhbc-zelle-copy {
        width: 100%;
    }
}


/* v2.0.10: credit/debit card processing-fee disclosure */
.hhbc-card-fee-disclaimer {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    margin: 0 0 14px;
    padding: 12px 13px;
    border: 1px solid #e2c98f;
    border-radius: 12px;
    background: #fff9e9;
    color: #493b1e;
    box-shadow: 0 5px 16px rgba(107, 79, 25, .07);
}

.hhbc-card-fee-disclaimer__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #8a733d;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    font-style: normal;
    line-height: 1;
}

.hhbc-card-fee-disclaimer strong {
    display: block;
    margin: 1px 0 3px;
    color: #2d2616;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.35;
}

.hhbc-card-fee-disclaimer p {
    margin: 0;
    color: #65542e;
    font-size: 11px;
    line-height: 1.55;
}

@media (max-width: 480px) {
    .hhbc-card-fee-disclaimer {
        grid-template-columns: 26px minmax(0, 1fr);
        padding: 11px;
    }

    .hhbc-card-fee-disclaimer__icon {
        width: 26px;
        height: 26px;
        font-size: 13px;
    }
}


/* v2.0.11: itemized card-fee totals */
.hhbc-summary-line[data-fee="card"] strong,
.hhbc-payment-result__summary .hhbc-processing-fee {
    font-variant-numeric: tabular-nums;
}
