/* ============================================================
   SGLS Child Theme — Product Page Styles
   Add these rules to the bottom of style.css
   ============================================================ */

/* ── Two-column product layout ─────────────────────────────── */
.sgls-product-detail {
	max-width: 1100px;
	margin: 2rem auto;
	padding: 0 1.25rem;
}

.sgls-product-inner {
	display: grid;
	gap: 2.5rem;
	align-items: start;
}

/* Two-column: when Consumer/B2B tab content exists */
.sgls-product-inner--two-col {
	grid-template-columns: 1fr 1fr;
}

/* One-column: when no tab content — verification data goes full width */
.sgls-product-inner--one-col {
	grid-template-columns: 1fr;
	max-width: 720px;
}
.sgls-product-inner--one-col .sgls-product-right {
	position: static;
}

/* ── Left column ────────────────────────────────────────────── */
.sgls-product-left {}

.sgls-product-title {
	font-size: 1.75rem;
	font-weight: 700;
	margin: 0.5rem 0 0.25rem;
	line-height: 1.2;
}

.sgls-product-excerpt {
	color: #555;
	font-size: 0.95rem;
	margin: 0 0 1rem;
}

/* ── Valid badge ─────────────────────────────────────────────── */
.sgls-valid-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #e8f5e9;
	border: 1px solid #81c784;
	border-radius: 4px;
	padding: 5px 12px;
	font-size: 0.82rem;
	font-weight: 600;
	color: #1b5e20;
	margin-bottom: 0.75rem;
}
.sgls-valid-badge--enhanced {
	background: #e3f2fd;
	border-color: #90caf9;
	color: #0d47a1;
}
.sgls-valid-badge__icon {
	font-size: 1rem;
}

/* ── Product photo ───────────────────────────────────────────── */
.sgls-product-photo-wrap {
	margin-bottom: 1.5rem;
}
.sgls-product-photo {
	width: 100%;
	height: auto;
	border-radius: 6px;
	border: 1px solid #e5e5e0;
	display: block;
}
.sgls-product-no-image {
	width: 100%;
	height: 200px;
	background: #f0f4f0;
	border: 1px dashed #c8d8c8;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #999;
	font-size: 0.85rem;
}

/* ── Section label (reused across both columns) ──────────────── */
.sgls-section-label {
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	color: #888;
	font-weight: 700;
	margin: 0 0 0.6rem;
	padding: 0;
	border: none;
}

/* ── Verification data table ─────────────────────────────────── */
.sgls-verification-block {
	margin-bottom: 1.5rem;
}
.sgls-data-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.9rem;
	margin-bottom: 0.75rem;
}
.sgls-data-table tr {
	border-bottom: 1px solid #eee;
}
.sgls-data-table tr:last-child {
	border-bottom: none;
}
.sgls-data-table th {
	text-align: left;
	font-weight: 500;
	color: #777;
	padding: 7px 12px 7px 0;
	width: 160px;
	vertical-align: top;
	white-space: nowrap;
}
.sgls-data-table td {
	padding: 7px 0;
	color: #111;
	font-weight: 600;
	vertical-align: top;
}
.sgls-enhanced-badge {
	display: inline-block;
	background: #e3f2fd;
	color: #0d47a1;
	font-size: 0.72rem;
	padding: 1px 6px;
	border-radius: 10px;
	font-weight: 700;
	margin-left: 4px;
	vertical-align: middle;
}
.sgls-verify-note {
	font-size: 0.82rem;
	color: #666;
	background: #fafafa;
	border: 1px solid #eee;
	border-radius: 4px;
	padding: 8px 12px;
	margin: 0;
}
.sgls-verify-note a {
	color: #2e7d32;
}

/* ── Right column ────────────────────────────────────────────── */
.sgls-product-right {
	position: sticky;
	top: 2rem;
}

/* ── Tab switcher ────────────────────────────────────────────── */
.sgls-tabs {
	display: flex;
	gap: 4px;
	margin-bottom: 0;
	border-bottom: 2px solid #e5e5e0;
	padding-bottom: 0;
}
.sgls-tab {
	padding: 8px 16px;
	font-size: 0.88rem;
	font-weight: 600;
	border: none;
	background: none;
	color: #777;
	cursor: pointer;
	border-bottom: 2px solid transparent;
	margin-bottom: -2px;
	transition: color 0.15s, border-color 0.15s;
	font-family: inherit;
}
.sgls-tab:hover {
	color: #333;
}
.sgls-tab--active {
	color: #1a4d2e;
	border-bottom-color: #1a4d2e;
}

