.c9-top-bar,
.c9-site-header,
.c9-site-header * {
	box-sizing: border-box;
}

.c9-top-bar {
	position: relative;
	max-width: 100%;
	padding: 8px 48px;
	overflow-wrap: anywhere;
	background: var(--c9-announcement-bg, #19171d);
	color: var(--c9-announcement-color, #fff);
	font-size: 0.78rem;
	text-align: center;
}

.c9-top-bar a {
	color: inherit;
}

.c9-top-bar button {
	position: absolute;
	top: 50%;
	right: 16px;
	min-width: 32px;
	min-height: 32px;
	padding: 0;
	transform: translateY(-50%);
	border: 0;
	background: transparent;
	color: inherit;
	font-size: 1.25rem;
	cursor: pointer;
}

.c9-site-header {
	position: relative;
	z-index: 50;
	max-width: 100%;
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid #e6dfe3;
	backdrop-filter: blur(16px);
}

.c9-site-header.is-sticky {
	position: sticky;
	top: 0;
}

.admin-bar .c9-site-header.is-sticky {
	top: 32px;
}

.c9-header-inner {
	margin-inline: auto;
	min-width: 0;
	min-height: 78px;
	display: grid;
	grid-template-columns: minmax(0, auto) minmax(0, 1fr) minmax(0, auto);
	align-items: center;
	gap: 36px;
}

.c9-logo {
	min-width: 0;
	max-width: 100%;
	overflow: hidden;
	color: #19171d;
	font-size: 1.32rem;
	font-weight: 850;
	letter-spacing: 0.12em;
	text-decoration: none;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.c9-logo img {
	display: block;
	max-width: min(180px, 100%);
	max-height: 56px;
	width: auto;
	height: auto;
}

.c9-logo-mobile {
	display: none !important;
}

.c9-primary-nav {
	min-width: 0;
}

.c9-primary-nav ul,
.c9-mobile-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.c9-primary-nav > ul {
	display: flex;
	justify-content: center;
	gap: 28px;
}

.c9-primary-nav li {
	position: relative;
}

.c9-primary-nav a {
	display: block;
	padding: 10px 0;
	color: #19171d;
	font-weight: 650;
	text-decoration: none;
}

.c9-primary-nav .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 210px;
	padding: 10px 16px;
	background: #fff;
	border: 1px solid #e6dfe3;
	border-radius: 12px;
	box-shadow: 0 18px 40px rgba(33, 22, 29, 0.12);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}

.c9-primary-nav li:hover > .sub-menu,
.c9-primary-nav li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: none;
}

.c9-header-tools {
	min-width: 0;
	display: flex;
	align-items: center;
	gap: 15px;
}

.c9-header-tools a,
.c9-header-tools button {
	min-width: 40px;
	min-height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	background: transparent;
	color: #19171d;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
}

.c9-cart-count {
	min-width: 20px;
	height: 20px;
	display: grid;
	place-items: center;
	margin-left: 5px;
	background: #843a60;
	color: #fff;
	border-radius: 50%;
	font-size: 0.7rem;
}

.c9-menu-toggle {
	display: none;
}

.c9-header-search {
	max-width: 100%;
	padding: 16px max(24px, calc((100% - 1180px) / 2));
	background: #f7f4f6;
	border-top: 1px solid #e6dfe3;
}

.c9-header-search[hidden],
.c9-mobile-nav[hidden],
.c9-mega-panel[hidden] {
	display: none !important;
}

.c9-header-search form {
	max-width: 720px;
	display: flex;
	margin: auto;
}

.c9-header-search input[type="search"] {
	min-width: 0;
	width: 100%;
	min-height: 48px;
	padding: 0 16px;
	border: 1px solid #cfc5cb;
	border-radius: 999px 0 0 999px;
}

.c9-header-search button {
	flex: 0 0 auto;
	padding: 0 22px;
	border: 0;
	border-radius: 0 999px 999px 0;
	background: #843a60;
	color: #fff;
}

.c9-mobile-nav {
	display: none;
}

.c9-header-dark {
	background: #19171d;
	color: #fff;
}

.c9-header-accent {
	background: #843a60;
	color: #fff;
}

.c9-header-dark .c9-logo,
.c9-header-dark .c9-primary-nav a,
.c9-header-dark .c9-header-tools a,
.c9-header-dark .c9-header-tools button,
.c9-header-accent .c9-logo,
.c9-header-accent .c9-primary-nav a,
.c9-header-accent .c9-header-tools a,
.c9-header-accent .c9-header-tools button {
	color: #fff;
}

.c9-site-header a:focus-visible,
.c9-site-header button:focus-visible,
.c9-top-bar a:focus-visible,
.c9-top-bar button:focus-visible {
	outline: 3px solid #c76d9b;
	outline-offset: 3px;
}

.c9-language-switch {
	display: flex;
	gap: 3px;
}

.c9-language-switch a {
	min-width: 28px !important;
	min-height: 28px !important;
	padding: 4px;
	border-radius: 6px;
	font-size: 0.68rem;
}

.c9-language-switch a[aria-current="page"] {
	background: #843a60;
	color: #fff;
}

.c9-mega-panel {
	position: absolute;
	left: 50%;
	z-index: 60;
	width: min(1120px, calc(100% - 40px));
	max-width: 100%;
	padding: 28px;
	transform: translateX(-50%);
	background: #fff;
	color: #19171d;
	border: 1px solid #e6dfe3;
	border-radius: 0 0 16px 16px;
	box-shadow: 0 20px 44px rgba(33, 22, 29, 0.14);
}

.c9-mega-columns {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 28px;
}

.c9-mega-column h3 {
	margin: 0 0 12px;
	font-size: 0.9rem;
}

.c9-mega-column ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.c9-mega-column a {
	display: block;
	padding: 6px 0;
	color: inherit;
	text-decoration: none;
}

.c9-mega-cta {
	display: inline-flex;
	margin-top: 18px;
	font-weight: 700;
}

.c9-mega-media {
	margin: 0;
}

.c9-mega-image {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: 12px;
}

.c9-submenu-toggle {
	position: absolute;
	top: 2px;
	right: 0;
	min-width: 40px;
	min-height: 40px;
	border: 0;
	background: transparent;
	font-size: 1.2rem;
	cursor: pointer;
}

.c9-mobile-nav .menu-item-has-children {
	position: relative;
}

.c9-mobile-nav .sub-menu[hidden] {
	display: none !important;
}

body.c9-menu-open {
	overflow: hidden;
}

@media (max-width: 900px) {
	.c9-header-inner {
		grid-template-columns: minmax(34px, auto) minmax(0, 1fr) minmax(0, auto);
		gap: 18px;
	}

	.c9-primary-nav {
		display: none !important;
	}

	.c9-menu-toggle {
		min-width: 34px;
		min-height: 40px;
		display: inline-flex;
		align-items: center;
		gap: 8px;
		padding: 0;
		border: 0;
		background: transparent;
		color: inherit;
		font-weight: 750;
		cursor: pointer;
	}

	.c9-logo {
		justify-self: center;
	}

	.c9-logo-desktop {
		display: none !important;
	}

	.c9-logo-mobile {
		display: block !important;
	}

	.c9-header-tools > .c9-language-switch {
		display: none;
	}

	.c9-mobile-nav {
		position: absolute;
		top: 100%;
		inset-inline: 0;
		z-index: 70;
		width: 100%;
		max-width: 100%;
		max-height: calc(100dvh - 66px);
		display: block;
		padding: 20px max(20px, calc((100% - 760px) / 2));
		overflow-x: hidden;
		overflow-y: auto;
		background: #fff;
		color: #19171d;
		border-top: 1px solid #e6dfe3;
		box-shadow: 0 18px 36px rgba(33, 22, 29, 0.14);
		overscroll-behavior: contain;
	}

	.c9-mobile-nav a {
		display: block;
		padding: 12px 44px 12px 4px;
		overflow-wrap: anywhere;
		color: inherit;
		text-decoration: none;
		border-bottom: 1px solid #eee7eb;
	}

	.c9-mobile-nav-close {
		display: block;
		margin: 0 0 12px auto;
		padding: 8px 12px;
		border: 1px solid #cfc5cb;
		border-radius: 8px;
		background: #fff;
		color: #19171d;
		font-weight: 700;
		cursor: pointer;
	}

	.c9-mobile-nav .sub-menu {
		padding-left: 18px;
	}

	.c9-mobile-links {
		margin-top: 12px;
	}

	.c9-mobile-links .c9-language-switch {
		display: flex;
		margin-top: 14px;
	}

	.c9-mega-panel,
	.c9-mega-media {
		display: none !important;
	}

	.c9-header-tools a {
		font-size: 0.82rem;
	}
}

@media (max-width: 600px) {
	.c9-top-bar {
		padding-right: 44px;
		padding-left: 16px;
	}

	.c9-header-inner {
		grid-template-columns: 34px minmax(74px, 1fr) auto;
		min-height: 66px;
		gap: 6px;
	}

	.c9-menu-toggle span:last-child {
		display: none;
	}

	.c9-logo {
		min-width: max-content;
		max-width: none;
		overflow: visible;
		font-size: 0.9rem;
		letter-spacing: 0.08em;
		text-overflow: clip;
	}

	.c9-logo img {
		max-width: 96px;
		max-height: 44px;
	}

	.c9-header-tools {
		gap: 0;
	}

	.c9-header-tools a,
	.c9-header-tools button {
		min-width: 32px;
		padding: 0 2px;
	}

	.c9-cart-label {
		font-size: 0.72rem;
	}

	.admin-bar .c9-site-header.is-sticky {
		top: 46px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.c9-site-header *,
	.c9-top-bar * {
		scroll-behavior: auto !important;
		transition: none !important;
	}
}
