/* Girls Own header customizations */
.header__wrapper {
	height: auto;
	min-height: 7.65rem;
	position: relative;
}

.header__logo {
	left: 50%;
	margin: 0;
	padding-right: 0;
	position: absolute;
	transform: translateX(-50%);
	z-index: 1;
}

.header__logo-image {
	max-height: 6.15rem;
}

.header__logo-picture {
	display: block;
	opacity: 1;
	transition: opacity .55s cubic-bezier(.22, 1, .36, 1);
}

.header__logo-image--transparent {
	display: block;
	inset: 0;
	opacity: 0;
	position: absolute;
	transition:
		filter .45s cubic-bezier(.22, 1, .36, 1),
		opacity .55s cubic-bezier(.22, 1, .36, 1);
}

/* All non-home pages keep a solid header above their content */
html:not(.site-index) .header {
	background-color: #fff;
	box-shadow: 0 .125rem .5rem rgba(0, 0, 0, .12);
	color: #111;
	transition:
		background-color .25s ease,
		box-shadow .25s ease;
}

html:not(.site-index) .header__action,
html:not(.site-index) .header__logo-text,
html:not(.site-index) .header__menu-item > a {
	color: #111;
}

html:not(.site-index) .header__menu-toggle-line,
html:not(.site-index) .header__menu-toggle-line::before,
html:not(.site-index) .header__menu-toggle-line::after {
	background-color: #111;
}

/* Homepage header overlays the first banner */
/* Native sticky logic adds inline body padding; an overlay header needs none. */
html.site-index body.header-sticky {
padding-top: 0 !important;
}

.site-index .header {
	background-color: transparent;
	box-shadow: none;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	transition:
		background-color .7s cubic-bezier(.22, 1, .36, 1),
		box-shadow .7s cubic-bezier(.22, 1, .36, 1);
	z-index: 1020;
}

.site-index .header__action,
.site-index .header__logo-text,
.site-index .header__menu-item > a {
	color: #fff;
	transition: color .55s cubic-bezier(.22, 1, .36, 1);
}

.site-index .header__menu-toggle-line,
.site-index .header__menu-toggle-line::before,
.site-index .header__menu-toggle-line::after {
	background-color: #fff;
	transition: background-color .55s cubic-bezier(.22, 1, .36, 1);
}

.site-index .header:not(.header--sticky) .header__logo-picture {
	opacity: 0;
}

.site-index .header:not(.header--sticky) .header__logo-image--transparent {
	opacity: 1;
}

