/* Reserve my Journey — checkout content frame */

:root {
    --checkout-content-max: 1280px;
    --checkout-summary-max: 478px;
    --checkout-shell-pad-x: 32px;
    --checkout-shell-pad-y: 48px;
    --checkout-ink: #1c1b1b;
    --checkout-accent: #1e1e1e;
    --checkout-label: #94a3b8;
    --checkout-border: #e2e8f0;
    --checkout-field-font: 'Inter', system-ui, -apple-system, sans-serif;
    --checkout-heading-font: 'Plus Jakarta Sans', var(--ashrams-sans), system-ui, sans-serif;
    --checkout-field-border: #e2e8f0;
    --checkout-section-gap: 40px;
    --checkout-inner-gap: 24px;
    --checkout-radius: 10px;
}

body.ashrams-checkout-page {
    background: #f9f9f9;
}

/* Checkout has no site header — start content at the top */
body.ashrams-checkout-page.ashrams-no-header .ashrams-header {
    display: none !important;
}

body.ashrams-checkout-page .ashrams-header {
    position: relative;
    width: 100%;
    background: #f9f9f9;
    padding-bottom: 0;
    border-bottom: none;
}

body.ashrams-checkout-page .ashrams-checkout-main {
    background: #f9f9f9;
}

body.ashrams-checkout-page .ashrams-header__nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, var(--checkout-summary-max));
    gap: 48px;
    align-items: center;
    width: 100%;
    min-height: 104px;
    margin-inline: auto;
    padding-inline: var(--checkout-shell-pad-x);
    box-sizing: border-box;
}

body.ashrams-checkout-page .ashrams-header__wordmark--checkout,
body.ashrams-checkout-page .ashrams-header__logo {
    grid-column: 1;
    justify-self: start;
    min-width: 0;
}

body.ashrams-checkout-page .ashrams-header__actions {
    grid-column: 2;
    justify-self: end;
    gap: 16px;
}

body.ashrams-checkout-page .ashrams-header__logo {
    width: 168px;
    height: 102px;
    flex-shrink: 0;
}

body.ashrams-checkout-page .ashrams-header__wordmark--checkout {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    font-family: var(--ashrams-inter), 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 600;
    line-height: 15px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    color: #55433d;
}

body.ashrams-checkout-page .ashrams-header__wordmark--checkout .ashrams-header__wordmark-text--mobile {
    display: none;
}

body.ashrams-checkout-page .ashrams-header__wordmark-logo {
    display: none;
    width: 168px;
    height: 102px;
    object-fit: contain;
    object-position: left center;
}

body.ashrams-checkout-page .ashrams-header__logo img {
    display: block;
    width: 168px;
    height: 102px;
    max-width: none;
    object-fit: contain;
    object-position: left center;
}

body.ashrams-checkout-page .ashrams-header__currency {
    display: none !important;
}

body.ashrams-checkout-page .ashrams-header__currency-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 8px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    background: #fff;
    color: #334155;
    font-family: var(--checkout-field-font), 'Inter', system-ui, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    box-shadow: none;
}

body.ashrams-checkout-page .ashrams-header__currency-btn:hover {
    border-color: #cbd5e1;
    background: #fff;
}

body.ashrams-checkout-page .ashrams-header__currency-icon {
    color: #64748b;
}

body.ashrams-checkout-page .ashrams-header__currency-chevron {
    margin-left: 0;
    color: #64748b;
}

body.ashrams-checkout-page .ashrams-header__currency-label {
    font-family: inherit;
    font-size: 14px;
    font-weight: 400;
    color: #334155;
}

body.ashrams-checkout-page .ashrams-header__currency-dropdown {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
}

body.ashrams-checkout-page .ashrams-header__toggle {
    width: 22px;
    min-width: 22px;
    height: 39px;
    margin-left: 0;
    gap: 6px;
    align-items: flex-end;
    background: transparent;
    border-radius: 0;
    padding: 0;
}

body.ashrams-checkout-page .ashrams-header__toggle-line {
    height: 2px;
    background: #55433d;
    border-radius: 999px;
}

body.ashrams-checkout-page .ashrams-header__toggle-line--top,
body.ashrams-checkout-page .ashrams-header__toggle-line--mid {
    width: 22px;
}

body.ashrams-checkout-page .ashrams-header__toggle-line--bottom {
    width: 11px;
}

body.ashrams-checkout-page .ashrams-footer {
    display: none;
}

.ashrams-checkout-main {
    padding: 0 0 clamp(3rem, 8vw, 5rem);
}

body.ashrams-checkout-page .ashrams-checkout-main {
    padding-top: 24px;
}

body.ashrams-checkout-page .ashrams-checkout__shell.container.cnt-max__1320 {
    width: 100%;
    max-width: var(--checkout-content-max) !important;
    margin-inline: auto;
    padding: var(--checkout-shell-pad-y) var(--checkout-shell-pad-x);
    box-sizing: border-box;
}

body.ashrams-checkout-page .ashrams-checkout__grid {
    max-width: 100%;
}

.ashrams-checkout__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, var(--checkout-summary-max));
    grid-template-rows: auto auto;
    gap: 48px;
    align-items: start;
}

/* Figma: title left only; summary top aligns with Dates / Number of people row */
.ashrams-checkout__title {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
}

.ashrams-checkout__form-col {
    grid-column: 1;
    grid-row: 2;
    min-width: 0;
}

body.ashrams-checkout-page .ashrams-checkout__form-col {
    display: flex;
    flex-direction: column;
    gap: var(--checkout-section-gap);
}

.ashrams-checkout__form-main,
.ashrams-checkout__form-tail {
    display: flex;
    flex-direction: column;
    gap: var(--checkout-section-gap);
    min-width: 0;
}

.ashrams-checkout__summary {
    grid-column: 2;
    grid-row: 2;
    align-self: stretch;
    width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

body.ashrams-checkout-page h1.ashrams-checkout__title {
    font-family: var(--ashrams-manrope, 'Manrope', var(--ashrams-sans), sans-serif);
    font-size: 30px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0;
    color: var(--checkout-ink);
    margin: 0;
}

body.ashrams-checkout-page .ashrams-checkout__section {
    margin-bottom: 0;
}

.ashrams-checkout__section-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.85rem;
}

.ashrams-checkout__section-title {
    font-family: var(--ashrams-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ashrams-text);
    margin: 0;
}

.ashrams-checkout__section-price {
    font-family: var(--ashrams-sans);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--ashrams-text);
}

.ashrams-checkout__fields-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 0;
}

/* Figma input fields */
.ashrams-checkout__field {
    margin-bottom: 0;
}

.ashrams-checkout__fields-row {
    gap: 1rem;
}

.ashrams-checkout__fields-row > .ashrams-checkout__field {
    margin-bottom: 0;
}

#guest-fields-container {
    display: flex;
    flex-direction: column;
    gap: var(--checkout-inner-gap);
    margin-top: var(--checkout-inner-gap);
}

.ashrams-checkout__section:first-of-type {
    display: flex;
    flex-direction: column;
    gap: var(--checkout-inner-gap);
}

/* Figma — Guest name (78px, label + input + pen) */
.ashrams-checkout__figma-field--guest-name {
    min-height: 78px;
    align-items: center;
}

.ashrams-checkout__figma-field--guest-name .ashrams-checkout__figma-field__action {
    color: #000000;
    cursor: pointer;
}

body.ashrams-checkout-page .ashrams-checkout__figma-field--guest-name .ashrams-checkout__figma-field__action:hover {
    color: #1a1c1c;
}

