/**
 * Header coherence - theme-wide, additive
 *
 * Two small touches that tie the sticky glass header to the gold accent used by
 * the V4 print page and the realigned prints filter. No FSE block or markup
 * change - pure CSS over the existing header.
 *
 *   1. Gold current-section nav (the active top-level item renders in Aurora Gold).
 *   2. Signed-in gold account avatar (logged-in only, via the WP body.logged-in class).
 *
 * The site header is dark (#0F0F0F) in BOTH Night and Day Glass, so gold reads in
 * both; the light theme forces nav colours with !important, hence the !important
 * overrides below. Revert = remove this file + its single enqueue line.
 * Hyphens only - no em or en dashes.
 */

/* ===================================================================
 * 1. Gold current-section nav
 * =================================================================== */
.site-header .current-menu-item .wp-block-navigation-item__content,
.site-header .current_page_item .wp-block-navigation-item__content,
.site-header .current-menu-ancestor .wp-block-navigation-item__content,
[data-theme="light"] .site-header .current-menu-item .wp-block-navigation-item__content,
[data-theme="light"] .site-header .current_page_item .wp-block-navigation-item__content,
[data-theme="light"] .site-header .current-menu-ancestor .wp-block-navigation-item__content {
	color: var(--wp--preset--color--gold, #d4af37) !important;
}

/* No underline on the active item - gold text alone marks the section (the Golden). */
.site-header .current-menu-item .wp-block-navigation-item__content::after,
.site-header .current_page_item .wp-block-navigation-item__content::after,
.site-header .current-menu-ancestor .wp-block-navigation-item__content::after {
	display: none !important;
}

/* Nav stays centred - matches the 3-column header in main.css (logo | nav | actions).
   A prior pass forced this to start; reverted so the menu never shifts between the
   homepage hero nav and the standard header. */

/* ===================================================================
 * 2. Signed-in gold account avatar
 *    Logged out keeps the plain icon (no body.logged-in class).
 * =================================================================== */
body.logged-in .header-actions .wc-block-customer-account {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 9999px;
	background: color-mix(in srgb, var(--wp--preset--color--gold, #d4af37) 15%, transparent);
	border: 1px solid color-mix(in srgb, var(--wp--preset--color--gold, #d4af37) 34%, transparent);
	transition: background 150ms ease;
}

body.logged-in .header-actions .wc-block-customer-account:hover {
	background: color-mix(in srgb, var(--wp--preset--color--gold, #d4af37) 24%, transparent);
}

body.logged-in .header-actions .wc-block-customer-account__account-icon {
	color: var(--wp--preset--color--gold, #d4af37) !important;
	width: 18px !important;
	height: 18px !important;
}
