/* Minimalist Project Cards (Clean text-focused layout with subtle horizontal dividers) */
.projects-grid {
	display: flex;
	flex-direction: column;
	gap: 2.25rem;
	margin-top: 1.5rem;
}

.project-card {
	background: transparent;
	border: none !important;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
	border-radius: 0;
	padding: 0 0 2rem 0;
	box-shadow: none !important;
	transition: opacity 0.2s ease;
}

.project-card:last-child {
	border-bottom: none !important;
	padding-bottom: 0;
}

.project-header {
	margin-bottom: 0.4rem;
}

.project-badge {
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.45);
	background: transparent;
	border: none !important;
	padding: 0;
	margin-bottom: 0.25rem;
}

.project-title {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 1.35rem !important;
	color: #ffffff;
	margin-bottom: 0.5rem;
	letter-spacing: -0.01em;
}

.project-desc {
	font-size: 1.02rem !important;
	line-height: 1.65 !important;
	color: rgba(255, 255, 255, 0.88) !important;
	margin-bottom: 1.15rem;
}

.project-gallery {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.gallery-main {
	width: 100%;
	border-radius: 6px;
	overflow: hidden;
	border: none !important;
	background: #000000;
	box-shadow: none !important;
}

.gallery-main img {
	width: 100%;
	height: auto;
	max-height: 360px;
	object-fit: contain;
	display: block;
	transition: opacity 0.2s ease;
}

.gallery-thumbs {
	display: flex;
	gap: 0.5rem;
	overflow-x: auto;
	padding: 0.25rem 0;
}

.thumb-btn {
	width: 4.25rem;
	height: 2.85rem;
	padding: 0;
	border-radius: 4px;
	border: none !important;
	background: transparent !important;
	cursor: pointer;
	overflow: hidden;
	transition: opacity 0.2s ease;
	opacity: 0.35;
	flex-shrink: 0;
}

.thumb-btn.active, .thumb-btn:hover {
	opacity: 1;
	transform: none !important;
	box-shadow: none !important;
	border: none !important;
}

.thumb-btn img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 4px;
}

.target-hint {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	margin-top: 0.5rem;
	padding: 0.2rem 0.5rem;
	font-size: 0.68rem;
	color: rgba(255, 255, 255, 0.4);
	letter-spacing: 0.02em;
}

.target-hint svg {
	flex-shrink: 0;
	opacity: 0.6;
}

.project-desc-intro {
	font-weight: 500;
	font-size: 0.85rem;
	color: var(--color-primary, #00c9a7);
	margin-top: 1rem;
	margin-bottom: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.project-desc.italic {
	font-style: italic;
	opacity: 0.9;
	margin-bottom: 1.25rem;
}

.project-meta-box {
	margin: 0 0 1.25rem 0;
	padding: 0.85rem 1rem;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	font-size: 0.82rem;
	line-height: 1.6;
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.project-meta-box .meta-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 0.25rem;
}

.project-meta-box .meta-lbl {
	color: rgba(255, 255, 255, 0.5);
}

.project-meta-box .meta-link {
	color: var(--color-primary, #00c9a7);
	text-decoration: none;
	font-weight: 600;
	transition: opacity 0.2s ease;
}

.project-meta-box .meta-link:hover {
	opacity: 0.8;
}

.project-meta-box .meta-code-link {
	color: var(--color-primary, #00c9a7);
	text-decoration: underline;
	text-underline-offset: 2px;
	font-family: monospace;
	font-size: 0.82rem;
}

.project-meta-box .meta-val {
	color: rgba(255, 255, 255, 0.9);
	font-weight: 500;
}

.project-actions {
	display: flex;
	gap: 0.5rem;
	width: 100%;
}

.project-actions .intro-btn {
	width: 100%;
	text-align: center;
}

/* Minimalist Contact Section Styling */
.contact-quote-wrapper {
	margin: 2rem 0 2.5rem 0;
	text-align: center;
	padding: 0 1rem;
}

.author-quote {
	font-style: italic;
	font-size: 1.1rem;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.88);
	border: none !important;
	padding: 0;
	margin: 0 0 1.25rem 0;
}

.author-signature {
	font-family: var(--font-title);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.45);
}

.contact-social-buttons {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	margin-top: 1.5rem;
	margin-bottom: 0.5rem;
}

.social-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	padding: 0.75rem 2rem;
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.06);
	color: #ffffff !important;
	font-family: var(--font-heading);
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-decoration: none !important;
	border: none !important;
	transition: background 0.2s ease, opacity 0.2s ease;
	min-width: 140px;
}

