.reusely-search-wrapper {
	margin-bottom: 1.5rem;
	width: 100%;
	text-align: center;
}

#noResultsMessage {
	font-size: 1rem;
	font-weight: 500;
	opacity: 0.75;
}


.reusely-search-input {
	width: 100%;
	max-width: 400px;
	padding: 0.75rem 1rem;
	border: 1px solid #ccc;
	border-radius: 8px;
	font-size: 1rem;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
	transition: border-color 0.2s ease;
}

.reusely-search-input:focus {
	border-color: #6db520;
	outline: none;
}

.reusely-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 1.5rem;
	padding: 1rem 0;
}

.reusely-tile {
	border: 1px solid #ccc;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
	transition: box-shadow 0.2s ease, border-color 0.2s ease;
	padding: 0;
	overflow: hidden;
	text-transform: none;
}

.reusely-tile:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	border-color: #6db520;
}

.reusely-tile-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	width: 100%;
	background: none;
	border: none;
	padding: 1rem;
	cursor: pointer;
	text-decoration: none;
	font: inherit;
	color: inherit;
	box-sizing: border-box;
	text-transform: none;
}

.reusely-tile-inner:hover .reusely-tile-button {
	transform: scale(1.03);
	background-color: #5aa319;
}

.reusely-tile h2 {
	font-size: 1.1rem;
	font-weight: bold;
	margin-bottom: 0.3rem;
	text-transform: none;
}

.reusely-tile p {
	font-size: 0.95rem;
	color: #555;
	margin-bottom: 1rem;
	display: flex;
	justify-content: center;
	gap: 0.3rem;
	flex-wrap: wrap;
	align-items: center;
	text-transform: none;
}

.reusely-price {
	color: #6db520;
	font-weight: 600;
	text-transform: none;
}

.reusely-tile img {
	width: 100%;
	max-width: 150px;
	height: auto;
	margin-bottom: 1rem;
}

.reusely-tile-button {
	background-color: #6db520;
	color: #fff;
	padding: 0.5rem 1rem;
	border-radius: 6px;
	width: 100%;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-size: 1rem;
	font-weight: 500;
	transition: background-color 0.2s ease, transform 0.15s ease;
	text-transform: none;
	box-sizing: border-box;
}

.reusely-tile-button .arrow {
	font-weight: bold;
	margin-left: 0.3rem;
	text-transform: none;
}

@media (max-width: 768px) {
	.reusely-grid {
		grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
		padding: 0 0 !important;
	}

	.section {
		padding-left: 0px !important;
		padding-right: 0px !important;
	}
}
