/* FoxRoam Public Design System — scoped to .fr-* classes */

:root {
	--fr-color-primary: #0b4f6c;
	--fr-color-primary-dark: #083c52;
	--fr-color-accent: #f49d37;
	--fr-color-accent-dark: #c97b25;
	--fr-color-surface: #ffffff;
	--fr-color-background: #f7f9fc;
	--fr-color-text: #10213d;
	--fr-color-muted: #627087;
	--fr-color-border: #e5eaf1;
	--fr-color-success: #23855d;
	--fr-color-error: #c43c4c;
	--fr-color-nature: #2d6a4f;

	--fr-font-base: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--fr-font-display: Georgia, "Times New Roman", serif;

	--fr-text-xs: 0.75rem;
	--fr-text-sm: 0.875rem;
	--fr-text-base: 1rem;
	--fr-text-lg: 1.125rem;
	--fr-text-xl: 1.25rem;
	--fr-text-2xl: 1.5rem;
	--fr-text-3xl: 2rem;
	--fr-text-hero: clamp(2rem, 5vw, 3.5rem);

	--fr-space-xs: 0.25rem;
	--fr-space-sm: 0.5rem;
	--fr-space-md: 1rem;
	--fr-space-lg: 1.5rem;
	--fr-space-xl: 2rem;
	--fr-space-2xl: 3rem;

	--fr-radius-sm: 6px;
	--fr-radius-md: 10px;
	--fr-radius-lg: 16px;
	--fr-radius-xl: 24px;

	--fr-shadow-sm: 0 2px 8px rgba(6, 26, 58, 0.06);
	--fr-shadow-md: 0 10px 30px rgba(6, 26, 58, 0.10);
	--fr-shadow-lg: 0 20px 48px rgba(6, 26, 58, 0.16);
}

.fr-body {
	background: var(--fr-color-background);
	color: var(--fr-color-text);
	font-family: var(--fr-font-base);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

.fr-container {
	width: 100%;
	max-width: 1280px;
	margin-inline: auto;
	padding-inline: var(--fr-space-md);
}

@media (min-width: 768px) {
	.fr-container {
		padding-inline: var(--fr-space-xl);
	}
}

/* Typography */
.fr-title-hero {
	font-family: var(--fr-font-display);
	font-size: var(--fr-text-hero);
	font-weight: 700;
	line-height: 1.15;
	margin: 0 0 var(--fr-space-md);
	color: var(--fr-color-text);
}

.fr-title-section {
	font-size: var(--fr-text-3xl);
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 var(--fr-space-md);
}

.fr-subtitle {
	font-size: var(--fr-text-lg);
	color: var(--fr-color-muted);
	margin: 0 0 var(--fr-space-xl);
}

/* Buttons */
.fr-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--fr-space-sm);
	padding: 0.75rem 1.25rem;
	font-size: var(--fr-text-base);
	font-weight: 600;
	line-height: 1.25;
	border: 1px solid transparent;
	border-radius: var(--fr-radius-md);
	cursor: pointer;
	text-decoration: none;
	transition: background 0.15s, border-color 0.15s, transform 0.1s;
}

.fr-btn:focus-visible {
	outline: 3px solid var(--fr-color-accent);
	outline-offset: 2px;
}

.fr-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.fr-btn--primary {
	background: var(--fr-color-primary);
	color: #fff;
}

.fr-btn--primary:hover:not(:disabled) {
	background: var(--fr-color-primary-dark);
}

.fr-btn--secondary {
	background: var(--fr-color-surface);
	color: var(--fr-color-primary);
	border-color: var(--fr-color-border);
}

.fr-btn--secondary:hover:not(:disabled) {
	border-color: var(--fr-color-primary);
}

.fr-btn--large {
	padding: 1rem 2rem;
	font-size: var(--fr-text-lg);
	border-radius: var(--fr-radius-lg);
}

/* Inputs */
.fr-label {
	display: block;
	font-size: var(--fr-text-sm);
	font-weight: 600;
	color: var(--fr-color-text);
	margin-bottom: var(--fr-space-xs);
}

.fr-input,
.fr-select {
	width: 100%;
	padding: 0.75rem 1rem;
	font-size: var(--fr-text-base);
	color: var(--fr-color-text);
	background: var(--fr-color-surface);
	border: 1px solid var(--fr-color-border);
	border-radius: var(--fr-radius-md);
	transition: border-color 0.15s, box-shadow 0.15s;
}

.fr-input:focus,
.fr-select:focus {
	border-color: var(--fr-color-primary);
	box-shadow: 0 0 0 3px rgba(11, 79, 108, 0.12);
	outline: none;
}

/* Cards */
.fr-card {
	background: var(--fr-color-surface);
	border: 1px solid var(--fr-color-border);
	border-radius: var(--fr-radius-lg);
	box-shadow: var(--fr-shadow-sm);
	overflow: hidden;
	transition: box-shadow 0.15s, transform 0.15s;
}

.fr-card:hover {
	box-shadow: var(--fr-shadow-md);
}

/* Property cards */
.fr-property-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: var(--fr-space-lg);
}

.fr-property-card {
	background: var(--fr-color-surface);
	border: 1px solid var(--fr-color-border);
	border-radius: var(--fr-radius-lg);
	box-shadow: var(--fr-shadow-sm);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform 0.15s, box-shadow 0.15s;
}

.fr-property-card:hover {
	box-shadow: var(--fr-shadow-md);
	transform: translateY(-2px);
}

.fr-property-card__media {
	aspect-ratio: 4 / 3;
	background: linear-gradient(135deg, #e5eaf1 0%, #dbe4ef 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--fr-color-muted);
	font-size: var(--fr-text-sm);
}

.fr-property-card__content {
	padding: var(--fr-space-md);
	display: flex;
	flex-direction: column;
	gap: var(--fr-space-sm);
	flex: 1;
}

.fr-property-card__title {
	font-size: var(--fr-text-lg);
	font-weight: 700;
	margin: 0;
	line-height: 1.3;
}

.fr-property-card__title a {
	color: var(--fr-color-text);
	text-decoration: none;
}

.fr-property-card__title a:hover {
	color: var(--fr-color-primary);
}

.fr-property-card__meta {
	font-size: var(--fr-text-sm);
	color: var(--fr-color-muted);
}

.fr-property-card__footer {
	margin-top: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--fr-space-sm);
}

