.koc-store-status-bar {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
	background-color: transparent;
}

.koc-store-status-stores {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	flex: 1;
	min-width: 0;
}

.koc-store-status-item {
	display: flex;
	align-items: center;
	gap: 14px;
}

.koc-store-status-image {
	width: 70px;
	height: 70px;
	min-width: 70px;
	background-color: #c8c8c8;
	overflow: hidden;
	flex-shrink: 0;
}

.koc-store-status-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.koc-store-status-info {
	display: flex;
	flex-direction: column;
}

.koc-store-status-name {
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 4px;
}

.koc-store-status-status {
	display: flex;
	align-items: center;
	gap: 6px;
}

.koc-status-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	flex-shrink: 0;
	display: inline-block;
}

.koc-status-dot.is-open  { background-color: #4caf50; }
.koc-status-dot.is-closed { background-color: #e53935; }

.koc-status-label.is-open  { color: #4caf50; }
.koc-status-label.is-closed { color: #e53935; }

.koc-store-status-directions {
	flex-shrink: 0;
}

.koc-store-status-directions a {
	text-decoration: none;
	font-weight: 600;
	letter-spacing: 0.05em;
	border-bottom: 1px solid currentColor;
	padding-bottom: 2px;
	transition: opacity 0.2s ease;
}

.koc-store-status-directions a:hover {
	opacity: 0.65;
}

@media (max-width: 1024px) {
	.koc-store-status-bar {
		flex-direction: column;
		align-items: flex-start;
	}

	.koc-store-status-stores {
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
	}
}
