.custom-header-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 20px;
	width: 100%;
	box-sizing: border-box;
	background-color: #dcd7d2; /* Default fallback color */
	border-radius: 50px;
	border: 1px solid #000;
}

/* Left Actions */
.ch-left-actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.ch-icon-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid #000;
	background: transparent;
	cursor: pointer;
	text-decoration: none;
	color: #000;
	transition: all 0.3s ease;
}

.ch-icon-btn:hover {
	background-color: rgba(0,0,0,0.05);
}

.ch-icon-btn i {
	font-size: 18px;
}

/* Logo */
.ch-logo {
	flex-grow: 1;
	text-align: center;
}

.ch-logo img {
	max-height: 50px;
	width: auto;
	display: block;
	margin: 0 auto;
}

.site-title {
	margin: 0;
	font-family: 'Cursive', serif; /* Fallback font */
	font-size: 24px;
}

/* Right Actions */
.ch-right-actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.ch-menu-btn {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 20px;
	border-radius: 50px;
	border: 1px solid #000;
	background: transparent;
	cursor: pointer;
	font-family: inherit;
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	transition: all 0.3s ease;
	color: #000; /* Default black */
}

.ch-menu-btn:hover {
	background-color: rgba(0,0,0,0.05);
}


/* Responsive */
@media (max-width: 767px) {
	.custom-header-wrapper {
		padding: 10px;
	}
	
	.menu-text {
		display: none;
	}
	
	.ch-menu-btn {
		padding: 8px;
		width: 40px;
		height: 40px;
		justify-content: center;
	}
}