.fr-property-card__price {
	font-size: var(--fr-text-xl);
	font-weight: 700;
	color: var(--fr-color-text);
}

.fr-property-card__price span {
	font-size: var(--fr-text-sm);
	font-weight: 400;
	color: var(--fr-color-muted);
}

/* Badges & chips */
.fr-badge {
	display: inline-flex;
	align-items: center;
	padding: 0.25rem 0.5rem;
	font-size: var(--fr-text-xs);
	font-weight: 600;
	border-radius: var(--fr-radius-sm);
	text-transform: capitalize;
}

.fr-badge--type {
	background: rgba(244, 157, 55, 0.12);
	color: var(--fr-color-accent-dark);
}

.fr-badge--rating {
	background: rgba(11, 79, 108, 0.08);
	color: var(--fr-color-primary);
}

.fr-chip {
	display: inline-flex;
	align-items: center;
	gap: var(--fr-space-xs);
	padding: 0.5rem 0.75rem;
	font-size: var(--fr-text-sm);
	background: var(--fr-color-surface);
	border: 1px solid var(--fr-color-border);
	border-radius: 999px;
	cursor: pointer;
	transition: border-color 0.15s;
}

.fr-chip:hover,
.fr-chip.is-active {
	border-color: var(--fr-color-primary);
	color: var(--fr-color-primary);
}

/* Rating */
.fr-rating {
	display: inline-flex;
	align-items: center;
	gap: var(--fr-space-xs);
	font-size: var(--fr-text-sm);
	font-weight: 600;
	color: var(--fr-color-text);
}

.fr-rating__count {
	font-weight: 400;
	color: var(--fr-color-muted);
}

/* Forms */
.fr-form-row {
	display: grid;
	gap: var(--fr-space-md);
	align-items: end;
}

@media (min-width: 768px) {
	.fr-form-row--cols-2 {
		grid-template-columns: repeat(2, 1fr);
	}
	.fr-form-row--cols-4 {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* Alerts */
.fr-alert {
	padding: var(--fr-space-md);
	border-radius: var(--fr-radius-md);
	font-size: var(--fr-text-base);
}

.fr-alert--info {
	background: #eaf3ff;
	color: #16467f;
}

.fr-alert--success {
	background: #e8f8ef;
	color: #1d6f4a;
}

.fr-alert--error {
	background: #fff0f2;
	color: #9e2a36;
}

/* Homepage */
.fr-hero {
	padding: var(--fr-space-2xl) 0;
	background: linear-gradient(180deg, #ffffff 0%, var(--fr-color-background) 100%);
}

.fr-hero__inner {
	display: grid;
	gap: var(--fr-space-xl);
	align-items: center;
}

@media (min-width: 1024px) {
	.fr-hero__inner {
		grid-template-columns: 1fr 1fr;
	}
}

.fr-hero__search {
	background: var(--fr-color-surface);
	border: 1px solid var(--fr-color-border);
	border-radius: var(--fr-radius-xl);
	padding: var(--fr-space-lg);
	box-shadow: var(--fr-shadow-md);
}

.fr-section {
	padding: var(--fr-space-2xl) 0;
}

.fr-section__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: var(--fr-space-md);
	margin-bottom: var(--fr-space-xl);
	flex-wrap: wrap;
}

.fr-type-grid,
.fr-destination-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
	gap: var(--fr-space-md);
}

.fr-type-card,
.fr-destination-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: var(--fr-space-sm);
	padding: var(--fr-space-lg) var(--fr-space-md);
	background: var(--fr-color-surface);
	border: 1px solid var(--fr-color-border);
	border-radius: var(--fr-radius-lg);
	text-decoration: none;
	color: var(--fr-color-text);
	transition: border-color 0.15s, transform 0.15s;
}

.fr-type-card:hover,
.fr-destination-card:hover {
	border-color: var(--fr-color-primary);
	transform: translateY(-2px);
}

.fr-type-card__label {
	font-size: var(--fr-text-sm);
	font-weight: 600;
}

/* Search */
.fr-search-header {
	padding: var(--fr-space-xl) 0;
	background: var(--fr-color-surface);
	border-bottom: 1px solid var(--fr-color-border);
}

.fr-search-layout {
	display: grid;
	gap: var(--fr-space-xl);
	padding: var(--fr-space-xl) 0;
}

@media (min-width: 1024px) {
	.fr-search-layout {
		grid-template-columns: 260px 1fr;
	}
}

.fr-filters {
	display: flex;
	flex-direction: column;
	gap: var(--fr-space-lg);
}

.fr-filters__panel {
	background: var(--fr-color-surface);
	border: 1px solid var(--fr-color-border);
	border-radius: var(--fr-radius-lg);
	padding: var(--fr-space-md);
}

.fr-filters__title {
	font-size: var(--fr-text-base);
	font-weight: 700;
	margin: 0 0 var(--fr-space-md);
}

.fr-sort-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--fr-space-md);
	flex-wrap: wrap;
	margin-bottom: var(--fr-space-lg);
}

.fr-pagination {
	display: flex;
	justify-content: center;
	gap: var(--fr-space-sm);
	margin-top: var(--fr-space-xl);
}

.fr-pagination a,
.fr-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.5rem;
	height: 2.5rem;
	padding: 0 0.75rem;
	font-size: var(--fr-text-sm);
	font-weight: 600;
	border: 1px solid var(--fr-color-border);
	border-radius: var(--fr-radius-md);
	text-decoration: none;
	color: var(--fr-color-text);
	background: var(--fr-color-surface);
}

.fr-pagination a:hover,
.fr-pagination span.current {
	border-color: var(--fr-color-primary);
	color: var(--fr-color-primary);
}

/* States */
.fr-loading,
.fr-empty,
.fr-error {
	padding: var(--fr-space-2xl) var(--fr-space-md);
	text-align: center;
	color: var(--fr-color-muted);
}

.fr-error {
	color: var(--fr-color-error);
}

/* Property detail */
.fr-property-detail h2 {
	color: var(--fr-color-text);
}

