/**
 * Yasmin Booking Wizard Styles
 *
 * @package YasminBooking
 * @since 1.0.8
 */

:root {
	--yasmin-accent: var(--primary);
	--yasmin-text: var(--text-body);
	--yasmin-bg: var(--bg-surface);
	--yasmin-border: var(--border-primary);
	--yasmin-success: var(--success);
	--yasmin-pending: #dba617;
	--yasmin-gray: var(--dark-50);
	--yasmin-light-bg: var(--alternative-l-8);
}

/* Wizard Container */
.yasmin-booking-wizard {
	font-family: 'Eina2', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	color: var(--yasmin-text);
	max-width: var(--max-screen-width);
	margin: 0;
	padding: 0;
}

/* Step Progress Indicator - Compact & Left Aligned */
.wizard-progress {
	display: flex;
	justify-content: flex-start;
	gap: var(--space-xs);
	margin-bottom: var(--space-m);
	padding: var(--space-xs) var(--space-s);
	flex-wrap: wrap;
}

.progress-step {
	display: flex;
	align-items: center;
	gap: var(--space-3xs);
	opacity: 0.5;
	transition: all 0.3s ease;
}

.progress-step.active {
	opacity: 1;
}

.progress-step.completed {
	opacity: 0.7;
	cursor: pointer;
}

.progress-step.completed:hover {
	opacity: 1;
	transform: translateY(-2px);
}

.step-number {
	width: var(--space-m);
	height: var(--space-m);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--radius-full);
	background: var(--yasmin-border);
	color: var(--light);
	font-weight: 700;
	font-size: var(--text-s);
}

.progress-step.active .step-number {
	background: var(--yasmin-accent);
}

.progress-step.completed .step-number {
	background: var(--yasmin-success);
}

.step-label {
	font-weight: 500;
	color: var(--yasmin-text);
	font-size: var(--text-s);
}

/* Wizard Container Layout */
.wizard-container {
	display: grid;
	grid-template-columns: 1fr 500px;
	gap: var(--space-l);
	align-items: start;
}

/* Wizard Main Section */
.wizard-main {
	background: var(--yasmin-bg);
	padding: 0;
	border-radius: 0;
	box-shadow: 0;
}

.wizard-step {
	min-height: 400px;
}

.step-title {
	font-family: 'Larken', Georgia, serif;
	color: var(--yasmin-text);
	font-size: var(--text-2xl);
	margin: 0 0 var(--space-m) 0;
	font-weight: 600;
}

.section-title {
	font-family: 'Larken', Georgia, serif;
	color: var(--yasmin-text);
	font-size: var(--text-xl);
	margin: var(--space-m) 0 var(--space-s) 0;
	font-weight: 600;
}

/* Form Elements */
.form-row-2col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-s);
	margin-bottom: var(--space-s);
}

.form-group {
	display: flex;
	flex-direction: column;
}

.form-group label {
	font-weight: 600;
	margin-bottom: var(--space-3xs);
	color: var(--yasmin-text);
	font-size: var(--text-s);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.datepicker-input,
.form-select {
	border: 1px solid var(--yasmin-border);
	border-radius: var(--radius-s);
	font-size: var(--text-m);
	font-family: inherit;
	color: var(--yasmin-text);
	transition: all 0.2s ease;
	background: var(--light);
}

.form-group input:focus,
.form-group select:focus,
.datepicker-input:focus,
.form-select:focus {
	outline: none;
	border-color: var(--yasmin-accent);
	box-shadow: 0 0 0 3px var(--primary-10);
}

.form-group input::placeholder {
	color: var(--dark-30);
}

/* Readonly fields (like auto-calculated checkout) */
#check-out[readonly] {
	background: var(--alternative-l-8);
	color: var(--dark-50);
	cursor: not-allowed;
	border-color: var(--border-primary);
}

/* Navigation Buttons */
.wizard-navigation {
	display: flex;
	justify-content: space-between;
	gap: var(--space-s);
	margin-top: var(--space-l);
	padding-top: var(--space-m);
	border-top: 1px solid var(--yasmin-border);
}

.btn {
	padding: var(--space-xs) var(--space-s);
	border: none;
	border-radius: var(--radius-full);
	font-size: var(--text-m);
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: inherit;
	text-align: center;
}

.btn-large {
	width: 100%;
	padding: var(--space-s) var(--space-m);
	font-size: var(--text-l);
}

