/* class-hostaway-shortcodes.php */
.hostaway-universal-properties {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 20px;
}

.universal-search-bar {
	margin-bottom: 30px;
}

.universal-layout {
	display: block;
}

.universal-properties-grid {
	display: grid;
	gap: 20px;
}

.universal-properties-grid.columns-1 {
	grid-template-columns: 1fr;
}

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

.universal-properties-grid.columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

.universal-properties-grid.columns-4 {
	grid-template-columns: repeat(4, 1fr);
}

.properties-list-header {
	margin-bottom: 20px;
}

.properties-list-header h3 {
	margin: 0 0 10px 0;
	font-size: 24px;
	font-weight: 700;
}

.date-range {
	color: #666;
	margin: 5px 0;
}

.showing-count {
	color: #999;
	font-size: 14px;
}

.no-properties-found {
	text-align: center;
	padding: 60px 20px;
	background: #f9f9f9;
	border-radius: 12px;
}

.no-properties-found h3 {
	margin: 20px 0 10px;
	font-size: 22px;
	color: #333;
}

.no-properties-found p {
	color: #666;
}

.universal-load-more-wrapper {
	text-align: center;
	margin: 40px 0;
}

.universal-load-more-btn {
	background: #222;
	color: white;
	border: none;
	padding: 14px 32px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
	border: 1px solid #222;
}

.universal-load-more-btn:hover:not(:disabled) {
	background: #fff;
	border-color: #222;
	color: #222;
}

.universal-load-more-spinner svg {
	animation: spin 1s linear infinite;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.hostaway-pagination {
	margin: 30px 0;
	text-align: center;
}

.hostaway-pagination ul {
	list-style: none;
	padding: 0;
	display: inline-flex;
	gap: 5px;
}

.hostaway-pagination li a,
.hostaway-pagination li span {
	padding: 8px 12px;
	background: white;
	border: 1px solid #ddd;
	border-radius: 4px;
	text-decoration: none;
	color: var(--hostaway-primary-color);
	font-size: 15px;
}

.hostaway-pagination li.active span {
	background: var(--hostaway-primary-color);
	color: white;
	border-color: var(--hostaway-primary-color);
}

@media (max-width: 1024px) {

	.universal-properties-grid.columns-3,
	.universal-properties-grid.columns-4 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.universal-properties-grid {
		grid-template-columns: 1fr !important;
	}
}

.optional-fees-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.optional-fee-item {
	display: grid;
	grid-template-columns: 18px 1fr auto;
	gap: 8px 12px;
	align-items: center;
	padding: 10px 12px;
	border: 1px solid #eee;
	border-radius: 8px;
}

.optional-fee-title {
	font-weight: 600;
}

.optional-fee-amount {
	font-weight: 600;
	white-space: nowrap;
}

.optional-fee-desc {
	grid-column: 2 / 4;
	color: #666;
	font-size: 13px;
}

.form-row {
	display: flex;
	gap: 20px;
	margin-bottom: 15px;
}

.form-group {
	flex: 1;
}

.form-group.full-width {
	flex: 1 1 100%;
}

.form-group label {
	font-size: 16px;
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
	color: #222;
}

.form-section label.checkbox-label span {
	font-size: 16px;
}


.form-group textarea {
	resize: vertical;
}

.required {
	color: #f00;
}

.payment-method-icon {
	font-size: 24px;
	margin-right: 15px;
}

.payment-method-label {
	display: flex;
	flex-direction: column;
}

.payment-method-label strong {
	font-size: 16px;
	margin-bottom: 5px;
}

.payment-method-label small {
	color: #666;
	font-size: 13px;
}

.payment-errors {
	color: #f00;
	font-size: 13px;
	margin-top: 8px;
	display: none;
}

.hostaway-checkout-page .checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	cursor: pointer;
	color: var(--hostaway-secondary-color);
}

.checkbox-label input[type="checkbox"] {
	margin-top: 3px;
}

.checkbox-label input[type="checkbox"]:focus {
	outline-width: 0;
}

.btn-primary {
	background: #135e96;
	color: #fff;
}

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