.fr-property-detail .fr-card a.fr-btn {
	display: inline-flex;
	margin-top: var(--fr-space-md);
}

/* Booking */
.fr-form-row {
	grid-template-columns: 1fr;
}

/* Focus & accessibility */
*:focus-visible {
	outline: 3px solid var(--fr-color-accent);
	outline-offset: 2px;
}

.fr-input:invalid,
.fr-select:invalid {
	border-color: var(--fr-color-error);
}

.fr-btn:focus-visible,
.fr-input:focus-visible,
.fr-select:focus-visible,
.fr-chip:focus-visible,
.fr-property-card a:focus-visible {
	outline: 3px solid var(--fr-color-accent);
	outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

/* Responsive dashboards */
.fr-dashboard {
	padding: var(--fr-space-md);
}

.fr-dashboard__nav {
	display: flex;
	flex-wrap: wrap;
	gap: var(--fr-space-sm);
	margin-bottom: var(--fr-space-lg);
}

.fr-dashboard__tab {
	padding: var(--fr-space-sm) var(--fr-space-md);
	background: var(--fr-color-surface);
	border: 1px solid var(--fr-color-border);
	border-radius: var(--fr-radius-md);
	text-decoration: none;
	color: var(--fr-color-text);
	font-weight: 600;
}

.fr-dashboard__tab.is-active,
.fr-dashboard__tab:hover {
	border-color: var(--fr-color-primary);
	color: var(--fr-color-primary);
}

.fr-cards {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: var(--fr-space-md);
}

.fr-stat {
	font-size: var(--fr-text-2xl);
	font-weight: 700;
	color: var(--fr-color-primary);
	margin: var(--fr-space-sm) 0 0;
}

.fr-table {
	width: 100%;
	border-collapse: collapse;
	background: var(--fr-color-surface);
	border: 1px solid var(--fr-color-border);
	border-radius: var(--fr-radius-md);
}

.fr-table th,
.fr-table td {
	padding: var(--fr-space-sm);
	border-bottom: 1px solid var(--fr-color-border);
	text-align: left;
	font-size: var(--fr-text-sm);
}

.fr-table th {
	background: var(--fr-color-background);
	font-weight: 700;
}

@media (max-width: 768px) {
	.fr-table {
		display: block;
		overflow-x: auto;
		white-space: nowrap;
	}

	.fr-form-row {
		grid-template-columns: 1fr !important;
	}

	.fr-hero__inner,
	.fr-search-layout,
	.fr-property-grid {
		grid-template-columns: 1fr;
	}

	.fr-hero {
		padding: var(--fr-space-xl) 0;
	}
}

/* Screen reader only */
.fr-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* ============================================================
   FoxRoam homepage redesign
   ============================================================ */

.fr-home {
	--fr-cta: #FF7A00;
	--fr-cta-hover: #e56e00;
	--fr-hero-overlay: rgba(0, 18, 35, 0.55);
	--fr-white: #ffffff;
	--fr-pill-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
	color: var(--fr-color-text);
	font-family: var(--fr-font-base);
	overflow-x: hidden;
}

/* Hero */
.fr-hero-v2 {
	position: relative;
	min-height: 620px;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 6rem 0 5rem;
}

.fr-hero-v2__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,18,35,0.55) 0%, rgba(0,18,35,0.35) 60%, rgba(0,18,35,0.65) 100%);
}

.fr-hero-v2__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 2.5rem;
}

.fr-hero-v2__tag {
	display: inline-block;
	background: rgba(255,255,255,0.15);
	color: #fff;
	padding: 0.35rem 0.85rem;
	border-radius: 999px;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	backdrop-filter: blur(4px);
	margin-bottom: 0.75rem;
}

.fr-hero-v2__title {
	font-family: var(--fr-font-base);
	font-size: clamp(2rem, 5vw, 3.25rem);
	font-weight: 700;
	color: #fff;
	line-height: 1.15;
	margin: 0 0 1rem;
	max-width: 800px;
}

.fr-hero-v2__subtitle {
	font-size: clamp(1rem, 2vw, 1.15rem);
	color: rgba(255,255,255,0.92);
	margin: 0 auto;
	max-width: 640px;
	line-height: 1.55;
}

/* Search pill */
.fr-search-pill {
	width: 100%;
	max-width: 980px;
	background: #fff;
	border-radius: 999px;
	display: flex;
	align-items: center;
	box-shadow: var(--fr-pill-shadow);
	padding: 0.35rem;
	overflow: hidden;
}

.fr-search-pill__segment {
	flex: 1 1 auto;
	min-width: 0;
	padding: 0.65rem 1.1rem;
	border-right: 1px solid var(--fr-color-border);
	text-align: left;
}

.fr-search-pill__segment:last-of-type {
	border-right: 0;
}

.fr-search-pill__segment label {
	display: block;
	font-size: 0.7rem;
	font-weight: 700;
	color: var(--fr-color-text);
	margin-bottom: 0.25rem;
	white-space: nowrap;
}

.fr-search-pill__segment input[type="text"],
.fr-search-pill__segment input[type="date"] {
	width: 100%;
	border: 0;
	padding: 0.1rem 0;
	font-size: 0.95rem;
	background: transparent;
	color: var(--fr-color-text);
}

.fr-search-pill__segment input::placeholder {
	color: var(--fr-color-muted);
	opacity: 1;
}

.fr-search-pill__dates {
	display: flex;
	gap: 0.5rem;
}

.fr-search-pill__dates input {
	min-width: 0;
}

.fr-search-pill__counter {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.fr-search-pill__counter input {
	width: 2rem;
	text-align: center;
	font-weight: 700;
	border: 0;
	background: transparent;
}

.fr-counter-btn {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	border: 1px solid var(--fr-color-border);
	background: #fff;
	color: var(--fr-color-text);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	line-height: 1;
	padding: 0;
	transition: background 0.15s;
}

.fr-counter-btn:hover {
	background: var(--fr-color-background);
}

.fr-search-pill__segment--submit {
	flex: 0 0 auto;
	padding: 0 0.35rem 0 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.fr-search-pill__btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--fr-cta);
	color: #fff;
	border: 0;
	border-radius: 999px;
	padding: 0.95rem 1.75rem;
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.15s, transform 0.1s;
}

