/* Base Aura Wedding Bookings — front-end presentation */
.bawb-booking-app,
.bawb-booking-app * {
    box-sizing: border-box;
}

/*
 * Typography deliberately inherits from the active WordPress theme.
 * This keeps the booking journey visually consistent with the Base Aura site
 * and prevents theme heading rules from changing individual plugin elements.
 */
.bawb-booking-app {
    --bawb-accent: #c9a86a;
    --bawb-dark: #111214;
    --bawb-text: #171717;
    --bawb-muted: #716d67;
    --bawb-border: #e7e1d7;
    --bawb-soft-border: #eee9e1;
    --bawb-bg: #f7f4ee;
    --bawb-panel: #ffffff;
    width: 100%;
    margin: 28px auto 64px;
    color: var(--bawb-text);
    font-family: inherit;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.bawb-booking-app *,
.bawb-booking-app button,
.bawb-booking-app input,
.bawb-booking-app textarea {
    font-family: inherit !important;
}

.bawb-booking-app button,
.bawb-booking-app input,
.bawb-booking-app textarea {
    font-size: inherit;
}

.bawb-booking-app button:focus-visible,
.bawb-booking-app input:focus-visible,
.bawb-booking-app textarea:focus-visible,
.bawb-booking-app label:focus-within {
    outline: 2px solid color-mix(in srgb, var(--bawb-accent) 72%, #ffffff);
    outline-offset: 3px;
}

.bawb-shell {
    display: grid;
    grid-template-columns: minmax(330px, .82fr) minmax(580px, 1.48fr);
    width: min(1320px, 100%);
    min-height: 720px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid rgba(201, 168, 106, .22);
    border-radius: 16px;
    background: var(--bawb-panel);
    box-shadow: 0 28px 80px rgba(19, 18, 15, .13);
}


.bawb-built-by {
    width: min(1320px, 100%);
    margin: 15px auto 0;
    color: #8a847b;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .2em;
    line-height: 1.4;
    text-align: right;
    text-transform: uppercase;
}

/* Introductory brand panel */
.bawb-intro-panel {
    position: relative;
    min-width: 0;
    overflow: hidden;
    padding: clamp(48px, 5vw, 76px) clamp(38px, 4.5vw, 64px);
    color: #ffffff;
    background:
        radial-gradient(circle at 3% 8%, color-mix(in srgb, var(--bawb-accent) 16%, transparent), transparent 31%),
        radial-gradient(circle at 100% 100%, color-mix(in srgb, var(--bawb-accent) 10%, transparent), transparent 34%),
        linear-gradient(150deg, #0d0e10 0%, var(--bawb-dark) 56%, #1c1c1d 100%);
    border-right: 1px solid rgba(201, 168, 106, .14);
}

.bawb-intro-panel::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--bawb-accent), rgba(201, 168, 106, .12) 72%, transparent);
}

.bawb-intro-panel::after {
    content: "";
    position: absolute;
    z-index: 0;
    width: 410px;
    height: 410px;
    right: -285px;
    top: 105px;
    border: 1px solid rgba(255, 255, 255, .075);
    border-radius: 50%;
    box-shadow:
        0 0 0 62px rgba(255, 255, 255, .025),
        0 0 0 126px rgba(255, 255, 255, .018);
    pointer-events: none;
}

.bawb-intro-panel > * {
    position: relative;
    z-index: 1;
}

.bawb-eyebrow {
    color: var(--bawb-accent);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .28em;
    line-height: 1.3;
    text-transform: uppercase;
}

.bawb-booking-app .bawb-intro-panel h2 {
    max-width: 500px;
    margin: 20px 0 22px !important;
    color: #ffffff !important;
    font-size: clamp(38px, 4.1vw, 54px) !important;
    font-style: normal !important;
    font-weight: 500 !important;
    letter-spacing: -.035em !important;
    line-height: 1.04 !important;
    text-transform: none !important;
}

.bawb-intro-panel > p {
    max-width: 460px;
    margin: 0;
    color: rgba(255, 255, 255, .74);
    font-size: 16px;
    line-height: 1.85;
}

.bawb-intro-points {
    display: grid;
    gap: 24px;
    margin: 48px 0 42px;
}

.bawb-intro-point {
    position: relative;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 17px;
    align-items: start;
}

.bawb-intro-point:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 22px;
    top: 46px;
    width: 1px;
    height: 24px;
    background: linear-gradient(rgba(201, 168, 106, .48), rgba(201, 168, 106, .05));
}

