/* Tarahill custom availability search form + results */

.tarahill-search-wrapper {
	margin: 0 auto;
}

/* ----- Search form ----- */

.tarahill-search-form {
	background: #f9f7f5;
	border: 1px solid #e0d9d0;
	border-radius: 6px;
	padding: 24px;
}

.tarahill-search-fields {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	align-items: flex-end;
}

.tarahill-field {
	flex: 1;
	min-width: 160px;
}

.tarahill-field label {
	display: block;
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 6px;
}

.tarahill-field label abbr {
	color: #c0392b;
	margin-left: 2px;
	text-decoration: none;
}

.tarahill-field input[type="text"],
.tarahill-field select {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 1rem;
	background: #fff;
	box-sizing: border-box;
}

.tarahill-field--submit {
	flex: 0 0 auto;
	min-width: auto;
}

.tarahill-search-btn {
	padding: 10px 28px;
	white-space: nowrap;
	width: 100%;
}

/* ----- Results area ----- */

.tarahill-results {
	margin-top: 32px;
}

/* Loading spinner */
.tarahill-loading {
	text-align: center;
	padding: 40px 20px;
	color: #666;
}

.tarahill-loading span {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.tarahill-loading span::before {
	content: '';
	display: inline-block;
	width: 18px;
	height: 18px;
	border: 2px solid #ccc;
	border-top-color: #555;
	border-radius: 50%;
	animation: tarahill-spin 0.7s linear infinite;
	flex-shrink: 0;
}

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

/* Error / no-results messages */
.tarahill-error,
.tarahill-no-results {
	background: #fef2f2;
	border: 1px solid #fca5a5;
	border-radius: 4px;
	padding: 16px 20px;
	color: #991b1b;
	margin: 0;
}

/* Results header */
.tarahill-results-header {
	margin-bottom: 24px;
}

.tarahill-results-title {
	margin: 0 0 4px;
	font-size: 1.25rem;
}

.tarahill-results-meta {
	margin: 0;
	color: #666;
	font-size: 0.9rem;
}

/* Room card grid */
.tarahill-room-list {
	display: grid;
	gap: 24px;
}

.tarahill-room-card {
	display: flex;
	gap: 0;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 6px;
	overflow: hidden;
}

.tarahill-room-image {
	flex: 0 0 280px;
}

.tarahill-room-image a {
	display: block;
	height: 100%;
}

.tarahill-room-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.tarahill-room-details {
	flex: 1;
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.tarahill-room-title {
	margin: 0;
	font-size: 1.125rem;
}

.tarahill-room-title a {
	text-decoration: none;
	color: inherit;
}

.tarahill-room-title a:hover {
	text-decoration: underline;
}

.tarahill-room-excerpt {
	margin: 0;
	color: #555;
	font-size: 0.9rem;
	line-height: 1.5;
}

.tarahill-room-price {
	margin: 0;
	font-size: 1.25rem;
	font-weight: 700;
	color: #1a1a1a;
}

.tarahill-price-label {
	font-size: 0.8rem;
	font-weight: 400;
	color: #666;
	margin-left: 4px;
}

.tarahill-book-btn {
	align-self: flex-start;
	display: inline-block;
	margin-top: auto;
}

/* Unavailable room state */
.tarahill-room-card--unavailable {
	opacity: 0.75;
}

.tarahill-room-card--unavailable .tarahill-room-image img {
	filter: grayscale( 40% );
}

.tarahill-unavailable-badge {
	display: inline-block;
	background: #fef2f2;
	border: 1px solid #fca5a5;
	color: #991b1b;
	font-size: 0.8rem;
	font-weight: 600;
	padding: 3px 10px;
	border-radius: 4px;
	margin: 0 0 8px;
}

/* ----- Responsive ----- */

@media ( max-width: 640px ) {
	.tarahill-search-fields {
		flex-direction: column;
	}

	.tarahill-field {
		min-width: 100%;
	}

	.tarahill-room-card {
		flex-direction: column;
	}

	.tarahill-room-image {
		flex: 0 0 auto;
	}

	.tarahill-room-image img {
		height: 200px;
	}
}