.ashrams-checkout__figma-field {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 78px;
    padding: 16px;
    border: 1px solid var(--checkout-field-border, #e2e8f0);
    border-radius: var(--checkout-radius);
    background: #ffffff;
    box-sizing: border-box;
}

/* Figma — Dates, guests, guest name, arrival & departure stay */
body.ashrams-checkout-page .ashrams-checkout__figma-field--dates,
body.ashrams-checkout-page .ashrams-checkout__figma-field--guests,
body.ashrams-checkout-page .ashrams-checkout__figma-field--company,
body.ashrams-checkout-page .ashrams-checkout__figma-field--total,
body.ashrams-checkout-page .ashrams-checkout__figma-field--plan,
body.ashrams-checkout-page .ashrams-checkout__figma-field--guest-name,
body.ashrams-checkout-page .ashrams-checkout__figma-field--stay,
body.ashrams-checkout-page .ashrams-checkout__figma-field--retreat-stay {
    border: 1px solid var(--checkout-field-border, #e2e8f0);
}

body.ashrams-checkout-page .ashrams-checkout__figma-field--dates .ashrams-checkout__figma-field__value,
body.ashrams-checkout-page .ashrams-checkout__figma-field--dates .ashrams-checkout__date-display,
body.ashrams-checkout-page .ashrams-checkout__figma-field--guests .ashrams-checkout__figma-field__guest-value,
body.ashrams-checkout-page .ashrams-checkout__figma-field--company .ashrams-checkout__figma-field__guest-value,
body.ashrams-checkout-page .ashrams-checkout__figma-field--total .ashrams-checkout__figma-field__guest-value,
body.ashrams-checkout-page .ashrams-checkout__figma-field--guest-name .ashrams-checkout__figma-field__input,
body.ashrams-checkout-page .ashrams-checkout__figma-field--stay .ashrams-checkout__figma-field__stay-tier,
body.ashrams-checkout-page .ashrams-checkout__figma-field--stay .ashrams-checkout__figma-field__stay-status,
body.ashrams-checkout-page .ashrams-checkout__figma-field--retreat-stay .ashrams-checkout__figma-field__stay-tier,
body.ashrams-checkout-page .ashrams-checkout__figma-field--retreat-stay .ashrams-checkout__figma-field__stay-status {
    font-family: var(--checkout-field-font);
}

body.ashrams-checkout-page .ashrams-checkout__figma-field--guest-name .ashrams-checkout__figma-field__input::placeholder {
    font-family: var(--checkout-field-font);
    color: #94a3b8;
}

/* Figma — Arrival & departure stay, Retreat stay (82px) */
.ashrams-checkout__figma-field--stay,
.ashrams-checkout__figma-field--retreat-stay {
    min-height: 82px;
    align-items: center;
}

.ashrams-checkout__section--retreat-stay .ashrams-checkout__room-list {
    margin-top: 16px;
}

.ashrams-checkout__figma-field__stay-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
}

.ashrams-checkout__figma-field__stay-tier {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
    color: #1e293b;
}

.ashrams-checkout__figma-field__stay-status {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    color: #1e293b;
}

.ashrams-checkout__figma-field__stay-meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

body.ashrams-checkout-page .ashrams-checkout__figma-field--stay .ashrams-checkout__tier-summary-edit,
body.ashrams-checkout-page .ashrams-checkout__figma-field--retreat-stay .ashrams-checkout__room-summary-edit {
    color: var(--ashrams-terracotta, #984629);
    cursor: pointer;
}

body.ashrams-checkout-page .ashrams-checkout__figma-field--stay .ashrams-checkout__tier-summary-edit:hover,
body.ashrams-checkout-page .ashrams-checkout__figma-field--retreat-stay .ashrams-checkout__room-summary-edit:hover {
    color: #b86b52;
}

.ashrams-checkout__date-field {
    position: relative;
}

.ashrams-checkout__figma-field--dates {
    min-height: 78px;
    cursor: pointer;
}

.ashrams-checkout__figma-field--guests,
.ashrams-checkout__figma-field--company,
.ashrams-checkout__figma-field--total {
    min-height: 84px;
}

.ashrams-checkout__figma-field--full {
    width: 100%;
}

.ashrams-checkout__figma-field__body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-self: stretch;
    flex: 1;
    min-width: 0;
    gap: 4px;
}

.ashrams-checkout__figma-field__label {
    font-family: var(--checkout-field-font);
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #94a3b8;
    margin: 0;
}

.ashrams-checkout__figma-field__value,
.ashrams-checkout__date-display {
    font-family: var(--checkout-field-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #475569;
}

.ashrams-checkout__date-display.is-placeholder {
    color: #94a3b8;
    font-weight: 400;
}


.ashrams-checkout__figma-field__suffix {
    margin-left: 0.2rem;
}

/* Figma — Number of people (84px, same shell as dates) */
.ashrams-checkout__figma-field--guests {
    align-items: center;
}

.ashrams-checkout__figma-field__guest-value {
    font-family: var(--checkout-field-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #1e293b;
}

.ashrams-checkout__field--plan {
    width: 100%;
}

.ashrams-checkout__figma-field--plan {
    position: relative;
    min-height: 78px;
    cursor: pointer;
}

.ashrams-checkout__figma-field__select {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    appearance: none;
    -webkit-appearance: none;
    font-family: var(--checkout-field-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #1e293b;
    outline: none;
    cursor: pointer;
}

.ashrams-checkout__figma-field__select:focus {
    box-shadow: none;
    outline: none;
}

.ashrams-checkout__figma-field--plan .ashrams-checkout__figma-field__action {
    pointer-events: none;
    color: #94a3b8;
    font-size: 12px;
}

.ashrams-checkout__guest-stepper {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

body.ashrams-checkout-page .ashrams-checkout__guest-stepper-btn i {
    pointer-events: none;
}

body.ashrams-checkout-page .ashrams-checkout__guest-stepper-btn {
    box-sizing: border-box;
    width: 30px;
    height: 30px;
    margin: 0;
    padding: 4px;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 1;
    appearance: none;
    -webkit-appearance: none;
    box-shadow: none;
    position: relative;
    z-index: 2;
    pointer-events: auto;
    transition: border-color 0.15s ease, color 0.15s ease, background-color 0.15s ease;
}

body.ashrams-checkout-page .ashrams-checkout__guest-stepper-btn:disabled {
    cursor: default;
    opacity: 0.45;
}

.ashrams-checkout__guest-stepper-btn--minus {
    border: 1px solid #cbd5e1;
    color: #94a3b8;
}

body.ashrams-checkout-page .ashrams-checkout__guest-stepper-btn--minus:hover:not(:disabled),
body.ashrams-checkout-page .ashrams-checkout__guest-stepper-btn--minus:focus-visible:not(:disabled),
body.ashrams-checkout-page .ashrams-checkout__guest-stepper-btn--minus:active:not(:disabled) {
    border-color: var(--checkout-accent);
    color: var(--checkout-accent);
    background: #ffffff;
}

.ashrams-checkout__guest-stepper-btn--plus {
    border: 1px solid var(--checkout-accent);
    color: var(--checkout-accent);
}

body.ashrams-checkout-page .ashrams-checkout__guest-stepper-btn--plus:hover,
body.ashrams-checkout-page .ashrams-checkout__guest-stepper-btn--plus:focus-visible,
body.ashrams-checkout-page .ashrams-checkout__guest-stepper-btn--plus:active {
    border-color: #000;
    color: #000;
    background: #ffffff;
}

.ashrams-checkout__figma-field__input {
    display: block;
    width: 100%;
    border: none;
    background: transparent;
    padding: 0;
    margin: 0;
    font-family: var(--checkout-field-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #1e293b;
    outline: none;
    box-shadow: none;
}

.ashrams-checkout__figma-field__input::placeholder {
    color: #94a3b8;
}

.ashrams-checkout__figma-field__input[readonly] {
    cursor: default;
}

.ashrams-checkout__figma-field__action,
.ashrams-checkout__tier-summary-edit {
    flex-shrink: 0;
    margin: 0;
    padding: 4px;
    border: none;
    background: transparent;
    color: #94a3b8;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
}

.ashrams-checkout__pen-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.ashrams-checkout__pen-icon svg {
    display: block;
    width: 18px;
    height: 18px;
}

.ashrams-checkout__figma-field__action:hover,
.ashrams-checkout__tier-summary-edit:hover {
    color: #64748b;
}

.ashrams-checkout__date-picker-input,
body.ashrams-checkout-page #dateSelect {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    opacity: 0;
    cursor: pointer;
    pointer-events: auto;
    z-index: 2;
    background: transparent;
}

/* Date picker — bookable dates vs blocked retreat dates */
body.ashrams-checkout-page .daterangepicker td.bookable,
body.ashrams-checkout-page .daterangepicker td.available.bookable {
    color: #1e293b !important;
    font-weight: 600;
    text-decoration: none !important;
    cursor: pointer;
    background: transparent;
}

body.ashrams-checkout-page .daterangepicker td.bookable:hover,
body.ashrams-checkout-page .daterangepicker td.available.bookable:hover {
    background-color: #f1f5f9 !important;
    border-radius: 8px;
}

body.ashrams-checkout-page .daterangepicker td.available:not(.off):not(.disabled):not(.bookable) {
    color: #1e293b;
    font-weight: 500;
    text-decoration: none !important;
    cursor: pointer;
}

body.ashrams-checkout-page .daterangepicker td.available:not(.off):not(.disabled):not(.bookable):hover {
    background-color: #f1f5f9;
    border-radius: 8px;
}

body.ashrams-checkout-page .daterangepicker td.off,
body.ashrams-checkout-page .daterangepicker td.disabled,
body.ashrams-checkout-page .daterangepicker td.off.disabled,
body.ashrams-checkout-page .daterangepicker td.today.off.disabled {
    color: #cbd5e1 !important;
    font-weight: 400 !important;
    text-decoration: none !important;
    cursor: default;
    background: transparent !important;
}

body.ashrams-checkout-page .daterangepicker td.active.bookable,
body.ashrams-checkout-page .daterangepicker td.active.bookable:hover,
body.ashrams-checkout-page .daterangepicker td.active,
body.ashrams-checkout-page .daterangepicker td.active:hover,
body.ashrams-checkout-page .daterangepicker td.start-date,
body.ashrams-checkout-page .daterangepicker td.end-date {
    background-color: #111111 !important;
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 8px !important;
}

body.ashrams-checkout-page .daterangepicker td.in-range {
    background-color: #f3f4f6 !important;
    color: #111111 !important;
    border-radius: 0 !important;
}

/* Figma dual calendar + Upcoming Schedule sidebar.
   NOTE: we intentionally DO NOT override display/float on .drp-calendar so the
   daterangepicker library keeps its native, proven sidebar + two-calendar layout.
   Everything below is cosmetic only. */
body.ashrams-checkout-page .daterangepicker.ashrams-checkout-daterangepicker {
    width: auto !important;
    max-width: calc(100vw - 24px);
    padding: 0 !important;
    margin-top: 8px;
    border: 1px solid #e5e7eb !important;
    border-radius: 16px !important;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.14) !important;
    overflow: hidden;
    font-family: 'Plus Jakarta Sans', var(--ashrams-sans), system-ui, sans-serif;
    z-index: 10050 !important;
}

body.ashrams-checkout-page .daterangepicker.ashrams-checkout-daterangepicker:before,
body.ashrams-checkout-page .daterangepicker.ashrams-checkout-daterangepicker:after {
    display: none;
}

/* Native ranges panel repurposed as the "Upcoming Schedule" sidebar */
body.ashrams-checkout-page .ashrams-checkout-daterangepicker .ashrams-drp-schedule-sidebar {
    width: 210px;
    margin: 0;
    padding: 16px 14px;
    background: #f7f7f8;
    border-right: 1px solid #ececef;
    text-align: left;
    max-height: 460px;
    overflow: auto;
}

body.ashrams-checkout-page .ashrams-drp-schedule-sidebar ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

body.ashrams-checkout-page .ashrams-drp-period-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 14px;
    padding: 2px 4px 12px;
    border-bottom: 1px solid #e7e7ea;
    font-size: 14px;
    font-weight: 600;
    color: #111111;
}

body.ashrams-checkout-page .ashrams-drp-period-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: #111111;
    cursor: pointer;
}

body.ashrams-checkout-page .ashrams-drp-period-back:hover {
    background: #ececef;
}

body.ashrams-checkout-page .ashrams-drp-schedule-title {
    margin: 0 0 12px;
    padding: 0 4px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #6b7280;
}

body.ashrams-checkout-page .ashrams-drp-schedule-item {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 !important;
    padding: 12px 14px !important;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #ffffff;
    color: #111111;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
    box-sizing: border-box;
}

body.ashrams-checkout-page .ashrams-drp-schedule-item:hover {
    border-color: #c7c7cc;
    background: #ffffff;
}

body.ashrams-checkout-page .ashrams-drp-schedule-item.active {
    border-color: #111111;
    background: #111111;
    color: #ffffff;
    font-weight: 600;
}

body.ashrams-checkout-page .ashrams-checkout-daterangepicker .drp-calendar.left,
body.ashrams-checkout-page .ashrams-checkout-daterangepicker .drp-calendar.right {
    padding: 16px 18px 8px !important;
    max-width: none;
}

/* Single month calendar on checkout */
body.ashrams-checkout-page .ashrams-checkout-daterangepicker--single-calendar .drp-calendar.right {
    display: none !important;
}

body.ashrams-checkout-page .ashrams-checkout-daterangepicker--single-calendar .drp-calendar.left {
    float: none !important;
    margin: 0 auto;
}

/* Hide schedule sidebar unless Multiple-time has 2+ schedules */
body.ashrams-checkout-page .ashrams-checkout-daterangepicker--no-sidebar .ranges {
    display: none !important;
}

body.ashrams-checkout-page .ashrams-checkout-daterangepicker--multi-schedule .ranges {
    display: block !important;
}

body.ashrams-checkout-page .ashrams-checkout-daterangepicker .calendar-table {
    background: transparent;
    border: none;
}

body.ashrams-checkout-page .ashrams-checkout-daterangepicker .calendar-table th,
body.ashrams-checkout-page .ashrams-checkout-daterangepicker .calendar-table td {
    width: 38px;
    height: 38px;
    min-width: 38px;
    line-height: 38px;
    font-size: 13px;
    border-radius: 8px;
}

body.ashrams-checkout-page .ashrams-checkout-daterangepicker .calendar-table th {
    color: #6b7280;
    font-weight: 500;
}

body.ashrams-checkout-page .ashrams-checkout-daterangepicker .monthselect,
body.ashrams-checkout-page .ashrams-checkout-daterangepicker .yearselect {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 4px 8px;
    font-size: 13px;
    font-weight: 600;
    color: #111111;
    background: #fff;
}

body.ashrams-checkout-page .ashrams-checkout-daterangepicker .drp-buttons {
    display: flex !important;
    justify-content: flex-end;
    gap: 10px;
    margin: 0;
    padding: 12px 18px 16px;
    border-top: 1px solid #ececef;
    background: #fff;
    clear: both;
}

body.ashrams-checkout-page .ashrams-checkout-daterangepicker .drp-selected {
    display: none;
}

body.ashrams-checkout-page .ashrams-checkout-daterangepicker .cancelBtn,
body.ashrams-checkout-page .ashrams-checkout-daterangepicker .applyBtn {
    min-width: 88px;
    height: 40px;
    margin: 0 !important;
    padding: 0 18px !important;
    border-radius: 10px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 38px !important;
}

body.ashrams-checkout-page .ashrams-checkout-daterangepicker .cancelBtn {
    border: 1px solid #111111 !important;
    background: #fff !important;
    color: #111111 !important;
}

body.ashrams-checkout-page .ashrams-checkout-daterangepicker .applyBtn {
    border: 1px solid #111111 !important;
    background: #111111 !important;
    color: #fff !important;
}

@media (max-width: 860px) {
    body.ashrams-checkout-page .ashrams-checkout-daterangepicker .ashrams-drp-schedule-sidebar {
        float: none;
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #ececef;
        max-height: 220px;
    }

    body.ashrams-checkout-page .ashrams-checkout-daterangepicker .drp-calendar.right {
        display: none !important;
    }
}

.ashrams-checkout__stepper {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
}

.ashrams-checkout__stepper button {
    width: 1.75rem;
    height: 1.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    background: #fff;
    color: #64748b;
    cursor: pointer;
    font-size: 0.65rem;
    line-height: 1;
}

/* Pre & post accommodation tiers */
.ashrams-checkout__tier-summary {
    margin-bottom: 0.85rem;
}

.ashrams-checkout__tier-summary-edit {
    flex-shrink: 0;
    margin: 0;
    padding: 4px;
    border: none;
    background: transparent;
    font-size: 14px;
    line-height: 1;
}

/* Pre/post: gap between “Arrival & departure stay” field and Classic / Comfort / Signature cards */
.ashrams-checkout__section--pre-post .ashrams-checkout__tier-grid {
    margin-top: 16px;
}

.ashrams-checkout__tier-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

/* Figma tier card — padding 32px, gap 16px, radius 24px, border #F1F5F9, shadow 0 4px 20px / 5% */
.ashrams-checkout__tier-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #f1f5f9;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    min-height: 100%;
}

.ashrams-checkout__tier-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    align-items: stretch;
    gap: 16px;
    padding: 32px;
}

.ashrams-checkout__tier-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
}

body.ashrams-checkout-page .ashrams-checkout__tier-name,
body.ashrams-checkout-page .ashrams-checkout__tier-desc {
    font-family: var(--checkout-field-font);
}