.btn-primary {
	background: var(--yasmin-accent);
	color: var(--light);
}

.btn-primary:hover:not(:disabled) {
	background: var(--primary-d-1);
	transform: translateY(-2px);
	box-shadow: var(--shadow-m);
}

.btn-secondary {
	background: transparent!important;
	color: var(--dark-50)!important;
	border: none!important;
	padding: var(--space-xs) var(--space-s)!important;
	font-weight: 400!important;
	font-size: var(--text-s)!important;
	box-shadow:none!important;
}

.btn-secondary:hover {
	color: var(--yasmin-text);
	background: transparent;
}

.btn-success {
	background: var(--yasmin-success);
	color: var(--light);
	font-size: var(--text-l);
}

.btn-success:hover:not(:disabled) {
	background: var(--success-60);
	transform: translateY(-2px);
	box-shadow: var(--shadow-l);
}

.btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

/* Sticky Summary */
.wizard-summary {
	position: relative;
}

.summary-sticky {
	position: sticky;
	top: var(--space-s);
	background: var(--yasmin-bg);
	border-radius: var(--radius-m);
	box-shadow: var(--shadow-m);
	overflow: hidden;
}

/* Summary Content - Compact Design */
.summary-content {
	padding: var(--space-s);
}

/* Summary Header with Currency Dropdown */
.summary-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: var(--space-s);
}

.summary-header h3 {
	font-family: 'Larken', Georgia, serif;
	color: var(--yasmin-text);
	font-size: var(--text-l);
	margin: 0;
	font-weight: 600;
}

/* Currency Dropdown */
.currency-dropdown {
	position: relative;
}

.currency-dropdown-btn {
	display: flex;
	align-items: center;
	gap: var(--space-3xs);
	padding: var(--space-3xs) var(--space-xs);
	background: var(--light);
	border: 2px solid var(--yasmin-border);
	border-radius: var(--radius-full);
	cursor: pointer;
	font-weight: 600;
	font-size: var(--text-s);
	color: var(--yasmin-text);
	transition: all 0.2s ease;
	font-family: inherit;
}

.currency-dropdown-btn:hover {
	border-color: var(--yasmin-accent);
	background: var(--primary-5);
}

.currency-dropdown-menu {
	position: absolute;
	top: calc(100% + 5px);
	right: 0;
	background: var(--light);
	border: 1px solid var(--yasmin-border);
	border-radius: var(--radius-s);
	box-shadow: var(--shadow-m);
	overflow: hidden;
	min-width: 140px;
	z-index: 100;
}

.currency-option {
	display: block;
	width: 100%;
	padding: var(--space-xs);
	background: var(--light);
	border: none;
	text-align: left;
	cursor: pointer;
	font-size: var(--text-s);
	font-weight: 500;
	color: var(--yasmin-text);
	transition: all 0.2s ease;
	font-family: inherit;
}

.currency-option:hover {
	background: var(--yasmin-light-bg);
	color: var(--yasmin-accent);
}

.currency-option:not(:last-child) {
	border-bottom: 1px solid var(--yasmin-border);
}

.summary-item {
	display: flex;
	justify-content: space-between;
	padding: var(--space-3xs) 0;
	border-bottom: 1px solid var(--yasmin-border);
	font-size: var(--text-s);
}

.summary-item.small {
	padding: var(--space-4xs) 0;
	font-size: var(--text-xs);
}

.summary-item .label {
	color: var(--yasmin-gray);
	font-weight: 500;
}

.summary-item .value {
	color: var(--yasmin-text);
	font-weight: 600;
}

.summary-section {
	margin: var(--space-s) 0;
}

.summary-section h4 {
	font-size: var(--text-m);
	font-weight: 600;
	margin: 0 0 var(--space-3xs) 0;
	color: var(--yasmin-text);
}

.summary-section-title {
	font-size: var(--text-xs);
	font-weight: 600;
	color: var(--yasmin-accent);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: var(--space-3xs);
}

/* Price line in summary */
.summary-item.price-line {
	padding-top: 0;
	margin-top: -5px;
}

.summary-item.price-line .label {
	flex: 1;
}

.summary-item.price-line .value.price {
	color: var(--yasmin-accent);
	font-weight: 600;
}

.summary-divider {
	height: 2px;
	background: var(--yasmin-border);
	margin: var(--space-s) 0;
}