/* ── Tab panels ──────────────────────────────────────────────── */
.sgls-tab-panel {
	padding: 1rem 0;
}
.sgls-tab-content {
	font-size: 0.92rem;
	color: #444;
	line-height: 1.7;
	margin-bottom: 0.75rem;
}
.sgls-tab-content p {
	margin: 0 0 0.6rem;
}
.sgls-consumer-note {
	font-size: 0.82rem;
	background: #e8f5e9;
	border-radius: 4px;
	padding: 8px 12px;
	color: #2e7d32;
	font-weight: 500;
}
.sgls-b2b-note {
	font-size: 0.82rem;
	color: #888;
	margin: 0.5rem 0 0;
	font-style: italic;
}

/* ── Category scope box ──────────────────────────────────────── */
.sgls-category-scope {
	margin-top: 1.5rem;
}
.sgls-scope-box {
	background: #f9f9f7;
	border: 1px solid #e5e5e0;
	border-radius: 6px;
	padding: 12px 14px;
	font-size: 0.88rem;
	color: #444;
	line-height: 1.6;
}
.sgls-scope-desc {
	display: block;
	color: #666;
	margin: 4px 0 8px;
	font-size: 0.85rem;
}
.sgls-scope-link {
	display: block;
	margin-top: 6px;
	font-size: 0.85rem;
	color: #1a6b44;
	font-weight: 600;
	text-decoration: none;
}
.sgls-scope-link:hover {
	text-decoration: underline;
}

/* ── Post content area ───────────────────────────────────────── */
.sgls-product-content {
	margin-top: 1.5rem;
	font-size: 0.92rem;
	line-height: 1.7;
	color: #444;
}

/* ── Expired notice ──────────────────────────────────────────── */
.sgls-product-expired {
	max-width: 700px;
	margin: 2rem auto;
	padding: 2rem;
	background: #fff8e1;
	border: 1px solid #ffe082;
	border-radius: 6px;
	color: #5d4037;
}
.sgls-product-expired h1 {
	margin: 0 0 0.75rem;
	font-size: 1.4rem;
}
.sgls-product-expired a {
	color: #2e7d32;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 860px) {
	.sgls-product-inner--two-col {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	.sgls-product-right {
		position: static;
	}
	.sgls-product-title {
		font-size: 1.4rem;
	}
	.sgls-data-table th {
		width: 130px;
	}
}
@media (max-width: 480px) {
	.sgls-data-table {
		font-size: 0.82rem;
	}
	.sgls-data-table th {
		width: 110px;
	}
	.sgls-tab {
		padding: 6px 10px;
		font-size: 0.82rem;
	}
}

/* ── Nav bar (breadcrumb + back link at top) ─────────────────── */
.sgls-nav-bar {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 1.5rem;
	font-size: 0.85rem;
	flex-wrap: wrap;
}
.sgls-back-link {
	color: #1a6b44;
	text-decoration: none;
	font-weight: 500;
}
.sgls-back-link:hover {
	text-decoration: underline;
}
.sgls-back-link--cat {
	color: #555;
}
.sgls-nav-sep {
	color: #ccc;
}
.sgls-nav-current {
	color: #888;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 260px;
}

/* ── Back buttons (bottom of left col) ───────────────────────── */
.sgls-back-buttons {
	display: flex;
	gap: 10px;
	margin-top: 1.5rem;
	flex-wrap: wrap;
}
.sgls-btn {
	display: inline-block;
	padding: 9px 16px;
	border-radius: 4px;
	font-size: 0.88rem;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.15s, color 0.15s;
	white-space: nowrap;
}
.sgls-btn--secondary {
	background: #1a4d2e;
	color: #fff;
	border: 1px solid #1a4d2e;
}
.sgls-btn--secondary:hover {
	background: #0f3320;
	color: #fff;
}
.sgls-btn--ghost {
	background: transparent;
	color: #1a4d2e;
	border: 1px solid #1a4d2e;
}
.sgls-btn--ghost:hover {
	background: #f0f7f2;
}

/* ── Other products section ──────────────────────────────────── */
.sgls-other-products {
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid #e5e5e0;
}
.sgls-other-products__header {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1.25rem;
	flex-wrap: wrap;
}
.sgls-other-products__title {
	font-size: 1.1rem;
	font-weight: 600;
	margin: 0;
	color: #111;
}
.sgls-other-products__view-all {
	font-size: 0.85rem;
	color: #1a6b44;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
}
.sgls-other-products__view-all:hover {
	text-decoration: underline;
}

/* Other products card grid */
.sgls-other-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 1rem;
}
.sgls-other-card {
	display: block;
	background: #fff;
	border: 1px solid #e5e5e0;
	border-radius: 6px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: box-shadow 0.15s, transform 0.15s;
}
.sgls-other-card:hover {
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
	transform: translateY(-2px);
}
.sgls-other-card__img {
	width: 100%;
	height: 110px;
	overflow: hidden;
	background: #f0f4f0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.sgls-other-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.sgls-other-card__no-img {
	font-size: 0.75rem;
	color: #aaa;
}
.sgls-other-card__body {
	padding: 10px 12px;
}
.sgls-other-card__badges {
	display: flex;
	gap: 4px;
	flex-wrap: wrap;
	margin-bottom: 6px;
}
.sgls-other-card__cat {
	font-size: 0.7rem;
	background: #f0f4f0;
	color: #555;
	padding: 1px 6px;
	border-radius: 10px;
	font-weight: 500;
}
.sgls-other-card__scheme {
	font-size: 0.7rem;
	background: #e8f5e9;
	color: #2e7d32;
	padding: 1px 6px;
	border-radius: 10px;
	font-weight: 600;
}
.sgls-other-card__scheme--enhanced {
	background: #e3f2fd;
	color: #0d47a1;
}
.sgls-other-card__title {
	font-size: 0.88rem;
	font-weight: 600;
	color: #111;
	margin: 0 0 4px;
	line-height: 1.3;
}
.sgls-other-card__cert {
	font-size: 0.75rem;
	color: #888;
	margin: 0;
}

