/* ── Her Agency — WooCommerce nav (dark, standalone) ─────────────────────── */

/* ── Reset body top padding — our nav is fixed ───────────────────────────── */
.her-wc-nav ~ *,
body > .her-wc-nav + * {
	/* no top offset needed; nav is sticky not fixed */
}

/* ── Nav bar ─────────────────────────────────────────────────────────────── */

.her-wc-nav {
	background: #2b2b2b;
	position: sticky;
	top: 0;
	z-index: 9999;
	width: 100%;
}

.her-wc-nav__inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 32px;
	height: 68px;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 24px;
}

/* ── Logo ────────────────────────────────────────────────────────────────── */

.her-wc-nav__logo {
	display: flex;
	align-items: center;
	text-decoration: none;
	flex-shrink: 0;
}

.her-wc-nav__logo img {
	height: 36px !important;
	width: auto;
	display: block;
	/* Invert dark logo to white on dark background */
	filter: brightness(1) invert(1);
}

.her-wc-nav__logo-text {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.3rem;
	font-weight: 400;
	letter-spacing: 0.2em;
	color: #fff;
	text-transform: uppercase;
}

/* ── Menu ────────────────────────────────────────────────────────────────── */

.her-wc-nav__menu {
	display: flex;
	justify-content: center;
}

.her-wc-nav__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 32px;
}

.her-wc-nav__list li {
	margin: 0;
	padding: 0;
}

.her-wc-nav__list a {
	font-family: 'Montserrat', sans-serif;
	font-size: 0.7rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.85);
	text-decoration: none;
	transition: color 0.15s;
	white-space: nowrap;
}

.her-wc-nav__list a:hover,
.her-wc-nav__list .current-menu-item > a,
.her-wc-nav__list .current-page-ancestor > a {
	color: #fff;
}

/* ── Right: cart + hamburger ─────────────────────────────────────────────── */

.her-wc-nav__right {
	display: flex;
	align-items: center;
	gap: 20px;
	justify-content: flex-end;
}

.her-wc-nav__cart {
	position: relative;
	display: flex;
	align-items: center;
	color: rgba(255,255,255,0.85);
	text-decoration: none;
	transition: color 0.15s;
}

.her-wc-nav__cart:hover {
	color: #fff;
}

.her-wc-nav__cart-count {
	position: absolute;
	top: -7px;
	right: -9px;
	background: #8b7355;
	color: #fff;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.6rem;
	font-weight: 700;
	width: 17px;
	height: 17px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

/* ── Hamburger (mobile only) ─────────────────────────────────────────────── */

.her-wc-nav__hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
}

.her-wc-nav__hamburger span {
	display: block;
	width: 22px;
	height: 1.5px;
	background: rgba(255,255,255,0.85);
	transition: background 0.15s;
}

.her-wc-nav__hamburger:hover span {
	background: #fff;
}

/* ── Mobile drawer ───────────────────────────────────────────────────────── */

.her-wc-nav__drawer {
	background: #222;
	padding: 16px 24px 24px;
	border-top: 1px solid rgba(255,255,255,0.08);
}

.her-wc-nav__drawer-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.her-wc-nav__drawer-list li {
	border-bottom: 1px solid rgba(255,255,255,0.07);
}

.her-wc-nav__drawer-list a {
	display: block;
	padding: 13px 0;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.72rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.8);
	text-decoration: none;
}

.her-wc-nav__drawer-list a:hover {
	color: #fff;
}

/* ── Nav mobile breakpoint ───────────────────────────────────────────────── */

@media (max-width: 768px) {
	.her-wc-nav__inner {
		padding: 0 16px;
		grid-template-columns: auto 1fr auto;
	}

	.her-wc-nav__menu {
		display: none;
	}

	.her-wc-nav__hamburger {
		display: flex;
	}
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER — dark, matching Showit footer exactly
   ═══════════════════════════════════════════════════════════════════════════ */

.her-wc-footer {
	background: #2b2b2b;
	font-family: 'Public Sans', sans-serif;
	color: rgba(255,255,255,0.75);
}

/* ── Large headline ──────────────────────────────────────────────────────── */

.her-wc-footer__hero {
	padding: 56px 0 48px;
	text-align: center;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}

.her-wc-footer__hero-inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 32px;
}