.social-btn:hover {
	background: rgba(255, 255, 255, 0.12);
	border: none !important;
	opacity: 1 !important;
	text-shadow: none !important;
}

.social-btn i {
	font-size: 1.15rem;
}

@media screen and (max-width: 480px) {
	.contact-social-buttons {
		flex-direction: column;
		width: 100%;
		gap: 0.85rem;
	}

	.social-btn {
		width: 100%;
	}
}

/* Global Clean Borderless Style Rules & Scrollbar Hiding */
*, *:before, *:after {
	outline: none !important;
}

html, body, #wrapper, #main, article, div, textarea {
	scrollbar-width: none !important;
	-ms-overflow-style: none !important;
}

::-webkit-scrollbar {
	width: 0px !important;
	height: 0px !important;
	background: transparent !important;
	display: none !important;
}

::-webkit-scrollbar-track {
	background: transparent !important;
}

::-webkit-scrollbar-thumb {
	background: transparent !important;
}

#header > *:before, #header > nav:before, #header nav.use-middle:after {
	display: none !important;
}

/* Minimalist QR Scan Button below main menu */
.header-qr-wrapper {
	margin-top: 0.85rem !important;
	width: 100%;
	display: flex;
	justify-content: center;
}

.header-qr-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.55rem 1.4rem;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.12) !important;
	color: rgba(255, 255, 255, 0.85) !important;
	font-family: var(--font-heading);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none !important;
	transition: all 0.25 ease;
	box-shadow: none !important;
}

.header-qr-btn:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.28) !important;
	color: #ffffff !important;
	transform: translateY(-1px);
	text-shadow: none !important;
}

.header-qr-btn i {
	font-size: 0.88rem;
}

/* Ultra-Minimalist QR Scanner Styling */
#qr-scanner {
	text-align: center;
}

#qr-scanner h2.major {
	text-align: center;
	font-size: 1.15rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 1rem;
}

#qr-scanner h2.major:after {
	margin: 0.4rem auto 0 auto !important;
	width: 2rem;
}

.qr-scanner-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.85rem;
	margin-top: 0.25rem;
	text-align: center;
}

.qr-video-frame {
	position: relative;
	width: 100%;
	max-width: 220px;
	aspect-ratio: 1 / 1;
	background: #000000;
	border-radius: 8px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: none !important;
	border: none !important;
}

#qr-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.qr-scanner-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}

.qr-target-box {
	position: relative;
	width: 72%;
	height: 72%;
	box-sizing: border-box;
}

.qr-corner {
	position: absolute;
	width: 10px;
	height: 10px;
	border-color: rgba(255, 255, 255, 0.45);
	border-style: solid;
}

.qr-corner.top-left {
	top: 0;
	left: 0;
	border-width: 1px 0 0 1px;
}

.qr-corner.top-right {
	top: 0;
	right: 0;
	border-width: 1px 1px 0 0;
}

.qr-corner.bottom-left {
	bottom: 0;
	left: 0;
	border-width: 0 0 1px 1px;
}

.qr-corner.bottom-right {
	bottom: 0;
	right: 0;
	border-width: 0 1px 1px 0;
}

.qr-status-msg {
	font-size: 0.72rem;
	text-align: center;
	color: rgba(255, 255, 255, 0.4);
	background: transparent;
	padding: 0;
	border: none !important;
	letter-spacing: 0.03em;
}

.qr-status-msg.error {
	color: #ff6b6b;
}

.qr-status-msg.success {
	color: #51cf66;
}

.qr-result-box {
	width: 100%;
	max-width: 220px;
	background: transparent;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding-top: 0.75rem;
	text-align: center;
}

.qr-result-text {
	font-family: inherit;
	font-size: 0.78rem;
	color: rgba(255, 255, 255, 0.85);
	word-break: break-all;
	margin-bottom: 0.6rem;
	background: transparent;
	padding: 0;
	text-align: center;
}