.site-index .header.header--sticky {
	animation: girlsown-header-reveal .78s cubic-bezier(.22, 1, .36, 1) both;
	background-color: #fffdfc;
	background-image: linear-gradient(135deg, #fffdfc 0%, #fbf3f1 100%);
	box-shadow: 0 .125rem .5rem rgba(0, 0, 0, .12);
	position: fixed;
	will-change: transform;
}

@keyframes girlsown-header-reveal {
	0% {
		background-color: rgba(255, 255, 255, 0);
		box-shadow: 0 0 0 rgba(0, 0, 0, 0);
		transform: translateY(-.625rem);
	}

	45% {
		background-color: rgba(255, 255, 255, .48);
		box-shadow: 0 .04rem .15rem rgba(0, 0, 0, .025);
		transform: translateY(-.15rem);
	}

	100% {
		background-color: #fffdfc;
		box-shadow: 0 .125rem .5rem rgba(0, 0, 0, .12);
		transform: translateY(0);
	}
}

.site-index .header.header--sticky .header__action,
.site-index .header.header--sticky .header__logo-text,
.site-index .header.header--sticky .header__menu-item > a {
	color: #111;
}

.site-index .header.header--sticky .header__menu-toggle-line,
.site-index .header.header--sticky .header__menu-toggle-line::before,
.site-index .header.header--sticky .header__menu-toggle-line::after {
	background-color: #111;
}

.site-index .header:not(.header--sticky) .header__action,
.site-index .header:not(.header--sticky) .header__menu-toggle {
	filter: drop-shadow(0 .04rem .16rem rgba(0, 0, 0, .22));
	transition:
		color .55s cubic-bezier(.22, 1, .36, 1),
		filter .45s cubic-bezier(.22, 1, .36, 1);
}

.site-index .header:not(.header--sticky) .header__logo-image--transparent {
	filter: drop-shadow(0 .04rem .16rem rgba(0, 0, 0, .22));
}

/* Preserve the mobile logo; avoid a diffuse halo on the desktop mark. */
@media (min-width: 992px) {
.site-index .header:not(.header--sticky) .header__logo-image--transparent {
filter: none;
}
}

.site-index .header:not(.header--sticky) .header__logo-text {
	text-shadow: 0 .04rem .16rem rgba(0, 0, 0, .22);
	transition:
		color .55s cubic-bezier(.22, 1, .36, 1),
		text-shadow .45s cubic-bezier(.22, 1, .36, 1);
}

@media (min-width: 992px) {
	.header__menu-item > a {
		font-family: "Questrial", sans-serif;
font-size: .775rem;
		font-weight: 400;
letter-spacing: .015em;
		line-height: 1.2;
padding: .3125rem .5rem;
		position: relative;
		text-shadow: none;
		transition:
			color .35s cubic-bezier(.22, 1, .36, 1),
			text-shadow .45s cubic-bezier(.22, 1, .36, 1),
			transform .35s cubic-bezier(.22, 1, .36, 1);
	}

	.site-index .header:not(.header--sticky) .header__menu-item > a {
		text-shadow: 0 .04rem .16rem rgba(0, 0, 0, .22);
	}

	.header__menu-item > a::after {
background-color: #b95769;
		bottom: -.45rem;
		content: "";
		height: .0625rem;
		left: 0;
		position: absolute;
		transform: scaleX(0);
		transform-origin: right center;
		transition: transform .42s cubic-bezier(.22, 1, .36, 1);
		width: 100%;
	}

	html:not(.site-index) .header .header__menu-item > a:hover,
	html:not(.site-index) .header .header__menu-item > a:focus-visible,
	.site-index .header.header--sticky .header__menu-item > a:hover,
	.site-index .header.header--sticky .header__menu-item > a:focus-visible,
	.site-index .header:not(.header--sticky):has(.header__menu-item > a:hover) .header__menu-item > a:hover,
	.site-index .header:not(.header--sticky):has(.header__menu-item > a:focus-visible) .header__menu-item > a:focus-visible {
		color: #b95769;
		transform: translateY(-.0625rem);
	}

	.header__menu-item > a:hover::after,
	.header__menu-item > a:focus-visible::after {
		transform: scaleX(1);
		transform-origin: left center;
	}

	.site-index .header:not(.header--sticky):has(.header__menu-item > a:hover),
	.site-index .header:not(.header--sticky):has(.header__menu-item > a:focus-visible) {
		background-color: #fff;
		box-shadow: 0 .125rem .5rem rgba(0, 0, 0, .12);
	}

	.site-index .header:not(.header--sticky):has(.header__menu-item > a:hover) .header__action,
	.site-index .header:not(.header--sticky):has(.header__menu-item > a:hover) .header__logo-text,
	.site-index .header:not(.header--sticky):has(.header__menu-item > a:hover) .header__menu-item > a,
	.site-index .header:not(.header--sticky):has(.header__menu-item > a:focus-visible) .header__action,
	.site-index .header:not(.header--sticky):has(.header__menu-item > a:focus-visible) .header__logo-text,
	.site-index .header:not(.header--sticky):has(.header__menu-item > a:focus-visible) .header__menu-item > a {
		color: #111;
		text-shadow: none;
	}

	.site-index .header:not(.header--sticky):has(.header__menu-item > a:hover) .header__action,
	.site-index .header:not(.header--sticky):has(.header__menu-item > a:hover) .header__menu-toggle,
	.site-index .header:not(.header--sticky):has(.header__menu-item > a:hover) .header__logo-image--transparent,
	.site-index .header:not(.header--sticky):has(.header__menu-item > a:focus-visible) .header__action,
	.site-index .header:not(.header--sticky):has(.header__menu-item > a:focus-visible) .header__menu-toggle,
	.site-index .header:not(.header--sticky):has(.header__menu-item > a:focus-visible) .header__logo-image--transparent {
		filter: none;
	}

	.site-index .header:not(.header--sticky):has(.header__menu-item > a:hover) .header__menu-toggle-line,
	.site-index .header:not(.header--sticky):has(.header__menu-item > a:hover) .header__menu-toggle-line::before,
	.site-index .header:not(.header--sticky):has(.header__menu-item > a:hover) .header__menu-toggle-line::after,
	.site-index .header:not(.header--sticky):has(.header__menu-item > a:focus-visible) .header__menu-toggle-line,
	.site-index .header:not(.header--sticky):has(.header__menu-item > a:focus-visible) .header__menu-toggle-line::before,
	.site-index .header:not(.header--sticky):has(.header__menu-item > a:focus-visible) .header__menu-toggle-line::after {
		background-color: #111;
	}

	.site-index .header:not(.header--sticky):has(.header__menu-item > a:hover) .header__logo-picture,
	.site-index .header:not(.header--sticky):has(.header__menu-item > a:focus-visible) .header__logo-picture {
		opacity: 1;
	}

	.site-index .header:not(.header--sticky):has(.header__menu-item > a:hover) .header__logo-image--transparent,
	.site-index .header:not(.header--sticky):has(.header__menu-item > a:focus-visible) .header__logo-image--transparent {
		opacity: 0;
	}
}

@media (max-width: 991.98px) {
	.header__wrapper {
		min-height: 7.15rem;
	}

	.header__actions {
		position: static;
	}

	.header__action--search {
		left: calc(.6875rem + 1.95rem + 1rem);
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
	}
}

@media (prefers-reduced-motion: reduce) {
	.site-index .header,
	.site-index .header__action,
	.site-index .header__logo-text,
	.site-index .header__menu-item > a,
	.site-index .header__menu-toggle-line,
	.site-index .header__menu-toggle-line::before,
	.site-index .header__menu-toggle-line::after,
	.header__logo-picture,
	.header__logo-image--transparent {
		transition: none;
	}

	.site-index .header.header--sticky {
		animation: none;
		will-change: auto;
	}
}

/* Desktop-only category shortcuts. Mobile keeps its separate bottom links. */
@media (min-width: 992px) {
	#header_menu .girlsown-desktop-promo {
		align-items: center;
		display: flex;
	}

	#header_menu .girlsown-desktop-promo--first {
border-left: 1px solid rgba(185, 87, 105, .45);
		margin-left: .4rem;
		padding-left: .9rem;
	}

	#header_menu .girlsown-desktop-promo > a {
		align-items: center;
		display: inline-flex;
		gap: .45rem;
		text-shadow: none;
		white-space: nowrap;
	}

	#header_menu .girlsown-desktop-promo--new > a {
		color: #1f2527;
	}

	/* Preserve contrast over the homepage hero until its header becomes light. */
	.site-index .header:not(.header--sticky) #header_menu .girlsown-desktop-promo--new > a {
		color: #fff;
	}

	.site-index .header:not(.header--sticky):has(.header__menu-item > a:is(:hover, :focus-visible)) #header_menu .girlsown-desktop-promo--new > a {
		color: #1f2527;
	}

	#header_menu .girlsown-desktop-promo--new > a::before {