/* Only-product message */
.sgls-only-product {
	background: #f9f9f7;
	border: 1px solid #e5e5e0;
	border-radius: 6px;
	padding: 1.25rem 1.5rem;
	font-size: 0.92rem;
	color: #555;
}
.sgls-only-product p {
	margin: 0 0 1rem;
}
.sgls-only-product strong {
	color: #111;
}

/* Responsive adjustments */
@media (max-width: 600px) {
	.sgls-other-grid {
		grid-template-columns: 1fr 1fr;
	}
	.sgls-back-buttons {
		flex-direction: column;
	}
	.sgls-btn {
		text-align: center;
	}
	.sgls-nav-current {
		display: none;
	}
}


/* ============================================================
   DIRECTORY PAGE STYLES
   ============================================================ */

/* ── Page wrapper ────────────────────────────────────────────── */
.sgls-dir-wrap {
	max-width: 1200px;
	margin: 0 auto;
	padding: 1.5rem 1.25rem 3rem;
}

/* ── Page header ─────────────────────────────────────────────── */
.sgls-dir-header {
	margin-bottom: 1.5rem;
}
.sgls-dir-title {
	font-size: 1.75rem;
	font-weight: 700;
	margin: 0 0 0.4rem;
}
.sgls-dir-intro {
	font-size: 0.95rem;
	color: #666;
	margin: 0;
}