.bawb-point-number {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid color-mix(in srgb, var(--bawb-accent) 58%, transparent);
    border-radius: 50%;
    color: var(--bawb-accent);
    background: rgba(255, 255, 255, .015);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .06em;
}

.bawb-intro-point strong,
.bawb-intro-point span {
    display: block;
}

.bawb-intro-point strong {
    margin: 2px 0 4px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.bawb-intro-point div span {
    max-width: 320px;
    color: rgba(255, 255, 255, .57);
    font-size: 12px;
    line-height: 1.65;
}

.bawb-secure-note {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 17px 18px;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .025));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .045);
}

.bawb-lock-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bawb-accent);
    color: var(--bawb-dark);
    font-size: 15px;
    font-weight: 800;
}

.bawb-secure-note strong,
.bawb-secure-note span {
    display: block;
}

.bawb-secure-note strong {
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
}

.bawb-secure-note div span {
    margin-top: 2px;
    color: rgba(255, 255, 255, .56);
    font-size: 11px;
    line-height: 1.55;
}

/* Booking journey */
.bawb-form-panel {
    min-width: 0;
    padding: clamp(42px, 5vw, 72px) clamp(34px, 5vw, 72px) clamp(48px, 5vw, 76px);
    background:
        linear-gradient(rgba(255, 255, 255, .96), rgba(255, 255, 255, .96)),
        radial-gradient(circle at 100% 0%, rgba(201, 168, 106, .12), transparent 35%);
}

.bawb-progress {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin: 0 0 42px;
    counter-reset: bawb-progress;
}

.bawb-progress span {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    padding: 0 12px 15px 0;
    border-bottom: 1px solid #e8e2d9;
    color: #aaa39a;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .15em;
    line-height: 1.2;
    text-transform: uppercase;
    counter-increment: bawb-progress;
    transition: color .25s ease, border-color .25s ease;
}

.bawb-progress span::before {
    content: "0" counter(bawb-progress);
    display: grid;
    place-items: center;
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
    border: 1px solid #ded8cf;
    border-radius: 50%;
    color: #aaa39a;
    background: #ffffff;
    font-size: 8px;
    letter-spacing: 0;
    transition: .25s ease;
}

.bawb-progress span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 2px;
    background: var(--bawb-accent);
    transition: width .36s ease;
}

.bawb-progress span.is-active,
.bawb-progress span.is-complete {
    color: var(--bawb-text);
}

.bawb-progress span.is-active::before {
    border-color: var(--bawb-accent);
    background: var(--bawb-accent);
    color: var(--bawb-dark);
}

.bawb-progress span.is-complete::before {
    border-color: var(--bawb-dark);
    background: var(--bawb-dark);
    color: #ffffff;
}

.bawb-progress span.is-active::after,
.bawb-progress span.is-complete::after {
    width: 100%;
}

.bawb-step {
    display: none;
    animation: bawbFade .3s ease both;
}

.bawb-step.is-active {
    display: block;
}

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

.bawb-step-heading > span {
    display: block;
    margin-bottom: 10px;
    color: var(--bawb-accent);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .2em;
    line-height: 1.2;
    text-transform: uppercase;
}

.bawb-booking-app .bawb-step-heading h3,
.bawb-booking-app .bawb-success h3 {
    margin: 0 0 10px !important;
    color: var(--bawb-text) !important;
    font-size: clamp(29px, 3vw, 39px) !important;
    font-style: normal !important;
    font-weight: 500 !important;
    letter-spacing: -.03em !important;
    line-height: 1.16 !important;
    text-transform: none !important;
}

.bawb-step-heading p {
    margin: 0 0 31px;
    color: var(--bawb-muted);
    font-size: 14px;
    line-height: 1.7;
}

/* Calendar */
.bawb-calendar {
    position: relative;
    min-height: 402px;
    padding: 26px;
    overflow: hidden;
    border: 1px solid var(--bawb-border);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 14px 35px rgba(29, 25, 19, .045);
}

.bawb-calendar::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 2px;
    background: linear-gradient(90deg, var(--bawb-accent), rgba(201, 168, 106, .18) 70%, transparent);
}