.summary-total {
	display: flex;
	justify-content: space-between;
	font-size: var(--text-xl);
	font-weight: 700;
	color: var(--yasmin-accent);
	margin-top: var(--space-xs);
	padding-top: var(--space-xs);
	border-top: 2px solid var(--yasmin-text);
}

/* Security Badges - Simple light green look without background */
.security-badges {
	display: flex;
	gap: var(--space-m);
	margin: var(--space-m) 0 0 0;
	padding: 0;
	background: transparent;
	border-radius: 0;
	justify-content: center;
}

.security-badges .badge {
	display: flex;
	align-items: center;
	gap: var(--space-3xs);
	color: var(--success-60);
	font-weight: 500;
	font-size: var(--text-s);
	background: transparent;
	padding: 0;
	border-radius: 0;
	box-shadow: none;
}

.security-badges .dashicons {
	font-size: var(--text-m);
	width: var(--text-m);
	height: var(--text-m);
	color: var(--success-60);
}

/* Success Screen */
.wizard-success {
	text-align: center;
	padding: var(--space-xl) var(--space-l);
	background: var(--success-20);
	border-radius: var(--radius-m);
}

.success-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto var(--space-m);
	background: var(--yasmin-success);
	border-radius: var(--radius-full);
	display: flex;
	align-items: center;
	justify-content: center;
}

.success-icon .dashicons {
	color: var(--light);
	font-size: var(--text-3xl);
	width: var(--text-3xl);
	height: var(--text-3xl);
}

.booking-id {
	font-size: var(--text-l);
	margin: var(--space-s) 0;
	padding: var(--space-s);
	background: var(--yasmin-light-bg);
	border-radius: var(--radius-s);
}

.booking-id strong {
	color: var(--yasmin-accent);
	font-size: var(--text-xl);
}

.success-message {
	text-align: left;
	max-width: 600px;
	margin: var(--space-m) auto;
	line-height: 1.6;
}

.success-message p {
	margin-bottom: var(--space-xs);
}

/* Occupancy Cards - Same design as Room Categories */
.occupancy-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-s);
	margin-bottom: var(--space-l);
}

/* Shared styles for occupancy and category cards */
.occupancy-card,
.room-category-card {
	border: 2px solid var(--yasmin-border);
	border-radius: var(--radius-m);
	padding: var(--space-m) var(--space-s);
	cursor: pointer;
	transition: all 0.3s ease;
	background: var(--light);
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
}

.room-category-card:hover,
.occupancy-card:hover {
	border-color: var(--yasmin-accent);
	transform: translateY(-4px);
	box-shadow: var(--shadow-l);
}

.room-category-card.selected,
.occupancy-card.selected {
	border-color: var(--yasmin-accent);
	border-width: 3px;
	box-shadow: var(--shadow-m);
	background: var(--primary-5);
}

.occupancy-icon,
.category-icon {
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--yasmin-light-bg);
	border-radius: var(--radius-full);
	margin-bottom: var(--space-s);
}

.occupancy-card.selected .occupancy-icon,
.room-category-card.selected .category-icon {
	background: var(--yasmin-accent);
}

.occupancy-icon .dashicons,
.category-icon .dashicons {
	font-size: var(--text-2xl);
	width: var(--text-2xl);
	height: var(--text-2xl);
	color: var(--yasmin-gray);
}

.occupancy-card.selected .occupancy-icon .dashicons,
.room-category-card.selected .category-icon .dashicons {
	color: var(--light);
}

.occupancy-info,
.category-info {
	flex: 1;
}

.occupancy-name,
.category-name {
	font-family: 'Larken', Georgia, serif;
	font-size: var(--text-xl);
	font-weight: 600;
	color: var(--yasmin-text);
	margin: 0 0 var(--space-3xs) 0;
}

/* Occupancy description (only for occupancy cards) */
.occupancy-description {
	font-size: var(--text-xs);
	color: var(--yasmin-gray);
	line-height: 1.5;
	margin: var(--space-3xs) 0;
}

.occupancy-price,
.category-price {
	font-size: var(--text-s);
	font-weight: 700;
	color: var(--yasmin-accent);
	margin: 0;
}

.occupancy-checkmark,
.category-checkmark {
	position: absolute;
	top: var(--space-xs);
	right: var(--space-xs);
	width: var(--space-m);
	height: var(--space-m);
	display: flex;
	align-items: center;
	justify-content: center;
}

.occupancy-checkmark .dashicons,
.category-checkmark .dashicons {
	font-size: var(--space-m);
	width: var(--space-m);
	height: var(--space-m);
	color: var(--yasmin-success);
}