.btn-lg {
	padding: 16px 32px;
	font-size: 16px;
}

.btn-block {
	display: block;
	width: 100%;
}

.btn-loader .spinner {
	display: inline-block;
	width: 16px;
	height: 16px;
	border: 2px solid #fff;
	border-top-color: transparent;
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
}

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

/* archive-search-bar.php — Fernwood-style pill search bar */
.hostaway-search-bar-wrapper .hostaway-search-form {
	margin: 0;
}

.hostaway-search-bar-wrapper .search-fields-row {
	display: flex;
	align-items: center;
	gap: 0;
}

.hostaway-search-bar-wrapper .search-field {
	display: flex;
	align-items: center;
	flex: 1;
	padding: 4px 18px;
	position: relative;
	border: none;
	min-width: 0;
	cursor: pointer;
}

.hostaway-search-bar-wrapper .search-field:not(.search-submit):not(:last-of-type)::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	width: 1px;
	height: 28px;
	background: #cdcdcd;
	opacity: 0.45;
}

.hostaway-search-bar-wrapper .search-field.search-guests:not(:last-of-type)::after,
.hostaway-search-bar-wrapper .search-field:has(+ .search-submit)::after {
	content: '';
}

.hostaway-search-bar-wrapper .search-field:last-of-type,
.hostaway-search-bar-wrapper .search-field.search-submit {
	border: none;
	padding-right: 0;
	padding-left: 10px;
	flex: 0 0 auto;
	cursor: default;
}

.hostaway-search-bar-wrapper .search-field.search-submit::after {
	display: none;
}

.hostaway-search-bar-wrapper .search-field-trigger {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	transition: none;
	min-width: 0;
	padding: 4px 0;
	border: none;
	border-right: none;
	background: transparent;
	min-height: 0 !important;
	box-shadow: none;
	cursor: pointer;
	text-align: left;
}

.hostaway-search-bar-wrapper .search-field-trigger:hover {
	border: none;
	border-color: transparent;
	background: transparent;
}

.hostaway-search-bar-wrapper .search-field-icon {
	width: 44px;
	height: 44px;
	min-width: 44px;
	border-radius: 50%;
	background: color-mix(in srgb, var(--hostaway-primary-color) 15%, transparent);
	display: flex;
	align-items: center;
	justify-content: center;
	color: color-mix(in srgb, var(--hostaway-primary-color) 85%, transparent);
	flex-shrink: 0;
}

.hostaway-search-bar-wrapper .search-field-icon svg {
	width: 16px;
	height: 16px;
}

.hostaway-search-bar-wrapper .search-field-text {
	display: flex;
	flex-direction: column;
	text-align: left;
	min-width: 0;
}

.hostaway-search-bar-wrapper .field-label {
	font-size: 10px;
	font-weight: 600;
	color: var(--hostaway-secondary-color);
	letter-spacing: 0.4px;
	text-transform: uppercase;
	margin-bottom: 5px;
	display: block;
	line-height: 1.2;
}

.hostaway-search-bar-wrapper .field-value {
	font-size: 13px;
	font-weight: 400;
	color: color-mix(in srgb, var(--hostaway-secondary-color) 75%, transparent);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 1.25;
}

.hostaway-search-bar-wrapper .field-value.selected {
	font-weight: 500;
	color: var(--hostaway-secondary-color);
}

.hostaway-search-bar-wrapper .search-dropdown {
	position: absolute;
	top: calc(100% + 12px);
	left: 0;
	right: auto;
	min-width: 280px;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 12px 40px rgba(35, 67, 63, 0.14);
	z-index: 1000;
	display: none;
	max-height: 300px;
	overflow-y: auto;
	padding: 8px;
}

.hostaway-search-bar-wrapper .search-dropdown.active {
	display: block;
}

.hostaway-search-bar-wrapper .dropdown-content {
	padding: 8px;
}

.hostaway-search-bar-wrapper .location-item {
	padding: 12px 16px;
	font-size: 14px;
	cursor: pointer;
	border-radius: 12px;
	transition: background 0.2s;
	color: var(--hostaway-secondary-color);
}

