.tripways-chat-wrap {
	max-width: 100%;
	margin: 1em 0;
	background: transparent;
}

.tripways-ai-search-page {
	max-width: 1200px;
	margin: 0 auto;
	padding: clamp(1rem, 2vw, 2rem);
}

.tripways-ai-search-page__header {
	text-align: center;
	margin: 0 0 1.25rem;
}

.tripways-ai-search-page__title {
	margin: 0 0 0.4rem;
	font-size: clamp(1.6rem, 2.8vw, 2.2rem);
	line-height: 1.2;
}

.tripways-ai-search-page__subtitle {
	margin: 0;
	color: #64748b;
}

.tripways-ai-search-page__chat {
	margin-top: 1rem;
}

.tripways-chat-messages {
	min-height: 0;
	max-height: none;
	overflow: visible;
	padding: 0;
	background: transparent;
}

.tripways-chat-message {
	margin-bottom: 1rem;
	padding: 0.8rem 1rem;
	border-radius: 0.75rem;
	max-width: min(90%, 780px);
	line-height: 1.55;
}

.tripways-chat-message.user {
	margin-left: auto;
	background: #2f68b2;
	color: #fff;
}

.tripways-chat-message.assistant {
	background: transparent;
	border: none;
	padding: 0;
	max-width: 100%;
}

.tripways-chat-message__text p {
	margin: 0 0 0.75rem;
}

.tripways-chat-message__text p:last-child {
	margin-bottom: 0;
}

.tripways-chat-message__text a {
	color: #2271b1;
	text-decoration: underline;
	word-break: break-word;
}

.tripways-chat-message__cards {
	margin-top: 0;
	margin-bottom: 0.9rem;
}

.tripways-chat-cards {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.9rem;
}

.tripways-chat-cards .tripways-tour-card__title {
	font-size: 0.95rem;
}

.tripways-chat-form {
	position: sticky;
	bottom: 12px;
	display: flex;
	gap: 8px;
	padding: 12px 0 0;
	background: transparent;
	z-index: 5;
}

.tripways-chat-input {
	flex: 1;
	padding: 10px 12px;
	border: 1px solid #cbd5e1;
	border-radius: 9999px;
	font-size: 1rem;
	background: #fff;
}

.tripways-chat-form button {
	padding: 10px 16px;
	background: #2271b1;
	color: #fff;
	border: none;
	border-radius: 9999px;
	cursor: pointer;
}

@media (max-width: 1100px) {
	.tripways-chat-cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 700px) {
	.tripways-chat-cards {
		grid-template-columns: 1fr;
	}

	.tripways-chat-message {
		max-width: 95%;
	}
}
