/**
 * Top Bar – sol görsel, sağ buton
 */
.wptb-top-bar {
	--wptb-height: 48px;
	--wptb-bg: #1d2327;
	--wptb-btn-bg: #2271b1;
	width: 100%;
	min-height: var(--wptb-height);
	background: var(--wptb-bg);
	color: #fff;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
	position: relative;
	z-index: 9998;
}

.wptb-top-bar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 16px;
	min-height: var(--wptb-height);
	box-sizing: border-box;
}

.wptb-top-bar-left {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
	min-width: 0;
}

.wptb-top-bar-address {
	font-size: 12px;
	line-height: 100%;
	opacity: 0.9;
	white-space: nowrap;
	max-width: fit-content;
	overflow: hidden;
	text-overflow: ellipsis;
	flex-shrink: 0;
}

.wptb-top-bar-image {
	max-height: calc(var(--wptb-height) - 12px);
	width: auto;
	object-fit: contain;
	object-position: left center;
	vertical-align: middle;
}

.wptb-top-bar-placeholder {
	font-size: 13px;
	opacity: 0.7;
}

.wptb-top-bar-right {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.wptb-top-bar-btn {
	display: inline-block;
	padding: 8px 16px;
	background: var(--wptb-btn-bg);
	color: #fff !important;
	text-decoration: none;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.3;
	transition: filter 0.2s ease;
}

.wptb-top-bar-btn:hover {
	filter: brightness(0.9);
	color: #fff !important;
}

.wptb-top-bar-btn-no-link {
	background: var(--wptb-btn-bg);
	cursor: default;
}

.wptb-top-bar-btn-no-link:hover {
	filter: none;
}

@media (max-width: 782px) {
	.wptb-top-bar-inner {
		padding: 0 12px;
		gap: 12px;
	}

	.wptb-top-bar-left {
		gap: 8px;
	}

	.wptb-top-bar-address {
		display: none;
	}

	.wptb-top-bar-image {
		max-height: calc(var(--wptb-height) - 16px);
	}

	.wptb-top-bar-btn {
		padding: 6px 12px;
		font-size: 13px;
	}
}
