.efs-form {
	display: flex;
	gap: 8px;
	margin-bottom: 12px;
}

.efs-input {
	flex: 1;
	padding: 12px 14px;
	font-size: 16px;
	border: 1px solid #ccc;
	border-radius: 6px;
}

.efs-button {
	padding: 12px 22px;
	font-size: 16px;
	border: 0;
	border-radius: 6px;
	background: #2c3e50;
	color: #fff;
	cursor: pointer;
}

.efs-button:hover {
	background: #1a2530;
}

.efs-loading .efs-button {
	opacity: 0.6;
	pointer-events: none;
}

.efs-interpretation {
	margin-bottom: 16px;
	font-size: 14px;
}

.efs-chip-label {
	color: #666;
	margin-right: 4px;
}

.efs-chip {
	display: inline-block;
	background: #eef2f5;
	border-radius: 12px;
	padding: 3px 10px;
	margin: 2px;
	font-size: 13px;
}

.efs-status {
	color: #555;
	margin: 10px 0;
}

.efs-grid {
	display: grid;
	grid-template-columns: repeat(var(--efs-columns, 2), 1fr);
	gap: 20px;
}

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

.efs-card {
	border: 1px solid #e2e2e2;
	border-radius: 8px;
	overflow: hidden;
	background: #fff;
}

.efs-card-link {
	text-decoration: none;
	color: inherit;
	display: block;
}

.efs-card-image img {
	width: 100%;
	height: 190px;
	object-fit: cover;
	display: block;
}

.efs-card-body {
	padding: 14px 16px;
}

.efs-card-title {
	margin: 0 0 6px;
	font-size: 17px;
}

.efs-card-heading {
	margin: 0 0 6px;
	font-size: 14px;
	color: #555;
}

.efs-card-location {
	margin: 0 0 6px;
	font-size: 14px;
	color: #777;
	text-transform: capitalize;
}

.efs-card-specs {
	margin: 0 0 6px;
	font-size: 14px;
	color: #444;
}

.efs-card-price {
	margin: 0;
	font-weight: 600;
	font-size: 15px;
}

/* Admin-only debug panel */
.efs-debug {
	margin-top: 24px;
	padding: 14px 16px;
	border: 1px solid #d8d8d8;
	background: #fafafa;
	font-size: 13px;
}

.efs-debug summary {
	cursor: pointer;
	font-weight: 600;
}

.efs-debug h4 {
	margin: 16px 0 6px;
	font-size: 13px;
}

.efs-debug-table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 10px;
}

.efs-debug-table th,
.efs-debug-table td {
	border: 1px solid #e3e3e3;
	padding: 5px 8px;
	text-align: left;
	vertical-align: top;
}

.efs-debug-table th {
	background: #f0f0f0;
}

.efs-debug .efs-dim {
	color: #888;
}

.efs-debug pre {
	background: #fff;
	border: 1px solid #e3e3e3;
	padding: 8px;
	overflow-x: auto;
	font-size: 12px;
	margin: 0 0 10px;
}