.ashrams-checkout__tier-name {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.35;
    margin: 0;
    color: var(--checkout-ink);
}

.ashrams-checkout__tier-upgrade {
    font-family: var(--ashrams-manrope, 'Manrope', var(--ashrams-sans), sans-serif);
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--checkout-label);
    margin: 0;
}

.ashrams-checkout__tier-divider {
    width: 100%;
    height: 0;
    margin: 0;
    border: none;
    border-top: 1px solid #e2e8f0;
}

.ashrams-checkout__tier-desc {
    font-size: 11px;
    font-weight: 300;
    line-height: 1.5;
    color: #64748b;
    margin: 0;
    flex: 1;
    text-align: left;
    align-self: stretch;
}

/* Selected tier — button only (Figma: 156×32, pill, #984629 fill, white INCLUDED) */
.ashrams-checkout__tier-btn {
    box-sizing: border-box;
    align-self: center;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 156px;
    height: 32px;
    padding: 0 16px;
    border-radius: 9999px;
    border: 1px solid #984629;
    background: #984629;
    color: #fff;
    font-family: var(--checkout-field-font);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
}

/* Unselected — Figma outline: 1px #5F5E5B, transparent fill */
.ashrams-checkout__tier-btn.is-outline {
    background: transparent;
    color: #5f5e5b;
    border-color: #5f5e5b;
}

.ashrams-checkout__tier-btn:disabled {
    cursor: default;
    opacity: 1;
}

.ashrams-checkout__tier-slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
}

.ashrams-checkout__tier-dots {
    display: none;
}

/* 800px–992px: tighter two-column balance + tier slider + sidebar scaling */
@media (min-width: 800px) and (max-width: 992px) {
    body.ashrams-checkout-page .ashrams-header__nav {
        grid-template-columns: minmax(0, 1fr) clamp(250px, 34vw, 330px);
        gap: clamp(1rem, 2vw, 1.5rem);
    }

    .ashrams-checkout__grid {
        grid-template-columns: minmax(0, 1fr) clamp(250px, 34vw, 330px);
        gap: clamp(1rem, 2vw, 1.5rem);
    }

    body.ashrams-checkout-page .ashrams-checkout__summary,
    body.ashrams-checkout-page .ashrams-checkout__summary-pin,
    .ashrams-checkout__summary-card,
    .ashrams-checkout__reviews,
    .ashrams-checkout__reviews-list,
    .ashrams-checkout__review-card {
        max-width: 100%;
        min-width: 0;
    }

    .ashrams-checkout__summary-card {
        padding: clamp(1rem, 2vw, 1.5rem);
    }

    .ashrams-checkout__summary-thumb {
        flex: 0 0 clamp(4.5rem, 11vw, 6.375rem);
        width: clamp(4.5rem, 11vw, 6.375rem);
        height: clamp(4.5rem, 11vw, 6.375rem);
    }

    .ashrams-checkout__summary-title {
        font-size: clamp(0.8125rem, 1.5vw, 1rem);
        line-height: 1.3;
    }

    .ashrams-checkout__summary-head {
        min-height: 0;
        gap: 10px;
    }

    .ashrams-checkout__reviews-title {
        font-size: clamp(0.9375rem, 1.8vw, 1.125rem);
        margin-bottom: clamp(0.75rem, 2vw, 1rem);
    }

    .ashrams-checkout__review-card {
        padding: clamp(0.875rem, 2vw, 1.25rem);
    }

    body.ashrams-checkout-page .ashrams-checkout__review-quote {
        margin-bottom: clamp(0.75rem, 2vw, 1rem);
    }

    .ashrams-checkout__room-card-top {
        grid-template-columns: 1fr;
        gap: 16px;
        align-items: start;
    }

    .ashrams-checkout__room-media {
        max-width: min(100%, 220px);
    }

    .ashrams-checkout__room-package.is-featured .ashrams-checkout__room-card--active {
        padding: 0 clamp(0.875rem, 2vw, 1.25rem) clamp(0.875rem, 2vw, 1.25rem);
    }

    .ashrams-checkout__room-card--active {
        padding: clamp(0.875rem, 2vw, 1.25rem);
    }

    .ashrams-checkout__room-card--active .ashrams-checkout__room-desc {
        max-width: none;
    }

    .ashrams-checkout__section--pre-post .ashrams-checkout__tier-grid {
        display: flex;
        flex-wrap: nowrap;
        align-items: stretch;
        gap: 12px;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 4px;
    }

    .ashrams-checkout__section--pre-post .ashrams-checkout__tier-grid::-webkit-scrollbar {
        display: none;
    }

    .ashrams-checkout__tier-card {
        flex: 0 0 clamp(200px, 58%, 220px);
        max-width: clamp(200px, 58%, 220px);
        scroll-snap-align: start;
        scroll-snap-stop: always;
        min-height: auto;
        box-sizing: border-box;
    }

    .ashrams-checkout__tier-body {
        min-height: 100%;
        padding: 32px;
        gap: 16px;
    }

    .ashrams-checkout__tier-desc {
        text-align: center;
    }

    .ashrams-checkout__tier-btn {
        align-self: center;
        width: auto;
        min-width: 0;
        max-width: 100%;
    }

    .ashrams-checkout__tier-dots {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 12px;
    }

    .ashrams-checkout__tier-dot {
        width: 8px;
        height: 8px;
        padding: 0;
        border: none;
        border-radius: 50%;
        background: #cbd5e1;
        cursor: pointer;
        transition: background-color 0.2s ease, transform 0.2s ease;
    }

    .ashrams-checkout__tier-dot.is-active {
        background: #984629;
        transform: scale(1.15);
    }

    .ashrams-checkout__tier-dot:focus-visible {
        outline: 2px solid #984629;
        outline-offset: 2px;
    }
}

/* Active room card — Figma Article (12px radius, terracotta shadow, button-only footer) */
.ashrams-checkout__room-card--active {
    border: none;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    overflow: hidden;
    margin-bottom: 0;
    padding: 20px;
}

/* Selected room — full Figma card (image, title, text, amenities, INCLUDED) */
.ashrams-checkout__room-package.is-featured {
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 30px rgba(160, 82, 45, 0.08);
    overflow: hidden;
}

.ashrams-checkout__room-package.is-featured .ashrams-checkout__room-package-panel {
    display: block;
}

.ashrams-checkout__room-package.is-featured > .ashrams-checkout__room-upgrade[hidden] {
    display: none !important;
}

/* Featured card — image flush top-left; text aligned to top */
.ashrams-checkout__room-package.is-featured .ashrams-checkout__room-card--active {
    padding: 0 20px 20px;
}

.ashrams-checkout__room-package.is-featured .ashrams-checkout__room-card-top {
    align-items: start;
    gap: 20px;
}

.ashrams-checkout__room-package.is-featured .ashrams-checkout__room-media {
    border-radius: 12px 0 0 0;
}

.ashrams-checkout__room-package.is-featured .ashrams-checkout__room-intro {
    align-self: start;
    padding-top: 10px;
}

.ashrams-checkout__room-package.is-featured .ashrams-checkout__room-name {
    margin-top: 0;
}

.ashrams-checkout__room-card-top {
    display: grid;
    grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
    gap: 24px;
    align-items: center;
}

.ashrams-checkout__room-media {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.ashrams-checkout__room-media img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center center;
}

.ashrams-checkout__room-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 6px;
    pointer-events: none;
}

.ashrams-checkout__room-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
}

.ashrams-checkout__room-dots span.is-active {
    background: #ffffff;
}

.ashrams-checkout__room-intro {
    min-width: 0;
    align-self: center;
}

.ashrams-checkout__room-card--active .ashrams-checkout__room-name,
.ashrams-checkout__room-card--active .ashrams-checkout__room-desc,
.ashrams-checkout__room-card-footer .ashrams-checkout__tier-btn {
    font-family: var(--ashrams-manrope, 'Manrope', var(--ashrams-sans), sans-serif);
}

.ashrams-checkout__room-card--active .ashrams-checkout__room-name {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.35;
    margin: 0 0 10px;
    color: #1c1b1b;
}

.ashrams-checkout__room-card--active .ashrams-checkout__room-desc {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
    color: #5e5e5f;
    margin: 0;
    max-width: none;
}

.ashrams-checkout__room-amenities {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px 16px;
    list-style: none;
    margin: 20px 0 0;
    padding: 20px 0 0;
    border-top: 1px solid #e2e8f0;
}

.ashrams-checkout__room-amenity {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-family: var(--checkout-field-font);
    font-size: 11px;
    font-weight: 400;
    line-height: 1.35;
    color: #984629;
}

.ashrams-checkout__room-amenity i {
    flex-shrink: 0;
    width: 14px;
    margin-top: 1px;
    font-size: 12px;
    text-align: center;
}

.ashrams-checkout__room-card-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
}

/* Figma — Astha INCLUDED: 105×32, pill, #984629, Manrope */
.ashrams-checkout__room-included-btn {
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 105px;
    min-width: 105px;
    height: 32px;
    padding: 0 16px;
    border-radius: 9999px;
    border: 1px solid #984629;
    background: #984629;
    color: #fff;
    font-family: var(--ashrams-manrope, 'Manrope', var(--ashrams-sans), sans-serif);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: default;
    pointer-events: none;
    user-select: none;
}

.ashrams-checkout__room-card-footer .js-room-select-state[hidden] {
    display: none !important;
}

.ashrams-checkout__room-card-footer .js-room-included-state[hidden] {
    display: none !important;
}

/* Room accordion — one open at a time (Astha / Ekta / Idha) */
.ashrams-checkout__room-package {
    margin-top: 12px;
}

.ashrams-checkout__room-package:first-child {
    margin-top: 0;
}

.ashrams-checkout__room-package.is-featured {
    margin-bottom: 12px;
}

.ashrams-checkout__room-package:not(.is-open) .ashrams-checkout__room-package-panel {
    display: none;
}

.ashrams-checkout__room-package.is-open .ashrams-checkout__room-upgrade-chevron {
    transform: rotate(180deg);
}

.ashrams-checkout__room-package .ashrams-checkout__room-upgrade {
    width: 100%;
    margin-top: 0;
    border: 1px solid #e2e8f0;
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    text-align: left;
    font: inherit;
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: nowrap;
}

.ashrams-checkout__room-package:not(.is-open) .ashrams-checkout__room-upgrade {
    border-bottom: 1px solid #e2e8f0;
    border-radius: 12px;
}

.ashrams-checkout__room-package .ashrams-checkout__room-card {
    margin-bottom: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-top: none;
}

.ashrams-checkout__room-upgrade-chevron {
    transition: transform 0.2s ease;
}

.ashrams-checkout__room-package.is-selected .js-room-meta-included {
    pointer-events: none;
    user-select: none;
}

.ashrams-checkout__room-card--upgrade {
    box-shadow: 0 8px 30px rgba(160, 82, 45, 0.06);
}

/* Figma — Ekta / Idha upgrade rows (82px, fill width) */
.ashrams-checkout__room-upgrade {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 82px;
    margin-top: 12px;
    padding: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #fff;
    box-sizing: border-box;
    cursor: pointer;
}

.ashrams-checkout__room-package .ashrams-checkout__room-upgrade-name {
    font-family: var(--ashrams-manrope, 'Manrope', var(--ashrams-sans), sans-serif);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
    color: #1e293b;
    flex: 1 1 auto;
    min-width: 0;
    text-align: left;
}

.ashrams-checkout__room-package .ashrams-checkout__room-upgrade-meta {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex: 0 0 auto;
    margin-left: auto;
}

.ashrams-checkout__room-package .ashrams-checkout__room-upgrade-label {
    font-family: var(--ashrams-manrope, 'Manrope', var(--ashrams-sans), sans-serif);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #94a3b8;
    white-space: nowrap;
    line-height: 1.35;
}


.ashrams-checkout__room-upgrade-chevron {
    font-size: 12px;
    color: #984629;
}

.ashrams-checkout__room-btn {
    padding: 0.45rem 1rem;
    border-radius: 9999px;
    border: 1px solid var(--ashrams-terracotta);
    background: var(--ashrams-terracotta);
    color: #fff;
    font-family: var(--ashrams-sans);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
}

.ashrams-checkout__room-btn.is-outline {
    background: transparent;
    color: var(--ashrams-terracotta);
}

.ashrams-checkout__room-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1rem;
    border: 1px solid #ece8e3;
    border-radius: 10px;
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.ashrams-checkout__room-row.is-selected {
    border-color: var(--ashrams-terracotta);
}

