.toe-cl-search-form {
	background: #f6f7f7;
	border: 1px solid #dcdcde;
	border-radius: 6px;
	padding: 16px;
	margin-bottom: 20px;
}
.toe-cl-search-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 10px;
	align-items: center;
}
.toe-cl-search-row:last-child { margin-bottom: 0; }
.toe-cl-input-keyword { flex: 1; min-width: 200px; padding: 6px 8px; }
.toe-cl-search-form select,
.toe-cl-search-form input[type="date"] { padding: 6px 8px; }
.toe-cl-search-btn {
	background: #A6192E;
	color: #fff;
	border: none;
	padding: 8px 20px;
	border-radius: 4px;
	cursor: pointer;
	font-weight: 600;
}
.toe-cl-clear-btn { align-self: center; color: #666; text-decoration: underline; }

.toe-cl-listing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 16px;
}
.toe-cl-card {
	position: relative;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	padding: 16px;
	background: #fff;
}
.toe-cl-card.toe-cl-featured {
	border-color: #A6192E;
	box-shadow: 0 0 0 1px #A6192E;
}
.toe-cl-featured-tag {
	position: absolute;
	top: -10px;
	right: 12px;
	background: #A6192E;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 2px 10px;
	border-radius: 10px;
	text-transform: uppercase;
}
.toe-cl-title { margin: 0 0 8px; font-size: 17px; }
.toe-cl-title a { color: #1B2A4A; text-decoration: none; }
.toe-cl-meta-row { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 8px; }
.toe-cl-tag {
	background: #eaf1fb;
	color: #1B2A4A;
	font-size: 11px;
	padding: 2px 8px;
	border-radius: 10px;
}
.toe-cl-tag-cat { background: #f0f0f1; color: #444; }
.toe-cl-location { font-size: 12px; color: #666; }
.toe-cl-excerpt { font-size: 13px; color: #444; margin-bottom: 10px; }
.toe-cl-footer-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
	font-size: 12px;
	border-top: 1px solid #eee;
	padding-top: 8px;
}
.toe-cl-price { font-weight: 700; color: #1B2A4A; }
.toe-cl-ref { color: #666; }
.toe-cl-expiry { color: #666; }
.toe-cl-expiry-soon { color: #a35400; font-weight: 600; }

.toe-cl-empty { padding: 20px; text-align: center; color: #666; }

.toe-cl-pagination { display: flex; gap: 6px; margin-top: 20px; }
.toe-cl-pagination a {
	padding: 6px 12px;
	border: 1px solid #dcdcde;
	border-radius: 4px;
	text-decoration: none;
	color: #1B2A4A;
}
.toe-cl-pagination a.is-current { background: #1B2A4A; color: #fff; border-color: #1B2A4A; }

/* Single listing detail block */
.toe-cl-single-details {
	margin-top: 24px;
	border-top: 2px solid #1B2A4A;
	padding-top: 16px;
}
.toe-cl-single-price {
	font-size: 28px;
	font-weight: 700;
	color: #A6192E;
	margin-bottom: 16px;
}
.toe-cl-single-table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 20px;
}
.toe-cl-single-table th,
.toe-cl-single-table td {
	text-align: left;
	padding: 8px 10px;
	border-bottom: 1px solid #eee;
	font-size: 14px;
	vertical-align: top;
}
.toe-cl-single-table th {
	width: 150px;
	color: #666;
	font-weight: 600;
}
.toe-cl-single-contact {
	background: #f6f7f7;
	border: 1px solid #dcdcde;
	border-radius: 6px;
	padding: 14px 16px;
	margin-bottom: 16px;
}
.toe-cl-single-contact-heading {
	margin: 0 0 8px;
	font-size: 15px;
	color: #1B2A4A;
}
.toe-cl-single-contact-line {
	font-size: 15px;
	margin-bottom: 4px;
}
.toe-cl-single-contact-line a { color: #A6192E; text-decoration: none; }
.toe-cl-single-expiry {
	font-size: 13px;
	color: #666;
}
.toe-cl-single-expiry.toe-cl-expiry-soon { color: #a35400; font-weight: 600; }

/* --- Filter panel --- */
.toe-cl-filter-toggle {
	background: #fff;
	border: 1px solid #1B2A4A;
	color: #1B2A4A;
	padding: 8px 16px;
	border-radius: 4px;
	cursor: pointer;
	font-weight: 600;
}
.toe-cl-filter-panel { display: none; margin-top: 14px; }
.toe-cl-filter-panel.is-open { display: block; }
.toe-cl-filter-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 12px;
}
.toe-cl-filter-field { display: flex; flex-direction: column; font-size: 13px; }
.toe-cl-filter-field span { font-weight: 600; margin-bottom: 4px; color: #444; }
.toe-cl-filter-field select,
.toe-cl-filter-field input { padding: 6px 8px; border: 1px solid #ccc; border-radius: 4px; }
.toe-cl-filter-actions { margin-top: 14px; display: flex; gap: 12px; align-items: center; }
.toe-cl-result-count { font-size: 13px; color: #666; margin: 12px 0; }

/* --- Contact actions on single listing --- */
.toe-cl-contact-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 10px;
}
.toe-cl-reveal-phone,
.toe-cl-whatsapp-btn,
.toe-cl-email-btn,
.toe-cl-phone-revealed {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	border-radius: 6px;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	border: none;
}
.toe-cl-reveal-phone { background: #1B2A4A; color: #fff; }
.toe-cl-reveal-phone:hover { background: #24365c; }
.toe-cl-phone-revealed { background: #eaf1fb; color: #1B2A4A; }
.toe-cl-whatsapp-btn { background: #25D366; color: #fff; }
.toe-cl-whatsapp-btn:hover { background: #1ebe5a; color: #fff; }
.toe-cl-whatsapp-btn svg { flex-shrink: 0; }
.toe-cl-email-btn { background: #fff; color: #A6192E; border: 1px solid #A6192E; }
.toe-cl-email-btn:hover { background: #A6192E; color: #fff; }

@media (max-width: 600px) {
	.toe-cl-contact-actions { flex-direction: column; align-items: stretch; }
	.toe-cl-reveal-phone,
	.toe-cl-whatsapp-btn,
	.toe-cl-email-btn { justify-content: center; }
}

.toe-cl-scope-heading {
	font-size: 24px;
	color: #1B2A4A;
	margin: 0 0 16px;
	padding-bottom: 8px;
	border-bottom: 2px solid #A6192E;
}