.fr-search-pill__btn:hover {
	background: var(--fr-cta-hover);
}

/* Categories */
.fr-categories {
	padding: 1.75rem 0 0.5rem;
	background: var(--fr-color-surface);
	border-bottom: 1px solid var(--fr-color-border);
}

.fr-categories__track {
	display: flex;
	gap: 1rem;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	padding-bottom: 0.75rem;
	padding-right: var(--fr-space-md);
}

.fr-categories__track::-webkit-scrollbar {
	display: none;
}

.fr-category-card {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.55rem 1rem;
	color: var(--fr-color-text);
	text-decoration: none;
	font-size: 0.85rem;
	font-weight: 600;
	scroll-snap-align: start;
	border: 1px solid var(--fr-color-border);
	border-radius: 999px;
	background: #fff;
	transition: border-color 0.15s, background 0.15s;
}

.fr-category-card:hover,
.fr-category-card.is-active {
	border-color: var(--fr-color-text);
	background: var(--fr-color-text);
	color: #fff;
}

.fr-category-card__icon {
	width: 18px;
	height: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.fr-category-card__icon svg {
	width: 100%;
	height: 100%;
	stroke: currentColor;
}

.fr-category-card:hover,
.fr-category-card.is-active {
	color: var(--fr-cta);
}

/* Section head */
.fr-section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1.5rem;
	flex-wrap: wrap;
}

.fr-section-head__title {
	font-size: 1.55rem;
	font-weight: 700;
	margin: 0;
}

.fr-section-head__link {
	color: var(--fr-color-primary);
	text-decoration: none;
	font-weight: 600;
	font-size: 0.95rem;
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
}

.fr-section-head__link:hover {
	text-decoration: underline;
}

/* Destinations */
.fr-destinations {
	padding: 3rem 0;
	background: var(--fr-color-background);
}

.fr-destinations__grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 1rem;
}

.fr-dest-card {
	position: relative;
	aspect-ratio: 3 / 4;
	border-radius: 1.25rem;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: flex-end;
	padding: 1.1rem;
	text-decoration: none;
	overflow: hidden;
	min-height: 230px;
}

.fr-dest-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.7) 100%);
	border-radius: 1.25rem;
}

.fr-dest-card:hover .fr-dest-card__overlay {
	background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.85) 100%);
}

.fr-dest-card__body {
	position: relative;
	z-index: 1;
	color: #fff;
}

.fr-dest-card__title {
	display: block;
	font-size: 1.1rem;
	font-weight: 700;
	margin: 0 0 0.1rem;
}

.fr-dest-card__meta {
	display: block;
	font-size: 0.8rem;
	color: rgba(255,255,255,0.85);
}

.fr-dest-card__arrow {
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 34px;
	height: 34px;
	background: #fff;
	color: var(--fr-color-text);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	z-index: 1;
}

/* Featured */
.fr-featured {
	padding: 3rem 0;
	background: var(--fr-color-surface);
}

.fr-featured__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}

.fr-stay-card {
	background: #fff;
	border-radius: 1.25rem;
	overflow: hidden;
	border: 1px solid var(--fr-color-border);
	display: flex;
	flex-direction: column;
}

.fr-stay-card__media {
	position: relative;
	aspect-ratio: 4 / 3;
	background: var(--fr-color-background);
	display: block;
	overflow: hidden;
}

.fr-stay-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.25s;
}

.fr-stay-card:hover .fr-stay-card__media img {
	transform: scale(1.03);
}

.fr-stay-card__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	color: var(--fr-color-muted);
	font-size: 0.85rem;
}

.fr-stay-card__top {
	position: absolute;
	top: 0.75rem;
	left: 0.75rem;
	background: #fff;
	color: var(--fr-color-text);
	padding: 0.25rem 0.55rem;
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 700;
}

.fr-stay-card__heart {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(255,255,255,0.9);
	border: 0;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--fr-color-text);
	transition: color 0.15s, background 0.15s;
}

.fr-stay-card__heart:hover {
	color: #e11d48;
	background: #fff;
}

.fr-stay-card__heart svg {
	width: 16px;
	height: 16px;
}

.fr-stay-card__content {
	padding: 1rem;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	flex: 1;
}

.fr-stay-card__row {
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

.fr-stay-card__rating {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--fr-color-text);
}

.fr-stay-card__rating svg {
	color: #f59e0b;
	fill: #f59e0b;
}

.fr-stay-card__reviews {
	font-weight: 400;
	color: var(--fr-color-muted);
	font-size: 0.75rem;
}

.fr-stay-card__title {
	font-size: 1.05rem;
	font-weight: 700;
	margin: 0;
	line-height: 1.3;
}

.fr-stay-card__title a {
	color: var(--fr-color-text);
	text-decoration: none;
}

.fr-stay-card__location,
.fr-stay-card__specs {
	font-size: 0.85rem;
	color: var(--fr-color-muted);
	margin: 0;
	line-height: 1.4;
}

.fr-stay-card__footer {
	margin-top: auto;
	padding-top: 0.5rem;
}

.fr-stay-card__price {
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--fr-color-text);
}

.fr-stay-card__price span {
	font-size: 0.85rem;
	font-weight: 400;
	color: var(--fr-color-muted);
}

/* Trust */
.fr-trust {
	padding: 3rem 0;
	background: #fff7ed;
	border-top: 1px solid #ffedd5;
}

.fr-trust__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}

.fr-trust__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
	text-align: center;
}

.fr-trust__icon {
	width: 44px;
	height: 44px;
	color: var(--fr-cta);
}

.fr-trust__icon svg {
	width: 100%;
	height: 100%;
	stroke: currentColor;
}

.fr-trust__title {
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--fr-color-text);
}