.her-wc-footer__hero-headline {
	margin: 0;
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(2.5rem, 6vw, 5rem);
	font-weight: 400;
	color: #fff;
	letter-spacing: 0.02em;
	line-height: 1.1;
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

.her-wc-footer__hero-headline em {
	font-style: italic;
	color: rgba(255,255,255,0.65);
	font-size: 0.8em;
}

/* ── 4-column mid ────────────────────────────────────────────────────────── */

.her-wc-footer__mid {
	border-bottom: 1px solid rgba(255,255,255,0.1);
	padding: 48px 0;
}

.her-wc-footer__mid-inner {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 48px;
	display: grid;
	grid-template-columns: .7fr .7fr 1.2fr 1.7fr;
	gap: 0 40px;
	align-items: center;
}

/* Nav columns */
.her-wc-footer__nav {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.her-wc-footer__nav a {
	font-family: 'Montserrat', sans-serif;
	font-size: 0.7rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.65);
	text-decoration: none;
	transition: color 0.15s;
}

.her-wc-footer__nav a:hover {
	color: #fff;
}

/* Center monogram */
.her-wc-footer__monogram {
	display: flex;
	justify-content: center;
	align-items: center;
}

.her-wc-footer__monogram img {
	width: 150px;
	height: auto;
	display: block;
	opacity: 0.85;
}

/* Tagline + socials column */
.her-wc-footer__tagline-col {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.her-wc-footer__tagline {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.15rem;
	font-style: italic;
	color: rgba(255,255,255,0.75);
	line-height: 1.5;
	margin: 0;
}

.her-wc-footer__social {
	display: flex;
	gap: 20px;
}

.her-wc-footer__social a {
	color: rgba(255,255,255,0.65);
	display: flex;
	align-items: center;
	text-decoration: none;
	transition: color 0.15s;
}

.her-wc-footer__social a:hover {
	color: #fff;
}

/* ── Instagram image grid ─────────────────────────────────────────────────── */

.her-wc-footer__ig {
	display: grid;
	max-width: 1200px;
	margin: 0 auto;
	grid-template-columns: repeat(var(--photo-count, 5), 1fr);
	gap: 10px;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}

.her-wc-footer__ig-item {
	display: block;
	position: relative;
	aspect-ratio: 1 / 1;
	overflow: hidden;
}

.her-wc-footer__ig-item img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100% !important;
	object-fit: cover;
	display: block;
	transition: transform 0.35s;
	filter: grayscale(15%);
}

.her-wc-footer__ig-item:hover img {
	transform: scale(1.05);
	filter: grayscale(0%);
}

/* ── Bottom bar ──────────────────────────────────────────────────────────── */

.her-wc-footer__bottom {
	padding: 18px 0;
}

.her-wc-footer__bottom-inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 32px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.her-wc-footer__copy {
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.67rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.4);
}

.her-wc-footer__legal {
	font-family: 'Montserrat', sans-serif;
	font-size: 0.67rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.4);
	text-decoration: none;
	transition: color 0.15s;
}

.her-wc-footer__legal:hover {
	color: rgba(255,255,255,0.75);
}

.her-wc-footer__totop {
	display: flex;
	align-items: center;
	gap: 6px;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.67rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.4);
	text-decoration: none;
	transition: color 0.15s;
}

.her-wc-footer__totop:hover {
	color: rgba(255,255,255,0.75);
}

/* ── Footer mobile ───────────────────────────────────────────────────────── */

@media (max-width: 768px) {
	.her-wc-footer__hero-inner,
	.her-wc-footer__bottom-inner {
		padding: 0 16px;
	}

	.her-wc-footer__mid-inner {
		padding: 0 16px;
		grid-template-columns: 1fr 1fr;
		grid-template-areas:
			"navl navr"
			"mono mono"
			"tag  tag";
		gap: 24px;
	}

	.her-wc-footer__hero {
		padding: 36px 0 28px;
	}

	.her-wc-footer__nav--left  { grid-area: navl; }
	.her-wc-footer__nav--right { grid-area: navr; }
	.her-wc-footer__monogram   { grid-area: mono; }
	.her-wc-footer__tagline-col { grid-area: tag; }

	.her-wc-footer__ig {
		grid-template-columns: repeat(3, 1fr);
	}

	.her-wc-footer__bottom-inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}
}