/* Room Categories Grid */
.room-categories-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-s);
	margin-bottom: var(--space-l);
}

/* Rooms Carousel Wrapper */
.rooms-carousel-wrapper {
	margin-top: var(--space-m);
	position: relative;
	padding: 0;
	overflow: visible;
}

/* Rooms Grid - Full width display with smooth transitions */
.rooms-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-s);
	margin-bottom: var(--space-l);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Animation classes for smooth transitions */
.rooms-grid.animating {
	opacity: 0.6;
	transform: translateX(10px);
}

/* Carousel Navigation - Overlaying the carousel */
.carousel-nav {
	position: absolute;
	top: 35%;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	pointer-events: none;
	padding: 0;
	transform: translateY(-50%);
	left: 0;
	right: 0;
	z-index: 20;
}

.carousel-btn {
	width: var(--space-l);
	height: var(--space-l);
	border: none;
	background: var(--light-90);
	box-shadow: var(--shadow-s);
	border-radius: var(--radius-full);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	font-family: inherit;
	pointer-events: auto;
	margin: 0 calc(var(--space-m) * -1);
}

.carousel-btn:hover:not(:disabled) {
	background: var(--light);
	box-shadow: var(--shadow-m);
	transform: scale(1.08);
}

.carousel-btn:hover:not(:disabled) .dashicons {
	color: var(--yasmin-text);
}

.carousel-btn:disabled {
	opacity: 0.3;
	cursor: not-allowed;
	background: var(--light-60);
	box-shadow: var(--shadow-xs);
}

.carousel-btn .dashicons {
	font-size: var(--text-m);
	width: var(--text-m);
	height: var(--text-m);
	color: var(--yasmin-gray);
	transition: color 0.3s ease;
}

/* Dot Pagination */
.carousel-pagination {
	display: flex;
	justify-content: center;
	gap: var(--space-3xs);
	margin-top: var(--space-s);
	padding-bottom: var(--space-3xs);
}

.carousel-dot {
	width: 10px;
	height: 10px;
	border-radius: var(--radius-full);
	background: var(--yasmin-border);
	cursor: pointer;
	transition: all 0.3s ease;
	border: none;
	padding: 0;
}

.carousel-dot.active {
	background: var(--yasmin-accent);
	width: 24px;
	border-radius: var(--radius-xs);
}

.carousel-dot:hover:not(.active) {
	background: var(--yasmin-gray);
}

/* Keep counter for accessibility but hide it visually */
.carousel-counter {
	position: absolute;
	bottom: calc(var(--space-m) * -1);
	left: 50%;
	transform: translateX(-50%);
	font-weight: 600;
	color: var(--yasmin-gray);
	font-size: var(--text-s);
	display: none;
}

.room-card {
	border: 2px solid var(--yasmin-border);
	border-radius: var(--radius-l);
	overflow: hidden;
	cursor: pointer;
	transition: all 0.3s ease;
	background: var(--light);
}

.room-card:hover {
	border-color: var(--yasmin-accent);
	transform: translateY(-4px);
	box-shadow: var(--shadow-l);
}

.room-card.selected {
	border-color: var(--yasmin-accent);
	border-width: 3px;
	box-shadow: var(--shadow-m);
}

.room-card-image {
	width: 100%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--yasmin-light-bg);
}

.room-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--radius-l) var(--radius-l) 0 0;
}

.room-card-content {
	padding: var(--space-s);
}

.room-card-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: var(--space-3xs);
}

.room-card-title {
	font-weight: 700;
	font-size: var(--text-l);
	color: var(--yasmin-text);
}

.room-card-price {
	font-weight: 700;
	font-size: var(--text-xl);
	color: var(--yasmin-accent);
}

.room-card-description {
	font-size: var(--text-s);
	color: var(--yasmin-gray);
	line-height: 1.5;
}

/* Upsells Grid */
.upsells-grid {
	display: grid;
	gap: var(--space-xs);
	margin-bottom: var(--space-m);
}

.upsell-card {
	border: 2px solid var(--yasmin-border);
	border-radius: var(--radius-s);
	padding: var(--space-s);
	cursor: pointer;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	gap: var(--space-xs);
	background: var(--light);
}

.upsell-card:hover {
	border-color: var(--yasmin-accent);
}

.upsell-card.selected {
	border-color: var(--yasmin-accent);
	background: var(--primary-5);
}

