.ttm-catalog {
	font-family: "Roboto", sans-serif;
}

.ttm-catalog .mi-grid-infinito {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 30px;
	max-width: 75%;
	margin: 0 auto;
	padding: 5px;
}

.ttm-catalog .mi-post-item {
	width: 100%;
	padding: 5px;
	box-sizing: border-box;
	border: 0;
	background: #fff;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
	text-align: center;
}

.ttm-catalog .imagen-fija {
	display: flex;
	width: 100%;
	height: 250px;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin-bottom: 10px;
}

.ttm-catalog .imagen-fija img {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 100%;
}

.ttm-catalog .mi-post-title {
	margin-bottom: 5px;
	font-size: 18px;
	font-weight: 600;
}

.ttm-catalog .mi-post-title a,
.ttm-catalog .mi-post-subtitulo a {
	color: #000;
	text-decoration: none;
}

.ttm-catalog .mi-post-subtitulo {
	margin-bottom: 10px;
	color: #555;
	font-size: 16px;
}

.ttm-catalog .mi-post-subtitulo a {
	color: #555;
}

.ttm-catalog .mi-post-excerpt {
	color: #555;
	font-size: 14px;
}

.ttm-catalog .mi-filtros {
	display: flex;
	max-width: 75%;
	margin: 20px auto;
	gap: 20px;
	align-items: flex-start;
}

.ttm-catalog .mi-filtros > .filtro-row {
	display: flex;
	width: 100%;
	gap: 20px;
	justify-content: center;
}

.ttm-catalog .dropdown-filtro {
	position: relative;
	display: inline-block;
	width: 100%;
	max-width: 400px;
}

.ttm-catalog .dropdown-button {
	display: flex;
	width: 100%;
	padding: 10px 35px;
	align-items: center;
	justify-content: space-between;
	border: 1px solid #ccc;
	border-radius: 4px;
	background: #fff;
	color: #000;
	cursor: pointer;
	font: inherit;
}

.ttm-catalog .dropdown-button:hover,
.ttm-catalog .dropdown-button[aria-expanded="true"] {
	background: #556b2f;
	color: #fff;
}

.ttm-catalog .dropdown-button:focus-visible {
	outline: 3px solid #22320f;
	outline-offset: 2px;
	background: #556b2f;
	color: #fff;
}

.ttm-catalog .dropdown-content {
	position: absolute;
	z-index: 999;
	top: 100%;
	left: 0;
	display: none;
	width: 100%;
	max-height: 220px;
	overflow-y: auto;
	padding: 8px;
	box-sizing: border-box;
	border: 1px solid #ccc;
	border-radius: 4px;
	background: #fff;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.ttm-catalog .dropdown-content.is-open {
	display: block;
}

.ttm-catalog .dropdown-content label {
	display: block;
	margin-bottom: 5px;
	cursor: pointer;
}

.ttm-catalog .dropdown-content input {
	margin-right: 5px;
}

.ttm-catalog .range-group {
	width: 100%;
	max-width: 400px;
	padding: 10px;
	box-sizing: border-box;
	border: 1px solid #ccc;
	border-radius: 4px;
	background: #fff;
	font-size: 14px;
}

.ttm-catalog .range-group > .range-label {
	display: block;
	margin-bottom: 5px;
	font-weight: 700;
	text-align: center;
}

.ttm-catalog .range-sliders {
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: center;
}

.ttm-catalog .range-sliders input[type="range"] {
	width: 120px;
	cursor: pointer;
	accent-color: #556b2f;
}

.ttm-catalog .range-values {
	display: flex;
	margin-top: 5px;
	gap: 10px;
	align-items: center;
	justify-content: center;
}

.ttm-catalog .range-values span {
	min-width: 30px;
	padding: 3px 6px;
	border-radius: 4px;
	background: #f1f1f1;
	text-align: center;
}

.ttm-catalog .mi-grid-spinner,
.ttm-catalog .ttm-catalog-empty,
.ttm-catalog .ttm-catalog-error {
	margin: 20px auto;
	text-align: center;
}

.ttm-catalog .ttm-catalog-empty,
.ttm-catalog .ttm-catalog-error {
	grid-column: 1 / -1;
}

.ttm-catalog .ttm-catalog-error {
	color: #9b1c1c;
}

@media (max-width: 1200px) {
	.ttm-catalog .mi-grid-infinito {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		max-width: 90%;
	}

	.ttm-catalog .mi-filtros {
		max-width: 90%;
		flex-direction: column;
		align-items: center;
	}

	.ttm-catalog .mi-filtros > .filtro-row {
		width: 100%;
		flex-direction: column;
		align-items: center;
		gap: 10px;
	}
}

@media (max-width: 900px) {
	.ttm-catalog .mi-grid-infinito {
		grid-template-columns: 1fr;
	}
}
