.tj-single-hotel { padding: 32px 24px 80px; }

.tj-hotel-heading {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
	margin-bottom: 24px;
}

.tj-hotel-title { font-size: 34px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.tj-badge-inline { position: static; font-size: 12px; }

.tj-hotel-location {
	display: flex;
	align-items: center;
	gap: 6px;
	color: var(--tj-color-text-muted);
	font-size: 15px;
}

.tj-badge-unavailable {
	background: var(--tj-stone);
	color: var(--tj-color-text-muted);
	font-size: 12px;
	font-weight: 600;
	padding: 6px 14px;
	border-radius: 999px;
}
.tj-badge-unavailable-lg { padding: 10px 20px; font-size: 14px; }

/* Gallery */
.tj-gallery { margin-bottom: 40px; }
.tj-gallery-main {
	display: block;
	width: 100%;
	border: none;
	padding: 0;
	cursor: zoom-in;
	border-radius: var(--tj-radius-lg);
	overflow: hidden;
	aspect-ratio: 16 / 8;
	background: var(--tj-stone);
}
.tj-gallery-main img { width: 100%; height: 100%; object-fit: cover; }

.tj-gallery-thumbs { display: flex; gap: 10px; margin-top: 10px; overflow-x: auto; }
.tj-gallery-thumb {
	flex: 0 0 100px;
	height: 72px;
	border-radius: var(--tj-radius-sm);
	overflow: hidden;
	border: 2px solid transparent;
	padding: 0;
	cursor: pointer;
}
.tj-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.tj-gallery-thumb.tj-active { border-color: var(--tj-brand-secondary); }

.tj-lightbox {
	position: fixed;
	inset: 0;
	background: rgba(10, 31, 44, 0.92);
	z-index: 9998;
	display: flex;
	align-items: center;
	justify-content: center;
}
.tj-lightbox[hidden] { display: none; }
.tj-lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--tj-radius-md); }
.tj-lightbox-close, .tj-lightbox-prev, .tj-lightbox-next {
	position: absolute;
	background: rgba(255, 255, 255, 0.15);
	border: none;
	color: #fff;
	cursor: pointer;
	border-radius: 50%;
	width: 44px;
	height: 44px;
	font-size: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.tj-lightbox-close { top: 24px; right: 24px; }
.tj-lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.tj-lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* Layout */
.tj-single-hotel-layout {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 40px;
	align-items: start;
}

.tj-single-hotel-main section { margin-bottom: 48px; }
.tj-single-hotel-main h2 { font-size: 24px; margin-bottom: 16px; }

.tj-hotel-highlights ul { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.tj-hotel-highlights li { display: flex; align-items: center; gap: 8px; font-size: 15px; }
.tj-hotel-highlights .tj-icon { color: var(--tj-teal); flex-shrink: 0; }

.tj-amenities-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	gap: 16px;
}
.tj-amenity-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 14px;
	background: var(--tj-color-surface);
	border-radius: var(--tj-radius-sm);
	box-shadow: var(--tj-shadow-card);
	font-size: 14px;
}
.tj-amenity-item .tj-icon, .tj-amenity-custom-icon { color: var(--tj-brand-secondary); flex-shrink: 0; }

/* Rooms */
.tj-room-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.tj-room-card {
	background: var(--tj-color-surface);
	border-radius: var(--tj-radius-md);
	overflow: hidden;
	box-shadow: var(--tj-shadow-card);
	display: flex;
	flex-direction: column;
}
.tj-room-unavailable { opacity: 0.6; }
.tj-room-card-media { aspect-ratio: 16 / 10; background: var(--tj-stone); overflow: hidden; }
.tj-room-card-media img { width: 100%; height: 100%; object-fit: cover; }
.tj-room-card-body { padding: 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.tj-room-card-body h3 { font-size: 18px; margin: 0; }
.tj-room-description { font-size: 14px; color: var(--tj-color-text-muted); margin: 0; }
.tj-room-meta { display: flex; gap: 12px; flex-wrap: wrap; font-size: 12px; color: var(--tj-color-text-muted); }
.tj-room-card-footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 10px; border-top: 1px solid var(--tj-stone); }
.tj-room-price .tj-price-amount { font-size: 17px; }

/* Sidebar */
.tj-hotel-info-card {
	background: var(--tj-color-surface);
	border-radius: var(--tj-radius-md);
	box-shadow: var(--tj-shadow-card);
	padding: 24px;
	position: sticky;
	top: calc(var(--tj-header-height) + 20px);
}
.tj-hotel-info-card h3 { font-size: 17px; margin-bottom: 12px; }
.tj-hotel-address { font-size: 14px; color: var(--tj-color-text-muted); }
.tj-hotel-info-disclaimer { font-size: 12px; color: var(--tj-color-text-muted); text-align: center; margin: 14px 0 0; }

@media (max-width: 1024px) {
	.tj-single-hotel-layout { grid-template-columns: 1fr; }
	.tj-hotel-info-card { position: static; }
	.tj-room-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
	.tj-hotel-highlights ul { grid-template-columns: 1fr; }
	.tj-gallery-main { aspect-ratio: 4 / 3; }
}