.bawb-calendar-toolbar {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.bawb-current-month {
    color: var(--bawb-text);
    text-align: center;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -.015em;
    line-height: 1.3;
}

.bawb-month-nav {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--bawb-border);
    border-radius: 50%;
    background: #ffffff;
    color: var(--bawb-text);
    cursor: pointer;
    font-size: 23px;
    font-weight: 400;
    line-height: 1;
    box-shadow: 0 5px 15px rgba(28, 24, 20, .035);
    transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.bawb-month-nav:hover:not(:disabled) {
    transform: translateY(-1px);
    border-color: var(--bawb-accent);
    background: color-mix(in srgb, var(--bawb-accent) 7%, #ffffff);
    box-shadow: 0 8px 20px rgba(28, 24, 20, .08);
}

.bawb-month-nav:disabled {
    opacity: .28;
    cursor: not-allowed;
    box-shadow: none;
}

.bawb-weekdays,
.bawb-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 7px;
}

.bawb-weekdays {
    margin-bottom: 8px;
}

.bawb-weekdays span {
    padding: 5px 0;
    color: #9f978e;
    text-align: center;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .09em;
    line-height: 1.2;
    text-transform: uppercase;
}

.bawb-calendar-day,
.bawb-calendar-blank {
    min-height: 50px;
    aspect-ratio: 1 / .88;
}

.bawb-calendar-day {
    position: relative;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid transparent;
    border-radius: 9px;
    background: #faf8f4;
    color: var(--bawb-text);
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    font-variant-numeric: tabular-nums;
    line-height: 1;
    transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}

.bawb-calendar-day.is-available:hover {
    z-index: 1;
    transform: translateY(-2px);
    border-color: var(--bawb-accent);
    background: #ffffff;
    box-shadow: 0 9px 22px rgba(35, 31, 25, .09);
}

.bawb-calendar-day.is-selected {
    border-color: var(--bawb-accent);
    background: var(--bawb-accent);
    color: var(--bawb-dark);
    font-weight: 700;
    box-shadow: 0 10px 25px color-mix(in srgb, var(--bawb-accent) 31%, transparent);
}

.bawb-calendar-day.is-unavailable {
    border-color: #f4f1ec;
    background: #f7f5f1;
    color: #c8c1b8;
    cursor: not-allowed;
    text-decoration: line-through;
    text-decoration-thickness: 1px;
}

.bawb-calendar-day.is-today::after {
    content: "";
    position: absolute;
    bottom: 7px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--bawb-accent);
}

.bawb-calendar-day.is-selected::after {
    background: var(--bawb-dark);
}

.bawb-calendar-loading {
    position: absolute;
    z-index: 4;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .9);
    color: var(--bawb-muted);
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(3px);
}

.bawb-calendar.is-loading .bawb-calendar-loading {
    display: flex;
}

.bawb-calendar-loading span,
.bawb-submit-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(0, 0, 0, .14);
    border-top-color: var(--bawb-accent);
    border-radius: 50%;
    animation: bawbSpin .7s linear infinite;
}

@keyframes bawbSpin {
    to { transform: rotate(360deg); }
}

.bawb-calendar-error {
    grid-column: 1 / -1;
    min-height: 230px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 12px;
    color: #913d3d;
    text-align: center;
    font-size: 13px;
}

.bawb-calendar-error button {
    padding: 9px 15px;
    border: 1px solid var(--bawb-border);
    border-radius: 3px;
    background: #ffffff;
    cursor: pointer;
}

.bawb-calendar-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 16px 2px 0;
    color: var(--bawb-muted);
    font-size: 11px;
}

.bawb-calendar-legend span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.bawb-calendar-legend i {
    width: 11px;
    height: 11px;
    border: 1px solid var(--bawb-border);
    border-radius: 2px;
    background: #faf8f4;
}

.bawb-calendar-legend i.is-selected {
    border-color: var(--bawb-accent);
    background: var(--bawb-accent);
}

.bawb-calendar-legend i.is-unavailable {
    border-color: #ebe7e0;
    background: #ebe7e0;
}

.bawb-selected-date {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 18px;
    padding: 15px 17px;
    border: 1px solid color-mix(in srgb, var(--bawb-accent) 38%, var(--bawb-border));
    border-radius: 7px;
    background: color-mix(in srgb, var(--bawb-accent) 8%, #ffffff);
}

.bawb-selected-date > span {
    display: grid;
    place-items: center;
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bawb-accent);
    color: var(--bawb-dark);
    font-size: 13px;
    font-weight: 800;
}

.bawb-selected-date small,
.bawb-selected-date strong {
    display: block;
}

.bawb-selected-date small {
    color: var(--bawb-muted);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .1em;
    line-height: 1.3;
    text-transform: uppercase;
}

.bawb-selected-date strong {
    margin-top: 2px;
    color: var(--bawb-text);
    font-size: 13px;
    font-weight: 600;
}

/* Buttons */
.bawb-step-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 32px;
}

.bawb-step-actions-right {
    justify-content: flex-end;
}