/* Responsive */
@media (max-width: 1024px) {
	.fr-destinations__grid,
	.fr-featured__grid {
		display: flex;
		gap: 1rem;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scroll-behavior: smooth;
		-webkit-overflow-scrolling: touch;
		padding-bottom: 0.75rem;
	}

	.fr-destinations__grid .fr-dest-card,
	.fr-featured__grid .fr-stay-card {
		flex: 0 0 260px;
		width: 260px;
		scroll-snap-align: start;
	}

	.fr-destinations__grid .fr-dest-card {
		height: 280px;
	}

	.fr-trust__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.fr-hero-v2 {
		min-height: 480px;
		padding: 4rem 0 2rem;
	}

	.fr-hero-v2__inner {
		align-items: stretch;
		text-align: left;
		gap: 1.75rem;
	}

	.fr-hero-v2__title {
		font-size: 2rem;
		padding: 0 var(--fr-space-sm);
	}

	.fr-hero-v2__subtitle {
		padding: 0 var(--fr-space-sm);
	}

	.fr-hero-v2 {
		min-height: 420px;
		padding: 3rem 0 1.5rem;
	}

	.fr-hero-v2__title {
		font-size: 1.85rem;
		padding: 0 0.6rem;
	}

	.fr-hero-v2__subtitle {
		padding: 0 0.6rem;
	}

	.fr-search-pill {
		flex-direction: column;
		border-radius: 1.25rem;
		padding: 0.6rem 0.75rem;
		max-width: 100%;
		margin: 0 0.6rem;
		gap: 0;
	}

	.fr-search-pill__segment {
		width: 100%;
		border-right: 0;
		border-bottom: 1px solid var(--fr-color-border);
		padding: 0.45rem 0;
	}

	.fr-search-pill__segment:last-of-type {
		border-bottom: 0;
	}

	.fr-search-pill__segment label {
		font-size: 0.7rem;
		margin-bottom: 0.15rem;
	}

	.fr-search-pill__segment input[type="text"],
	.fr-search-pill__segment input[type="date"] {
		font-size: 0.9rem;
		padding: 0.2rem 0;
		height: 32px;
	}

	.fr-search-pill__dates {
		justify-content: space-between;
		gap: 0.4rem;
	}

	.fr-search-pill__dates input {
		flex: 1 1 0;
		min-width: 0;
		font-size: 0.85rem;
	}

	.fr-search-pill__counter input {
		width: 1.5rem;
		font-size: 0.9rem;
	}

	.fr-counter-btn {
		width: 22px;
		height: 22px;
	}

	.fr-search-pill__segment--submit {
		padding: 0.5rem 0 0;
		width: 100%;
	}

	.fr-search-pill__btn {
		width: 100%;
		justify-content: center;
		padding: 0.8rem;
		font-size: 0.95rem;
	}

	.fr-trust__grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.fr-categories__track {
		padding-left: var(--fr-space-md);
	}
}

@media (max-width: 480px) {
	.fr-destinations__grid {
		grid-template-columns: 1fr;
	}
}

/* Mobile search trigger + modal */
.fr-search-trigger {
	display: none;
	width: 100%;
	max-width: 100%;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 999px;
	padding: 0.85rem 1.1rem;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
	text-align: left;
	cursor: pointer;
	position: relative;
	margin-top: 1.5rem;
}

.fr-search-trigger__main {
	display: block;
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--fr-color-text);
}

.fr-search-trigger__sub {
	display: block;
	font-size: 0.78rem;
	color: var(--fr-color-muted);
	margin-top: 0.1rem;
}

.fr-search-trigger__icon {
	position: absolute;
	right: 0.5rem;
	top: 50%;
	transform: translateY(-50%);
	width: 36px;
	height: 36px;
	background: var(--fr-cta);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.fr-search-modal {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: none;
	align-items: flex-end;
	justify-content: center;
}

.fr-search-modal.is-open {
	display: flex;
}

.fr-search-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.45);
}

.fr-search-modal__sheet {
	position: relative;
	width: 100%;
	max-width: 560px;
	max-height: 92vh;
	background: #fff;
	border-radius: 1.5rem 1.5rem 0 0;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	animation: fr-sheet-up 0.25s ease-out;
}

@keyframes fr-sheet-up {
	from { transform: translateY(100%); }
	to { transform: translateY(0); }
}

.fr-search-modal__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.75rem 1rem;
	border-bottom: 1px solid var(--fr-color-border);
	flex-shrink: 0;
}

.fr-search-modal__close {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 0;
	background: #f3f4f6;
	color: var(--fr-color-text);
	font-size: 1.25rem;
	cursor: pointer;
}

.fr-search-modal__spacer {
	width: 32px;
}

.fr-search-modal__tabs {
	display: flex;
	gap: 0.5rem;
	justify-content: center;
}

.fr-search-modal__tab {
	padding: 0.45rem 0.85rem;
	border-radius: 999px;
	border: 0;
	background: transparent;
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--fr-color-muted);
	cursor: pointer;
}

.fr-search-modal__tab.is-active {
	background: var(--fr-color-text);
	color: #fff;
}

.fr-search-modal__tab:disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

.fr-wizard {
	flex: 1;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
}

.fr-wizard__steps {
	flex: 1;
	position: relative;
}

.fr-wizard__step {
	display: none;
	padding: 1.25rem;
	flex-direction: column;
	gap: 1rem;
}

.fr-wizard__step.is-active {
	display: flex;
}

.fr-wizard__title {
	font-size: 1.35rem;
	font-weight: 700;
	margin: 0;
}

.fr-wizard__field {
	margin-bottom: 0.5rem;
}

.fr-wizard__input-wrap {
	position: relative;
	display: flex;
	align-items: center;
	border: 1px solid var(--fr-color-border);
	border-radius: 1rem;
	padding: 0.6rem 0.9rem;
	background: #fff;
}

.fr-wizard__input-icon {
	color: var(--fr-color-muted);
	margin-right: 0.5rem;
	flex-shrink: 0;
}

.fr-wizard__input {
	flex: 1;
	border: 0;
	font-size: 1rem;
	background: transparent;
	outline: none;
	min-width: 0;
}

.fr-wizard__input-side {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--fr-color-text);
	margin-left: 0.5rem;
	white-space: nowrap;
}

.fr-wizard__section-title {
	font-size: 0.95rem;
	font-weight: 700;
	margin: 0.5rem 0 0;
	color: var(--fr-color-text);
}

.fr-wizard__suggestions {
	display: grid;
	gap: 0.6rem;
}