.qr-result-actions {
	display: flex;
	gap: 0.5rem;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	width: 100%;
	margin-top: 0.5rem;
}

.qr-action-btn {
	background: rgba(255, 255, 255, 0.06) !important;
	border: none !important;
	color: rgba(255, 255, 255, 0.8) !important;
	font-size: 0.72rem !important;
	font-weight: 600 !important;
	letter-spacing: 0.05em !important;
	text-transform: uppercase !important;
	height: 2.3rem !important;
	line-height: 2.3rem !important;
	padding: 0 1.25rem !important;
	border-radius: 8px !important;
	cursor: pointer;
	text-decoration: none !important;
	transition: background 0.2s ease, color 0.2s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.qr-action-btn:hover {
	background: rgba(255, 255, 255, 0.16) !important;
	color: #ffffff !important;
}

.qr-action-btn.primary {
	background: rgba(255, 255, 255, 0.12) !important;
	color: #ffffff !important;
}

.qr-action-btn.primary:hover {
	background: rgba(255, 255, 255, 0.22) !important;
}

.qr-controls {
	display: flex;
	gap: 0.5rem;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	width: 100%;
	margin-top: 0.5rem;
}

.qr-main-btn {
	background: rgba(255, 255, 255, 0.06) !important;
	border: none !important;
	color: rgba(255, 255, 255, 0.8) !important;
	font-size: 0.72rem !important;
	font-weight: 600 !important;
	letter-spacing: 0.05em !important;
	text-transform: uppercase !important;
	height: 2.3rem !important;
	line-height: 2.3rem !important;
	padding: 0 1.25rem !important;
	border-radius: 8px !important;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.qr-main-btn:hover {
	background: rgba(255, 255, 255, 0.16) !important;
	color: #ffffff !important;
}

.qr-sub-btn {
	background: transparent !important;
	border: 1px solid rgba(255, 255, 255, 0.15) !important;
	color: rgba(255, 255, 255, 0.6) !important;
	font-size: 0.72rem !important;
	font-weight: 600 !important;
	letter-spacing: 0.05em !important;
	text-transform: uppercase !important;
	height: 2.3rem !important;
	line-height: 2.3rem !important;
	padding: 0 1.25rem !important;
	border-radius: 8px !important;
	cursor: pointer;
	transition: all 0.2s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box !important;
}

.qr-sub-btn:hover {
	background: rgba(255, 255, 255, 0.08) !important;
	border-color: rgba(255, 255, 255, 0.3) !important;
	color: #ffffff !important;
}

/* Street AR Minimalist Single View Toggle Button */
.street-ar-toggle-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 1.25rem auto 1.5rem auto;
	width: 100%;
}

.street-ar-single-toggle {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 8px !important;
	padding: 0.45rem 1.15rem !important;
	border-radius: 30px !important;
	background: rgba(255, 255, 255, 0.03) !important;
	border: 1px solid rgba(0, 201, 167, 0.35) !important;
	color: #00c9a7 !important;
	font-family: var(--font-heading), 'Montserrat', sans-serif !important;
	font-size: 0.72rem !important;
	font-weight: 600 !important;
	letter-spacing: 0.06em !important;
	text-transform: uppercase !important;
	cursor: pointer !important;
	transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25), 0 0 10px rgba(0, 201, 167, 0.08) !important;
	outline: none !important;
	-webkit-tap-highlight-color: transparent;
	text-decoration: none !important;
}

.street-ar-single-toggle:hover {
	background: rgba(0, 201, 167, 0.12) !important;
	border-color: rgba(0, 201, 167, 0.6) !important;
	color: #ffffff !important;
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35), 0 0 16px rgba(0, 201, 167, 0.2) !important;
}

.street-ar-single-toggle:active {
	transform: translateY(1px) scale(0.98);
}

.street-ar-single-toggle .toggle-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #00c9a7;
	transition: transform 0.25s ease;
	flex-shrink: 0;
}

.street-ar-single-toggle:hover .toggle-icon {
	color: #ffffff;
	transform: scale(1.1);
}

.project-compact-meta {
	display: none;
}