.upsell-checkbox {
	width: var(--space-m);
	height: var(--space-m);
	min-width: var(--space-m);
	border: 2px solid var(--yasmin-border);
	border-radius: var(--radius-xs);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
}

.upsell-card.selected .upsell-checkbox {
	background: var(--yasmin-accent);
	border-color: var(--yasmin-accent);
	color: var(--light);
}

.upsell-info {
	flex: 1;
}

.upsell-name {
	font-weight: 600;
	font-size: var(--text-m);
	color: var(--yasmin-text);
	margin-bottom: var(--space-4xs);
}

.upsell-description {
	font-size: var(--text-s);
	color: var(--yasmin-gray);
}

.upsell-price {
	font-weight: 700;
	font-size: var(--text-l);
	color: var(--yasmin-accent);
	min-width: 100px;
	text-align: right;
}

/* Summary Details Table */
.booking-summary-details {
	background: var(--yasmin-light-bg);
	border-radius: var(--radius-s);
	padding: var(--space-s);
	margin-bottom: var(--space-m);
}

.summary-row {
	display: flex;
	justify-content: space-between;
	padding: var(--space-xs) 0;
	border-bottom: 1px solid var(--yasmin-border);
}

.summary-row:last-child {
	border-bottom: none;
}

.summary-row-label {
	color: var(--yasmin-gray);
	font-weight: 500;
}

.summary-row-value {
	color: var(--yasmin-text);
	font-weight: 600;
}

/* Total row styling - makes it stand out */
.summary-row-total {
	margin-top: var(--space-s);
	padding-top: var(--space-s);
	border-top: 3px solid var(--yasmin-text);
	border-bottom: none;
}

.summary-row-total .summary-row-label {
	font-size: var(--text-l);
	font-weight: 700;
	color: var(--yasmin-text);
}

.summary-row-total .summary-row-value {
	font-size: var(--text-xl);
	font-weight: 700;
	color: var(--yasmin-accent);
}

/* Responsive Design */
@media (max-width: 1200px) {
	.wizard-container {
		grid-template-columns: 3fr 2fr;
	}
}

@media (max-width: 992px) {
	.wizard-container {
		grid-template-columns: 1fr;
	}

	.summary-sticky {
		position: static;
		margin-top: var(--space-l);
	}

	.room-image {
		height: 200px;
	}
}