.bawb-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 54px;
    padding: 0 26px;
    border: 1px solid var(--bawb-dark);
    border-radius: 3px;
    background: var(--bawb-dark);
    color: #ffffff;
    cursor: pointer;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .12em;
    line-height: 1.2;
    text-transform: uppercase;
    box-shadow: 0 11px 25px rgba(17, 18, 20, .14);
    transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.bawb-button:hover:not(:disabled) {
    transform: translateY(-2px);
    border-color: color-mix(in srgb, var(--bawb-dark) 82%, var(--bawb-accent));
    background: color-mix(in srgb, var(--bawb-dark) 86%, var(--bawb-accent));
    box-shadow: 0 15px 30px rgba(17, 18, 20, .2);
}

.bawb-button:disabled {
    opacity: .32;
    cursor: not-allowed;
    box-shadow: none;
}

.bawb-button > span:not(.bawb-submit-label):not(.bawb-submit-spinner) {
    color: var(--bawb-accent);
    font-size: 16px;
    line-height: 1;
}

.bawb-text-button {
    padding: 10px 0;
    border: 0;
    background: transparent;
    color: var(--bawb-muted);
    cursor: pointer;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: color .2s ease;
}

.bawb-text-button:hover {
    color: var(--bawb-text);
}

/* Package cards */
.bawb-package-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.bawb-package-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 300px;
    padding: 28px 21px 22px;
    overflow: hidden;
    border: 1px solid var(--bawb-border);
    border-radius: 8px;
    background: #ffffff;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(33, 28, 22, .025);
    transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.bawb-package-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, var(--bawb-accent), color-mix(in srgb, var(--bawb-accent) 45%, #ffffff));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}

.bawb-package-card:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--bawb-accent) 64%, var(--bawb-border));
    box-shadow: 0 18px 36px rgba(33, 28, 22, .09);
}