/* Compact 2-Column Grid Layout for Street AR */
.projects-grid.compact-view {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	gap: 12px !important;
	margin-top: 1rem !important;
}

@media (min-width: 768px) {
	.projects-grid.compact-view {
		grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)) !important;
		gap: 16px !important;
	}
}

.projects-grid.compact-view .project-card {
	border: 1px solid rgba(255, 255, 255, 0.07) !important;
	border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
	border-radius: 12px !important;
	padding: 10px !important;
	background: rgba(255, 255, 255, 0.025) !important;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	display: flex !important;
	flex-direction: column !important;
	justify-content: flex-start !important;
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
	margin: 0 !important;
	box-sizing: border-box !important;
	width: 100% !important;
	min-width: 0 !important;
}

.projects-grid.compact-view .project-card:hover {
	border-color: rgba(0, 201, 167, 0.45) !important;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4) !important;
}

.projects-grid.compact-view .project-header {
	margin-bottom: 6px !important;
	width: 100%;
}

.projects-grid.compact-view .project-badge {
	font-size: 0.55rem !important;
	letter-spacing: 0.05em;
	color: #00c9a7;
	margin-bottom: 2px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	display: block;
	text-transform: uppercase;
}

.projects-grid.compact-view .project-title {
	font-size: 0.82rem !important;
	line-height: 1.25 !important;
	margin-bottom: 6px !important;
	color: #ffffff;
	font-weight: 700;
	white-space: normal !important;
	display: block !important;
	overflow: visible !important;
	height: auto !important;
	min-height: 2.1rem !important;
}

.projects-grid.compact-view .project-gallery {
	margin-bottom: 6px !important;
	gap: 0 !important;
	width: 100%;
}

.projects-grid.compact-view .gallery-main {
	border-radius: 8px !important;
	background: rgba(0, 0, 0, 0.5) !important;
	overflow: hidden;
	height: 110px !important;
	max-height: 110px !important;
	width: 100% !important;
}

.projects-grid.compact-view .gallery-main img {
	height: 110px !important;
	max-height: 110px !important;
	width: 100% !important;
	object-fit: cover !important;
	border-radius: 8px;
}

.projects-grid.compact-view .project-compact-meta {
	display: flex !important;
	align-items: center;
	gap: 5px;
	margin-bottom: 8px;
	flex-wrap: wrap;
}

.projects-grid.compact-view .compact-meta-chip {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 0.62rem;
	color: rgba(255, 255, 255, 0.65);
	background: rgba(255, 255, 255, 0.04);
	padding: 2px 7px;
	border-radius: 12px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 100%;
}

.projects-grid.compact-view .compact-meta-chip.is-link {
	color: #00c9a7;
	background: rgba(0, 201, 167, 0.08);
	border-color: rgba(0, 201, 167, 0.25);
	text-decoration: none;
	cursor: pointer;
	transition: all 0.2s ease;
}

.projects-grid.compact-view .compact-meta-chip.is-link:hover {
	background: rgba(0, 201, 167, 0.22);
	border-color: rgba(0, 201, 167, 0.6);
	color: #ffffff;
	transform: translateY(-1px);
}

.projects-grid.compact-view .compact-meta-chip svg {
	color: #00c9a7;
	flex-shrink: 0;
}

.projects-grid.compact-view .gallery-thumbs,
.projects-grid.compact-view .target-hint,
.projects-grid.compact-view .project-desc-intro,
.projects-grid.compact-view .project-desc,
.projects-grid.compact-view .project-meta-box,
.projects-grid.compact-view .project-desc.italic {
	display: none !important;
}

.projects-grid.compact-view .project-actions {
	margin-top: auto !important;
	padding-top: 2px !important;
	width: 100%;
}

.projects-grid.compact-view .project-actions .intro-btn {
	width: 100% !important;
	padding: 0.38rem 0.5rem !important;
	font-size: 0.68rem !important;
	letter-spacing: 0.04em !important;
	text-align: center;
	justify-content: center;
	border-radius: 18px;
	line-height: 1.2;
	text-transform: uppercase;
}

/* Street AR Toolbar (Search + View Switcher) */
.street-ar-toolbar {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin: 1.25rem auto 0.75rem auto;
	max-width: 320px;
	width: 100%;
}