/* Mobile Responsive - Compact Scrollable Steps */
@media (max-width: 768px) {
	.yasmin-booking-wizard {
		padding: 0;
		margin: 0;
	}

	.wizard-main {
		padding: 0;
	}

	/* Compact Horizontal Scrollable Step Indicator */
	.wizard-progress {
		flex-direction: row;
		flex-wrap: nowrap;
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
		-ms-overflow-style: none;
		padding: var(--space-3xs) 0;
		margin-bottom: var(--space-2xs);
		gap: var(--space-3xs);
		justify-content: flex-start;
	}

	.wizard-progress::-webkit-scrollbar {
		display: none;
	}

	.progress-step {
		flex: 0 0 auto;
		scroll-snap-align: center;
		padding: var(--space-3xs) var(--space-xs);
		background: var(--dark-10);
		border-radius: var(--radius-full);
		border: 2px solid transparent;
		min-width: auto;
	}

	.progress-step.active {
		background: var(--light);
		border-color: var(--yasmin-accent);
	}

	.progress-step.completed {
		background: var(--success-10);
		border-color: var(--yasmin-success);
	}

	.step-number {
		width: var(--space-s);
		height: var(--space-s);
		font-size: var(--text-xs);
	}

	.step-label {
		font-size: var(--text-xs);
		white-space: nowrap;
	}

	/* Hide step label for non-active steps to save space */
	.progress-step:not(.active) .step-label {
		display: none;
	}

	.step-title {
		font-size: var(--text-xl);
		margin: 0 0 var(--space-s) 0;
	}

	.section-title {
		font-size: var(--text-l);
		margin: var(--space-s) 0 var(--space-xs) 0;
	}

	.form-row-2col {
		grid-template-columns: 1fr;
		gap: var(--space-xs);
	}

	.form-group input[type="text"],
	.form-group input[type="email"],
	.form-group input[type="tel"],
	.form-group select,
	.datepicker-input,
	.form-select {
		padding: var(--space-xs);
		font-size: var(--text-m);
	}

	.room-categories-grid,
	.occupancy-cards {
		grid-template-columns: 1fr;
		gap: var(--space-xs);
	}

	.rooms-grid {
		grid-template-columns: 1fr !important;
	}

	.carousel-btn {
		width: var(--space-m);
		height: var(--space-m);
		margin: 0 calc(var(--space-s) * -1);
	}

	.carousel-btn .dashicons {
		font-size: var(--text-l);
		width: var(--text-l);
		height: var(--text-l);
	}

	.wizard-navigation {
		flex-direction: column-reverse;
		gap: var(--space-2xs);
		margin-top: var(--space-m);
		padding-top: var(--space-s);
	}

	.btn {
		width: 100%;
		padding: var(--space-xs);
		font-size: var(--text-m);
	}

	.security-badges {
		flex-direction: column;
		gap: var(--space-2xs);
		padding: var(--space-xs);
	}

	/* Make summary more compact on mobile */
	.summary-content {
		padding: var(--space-s);
	}

	.summary-header h3 {
		font-size: var(--text-l);
	}

	.summary-total {
		font-size: var(--text-l);
	}

	/* Retreat fixed dates - stack vertically on mobile */
	.fixed-dates-display {
		grid-template-columns: 1fr;
		gap: var(--space-xs);
		padding: 0;
		background: transparent;
		border: none;
	}

	.fixed-dates-display .form-group {
		width: 100%;
	}

	.fixed-dates-display .date-value {
		width: 100%;
		box-sizing: border-box;
	}

	/* Security badges on mobile - simple look */
	.security-badges {
		flex-direction: row;
		gap: var(--space-s);
		padding: 0;
		background: transparent;
	}

	.security-badges .badge {
		font-size: var(--text-xs);
		color: var(--success-60);
	}

	/* Mobile Room Carousel - Show only one room with navigation */
	.rooms-carousel-wrapper {
		position: relative;
		overflow: hidden;
	}

	.rooms-grid {
		display: flex;
		flex-wrap: nowrap;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		-ms-overflow-style: none;
		gap: 0;
	}

	.rooms-grid::-webkit-scrollbar {
		display: none;
	}

	.rooms-grid .room-card {
		flex: 0 0 100%;
		width: 100%;
		scroll-snap-align: center;
		margin-right: var(--space-s);
	}

	.carousel-nav {
		display: flex;
		position: absolute;
		top: 50%;
		left: 0;
		right: 0;
		justify-content: space-between;
		padding: 0 var(--space-xs);
		pointer-events: none;
		z-index: 10;
	}

	.carousel-btn {
		width: 40px;
		height: 40px;
		background: var(--light);
		border: 2px solid var(--yasmin-border);
		border-radius: var(--radius-full);
		box-shadow: var(--shadow-m);
		pointer-events: auto;
		display: flex;
		align-items: center;
		justify-content: center;
		cursor: pointer;
		transition: all 0.3s ease;
	}

	.carousel-btn:hover {
		background: var(--yasmin-accent);
		border-color: var(--yasmin-accent);
	}

	.carousel-btn:hover .dashicons {
		color: var(--light);
	}

	.carousel-btn .dashicons {
		font-size: var(--text-l);
		color: var(--yasmin-text);
	}

	.carousel-btn.prev {
		margin-left: calc(var(--space-s) * -1);
	}

	.carousel-btn.next {
		margin-right: calc(var(--space-s) * -1);
	}
}

/* Flatpickr Custom Styling */
.flatpickr-calendar {
	font-family: 'Eina2', sans-serif;
}

.flatpickr-day.selected {
	background: var(--yasmin-accent) !important;
	border-color: var(--yasmin-accent) !important;
}

.flatpickr-day:hover {
	background: var(--primary-10);
	border-color: var(--yasmin-accent);
}

/* Fixed Dates Display for Retreats - Clean look without box */
.fixed-dates-display {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-s);
	margin-bottom: var(--space-s);
	padding: 0;
	background: transparent;
	border-radius: 0;
	border: none;
}

.date-display-item {
	display: flex;
	flex-direction: column;
	gap: var(--space-3xs);
}

.date-display-item label {
	font-weight: 600;
	color: var(--yasmin-text);
	font-size: var(--text-s);
}

.date-value {
	font-size: var(--text-m);
	color: var(--dark-50);
	font-weight: 500;
	padding: var(--space-xs);
	background: var(--dark-10);
	border-radius: var(--radius-xs);
	border: 1px solid var(--yasmin-border);
	cursor: not-allowed;
}

