/* =============================================
   Product Species Listing — Elementor Widget
   ============================================= */

.psl-widget {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* ----- Title ----- */

.psl-widget .psl-title {
	font-family: 'League Gothic', sans-serif;
	font-weight: 400;
	font-size: 40px;
	line-height: 40px;
	text-transform: uppercase;
	color: #685C45;
	letter-spacing: 0;
}

/* ----- Filter Form ----- */

.psl-widget .psl-filter-form {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	align-items: stretch;
}

.psl-widget .psl-input-wrapper {
	position: relative;
	flex: 1 1 141px;
	min-width: 141px;
}

.psl-widget .psl-search-wrapper {
	flex: 2 1 281px;
	min-width: 281px;
}

.psl-widget .psl-control {
	width: 100%;
	min-height: 63px;
	padding: 11px 18px;
	font-size: 16px;
	line-height: 1.3;
	font-weight: 400;
	color: #685C45;
	background-color: #FFF2E5;
	border: 1px solid transparent;
	outline: none;
	transition: border-color 0.25s ease;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	font-family: inherit;
}

.psl-widget .psl-control::placeholder {
	color: #685C45;
	opacity: 1;
}

.psl-widget .psl-control:focus,
.psl-widget .psl-control:hover {
	border-color: #c9b4a1;
}

.psl-widget .psl-search-wrapper .psl-control {
	padding-right: 44px;
}

.psl-widget .psl-search-icon {
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #685C45;
}

.psl-widget .psl-search-icon svg {
	width: 16px;
	height: 16px;
	display: block;
}

/* Select arrow */
.psl-widget select.psl-control {
	cursor: pointer;
	padding-right: 40px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%23685C45' stroke-width='0.666667' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	background-size: 14px;
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ----- Products Grid ----- */

.psl-widget .psl-products-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	width: 100%;
}

.psl-widget .psl-product-card {
	background-color: #ffffff;
	border: 1px solid #F5F2ED;
	padding: 15px;
	display: flex;
	flex-direction: column;
	gap: 26px;
	overflow: hidden;
	transition: box-shadow 0.3s ease;
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}

.psl-widget .psl-product-card:hover {
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.psl-widget .psl-card-image-wrapper {
	position: relative;
	width: 100%;
	aspect-ratio: 3 / 2.18;
	overflow: hidden;
	background-color: #F5F2ED;
	flex-shrink: 0;
}

.psl-widget .psl-card-image-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
	display: block;
}

.psl-widget .psl-product-card:hover .psl-card-image-wrapper img {
	transform: scale(1.05);
}

.psl-widget .psl-card-content {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.psl-widget .psl-card-title {
	font-family: 'League Gothic', sans-serif;
	font-weight: 400;
	font-size: 40px;
	text-transform: uppercase;
	color: #32312F;
	line-height: 40px;
	margin-bottom: 10px;
	flex: 1;
}

.psl-widget .psl-card-description {
	font-size: 16px;
	line-height: 1.3;
	margin-bottom: 26px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	color: #000000;
}

.psl-widget .psl-card-button {
	display: block;
	width: 100%;
	padding: 10px;
	background-color: #FF7C00;
	color: #ffffff;
	text-align: center;
	font-weight: 700;
	font-size: 16px;
	line-height: 1;
	border: none;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.psl-widget .psl-product-card:hover .psl-card-button {
	background-color: #231F20;
}

/* No results */
.psl-widget .psl-no-results {
	grid-column: 1 / -1;
	text-align: center;
	padding: 60px 20px 40px;
	color: #685C45;
	font-size: 18px;
	font-weight: 700;
}

/* ----- Load More ----- */

.psl-widget .psl-load-more-wrapper {
	display: flex;
	justify-content: center;
	margin-top: 10px;
}

.psl-widget .psl-load-more-wrapper.psl-hidden {
	display: none;
}

.psl-widget .psl-load-more-btn {
	border: 1px solid #000000;
	background-color: transparent;
	padding: 12px 30px;
	font-weight: 700;
	font-size: 16px;
	line-height: 1;
	text-align: center;
	cursor: pointer;
	text-decoration: none;
	color: #000;
	transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
	font-family: inherit;
}

.psl-widget .psl-load-more-btn:hover {
	background-color: #231F20;
	color: #fff;
	border-color: #231F20;
}

.psl-widget .psl-load-more-btn.psl-loading {
	opacity: 0.6;
	cursor: not-allowed;
	pointer-events: none;
}

.psl-widget .psl-load-more-btn.psl-loading::after {
	content: ' ...';
}

/* =============================================
   Responsive
   ============================================= */

@media (max-width: 1024px) {
	.psl-widget .psl-products-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.psl-widget .psl-title,
	.psl-widget .psl-card-title {
		font-size: 34px;
		line-height: 34px;
	}
}

@media (max-width: 820px) {
	.psl-widget .psl-title,
	.psl-widget .psl-card-title {
		font-size: 30px;
		line-height: 30px;
	}
}

@media (max-width: 767px) {
	.psl-widget .psl-filter-form {
		flex-wrap: wrap;
		gap: 10px;
	}

	.psl-widget .psl-input-wrapper,
	.psl-widget .psl-search-wrapper {
		flex: 1 1 100%;
		min-width: 100%;
	}
}

@media (max-width: 575px) {
	.psl-widget {
		gap: 14px;
	}

	.psl-widget .psl-products-grid {
		grid-template-columns: 1fr;
	}

	.psl-widget .psl-title,
	.psl-widget .psl-card-title {
		font-size: 24px;
		line-height: 24px;
	}

	.psl-widget .psl-product-card {
		padding: 14px;
		gap: 20px;
	}

	.psl-widget .psl-card-description {
		font-size: 14px;
		margin-bottom: 20px;
	}

	.psl-widget .psl-load-more-wrapper {
		margin-top: 6px;
	}
}