.bawb-package-card.is-selected {
    border-color: var(--bawb-accent);
    background: color-mix(in srgb, var(--bawb-accent) 6%, #ffffff);
    box-shadow: 0 18px 38px color-mix(in srgb, var(--bawb-accent) 17%, transparent);
}

.bawb-package-card.is-selected::before {
    transform: scaleX(1);
}

.bawb-package-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.bawb-package-check {
    position: absolute;
    top: 17px;
    right: 17px;
    display: grid;
    place-items: center;
    width: 27px;
    height: 27px;
    border: 1px solid var(--bawb-border);
    border-radius: 50%;
    background: #ffffff;
    color: transparent;
    font-size: 11px;
    font-weight: 800;
    transition: .2s ease;
}

.bawb-package-card.is-selected .bawb-package-check {
    border-color: var(--bawb-accent);
    background: var(--bawb-accent);
    color: var(--bawb-dark);
}

.bawb-package-label {
    padding-right: 28px;
    color: var(--bawb-accent);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .18em;
    line-height: 1.3;
    text-transform: uppercase;
}

.bawb-package-card > strong {
    margin: 18px 0 5px;
    color: var(--bawb-text);
    font-size: 23px;
    font-weight: 500;
    letter-spacing: -.02em;
    line-height: 1.15;
}

.bawb-package-price {
    color: var(--bawb-text);
    font-size: 12px;
    font-weight: 600;
}

.bawb-package-description {
    margin: 18px 0 26px;
    color: var(--bawb-muted);
    font-size: 12px;
    line-height: 1.75;
}

.bawb-package-select-text {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: auto;
    color: var(--bawb-text);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .15em;
    line-height: 1.2;
    text-transform: uppercase;
}

.bawb-package-select-text::before {
    content: "";
    width: 18px;
    height: 1px;
    background: var(--bawb-accent);
}

.bawb-package-card.is-selected .bawb-package-select-text::after {
    content: "ed";
}

/* Details form */
.bawb-summary-bar {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    align-items: center;
    gap: 18px;
    margin: 0 0 28px;
    padding: 17px 19px;
    border: 1px solid var(--bawb-soft-border);
    border-left: 3px solid var(--bawb-accent);
    border-radius: 5px;
    background: var(--bawb-bg);
}

.bawb-summary-bar span,
.bawb-summary-bar strong {
    display: block;
}

.bawb-summary-bar span {
    color: var(--bawb-muted);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .11em;
    line-height: 1.2;
    text-transform: uppercase;
}

.bawb-summary-bar strong {
    margin-top: 4px;
    color: var(--bawb-text);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
}

.bawb-edit-selection {
    padding: 7px 0;
    border: 0;
    background: transparent;
    color: color-mix(in srgb, var(--bawb-accent) 78%, #6b5533);
    cursor: pointer;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.bawb-fields-grid {
    display: grid;
    gap: 18px;
}

.bawb-fields-grid-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bawb-field {
    margin-bottom: 18px;
}

.bawb-field label {
    display: block;
    margin-bottom: 8px;
    color: var(--bawb-text);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .035em;
    line-height: 1.4;
}

.bawb-field label em,
.bawb-consent em {
    color: var(--bawb-accent);
    font-style: normal;
}

.bawb-field input,
.bawb-field textarea {
    width: 100%;
    margin: 0;
    padding: 14px 15px;
    border: 1px solid var(--bawb-border);
    border-radius: 4px;
    outline: none;
    background: #ffffff;
    color: var(--bawb-text);
    font-size: 13px;
    line-height: 1.5;
    box-shadow: inset 0 1px 0 rgba(28, 24, 20, .015);
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.bawb-field input {
    height: 52px;
}

.bawb-field textarea {
    min-height: 102px;
    resize: vertical;
}

.bawb-field input:hover,
.bawb-field textarea:hover {
    border-color: color-mix(in srgb, var(--bawb-accent) 42%, var(--bawb-border));
}

.bawb-field input:focus,
.bawb-field textarea:focus {
    border-color: var(--bawb-accent);
    background: #ffffff;
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--bawb-accent) 11%, transparent);
}

.bawb-field input::placeholder,
.bawb-field textarea::placeholder {
    color: #aaa49c;
    opacity: 1;
}

.bawb-field.has-error input,
.bawb-field.has-error textarea {
    border-color: #b94141;
}

.bawb-field-error {
    display: none;
    margin-top: 6px;
    color: #a63535;
    font-size: 10px;
    line-height: 1.45;
}

.bawb-field-error.is-visible {
    display: block;
}

.bawb-consent {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    margin-top: 7px;
    padding: 15px 16px;
    border: 1px solid var(--bawb-border);
    border-radius: 4px;
    background: #faf8f4;
    color: var(--bawb-muted);
    cursor: pointer;
    font-size: 10px;
    line-height: 1.65;
}

.bawb-consent input {
    width: 16px;
    height: 16px;
    margin: 2px 0 0;
    accent-color: var(--bawb-accent);
}

.bawb-consent.has-error {
    border-color: #b94141;
}

.bawb-honeypot {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.bawb-form-notice {
    margin: 18px 0 0;
    padding: 14px 16px;
    border: 1px solid #e7bcbc;
    border-radius: 4px;
    background: #fff6f6;
    color: #913838;
    font-size: 11px;
    line-height: 1.55;
}

.bawb-submit-spinner {
    display: none;
    border-color: rgba(255, 255, 255, .24);
    border-top-color: var(--bawb-accent);
}

.bawb-submit-button.is-loading .bawb-submit-label {
    opacity: .58;
}

.bawb-submit-button.is-loading .bawb-submit-spinner {
    display: block;
}

/* Success panel */
.bawb-success {
    padding: 44px 0 16px;
    text-align: center;
    animation: bawbFade .35s ease both;
}

.bawb-success-icon {
    display: grid;
    place-items: center;
    width: 76px;
    height: 76px;
    margin: 0 auto 24px;
    border: 1px solid color-mix(in srgb, var(--bawb-accent) 72%, #ffffff);
    border-radius: 50%;
    background: var(--bawb-accent);
    color: var(--bawb-dark);
    font-size: 27px;
    font-weight: 800;
    box-shadow: 0 16px 38px color-mix(in srgb, var(--bawb-accent) 28%, transparent);
}

.bawb-success h3 {
    margin-top: 11px !important;
}

.bawb-success > p {
    max-width: 530px;
    margin: 0 auto 30px;
    color: var(--bawb-muted);
    font-size: 13px;
    line-height: 1.8;
}

.bawb-success-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
    text-align: left;
}

.bawb-success-details div {
    padding: 16px;
    border: 1px solid var(--bawb-border);
    border-radius: 5px;
    background: var(--bawb-bg);
}

.bawb-success-details span,
.bawb-success-details strong {
    display: block;
}

.bawb-success-details span {
    color: var(--bawb-muted);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .1em;
    line-height: 1.25;
    text-transform: uppercase;
}

.bawb-success-details strong {
    margin-top: 5px;
    color: var(--bawb-text);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.45;
}

/* Tablet */
@media (max-width: 1080px) {
    .bawb-shell {
        grid-template-columns: 1fr;
        width: min(820px, 100%);
        min-height: 0;
    }

    .bawb-intro-panel {
        padding: 44px;
        border-right: 0;
        border-bottom: 1px solid rgba(201, 168, 106, .14);
    }

    .bawb-booking-app .bawb-intro-panel h2 {
        max-width: 640px;
    }

    .bawb-intro-panel > p {
        max-width: 660px;
    }

    .bawb-intro-points {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
        margin: 36px 0 32px;
    }

    .bawb-intro-point {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 11px;
    }

    .bawb-intro-point:not(:last-child)::after {
        display: none;
    }

    .bawb-point-number {
        width: 38px;
        height: 38px;
    }

    .bawb-secure-note {
        max-width: 510px;
    }
}

/* Mobile */
@media (max-width: 700px) {
    .bawb-booking-app {
        margin: 14px auto 38px;
    }

    .bawb-shell {
        border-radius: 10px;
        box-shadow: 0 18px 48px rgba(19, 18, 15, .12);
    }

    .bawb-intro-panel {
        padding: 34px 24px 32px;
    }

    .bawb-booking-app .bawb-intro-panel h2 {
        margin: 15px 0 17px !important;
        font-size: 36px !important;
        line-height: 1.08 !important;
    }

    .bawb-intro-panel > p {
        font-size: 14px;
        line-height: 1.75;
    }

    .bawb-intro-points {
        grid-template-columns: 1fr;
        gap: 15px;
        margin: 28px 0;
    }

    .bawb-intro-point {
        grid-template-columns: 38px minmax(0, 1fr);
    }

    .bawb-intro-point strong {
        font-size: 13px;
    }

    .bawb-form-panel {
        padding: 30px 18px 36px;
    }

    .bawb-progress {
        margin-bottom: 30px;
    }

    .bawb-progress span {
        display: grid;
        justify-items: center;
        gap: 6px;
        padding: 0 4px 12px;
        text-align: center;
        font-size: 8px;
        letter-spacing: .11em;
    }

    .bawb-progress span::before {
        width: 24px;
        height: 24px;
        flex-basis: 24px;
        font-size: 7px;
    }

    .bawb-booking-app .bawb-step-heading h3,
    .bawb-booking-app .bawb-success h3 {
        font-size: 28px !important;
        line-height: 1.2 !important;
    }

    .bawb-step-heading p {
        margin-bottom: 25px;
        font-size: 13px;
    }

    .bawb-calendar {
        min-height: 356px;
        padding: 18px 10px 16px;
        border-radius: 9px;
    }

    .bawb-calendar-toolbar {
        grid-template-columns: 40px minmax(0, 1fr) 40px;
        margin-bottom: 16px;
    }

    .bawb-month-nav {
        width: 40px;
        height: 40px;
    }

    .bawb-current-month {
        font-size: 15px;
    }

    .bawb-weekdays,
    .bawb-calendar-grid {
        gap: 3px;
    }

    .bawb-weekdays span {
        font-size: 8px;
    }

    .bawb-calendar-day,
    .bawb-calendar-blank {
        min-height: 39px;
        aspect-ratio: 1 / 1;
    }

    .bawb-calendar-day {
        border-radius: 6px;
        font-size: 12px;
    }

    .bawb-calendar-legend {
        gap: 13px;
        font-size: 10px;
    }

    .bawb-package-grid {
        grid-template-columns: 1fr;
    }

    .bawb-package-card {
        min-height: 0;
        padding: 25px 20px 21px;
    }

    .bawb-package-description {
        margin-bottom: 20px;
    }

    .bawb-fields-grid-two {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .bawb-summary-bar {
        grid-template-columns: 1fr auto;
    }

    .bawb-summary-bar > div:nth-child(2) {
        grid-column: 1;
    }

    .bawb-summary-bar .bawb-edit-selection {
        grid-column: 2;
        grid-row: 1 / 3;
    }

    .bawb-step-actions {
        align-items: stretch;
        margin-top: 28px;
    }

    .bawb-button {
        min-height: 52px;
        padding: 0 18px;
        font-size: 10px;
    }

    .bawb-success-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 390px) {
    .bawb-form-panel {
        padding-right: 13px;
        padding-left: 13px;
    }

    .bawb-calendar {
        padding-right: 7px;
        padding-left: 7px;
    }

    .bawb-calendar-day,
    .bawb-calendar-blank {
        min-height: 36px;
    }

    .bawb-step-actions {
        gap: 12px;
    }

    .bawb-button {
        padding: 0 14px;
    }
}

@media (max-width: 767px) {
    .bawb-built-by {
        margin-top: 12px;
        padding: 0 4px;
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .bawb-booking-app *,
    .bawb-booking-app *::before,
    .bawb-booking-app *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}


/* Version 1.2.0 — refined Base Aura brand panel and trust styling */
.bawb-shell {
    border-radius: 6px;
    border-color: rgba(201, 168, 106, .18);
    box-shadow: 0 30px 90px rgba(15, 15, 14, .12);
}

.bawb-intro-panel {
    display: flex;
    flex-direction: column;
    padding: clamp(52px, 5vw, 78px) clamp(40px, 4.7vw, 68px);
    background:
        linear-gradient(180deg, rgba(255,255,255,.018), transparent 34%),
        radial-gradient(circle at 106% 12%, rgba(201,168,106,.095), transparent 32%),
        linear-gradient(148deg, #111214 0%, #0b0c0e 58%, #151617 100%);
}

.bawb-intro-panel::before {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--bawb-accent) 20%, rgba(201,168,106,.2) 76%, transparent 100%);
}

.bawb-intro-panel::after {
    width: 440px;
    height: 440px;
    right: -330px;
    top: -90px;
    border-color: rgba(255,255,255,.045);
    box-shadow:
        0 0 0 74px rgba(255,255,255,.018),
        0 0 0 148px rgba(255,255,255,.012);
}

.bawb-eyebrow {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .32em;
}

.bawb-booking-app .bawb-intro-panel h2 {
    margin: 18px 0 20px !important;
    font-size: clamp(40px, 4.15vw, 56px) !important;
    font-weight: 500 !important;
    letter-spacing: -.042em !important;
    line-height: 1.04 !important;
}

.bawb-intro-panel > p {
    color: rgba(255,255,255,.7);
    font-size: 15px;
    line-height: 1.8;
}

.bawb-intro-points {
    position: relative;
    display: grid;
    gap: 0;
    margin: 48px 0 38px;
}

.bawb-intro-point {
    position: relative;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 18px;
    min-height: 82px;
    padding: 0 0 26px;
    align-items: start;
}

.bawb-intro-point:last-child {
    min-height: 56px;
    padding-bottom: 0;
}

.bawb-intro-point:not(:last-child)::after {
    left: 18px;
    top: 41px;
    width: 1px;
    height: calc(100% - 34px);
    background: linear-gradient(180deg, rgba(201,168,106,.68), rgba(201,168,106,.12));
}

.bawb-point-number {
    position: relative;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(201,168,106,.62);
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(201,168,106,.16), rgba(201,168,106,.025));
    box-shadow: inset 0 0 0 5px rgba(10,10,11,.45), 0 0 0 1px rgba(0,0,0,.28);
    color: var(--bawb-accent);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
}

.bawb-point-number::after {
    content: "";
    position: absolute;
    right: -4px;
    bottom: -4px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--bawb-accent);
    box-shadow: 0 0 0 4px #0d0e10, 0 0 12px rgba(201,168,106,.5);
}

.bawb-intro-point > div {
    min-width: 0;
    padding-top: 1px;
}

.bawb-intro-point strong {
    margin: 0 0 6px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -.015em;
    line-height: 1.35;
}

.bawb-intro-point div span {
    max-width: 330px;
    color: rgba(255,255,255,.6);
    font-size: 12.5px;
    line-height: 1.65;
}

.bawb-secure-note {
    position: relative;
    grid-template-columns: 44px minmax(0,1fr);
    gap: 16px;
    margin-top: auto;
    padding: 18px 19px;
    overflow: hidden;
    border: 1px solid rgba(201,168,106,.25);
    border-radius: 5px;
    background:
        linear-gradient(110deg, rgba(201,168,106,.105), rgba(255,255,255,.025) 58%, rgba(255,255,255,.012));
    box-shadow: inset 3px 0 0 rgba(201,168,106,.85), inset 0 1px 0 rgba(255,255,255,.04), 0 14px 34px rgba(0,0,0,.14);
}

.bawb-secure-note::after {
    content: "";
    position: absolute;
    right: -36px;
    top: -42px;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(201,168,106,.08);
    border-radius: 50%;
    pointer-events: none;
}

.bawb-lock-icon {
    position: relative;
    display: block;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(201,168,106,.75);
    border-radius: 50%;
    background: var(--bawb-accent);
    box-shadow: 0 7px 18px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.28);
    font-size: 0;
}

.bawb-lock-icon::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 19px;
    width: 16px;
    height: 13px;
    border-radius: 2px;
    background: #171716;
}