.ashrams-checkout__room-row-name {
    font-family: 'Cormorant Garamond', var(--ashrams-serif);
    font-size: 1rem;
    color: var(--ashrams-text);
}

.ashrams-checkout__room-row-meta {
    font-family: var(--ashrams-sans);
    font-size: 0.75rem;
    color: #9a9a9a;
}

.ashrams-checkout__visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Retreat stay → Flexible cancellation gap (Figma ~16px) */
.ashrams-checkout__section--retreat-stay {
    margin-bottom: 0;
}

.ashrams-checkout__section--retreat-stay .ashrams-checkout__room-list > .ashrams-checkout__room-package:last-child {
    margin-bottom: 0;
}

/* Policy banner — Figma: 54px hug, 12px radius, #ECFDF5 / #A7F3D0, Inter */
.ashrams-checkout__policy-banner {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    min-height: 54px;
    margin-top: 0;
    margin-bottom: 0;
    padding: 16px 24px;
    border-radius: var(--checkout-radius);
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
}

body.ashrams-checkout-page .ashrams-checkout__policy-banner-text {
    font-family: var(--checkout-field-font);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #065f46;
}

.ashrams-checkout__policy-banner-chevron {
    display: none;
}

/* Payment currency — Figma */
body.ashrams-checkout-page .ashrams-checkout__section--currency {
    padding-top: 32px;
}

.ashrams-checkout__currency-heading {
    font-family: var(--checkout-heading-font);
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    color: #1e293b;
    margin: 0 0 var(--checkout-inner-gap);
}

.ashrams-checkout__currency-card {
    box-sizing: border-box;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    min-height: 96px;
    padding: 24px;
    border: 1px solid var(--checkout-field-border);
    border-radius: var(--checkout-radius);
    background: #fff;
}

.ashrams-checkout__currency-card-main {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.ashrams-checkout__currency-picker {
    position: relative;
}

.ashrams-checkout__currency-picker-btn,
.ashrams-checkout__summary-currency-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    font-family: var(--checkout-heading-font);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #1e293b;
    cursor: pointer;
}

.ashrams-checkout__currency-picker-chevron,
.ashrams-checkout__summary-currency-btn .fa-chevron-down {
    flex-shrink: 0;
    font-size: 10px;
    color: #1e293b;
}

.ashrams-checkout__currency-picker-chevron {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1em;
    height: 1em;
    line-height: 0;
}

.ashrams-checkout__currency-picker-chevron svg {
    display: block;
    width: 12px;
    height: 12px;
}

.ashrams-checkout__currency-note {
    font-family: var(--checkout-field-font);
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: #6b7280;
    margin: 0;
}

.ashrams-checkout__currency-full-price {
    font-family: var(--checkout-field-font);
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    color: #1e293b;
    white-space: nowrap;
    flex-shrink: 0;
}

.ashrams-checkout__currency-picker-menu,
.ashrams-checkout__summary-currency-menu {
    position: absolute;
    z-index: 20;
    top: calc(100% + 8px);
    left: 0;
    min-width: 160px;
    margin: 0;
    padding: 8px;
    list-style: none;
    border: 1px solid var(--checkout-field-border);
    border-radius: var(--checkout-radius);
    background: #fff;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
}

.ashrams-checkout__currency-picker-menu[hidden],
.ashrams-checkout__summary-currency-menu[hidden] {
    display: none;
}

.ashrams-checkout__currency-option {
    display: block;
    width: 100%;
    margin: 0;
    padding: 8px 10px;
    border: none;
    border-radius: 6px;
    background: transparent;
    font-family: var(--checkout-field-font);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #475569;
    text-align: left;
    cursor: pointer;
}

.ashrams-checkout__currency-option.is-selected,
.ashrams-checkout__currency-option:hover {
    background: #f8fafc;
    color: #1e293b;
}

/* Add-ons — Figma */
body.ashrams-checkout-page .ashrams-checkout__section--addons {
    padding-top: 16px;
}

.ashrams-checkout__addons-heading {
    font-family: var(--checkout-heading-font);
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 32px;
    text-transform: none;
    color: #1e293b;
    margin: 0 0 4px;
}

body.ashrams-checkout-page .ashrams-checkout__addons-subtitle {
    font-family: var(--checkout-field-font);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
    color: #64748b;
    margin: 0 0 24px;
}

.ashrams-checkout__addon-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ashrams-checkout__addon {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 74px;
    padding: 24px;
    border: 1px solid #e2e8f0;
    border-radius: var(--checkout-radius);
    background: #fff;
    cursor: pointer;
    margin: 0;
}

.ashrams-checkout__addon:has(.ashrams-checkout__addon-input:checked) {
    border-color: #e2e8f0;
    background: #fff;
}

.ashrams-checkout__addon-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.ashrams-checkout__addon-control {
    width: 24px;
    height: 24px;
    border: 2px solid #cbd5e1;
    border-radius: 50%;
    background: #fff;
    flex-shrink: 0;
    position: relative;
    margin-right: 0;
}

