/* Zelax Header Icons — icon-only header polish */

/* Hide the text label next to the search icon; icon alone remains */
.zb-hd .zb-lbl {
	display: none !important;
}

/* Account icon, drawn in the same line-icon style as the existing cart icon
   (viewBox 0 0 24 24, stroke #111114, stroke-width 2.2, no fill). Sizing,
   spacing, and hover state are inherited from the theme's base .zb-ic /
   .zb-iclink rules so it lines up exactly with the search and cart icons. */
.zb-ic-user {
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111114' stroke-width='2.2'><circle cx='12' cy='8' r='3.2'/><path d='M5 20c0-3.9 3.1-7 7-7s7 3.1 7 7'/></svg>");
}

/* ---- v1.1.0: category hamburger menu replacing the shop/collections/about text nav ---- */

/* Hide the old text nav; the hamburger + panel below replace it */
.zb-hd .zb-nav {
	display: none !important;
}

/* Hamburger icon — same line-icon system as search/user/cart (20x20, inherited
   from the theme's base .zb-ic rule), drawn at the same stroke weight/color */
.zb-ic-menu {
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111114' stroke-width='2.2' stroke-linecap='round'><line x1='3' y1='6' x2='21' y2='6'/><line x1='3' y1='12' x2='21' y2='12'/><line x1='3' y1='18' x2='21' y2='18'/></svg>");
}

.zb-catmenu-wrap {
	position: relative;
	display: inline-flex;
	align-items: center;
	margin-left: 4px;
}

/* Reset the native <button> chrome (default gray background + outset border)
   so it reads as a plain icon button like the anchor-based icons; centered
   in the header row the same way as the search/account/cart icons (no extra
   offset), so all four icons sit on the same horizontal line. */
.zb-catmenu-btn {
	appearance: none;
	-webkit-appearance: none;
	background: transparent;
	border: 0;
	padding: 0;
	margin: 0;
	cursor: pointer;
}

.zb-catmenu-btn:hover,
.zb-catmenu-btn:focus-visible {
	background: transparent;
	outline: none;
}

.zb-catmenu-panel {
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	z-index: 60;
	display: none;
	flex-direction: column;
	gap: 2px;
	min-width: 210px;
	background: rgb(255, 249, 232);
	border: 2px solid rgb(17, 17, 20);
	border-radius: 14px;
	box-shadow: rgb(17, 17, 20) 6px 6px 0px 0px;
	padding: 12px 14px 14px;
}

.zb-catmenu-panel.zb-open {
	display: flex;
}

.zb-catmenu-panel a {
	display: block;
	padding: 8px 10px;
	border-radius: 10px;
	font-weight: 700;
	font-size: 15px;
	line-height: 1.2;
	color: rgb(17, 17, 20);
	text-decoration: none;
	text-transform: lowercase;
}

.zb-catmenu-panel a:hover,
.zb-catmenu-panel a:focus-visible {
	background: rgb(17, 17, 20);
	color: rgb(255, 249, 232);
	outline: none;
}

.zb-catmenu-panel .zb-catmenu-all {
	border-bottom: 1px solid rgba(17, 17, 20, 0.18);
	margin-bottom: 6px;
	padding-bottom: 10px;
}