.bawb-lock-icon::after {
    content: "";
    position: absolute;
    left: 16px;
    top: 10px;
    width: 12px;
    height: 13px;
    border: 2px solid #171716;
    border-bottom: 0;
    border-radius: 8px 8px 0 0;
}

.bawb-secure-note strong {
    margin-bottom: 3px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: -.01em;
    line-height: 1.35;
}

.bawb-secure-note div span {
    color: rgba(255,255,255,.58);
    font-size: 11.5px;
    line-height: 1.55;
}

.bawb-built-by {
    margin-top: 14px;
    color: #8f887d;
    font-size: 9px;
    letter-spacing: .24em;
}

/* Refine the complementary form panel so both halves feel like one system. */
.bawb-form-panel {
    background:
        linear-gradient(rgba(255,255,255,.985), rgba(255,255,255,.985)),
        radial-gradient(circle at 100% 0%, rgba(201,168,106,.1), transparent 36%);
}

.bawb-calendar {
    border-radius: 7px;
    box-shadow: 0 18px 44px rgba(29,25,19,.055);
}

.bawb-package-card,
.bawb-field input,
.bawb-field textarea,
.bawb-summary-bar,
.bawb-selected-date,
.bawb-success-details div {
    border-radius: 5px;
}

@media (max-width: 1080px) {
    .bawb-intro-panel {
        display: block;
    }

    .bawb-intro-points {
        gap: 20px;
    }

    .bawb-intro-point {
        min-height: 0;
        padding-bottom: 0;
    }

    .bawb-intro-point:last-child {
        min-height: 0;
    }

    .bawb-intro-point:not(:last-child)::after,
    .bawb-point-number::after {
        display: none;
    }

    .bawb-secure-note {
        margin-top: 0;
    }
}