background: #b95769;
		border-radius: 50%;
		content: "";
		flex: 0 0 .5rem;
		height: .5rem;
		width: .5rem;
	}

	#header_menu .girlsown-desktop-promo--sale > a {
		background: #fbf0f2;
		border-radius: .5rem;
		color: #b95769;
		padding: .5rem .7rem;
	}

	#header_menu .girlsown-desktop-promo--sale > a:hover,
	#header_menu .girlsown-desktop-promo--sale > a:focus-visible {
		background: #f5dfe4;
		color: #a8475a;
		transform: none;
	}

	#header_menu .girlsown-desktop-promo--sale > a::after {
		display: none;
	}

	#header_menu .girlsown-desktop-promo > a:focus-visible {
outline: 2px solid #b95769;
		outline-offset: 4px;
	}

	/* Visual category dropdown: reuse the mobile menu imagery at desktop scale. */
	.header__menu-content--dropdown .menu-dropdown {
		background: #fffdfc !important;
		border: 1px solid rgba(185, 87, 105, .2);
		border-top: 2px solid #b95769;
		box-shadow: 0 .9rem 2rem rgba(31, 37, 39, .12);
		box-sizing: border-box;
		display: grid !important;
		gap: .25rem;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		padding: .65rem !important;
		width: min(35rem, calc(100vw - 2.25rem)) !important;
	}

	.header__menu-content--dropdown .menu-dropdown__item {
		border: 0 !important;
		min-width: 0;
	}

	.header__menu-content--dropdown .menu-dropdown__link {
		align-items: center;
		background: transparent !important;
		color: #1f2527 !important;
		display: flex !important;
		flex-direction: column;
		font-family: "Questrial", sans-serif;
		font-size: .95rem !important;
		gap: .55rem;
		justify-content: center;
		letter-spacing: .025em;
		line-height: 1.2;
		min-height: 10.25rem;
		padding: .75rem .65rem !important;
		text-align: center;
		transition:
			background-color .2s ease,
			color .2s ease,
			transform .2s ease;
	}

	.header__menu-content--dropdown .menu-dropdown__link:hover,
	.header__menu-content--dropdown .menu-dropdown__link:focus-visible {
		background: #fbf0f2 !important;
		color: #a8475a !important;
		transform: translateY(-.125rem);
	}

	.header__menu-content--dropdown .menu-dropdown__item--active > .menu-dropdown__link,
	.header__menu-content--dropdown .menu-dropdown__item--active > .menu-dropdown__link:hover,
	.header__menu-content--dropdown .menu-dropdown__item--active > .menu-dropdown__link:focus-visible {
		background: #f5dfe4 !important;
		box-shadow: inset .1875rem 0 0 #b95769;
		color: #923e50 !important;
		text-decoration: none !important;
		text-decoration-line: none !important;
	}

	.header__menu-content--dropdown .menu-dropdown__image {
		background: #f7e5e1;
		color: #b95769;
		display: grid;
		flex: 0 0 7rem;
		font-family: "Questrial", sans-serif;
		font-size: 1.5rem;
		height: 7rem !important;
		line-height: 1;
		object-fit: cover !important;
		place-items: center;
		width: 7rem !important;
	}

	.header__menu-content--dropdown .menu-dropdown__label {
		color: currentColor;
		display: block;
		font-family: "DM Sans", sans-serif;
		font-size: .82rem;
		font-weight: 600;
		letter-spacing: .075em;
		line-height: 1.15;
		min-width: 0;
		order: -1;
		text-transform: uppercase;
	}
}

@media (min-width: 75rem) {
	.header__menu-content--dropdown .menu-dropdown {
		grid-template-columns: repeat(auto-fit, minmax(8.5rem, 1fr));
		width: min(61rem, calc(100vw - 2.25rem)) !important;
	}
}