.ashrams-checkout__addon-label-group {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.ashrams-checkout__addon:has(.ashrams-checkout__addon-input:checked) .ashrams-checkout__addon-control {
    border-color: var(--checkout-accent);
}

.ashrams-checkout__addon:has(.ashrams-checkout__addon-input:checked) .ashrams-checkout__addon-control::after {
    content: '';
    position: absolute;
    inset: 0.25rem;
    border-radius: 50%;
    background: var(--checkout-accent);
}

body.ashrams-checkout-page .ashrams-checkout__addon-name,
body.ashrams-checkout-page .ashrams-checkout__addon-price {
    font-family: var(--checkout-field-font);
    font-size: 16px;
    line-height: 24px;
    color: #334155;
}

.ashrams-checkout__addon-name {
    font-weight: 400;
}

.ashrams-checkout__addon-price {
    font-weight: 400;
    color: #1e293b;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Pay now — Figma */
body.ashrams-checkout-page .ashrams-checkout__section--pay {
    padding-top: 32px;
}

.ashrams-checkout__pay-heading {
    font-family: var(--checkout-heading-font);
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    color: #1e293b;
    margin: 0 0 var(--checkout-inner-gap);
}

.ashrams-checkout__pay-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ashrams-checkout__pay-option {
    position: relative;
    box-sizing: border-box;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    min-height: 96px;
    padding: 24px;
    border: 1px solid #e2e8f0;
    border-radius: var(--checkout-radius);
    background: #fff;
    cursor: pointer;
    margin: 0;
}

.ashrams-checkout__pay-option:has(.ashrams-checkout__pay-option-input:checked) {
    border: 2px solid #111111;
    background: #ffffff;
}

.ashrams-checkout__pay-option-input {
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 1px;
    margin: 0;
    opacity: 0;
    pointer-events: none;
    appearance: none;
}

.ashrams-checkout__pay-option-radio {
    width: 24px;
    height: 24px;
    border: 2px solid #cbd5e1;
    border-radius: 50%;
    background: #fff;
    flex-shrink: 0;
    position: relative;
    margin-top: 4px;
}

.ashrams-checkout__pay-option:has(.ashrams-checkout__pay-option-input:checked) .ashrams-checkout__pay-option-radio {
    border-color: var(--checkout-accent);
}

.ashrams-checkout__pay-option:has(.ashrams-checkout__pay-option-input:checked) .ashrams-checkout__pay-option-radio::after {
    content: '';
    position: absolute;
    inset: 0.25rem;
    border-radius: 50%;
    background: var(--checkout-accent);
}

.ashrams-checkout__pay-option-main {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    min-width: 0;
    margin-left: 4px;
    margin-right: 12px;
}

.ashrams-checkout__pay-option-label {
    font-family: var(--checkout-heading-font);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #1e293b;
}

body.ashrams-checkout-page .ashrams-checkout__pay-option-note {
    font-family: var(--checkout-field-font);
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: #6b7280;
    margin: 0;
}

.ashrams-checkout__pay-option-price {
    font-family: var(--checkout-field-font);
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    color: #1e293b;
    white-space: nowrap;
    flex-shrink: 0;
}

.ashrams-checkout__pay-option:has(.ashrams-checkout__pay-option-input:checked) .ashrams-checkout__pay-option-price {
    color: var(--checkout-accent);
}

/* Legacy option classes (contact / other pages) */
.ashrams-checkout__subtitle {
    font-family: 'Cormorant Garamond', var(--ashrams-serif);
    font-size: 0.95rem;
    color: #55433d;
    margin: -0.35rem 0 0.85rem;
}

/* Contact — Figma (EMAIL / PHONE NUMBER, Inter) */
body.ashrams-checkout-page .ashrams-checkout__section--contact {
    padding-top: 16px;
}

.ashrams-checkout__contact-fields {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

body.ashrams-checkout-page .ashrams-checkout__figma-field--contact .ashrams-checkout__figma-field__label,
body.ashrams-checkout-page .ashrams-checkout__figma-field--contact .ashrams-checkout__figma-field__input {
    font-family: var(--checkout-field-font);
}

body.ashrams-checkout-page .ashrams-checkout__figma-field--contact .ashrams-checkout__figma-field__label {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #94a3b8;
}

body.ashrams-checkout-page .ashrams-checkout__figma-field--contact .ashrams-checkout__figma-field__input {
    font-size: 16px;
    font-weight: 400;
    color: #1e293b;
}

.ashrams-checkout__figma-field--contact-phone .ashrams-checkout__figma-field__body {
    gap: 6px;
}

.ashrams-checkout__contact-phone-row {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.ashrams-checkout__phone-country {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.ashrams-checkout__phone-country img {
    display: block;
    width: 20px;
    height: auto;
    border-radius: 2px;
    object-fit: cover;
}

body.ashrams-checkout-page .ashrams-checkout__phone-country .fa-chevron-down {
    font-size: 10px;
    color: #64748b;
}

.ashrams-checkout__figma-field__input--phone {
    flex: 1;
    min-width: 0;
}

body.ashrams-checkout-page .ashrams-checkout__contact-note {
    font-family: var(--checkout-field-font);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    color: #64748b;
    margin: 12px 0 0;
}

body.ashrams-checkout-page .ashrams-checkout__contact-note a {
    color: #1e1e1e;
    text-decoration: none;
}

body.ashrams-checkout-page .ashrams-checkout__contact-note a:hover {
    color: #000;
    text-decoration: underline;
}

/* Pay with — Figma (PayPal logo + Stripe, Plus Jakarta Sans) */
body.ashrams-checkout-page .ashrams-checkout__section--pay-with {
    padding-top: 24px;
}

.ashrams-checkout__pay-with-heading {
    font-family: var(--checkout-heading-font);
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    color: #1e293b;
    margin: 0 0 var(--checkout-inner-gap);
}

.ashrams-checkout__pay-methods {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.ashrams-checkout__pay-method {
    margin: 0;
    cursor: pointer;
}

.ashrams-checkout__pay-method input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.ashrams-checkout__pay-method-body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    padding: 16px 20px;
    border: 2px solid #cbd5e1;
    border-radius: 12px;
    background: #fff;
    box-sizing: border-box;
    transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.ashrams-checkout__pay-method-logo {
    display: block;
    width: auto;
    height: 22px;
    max-width: 100%;
}

.ashrams-checkout__pay-method-stripe-label {
    font-family: 'Plus Jakarta Sans', var(--ashrams-sans), system-ui, sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1;
    color: #6772e5;
}

.ashrams-checkout__pay-method-brand-label {
    font-family: 'Plus Jakarta Sans', var(--ashrams-sans), system-ui, sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1;
    color: #0f766e;
}

.ashrams-checkout__pay-method--cashfree.is-selected .ashrams-checkout__pay-method-body,
.ashrams-checkout__pay-method--cashfree:has(input:checked) .ashrams-checkout__pay-method-body {
    background: #0f766e;
    border: 2px solid #0f766e;
    box-shadow: none;
}

.ashrams-checkout__pay-method--cashfree.is-selected .ashrams-checkout__pay-method-brand-label,
.ashrams-checkout__pay-method--cashfree:has(input:checked) .ashrams-checkout__pay-method-brand-label {
    color: #fff;
}

.ashrams-checkout__pay-method--cashfree:not(.is-selected):not(:has(input:checked)) .ashrams-checkout__pay-method-body {
    background: #fff;
    border: 1px solid #cbd5e1;
}

.ashrams-checkout__pay-method--cashfree:not(.is-selected):not(:has(input:checked)) .ashrams-checkout__pay-method-brand-label {
    color: #0f766e;
}

.ashrams-checkout__pay-method--paypal.is-selected .ashrams-checkout__pay-method-body,
.ashrams-checkout__pay-method--paypal:has(input:checked) .ashrams-checkout__pay-method-body {
    border: 2px solid #009cde;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 156, 222, 0.1);
}

.ashrams-checkout__pay-method--stripe.is-selected .ashrams-checkout__pay-method-body,
.ashrams-checkout__pay-method--stripe:has(input:checked) .ashrams-checkout__pay-method-body {
    background: #6772e5;
    border: 2px solid #6772e5;
    box-shadow: none;
}

.ashrams-checkout__pay-method--stripe.is-selected .ashrams-checkout__pay-method-stripe-label,
.ashrams-checkout__pay-method--stripe:has(input:checked) .ashrams-checkout__pay-method-stripe-label {
    color: #fff;
}

.ashrams-checkout__pay-method--stripe:not(.is-selected):not(:has(input:checked)) .ashrams-checkout__pay-method-body {
    background: #fff;
    border: 1px solid #cbd5e1;
}

.ashrams-checkout__pay-method--stripe:not(.is-selected):not(:has(input:checked)) .ashrams-checkout__pay-method-stripe-label {
    color: #6772e5;
}

body.ashrams-checkout-page .ashrams-checkout__pay-secure-note {
    font-family: var(--checkout-field-font);
    font-size: 14px;
    font-style: italic;
    font-weight: 400;
    line-height: 20px;
    text-align: left;
    color: #64748b;
    margin: var(--checkout-inner-gap) 0 0;
}

body.ashrams-checkout-page .ashrams-checkout__pay-secure-note em {
    font-style: italic;
}

@media (max-width: 799px) {
    .ashrams-checkout__pay-methods {
        grid-template-columns: 1fr;
    }
}

/* Tree offset + submit — Figma */
body.ashrams-checkout-page .ashrams-checkout__submit-wrap {
    margin-top: 0;
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.ashrams-checkout__tree-offset {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 0;
    padding: 16px 18px;
    border-radius: var(--checkout-radius);
    background: #f3f4f6;
    cursor: pointer;
}

.ashrams-checkout__tree-offset-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.ashrams-checkout__tree-offset-control {
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    margin-top: 3px;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    background: #fff;
    flex-shrink: 0;
    position: relative;
}

.ashrams-checkout__tree-offset:has(.ashrams-checkout__tree-offset-input:checked) .ashrams-checkout__tree-offset-control {
    border-color: var(--checkout-accent);
    background: var(--checkout-accent);
}

.ashrams-checkout__tree-offset:has(.ashrams-checkout__tree-offset-input:checked) .ashrams-checkout__tree-offset-control::after {
    content: '';
    display: block;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) translateY(-1px);
}

.ashrams-checkout__tree-offset-copy {
    min-width: 0;
    flex: 1;
}

body.ashrams-checkout-page .ashrams-checkout__tree-offset-copy {
    font-family: var(--checkout-field-font);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0;
    color: #334155;
}

#loadingSpinner {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
    margin-bottom: 0.75rem;
    font-family: var(--checkout-field-font);
    font-size: 14px;
    color: #64748b;
}

#loadingSpinner .spinner-border {
    width: 1.25rem;
    height: 1.25rem;
    border-width: 0.15em;
    color: var(--checkout-accent, #111);
}

#loadingSpinner img {
    max-width: 3rem;
}

body.ashrams-checkout-page .ashrams-checkout__submit,
body.ashrams-checkout-page .ashrams-checkout__submit #bookNowBtnLabel {
    font-family: var(--checkout-field-font), 'Inter', system-ui, -apple-system, sans-serif !important;
}

body.ashrams-checkout-page .ashrams-checkout__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    min-height: 68px;
    padding: 20px 32px;
    border: none;
    border-radius: var(--checkout-radius);
    background: #111111;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: 0;
    text-transform: none;
    cursor: pointer;
    box-shadow: none;
    transition: background-color 0.15s ease;
}

body.ashrams-checkout-page .ashrams-checkout__submit-lock {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #fff;
}

body.ashrams-checkout-page .ashrams-checkout__submit-lock svg {
    display: block;
    width: 20px;
    height: 20px;
}

body.ashrams-checkout-page .ashrams-checkout__submit:hover:not(:disabled) {
    background: #000;
    box-shadow: none;
}

body.ashrams-checkout-page .ashrams-checkout__terms {
    display: block;
    font-family: var(--checkout-field-font);
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: #64748b;
    text-align: center;
    margin: 16px auto 0;
    max-width: 100%;
    white-space: nowrap;
}

body.ashrams-checkout-page .ashrams-checkout__terms-link {
    color: #1e1e1e;
    text-decoration: none;
    font-weight: 400;
}

body.ashrams-checkout-page .ashrams-checkout__terms-link:hover {
    color: #000;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Sidebar — summary follows scroll down to Reserve My Journey button (desktop) */
body.ashrams-checkout-page .ashrams-checkout__summary {
    position: relative;
}

body.ashrams-checkout-page .ashrams-checkout__summary-pin {
    position: sticky;
    top: calc(104px + 16px);
    align-self: flex-start;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: var(--checkout-section-gap);
    width: 100%;
    max-width: min(100%, var(--checkout-summary-max));
    min-width: 0;
    overflow: visible;
    will-change: transform;
}

@media (min-width: 800px) {
    body.ashrams-checkout-page.ashrams-checkout-summary-scroll-sync .ashrams-checkout__summary-pin {
        position: relative;
        top: auto;
    }

    body.ashrams-checkout-page .ashrams-checkout__summary-track {
        flex: 1 1 auto;
        width: 100%;
        min-height: 0;
        pointer-events: none;
    }
}

.ashrams-checkout__summary-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: min(100%, var(--checkout-summary-max));
    min-width: 0;
    box-sizing: border-box;
    padding: 32px;
    border: 1px solid #f1f5f9;
    border-radius: var(--checkout-radius);
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 0;
}

.ashrams-checkout__summary-head {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    min-height: 96px;
    padding-bottom: 16px;
}

.ashrams-checkout__summary-thumb {
    flex: 0 0 96px;
    width: 96px;
    height: 96px;
    border-radius: 5px;
    overflow: hidden;
}

.ashrams-checkout__summary-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ashrams-checkout__summary-intro {
    flex: 1;
    min-width: 0;
}

.ashrams-checkout__summary-title {
    font-family: var(--checkout-heading-font);
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: 0;
    color: #1e293b;
    margin: 0 0 8px;
}

.ashrams-checkout__summary-loc {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: var(--checkout-field-font);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #64748b;
    margin: 0;
}

.ashrams-checkout__summary-loc i {
    font-size: 12px;
    color: #94a3b8;
}

.ashrams-checkout__summary-dates {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
    row-gap: 16px;
    padding: 24px;
    border: none;
    border-radius: var(--checkout-radius);
    background: #f8fafc;
}

.ashrams-checkout__summary-date-item--guests,
.ashrams-checkout__summary-date-item--currency {
    grid-column: auto;
}

.ashrams-checkout__summary-date-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ashrams-checkout__summary-date-item--guests {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.ashrams-checkout__summary-date-label i {
    font-size: 12px;
    color: #94a3b8;
    margin-right: 12px;
}

.ashrams-checkout__summary-currency-picker {
    position: relative;
}

.ashrams-checkout__summary-currency-btn {
    padding: 0;
    border-radius: var(--checkout-radius);
    font-family: var(--checkout-field-font);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #475569;
}

.ashrams-checkout__summary-date-label {
    display: flex;
    align-items: center;
    gap: 0;
    font-family: var(--checkout-field-font);
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0;
    text-transform: none;
    color: #94a3b8;
    margin-bottom: 0;
}

.ashrams-checkout__summary-date-item strong {
    display: block;
    font-family: var(--checkout-field-font);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #475569;
}

.ashrams-checkout__summary-pricing {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ashrams-checkout__summary-lines {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ashrams-checkout__summary-line {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    font-family: var(--checkout-field-font);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #64748b;
}

.ashrams-checkout__summary-line-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    min-width: 0;
    font-weight: 400;
}

.ashrams-checkout__summary-line-value {
    font-size: 14px;
    font-weight: 400;
    color: #475569;
    white-space: nowrap;
    flex-shrink: 0;
}

.ashrams-checkout__summary-info {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    border: 1px solid #93c5fd;
    border-radius: 50%;
    font-size: 9px;
    font-weight: 600;
    font-style: normal;
    line-height: 1;
    color: #3b82f6;
    flex-shrink: 0;
}

#addOnListContainer {
    display: none;
    margin: 0;
    padding: 0;
    border: none;
}

.ashrams-checkout__summary-addons {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.ashrams-checkout__summary-addon-line {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-family: 'Plus Jakarta Sans', var(--ashrams-sans), system-ui, sans-serif;
    font-size: 13px;
    color: #64748b;
}

.ashrams-checkout__summary-addon-price {
    font-weight: 500;
    color: #1e293b;
    white-space: nowrap;
}

.ashrams-checkout__pay-now {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 20px;
    border: 1px solid #f1f5f9;
    border-radius: var(--checkout-radius);
    background: #f8fafc;
}

.ashrams-checkout__pay-now-label {
    font-family: var(--checkout-field-font);
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    color: #1e293b;
}

.ashrams-checkout__pay-now-amount {
    font-family: var(--checkout-field-font);
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    color: #0f172a;
}

/* Traveler reviews — Figma; fluid down with summary column width */
.ashrams-checkout__reviews {
    margin-top: 0;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.ashrams-checkout__reviews-title {
    font-family: 'Plus Jakarta Sans', var(--ashrams-sans), system-ui, sans-serif;
    font-size: clamp(1rem, 0.9rem + 0.45vw, 1.25rem);
    font-weight: 600;
    line-height: 1.35;
    color: #0f172a;
    margin: 0 0 clamp(1rem, 2.5vw, 1.5rem);
}

.ashrams-checkout__reviews-list {
    display: flex;
    flex-direction: column;
    gap: clamp(0.625rem, 1.5vw, 0.75rem);
    width: 100%;
    min-width: 0;
}

.ashrams-checkout__review-card {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding:
        clamp(1.25rem, 3.5vw, 3rem)
        clamp(1rem, 3vw, 3rem)
        clamp(1rem, 2.5vw, 1.875rem);
    border: 1px solid #f3f6f8;
    border-radius: clamp(1rem, 2vw, 1.5rem);
    background: #fff;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.02);
}

body.ashrams-checkout-page .ashrams-checkout__review-quote {
    margin: 0 0 clamp(1rem, 2.5vw, 1.75rem);
    padding: 0;
    border: none;
}

body.ashrams-checkout-page .ashrams-checkout__review-quote p {
    font-family: var(--checkout-field-font), 'Inter', system-ui, -apple-system, sans-serif !important;
    font-size: clamp(0.6875rem, 0.625rem + 0.25vw, 0.75rem);
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0;
    color: #334155;
    margin: 0;
}

.ashrams-checkout__review-meta {
    display: flex;
    align-items: center;
    gap: clamp(0.625rem, 1.5vw, 0.75rem);
    min-width: 0;
}

.ashrams-checkout__review-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(2rem, 4.5vw, 2.5rem);
    height: clamp(2rem, 4.5vw, 2.5rem);
    flex-shrink: 0;
    border-radius: 50%;
    background: #984629;
    color: #fff;
    font-size: clamp(0.75rem, 1.5vw, 1rem);
}

.ashrams-checkout__review-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

body.ashrams-checkout-page .ashrams-checkout__review-name {
    font-family: var(--checkout-field-font), 'Inter', system-ui, -apple-system, sans-serif !important;
    font-size: clamp(0.6875rem, 0.625rem + 0.25vw, 0.75rem);
    font-weight: 600;
    line-height: 1.5;
    color: #0f172a;
}

body.ashrams-checkout-page .ashrams-checkout__review-location {
    font-family: var(--checkout-field-font), 'Inter', system-ui, -apple-system, sans-serif !important;
    font-size: clamp(0.6875rem, 0.625rem + 0.25vw, 0.75rem);
    font-weight: 400;
    line-height: 1.5;
    color: #64748b;
}

.ashrams-checkout__summary-mobile-toggle {
    display: none;
}

.ashrams-checkout__summary-date-item--travellers {
    display: none;
}

.ashrams-checkout__summary-date-label--mobile,
.ashrams-checkout__pay-now-label--mobile {
    display: none;
}

.ashrams-checkout__summary-line--payment-type {
    display: none;
}

.ashrams-checkout__summary-panel {
    display: contents;
}

.ashrams-checkout__summary-line-label--mobile {
    display: none;
}

.ashrams-checkout__summary-body {
    display: contents;
}

/* Mobile checkout — Figma ≤800px */
@media (max-width: 799px) {
    body.ashrams-checkout-page {
        --checkout-mobile-pad: clamp(1rem, 4vw, 1.25rem);
        --checkout-shell-pad-x: var(--checkout-mobile-pad);
    }

    body.ashrams-checkout-page .ashrams-checkout-main {
        padding-top: 16px;
    }

    body.ashrams-checkout-page .ashrams-checkout__shell.container.cnt-max__1320 {
        padding: 16px var(--checkout-shell-pad-x);
    }

    body.ashrams-checkout-page .ashrams-header__nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-inline: var(--checkout-shell-pad-x);
        min-height: clamp(72px, 22vw, 104px);
        min-width: 0;
        width: 100%;
        max-width: var(--checkout-content-max);
        overflow-x: clip;
        gap: 8px;
    }

    body.ashrams-checkout-page .ashrams-header__wordmark--checkout,
    body.ashrams-checkout-page .ashrams-header__logo,
    body.ashrams-checkout-page .ashrams-header__actions {
        grid-column: auto;
        justify-self: auto;
    }

    body.ashrams-checkout-page .ashrams-header__logo {
        width: clamp(96px, 32vw, 132px);
        height: auto;
        min-width: 0;
        flex-shrink: 1;
    }

    body.ashrams-checkout-page .ashrams-header__logo img {
        width: 100%;
        height: auto;
        max-width: 132px;
        max-height: 80px;
        object-fit: contain;
        object-position: left center;
    }

    body.ashrams-checkout-page .ashrams-header__actions {
        gap: 12px;
        flex-shrink: 0;
        min-width: 0;
    }

    body.ashrams-checkout-page .ashrams-checkout__summary-pin {
        top: calc(clamp(72px, 22vw, 104px) + 16px);
    }

    .ashrams-checkout__grid {
        display: flex;
        flex-direction: column;
        gap: var(--checkout-section-gap);
    }

    body.ashrams-checkout-page .ashrams-checkout__title {
        order: 1;
        margin-bottom: 0;
        font-size: clamp(1.25rem, 5vw, 1.875rem);
    }

    body.ashrams-checkout-page .ashrams-checkout__section--currency,
    body.ashrams-checkout-page .ashrams-checkout__section--pay,
    body.ashrams-checkout-page .ashrams-checkout__section--pay-with {
        padding-top: 24px;
    }

    body.ashrams-checkout-page .ashrams-checkout__form-col {
        display: contents;
    }

    .ashrams-checkout__form-main {
        order: 2;
        gap: var(--checkout-section-gap);
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    body.ashrams-checkout-page {
        --checkout-mobile-submit-h: 6.5rem;
        --checkout-mobile-summary-bar-h: 3.5rem;
        padding-bottom: calc(var(--checkout-mobile-submit-h) + var(--checkout-mobile-summary-bar-h) + 1rem);
    }

    body.ashrams-checkout-page .ashrams-checkout__summary {
        display: block;
        position: fixed;
        left: 0;
        right: 0;
        bottom: var(--checkout-mobile-submit-h);
        z-index: 60;
        order: unset;
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        pointer-events: none;
    }

    body.ashrams-checkout-page .ashrams-checkout__summary-track {
        display: none;
    }

    .ashrams-checkout__form-tail {
        order: 4;
        gap: var(--checkout-section-gap);
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    body.ashrams-checkout-page .ashrams-checkout__section {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .ashrams-checkout__section--pre-post,
    .ashrams-checkout__section--retreat-stay {
        overflow: hidden;
    }

    body.ashrams-checkout-page .ashrams-checkout__summary-pin {
        position: static;
        max-width: none;
        gap: 0;
        pointer-events: auto;
    }

    .ashrams-checkout__reviews {
        display: none;
    }

    .ashrams-checkout__summary-card {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 0;
        border: none;
        border-radius: 24px 24px 0 0;
        background: #ffffff;
        box-shadow: 0 -8px 32px rgba(15, 23, 42, 0.14);
        overflow: hidden;
        pointer-events: auto;
    }

    .ashrams-checkout__summary-mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        width: 100%;
        margin: 0;
        padding: 16px 20px;
        border: none;
        background: #ffffff;
        cursor: pointer;
        text-align: left;
    }

    .ashrams-checkout__summary-mobile-toggle-copy {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        flex: 1;
        min-width: 0;
    }

    body.ashrams-checkout-page .ashrams-checkout__summary-mobile-toggle-label {
        font-family: var(--checkout-field-font), 'Inter', system-ui, sans-serif;
        font-size: 16px;
        font-weight: 600;
        line-height: 24px;
        color: #1f2937;
    }

    .ashrams-checkout__summary-mobile-toggle-amount {
        font-family: var(--checkout-field-font), 'Inter', system-ui, sans-serif;
        font-size: 16px;
        font-weight: 700;
        line-height: 24px;
        color: #111827;
        white-space: nowrap;
    }

    .ashrams-checkout__summary-mobile-toggle-icon {
        box-sizing: border-box;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        flex-shrink: 0;
        border: 1px solid #1a1c1c;
        border-radius: 9999px;
        color: #1a1c1c;
        line-height: 0;
        transition: transform 0.2s ease;
    }

    .ashrams-checkout__summary-mobile-toggle-icon svg {
        display: block;
        width: 12px;
        height: 12px;
    }

    .ashrams-checkout__summary-card.is-expanded .ashrams-checkout__summary-mobile-toggle-icon {
        transform: rotate(180deg);
    }

    .ashrams-checkout__summary-panel {
        display: none;
        flex-direction: column;
        gap: 16px;
        max-height: min(68vh, 36rem);
        overflow: hidden;
        padding: 0 20px 16px;
        background: #ffffff;
    }

    .ashrams-checkout__summary-card.is-expanded .ashrams-checkout__summary-panel {
        display: flex;
    }

    .ashrams-checkout__summary-body {
        display: flex;
        flex-direction: column;
        gap: 16px;
        min-height: 0;
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 4px 0 0;
    }

    .ashrams-checkout__summary-desktop-only {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .ashrams-checkout__summary-head {
        align-items: flex-start;
        gap: 12px;
        min-height: 0;
        padding-bottom: 0;
    }

    .ashrams-checkout__summary-thumb {
        flex: 0 0 72px;
        width: 72px;
        height: 72px;
        border-radius: 12px;
        overflow: hidden;
    }

    .ashrams-checkout__summary-title {
        font-family: var(--checkout-field-font), 'Inter', system-ui, sans-serif;
        font-size: 16px;
        font-weight: 600;
        line-height: 22px;
        color: #111827;
        margin: 0 0 6px;
    }

    .ashrams-checkout__summary-loc {
        font-size: 14px;
        line-height: 20px;
        color: #6b7280;
    }

    .ashrams-checkout__summary-dates {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 16px;
        row-gap: 16px;
        padding: 16px;
        border: none;
        border-radius: 12px;
        background: #f3f4f6;
    }

    .ashrams-checkout__summary-date-item {
        gap: 4px;
    }

    .ashrams-checkout__summary-date-item--currency {
        display: none;
    }

    .ashrams-checkout__summary-date-item--travellers {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .ashrams-checkout__summary-date-label--desktop {
        display: none;
    }

    .ashrams-checkout__summary-date-label--mobile {
        display: inline;
    }

    .ashrams-checkout__summary-date-label i {
        display: none;
    }

    .ashrams-checkout__summary-date-label {
        font-size: 10px;
        font-weight: 500;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        color: #6b7280;
    }

    .ashrams-checkout__summary-date-item strong {
        font-size: 16px;
        font-weight: 700;
        line-height: 24px;
        color: #111827;
    }

    .ashrams-checkout__summary-pricing {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding-top: 0;
    }

    .ashrams-checkout__summary-line--payment-type {
        display: flex;
    }

    .ashrams-checkout__summary-line-label--desktop {
        display: none;
    }

    .ashrams-checkout__summary-line-label--mobile {
        display: inline;
    }

    body.ashrams-checkout-page .ashrams-checkout__summary-line {
        font-family: var(--checkout-field-font);
        font-size: 16px;
        line-height: 24px;
        align-items: center;
    }

    body.ashrams-checkout-page .ashrams-checkout__summary-line-label {
        font-size: 16px;
        font-weight: 400;
        color: #6b7280;
    }

    body.ashrams-checkout-page .ashrams-checkout__summary-line-value {
        font-size: 16px;
        font-weight: 500;
        color: #1f2937;
    }

    .ashrams-checkout__pay-now-label--desktop {
        display: none;
    }

    .ashrams-checkout__pay-now-label--mobile {
        display: inline;
    }

    .ashrams-checkout__pay-now,
    body.ashrams-checkout-page .ashrams-checkout__pay-now {
        margin-top: 4px;
        min-height: 56px;
        padding: 16px;
        border: none;
        border-radius: 12px;
        background: #f3f4f6;
    }

    .ashrams-checkout__pay-now-label {
        font-family: var(--checkout-field-font);
        font-size: 16px;
        font-weight: 600;
        line-height: 24px;
        color: #1f2937;
    }

    .ashrams-checkout__pay-now-amount {
        font-family: var(--checkout-field-font);
        font-size: 16px;
        font-weight: 700;
        line-height: 24px;
        color: #111827;
    }

    /* Fixed Complete Payment dock */
    body.ashrams-checkout-page .ashrams-checkout__submit-wrap {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 61;
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin: 0;
        padding: 12px 20px calc(12px + env(safe-area-inset-bottom, 0px));
        background: #ffffff;
        border-top: none;
        box-sizing: border-box;
    }

    /* Tree offset lives inside the collapsible summary panel */
    .ashrams-checkout__summary-panel .ashrams-checkout__tree-offset {
        flex-shrink: 0;
        margin: 0;
        padding: 16px;
        border-radius: 12px;
        background: #f3f4f6;
        gap: 12px;
        align-items: flex-start;
    }

    body.ashrams-checkout-page .ashrams-checkout__summary-panel .ashrams-checkout__tree-offset-copy {
        font-size: 12px;
        font-weight: 400;
        line-height: 20px;
        color: #1f2937;
        white-space: normal;
    }

    body.ashrams-checkout-page .ashrams-checkout__submit {
        min-height: 56px;
        padding: 16px;
        border-radius: 12px;
        font-size: 16px;
        line-height: 24px;
    }

    body.ashrams-checkout-page .ashrams-checkout__terms {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        width: 100%;
        margin: 0;
        font-size: 12px;
        font-weight: 400;
        line-height: 16px;
        text-align: left;
        color: #6b7280;
        white-space: nowrap;
    }

    body.ashrams-checkout-page .ashrams-checkout__terms-intro {
        display: none;
    }

    body.ashrams-checkout-page .ashrams-checkout__terms-link {
        color: #1f2937;
        text-decoration: none;
    }

    body.ashrams-checkout-page.ashrams-checkout-drawer-open {
        overflow: hidden;
    }

    body.ashrams-checkout-page.ashrams-checkout-drawer-open::before {
        content: '';
        position: fixed;
        inset: 0;
        z-index: 55;
        background: rgba(15, 23, 42, 0.28);
    }

    .ashrams-checkout__fields-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .ashrams-checkout__fields-row > .ashrams-checkout__field {
        width: 100%;
    }

    .ashrams-checkout__figma-field {
        min-height: 72px;
        padding: 14px 16px;
    }

    #guest-fields-container {
        margin-top: 12px;
    }

    .ashrams-checkout__section--pre-post .ashrams-checkout__tier-grid {
        display: flex;
        flex-wrap: nowrap;
        align-items: stretch;
        gap: 12px;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 4px;
    }

    .ashrams-checkout__section--pre-post .ashrams-checkout__tier-grid::-webkit-scrollbar {
        display: none;
    }

    .ashrams-checkout__tier-card {
        flex: 0 0 clamp(200px, 58%, 220px);
        max-width: clamp(200px, 58%, 220px);
        scroll-snap-align: start;
        scroll-snap-stop: always;
        box-sizing: border-box;
    }

    .ashrams-checkout__tier-body {
        padding: 32px;
        gap: 16px;
    }

    .ashrams-checkout__tier-head {
        gap: 6px;
    }

    .ashrams-checkout__tier-desc {
        font-size: 11px;
        line-height: 1.5;
        text-align: center;
    }

    .ashrams-checkout__tier-btn {
        align-self: center;
        width: auto;
        min-width: 0;
        max-width: 100%;
    }

    .ashrams-checkout__tier-dots {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 12px;
    }

    .ashrams-checkout__room-card-top {
        grid-template-columns: 1fr;
        gap: 16px;
        align-items: start;
    }

    .ashrams-checkout__room-media {
        max-width: 100%;
    }

    .ashrams-checkout__room-package.is-featured {
        border-radius: 16px;
    }

    .ashrams-checkout__room-package.is-featured .ashrams-checkout__room-card--active {
        padding: 0 16px 16px;
    }

    .ashrams-checkout__room-card--active {
        padding: 16px;
    }

    .ashrams-checkout__room-card--active .ashrams-checkout__room-desc {
        max-width: none;
    }

    .ashrams-checkout__room-amenities {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px 16px;
    }

    .ashrams-checkout__room-upgrade {
        min-height: 56px;
        padding: 14px 16px;
        border-radius: 12px;
    }

    .ashrams-checkout__policy-banner {
        min-height: 48px;
        padding: 12px 16px;
    }

    body.ashrams-checkout-page .ashrams-checkout__policy-banner-text {
        font-size: 13px;
    }

    .ashrams-checkout__addons-heading {
        font-size: 1.125rem;
        margin-bottom: 6px;
    }

    body.ashrams-checkout-page .ashrams-checkout__addons-subtitle {
        font-size: 13px;
        margin-bottom: 16px;
    }

    /* Figma: checkbox + name + price — name gets its own column */
    .ashrams-checkout__addon {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) auto;
        align-items: center;
        gap: 10px 12px;
        min-height: 0;
        padding: 16px;
    }

    .ashrams-checkout__addon-label-group {
        display: contents;
    }

    .ashrams-checkout__addon-control {
        grid-column: 1;
        margin-right: 0;
        align-self: start;
        margin-top: 2px;
    }

    .ashrams-checkout__addon-name {
        grid-column: 2;
        font-size: 14px;
        line-height: 1.4;
    }

    .ashrams-checkout__addon-price {
        grid-column: 3;
        align-self: center;
        font-size: 14px;
        font-weight: 400;
        line-height: 1.3;
    }

    .ashrams-checkout__pay-heading,
    .ashrams-checkout__pay-with-heading {
        font-size: 1.125rem;
        margin-bottom: 12px;
    }

    /* Figma: label + price on one row, note full width below */
    .ashrams-checkout__pay-option {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) auto;
        grid-template-rows: auto auto;
        align-items: start;
        gap: 6px 12px;
        min-height: 0;
        padding: 16px;
    }

    .ashrams-checkout__pay-option-main {
        display: contents;
        margin: 0;
    }

    .ashrams-checkout__pay-option-radio {
        grid-column: 1;
        grid-row: 1 / -1;
        align-self: start;
        margin-top: 2px;
    }

    .ashrams-checkout__pay-option-label {
        grid-column: 2;
        grid-row: 1;
        font-size: 1rem;
        line-height: 1.3;
    }

    .ashrams-checkout__pay-option-price {
        grid-column: 3;
        grid-row: 1;
        align-self: center;
        font-size: 1rem;
        line-height: 1.3;
    }

    body.ashrams-checkout-page .ashrams-checkout__pay-option-note {
        grid-column: 2 / -1;
        grid-row: 2;
        font-size: 12px;
        line-height: 1.5;
    }

    body.ashrams-checkout-page .ashrams-checkout__figma-field--contact {
        min-height: 72px;
        padding: 14px 16px;
    }

    body.ashrams-checkout-page .ashrams-checkout__figma-field--contact .ashrams-checkout__figma-field__input {
        padding: 0;
    }

    body.ashrams-checkout-page .ashrams-checkout__figma-field--contact .ashrams-checkout__figma-field__input[readonly] {
        background: transparent;
    }

    .ashrams-checkout__contact-fields {
        gap: 12px;
    }

    .ashrams-checkout__pay-methods {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .ashrams-checkout__pay-method {
        min-height: 52px;
    }

    body.ashrams-checkout-page .ashrams-checkout__pay-secure-note {
        text-align: center;
        margin-top: 12px;
    }

    body.ashrams-checkout-page .ashrams-checkout__submit {
        min-height: 52px;
        border-radius: 12px;
    }

    body.ashrams-checkout-page .ashrams-checkout__terms {
        font-size: 12px;
        line-height: 16px;
    }

    .ashrams-checkout__summary-line-label--desktop {
        display: none;
    }

    .ashrams-checkout__summary-line-label--mobile {
        display: inline;
    }
}

/* Phone checkout — Figma 393px (≤500px) */
@media (max-width: 500px) {
    body.ashrams-checkout-page {
        --checkout-mobile-phone-pad: 16px;
        --checkout-shell-pad-x: var(--checkout-mobile-phone-pad);
        --checkout-phone-section-gap: 50px;
        --checkout-phone-field-radius: 12px;
    }

    body.ashrams-checkout-page .ashrams-header {
        border-bottom: 1px solid #f3f4f6;
    }

    body.ashrams-checkout-page .ashrams-header__nav {
        min-height: 67px;
        padding: 12px var(--checkout-shell-pad-x);
        gap: 12px;
    }

    body.ashrams-checkout-page .ashrams-header__wordmark--checkout .ashrams-header__wordmark-text--desktop {
        display: none;
    }

    body.ashrams-checkout-page .ashrams-header__wordmark-logo {
        display: block;
        width: 92px;
        height: 33px;
        object-fit: contain;
        object-position: left center;
    }

    body.ashrams-checkout-page .ashrams-header__logo {
        width: 92px;
        height: 33px;
    }

    body.ashrams-checkout-page .ashrams-header__logo img {
        width: 92px;
        height: 33px;
        max-width: 92px;
        max-height: 33px;
        object-fit: contain;
        object-position: left center;
    }

    body.ashrams-checkout-page .ashrams-header__currency-btn {
        box-sizing: border-box;
        width: auto;
        min-width: 98px;
        height: 42px;
        min-height: 42px;
        padding: 8px 5px;
        gap: 8px;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
    }
    

    body.ashrams-checkout-page .ashrams-header__currency-label {
        font-size: 11px;
        font-weight: 700;
        line-height: 1;
        color: #334155;
    }

    body.ashrams-checkout-page .ashrams-header__currency-icon svg {
        width: 10px;
        height: 7px;
    }

    body.ashrams-checkout-page .ashrams-header__currency-chevron {
        font-size: 10px;
        color: #94a3b8;
    }

    body.ashrams-checkout-page .ashrams-checkout-main {
        padding-top: 0;
    }

    body.ashrams-checkout-page .ashrams-checkout__shell.container.cnt-max__1320 {
        padding: 40px var(--checkout-shell-pad-x) var(--checkout-shell-pad-x);
    }

    .ashrams-checkout__grid {
        gap: 25px;
    }

    body.ashrams-checkout-page .ashrams-checkout__title {
        font-family: var(--ashrams-manrope, 'Manrope', var(--ashrams-sans), sans-serif);
        font-size: 20px;
        font-weight: 500;
        line-height: 32px;
        color: #1a202c;
    }

    body.ashrams-checkout-page h1.ashrams-checkout__title {
        font-size: 20px;
        font-weight: 600;
       
    }

    .ashrams-checkout__form-main,
    .ashrams-checkout__form-tail {
        gap: var(--checkout-phone-section-gap);
    }

    .ashrams-checkout__section:first-of-type {
        gap: 16px;
    }

    body.ashrams-checkout-page .ashrams-checkout__section--currency,
    body.ashrams-checkout-page .ashrams-checkout__section--pay,
    body.ashrams-checkout-page .ashrams-checkout__section--pay-with {
        padding-top: 0;
    }

    body.ashrams-checkout-page .ashrams-checkout__figma-field__label {
        font-family: var(--checkout-heading-font);
        font-size: 12px;
        font-weight: 400;
        line-height: 18px;
        letter-spacing: 0;
        text-transform: none;
        color: #718096;
    }

    body.ashrams-checkout-page .ashrams-checkout__figma-field--dates .ashrams-checkout__figma-field__value,
    body.ashrams-checkout-page .ashrams-checkout__figma-field--dates .ashrams-checkout__date-display,
    body.ashrams-checkout-page .ashrams-checkout__figma-field--guests .ashrams-checkout__figma-field__guest-value,
    body.ashrams-checkout-page .ashrams-checkout__figma-field--company .ashrams-checkout__figma-field__guest-value,
    body.ashrams-checkout-page .ashrams-checkout__figma-field--total .ashrams-checkout__figma-field__guest-value,
    body.ashrams-checkout-page .ashrams-checkout__figma-field--guest-name .ashrams-checkout__figma-field__input {
        font-family: var(--checkout-heading-font);
        font-size: 16px;
        font-weight: 500;
        line-height: 24px;
        color: #1a202c;
    }

    .ashrams-checkout__figma-field--dates,
    .ashrams-checkout__figma-field--guests,
    .ashrams-checkout__figma-field--guest-name {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-rows: auto auto;
        align-items: center;
        gap: 4px 12px;
        min-height: 72px;
        padding: 12px 16px;
        border-radius: var(--checkout-phone-field-radius);
    }

    .ashrams-checkout__figma-field--dates .ashrams-checkout__figma-field__body,
    .ashrams-checkout__figma-field--guests .ashrams-checkout__figma-field__body,
    .ashrams-checkout__figma-field--guest-name .ashrams-checkout__figma-field__body {
        display: contents;
    }

    .ashrams-checkout__figma-field--dates .ashrams-checkout__figma-field__label,
    .ashrams-checkout__figma-field--guests .ashrams-checkout__figma-field__label,
    .ashrams-checkout__figma-field--guest-name .ashrams-checkout__figma-field__label {
        grid-column: 1 / -1;
    }

    .ashrams-checkout__figma-field--dates .ashrams-checkout__figma-field__value,
    .ashrams-checkout__figma-field--dates .ashrams-checkout__date-display,
    .ashrams-checkout__figma-field--guests .ashrams-checkout__figma-field__guest-value,
    .ashrams-checkout__figma-field--guest-name .ashrams-checkout__figma-field__input {
        grid-column: 1;
        grid-row: 2;
        min-width: 0;
    }

    .ashrams-checkout__figma-field--dates .ashrams-checkout__figma-field__action {
        grid-column: 2;
        grid-row: 2;
        align-self: center;
        color: #9ca3af;
    }

    .ashrams-checkout__figma-field--guest-name .ashrams-checkout__figma-field__action {
        grid-column: 2;
        grid-row: 2;
        align-self: center;
        color: #000000;
    }

    .ashrams-checkout__figma-field--guests .ashrams-checkout__guest-stepper {
        grid-column: 2;
        grid-row: 2;
        align-self: center;
    }

    body.ashrams-checkout-page .ashrams-checkout__guest-stepper {
        gap: 12px;
    }

    body.ashrams-checkout-page .ashrams-checkout__guest-stepper-btn {
        width: 18px;
        height: 18px;
        border-radius: 12px;
        font-size: 12px;
        font-weight: 400;
        color: #1a1c1c;
    }

    body.ashrams-checkout-page .ashrams-checkout__guest-stepper-btn--minus,
    body.ashrams-checkout-page .ashrams-checkout__guest-stepper-btn--plus {
        border: 1px solid #cbd5e0;
        color: #1a1c1c82;
        opacity: 1;
    }

    body.ashrams-checkout-page .ashrams-checkout__guest-stepper-btn--minus:disabled {
        opacity: 1;
    }

    .ashrams-checkout__fields-row {
        gap: 12px;
    }

    #guest-fields-container {
        margin-top: 0;
        gap: 12px;
    }

    .ashrams-checkout__policy-banner {
        min-height: 0;
        padding: 15px 16px 16px;
        border-radius: var(--checkout-phone-field-radius);
        background: #e7f9ee;
        border: 1px solid #bbf7d0;
    }

    body.ashrams-checkout-page .ashrams-checkout__policy-banner-text {
        font-family: var(--checkout-heading-font);
        font-size: 13px;
        font-weight: 600;
        line-height: 18px;
        color: #1d7c4d;
    }

    body.ashrams-checkout-page .ashrams-checkout__section--currency {
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding-top: 0;
    }

    .ashrams-checkout__currency-heading,
    .ashrams-checkout__addons-heading {
        font-family: var(--checkout-heading-font);
        font-size: 20px;
        font-weight: 600;
        line-height: 32px;
        color: var(--checkout-ink);
        margin: 0;
    }

    .ashrams-checkout__currency-card {
        flex-direction: column;
        align-items: stretch;
        min-height: 84px;
        padding: 16px;
        gap: 4px;
        border-radius: var(--checkout-phone-field-radius);
    }

    .ashrams-checkout__currency-full-price {
        display: none;
    }

    .ashrams-checkout__currency-card-main {
        width: 100%;
        gap: 4px;
    }

    .ashrams-checkout__currency-picker {
        width: 100%;
    }

    .ashrams-checkout__currency-picker-btn {
        box-sizing: border-box;
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        font-family: var(--checkout-field-font);
        font-size: 18px;
        font-weight: 700;
        line-height: 24px;
        color: #334155;
    }

    .ashrams-checkout__currency-picker-chevron {
        box-sizing: border-box;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
        flex-shrink: 0;
        border: 1px solid #6b7280;
        border-radius: 9999px;
        color: #6b7280;
        line-height: 0;
        font-size: 0;
    }

    .ashrams-checkout__currency-picker-chevron svg {
        display: block;
        width: 12px;
        height: 12px;
    }

    .ashrams-checkout__currency-note {
        font-family: var(--checkout-heading-font);
        font-size: 12px;
        font-weight: 400;
        line-height: 18px;
        color: #6b7280;
    }

    body.ashrams-checkout-page .ashrams-checkout__section--addons {
        display: flex;
        flex-direction: column;
        gap: 4px;
        padding-top: 0;
    }

    body.ashrams-checkout-page .ashrams-checkout__addons-subtitle {
        font-family: var(--checkout-heading-font);
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
        color: #6b7280;
        margin: 0;
    }

    .ashrams-checkout__addon-list {
        gap: 12px;
        padding-top: 12px;
    }

    .ashrams-checkout__addon {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        min-height: 58px;
        padding: 16px;
        border-radius: var(--checkout-phone-field-radius);
    }

    .ashrams-checkout__addon-label-group {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        min-width: 0;
        flex: 1;
    }

    .ashrams-checkout__addon-control {
        width: 20px;
        height: 20px;
        margin: 0;
        border-radius: 9999px;
        border: 1px solid #d1d5db;
        align-self: center;
    }

    .ashrams-checkout__addon-name {
        font-family: var(--checkout-heading-font);
        font-size: 16px;
        font-weight: 500;
        line-height: 24px;
        color: #374151;
    }

    .ashrams-checkout__addon-price {
        font-family: var(--checkout-heading-font);
        font-size: 16px;
        font-weight: 700;
        line-height: 24px;
        color: #111827;
        flex-shrink: 0;
    }

    /* Mobile dock summary — keep Figma bottom sheet */
    .ashrams-checkout__summary-card {
        gap: 0;
        padding: 0;
        border: none;
        border-radius: 24px 24px 0 0;
        box-shadow: 0 -8px 32px rgba(15, 23, 42, 0.14);
    }

    .ashrams-checkout__summary-mobile-toggle {
        padding: 16px 20px;
        gap: 12px;
    }

    body.ashrams-checkout-page .ashrams-checkout__summary-mobile-toggle-label {
        font-family: var(--checkout-field-font);
        font-size: 16px;
        font-weight: 600;
        line-height: 24px;
        color: #1f2937;
    }

    .ashrams-checkout__summary-mobile-toggle-icon {
        width: 32px;
        height: 32px;
        color: #1a1c1c;
    }

    .ashrams-checkout__summary-pricing {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding-top: 0;
    }

    .ashrams-checkout__summary-lines {
        gap: 12px;
    }

    body.ashrams-checkout-page .ashrams-checkout__summary-line {
        font-family: var(--checkout-field-font);
        font-size: 16px;
        line-height: 24px;
    }

    body.ashrams-checkout-page .ashrams-checkout__summary-line-label {
        font-size: 16px;
        font-weight: 400;
        color: #6b7280;
    }

    body.ashrams-checkout-page .ashrams-checkout__summary-line-value {
        font-size: 16px;
        font-weight: 500;
        color: #1f2937;
    }

    body.ashrams-checkout-page .ashrams-checkout__pay-now {
        margin-top: 4px;
        min-height: 56px;
        padding: 16px;
        border: none;
        border-radius: 12px;
        background: #f3f4f6;
    }

    .ashrams-checkout__pay-now-label {
        font-family: var(--checkout-field-font);
        font-size: 16px;
        font-weight: 600;
        line-height: 24px;
        color: #1f2937;
    }

    .ashrams-checkout__pay-now-amount {
        font-family: var(--checkout-field-font);
        font-size: 16px;
        font-weight: 700;
        line-height: 24px;
        color: #111827;
    }

    /* Pay now */
    body.ashrams-checkout-page .ashrams-checkout__section--pay {
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding-top: 0;
    }

    .ashrams-checkout__pay-heading,
    .ashrams-checkout__pay-with-heading {
        font-family: var(--checkout-heading-font);
        font-size: 20px;
        font-weight: 700;
        line-height: 32px;
        color: #1a202c;
        margin: 0;
    }

    .ashrams-checkout__pay-options {
        gap: 12px;
    }

    .ashrams-checkout__pay-option {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) auto;
        grid-template-rows: auto auto;
        align-items: start;
        gap: 4px 12px;
        min-height: 0;
        padding: 16px;
        border: 1px solid #e2e8f0;
        border-radius: var(--checkout-phone-field-radius);
    }

    .ashrams-checkout__pay-option:has(.ashrams-checkout__pay-option-input:checked) {
        border: 2px solid #111111;
        background: #ffffff;
    }

    .ashrams-checkout__pay-option-main {
        display: contents;
        margin: 0;
    }

    .ashrams-checkout__pay-option-radio {
        grid-column: 1;
        grid-row: 1;
        align-self: center;
        width: 20px;
        height: 20px;
        margin: 0;
        border: 2px solid #d1d5db;
    }

    .ashrams-checkout__pay-option:has(.ashrams-checkout__pay-option-input:checked) .ashrams-checkout__pay-option-radio {
        border-color: #1a1c1c;
    }

    .ashrams-checkout__pay-option:has(.ashrams-checkout__pay-option-input:checked) .ashrams-checkout__pay-option-radio::after {
        inset: 5px;
        background: #1a1c1c;
    }

    .ashrams-checkout__pay-option-label {
        grid-column: 2;
        grid-row: 1;
        font-family: var(--checkout-heading-font);
        font-size: 18px;
        font-weight: 700;
        line-height: 28px;
        color: #1a202c;
    }

    .ashrams-checkout__pay-option-price {
        grid-column: 3;
        grid-row: 1;
        align-self: center;
        font-family: var(--checkout-heading-font);
        font-size: 18px;
        font-weight: 700;
        line-height: 28px;
        color: #1a1c1c;
    }

    body.ashrams-checkout-page .ashrams-checkout__pay-option-note {
        grid-column: 2 / -1;
        grid-row: 2;
        font-family: var(--checkout-heading-font);
        font-size: 12px;
        font-weight: 400;
        line-height: 18px;
        color: #6b7280;
    }

    /* Contact */
    body.ashrams-checkout-page .ashrams-checkout__section--contact {
        display: flex;
        flex-direction: column;
        gap: 11px;
        padding-top: 0;
    }

    .ashrams-checkout__contact-fields {
        gap: 12px;
    }

    body.ashrams-checkout-page .ashrams-checkout__figma-field--contact,
    body.ashrams-checkout-page .ashrams-checkout__figma-field--contact-phone {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        min-height: 71px;
        padding: 12px 16px;
        border-radius: var(--checkout-phone-field-radius);
    }

    body.ashrams-checkout-page .ashrams-checkout__figma-field--contact .ashrams-checkout__figma-field__body,
    body.ashrams-checkout-page .ashrams-checkout__figma-field--contact-phone .ashrams-checkout__figma-field__body {
        gap: 4px;
        width: 100%;
    }

    body.ashrams-checkout-page .ashrams-checkout__figma-field--contact .ashrams-checkout__figma-field__label,
    body.ashrams-checkout-page .ashrams-checkout__figma-field--contact-phone .ashrams-checkout__figma-field__label {
        font-family: var(--checkout-heading-font);
        font-size: 12px;
        font-weight: 400;
        line-height: 18px;
        letter-spacing: 0;
        text-transform: none;
        color: #718096;
    }

    body.ashrams-checkout-page .ashrams-checkout__figma-field--contact .ashrams-checkout__figma-field__input,
    body.ashrams-checkout-page .ashrams-checkout__figma-field--contact-phone .ashrams-checkout__figma-field__input {
        font-family: var(--checkout-heading-font);
        font-size: 16px;
        font-weight: 500;
        line-height: 20px;
        color: #6b7280;
    }

    .ashrams-checkout__contact-phone-row {
        align-items: center;
        gap: 8px;
    }

    .ashrams-checkout__phone-country {
        box-sizing: border-box;
        display: inline-flex;
        align-items: center;
        gap: 4px;
        padding: 0 8px 0 0;
        border-right: 1px solid #e5e7eb;
    }

    body.ashrams-checkout-page .ashrams-checkout__phone-country .fa-chevron-down {
        font-size: 8px;
        color: #9ca3af;
    }

    body.ashrams-checkout-page .ashrams-checkout__contact-note {
        font-family: var(--checkout-heading-font);
        font-size: 11px;
        font-weight: 400;
        line-height: 14px;
        color: #6b7280;
        margin: 0;
    }

    body.ashrams-checkout-page .ashrams-checkout__contact-note a {
        color: #6b7280;
        text-decoration: underline;
        text-underline-offset: 2px;
    }

    /* Pay with */
    body.ashrams-checkout-page .ashrams-checkout__section--pay-with {
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding-top: 0;
    }

    .ashrams-checkout__pay-methods {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .ashrams-checkout__pay-method--paypal .ashrams-checkout__pay-method-body {
        min-height: 60px;
        padding: 16px;
        border: 2px solid #009cde;
        border-radius: var(--checkout-phone-field-radius);
    }

    .ashrams-checkout__pay-method--stripe .ashrams-checkout__pay-method-body {
        min-height: 68px;
        padding: 16px;
        border-radius: var(--checkout-phone-field-radius);
    }

    .ashrams-checkout__pay-method--stripe.is-selected .ashrams-checkout__pay-method-body,
    .ashrams-checkout__pay-method--stripe:has(input:checked) .ashrams-checkout__pay-method-body {
        background: #6772e5;
        border: 2px solid #737373;
    }

    .ashrams-checkout__pay-method--stripe.is-selected .ashrams-checkout__pay-method-stripe-label,
    .ashrams-checkout__pay-method--stripe:has(input:checked) .ashrams-checkout__pay-method-stripe-label {
        font-size: 28px;
        font-weight: 700;
        line-height: 32px;
        color: #ffffff;
    }

    body.ashrams-checkout-page .ashrams-checkout__pay-secure-note {
        font-size: 12px;
        margin-top: 0;
    }
}

/* Ultra-narrow phones — pay cards, add-ons + header (Figma ≤348px) */
@media (max-width: 348px) {
    /* Name full width, price on second row — readable at ~260px */
    .ashrams-checkout__addon {
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        row-gap: 6px;
        padding: 14px 16px;
    }

    .ashrams-checkout__addon-name {
        grid-column: 2;
        grid-row: 1;
        font-size: 13px;
        line-height: 1.45;
    }

    .ashrams-checkout__addon-price {
        grid-column: 2;
        grid-row: 2;
        justify-self: end;
        font-size: 13px;
    }

    .ashrams-checkout__pay-option {
        padding: 14px 16px;
        column-gap: 10px;
    }

    .ashrams-checkout__pay-option-label,
    .ashrams-checkout__pay-option-price {
        font-size: 0.9375rem;
    }

    body.ashrams-checkout-page .ashrams-checkout__pay-option-note {
        font-size: 11px;
        line-height: 1.45;
    }

    body.ashrams-checkout-page .ashrams-header__logo {
        width: clamp(84px, 27vw, 108px);
    }

    body.ashrams-checkout-page .ashrams-header__logo img {
        max-width: 108px;
        max-height: 66px;
    }

    body.ashrams-checkout-page .ashrams-header__currency-btn {
        min-height: 36px;
        padding: 6px 10px;
        gap: 6px;
        font-size: 12px;
    }

    body.ashrams-checkout-page .ashrams-header__currency-label {
        font-size: 12px;
    }

    body.ashrams-checkout-page .ashrams-header__currency-icon svg {
        width: 16px;
        height: 16px;
    }
}