/* Alpine.js Visibility Control */
[x-cloak] {
	display: none !important;
}

/* Let Alpine.js x-show handle step visibility - no default hiding */

/* Treatment Packages - Inline Layout */
.treatment-packages-inline {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-s);
	justify-content: flex-start;
}

.treatment-package-card {
	flex: 1 1 calc(33.333% - var(--space-s));
	min-width: 220px;
	max-width: 300px;
	position: relative;
	padding: var(--space-m) var(--space-s);
	background: var(--light);
	border: 2px solid var(--yasmin-border);
	border-radius: var(--radius-m);
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.treatment-package-card:hover {
	border-color: var(--yasmin-accent);
	transform: translateY(-4px);
	box-shadow: var(--shadow-l);
}

.treatment-package-card.selected {
	border-color: var(--yasmin-accent);
	border-width: 3px;
	background: var(--primary-5);
	box-shadow: var(--shadow-m);
}

.treatment-package-icon {
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--yasmin-light-bg);
	border-radius: var(--radius-full);
	margin-bottom: var(--space-s);
}

.treatment-package-card.selected .treatment-package-icon {
	background: var(--yasmin-accent);
}

.treatment-package-icon .dashicons {
	font-size: var(--text-2xl);
	width: var(--text-2xl);
	height: var(--text-2xl);
	color: var(--yasmin-gray);
	transition: color 0.2s ease;
}

.treatment-package-card.selected .treatment-package-icon .dashicons {
	color: var(--light);
}

.treatment-package-name {
	font-family: 'Larken', Georgia, serif;
	font-size: var(--text-l);
	font-weight: 600;
	color: var(--yasmin-text);
	margin: 0 0 var(--space-3xs) 0;
}

.treatment-package-description {
	font-size: var(--text-xs);
	color: var(--yasmin-gray);
	line-height: 1.5;
	margin: var(--space-3xs) 0;
	min-height: 40px;
}

.treatment-package-price {
	font-size: var(--text-m);
	font-weight: 700;
	color: var(--yasmin-accent);
	margin: 0;
}

.treatment-package-checkmark {
	position: absolute;
	top: var(--space-xs);
	right: var(--space-xs);
	width: var(--space-m);
	height: var(--space-m);
	display: flex;
	align-items: center;
	justify-content: center;
}

.treatment-package-checkmark .dashicons {
	font-size: var(--space-m);
	width: var(--space-m);
	height: var(--space-m);
	color: var(--yasmin-success);
}

/* Responsive: Stack on mobile */
@media (max-width: 768px) {
	.treatment-packages-inline {
		flex-direction: column;
	}
	
	.treatment-package-card {
		flex: 1 1 100%;
		max-width: 100%;
	}
}

/* ========================================
   ADD TO CALENDAR SECTION
   ======================================== */

/* Calendar Section Container */
.calendar-section {
	margin-top: var(--space-xl);
	padding: var(--space-l);
	background: var(--light);
	border-radius: var(--radius-m);
	border: 2px solid var(--yasmin-border);
	text-align: center;
}

.calendar-title {
	font-family: 'Larken', Georgia, serif;
	font-size: var(--text-xl);
	font-weight: 600;
	color: var(--yasmin-text);
	margin: 0 0 var(--space-xs) 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-xs);
}

.calendar-title .dashicons {
	font-size: var(--text-xl);
	width: var(--text-xl);
	height: var(--text-xl);
	color: var(--yasmin-accent);
}

.calendar-description {
	font-size: var(--text-s);
	color: var(--yasmin-gray);
	margin: 0 0 var(--space-m) 0;
	line-height: 1.5;
}

/* Calendar Buttons Grid */
.calendar-buttons-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--space-s);
	max-width: 700px;
	margin: 0 auto;
}

/* Calendar Button Base Styles */
.calendar-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-xs);
	padding: var(--space-s) var(--space-m);
	border: 2px solid var(--yasmin-border);
	border-radius: var(--radius-m);
	background: var(--light);
	color: var(--yasmin-text);
	font-family: inherit;
	font-size: var(--text-s);
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
	min-height: 52px;
}

.calendar-btn:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-m);
}

.calendar-btn:focus {
	outline: none;
	box-shadow: 0 0 0 3px var(--primary-20);
}

/* Calendar Icon Styling */
.calendar-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	flex-shrink: 0;
}

.calendar-icon svg {
	width: 100%;
	height: 100%;
}

