/* Storefront header. */
.gps-header { position: relative; z-index: 30; background: var(--gps-color-background); }
.gps-header .gps-topbar { background: var(--gps-color-primary); font-size: 12px; }
.gps-header .gps-topbar .gps-shell { min-height: 36px; gap: 20px; }
.gps-header .gps-topbar p { display: flex; align-items: center; gap: 12px; padding: 7px 0; line-height: 1.5; }
.gps-header .gps-topbar strong { font-weight: 500; }
.gps-header .gps-topbar-dot { width: 6px; height: 6px; flex-shrink: 0; border-radius: 50%; background: var(--gps-color-accent); }
.gps-header .gps-topbar-extra { padding-left: 12px; border-left: 1px solid #ffffff40; color: #ffffffc9; }
.gps-header .gps-topbar a { flex-shrink: 0; text-decoration: none; }
.gps-header .gps-topbar a span { margin-left: 5px; }
.gps-header .gps-header-row { display: grid; grid-template-columns: 220px minmax(200px, 1fr) auto; gap: clamp(24px, 4vw, 64px); min-height: 108px; padding-block: 22px; }
.gps-header .gps-logo img { display: block; width: 190px; max-width: 100%; max-height: 64px; object-fit: contain; object-position: left center; }
.gps-header .gps-search { display: flex; align-items: center; width: 100%; max-width: none; min-height: 52px; padding: 4px; border: 1px solid var(--gps-color-border); border-radius: var(--gps-control-radius); background: var(--gps-color-surface); transition: border-color .2s; }
.gps-header .gps-search:focus-within { border-color: var(--gps-color-primary); }
.gps-header .gps-search-leading { flex: 0 0 20px; height: 20px; margin-left: 12px; color: var(--gps-color-muted); }
.gps-header .gps-search input[type="search"] { min-height: 42px; padding: 10px 12px; border: 0; border-radius: 0; background: transparent; font-size: 14px; }
.gps-header .gps-search button { display: flex; align-items: center; justify-content: center; gap: 12px; flex: 0 0 auto; width: auto; min-height: 42px; padding: 0 18px; border-radius: 6px; font-size: 13px; font-weight: 700; }
.gps-header .gps-search button:hover { background: var(--gps-color-accent-hover); }
.gps-header .gps-search button svg { width: 17px; height: 17px; }
.gps-header .gps-actions { gap: 24px; }
.gps-header .gps-actions > a { display: flex; align-items: center; gap: 10px; min-height: 44px; color: var(--gps-color-primary); font-size: 13px; line-height: 1.5; font-weight: 700; }
.gps-header .gps-actions > a:hover { color: var(--gps-color-accent-hover); }
.gps-header .gps-actions svg { width: 23px; height: 23px; flex-shrink: 0; }
.gps-header .gps-actions small { display: block; color: var(--gps-color-muted); font-size: 11px; font-weight: 400; }
.gps-header .gps-cart-link { padding-left: 24px; border-left: 1px solid var(--gps-color-border); }
.gps-header .gps-cart-count { position: static; min-width: 23px; height: 23px; font-size: 11px; }
.gps-header .gps-action-mobile-label { display: none; }
.gps-header .gps-nav { background: var(--gps-color-background); border-block: 1px solid var(--gps-color-border); }
.gps-header .gps-nav .gps-shell { min-height: 58px; gap: 24px; }
.gps-header .gps-nav ul { align-items: center; gap: 32px; }
.gps-header .gps-nav ul a { display: flex; align-items: center; min-height: 58px; padding: 0; font-size: 13px; font-weight: 600; }
.gps-header .gps-nav ul a::after { bottom: -1px; }
.gps-header .gps-nav ul a:hover, .gps-header .gps-nav ul a[aria-current="page"] { color: var(--gps-color-accent-hover); }
.gps-header .gps-nav .gps-quote { display: inline-flex; align-items: center; justify-content: center; gap: 18px; min-height: 38px; padding: 8px 16px; border-radius: var(--gps-control-radius); background: var(--gps-color-primary); color: var(--gps-color-background); font-size: 12px; font-weight: 600; }
.gps-header .gps-quote svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.gps-header .gps-nav .gps-quote:hover { background: var(--gps-color-primary-dark); }
.gps-header .gps-menu-toggle { position: relative; width: 44px; height: 44px; padding: 10px; }
.gps-header .gps-menu-toggle i { transition: transform .2s, opacity .2s; }
.gps-header.gps-menu-open .gps-menu-toggle i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.gps-header.gps-menu-open .gps-menu-toggle i:nth-child(2) { opacity: 0; }
.gps-header.gps-menu-open .gps-menu-toggle i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 1100px) and (min-width: 901px) {
	.gps-header .gps-header-row { grid-template-columns: 180px minmax(200px, 1fr) auto; gap: 24px; }
	.gps-header .gps-actions { gap: 14px; }
	.gps-header .gps-cart-link { padding-left: 14px; }
	.gps-header .gps-actions small { display: none; }
}
@media (max-width: 900px) {
	.gps-header .gps-topbar-extra { display: none; }
	.gps-header .gps-header-row { grid-template-columns: minmax(0, 1fr) auto; gap: 16px; min-height: 0; padding-block: 16px; }
	.gps-header .gps-logo img { width: 160px; max-height: 48px; }
	.gps-header .gps-header-row .gps-search { grid-column: 1 / -1; grid-row: 2; margin: 0; min-height: 48px; }
	.gps-header .gps-search input[type="search"] { min-height: 38px; }
	.gps-header .gps-search button { min-height: 38px; }
	.gps-header .gps-actions { gap: 10px; margin-left: 0; }
	.gps-header .gps-actions > a { display: flex; min-width: 44px; justify-content: center; }
	.gps-header .gps-actions > a > span:not(.screen-reader-text) { display: none; }
	.gps-header .gps-actions .gps-action-mobile-label { display: block; }
	.gps-header .gps-cart-link { padding-left: 0; border: 0; }
	.gps-header .gps-cart-count { position: absolute; top: 0; right: -2px; min-width: 18px; height: 18px; font-size: 10px; }
	.gps-header .gps-nav { top: 100%; }
	.gps-header .gps-nav .gps-shell { padding-block: 8px 20px; }
	.gps-header .gps-nav ul { display: grid; gap: 0; }
	.gps-header .gps-nav ul a { min-height: 48px; font-size: 14px; }
	.gps-header .gps-nav ul a::after { display: none; }
	.gps-header .gps-nav .gps-quote { display: flex; margin-top: 16px; min-height: 44px; border: 0; }
}
@media (max-width: 480px) {
	.gps-header .gps-topbar .gps-shell { justify-content: center; min-height: 30px; }
	.gps-header .gps-topbar p { gap: 8px; font-size: 10px; }
	.gps-header .gps-topbar > .gps-shell > a { display: none; }
	.gps-header .gps-logo img { width: 136px; }
	.gps-header .gps-actions { gap: 4px; }
	.gps-header .gps-search button { gap: 8px; padding-inline: 12px; }
	.gps-header .gps-search-leading { display: none; }
}
