@layer components {
	.rlc-topbar {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		font-size: var(--text-small-size);
	}

	.rlc-topbar,
	.rlc-topbar * {
		box-sizing: border-box;
	}

	.rlc-topbar-left,
	.rlc-topbar-right {
		flex: 1 1 0;
	}

	.rlc-topbar-center {
		flex: 0 0 auto;
	}

	.rlc-topbar-left > *,
	.rlc-topbar-right > *,
	.rlc-topbar-center > * {
		min-width: 0;
		display: inline-flex;
		align-items: center;
	}

	.rlc-topbar a {
		text-decoration: none;
		transition: color 0.2s ease, opacity 0.2s ease;
	}

	.rlc-topbar a:hover {
		opacity: 0.85;
	}

	.rlc-topbar a:active {
		opacity: 0.7;
	}

	.contact-item {
	display: inline-flex;
	align-items: center;
	gap: 0.35em;

	text-decoration: none;
	line-height: 1.4;
	color: inherit;
}

.contact-item::before {
	font-family: dashicons;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
  margin: 0 var(--space-xxs);
}
.contact-item:hover{
  text-decoration: none !important;
}
	.contact-phone::before {
		content: var(--icon-phone);
	}

	.contact-email::before {
		content: var(--icon-email);
	}

	.rlc-topbar-search {
		position: relative;
	}

	.rlc-topbar-search .search-toggle {
		display: inline-flex;
		align-items: center;
		background: none;
		cursor: pointer;
	}

	.rlc-topbar-search .search-toggle::before {
		content: var(--icon-search);
		font-family: dashicons;
		line-height: 1;
		font-size: calc(var(--font-size-sm) * 1.5);
	}

	.rlc-topbar-search .search-form {
		position: absolute;
		top: 100%;
		left: 0;
		width: 200px;
		display: none;
		z-index: 999;
	}

	.rlc-topbar-search.active .search-form {
		display: block;
	}

	.rlc-topbar-search input[type="search"] {
		width: 100%;
		outline: none;
	}

	.dashicons,
	.dashicons-before::before {
		font-family: dashicons !important;
	}

	.rlc-topbar .dashicons {
		width: 1em;
		height: 1em;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		line-height: 1;
		font-size: var(--font-size-lg);
	}

	.topbar-menu {
		display: flex;
		align-items: center;
		gap: var(--space-xxs);
		list-style: none;
		margin: 0;
	}

	.topbar-menu li {
		display: flex;
		align-items: center;
		margin: 0;
	}

	.topbar-menu li::before {
		content: var(--icon-topbar);
		margin-inline-end: var(--space-xxs);
		line-height: var(--lh-tight);
	}

	.topbar-menu li a {
		display: inline-flex;
		align-items: center;
		gap: var(--space-xxs);
		font-weight: var(--text-small-weight);
		line-height: var(--text-small-lh);
		text-decoration: none;
		transition: background-color 0.15s ease, color 0.15s ease, opacity 0.15s ease;
	}

	.topbar-menu li a:hover {
		opacity: var(--optical-muted);
		text-decoration: underline;
	}

	.topbar-menu li a:active {
		opacity: var(--optical-faint);
	}

	@media (max-width: 768px) {
		.rlc-topbar {
			flex-direction: column;
			align-items: stretch;
			inline-size: 100%;
			max-inline-size: 100%;
			overflow-x: hidden;
		}

		.rlc-topbar-left,
		.rlc-topbar-center,
		.rlc-topbar-right {
			width: 100%;
			display: flex;
			justify-content: flex-start;
		}

		.rlc-topbar-center {
			justify-content: center;
		}

		.rlc-topbar-right {
			justify-content: flex-end;
		}
	}
}