@media (max-width: 700px) {
    .bawb-shell {
        border-radius: 4px;
    }

    .bawb-intro-panel {
        padding: 36px 25px 32px;
    }

    .bawb-booking-app .bawb-intro-panel h2 {
        font-size: 37px !important;
    }

    .bawb-intro-points {
        gap: 0;
        margin: 30px 0 28px;
    }

    .bawb-intro-point {
        grid-template-columns: 36px minmax(0,1fr);
        gap: 15px;
        min-height: 78px;
        padding-bottom: 23px;
    }

    .bawb-intro-point:last-child {
        min-height: 52px;
        padding-bottom: 0;
    }

    .bawb-point-number {
        width: 36px;
        height: 36px;
    }

    .bawb-intro-point:not(:last-child)::after {
        display: block;
        left: 17px;
        top: 39px;
        height: calc(100% - 31px);
    }

    .bawb-intro-point strong {
        font-size: 14px;
    }

    .bawb-intro-point div span {
        font-size: 12px;
    }

    .bawb-secure-note {
        grid-template-columns: 40px minmax(0,1fr);
        gap: 14px;
        padding: 16px;
    }

    .bawb-lock-icon {
        width: 40px;
        height: 40px;
    }

    .bawb-lock-icon::before {
        left: 12px;
        top: 17px;
    }

    .bawb-lock-icon::after {
        left: 14px;
        top: 8px;
    }
}