.calendar-btn .dashicons {
	font-size: var(--text-l);
	width: var(--text-l);
	height: var(--text-l);
	flex-shrink: 0;
}

/* Google Calendar Button */
.calendar-btn-google {
	border-color: #4285f4;
	color: #4285f4;
	background: #fff;
}

.calendar-btn-google:hover {
	background: #4285f4;
	color: #fff;
	border-color: #4285f4;
}

.calendar-btn-google .google-icon {
	color: inherit;
}

/* Outlook Button */
.calendar-btn-outlook {
	border-color: #0078d4;
	color: #0078d4;
	background: #fff;
}

.calendar-btn-outlook:hover {
	background: #0078d4;
	color: #fff;
	border-color: #0078d4;
}

.calendar-btn-outlook .outlook-icon {
	color: inherit;
}

/* Apple Calendar Button */
.calendar-btn-apple {
	border-color: #333;
	color: #333;
	background: #fff;
}

.calendar-btn-apple:hover {
	background: #333;
	color: #fff;
	border-color: #333;
}

.calendar-btn-apple .apple-icon {
	color: inherit;
}

/* Calendar Button Text */
.calendar-btn-text {
	white-space: nowrap;
}

/* Responsive: Stack buttons on mobile */
@media (max-width: 768px) {
	.calendar-section {
		padding: var(--space-m);
		margin-top: var(--space-l);
	}

	.calendar-title {
		font-size: var(--text-l);
	}

	.calendar-buttons-grid {
		grid-template-columns: 1fr;
		gap: var(--space-xs);
	}

	.calendar-btn {
		padding: var(--space-xs) var(--space-s);
		min-height: 48px;
		font-size: var(--text-xs);
	}

	.calendar-icon,
	.calendar-btn .dashicons {
		width: 20px;
		height: 20px;
		font-size: var(--text-m);
		width: var(--text-m);
		height: var(--text-m);
	}
}

/* Mobile: Stack buttons */
@media (max-width: 768px) {
	.calendar-buttons-grid {
		grid-template-columns: 1fr;
	}
}

/* ========================================
   EXTENDED STAY SECTION
   ======================================== */

.extended-stay-section {
	margin-top: var(--space-m);
	padding: var(--space-s);
	background: var(--yasmin-light-bg);
	border-radius: var(--radius-s);
	border: 1px solid var(--yasmin-border);
}

.extended-stay-checkbox-label {
	display: flex;
	align-items: center;
	gap: var(--space-xs);
	cursor: pointer;
	font-weight: 500;
	color: var(--yasmin-text);
	margin-bottom: 0;
}

.extended-stay-checkbox {
	width: 18px;
	height: 18px;
	cursor: pointer;
	accent-color: var(--yasmin-accent);
}

.extended-stay-details {
	margin-top: var(--space-s);
	padding-top: var(--space-s);
	border-top: 1px solid var(--yasmin-border);
}

.extended-stay-details label {
	display: block;
	margin-bottom: var(--space-3xs);
	font-size: var(--text-s);
	color: var(--yasmin-gray);
}

.extended-stay-details textarea {
	width: 100%;
	padding: var(--space-xs);
	border: 1px solid var(--yasmin-border);
	border-radius: var(--radius-s);
	font-size: var(--text-m);
	resize: vertical;
	min-height: 80px;
	font-family: inherit;
}

.extended-stay-details textarea:focus {
	outline: none;
	border-color: var(--yasmin-accent);
	box-shadow: 0 0 0 3px var(--primary-10);
}

/* ========================================
   GDPR CONSENT SECTION
   ======================================== */

.gdpr-consent-section {
	margin: var(--space-m) 0;
	padding: var(--space-s);
	background: var(--primary-5);
	border-radius: var(--radius-s);
	border: 1px solid var(--primary-20);
}

.gdpr-checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: var(--space-xs);
	cursor: pointer;
	font-size: var(--text-s);
	line-height: 1.5;
	color: var(--yasmin-text);
}

.gdpr-checkbox {
	width: 18px;
	height: 18px;
	margin-top: 2px;
	cursor: pointer;
	accent-color: var(--yasmin-accent);
	flex-shrink: 0;
}

.gdpr-checkbox-label a {
	color: var(--yasmin-accent);
	text-decoration: underline;
	font-weight: 600;
}

.gdpr-checkbox-label a:hover {
	color: var(--primary-d-1);
}

.gdpr-checkbox-label span {
	flex: 1;
}