.hostaway-search-bar-wrapper .location-item:hover {
	background: color-mix(in srgb, var(--hostaway-primary-color) 15%, transparent);
}

.hostaway-search-bar-wrapper .location-item.active {
	background: var(--hostaway-primary-color);
	color: #fff;
}

.hostaway-search-bar-wrapper .guests-counter {
	font-size: 14px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 8px;
	color: var(--hostaway-secondary-color);
}

.hostaway-search-bar-wrapper .counter-label {
	font-weight: 600;
}

.hostaway-search-bar-wrapper .counter-controls {
	display: flex;
	align-items: center;
	gap: 12px;
}

.hostaway-search-bar-wrapper .counter-btn {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 1.5px solid var(--hostaway-secondary-color);
	background: #fff;
	cursor: pointer;
	font-size: 18px;
	color: var(--hostaway-secondary-color);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s;
}

.hostaway-search-bar-wrapper .counter-btn:hover:not(:disabled) {
	background: color-mix(in srgb, var(--hostaway-primary-color) 15%, transparent);
}

.hostaway-search-bar-wrapper .counter-btn:disabled {
	opacity: 0.35;
	cursor: default;
}

.hostaway-search-bar-wrapper .guest-count {
	font-size: 15px;
	font-weight: 600;
	color: var(--hostaway-secondary-color);
	min-width: 20px;
	text-align: center;
}

.hostaway-search-bar-wrapper .search-btn {
	width: auto;
	background: var(--hostaway-primary-color);
	color: var(--bizhost-white-color);
	border: none;
	border-radius: 50px;
	padding: 12px 30px;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
	white-space: nowrap;
	margin-left: 10px;
	line-height: 1.2;
	transition: background 0.25s, transform 0.15s;
}

.hostaway-search-bar-wrapper .search-btn:hover {
	background: color-mix(in srgb, var(--hostaway-primary-color) 85%, transparent);
}

.hostaway-search-bar-wrapper .calendar__shadow {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 9998;
	display: none;
}

.hostaway-search-bar-wrapper .calendar__shadow.active,
.calendar__shadow.active {
	display: block;
}

.calendar__shadow {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 9998;
	display: none;
}

