/* Header Contact Bar Styles */
.header-contact-bar {
	background-color: #f8f8f8;
	border-bottom: 1px solid #e0e0e0;
	padding: 8px 0;
	font-size: 13px;
}

.header-contact-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.header-contact-items {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 30px;
	flex-wrap: wrap;
}

.header-contact-item {
	display: flex;
	align-items: center;
	gap: 6px;
	color: #333;
	text-decoration: none;
	transition: color 0.3s ease;
}

.header-contact-item:hover {
	color: #d4874f;
}

.header-contact-item svg {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
}

.header-contact-item span {
	white-space: nowrap;
}

.header-contact-item .icon-label {
	display: inline;
}

.header-contact-item .with-text {
	display: inline;
}

.header-contact-item.working-hours {
	cursor: default;
	pointer-events: none;
	color: #555;
}

.header-contact-item.working-hours .hours-text {
	font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
	.header-contact-bar {
		padding: 10px 0;
		font-size: 12px;
	}
	
	.header-contact-items {
		gap: 20px;
		row-gap: 0;
	}
	
	.header-contact-item svg {
		width: 24px;
		height: 24px;
	}
	
	.header-contact-item span,
	.header-contact-item span.with-text,
	.header-contact-item span.icon-label {
		display: none !important;
	}
	
	.header-contact-item.working-hours {
		order: 10;
		width: 100%;
		justify-content: center;
		padding-top: 10px;
		border-top: 1px solid #e0e0e0;
		margin-top: 10px;
		pointer-events: auto;
	}
	
	.header-contact-item.working-hours svg {
		width: 18px;
		height: 18px;
	}
	
	.header-contact-item.working-hours .hours-text {
		display: inline !important;
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.header-contact-items {
		gap: 25px;
	}
	
	.header-contact-item svg {
		width: 28px;
		height: 28px;
	}
}