.fr-wizard__suggestion {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.5rem;
	border: 1px solid var(--fr-color-border);
	border-radius: 1rem;
	background: #fff;
	cursor: pointer;
	text-align: left;
	transition: border-color 0.15s;
}

.fr-wizard__suggestion:hover {
	border-color: var(--fr-cta);
}

.fr-wizard__suggestion-image {
	width: 56px;
	height: 56px;
	border-radius: 0.75rem;
	background-size: cover;
	background-position: center;
	flex-shrink: 0;
}

.fr-wizard__suggestion-body {
	display: flex;
	flex-direction: column;
}

.fr-wizard__suggestion-title {
	font-size: 0.95rem;
	font-weight: 700;
}

.fr-wizard__suggestion-meta {
	font-size: 0.8rem;
	color: var(--fr-color-muted);
}

.fr-wizard__options {
	display: flex;
	gap: 0.5rem;
	background: #f3f4f6;
	border-radius: 999px;
	padding: 0.3rem;
}

.fr-wizard__option {
	flex: 1;
	padding: 0.5rem;
	border: 0;
	border-radius: 999px;
	background: transparent;
	font-size: 0.85rem;
	font-weight: 600;
	cursor: pointer;
}

.fr-wizard__option.is-active {
	background: #fff;
	color: var(--fr-color-text);
}

.fr-wizard__dates-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
}

.fr-wizard__label {
	display: block;
	font-size: 0.75rem;
	font-weight: 700;
	margin-bottom: 0.25rem;
}

.fr-wizard__date {
	width: 100%;
	padding: 0.6rem;
	border: 1px solid var(--fr-color-border);
	border-radius: 1rem;
	font-size: 0.95rem;
}

.fr-wizard__guest-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.75rem 0;
	border-bottom: 1px solid var(--fr-color-border);
}

.fr-wizard__guest-info {
	display: flex;
	flex-direction: column;
}

.fr-wizard__guest-label {
	font-weight: 700;
	font-size: 0.95rem;
}

.fr-wizard__guest-hint {
	font-size: 0.8rem;
	color: var(--fr-color-muted);
}

.fr-wizard__counter {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.fr-wizard__counter-btn {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 1px solid var(--fr-color-border);
	background: #fff;
	font-size: 1.1rem;
	cursor: pointer;
}

.fr-wizard__counter-value {
	font-weight: 700;
	min-width: 1.5rem;
	text-align: center;
}

.fr-wizard__nav {
	margin-top: auto;
	display: flex;
	justify-content: space-between;
	gap: 0.75rem;
	padding-top: 1rem;
}

.fr-wizard__next,
.fr-wizard__back,
.fr-wizard__search-btn {
	padding: 0.9rem 1.5rem;
	border-radius: 1rem;
	font-weight: 700;
	cursor: pointer;
	border: 0;
	font-size: 0.95rem;
}

.fr-wizard__next,
.fr-wizard__search-btn {
	background: var(--fr-cta);
	color: #fff;
	margin-left: auto;
}

.fr-wizard__back {
	background: #f3f4f6;
	color: var(--fr-color-text);
}

.fr-wizard__search-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
}

/* Hide desktop pill on mobile, show trigger */
@media (max-width: 768px) {
	.fr-search-pill--desktop {
		display: none;
	}

	.fr-search-trigger {
		display: block;
	}
}

/* Search results page (Airbnb style) */
.fr-search-page {
	--fr-search-bg: #fff;
	background: var(--fr-search-bg);
	min-height: 100vh;
	padding-bottom: 5rem;
}

.fr-search-page__header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: #fff;
	border-bottom: 1px solid var(--fr-color-border);
	padding: 0.75rem 1rem 0.5rem;
}

.fr-search-page__top {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.75rem;
}

.fr-search-page__back,
.fr-search-page__filter {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid var(--fr-color-border);
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--fr-color-text);
	text-decoration: none;
	cursor: pointer;
	flex-shrink: 0;
}

.fr-search-page__headline {
	flex: 1;
	text-align: center;
}

.fr-search-page__title {
	display: block;
	font-weight: 700;
	font-size: 1rem;
}

.fr-search-page__dates {
	display: block;
	font-size: 0.75rem;
	color: var(--fr-color-muted);
}

.fr-search-page__chips {
	display: flex;
	gap: 0.5rem;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding-bottom: 0.5rem;
}

.fr-search-page__chip {
	flex: 0 0 auto;
	padding: 0.5rem 0.9rem;
	border: 1px solid var(--fr-color-border);
	border-radius: 999px;
	background: #fff;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--fr-color-text);
	cursor: pointer;
	scroll-snap-align: start;
}

.fr-search-page__chip.is-active,
.fr-search-page__chip:hover {
	border-color: var(--fr-color-text);
	background: var(--fr-color-text);
	color: #fff;
}

.fr-search-page__body {
	padding: 1rem;
}

.fr-search-page__count {
	font-size: 0.9rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--fr-color-text);
}

.fr-search-page__list {
	display: grid;
	gap: 1.5rem;
}

.fr-search-page__map-placeholder {
	height: 70vh;
	background: #eef2f6;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 1rem;
	margin-bottom: 1rem;
	color: var(--fr-color-muted);
}

.fr-search-page__actions {
	position: fixed;
	bottom: 1rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 50;
}

.fr-search-page__map-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	background: var(--fr-color-text);
	color: #fff;
	padding: 0.75rem 1.25rem;
	border-radius: 999px;
	font-weight: 700;
	font-size: 0.9rem;
	text-decoration: none;
	box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

/* Property detail page (Airbnb style) */
.fr-property-page {
	background: #fff;
	min-height: 100vh;
	padding-bottom: 6rem;
}

.fr-property-page__header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 10;
	display: flex;
	justify-content: space-between;
	padding: 1rem;
	pointer-events: none;
}

.fr-property-page__icon,
.fr-property-page__actions {
	pointer-events: auto;
}

.fr-property-page__icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255,255,255,0.9);
	border: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #111;
	text-decoration: none;
	cursor: pointer;
	box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.fr-property-page__actions {
	display: flex;
	gap: 0.5rem;
}