.archive-calendar-popup {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: var(--bizhost-white-color);
	border-radius: 14px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
	z-index: 9999;
	width: 92%;
	max-width: 640px;
	max-height: 80vh;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.archive-calendar-popup.hidden {
	display: none;
}

body.modal-open {
	overflow: hidden;
}

.archive-calendar-popup .popup-container {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.archive-calendar-popup .popup-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 16px;
	border-bottom: 1px solid #eee;
}

.archive-calendar-popup .popup-header-content {
	display: flex;
	align-items: center;
	gap: 12px;
}

.archive-calendar-popup .popup-header h3 {
	margin: 0;
	font-size: 16px;
	font-weight: 600;
	color: var(--hostaway-secondary-color);
}

.archive-calendar-popup .popup-clear-btn,
.archive-calendar-popup .popup-close-btn {
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
	color: #666;
	font-size: 13px;
	transition: color 0.2s;
}

.archive-calendar-popup .popup-clear-btn:hover,
.archive-calendar-popup .popup-close-btn:hover {
	color: #000;
}

.archive-calendar-popup .popup-close-btn svg {
	width: 18px;
	height: 18px;
}

.archive-calendar-popup .popup-selected-dates {
	padding: 10px 16px;
	background: #f9f9f9;
	border-bottom: 1px solid #eee;
}

.archive-calendar-popup .selected-dates-info {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 13px;
	color: var(--hostaway-secondary-color);
}

.archive-calendar-popup .nights-count {
	color: #666;
	font-size: 12px;
}

.archive-calendar-popup .calendar-navigation {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 16px;
	border-bottom: 1px solid #eee;
}

.archive-calendar-popup .nav-btn {
	background: color-mix(in srgb, var(--hostaway-primary-color) 15%, transparent);
	border: none;
	cursor: pointer;
	padding: 0;
	border-radius: 50%;
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #23433f;
	transition: background 0.2s;
}

.archive-calendar-popup .nav-btn svg {
	width: 16px;
	height: 16px;
}

.archive-calendar-popup .nav-btn:hover:not(:disabled) {
	background: #dce7e5;
}

.archive-calendar-popup .nav-btn:disabled {
	opacity: 0.3;
	cursor: not-allowed;
}

.archive-calendar-popup .calendar-months {
	display: flex;
	gap: 16px;
	font-weight: 600;
	font-size: 13px;
	color: #23433f;
}

.archive-calendar-popup .calendar-body {
	flex: 1;
	overflow-y: auto;
	padding: 12px 16px;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.archive-calendar-popup .month {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.archive-calendar-popup .weekday-header {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 0;
	margin-bottom: 4px;
}

.archive-calendar-popup .weekday {
	text-align: center;
	font-size: 11px;
	font-weight: 600;
	color: #6c7f7c;
	padding: 4px 0;
}

.archive-calendar-popup .days-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	column-gap: 0;
	row-gap: 1px;
}

.archive-calendar-popup .day {
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	position: relative;
	border-radius: 0;
	background: transparent !important;
	border-color: transparent !important;
	color: inherit !important;
	transition: none;
	max-height: 34px;
}

.archive-calendar-popup .day:not(.disabled):not(.selected):not(.in-range):hover .dayBox {
	background: color-mix(in srgb, var(--hostaway-primary-color) 15%, transparent);
}

.archive-calendar-popup .day.disabled {
	opacity: 0.35;
	cursor: not-allowed;
	pointer-events: none;
}

.archive-calendar-popup .dayBox {
	width: 28px;
	height: 28px;
	max-width: 90%;
	max-height: 90%;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 12px;
	font-weight: 500;
	position: relative;
	z-index: 1;
	color: #23433f;
	transition: background 0.15s, color 0.15s;
}

/* Continuous in-range bar */
.archive-calendar-popup .day.in-range::before,
.archive-calendar-popup .day.range-start::before,
.archive-calendar-popup .day.range-end::before,
.archive-calendar-popup .day.preview-end::before {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	height: 28px;
	background: var(--hostaway-calendar-range, rgba(94, 143, 122, 0.18));
	z-index: 0;
}

.archive-calendar-popup .day.in-range::before {
	left: 0;
	right: 0;
}

.archive-calendar-popup .day.range-start::before {
	left: 50%;
	right: 0;
}

.archive-calendar-popup .day.range-end::before,
.archive-calendar-popup .day.preview-end::before {
	left: 0;
	right: 50%;
}

.archive-calendar-popup .day.range-start.range-end::before {
	display: none;
}

.archive-calendar-popup .day.selected .dayBox,
.archive-calendar-popup .day.range-start .dayBox,
.archive-calendar-popup .day.range-end .dayBox,
.archive-calendar-popup .day.preview-end .dayBox {
	background: var(--hostaway-secondary-color, #5e8f7a) !important;
	color: #fff !important;
	border-radius: 50%;
}

.archive-calendar-popup .day.in-range .dayBox {
	background: transparent;
	color: var(--hostaway-primary-color, #23433f);
}

.archive-calendar-popup .popup-footer {
	display: flex;
	justify-content: flex-end;
	gap: 8px;
	padding: 12px 16px;
	border-top: 1px solid #eee;
}

.archive-calendar-popup .btn-secondary,
.archive-calendar-popup .btn-primary {
	padding: 8px 16px;
	border-radius: 50px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
}

.archive-calendar-popup .btn-secondary {
	background: white;
	border: 1px solid #dce7e5;
	color: #23433f;
}

.archive-calendar-popup .btn-secondary:hover {
	background: color-mix(in srgb, var(--hostaway-primary-color) 15%, transparent);
}

.archive-calendar-popup .btn-primary {
	background: var(--hostaway-button-color, #5e8f7a);
	border: none;
	color: var(--hostaway-button-text, #fff);
}

.archive-calendar-popup .btn-primary:hover {
	background: #4e7b67;
}

@media (max-width: 900px) {
	.hostaway-search-bar-wrapper {
		border-radius: 24px;
		padding: 16px;
	}

	.hostaway-search-bar-wrapper .search-fields-row {
		flex-direction: column;
		gap: 4px;
	}

	.hostaway-search-bar-wrapper .search-field {
		width: 100%;
		border: none;
		padding: 12px 8px;
	}

	.hostaway-search-bar-wrapper .search-field:not(.search-submit):not(:last-of-type)::after {
		top: auto;
		bottom: 0;
		left: 8px;
		right: 8px;
		width: auto;
		height: 1px;
		transform: none;
	}

	.hostaway-search-bar-wrapper .search-field:last-of-type,
	.hostaway-search-bar-wrapper .search-field.search-submit {
		border: none;
		padding-bottom: 0;
	}

	.hostaway-search-bar-wrapper .search-btn {
		width: 100%;
		margin: 10px 0 0;
	}

	.hostaway-search-bar-wrapper .search-dropdown {
		left: 0;
		right: 0;
		min-width: unset;
	}

	.archive-calendar-popup {
		width: 94%;
		max-width: 360px;
		max-height: 85vh;
	}

	.archive-calendar-popup .calendar-body {
		grid-template-columns: 1fr;
		gap: 12px;
		padding: 10px 12px;
	}
}

@keyframes scaleIn {
	0% {
		transform: scale(0);
		opacity: 0;
	}

	50% {
		transform: scale(1.1);
	}

	100% {
		transform: scale(1);
		opacity: 1;
	}
}

@keyframes drawCheck {
	0% {
		stroke-dashoffset: 100;
	}

	100% {
		stroke-dashoffset: 0;
	}
}

@keyframes drawCircle {
	0% {
		stroke-dashoffset: 166;
	}

	100% {
		stroke-dashoffset: 0;
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hostaway-thankyou-page,
.hostaway-error-page {
	min-height: 100vh;
	background: #f4f4f1;
	padding: 40px 20px;
}

.success-banner {
	text-align: center;
	padding: 40px 20px;
	animation: fadeInUp 0.8s ease-out;
}

.thankyou-container {
	max-width: 1000px;
	margin: 0 auto;
	animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.badge-icon {
	width: 60px;
	height: 60px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	color: #fff;
}

.badge-label {
	color: rgba(255, 255, 255, 0.9);
	font-size: 14px;
	text-transform: uppercase;
}

.quick-summary {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
	margin-bottom: 30px;
}

.summary-card {
	background: #fff;
	border-radius: 12px;
	padding: 25px;
	text-align: center;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.property-details-card,
.transaction-details-card,
.guest-info-card,
.next-steps-card {
	background: #fff;
	border-radius: 12px;
	padding: 30px;
	margin-bottom: 20px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.section-title {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 28px;
	color: #1f3d39;
	margin: 0 0 25px 0;
	padding-bottom: 15px;
	border-bottom: 2px solid #f0f0f0;
}

.property-content {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 30px;
}

.property-image-wrapper {
	position: relative;
}

.property-image-wrapper img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	border-radius: 12px;
}

.property-badge {
	position: absolute;
	top: 15px;
	right: 15px;
	background: #6f998b;
	color: #fff;
	padding: 4px 10px;
	border-radius: 10px;
	font-size: 13px;
	font-weight: 600;
}

.property-name {
	font-size: 24px;
	color: #1f3d39;
	margin: 0 0 15px 0;
}

.property-address {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #1f3f3a;
	margin-bottom: 20px;
}

.property-stats {
	display: flex;
	gap: 20px;
	font-size: 16px;
}

.transaction-grid,
.guest-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
}

.transaction-item,
.guest-item {
	background: #e7ece9;
	padding: 20px;
	border-radius: 8px;
}

.transaction-item.highlight {
	background: #e9f1ec;
	border: 1px solid #4e7c73;
}

.trans-label,
.guest-label {
	color: #1f3d39;
	font-size: 13px;
	text-transform: uppercase;
	display: block;
	margin-bottom: 8px;
}

.trans-value,
.guest-value {
	color: var(--hostaway-secondary-color);
	font-size: 18px;
	font-weight: 600;
	display: block;
}

.status-badge {
	background: var(--hostaway-secondary-color);
	color: #fff;
	padding: 6px 16px;
	border-radius: 20px;
	font-size: 14px;
}

.guest-item {
	display: flex;
	align-items: center;
	gap: 15px;
}

.guest-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #667eea, #764ba2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	display: none;
}

.steps-timeline {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.timeline-item {
	display: flex;
	gap: 20px;
	position: relative;
	padding-left: 80px;
}

.timeline-item:not(:last-child)::before {
	content: '';
	position: absolute;
	left: 30px;
	top: 70px;
	width: 2px;
	height: calc(100% + 10px);
	background: var(--hostaway-secondary-color);
}

.timeline-icon {
	position: absolute;
	left: 0;
	width: 60px;
	height: 60px;
	background: color-mix(in srgb, var(--hostaway-primary-color) 15%, transparent);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
}

.timeline-content h4 {
	margin: 0 0 10px 0;
	font-size: 18px;
}

.timeline-content p {
	margin: 0;
	color: #425b57;
}

.action-buttons {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin: 40px 0;
	flex-wrap: wrap;
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 28px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s;
	border: 2px solid transparent;
}

.btn-primary {
	background: #23433f;
	color: white;
	padding: 14px 30px;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
	transition: 0.3s ease;
	text-align: center;
	justify-content: center;
}

.btn-primary:hover {
	background: #16312e;
}

.btn-outline {
	display: inline-block;
	background: #ffffff;
	color: var(--hostaway-secondary-color);
	padding: 14px 28px;
	border-radius: 8px;
	font-size: 16px;
	text-decoration: none;
	transition: 0.3s;
	border: 1px solid var(--hostaway-secondary-color);
}

.btn-outline:hover {
	background: var(--hostaway-secondary-color);
	border: 1px solid var(--hostaway-secondary-color);
	color: #fff;
}

/* Error Page */
.error-container {
	background: #fff;
	border-radius: 12px;
	padding: 60px 40px;
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.error-icon {
	font-size: 80px;
	margin-bottom: 20px;
}

.error-debug {
	background: #f9f9f9;
	padding: 15px;
	border-radius: 8px;
	margin: 20px 0;
	text-align: left;
}

@media (max-width: 768px) {
	.success-title {
		font-size: 32px;
	}

	.property-content {
		grid-template-columns: 1fr;
	}

	.transaction-grid,
	.guest-grid {
		grid-template-columns: 1fr;
	}

	.timeline-item {
		padding-left: 70px;
	}

	.action-buttons {
		flex-direction: column;
	}

	.section-title {
		font-size: 24px;
	}

	.success-subtitle {
		font-size: 16px;
		line-height: 140%;
	}

	.confirmation-badge {
		padding: 15px 16px;
	}

	.property-details-card,
	.transaction-details-card,
	.guest-info-card,
	.next-steps-card {
		padding: 30px 20px;
	}

	.property-name {
		font-size: 20px;
	}
}

.hostaway-hidden {
	display: none;
}

.stat-icon-total-bookings {
	background: #e3f2fd;
}

.stat-icon-color-total-bookings {
	color: #2196f3;
}

.stat-icon-active-bookings {
	background: #e8f5e9;
}

.stat-icon-color-active-bookings {
	color: #4caf50;
}

.stat-icon-past-bookings {
	background: #fff3e0;
}

.stat-icon-color-past-bookings {
	color: #ff9800;
}

.stat-icon-cancelled-bookings {
	background: #ffebee;
}

.stat-icon-color-cancelled-bookings {
	color: #f44336;
}

.hostaway-property-sync-info {
	margin-top: 10px;
	font-size: 12px;
	color: #666;
}

.hostaway-emoji-icon-lg {
	font-size: 24px;
}

.hostaway-emoji-icon-md {
	font-size: 20px;
}

.hostaway-no-margin {
	margin: 0;
}

.hostaway-gallery-popup-title {
	margin: 0 0 20px;
	font-size: 24px;
	font-weight: 600;
}

.hostaway-load-more-wrapper-styled {
	text-align: center;
	margin-top: 40px;
}

.hostaway-margin-top-20 {
	margin-top: 20px;
}

.hostaway-spinner-spin {
	animation: spin 1s linear infinite;
}