/* Trevinfo PRO — modulok (5.1–5.3). Prefix: trv- */

/* ---------- Kereső modul ---------- */
.trv-search-module { display: flex; flex-direction: column; gap: .7rem; }
.trv-search-label {
	display: block;
	font-size: .82rem;
	font-weight: 600;
	color: #495057;
	margin-bottom: .2rem;
}
.trv-search-inline { display: flex; gap: .4rem; }
.trv-search-inline > * { flex: 1 1 0; }
.trv-search-checks {
	display: flex;
	flex-wrap: wrap;
	gap: .35rem .9rem;
	max-height: 11rem;
	overflow-y: auto;
	padding: .35rem .5rem;
	border: 1px solid #dee2e6;
	border-radius: 6px;
}
.trv-check { display: inline-flex; align-items: center; gap: .35rem; font-size: .88rem; margin: 0; }
.trv-search-submit { margin-top: .3rem; }

/* ---------- View modul ---------- */
.trv-items-module { display: grid; gap: 1rem; }
.trv-items-cols-1 { grid-template-columns: 1fr; }
.trv-items-cols-2 { grid-template-columns: repeat(2, 1fr); }
.trv-items-cols-3 { grid-template-columns: repeat(3, 1fr); }
.trv-items-cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 768px) {
	.trv-items-cols-2,
	.trv-items-cols-3,
	.trv-items-cols-4 { grid-template-columns: 1fr; }
}

.trv-item {
	border: 1px solid #e9ecef;
	border-radius: 10px;
	padding: .85rem;
	background: #fff;
}
.trv-items-list .trv-item { display: flex; gap: .85rem; align-items: flex-start; }
.trv-items-list .trv-item-logo { flex: 0 0 72px; }
.trv-items-card .trv-item-logo { display: block; margin-bottom: .6rem; }

.trv-item-logo img {
	width: 100%;
	max-width: 120px;
	height: auto;
	border-radius: 8px;
	object-fit: cover;
}
.trv-items-list .trv-item-logo img { width: 72px; height: 72px; }

.trv-item-body { flex: 1 1 auto; min-width: 0; }
.trv-item-title { font-size: 1rem; margin: 0 0 .2rem; }
.trv-item-title a { text-decoration: none; }
.trv-item-slogan { font-size: .85rem; color: #6c757d; margin-bottom: .25rem; }
.trv-item-city { font-size: .8rem; color: #868e96; margin-bottom: .3rem; }
.trv-item-desc { font-size: .87rem; margin: .3rem 0; }
.trv-item-price { margin: .35rem 0; }
.trv-item-price .trv-price-old { text-decoration: line-through; color: #adb5bd; margin-right: .35rem; }
.trv-item-price .trv-price-new { font-weight: 700; color: #198754; }
.trv-item-fields { font-size: .82rem; margin: .4rem 0; }
.trv-item-fields dt { font-weight: 600; color: #495057; }
.trv-item-fields dd { margin: 0 0 .25rem; }
.trv-item-button { margin-top: .4rem; }

/* ---------- Számláló modul ---------- */
.trv-counter-module {
	display: inline-flex;
	align-items: baseline;
	gap: .35rem;
	font-size: 1.05rem;
}
.trv-counter-link { text-decoration: none; display: inline-flex; align-items: baseline; gap: .35rem; }
.trv-counter-value { font-size: 1.6rem; font-weight: 700; line-height: 1; }
.trv-counter-prefix,
.trv-counter-suffix { color: #6c757d; }