.fr-property-page__hero {
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1;
	background: #eee;
}

.fr-property-page__hero img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.fr-property-page__placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--fr-color-muted);
}

.fr-property-page__dots {
	position: absolute;
	bottom: 1rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 0.4rem;
}

.fr-property-page__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255,255,255,0.5);
}

.fr-property-page__dot.is-active {
	background: #fff;
}

.fr-property-page__body {
	padding: 1.25rem;
}

.fr-property-page__title {
	font-size: 1.5rem;
	font-weight: 700;
	margin: 0 0 0.35rem;
	line-height: 1.2;
}

.fr-property-page__subtitle {
	font-size: 0.9rem;
	color: var(--fr-color-muted);
	margin: 0 0 1.25rem;
}

.fr-property-page__highlights {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	padding: 1rem 0;
	border-top: 1px solid var(--fr-color-border);
	border-bottom: 1px solid var(--fr-color-border);
	margin-bottom: 1.25rem;
}

.fr-property-page__highlight {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 0.2rem;
}

.fr-property-page__highlight-value {
	font-weight: 700;
	font-size: 1rem;
}

.fr-property-page__stars {
	font-size: 0.7rem;
	color: var(--fr-cta);
	letter-spacing: 0.05em;
}

.fr-property-page__host {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 0;
	border-bottom: 1px solid var(--fr-color-border);
	margin-bottom: 1.25rem;
}

.fr-property-page__avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--fr-color-border);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.1rem;
}

.fr-property-page__host-info {
	display: flex;
	flex-direction: column;
	font-size: 0.9rem;
}

.fr-property-page__host-info strong {
	font-weight: 700;
}

.fr-property-page__host-info span {
	color: var(--fr-color-muted);
	font-size: 0.8rem;
}

.fr-property-page__section {
	margin-bottom: 1.5rem;
}

.fr-property-page__section-title {
	font-size: 1.15rem;
	font-weight: 700;
	margin-bottom: 0.6rem;
}

.fr-property-page__amenities {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.fr-property-page__amenity {
	padding: 0.45rem 0.8rem;
	border: 1px solid var(--fr-color-border);
	border-radius: 999px;
	font-size: 0.85rem;
}

.fr-property-page__text {
	font-size: 0.95rem;
	line-height: 1.6;
	color: #333;
}

.fr-property-page__footer {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #fff;
	border-top: 1px solid var(--fr-color-border);
	padding: 0.75rem 1rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	z-index: 20;
}

.fr-property-page__price strong {
	font-size: 1.1rem;
	font-weight: 700;
}

.fr-property-page__price span {
	font-size: 0.85rem;
	color: var(--fr-color-muted);
}

.fr-property-page__reserve {
	background: #e11d48;
	color: #fff;
	padding: 0.85rem 1.75rem;
	border-radius: 0.75rem;
	font-weight: 700;
	text-decoration: none;
}

/* Booking review page */
.fr-booking-page {
	background: #fff;
	min-height: 100vh;
	padding-bottom: 7rem;
}

.fr-booking-page__header {
	position: sticky;
	top: 0;
	z-index: 10;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.75rem 1rem;
	border-bottom: 1px solid var(--fr-color-border);
}

.fr-booking-page__back,
.fr-booking-page__spacer {
	width: 40px;
}

.fr-booking-page__back {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--fr-color-text);
}

.fr-booking-page__title {
	font-size: 1.1rem;
	font-weight: 700;
	margin: 0;
}

.fr-booking-page__form {
	padding: 1rem;
}

.fr-booking-page__property {
	display: flex;
	gap: 1rem;
	padding: 1rem 0;
	border-bottom: 1px solid var(--fr-color-border);
	margin-bottom: 1rem;
}

.fr-booking-page__image {
	width: 80px;
	height: 80px;
	border-radius: 0.75rem;
	object-fit: cover;
	flex-shrink: 0;
}

.fr-booking-page__property-info {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.fr-booking-page__property-title {
	font-size: 1rem;
	font-weight: 700;
	margin: 0 0 0.2rem;
}

.fr-booking-page__property-meta {
	font-size: 0.85rem;
	color: var(--fr-color-muted);
}

.fr-booking-page__section {
	padding: 1rem 0;
	border-bottom: 1px solid var(--fr-color-border);
	margin-bottom: 1rem;
}

.fr-booking-page__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.75rem 0;
	border-bottom: 1px solid #f3f4f6;
}

.fr-booking-page__row:last-child {
	border-bottom: 0;
}

.fr-booking-page__label {
	font-weight: 700;
	font-size: 0.95rem;
	flex: 1;
}

.fr-booking-page__value {
	font-size: 0.9rem;
	color: var(--fr-color-muted);
	flex: 1;
	text-align: right;
}

.fr-booking-page__change {
	margin-left: 0.75rem;
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--fr-color-text);
	background: #fff;
	border: 1px solid var(--fr-color-border);
	border-radius: 999px;
	padding: 0.3rem 0.7rem;
	cursor: not-allowed;
	opacity: 0.7;
}

.fr-booking-page__policy {
	font-size: 0.85rem;
	color: var(--fr-color-muted);
	margin-top: 1rem;
}

.fr-booking-page__link {
	color: var(--fr-color-text);
	font-weight: 700;
	text-decoration: underline;
}

.fr-booking-page__actions {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #fff;
	border-top: 1px solid var(--fr-color-border);
	padding: 1rem;
	text-align: center;
	z-index: 20;
}

.fr-booking-page__next {
	width: 100%;
	padding: 1rem;
	border: 0;
	border-radius: 0.75rem;
	background: #111;
	color: #fff;
	font-weight: 700;
	font-size: 1rem;
	cursor: pointer;
	margin-bottom: 0.5rem;
}

.fr-booking-page__hint {
	font-size: 0.8rem;
	color: var(--fr-color-muted);
	margin: 0;
}

.fr-booking-page__success {
	padding: 2rem 1rem;
	text-align: center;
}

/* Property card refinements */
.fr-stay-card__row--title {
	justify-content: space-between;
	align-items: flex-start;
	gap: 0.5rem;
}

.fr-stay-card__title {
	font-size: 1rem;
}

