/* Top Bar Container */
.top-bar {
	height: 45px;
	background: #111;
	color: #fff;
	display: flex;
	align-items: center;
	font-size: 13px; /* small text */
}

/* Inner Flex */
.topbar-inner {
	width: 100%;
}

/* Left Text */
.topbar-left span {
	font-size: 13px;
	letter-spacing: 0.3px;
}

/* Right Social Icons */
.topbar-right a {
	color: #fff;
	margin-left: 12px;
	font-size: 14px;
	transition: 0.3s;
}

.topbar-right a:hover {
	color: #ffc107;
}

/* Mobile View */
@media (max-width: 768px) {
	.topbar-inner{
		justify-content: center !important;
		text-align: center;
	}
	
	.topbar-left{
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 12px; /* space between email & phone */
		font-size: 12px;
		white-space: nowrap; /* prevent breaking */
	}
	
	.topbar-right{
		display: none; /* hide social */
	}
	
	.topbar-left span{
		display: inline; /* keep in one row */
	}
}

.topbar-btn {
    background: #ffc107;
    color: #000;
    padding: 4px 10px;
    margin-left: 15px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
}

.topbar-btn:hover {
    background: #fff;
    color: #000;
}