/* Version 1.2.1 refinements */
.bawb-intro-point {
    align-items: center;
}

.bawb-intro-point > .bawb-point-number {
    display: grid;
    place-items: center;
    align-self: center;
    justify-self: center;
    text-align: center;
    line-height: 1;
    padding: 0;
}

.bawb-calendar-grid {
    gap: 10px;
}

.bawb-calendar-day,
.bawb-calendar-blank {
    min-height: 54px;
}

.bawb-calendar-day {
    border-color: #e7e1d7;
    background: linear-gradient(180deg, #fffdf9 0%, #f8f4ec 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.92);
}

.bawb-calendar-day.is-available:hover {
    border-color: var(--bawb-accent);
    background: #ffffff;
    box-shadow: 0 10px 22px rgba(35,31,25,.09), inset 0 1px 0 rgba(255,255,255,.96);
}

.bawb-calendar-day.is-selected {
    border-color: color-mix(in srgb, var(--bawb-accent) 88%, #8d6d34);
    box-shadow: 0 12px 24px color-mix(in srgb, var(--bawb-accent) 28%, transparent), inset 0 1px 0 rgba(255,255,255,.25);
}

.bawb-calendar-day.is-unavailable {
    border-color: #ece6de;
    background: #f6f2ec;
}

@media (max-width: 700px) {
    .bawb-calendar-grid {
        gap: 8px;
    }

    .bawb-calendar-day,
    .bawb-calendar-blank {
        min-height: 48px;
    }
}