.fr-stay-card__rating {
	font-size: 0.85rem;
	white-space: nowrap;
}

.fr-stay-card__host {
	font-size: 0.8rem;
	color: var(--fr-color-muted);
	margin: -0.15rem 0 0;
}

.fr-stay-card__price {
	font-size: 1rem;
}

/* Desktop and tablet full-width layout */
@media (min-width: 1024px) {
	html,
	body {
		overflow-x: hidden;
	}

	.fr-home {
		width: 100vw;
		margin-left: calc(-50vw + 50%);
		position: relative;
	}

	.fr-home .fr-container {
		max-width: 100%;
		padding-inline: 2rem;
	}

	.fr-hero-v2__inner {
		max-width: none;
		width: 100%;
	}

	.fr-categories__track {
		justify-content: flex-start;
		gap: 1rem;
	}

	.fr-destinations__grid {
		display: grid;
		grid-template-columns: repeat(6, 1fr);
		gap: 1.5rem;
	}

	.fr-featured__grid {
		grid-template-columns: repeat(5, 1fr);
		gap: 1.5rem;
	}

	.fr-trust__grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 3rem;
	}
}

@media (min-width: 1280px) {
	.fr-home .fr-container {
		padding-inline: 3.5rem;
	}
}

/* Payment method page */
.fr-payment-page,
.fr-success-page {
	background: #fff;
	min-height: 100vh;
	padding: 1rem 1rem 2rem;
}

.fr-payment-page__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1.5rem;
}

.fr-payment-page__close {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 0;
	background: #f3f4f6;
	font-size: 1.25rem;
	color: var(--fr-color-text);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.fr-payment-page__title {
	font-size: 1.1rem;
	font-weight: 700;
	margin: 0;
}

.fr-payment-page__spacer {
	width: 40px;
}

.fr-payment-page__error {
	background: #fee2e2;
	color: #991b1b;
	padding: 0.75rem 1rem;
	border-radius: 0.75rem;
	margin-bottom: 1rem;
	font-size: 0.9rem;
}

.fr-payment-page__methods {
	border: 1px solid var(--fr-color-border);
	border-radius: 1rem;
	overflow: hidden;
	margin-bottom: 1.5rem;
}

.fr-payment-page__method {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem;
	border-bottom: 1px solid var(--fr-color-border);
	cursor: pointer;
}

.fr-payment-page__method:last-child {
	border-bottom: 0;
}

.fr-payment-page__method input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.fr-payment-page__method-icon {
	width: 32px;
	text-align: center;
	font-size: 1.25rem;
}

.fr-payment-page__method-body {
	flex: 1;
	display: flex;
	flex-direction: column;
	font-size: 0.9rem;
}

.fr-payment-page__method-body strong {
	font-weight: 700;
}

.fr-payment-page__method-sub {
	font-size: 0.75rem;
	color: var(--fr-color-muted);
}

.fr-payment-page__method-radio {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 2px solid var(--fr-color-border);
	position: relative;
}

.fr-payment-page__method.is-active .fr-payment-page__method-radio {
	border-color: var(--fr-color-text);
}

.fr-payment-page__method.is-active .fr-payment-page__method-radio::after {
	content: '';
	position: absolute;
	inset: 4px;
	border-radius: 50%;
	background: var(--fr-color-text);
}

.fr-payment-page__total {
	display: flex;
	justify-content: space-between;
	font-size: 0.95rem;
	margin-bottom: 1.5rem;
}

.fr-payment-page__total strong {
	font-size: 1.1rem;
}

.fr-payment-page__next {
	width: 100%;
	padding: 1rem;
	border: 0;
	border-radius: 0.75rem;
	background: #111;
	color: #fff;
	font-weight: 700;
	font-size: 1rem;
	cursor: pointer;
	margin-bottom: 0.5rem;
}

.fr-payment-page__hint {
	text-align: center;
	font-size: 0.8rem;
	color: var(--fr-color-muted);
	margin: 0;
}

.fr-success-page {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding-top: 4rem;
}

.fr-success-page__icon {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: #dcfce7;
	color: #166534;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.fr-success-page__title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.fr-success-page__text,
.fr-success-page__booking {
	font-size: 0.95rem;
	color: var(--fr-color-muted);
	margin: 0 0 1rem;
}

.fr-success-page__booking strong {
	color: var(--fr-color-text);
}

.fr-success-page__btn {
	background: var(--fr-cta);
	color: #fff;
	padding: 0.85rem 1.5rem;
	border-radius: 0.75rem;
	font-weight: 700;
	text-decoration: none;
	margin-top: 1rem;
}

/* Horizontal scroll sections on homepage */
.fr-scroll-section {
	padding: 1.5rem 0;
}

.fr-scroll-section__title {
	font-size: 1.25rem;
	font-weight: 700;
	margin: 0 0 1rem;
}

.fr-scroll-section__track {
	display: flex;
	gap: 1rem;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	padding-bottom: 0.75rem;
}

.fr-scroll-section__track .fr-stay-card {
	flex: 0 0 260px;
	width: 260px;
	scroll-snap-align: start;
}

.fr-scroll-section__track .fr-stay-card__media {
	height: 180px;
}

.fr-scroll-section__track .fr-stay-card__title {
	font-size: 0.95rem;
}

/* Fixed bottom navigation */
.fr-bottom-nav {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #fff;
	border-top: 1px solid var(--fr-color-border);
	display: flex;
	justify-content: space-around;
	align-items: center;
	padding: 0.65rem 0 0.85rem;
	min-height: 64px;
	z-index: 1000;
	box-shadow: 0 -2px 16px rgba(0,0,0,0.06);
}

.fr-bottom-nav__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0;
	color: var(--fr-color-muted);
	text-decoration: none;
	font-size: 0;
	font-weight: 500;
	padding: 0.5rem 0.75rem;
	min-width: 56px;
}

.fr-bottom-nav__item.is-active {
	color: var(--fr-cta);
}

.fr-bottom-nav__label {
	display: none;
}

.fr-bottom-nav__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
}

.fr-bottom-nav__icon svg {
	width: 30px;
	height: 30px;
	stroke: currentColor;
	stroke-width: 1.8;
}
