/* Gold Stars curated hotels grid, v1 (2026-05-08) */

.gs-curated-hotels .gs-hotels-filter-section {
	padding: 1.5rem 0 0.5rem;
}
.gs-curated-hotels .gs-hotels-filter-form {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 0.75rem 1rem;
	background: var(--gs-surface-1, #fff);
	border: 1px solid var(--gs-border, rgba(0, 0, 0, 0.08));
	border-radius: 14px;
	padding: 1rem 1.25rem;
	box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
}
.gs-curated-hotels .gs-hotels-filter-form__field {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	font-size: 0.95rem;
}
.gs-curated-hotels .gs-hotels-filter-form__field span {
	font-weight: 600;
	color: var(--gs-text-2, #475569);
}
.gs-curated-hotels .gs-hotels-filter-form__field select,
.gs-curated-hotels .gs-hotels-filter-form__field input[type="date"] {
	padding: 0.6rem 0.75rem;
	border-radius: 10px;
	border: 1px solid var(--gs-border, rgba(0, 0, 0, 0.12));
	font: inherit;
	background: #fff;
}

.gs-curated-hotels .gs-hotels-results-section {
	padding-top: 1rem;
}
.gs-curated-hotels .gs-hotels-results-count {
	color: var(--gs-text-2, #475569);
	margin: 0;
	font-size: 0.95rem;
}

.gs-curated-hotels .gs-hotels-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 1.25rem;
}

.gs-hotel-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--gs-border, rgba(0, 0, 0, 0.08));
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 6px 22px rgba(15, 23, 42, 0.06);
	transition: transform 200ms ease, box-shadow 200ms ease;
}
.gs-hotel-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.1);
}
.gs-hotel-card[hidden] { display: none; }

.gs-hotel-card__media {
	display: block;
	aspect-ratio: 16 / 10;
	background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
	overflow: hidden;
}
.gs-hotel-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.gs-hotel-card__media-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-size: 2.5rem;
	color: var(--gs-text-3, #94a3b8);
}

.gs-hotel-card__body {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	padding: 1rem 1.1rem 1.1rem;
	flex: 1;
}
.gs-hotel-card__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 0.75rem;
}
.gs-hotel-card__head h3 {
	margin: 0;
	font-size: 1.1rem;
	line-height: 1.3;
	font-weight: 700;
}
.gs-hotel-card__head h3 a {
	color: inherit;
	text-decoration: none;
}
.gs-hotel-card__stars {
	color: #f59e0b;
	font-size: 0.95rem;
	letter-spacing: 0.05em;
}

.gs-hotel-card__meta {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	color: var(--gs-text-2, #475569);
	font-size: 0.9rem;
}
.gs-hotel-card__meta li {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.gs-hotel-card__meta i {
	color: var(--gs-accent, #0d9488);
}

.gs-hotel-card__price {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	padding: 0.75rem 0.9rem;
	background: #f8fafc;
	border-radius: 12px;
	border: 1px dashed rgba(13, 148, 136, 0.2);
}
.gs-hotel-card__price > span:first-child {
	font-size: 0.8rem;
	color: var(--gs-text-2, #475569);
}
.gs-hotel-card__price strong {
	font-size: 1.4rem;
	font-weight: 800;
	color: var(--gs-text-1, #0f172a);
}
.gs-hotel-card__price small {
	font-size: 0.78rem;
	color: var(--gs-text-2, #475569);
}
.gs-hotel-card__out-of-range {
	color: #b45309 !important;
}

.gs-hotel-card__actions {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-top: auto;
}
.gs-hotel-card__actions .gs-btn {
	width: 100%;
	justify-content: center;
}
.gs-hotel-card__actions .gs-btn-wa {
	background: #25d366;
	color: #fff;
	border-color: #25d366;
}
.gs-hotel-card__actions .gs-btn-wa:hover {
	background: #1ebe5b;
	border-color: #1ebe5b;
}

.gs-hotels-empty-state {
	margin-top: 1.5rem;
	padding: 1rem 1.25rem;
	background: #fef3c7;
	border-radius: 12px;
	color: #92400e;
}
.gs-hotels-empty-state a {
	color: inherit;
	text-decoration: underline;
}

.gs-hotels-cross-link {
	padding: 2.5rem 0;
}
.gs-cross-link-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding: 1.5rem 1.75rem;
	background: linear-gradient(135deg, #0f766e, #115e59);
	color: #fff;
	border-radius: 20px;
	flex-wrap: wrap;
}
.gs-cross-link-card h2 {
	margin: 0.25rem 0 0.4rem;
	color: #fff;
}
.gs-cross-link-card p {
	margin: 0;
	color: rgba(255, 255, 255, 0.85);
	max-width: 60ch;
}
.gs-cross-link-card .gs-story-kicker {
	color: #fbbf24;
}
.gs-cross-link-card .gs-btn-primary {
	background: #fbbf24;
	color: #0f172a;
	border-color: #fbbf24;
}
.gs-cross-link-card .gs-btn-primary:hover {
	background: #f59e0b;
	border-color: #f59e0b;
}

@media (max-width: 640px) {
	.gs-curated-hotels .gs-hotels-grid {
		grid-template-columns: 1fr;
	}
	.gs-cross-link-card {
		flex-direction: column;
		text-align: center;
	}
	.gs-cross-link-card .gs-btn-primary {
		width: 100%;
		justify-content: center;
	}
}