/* ── Full-width search bar ───────────────────────────────────── */
.sgls-dir-searchbar {
	display: flex;
	gap: 8px;
	align-items: center;
	margin-bottom: 1.5rem;
	flex-wrap: wrap;
}
.sgls-dir-search-input {
	flex: 1;
	min-width: 200px;
	padding: 10px 14px;
	font-size: 0.95rem;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-family: inherit;
	color: #111;
}
.sgls-dir-search-input:focus {
	outline: none;
	border-color: #1a4d2e;
	box-shadow: 0 0 0 2px rgba(26,77,46,0.15);
}
.sgls-dir-search-btn {
	padding: 10px 20px;
	background: #1a4d2e;
	color: #fff;
	border: none;
	border-radius: 4px;
	font-size: 0.95rem;
	font-weight: 600;
	cursor: pointer;
	font-family: inherit;
	white-space: nowrap;
}
.sgls-dir-search-btn:hover { background: #0f3320; }
.sgls-dir-clear-btn {
	font-size: 0.85rem;
	color: #888;
	text-decoration: none;
	white-space: nowrap;
}
.sgls-dir-clear-btn:hover { color: #333; text-decoration: underline; }

/* ── Two-column layout ───────────────────────────────────────── */
.sgls-dir-layout {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 2rem;
	align-items: start;
}

/* ── Sidebar ─────────────────────────────────────────────────── */
.sgls-dir-sidebar {
	position: sticky;
	top: 1.5rem;
	background: #f9f9f7;
	border: 1px solid #e5e5e0;
	border-radius: 8px;
	padding: 1.25rem;
}
.sgls-filter-group {
	margin-bottom: 1.5rem;
}
.sgls-filter-group:last-of-type { margin-bottom: 1rem; }
.sgls-filter-label {
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	color: #888;
	font-weight: 700;
	margin-bottom: 8px;
	display: block;
}

/* ── Category tree ───────────────────────────────────────────── */
.sgls-cat-list { font-size: 0.88rem; }
.sgls-cat-item--all {
	padding: 5px 8px;
	border-radius: 4px;
	cursor: pointer;
	color: #555;
	margin-bottom: 2px;
}
.sgls-cat-item--all:hover { background: #eef2ee; color: #111; }
.sgls-cat-item--active { color: #1a4d2e !important; font-weight: 600; }

.sgls-cat-group { margin-bottom: 2px; }
.sgls-cat-parent {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 5px 8px;
	border-radius: 4px;
	cursor: pointer;
	color: #333;
	font-weight: 500;
}
.sgls-cat-parent:hover { background: #eef2ee; }
.sgls-cat-parent__toggle {
	font-size: 10px;
	color: #aaa;
	transition: transform 0.15s;
	flex-shrink: 0;
	margin-left: 4px;
	cursor: pointer;
}
.sgls-cat-group--open > .sgls-cat-parent .sgls-cat-parent__toggle,
.sgls-cat-l2-group.sgls-cat-group--open > .sgls-cat-l2 .sgls-cat-parent__toggle {
	transform: rotate(90deg);
}

/* Children (level 2) */
.sgls-cat-children {
	display: none;
	padding-left: 10px;
	margin-top: 2px;
}
.sgls-cat-group--open > .sgls-cat-children { display: block; }

.sgls-cat-l2-group { margin-bottom: 1px; }
.sgls-cat-l2 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 4px 8px;
	border-radius: 4px;
	cursor: pointer;
	color: #555;
	font-size: 0.85rem;
}
.sgls-cat-l2:hover { background: #eef2ee; color: #111; }

/* Level 3 */
.sgls-cat-l3-list { padding-left: 10px; }
.sgls-cat-l3 {
	padding: 3px 8px;
	border-radius: 4px;
	cursor: pointer;
	color: #777;
	font-size: 0.82rem;
}
.sgls-cat-l3:hover { background: #eef2ee; color: #111; }

/* ── Scheme filter pills ─────────────────────────────────────── */
.sgls-scheme-options {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.sgls-scheme-opt {
	padding: 6px 10px;
	border-radius: 4px;
	font-size: 0.85rem;
	cursor: pointer;
	color: #555;
	border: 1px solid transparent;
}
.sgls-scheme-opt:hover { background: #eef2ee; }
.sgls-scheme-opt--active {
	background: #e8f5e9;
	color: #1b5e20;
	font-weight: 600;
	border-color: #a5d6a7;
}

/* ── Reset button ────────────────────────────────────────────── */
.sgls-filter-reset-btn {
	width: 100%;
	padding: 7px;
	background: transparent;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 0.82rem;
	color: #888;
	cursor: pointer;
	font-family: inherit;
}
.sgls-filter-reset-btn:hover { border-color: #999; color: #333; }

/* ── Results area ────────────────────────────────────────────── */
.sgls-dir-results-wrap { min-height: 400px; }

/* Loading state */
#sgls-product-results.sgls-loading {
	opacity: 0.4;
	pointer-events: none;
	transition: opacity 0.2s;
}

/* Result summary */
.sgls-results-summary {
	font-size: 0.85rem;
	color: #888;
	margin-bottom: 1rem;
	min-height: 1.2em;
}

/* ── Product card grid ───────────────────────────────────────── */
.sgls-product-grid {
	display: grid;
	grid-template-columns: repeat( auto-fill, minmax( 200px, 1fr ) );
	gap: 1.25rem;
}
.sgls-product-card {
	background: #fff;
	border: 1px solid #e5e5e0;
	border-radius: 8px;
	overflow: hidden;
	transition: box-shadow 0.15s, transform 0.15s;
}
.sgls-product-card:hover {
	box-shadow: 0 4px 14px rgba(0,0,0,0.08);
	transform: translateY(-2px);
}
.sgls-product-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	text-decoration: none;
	color: inherit;
}
.sgls-product-card__img {
	width: 100%;
	height: 140px;
	overflow: hidden;
	background: #f0f4f0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.sgls-product-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.sgls-product-card__no-img {
	font-size: 0.75rem;
	color: #bbb;
}
.sgls-product-card__body {
	padding: 12px 14px 8px;
	flex: 1;
}
.sgls-product-card__badges {
	display: flex;
	gap: 4px;
	flex-wrap: wrap;
	margin-bottom: 6px;
}
.sgls-product-card__cat {
	font-size: 0.7rem;
	background: #f0f4f0;
	color: #555;
	padding: 1px 6px;
	border-radius: 10px;
	font-weight: 500;
}
.sgls-product-card__scheme {
	font-size: 0.7rem;
	background: #e8f5e9;
	color: #2e7d32;
	padding: 1px 6px;
	border-radius: 10px;
	font-weight: 600;
}
.sgls-product-card__scheme--enhanced {
	background: #e3f2fd;
	color: #0d47a1;
}
.sgls-product-card__title {
	font-size: 0.92rem;
	font-weight: 600;
	color: #111;
	margin: 0 0 4px;
	line-height: 1.3;
}
.sgls-product-card__licensee {
	font-size: 0.8rem;
	color: #555;
	margin: 0 0 3px;
}
.sgls-product-card__cert {
	font-size: 0.75rem;
	color: #999;
	margin: 0;
}
.sgls-product-card__footer {
	padding: 8px 14px 12px;
	border-top: 1px solid #f0f0ee;
}
.sgls-product-card__view {
	font-size: 0.8rem;
	color: #1a6b44;
	font-weight: 600;
}

/* ── No results ──────────────────────────────────────────────── */
.sgls-no-results {
	padding: 2rem;
	text-align: center;
	color: #888;
	background: #f9f9f7;
	border-radius: 6px;
	font-size: 0.92rem;
}
.sgls-no-results a { color: #1a6b44; }

/* ── Pagination ──────────────────────────────────────────────── */
.sgls-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	margin-top: 2rem;
	flex-wrap: wrap;
}
.sgls-page-btn {
	padding: 6px 12px;
	border: 1px solid #ddd;
	border-radius: 4px;
	background: #fff;
	color: #333;
	font-size: 0.85rem;
	cursor: pointer;
	font-family: inherit;
	transition: background 0.1s;
}
.sgls-page-btn:hover { background: #f0f4f0; }
.sgls-page-btn--active {
	background: #1a4d2e;
	color: #fff;
	border-color: #1a4d2e;
}
.sgls-page-ellipsis {
	padding: 6px 4px;
	color: #aaa;
	font-size: 0.85rem;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media ( max-width: 900px ) {
	.sgls-dir-layout {
		grid-template-columns: 1fr;
	}
	.sgls-dir-sidebar {
		position: static;
	}
	.sgls-scheme-options {
		flex-direction: row;
		flex-wrap: wrap;
	}
}
@media ( max-width: 600px ) {
	.sgls-product-grid {
		grid-template-columns: 1fr 1fr;
	}
	.sgls-dir-title { font-size: 1.4rem; }
}
@media ( max-width: 400px ) {
	.sgls-product-grid {
		grid-template-columns: 1fr;
	}
}


/* ── Autocomplete dropdown ───────────────────────────────────── */
.sgls-autocomplete-wrap {
	position: relative;
	flex: 1;
	min-width: 0;
}
.sgls-search-input-row {
	display: flex;
	gap: 8px;
}
.sgls-suggestions {
	position: absolute;
	top: calc(100% + 4px);
	left: 0;
	right: 0;
	background: var(--color-background-primary, #fff);
	border: 1px solid #ddd;
	border-radius: 6px;
	box-shadow: 0 4px 16px rgba(0,0,0,0.10);
	z-index: 999;
	max-height: 360px;
	overflow-y: auto;
}
.sgls-sug-group-label {
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	color: #aaa;
	font-weight: 700;
	padding: 8px 12px 4px;
	border-top: 1px solid #f0f0ee;
}
.sgls-sug-group-label:first-child {
	border-top: none;
}
.sgls-sug-item {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	cursor: pointer;
	font-size: 0.88rem;
	color: #333;
	transition: background 0.1s;
}
.sgls-sug-item:hover,
.sgls-sug-item--active {
	background: #f0f7f2;
}
.sgls-sug-icon {
	width: 20px;
	height: 20px;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.65rem;
	font-weight: 700;
	flex-shrink: 0;
}
.sgls-sug-icon--product {
	background: #e8f5e9;
	color: #2e7d32;
}
.sgls-sug-icon--licensee {
	background: #e3f2fd;
	color: #0d47a1;
}
.sgls-sug-icon--category {
	background: #fff8e1;
	color: #f57f17;
}
.sgls-sug-label {
	flex: 1;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: #111;
}
.sgls-sug-action {
	font-size: 0.75rem;
	color: #aaa;
	white-space: nowrap;
	flex-shrink: 0;
}
.sgls-sug-item:hover .sgls-sug-action,
.sgls-sug-item--active .sgls-sug-action {
	color: #1a6b44;
}
