.rfr-booking {
    --rfr-ink: #191c20;
    --rfr-muted: #666c75;
    --rfr-line: #dcdfe3;
    --rfr-accent: #08fc4b;
    box-sizing: border-box;
    width: 100%;
    margin: 24px 0;
    padding: clamp(22px, 4vw, 46px);
    border: 1px solid var(--rfr-line);
    border-radius: 20px;
    background: #fff;
    color: var(--rfr-ink);
    font-family: inherit;
    text-align: left;
    box-shadow: 0 12px 36px rgb(25 28 32 / 5%);
}
.rfr-booking *, .rfr-modal, .rfr-header-dates { box-sizing: border-box; }
.rfr-booking .rfr-eyebrow { display: block; margin-bottom: 12px; font-size: 11px; font-weight: 700; letter-spacing: .16em; color: var(--rfr-muted); }
.rfr-booking .rfr-title { margin: 0 0 10px; font-family: inherit; font-size: clamp(24px, 3vw, 36px); font-weight: 700; line-height: 1.2; color: var(--rfr-ink); letter-spacing: -.035em; text-transform: none; }
.rfr-booking .rfr-subtitle { margin: 0 0 26px; max-width: 640px; color: var(--rfr-muted); font-size: 15px; line-height: 1.6; }
.rfr-booking .rfr-date-selector { margin: 0; }
.rfr-booking .rfr-fields { display: grid; grid-template-columns: minmax(0, 1fr) 24px minmax(0, 1fr) minmax(160px, .9fr); align-items: stretch; gap: 14px; }
.rfr-booking .rfr-field { display: flex; flex-direction: column; gap: 6px; min-width: 0; margin: 0; padding: 12px 16px; border: 1px solid var(--rfr-line); border-radius: 10px; background: #f9fafb; font-size: 11px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.rfr-booking .rfr-input { display: block; min-width: 0; width: 100%; max-width: 100%; min-height: 30px; margin: 0; padding: 0; border: 0; border-radius: 2px; background: transparent; box-shadow: none; color: var(--rfr-ink); font-family: inherit; font-size: 16px; font-weight: 500; line-height: 1.5; letter-spacing: normal; color-scheme: light; }
.rfr-booking .rfr-arrow { align-self: center; justify-self: center; font-size: 24px; color: var(--rfr-muted); }
.rfr-booking .rfr-submit { margin: 0; padding: 16px 22px; border: 1px solid var(--rfr-ink); border-radius: 10px; background: var(--rfr-ink); color: #fff; font-family: inherit; font-size: 14px; font-weight: 700; line-height: 1.4; text-transform: none; letter-spacing: normal; cursor: pointer; transition: background .15s, color .15s; }
.rfr-booking .rfr-submit:hover:not(:disabled) { background: var(--rfr-accent); color: var(--rfr-ink); }
.rfr-booking .rfr-submit:disabled, .rfr-booking .rfr-input:disabled { opacity: .55; cursor: wait; }
.rfr-booking .rfr-message { min-height: 22px; margin: 12px 0 0; color: #3a6447; font-size: 13px; line-height: 1.5; }
.rfr-booking .rfr-message-error { color: #a62323; }
.rfr-booking .rfr-retry { padding: 8px 0; border: 0; background: transparent; color: var(--rfr-ink); font: inherit; text-decoration: underline; cursor: pointer; }
.rfr-booking .rfr-retry[hidden] { display: none; }
.rfr-header-dates { display: inline-flex; align-items: center; gap: 9px; max-width: 100%; margin: 0; padding: 10px 15px; border: 1px solid #dcdfe3; border-radius: 999px; background: #fff; color: #191c20; font-family: inherit; font-size: 13px; font-weight: 600; line-height: 1.5; letter-spacing: normal; text-transform: none; white-space: normal; cursor: pointer; }
.rfr-header-dates:hover { background: #f2f5ed; color: #191c20; border-color: #9faa8e; }
.rfr-floating-dates {
    position: fixed;
    right: max(24px, env(safe-area-inset-right));
    bottom: max(24px, env(safe-area-inset-bottom));
    z-index: 9990;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    box-sizing: border-box;
    max-width: calc(100vw - 32px);
    margin: 0;
    padding: 17px 22px;
    border: 1px solid rgb(25 28 32 / 12%);
    border-radius: 22px;
    background: #08fc4b;
    color: #191c20;
    box-shadow: 0 8px 32px rgb(25 28 32 / 20%);
    font-family: inherit;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: normal;
    text-align: left;
    text-transform: none;
    white-space: normal;
    cursor: pointer;
}
.rfr-floating-dates[hidden] { display: none; }
.rfr-floating-dates:hover, .rfr-floating-dates:focus { background: #08fc4b; color: #191c20; }
.rfr-floating-dates:hover { box-shadow: 0 10px 38px rgb(25 28 32 / 28%); }
.rfr-floating-dates:focus-visible { outline: 3px solid #5077bf; outline-offset: 4px; }
.rfr-floating-dates .rfr-floating-label { font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.rfr-floating-dates .rfr-floating-summary { font-size: 14px; font-weight: 700; overflow-wrap: anywhere; }
.rfr-floating-dates .rfr-floating-change { font-size: 12px; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.rfr-modal { position: fixed; inset: 0; width: min(760px, calc(100% - 28px)); max-width: calc(100% - 28px); max-height: calc(100dvh - 40px); margin: auto; padding: 0; overflow: auto; border: 0; border-radius: 20px; background: #fff; font-family: inherit; color: #191c20; box-shadow: 0 24px 90px rgb(0 0 0 / 25%); }
.rfr-modal:not([open]) { display: none; }
.rfr-modal::backdrop { background: rgb(12 16 22 / 62%); backdrop-filter: blur(3px); }
.rfr-modal .rfr-booking { margin: 0; padding-top: 56px; border: 0; box-shadow: none; }
.rfr-modal .rfr-fields { grid-template-columns: minmax(0, 1fr) 24px minmax(0, 1fr); }
.rfr-modal .rfr-submit { grid-column: 1 / -1; }
.rfr-modal .rfr-modal-close { position: absolute; top: 10px; right: 10px; display: grid; place-items: center; width: 40px; height: 40px; margin: 0; padding: 0; border: 0; border-radius: 50%; background: #f0f1f3; color: #191c20; font: inherit; font-size: 26px; cursor: pointer; }
.rfr-booking .rfr-input:focus-visible, .rfr-booking .rfr-submit:focus-visible, .rfr-booking .rfr-retry:focus-visible, .rfr-header-dates:focus-visible, .rfr-modal .rfr-modal-close:focus-visible { outline: 3px solid #5077bf; outline-offset: 4px; }
@media (max-width: 760px) {
    .rfr-booking .rfr-fields { grid-template-columns: minmax(0, 1fr) 24px minmax(0, 1fr); }
    .rfr-booking .rfr-submit { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
    .rfr-floating-dates { right: max(16px, env(safe-area-inset-right)); bottom: max(16px, env(safe-area-inset-bottom)); padding: 13px 17px; border-radius: 18px; }
    .rfr-booking .rfr-fields { grid-template-columns: minmax(0, 1fr); gap: 12px; }
    .rfr-booking .rfr-arrow { display: none; }
    .rfr-booking .rfr-title { font-size: 26px; }
    .rfr-header-dates { font-size: 12px; }
}
@media (prefers-reduced-motion: reduce) { .rfr-booking .rfr-submit { transition: none; } }
.rfr-stock-loading {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 28px;
	background: rgb(255 255 255 / 96%);
	color: #191c20;
	font-family: inherit;
	font-size: 15px;
	line-height: 1.5;
	text-align: center;
}
.rfr-stock-loading[hidden] { display: none; }
.rfr-stock-loading strong { font-size: 20px; }
.rfr-stock-loading span:last-child { max-width: 520px; color: #60656d; }
.rfr-stock-spinner { width: 42px; height: 42px; border: 4px solid #dcdfe3; border-top-color: #191c20; border-radius: 50%; animation: rfr-spin .8s linear infinite; }
@keyframes rfr-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .rfr-stock-spinner { animation-duration: 1.8s; } }