.street-ar-search-box {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	max-width: 270px;
	background: rgba(255, 255, 255, 0.03) !important;
	border: 1px solid rgba(255, 255, 255, 0.08) !important;
	border-radius: 20px !important;
	padding: 2px 10px !important;
	transition: background-color 0.25s ease, border-color 0.25s ease !important;
	box-shadow: none !important;
	outline: none !important;
	box-sizing: border-box;
}

.street-ar-search-box:hover {
	background: rgba(255, 255, 255, 0.05) !important;
	border-color: rgba(255, 255, 255, 0.15) !important;
}

.street-ar-search-box:focus-within {
	background: rgba(255, 255, 255, 0.06) !important;
	border-color: rgba(0, 201, 167, 0.45) !important;
	box-shadow: none !important;
	outline: none !important;
}

.search-icon {
	color: rgba(255, 255, 255, 0.35);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 6px;
	pointer-events: none;
	transition: color 0.25s ease;
	flex-shrink: 0;
}

.street-ar-search-box:focus-within .search-icon {
	color: #00c9a7;
}

.street-ar-search-input,
.street-ar-search-input:focus,
.street-ar-search-input:hover,
.street-ar-search-input:active,
.street-ar-search-input:focus-visible {
	flex: 1;
	background: transparent !important;
	border: none !important;
	outline: none !important;
	box-shadow: none !important;
	color: #ffffff !important;
	font-size: 0.76rem !important;
	height: 1.85rem !important;
	line-height: 1.85rem !important;
	padding: 0 2px !important;
	margin: 0 !important;
	font-family: inherit;
	letter-spacing: 0.02em;
	caret-color: #00c9a7;
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	appearance: none !important;
}

.street-ar-search-input::placeholder {
	color: rgba(255, 255, 255, 0.35);
	font-size: 0.74rem;
	transition: opacity 0.2s ease;
}

.street-ar-search-input:focus::placeholder {
	opacity: 0.55;
}

.search-clear-btn {
	background: none !important;
	border: none !important;
	outline: none !important;
	box-shadow: none !important;
	color: rgba(255, 255, 255, 0.35) !important;
	cursor: pointer;
	padding: 3px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: color 0.2s ease, opacity 0.2s ease;
	border-radius: 50%;
	flex-shrink: 0;
}

.search-clear-btn:hover {
	color: #ffffff !important;
}

/* Street AR Navigation Footer */
.street-ar-nav-footer {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 2rem auto 0.75rem auto;
	width: 100%;
}

.street-ar-footer-btn {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 5px !important;
	padding: 0.32rem 0.8rem !important;
	border-radius: 20px !important;
	background: rgba(255, 255, 255, 0.03) !important;
	border: 1px solid rgba(255, 255, 255, 0.08) !important;
	color: rgba(255, 255, 255, 0.5) !important;
	font-size: 0.65rem !important;
	font-weight: 500 !important;
	letter-spacing: 0.04em !important;
	text-transform: uppercase !important;
	cursor: pointer !important;
	transition: all 0.2s ease !important;
	font-family: inherit;
	box-shadow: none !important;
}

.street-ar-footer-btn:hover {
	background: rgba(0, 201, 167, 0.1) !important;
	border-color: rgba(0, 201, 167, 0.3) !important;
	color: #00c9a7 !important;
	transform: translateY(-1px);
}

.street-ar-footer-btn.close-btn:hover {
	background: rgba(255, 75, 75, 0.1) !important;
	border-color: rgba(255, 75, 75, 0.3) !important;
	color: #ff5e5e !important;
}

/* No Results Banner */
.street-ar-no-results {
	text-align: center;
	padding: 2.5rem 1rem;
	color: rgba(255, 255, 255, 0.65);
	font-size: 0.88rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	width: 100%;
}

.street-ar-no-results-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 16px;
	border-radius: 20px;
	background: rgba(0, 201, 167, 0.12);
	border: 1px solid rgba(0, 201, 167, 0.3);
	color: #00c9a7;
	font-size: 0.75rem;
	cursor: pointer;
	transition: all 0.2s ease;
	font-family: inherit;
}

.street-ar-no-results-btn:hover {
	background: rgba(0, 201, 167, 0.25);
	color: #ffffff;
}


