/**
 * GothamPeps :: Core stylesheet
 *
 * Structure
 *   1.  Design tokens (custom properties -- overridden live by Theme Options)
 *   2.  Reset & base elements
 *   3.  Typography
 *   4.  Layout primitives
 *   5.  Buttons, forms, tables
 *   6.  Top bar
 *   7.  Header / navigation
 *   8.  Mobile drawer
 *   9.  Hero
 *   10. Category grid
 *   11. Split / about feature block
 *   12. Generic sections (features, testimonials, FAQ, newsletter, CTA)
 *   13. Blog, archive, comments
 *   14. Widgets & sidebar
 *   15. Footer
 *   16. Mobile bottom navigation
 *   17. Off-canvas cart, search overlay, back-to-top
 *   18. Accessibility & utilities
 *   19. Print
 *
 * Every colour, radius and font is a custom property so the Theme Options
 * panel can repaint the whole theme without touching this file.
 */

/* ==========================================================================
   1. Design tokens
   ========================================================================== */

:root {
	/* Brand palette -- matched to gothampeps.com. */
	--gp-black: #000000;          /* header, cards, footer */
	--gp-ink: #0a0a0a;            /* page canvas */
	--gp-ink-2: #1a1a1a;          /* side rail, raised panels */
	--gp-primary: #3986f5;        /* electric blue: top bar, links, borders, prices */
	--gp-primary-hover: #1c61e7;
	--gp-accent: #24cfef;         /* cyan: hero headline, primary buttons */
	--gp-accent-hover: #12b6d6;
	--gp-navy: #150e77;           /* add-to-cart */
	--gp-navy-hover: #2418a8;
	--gp-pill-bg: #e1ebff;        /* "More products" pill */
	--gp-pill-text: #1c61e7;
	--gp-hot: #e53935;            /* "Hot" badge */
	--gp-surface: #111111;        /* inputs, panels */
	--gp-surface-2: #1f1f1f;      /* hairlines, subtle fills */
	--gp-card: #000000;
	--gp-footer-bg: #000000;

	/* Derived / semantic */
	--gp-body-bg: var(--gp-ink);
	--gp-body-color: rgba(255, 255, 255, .8);
	--gp-heading-color: #ffffff;
	--gp-muted: #9aa3b2;
	--gp-muted-light: #6b7382;
	--gp-border: rgba(255, 255, 255, .1);
	--gp-border-blue: rgba(57, 134, 245, .55);
	--gp-white: #ffffff;

	/* Status */
	--gp-success: #2f7a4d;
	--gp-error: #b3261e;
	--gp-warning: #b7791f;
	--gp-info: #2b6cb0;

	/* Typography */
	--gp-font-sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--gp-font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	--gp-font-body: var(--gp-font-sans);
	--gp-font-heading: var(--gp-font-serif);
	--gp-body-size: 16px;
	--gp-body-weight: 400;
	--gp-body-line: 1.7;
	--gp-heading-weight: 500;
	--gp-heading-line: 1.15;

	/* Rhythm */
	--gp-container: 1600px;
	--gp-content-width: 820px;
	--gp-gutter: 1rem;
	--gp-section-y: 3rem;
	--gp-btn-text: #ffffff;
	--gp-radius: 2px;
	--gp-radius-lg: 4px;
	--gp-radius-pill: 999px;

	/* Elevation */
	--gp-shadow-sm: 0 1px 2px rgba(0, 0, 0, .06);
	--gp-shadow: 0 10px 30px -10px rgba(0, 0, 0, .1);
	--gp-shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, .25);
	--gp-shadow-nav: 0 -5px 15px -5px rgba(0, 0, 0, .1);

	/* Motion */
	--gp-ease: cubic-bezier(.4, 0, .2, 1);
	--gp-speed: .3s;

	/* Layering -- single source of truth, keeps us out of z-index wars. */
	--gp-z-sticky: 40;
	--gp-z-topbar: 45;
	--gp-z-mobilenav: 50;
	/*
	 * The backdrop must sit BELOW the panels it dims. With the overlay above
	 * the drawer, opening the menu covered the drawer with the dark layer and
	 * nothing inside it could be clicked.
	 */
	--gp-z-overlay: 85;
	--gp-z-drawer: 90;
	--gp-z-modal: 100;

	/* Chrome heights -- JS keeps these in sync for scroll offsets. */
	--gp-header-h: 72px;
	--gp-mobilenav-h: 64px;
	--gp-admin-bar: 0px;
}

@media (min-width: 640px) {
	:root { --gp-gutter: 2rem; --gp-section-y: 4rem; }
}

@media (min-width: 1024px) {
	:root { --gp-section-y: 6rem; }
}

/* ==========================================================================
   2. Reset & base
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }

html {
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: transparent;
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--gp-header-h) + var(--gp-admin-bar) + 16px);
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
		scroll-behavior: auto !important;
	}
}

body {
	margin: 0;
	background-color: var(--gp-body-bg);
	color: var(--gp-body-color);
	font-family: var(--gp-font-body);
	font-size: var(--gp-body-size);
	font-weight: var(--gp-body-weight);
	line-height: var(--gp-body-line);
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* The fixed bottom bar would otherwise cover the last slice of the page. */
body.gp-has-mobile-nav {
	padding-bottom: calc(var(--gp-mobilenav-h) + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 768px) {
	body.gp-has-mobile-nav { padding-bottom: 0; }
}

body.gp-no-scroll { overflow: hidden; }

img, svg, video, canvas, iframe, embed, object {
	display: block;
	max-width: 100%;
}

img, video { height: auto; }

svg { fill: currentColor; }

/* Icons in this theme are stroked, not filled -- opt out of the rule above. */
svg[stroke] { fill: none; }

a {
	color: var(--gp-primary);
	text-decoration: none;
	transition: color var(--gp-speed) var(--gp-ease);
}

a:hover { color: var(--gp-primary-hover); }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
	outline: 2px solid var(--gp-primary);
	outline-offset: 2px;
	border-radius: var(--gp-radius);
}

hr {
	border: 0;
	border-top: 1px solid var(--gp-border);
	margin: 2rem 0;
}

::selection {
	background: var(--gp-primary);
	color: var(--gp-white);
}

/* ==========================================================================
   3. Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
	margin: 0 0 .75em;
	color: var(--gp-heading-color);
	font-family: var(--gp-font-heading);
	font-weight: var(--gp-heading-weight);
	line-height: var(--gp-heading-line);
}

h1 { font-size: clamp(2.25rem, 1.5rem + 3.2vw, 4.375rem); }
h2 { font-size: clamp(1.75rem, 1.25rem + 2.2vw, 3rem); }
h3 { font-size: clamp(1.375rem, 1.1rem + 1.1vw, 1.875rem); }
h4 { font-size: clamp(1.125rem, 1rem + .5vw, 1.375rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p { margin: 0 0 1.25em; }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0 0 1.25em; padding-left: 1.25em; }
li > ul, li > ol { margin-bottom: 0; }

blockquote {
	margin: 2rem 0;
	padding: 1rem 0 1rem 1.5rem;
	border-left: 3px solid var(--gp-primary);
	color: var(--gp-heading-color);
	font-family: var(--gp-font-heading);
	font-size: 1.25rem;
	font-style: italic;
}

blockquote cite {
	display: block;
	margin-top: .75rem;
	color: var(--gp-muted);
	font-family: var(--gp-font-body);
	font-size: .8125rem;
	font-style: normal;
	letter-spacing: .1em;
	text-transform: uppercase;
}

code, kbd, pre, samp {
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	font-size: .9em;
}

code {
	padding: .15em .4em;
	background: var(--gp-surface-2);
	border-radius: var(--gp-radius);
}

pre {
	overflow-x: auto;
	margin: 0 0 1.25em;
	padding: 1.25rem;
	background: var(--gp-black);
	color: var(--gp-white);
	border-radius: var(--gp-radius-lg);
}

pre code { background: none; padding: 0; color: inherit; }

figure { margin: 0 0 1.5em; }

figcaption {
	margin-top: .5rem;
	color: var(--gp-muted);
	font-size: .8125rem;
	text-align: center;
}

/* Shared editorial accents ------------------------------------------------ */

.gp-eyebrow {
	display: block;
	margin-bottom: .5rem;
	color: var(--gp-primary);
	font-family: var(--gp-font-body);
	font-size: .625rem;
	font-weight: 600;
	letter-spacing: .2em;
	text-transform: uppercase;
}

@media (min-width: 768px) {
	.gp-eyebrow { font-size: .75rem; margin-bottom: .75rem; }
}

.gp-title { margin: 0; font-family: var(--gp-font-heading); }

.gp-subtitle {
	max-width: 36rem;
	color: var(--gp-muted);
	font-weight: 300;
	font-size: .9375rem;
}

.gp-monogram {
	display: inline-block;
	color: var(--gp-primary);
	font-family: var(--gp-font-heading);
	line-height: 1;
}

/* ==========================================================================
   4. Layout primitives
   ========================================================================== */

.gp-container {
	width: 100%;
	max-width: var(--gp-container);
	margin-inline: auto;
	padding-inline: var(--gp-gutter);
}

.gp-container--narrow { max-width: 1200px; }
.gp-container--content { max-width: var(--gp-content-width); }

.gp-section { padding-block: var(--gp-section-y); }
.gp-section--flush-top { padding-top: 0; }
.gp-section--flush-bottom { padding-bottom: 0; }

.gp-site { display: flex; flex-direction: column; min-height: 100vh; }
.gp-site-content { flex: 1 0 auto; }

/* Content + sidebar shell, used by blog/archive/page/shop. */
.gp-layout {
	display: grid;
	gap: 2.5rem;
	grid-template-columns: minmax(0, 1fr);
	padding-block: var(--gp-section-y);
}

@media (min-width: 1024px) {
	.gp-layout--sidebar-right { grid-template-columns: minmax(0, 1fr) 320px; }
	.gp-layout--sidebar-left  { grid-template-columns: 320px minmax(0, 1fr); }
	.gp-layout--sidebar-left .gp-layout__main { order: 2; }
	.gp-layout--sidebar-left .gp-layout__aside { order: 1; }
	.gp-layout { gap: 3.5rem; }
}

.gp-layout__main { min-width: 0; }

/*
 * Page builder layouts supply their own section padding, so the wrapper drops
 * its own and the content starts directly under the header.
 */
.gp-layout--flush { padding-block: 0; }

/* Flexible grid used by category cards, posts, products, features. */
.gp-grid { display: grid; gap: .75rem; }

@media (min-width: 640px) { .gp-grid { gap: 1rem; } }
@media (min-width: 768px) { .gp-grid { gap: 1.5rem; } }

.gp-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.gp-grid--auto { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }

@media (min-width: 640px) {
	.gp-grid--sm-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.gp-grid--sm-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 768px) {
	.gp-grid--md-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.gp-grid--md-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.gp-grid--md-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
	.gp-grid--lg-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.gp-grid--lg-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
	.gp-grid--lg-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
	.gp-grid--lg-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
	.gp-grid--lg-7 { grid-template-columns: repeat(7, minmax(0, 1fr)); }
}

/* Section header: eyebrow + title on the left, a link on the right. */
.gp-section-head {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 2rem;
}

@media (min-width: 640px) {
	.gp-section-head {
		flex-direction: row;
		align-items: flex-end;
		justify-content: space-between;
		margin-bottom: 2.5rem;
	}
}

.gp-section-head--center {
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.gp-section-head__link {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	color: var(--gp-heading-color);
	font-size: .75rem;
	font-weight: 600;
	letter-spacing: .05em;
	text-transform: uppercase;
	white-space: nowrap;
}

.gp-section-head__link:hover { color: var(--gp-primary); }
.gp-section-head__link svg { width: .875rem; height: .875rem; }

@media (min-width: 768px) {
	.gp-section-head__link { font-size: .875rem; }
	.gp-section-head__link svg { width: 1rem; height: 1rem; }
}

/* ==========================================================================
   5. Buttons, forms, tables
   ========================================================================== */

.gp-btn,
.gp-content .wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .75rem;
	padding: .75rem 1.5rem;
	border: 1px solid transparent;
	border-radius: var(--gp-radius);
	background: var(--gp-primary);
	color: var(--gp-btn-text);
	font-family: var(--gp-font-body);
	font-size: .75rem;
	font-weight: 600;
	letter-spacing: .08em;
	line-height: 1.2;
	text-transform: uppercase;
	text-align: center;
	cursor: pointer;
	transition: background-color var(--gp-speed) var(--gp-ease),
	            color var(--gp-speed) var(--gp-ease),
	            border-color var(--gp-speed) var(--gp-ease),
	            transform var(--gp-speed) var(--gp-ease);
}

.gp-btn:hover {
	background: var(--gp-primary-hover);
	color: var(--gp-btn-text);
}

.gp-btn:active { transform: translateY(1px); }

.gp-btn svg { width: 1rem; height: 1rem; flex: none; }

@media (min-width: 640px) {
	.gp-btn { padding: 1rem 2rem; font-size: .875rem; }
}

.gp-btn--block { width: 100%; }

@media (min-width: 640px) {
	.gp-btn--block { width: auto; }
}

.gp-btn--outline {
	background: transparent;
	border-color: var(--gp-primary);
	color: var(--gp-primary);
}

.gp-btn--outline:hover {
	background: var(--gp-primary);
	color: var(--gp-btn-text);
}

.gp-btn--dark { background: var(--gp-black); color: var(--gp-white); }
.gp-btn--dark:hover { background: var(--gp-ink); color: var(--gp-white); }

/* Light buttons keep dark text; white on cream would be unreadable. */
.gp-btn--light { background: var(--gp-surface); color: var(--gp-white); }
.gp-btn--light:hover { background: var(--gp-card); color: var(--gp-white); }

.gp-btn--ghost {
	background: transparent;
	border-color: currentColor;
	color: inherit;
}

.gp-btn--sm { padding: .5rem 1rem; font-size: .6875rem; }
.gp-btn--lg { padding: 1.125rem 2.5rem; font-size: .9375rem; }

.gp-btn[disabled],
.gp-btn.gp-is-loading {
	opacity: .6;
	pointer-events: none;
}

.gp-btn.gp-is-loading::after {
	content: "";
	width: 1em;
	height: 1em;
	border: 2px solid currentColor;
	border-right-color: transparent;
	border-radius: 50%;
	animation: gp-spin .6s linear infinite;
}

@keyframes gp-spin { to { transform: rotate(360deg); } }

/* Text link with an animated underline. */
.gp-link {
	display: inline-flex;
	align-items: center;
	gap: .375rem;
	color: var(--gp-muted);
	font-size: .625rem;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.gp-link:hover { color: var(--gp-primary); }
.gp-link svg { width: .75rem; height: .75rem; }

@media (min-width: 768px) { .gp-link { font-size: .75rem; } }

/* Forms ------------------------------------------------------------------- */

input[type="text"], input[type="email"], input[type="url"], input[type="password"],
input[type="search"], input[type="number"], input[type="tel"], input[type="date"],
input[type="month"], input[type="week"], input[type="time"], input[type="datetime-local"],
select, textarea {
	width: 100%;
	max-width: 100%;
	padding: .75rem 1rem;
	background: var(--gp-card);
	border: 1px solid var(--gp-border);
	border-radius: var(--gp-radius);
	color: var(--gp-body-color);
	font-family: inherit;
	font-size: .9375rem;
	line-height: 1.5;
	transition: border-color var(--gp-speed) var(--gp-ease), box-shadow var(--gp-speed) var(--gp-ease);
	appearance: none;
}

select {
	padding-right: 2.5rem;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right .875rem center;
	background-size: 1rem;
}

input:focus, select:focus, textarea:focus {
	border-color: var(--gp-primary);
	box-shadow: 0 0 0 3px rgba(57, 134, 245, .18);
	outline: none;
}

textarea { min-height: 9rem; resize: vertical; }

::placeholder { color: var(--gp-muted-light); opacity: 1; }

label {
	display: block;
	margin-bottom: .375rem;
	color: var(--gp-heading-color);
	font-size: .8125rem;
	font-weight: 500;
}

input[type="checkbox"], input[type="radio"] {
	width: 1rem;
	height: 1rem;
	margin-right: .5rem;
	accent-color: var(--gp-primary);
	vertical-align: middle;
}

input[type="submit"], button[type="submit"] { cursor: pointer; }

fieldset {
	margin: 0 0 1.5rem;
	padding: 1.25rem;
	border: 1px solid var(--gp-border);
	border-radius: var(--gp-radius);
}

legend { padding-inline: .5rem; font-size: .8125rem; font-weight: 600; }

/* Tables ------------------------------------------------------------------ */

table {
	width: 100%;
	margin-bottom: 1.5rem;
	border-collapse: collapse;
	font-size: .9375rem;
}

th, td {
	padding: .875rem 1rem;
	border-bottom: 1px solid var(--gp-border);
	text-align: left;
}

th {
	color: var(--gp-heading-color);
	font-size: .75rem;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
}

/* ==========================================================================
   6. Top bar
   ========================================================================== */

.gp-topbar {
	position: relative;
	z-index: var(--gp-z-topbar);
	width: 100%;
	padding-block: .5rem;
	background: var(--gp-black);
	border-bottom: 1px solid rgba(255, 255, 255, .08);
	color: #a3a3a3;
	font-size: .625rem;
	letter-spacing: .05em;
}

@media (min-width: 640px) { .gp-topbar { font-size: .75rem; } }

.gp-topbar__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: .5rem;
}

@media (min-width: 768px) {
	.gp-topbar__inner { flex-direction: row; gap: 0; }
}

.gp-topbar__notice,
.gp-topbar__links {
	display: flex;
	align-items: center;
	gap: .5rem;
	text-transform: uppercase;
}

.gp-topbar__links { gap: 1rem; }
.gp-topbar__notice svg { width: 1rem; height: 1rem; color: var(--gp-primary); flex: none; }
.gp-topbar a { color: inherit; }
.gp-topbar a:hover { color: var(--gp-white); }
.gp-topbar__sep { color: #4b5563; }

/* Desktop bar hides on phones; a condensed gold banner takes its place. */
.gp-topbar--desktop { display: none; }
.gp-topbar--mobile {
	display: block;
	padding-inline: var(--gp-gutter);
	color: var(--gp-primary);
	text-align: center;
	text-transform: uppercase;
	border-bottom: 0;
}

@media (min-width: 640px) {
	.gp-topbar--desktop { display: block; }
	.gp-topbar--mobile { display: none; }
}

/* ==========================================================================
   7. Header / navigation
   ========================================================================== */

.gp-header {
	position: relative;
	z-index: var(--gp-z-sticky);
	width: 100%;
	background: var(--gp-surface);
	border-bottom: 1px solid var(--gp-border);
	box-shadow: var(--gp-shadow-sm);
}

.gp-header--sticky { position: sticky; top: var(--gp-admin-bar); }

/* Shrink-on-scroll: purely a padding change so nothing reflows sideways. */
.gp-header--scrolled .gp-header__inner { padding-block: .5rem; }

@media (min-width: 640px) {
	.gp-header--scrolled .gp-header__inner { padding-block: .75rem; }
}

.gp-header--transparent {
	position: absolute;
	inset-inline: 0;
	background: transparent;
	border-bottom-color: rgba(255, 255, 255, .12);
	box-shadow: none;
}

.gp-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding-block: .75rem;
	transition: padding var(--gp-speed) var(--gp-ease);
}

@media (min-width: 640px) { .gp-header__inner { padding-block: 1.25rem; } }

/* Brand -------------------------------------------------------------------- */

.gp-brand {
	display: flex;
	align-items: center;
	gap: .5rem;
	flex: none;
}

.gp-brand__mark {
	display: flex;
	align-items: flex-end;
	color: var(--gp-primary);
	font-family: var(--gp-font-heading);
	font-size: 2.25rem;
	line-height: 1;
}

.gp-brand__mark span { font-size: 2.25rem; margin-bottom: -.25rem; }

.gp-brand__text {
	margin-top: .25rem;
	color: var(--gp-white);
	font-family: var(--gp-font-heading);
	font-size: 1.25rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	white-space: nowrap;
}

@media (min-width: 640px) {
	.gp-brand__mark { font-size: 2.5rem; }
	.gp-brand__mark span { font-size: 3.75rem; }
	.gp-brand__text { font-size: 1.875rem; margin-top: .5rem; }
}

.gp-brand__logo { max-height: 56px; width: auto; }

/* Primary menu ------------------------------------------------------------- */

.gp-nav { display: none; }

@media (min-width: 1024px) {
	.gp-nav { display: block; }
}

.gp-nav__list,
.gp-nav .menu {
	display: flex;
	align-items: center;
	gap: 2rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.gp-nav li { position: relative; }

.gp-nav a {
	display: flex;
	align-items: center;
	gap: .25rem;
	padding-block: .25rem;
	color: var(--gp-muted);
	font-size: .875rem;
	font-weight: 500;
	letter-spacing: .01em;
}

.gp-nav a:hover { color: var(--gp-primary); }

/* Current page gets the gold rule under it. */
.gp-nav .current-menu-item > a,
.gp-nav .current_page_item > a,
.gp-nav .current-menu-ancestor > a,
.gp-nav .current-menu-parent > a {
	color: var(--gp-primary);
	border-bottom: 2px solid var(--gp-primary);
	padding-bottom: .25rem;
}

/* Caret for items with children. */
.gp-nav .menu-item-has-children > a::after,
.gp-nav .page_item_has_children > a::after {
	content: "";
	width: .75rem;
	height: .75rem;
	flex: none;
	background: currentColor;
	-webkit-mask: var(--gp-caret) no-repeat center / contain;
	mask: var(--gp-caret) no-repeat center / contain;
	transition: transform var(--gp-speed) var(--gp-ease);
}

.gp-nav .menu-item-has-children:hover > a::after { transform: rotate(180deg); }

:root {
	--gp-caret: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
}

/* Dropdowns ---------------------------------------------------------------- */

.gp-nav .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 10;
	display: block;
	min-width: 230px;
	margin: 0;
	padding: .5rem 0;
	list-style: none;
	background: var(--gp-card);
	border: 1px solid var(--gp-border);
	border-top: 2px solid var(--gp-primary);
	box-shadow: var(--gp-shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity var(--gp-speed) var(--gp-ease),
	            transform var(--gp-speed) var(--gp-ease),
	            visibility var(--gp-speed) var(--gp-ease);
}

.gp-nav li:hover > .sub-menu,
.gp-nav li:focus-within > .sub-menu,
.gp-nav li.gp-is-open > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.gp-nav .sub-menu a {
	padding: .625rem 1.25rem;
	color: var(--gp-body-color);
	font-size: .8125rem;
	white-space: nowrap;
}

.gp-nav .sub-menu a:hover {
	background: var(--gp-surface);
	color: var(--gp-primary);
}

/* Third level flies out to the side. */
.gp-nav .sub-menu .sub-menu { top: -.5rem; left: 100%; }
.gp-nav .sub-menu .menu-item-has-children > a::after { transform: rotate(-90deg); }

/* Flip the last two top-level dropdowns so they never leave the viewport. */
.gp-nav > ul > li:nth-last-child(-n+2) .sub-menu .sub-menu { left: auto; right: 100%; }

/* Mega menu (opt-in per menu item from Appearance > Menus). */
.gp-nav .gp-mega > .sub-menu {
	left: 50%;
	width: min(var(--gp-container), calc(100vw - 4rem));
	transform: translateX(-50%) translateY(8px);
	display: grid;
	grid-template-columns: repeat(var(--gp-mega-cols, 4), minmax(0, 1fr));
	gap: 1rem 2rem;
	padding: 2rem;
}

.gp-nav .gp-mega:hover > .sub-menu,
.gp-nav .gp-mega:focus-within > .sub-menu { transform: translateX(-50%) translateY(0); }

.gp-nav .gp-mega > .sub-menu > li > a {
	padding: 0 0 .5rem;
	margin-bottom: .5rem;
	border-bottom: 1px solid var(--gp-border);
	color: var(--gp-heading-color);
	font-family: var(--gp-font-heading);
	font-size: 1rem;
}

.gp-nav .gp-mega > .sub-menu > li > a:hover { background: none; }

.gp-nav .gp-mega .sub-menu {
	position: static;
	min-width: 0;
	padding: 0;
	border: 0;
	box-shadow: none;
	opacity: 1;
	visibility: visible;
	transform: none;
	background: none;
}

.gp-nav .gp-mega .sub-menu a { padding: .3125rem 0; }

/* Header actions ----------------------------------------------------------- */

.gp-header__actions {
	display: flex;
	align-items: center;
	gap: 1rem;
	color: var(--gp-heading-color);
}

@media (min-width: 640px) { .gp-header__actions { gap: 1.5rem; } }

.gp-icon-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 0;
	background: none;
	color: inherit;
	cursor: pointer;
	transition: color var(--gp-speed) var(--gp-ease);
}

.gp-icon-btn:hover { color: var(--gp-primary); }
.gp-icon-btn svg { width: 1.25rem; height: 1.25rem; }

@media (min-width: 640px) { .gp-icon-btn svg { width: 1.5rem; height: 1.5rem; } }

/* Account and cart move into the bottom bar on phones. */
.gp-icon-btn--desktop { display: none; }

@media (min-width: 768px) { .gp-icon-btn--desktop { display: inline-flex; } }

.gp-count {
	position: absolute;
	top: -.25rem;
	right: -.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 1rem;
	height: 1rem;
	background: var(--gp-primary);
	border-radius: var(--gp-radius-pill);
	color: var(--gp-white);
	font-size: .5625rem;
	font-weight: 700;
	line-height: 1;
}

.gp-burger { display: inline-flex; }

@media (min-width: 1024px) { .gp-burger { display: none; } }

/* ==========================================================================
   8. Mobile drawer
   ========================================================================== */

.gp-overlay {
	position: fixed;
	inset: 0;
	z-index: var(--gp-z-overlay);
	background: rgba(0, 0, 0, .6);
	backdrop-filter: blur(2px);
	opacity: 0;
	visibility: hidden;
	transition: opacity var(--gp-speed) var(--gp-ease), visibility var(--gp-speed) var(--gp-ease);
}

.gp-overlay.gp-is-active { opacity: 1; visibility: visible; }

.gp-drawer {
	position: fixed;
	top: 0;
	bottom: 0;
	inset-inline-start: 0;
	z-index: var(--gp-z-drawer);
	display: flex;
	flex-direction: column;
	width: min(88vw, 400px);
	background: var(--gp-surface);
	box-shadow: var(--gp-shadow-lg);
	transform: translateX(-100%);
	transition: transform var(--gp-speed) var(--gp-ease);
	overscroll-behavior: contain;
}

.gp-drawer--end {
	inset-inline-start: auto;
	inset-inline-end: 0;
	transform: translateX(100%);
}

.gp-drawer.gp-is-active { transform: translateX(0); }

[dir="rtl"] .gp-drawer { transform: translateX(100%); }
[dir="rtl"] .gp-drawer--end { transform: translateX(-100%); }
[dir="rtl"] .gp-drawer.gp-is-active { transform: translateX(0); }

.gp-drawer__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex: none;
	padding: 1rem var(--gp-gutter);
	border-bottom: 1px solid var(--gp-border);
}

.gp-drawer__title {
	margin: 0;
	font-family: var(--gp-font-heading);
	font-size: 1.125rem;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.gp-drawer__close {
	display: inline-flex;
	padding: .5rem;
	margin: -.5rem;
	border: 0;
	background: none;
	color: var(--gp-heading-color);
	cursor: pointer;
}

.gp-drawer__close svg { width: 1.25rem; height: 1.25rem; }
.gp-drawer__close:hover { color: var(--gp-primary); }

.gp-drawer__body {
	flex: 1 1 auto;
	overflow-y: auto;
	padding: 1rem var(--gp-gutter) 2rem;
	-webkit-overflow-scrolling: touch;
}

.gp-drawer__foot {
	flex: none;
	padding: 1rem var(--gp-gutter) calc(1rem + env(safe-area-inset-bottom, 0px));
	border-top: 1px solid var(--gp-border);
	background: var(--gp-card);
}

/* Accordion menu inside the drawer. */
.gp-mobile-menu,
.gp-mobile-menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.gp-mobile-menu li { border-bottom: 1px solid var(--gp-border); }
.gp-mobile-menu ul li:last-child { border-bottom: 0; }

.gp-mobile-menu a {
	display: block;
	padding: .875rem 2.5rem .875rem 0;
	color: var(--gp-heading-color);
	font-size: .9375rem;
	font-weight: 500;
}

.gp-mobile-menu a:hover,
.gp-mobile-menu .current-menu-item > a { color: var(--gp-primary); }

.gp-mobile-menu .sub-menu {
	display: none;
	padding-left: 1rem;
	border-top: 1px solid var(--gp-border);
}

.gp-mobile-menu .gp-is-open > .sub-menu { display: block; }
.gp-mobile-menu .sub-menu a { font-size: .875rem; font-weight: 400; color: var(--gp-muted); }

/* The toggle sits on top of the row so the link itself stays tappable. */
.gp-submenu-toggle {
	position: absolute;
	top: .25rem;
	inset-inline-end: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	border: 0;
	background: none;
	color: var(--gp-muted);
	cursor: pointer;
}

.gp-mobile-menu li { position: relative; }
.gp-submenu-toggle svg { width: 1rem; height: 1rem; transition: transform var(--gp-speed) var(--gp-ease); }
.gp-mobile-menu .gp-is-open > .gp-submenu-toggle svg { transform: rotate(180deg); }

/* ==========================================================================
   9. Hero
   ========================================================================== */

.gp-hero {
	position: relative;
	display: flex;
	align-items: center;
	overflow: hidden;
	min-height: 500px;
	background-color: var(--gp-ink);
}

@media (min-width: 768px) { .gp-hero { min-height: 600px; } }
@media (min-width: 1024px) { .gp-hero { height: 750px; } }

.gp-hero__bg {
	position: absolute;
	inset: 0;
	background-position: center;
	background-size: cover;
	mix-blend-mode: overlay;
	opacity: .4;
	pointer-events: none;
}

/* Vertical fade on phones, horizontal on desktop -- keeps the copy readable
   whichever side the artwork lands on. */
.gp-hero__scrim {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: linear-gradient(to bottom, var(--gp-ink), rgba(0, 0, 0, .9) 55%, transparent);
	pointer-events: none;
}

@media (min-width: 768px) {
	.gp-hero__scrim {
		background: linear-gradient(to right, var(--gp-ink), rgba(0, 0, 0, .9) 45%, transparent);
	}
}

.gp-hero__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	padding-block: 3rem;
}

@media (min-width: 1024px) {
	.gp-hero__inner { flex-direction: row; padding-block: 0; }
}

.gp-hero__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	margin-top: 2rem;
	color: var(--gp-white);
	text-align: center;
}

@media (min-width: 1024px) {
	.gp-hero__content { width: 50%; margin-top: 0; text-align: left; }
}

.gp-hero__eyebrow {
	margin-bottom: .75rem;
	color: rgba(255, 255, 255, .8);
	font-size: .625rem;
	font-weight: 600;
	letter-spacing: .2em;
	text-transform: uppercase;
}

@media (min-width: 640px) { .gp-hero__eyebrow { font-size: .75rem; margin-bottom: 1.5rem; } }
@media (min-width: 768px) { .gp-hero__eyebrow { font-size: .875rem; } }

.gp-hero__title {
	margin-bottom: 1rem;
	color: var(--gp-white);
	font-family: var(--gp-font-heading);
	font-size: clamp(2.25rem, 1.4rem + 3.6vw, 4.375rem);
	line-height: 1.1;
}

@media (min-width: 640px) { .gp-hero__title { margin-bottom: 1.5rem; } }

.gp-hero__title br { display: none; }

@media (min-width: 640px) { .gp-hero__title br { display: inline; } }

.gp-hero__text {
	max-width: 32rem;
	margin: 0 auto 1.5rem;
	color: #d1d5db;
	font-size: .875rem;
	font-weight: 300;
	line-height: 1.75;
}

@media (min-width: 640px) { .gp-hero__text { font-size: 1rem; margin-bottom: 2.5rem; } }
@media (min-width: 768px) { .gp-hero__text { font-size: 1.125rem; } }
@media (min-width: 1024px) { .gp-hero__text { margin-inline: 0; } }

.gp-hero__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
}

@media (min-width: 1024px) { .gp-hero__actions { justify-content: flex-start; } }

.gp-hero__actions .gp-btn { width: 100%; }

@media (min-width: 640px) { .gp-hero__actions .gp-btn { width: auto; } }

/* Trust badges under the hero copy. */
.gp-hero__features {
	display: none;
	gap: 1rem;
	max-width: 42rem;
	margin: 3rem auto 0;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, .1);
	text-align: left;
}

@media (min-width: 640px) {
	.gp-hero__features { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 768px) {
	.gp-hero__features {
		grid-template-columns: repeat(var(--gp-hero-feature-cols, 4), minmax(0, 1fr));
		gap: 1.5rem;
		margin-top: 6rem;
		padding-top: 2rem;
	}
}

@media (min-width: 1024px) { .gp-hero__features { margin-inline: 0; } }

.gp-hero__feature { display: flex; flex-direction: column; gap: .75rem; }

.gp-hero__feature-icon,
.gp-feature__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: none;
	width: 2rem;
	height: 2rem;
	border: 1px solid var(--gp-primary);
	border-radius: 50%;
	color: var(--gp-primary);
}

.gp-hero__feature-icon svg,
.gp-feature__icon svg { width: 1rem; height: 1rem; }

@media (min-width: 768px) {
	.gp-hero__feature-icon,
	.gp-feature__icon { width: 2.5rem; height: 2.5rem; }
	.gp-hero__feature-icon svg,
	.gp-feature__icon svg { width: 1.25rem; height: 1.25rem; }
}

.gp-hero__feature-label {
	color: rgba(255, 255, 255, .7);
	font-size: .5625rem;
	letter-spacing: .1em;
	line-height: 1.3;
	text-transform: uppercase;
}

@media (min-width: 768px) { .gp-hero__feature-label { font-size: .625rem; } }

/* Hero media --------------------------------------------------------------- */

.gp-hero__media {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	order: -1;
	width: 100%;
	height: 100%;
	margin-top: 0;
}

@media (min-width: 1024px) {
	.gp-hero__media { order: 2; width: 50%; justify-content: flex-end; }
}

.gp-hero__media-inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 280px;
	aspect-ratio: 1 / 1;
}

@media (min-width: 640px) { .gp-hero__media-inner { max-width: 28rem; } }
@media (min-width: 1024px) { .gp-hero__media-inner { max-width: 36rem; } }

/* Soft gold bloom behind the vials. */
.gp-hero__glow {
	position: absolute;
	inset: 0;
	background: rgba(57, 134, 245, .2);
	border-radius: 50%;
	filter: blur(60px);
}

@media (min-width: 768px) { .gp-hero__glow { filter: blur(100px); } }

.gp-hero__vials {
	position: relative;
	z-index: 1;
	display: flex;
	gap: .5rem;
	filter: drop-shadow(0 25px 25px rgba(0, 0, 0, .35));
}

@media (min-width: 768px) { .gp-hero__vials { gap: 1rem; } }
@media (min-width: 1024px) { .gp-hero__vials { transform: translateX(-3rem); } }

.gp-vial {
	position: relative;
	width: 8rem;
	transition: transform .5s var(--gp-ease);
}

.gp-vial:hover { transform: scale(1.05); }
.gp-vial:nth-child(odd) { margin-top: 1.5rem; }
.gp-vial:nth-child(even) { margin-top: -1rem; }

@media (min-width: 640px) { .gp-vial { width: 10rem; } }

@media (min-width: 768px) {
	.gp-vial { width: 12rem; }
	.gp-vial:nth-child(odd) { margin-top: 3rem; }
	.gp-vial:nth-child(even) { margin-top: -2rem; }
}

@media (min-width: 1024px) { .gp-vial { width: 14rem; } }

.gp-vial__img {
	width: 100%;
	height: auto;
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: .75rem;
	box-shadow: var(--gp-shadow-lg);
	object-fit: cover;
	/* Shoulder cut at the top of the vial label. */
	clip-path: polygon(20% 0%, 80% 0%, 100% 10%, 100% 100%, 0% 100%, 0% 10%);
}

.gp-vial--alt .gp-vial__img { filter: hue-rotate(-10deg); }

.gp-vial__label {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: .5rem;
	background: rgba(0, 0, 0, .4);
	text-align: center;
}

@media (min-width: 768px) { .gp-vial__label { padding: 1rem; } }

.gp-vial__mark {
	color: var(--gp-primary);
	font-family: var(--gp-font-heading);
	font-size: 1.25rem;
}

.gp-vial__brand {
	margin: .25rem 0;
	color: var(--gp-white);
	font-size: .5rem;
	letter-spacing: .1em;
}

.gp-vial__name {
	color: var(--gp-white);
	font-size: .875rem;
	font-weight: 700;
	letter-spacing: .05em;
}

@media (min-width: 768px) {
	.gp-vial__mark { font-size: 1.875rem; }
	.gp-vial__brand { font-size: .75rem; margin-bottom: .5rem; }
	.gp-vial__name { font-size: 1.25rem; }
}

/* ==========================================================================
   10. Category grid
   ========================================================================== */

.gp-cat-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: .75rem;
	background: var(--gp-card);
	border: 1px solid var(--gp-border);
	transition: box-shadow var(--gp-speed) var(--gp-ease), transform var(--gp-speed) var(--gp-ease);
}

@media (min-width: 640px) { .gp-cat-card { padding: 1rem; } }

.gp-cat-card:hover { box-shadow: var(--gp-shadow); }

.gp-cat-card__media {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	width: 100%;
	margin-bottom: .75rem;
	aspect-ratio: 1 / 1;
	background: #000000;
}

@media (min-width: 640px) { .gp-cat-card__media { margin-bottom: 1rem; } }

.gp-cat-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	mix-blend-mode: multiply;
	transition: transform .5s var(--gp-ease);
}

.gp-cat-card:hover .gp-cat-card__media img { transform: scale(1.1); }

.gp-cat-card__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, .5), transparent);
	pointer-events: none;
}

.gp-cat-card__title {
	margin: 0 0 .25rem;
	color: var(--gp-heading-color);
	font-family: var(--gp-font-heading);
	font-size: .875rem;
	text-align: center;
	overflow-wrap: anywhere;
}

@media (min-width: 640px) { .gp-cat-card__title { font-size: 1rem; margin-bottom: .5rem; } }
@media (min-width: 768px) { .gp-cat-card__title { font-size: 1.125rem; } }

.gp-cat-card:hover .gp-cat-card__cta { color: var(--gp-primary); }

.gp-cat-card__count {
	color: var(--gp-muted-light);
	font-size: .6875rem;
	letter-spacing: .05em;
}

/* ==========================================================================
   11. Split / about feature block
   ========================================================================== */

.gp-split {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	overflow: hidden;
	min-height: 400px;
	background: var(--gp-ink);
	border-radius: var(--gp-radius);
	box-shadow: var(--gp-shadow-lg);
}

@media (min-width: 768px) { .gp-split { min-height: 500px; } }

@media (min-width: 1024px) {
	.gp-split { grid-template-columns: 1.2fr 1fr 1.5fr; }
}

.gp-split__about {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 2rem;
	border-bottom: 1px solid rgba(255, 255, 255, .1);
}

@media (min-width: 640px) { .gp-split__about { padding: 2.5rem; } }
@media (min-width: 768px) { .gp-split__about { padding: 3.5rem; } }

@media (min-width: 1024px) {
	.gp-split__about {
		padding: 4rem;
		border-bottom: 0;
		border-inline-end: 1px solid rgba(255, 255, 255, .1);
	}
}

.gp-split__about-bg {
	position: absolute;
	inset: 0;
	background-position: center;
	background-size: cover;
	mix-blend-mode: screen;
	opacity: .1;
	pointer-events: none;
}

.gp-split__about-inner { position: relative; z-index: 1; text-align: center; }

@media (min-width: 1024px) { .gp-split__about-inner { text-align: left; } }

.gp-split__title {
	margin-bottom: 1rem;
	color: var(--gp-white);
	font-family: var(--gp-font-heading);
	font-size: clamp(1.875rem, 1.4rem + 1.8vw, 3rem);
	line-height: 1.2;
}

@media (min-width: 768px) { .gp-split__title { margin-bottom: 1.5rem; } }

.gp-split__text {
	max-width: 28rem;
	margin: 0 auto 1.5rem;
	color: #d1d5db;
	font-size: .875rem;
	font-weight: 300;
	line-height: 1.75;
}

@media (min-width: 640px) { .gp-split__text { font-size: 1rem; } }
@media (min-width: 768px) { .gp-split__text { margin-bottom: 2rem; } }
@media (min-width: 1024px) { .gp-split__text { margin-inline: 0; } }

/* Centre monogram panel -- desktop only, it is pure decoration. */
.gp-split__mark {
	position: relative;
	display: none;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	padding: 3rem;
	background: var(--gp-black);
	border-inline-end: 1px solid rgba(255, 255, 255, .1);
}

@media (min-width: 1024px) { .gp-split__mark { display: flex; } }

.gp-split__mark::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at center, rgba(57, 134, 245, .1) 0%, transparent 70%);
}

.gp-split__mark-inner {
	position: relative;
	z-index: 1;
	text-align: center;
	transition: transform .7s var(--gp-ease);
}

.gp-split__mark-inner:hover { transform: scale(1.05); }

.gp-split__mark-letter {
	display: block;
	margin-bottom: 1rem;
	color: var(--gp-primary);
	font-family: var(--gp-font-heading);
	font-size: 7.5rem;
	line-height: 1;
	text-shadow: 0 10px 30px rgba(57, 134, 245, .2);
}

.gp-split__mark-name {
	margin-bottom: .5rem;
	color: var(--gp-white);
	font-family: var(--gp-font-heading);
	font-size: 1.875rem;
	letter-spacing: .3em;
	text-transform: uppercase;
}

.gp-split__mark-tagline {
	color: rgba(57, 134, 245, .7);
	font-size: .5625rem;
	letter-spacing: .3em;
	text-transform: uppercase;
}

/* Right-hand panel: feature list + framed image. */
.gp-split__aside { display: flex; flex-direction: column; background: var(--gp-surface); }

@media (min-width: 768px) { .gp-split__aside { flex-direction: row; } }

.gp-split__features {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 1.5rem;
	width: 100%;
	padding: 1.5rem;
	background: var(--gp-ink-2);
}

@media (min-width: 640px) { .gp-split__features { padding: 2rem; } }
@media (min-width: 768px) { .gp-split__features { width: 50%; gap: 2rem; } }
@media (min-width: 1024px) { .gp-split__features { padding: 2.5rem; } }

.gp-feature { display: flex; align-items: flex-start; gap: 1rem; }

.gp-feature__title {
	margin: 0 0 .25rem;
	color: var(--gp-heading-color);
	font-family: var(--gp-font-body);
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: .05em;
	text-transform: uppercase;
}

@media (min-width: 768px) { .gp-feature__title { font-size: .875rem; } }

.gp-feature__text { margin: 0; color: var(--gp-muted); font-size: .625rem; line-height: 1.6; }

@media (min-width: 768px) { .gp-feature__text { font-size: .75rem; } }

.gp-split__image {
	position: relative;
	width: 100%;
	min-height: 250px;
	background-position: center;
	background-size: cover;
}

@media (min-width: 768px) { .gp-split__image { width: 50%; min-height: 300px; } }

.gp-split__image::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, .2);
	mix-blend-mode: multiply;
}

.gp-split__image-frame {
	position: absolute;
	inset: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, .1);
	border: 1px solid rgba(57, 134, 245, .3);
	backdrop-filter: blur(4px);
	text-align: center;
}

.gp-split__image-title {
	color: var(--gp-primary);
	font-family: var(--gp-font-heading);
	font-size: 1.5rem;
	font-weight: 300;
	letter-spacing: .1em;
}

@media (min-width: 768px) { .gp-split__image-title { font-size: 1.875rem; } }

.gp-split__image-sub {
	display: block;
	margin-top: .5rem;
	color: var(--gp-white);
	font-family: var(--gp-font-body);
	font-size: .625rem;
	letter-spacing: .3em;
	text-transform: uppercase;
}

@media (min-width: 768px) { .gp-split__image-sub { font-size: .75rem; } }

/* ==========================================================================
   12. Generic sections
   ========================================================================== */

/* Feature / trust row ------------------------------------------------------ */

.gp-features { display: grid; gap: 1.5rem; }

.gp-feature-card {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.5rem;
	background: var(--gp-card);
	border: 1px solid var(--gp-border);
	border-radius: var(--gp-radius);
}

/*
 * Line the icon circle up with the heading next to it.
 *
 * The circle is a good deal taller than one line of the title, so with both
 * simply top-aligned the circle's centre hangs ~10px below the heading it
 * belongs to and the row reads as sloppy. Nudging the text down by half the
 * difference puts the two centres on the same line, and keeps the circles
 * level with each other across a row of cards.
 */
.gp-feature-card,
.gp-feature {
	--gp-icon-size: 2rem;
}

.gp-feature-card { --gp-icon-line: 1.22rem; }
.gp-feature { --gp-icon-line: .8625rem; }

.gp-feature-card > :not(.gp-feature__icon),
.gp-feature > :not(.gp-feature__icon) {
	padding-top: calc( ( var(--gp-icon-size) - var(--gp-icon-line) ) / 2 );
}

@media (min-width: 768px) {
	.gp-feature-card,
	.gp-feature { --gp-icon-size: 2.5rem; }

	.gp-feature { --gp-icon-line: 1.00625rem; }
}

.gp-feature-card--center {
	flex-direction: column;
	align-items: center;
	text-align: center;
}

/* Stacked variant puts the icon above the text, so no nudge is wanted. */
.gp-feature-card--center > :not(.gp-feature__icon) {
	padding-top: 0;
}

.gp-feature-card--plain { background: none; border: 0; padding: 0; }

.gp-feature-card__title {
	margin: 0 0 .375rem;
	font-family: var(--gp-font-heading);
	font-size: 1.0625rem;
}

.gp-feature-card__text { margin: 0; color: var(--gp-muted); font-size: .875rem; }

/* Call-to-action banner ---------------------------------------------------- */

.gp-cta {
	position: relative;
	overflow: hidden;
	padding: 3rem var(--gp-gutter);
	background: var(--gp-ink);
	border-radius: var(--gp-radius);
	color: var(--gp-white);
	text-align: center;
}

@media (min-width: 768px) { .gp-cta { padding: 5rem 3rem; } }

.gp-cta__bg {
	position: absolute;
	inset: 0;
	background-position: center;
	background-size: cover;
	opacity: .3;
	mix-blend-mode: overlay;
}

.gp-cta__inner { position: relative; z-index: 1; max-width: 46rem; margin-inline: auto; }
.gp-cta__title { color: var(--gp-white); margin-bottom: 1rem; }
.gp-cta__text { color: #d1d5db; font-weight: 300; margin-bottom: 2rem; }

/* Testimonials ------------------------------------------------------------- */

.gp-testimonial {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	height: 100%;
	padding: 2rem;
	background: var(--gp-card);
	border: 1px solid var(--gp-border);
	border-radius: var(--gp-radius);
}

.gp-testimonial__stars { display: flex; gap: .125rem; color: var(--gp-primary); }
.gp-testimonial__stars svg { width: 1rem; height: 1rem; fill: currentColor; stroke: none; }

.gp-testimonial__text {
	flex: 1;
	margin: 0;
	color: var(--gp-heading-color);
	font-family: var(--gp-font-heading);
	font-size: 1.0625rem;
	font-style: italic;
	line-height: 1.6;
}

.gp-testimonial__author { display: flex; align-items: center; gap: .875rem; }

.gp-testimonial__avatar {
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	object-fit: cover;
}

.gp-testimonial__name {
	display: block;
	color: var(--gp-heading-color);
	font-size: .875rem;
	font-weight: 600;
}

.gp-testimonial__role {
	display: block;
	color: var(--gp-muted);
	font-size: .75rem;
	letter-spacing: .05em;
	text-transform: uppercase;
}

/* Accordion / FAQ ---------------------------------------------------------- */

.gp-accordion { border-top: 1px solid var(--gp-border); }
.gp-accordion__item { border-bottom: 1px solid var(--gp-border); }

.gp-accordion__trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	width: 100%;
	padding: 1.25rem 0;
	border: 0;
	background: none;
	color: var(--gp-heading-color);
	font-family: var(--gp-font-heading);
	font-size: 1.0625rem;
	text-align: left;
	cursor: pointer;
}

.gp-accordion__trigger:hover { color: var(--gp-primary); }

.gp-accordion__icon {
	flex: none;
	width: 1.125rem;
	height: 1.125rem;
	color: var(--gp-primary);
	transition: transform var(--gp-speed) var(--gp-ease);
}

.gp-accordion__trigger[aria-expanded="true"] .gp-accordion__icon { transform: rotate(180deg); }

.gp-accordion__panel {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows var(--gp-speed) var(--gp-ease);
}

.gp-accordion__panel[data-open="true"] { grid-template-rows: 1fr; }
.gp-accordion__panel > div { overflow: hidden; }
.gp-accordion__panel p { padding-bottom: 1.25rem; color: var(--gp-muted); font-size: .9375rem; }

/* Newsletter --------------------------------------------------------------- */

.gp-newsletter {
	padding: 2.5rem var(--gp-gutter);
	background: var(--gp-black);
	border-radius: var(--gp-radius);
	color: var(--gp-white);
	text-align: center;
}

@media (min-width: 768px) { .gp-newsletter { padding: 4rem 3rem; } }

.gp-newsletter__title { color: var(--gp-white); margin-bottom: .75rem; }
.gp-newsletter__text { color: #9ca3af; font-size: .9375rem; margin-bottom: 2rem; }

.gp-newsletter__form {
	display: flex;
	flex-direction: column;
	gap: .75rem;
	max-width: 34rem;
	margin-inline: auto;
}

@media (min-width: 640px) { .gp-newsletter__form { flex-direction: row; } }

.gp-newsletter__form input[type="email"] {
	flex: 1;
	background: rgba(255, 255, 255, .06);
	border-color: rgba(255, 255, 255, .15);
	color: var(--gp-white);
}

.gp-newsletter__form input[type="email"]::placeholder { color: #6b7280; }

/* Any third-party form plugin dropped inside inherits the dark treatment. */
.gp-newsletter .mc4wp-form input[type="email"],
.gp-newsletter .wpcf7 input[type="email"] {
	background: rgba(255, 255, 255, .06);
	border-color: rgba(255, 255, 255, .15);
	color: var(--gp-white);
}

/* Media / text split ------------------------------------------------------- */

.gp-media-text { display: grid; gap: 2rem; align-items: center; }

@media (min-width: 900px) {
	.gp-media-text { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 3.5rem; }
	.gp-media-text--reverse .gp-media-text__media { order: 2; }
}

.gp-media-text__media img { width: 100%; border-radius: var(--gp-radius); }

/* Logo strip --------------------------------------------------------------- */

.gp-logos {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 2rem 3rem;
}

.gp-logos img {
	max-height: 40px;
	width: auto;
	opacity: .55;
	filter: grayscale(1);
	transition: opacity var(--gp-speed) var(--gp-ease), filter var(--gp-speed) var(--gp-ease);
}

.gp-logos img:hover { opacity: 1; filter: none; }

/* Countdown / marquee strip ------------------------------------------------ */

.gp-marquee {
	overflow: hidden;
	padding-block: .75rem;
	background: var(--gp-black);
	color: var(--gp-primary);
	font-size: .75rem;
	letter-spacing: .2em;
	text-transform: uppercase;
	white-space: nowrap;
}

.gp-marquee__track {
	display: inline-flex;
	gap: 3rem;
	animation: gp-marquee 30s linear infinite;
}

@keyframes gp-marquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

/* ==========================================================================
   13. Blog, archive, comments
   ========================================================================== */

.gp-page-header {
	padding-block: 3rem;
	background: var(--gp-ink);
	color: var(--gp-white);
	text-align: center;
}

@media (min-width: 768px) { .gp-page-header { padding-block: 4.5rem; } }

.gp-page-header__title { color: var(--gp-white); margin-bottom: .5rem; }
.gp-page-header__desc { color: #d1d5db; font-weight: 300; max-width: 42rem; margin-inline: auto; }

.gp-breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: .5rem;
	margin: 0;
	padding: 0;
	color: var(--gp-muted);
	font-size: .75rem;
	letter-spacing: .04em;
}

.gp-breadcrumbs a { color: inherit; }
.gp-breadcrumbs a:hover { color: var(--gp-primary); }
.gp-breadcrumbs__sep { opacity: .5; }
.gp-breadcrumbs__current { color: var(--gp-heading-color); }
.gp-page-header .gp-breadcrumbs { justify-content: center; color: rgba(255, 255, 255, .65); margin-bottom: 1rem; }
.gp-page-header .gp-breadcrumbs__current { color: var(--gp-primary); }

/* Post cards --------------------------------------------------------------- */

.gp-post-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: var(--gp-card);
	border: 1px solid var(--gp-border);
	border-radius: var(--gp-radius);
	overflow: hidden;
	transition: box-shadow var(--gp-speed) var(--gp-ease);
}

.gp-post-card:hover { box-shadow: var(--gp-shadow); }

.gp-post-card__media { overflow: hidden; aspect-ratio: 16 / 10; background: var(--gp-surface-2); }

.gp-post-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s var(--gp-ease);
}

.gp-post-card:hover .gp-post-card__media img { transform: scale(1.05); }

.gp-post-card__body { display: flex; flex-direction: column; flex: 1; gap: .75rem; padding: 1.5rem; }

.gp-post-card__title { margin: 0; font-size: 1.25rem; }
.gp-post-card__title a { color: var(--gp-heading-color); }
.gp-post-card__title a:hover { color: var(--gp-primary); }
.gp-post-card__excerpt { margin: 0; color: var(--gp-muted); font-size: .9375rem; }
.gp-post-card__footer { margin-top: auto; padding-top: .5rem; }

.gp-post-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: .75rem;
	color: var(--gp-muted-light);
	font-size: .6875rem;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.gp-post-meta a { color: inherit; }
.gp-post-meta a:hover { color: var(--gp-primary); }
.gp-post-meta svg { width: .875rem; height: .875rem; }
.gp-post-meta__item { display: inline-flex; align-items: center; gap: .375rem; }

/* Single post -------------------------------------------------------------- */

.gp-entry__thumb { margin-bottom: 2rem; }
.gp-entry__thumb img { width: 100%; border-radius: var(--gp-radius); }
.gp-entry__title { margin-bottom: 1rem; }
.gp-entry__meta { margin-bottom: 2rem; }

.gp-content > *:first-child { margin-top: 0; }
.gp-content > *:last-child { margin-bottom: 0; }
/*
 * Editorial heading rhythm, for prose typed into the editor.
 *
 * Excludes anything carrying a theme class: `.gp-content h3` is (0,1,1) and
 * would otherwise outrank a component's own `.gp-...__title` at (0,1,0),
 * pushing widget headings out of alignment wherever a shortcode or builder
 * layout renders inside post content.
 */
.gp-content :is( h2, h3, h4 ):not( [class*="gp-"] ) { margin-top: 2rem; }
.gp-content img { border-radius: var(--gp-radius); }

.gp-content .alignleft { float: left; margin: .375rem 1.75rem 1.25rem 0; }
.gp-content .alignright { float: right; margin: .375rem 0 1.25rem 1.75rem; }
.gp-content .aligncenter { margin-inline: auto; display: block; }

.gp-content .alignwide {
	width: min(100vw - 2 * var(--gp-gutter), 1200px);
	max-width: none;
	margin-inline: calc(50% - min(50vw - var(--gp-gutter), 600px));
}

.gp-content .alignfull {
	width: 100vw;
	max-width: none;
	margin-inline: calc(50% - 50vw);
}

.gp-entry__footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-top: 2.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--gp-border);
}

.gp-tags { display: flex; flex-wrap: wrap; gap: .5rem; }

.gp-tags a {
	padding: .25rem .75rem;
	background: var(--gp-surface-2);
	border-radius: var(--gp-radius-pill);
	color: var(--gp-body-color);
	font-size: .6875rem;
	letter-spacing: .05em;
	text-transform: uppercase;
}

.gp-tags a:hover { background: var(--gp-primary); color: var(--gp-white); }

.gp-share { display: flex; align-items: center; gap: .75rem; }
.gp-share a { color: var(--gp-muted); }
.gp-share a:hover { color: var(--gp-primary); }
.gp-share svg { width: 1.125rem; height: 1.125rem; }

/* Author box, post nav ----------------------------------------------------- */

.gp-author-box {
	display: flex;
	gap: 1.25rem;
	margin-top: 2.5rem;
	padding: 1.75rem;
	background: var(--gp-card);
	border: 1px solid var(--gp-border);
	border-radius: var(--gp-radius);
}

.gp-author-box img { flex: none; border-radius: 50%; }
.gp-author-box__name { margin: 0 0 .25rem; font-size: 1.125rem; }
.gp-author-box__bio { margin: 0; color: var(--gp-muted); font-size: .875rem; }

.gp-post-nav {
	display: grid;
	gap: 1rem;
	margin-top: 2.5rem;
	grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 640px) { .gp-post-nav { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.gp-post-nav a {
	display: block;
	padding: 1.25rem;
	background: var(--gp-card);
	border: 1px solid var(--gp-border);
	border-radius: var(--gp-radius);
	color: var(--gp-heading-color);
}

.gp-post-nav a:hover { border-color: var(--gp-primary); }
.gp-post-nav__label { display: block; color: var(--gp-muted); font-size: .6875rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .25rem; }
.gp-post-nav__title { font-family: var(--gp-font-heading); font-size: 1rem; }
.gp-post-nav__next { text-align: right; }

/* Pagination --------------------------------------------------------------- */

.gp-pagination { margin-top: 2.5rem; }

.gp-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.5rem;
	height: 2.5rem;
	padding-inline: .5rem;
	margin: 0 .1875rem;
	background: var(--gp-card);
	border: 1px solid var(--gp-border);
	color: var(--gp-body-color);
	font-size: .875rem;
}

.gp-pagination .page-numbers:hover,
.gp-pagination .page-numbers.current {
	background: var(--gp-primary);
	border-color: var(--gp-primary);
	color: var(--gp-white);
}

.gp-pagination .page-numbers.dots { background: none; border-color: transparent; }
.gp-pagination ul { display: flex; flex-wrap: wrap; justify-content: center; list-style: none; margin: 0; padding: 0; }

/* Comments ----------------------------------------------------------------- */

.gp-comments { margin-top: 3rem; }
.gp-comments__title { font-size: 1.5rem; margin-bottom: 1.5rem; }
.gp-comments__list { list-style: none; margin: 0 0 2rem; padding: 0; }
.gp-comments__list .children { list-style: none; margin: 0; padding-left: 1.5rem; }

@media (min-width: 640px) { .gp-comments__list .children { padding-left: 3rem; } }

.gp-comment { padding: 1.5rem 0; border-bottom: 1px solid var(--gp-border); }
.gp-comment__head { display: flex; align-items: center; gap: .875rem; margin-bottom: .75rem; }
.gp-comment__avatar img { border-radius: 50%; }
.gp-comment__author { font-weight: 600; color: var(--gp-heading-color); }
.gp-comment__date { display: block; color: var(--gp-muted-light); font-size: .75rem; }
.gp-comment__body { font-size: .9375rem; }
.gp-comment__actions { margin-top: .5rem; font-size: .75rem; letter-spacing: .05em; text-transform: uppercase; }
.gp-comment__actions a { margin-right: .75rem; }

.comment-respond { margin-top: 2rem; }
.comment-reply-title { font-size: 1.375rem; }
.comment-form { display: grid; gap: 1rem; }
.comment-form .comment-form-cookies-consent { display: flex; align-items: flex-start; gap: .5rem; }
.comment-form .comment-form-cookies-consent label { margin: 0; font-weight: 400; font-size: .8125rem; }

@media (min-width: 640px) {
	.comment-form .comment-form-author,
	.comment-form .comment-form-email { display: inline-block; width: calc(50% - .5rem); }
	.comment-form .comment-form-author { margin-right: .875rem; }
}

.comment-form .form-submit { margin: 0; }
.comment-form input[type="submit"] {
	padding: .875rem 2rem;
	background: var(--gp-primary);
	border: 0;
	border-radius: var(--gp-radius);
	color: var(--gp-white);
	font-size: .8125rem;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.comment-form input[type="submit"]:hover { background: var(--gp-primary-hover); }

/* Empty state -------------------------------------------------------------- */

.gp-none {
	padding: 3rem 1.5rem;
	background: var(--gp-card);
	border: 1px solid var(--gp-border);
	border-radius: var(--gp-radius);
	text-align: center;
}

.gp-none__title { margin-bottom: .75rem; }
.gp-none__text { color: var(--gp-muted); margin-bottom: 1.5rem; }

/* 404 ---------------------------------------------------------------------- */

.gp-404 { padding-block: 4rem; text-align: center; }

.gp-404__code {
	display: block;
	color: var(--gp-primary);
	font-family: var(--gp-font-heading);
	font-size: clamp(5rem, 3rem + 12vw, 11rem);
	line-height: 1;
}

.gp-404__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 2rem; }

/* ==========================================================================
   14. Widgets & sidebar
   ========================================================================== */

.gp-sidebar { display: flex; flex-direction: column; gap: 2rem; }

.gp-widget {
	padding: 1.5rem;
	background: var(--gp-card);
	border: 1px solid var(--gp-border);
	border-radius: var(--gp-radius);
}

.gp-widget__title {
	margin: 0 0 1.25rem;
	padding-bottom: .75rem;
	border-bottom: 1px solid var(--gp-border);
	font-family: var(--gp-font-heading);
	font-size: 1.125rem;
}

.gp-widget ul { list-style: none; margin: 0; padding: 0; }
.gp-widget li { padding: .5rem 0; border-bottom: 1px solid var(--gp-border); font-size: .9375rem; }
.gp-widget li:last-child { border-bottom: 0; padding-bottom: 0; }
.gp-widget a { color: var(--gp-body-color); }
.gp-widget a:hover { color: var(--gp-primary); }
.gp-widget select { width: 100%; }

.gp-widget .tagcloud { display: flex; flex-wrap: wrap; gap: .5rem; }

.gp-widget .tagcloud a {
	padding: .25rem .75rem;
	background: var(--gp-surface);
	border: 1px solid var(--gp-border);
	border-radius: var(--gp-radius-pill);
	font-size: .75rem !important;
}

.gp-widget .tagcloud a:hover { background: var(--gp-primary); border-color: var(--gp-primary); color: var(--gp-white); }

/* Search form -------------------------------------------------------------- */

.gp-search-form { position: relative; display: flex; }
.gp-search-form input[type="search"] { padding-right: 3rem; }

.gp-search-form button {
	position: absolute;
	inset-inline-end: 0;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 100%;
	border: 0;
	background: none;
	color: var(--gp-muted);
	cursor: pointer;
}

.gp-search-form button:hover { color: var(--gp-primary); }
.gp-search-form svg { width: 1.125rem; height: 1.125rem; }

/* ==========================================================================
   15. Footer
   ========================================================================== */

.gp-footer {
	padding-block: 3rem;
	background: var(--gp-footer-bg);
	border-top: 1px solid rgba(255, 255, 255, .05);
	color: #9ca3af;
}

@media (min-width: 640px) { .gp-footer { padding-block: 5rem; } }

.gp-footer__cols {
	display: grid;
	gap: 2.5rem;
	grid-template-columns: minmax(0, 1fr);
	margin-bottom: 3rem;
	text-align: center;
}

@media (min-width: 640px) {
	.gp-footer__cols { grid-template-columns: repeat(2, minmax(0, 1fr)); text-align: left; }
}

@media (min-width: 1024px) {
	.gp-footer__cols {
		grid-template-columns: repeat(var(--gp-footer-cols, 4), minmax(0, 1fr));
		gap: 2rem;
		margin-bottom: 4rem;
	}
}

.gp-footer__col { display: flex; flex-direction: column; align-items: center; }

@media (min-width: 640px) { .gp-footer__col { align-items: flex-start; } }

.gp-footer__brand { display: flex; align-items: center; gap: .5rem; margin-bottom: 1rem; }

@media (min-width: 768px) { .gp-footer__brand { margin-bottom: 1.5rem; } }

.gp-footer__brand-mark { color: var(--gp-primary); font-family: var(--gp-font-heading); font-size: 1.875rem; line-height: 1; }

.gp-footer__brand-text {
	margin-top: .25rem;
	color: var(--gp-white);
	font-family: var(--gp-font-heading);
	font-size: 1.5rem;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.gp-footer__about { max-width: 20rem; margin-bottom: 1.5rem; font-size: .875rem; font-weight: 300; line-height: 1.7; }

.gp-footer__title {
	margin-bottom: 1rem;
	color: var(--gp-white);
	font-family: var(--gp-font-heading);
	font-size: 1.125rem;
}

@media (min-width: 768px) { .gp-footer__title { margin-bottom: 1.5rem; } }

.gp-footer__menu { list-style: none; margin: 0; padding: 0; font-size: .875rem; }
.gp-footer__menu li { margin-bottom: .5rem; }

@media (min-width: 768px) { .gp-footer__menu li { margin-bottom: .75rem; } }

.gp-footer__menu a { color: inherit; }
.gp-footer__menu a:hover { color: var(--gp-primary); }

.gp-footer__contact { list-style: none; margin: 0; padding: 0; width: 100%; max-width: 20rem; font-size: .875rem; }
.gp-footer__contact li { display: flex; align-items: flex-start; justify-content: center; gap: .75rem; margin-bottom: 1rem; }

@media (min-width: 640px) { .gp-footer__contact li { justify-content: flex-start; } }

.gp-footer__contact svg { flex: none; width: 1.25rem; height: 1.25rem; margin-top: .125rem; color: var(--gp-primary); }
.gp-footer__contact a { color: inherit; }
.gp-footer__contact a:hover { color: var(--gp-primary); }

.gp-social { display: flex; gap: .75rem; }

.gp-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	border: 1px solid rgba(255, 255, 255, .15);
	border-radius: 50%;
	color: inherit;
}

.gp-social a:hover { background: var(--gp-primary); border-color: var(--gp-primary); color: var(--gp-white); }
.gp-social svg { width: 1rem; height: 1rem; fill: currentColor; stroke: none; }

.gp-footer__payments { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.25rem; }
.gp-footer__payments img { height: 26px; width: auto; opacity: .85; }

.gp-footer__bottom {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding-top: 2rem;
	border-top: 1px solid var(--gp-border);
	font-size: .75rem;
	text-align: center;
}

@media (min-width: 768px) { .gp-footer__bottom { flex-direction: row; text-align: left; } }

.gp-footer__bottom p { margin: 0; }
.gp-footer__legal { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; list-style: none; margin: 0; padding: 0; }
.gp-footer__legal a { color: inherit; }
.gp-footer__legal a:hover { color: var(--gp-white); }

/* ==========================================================================
   16. Mobile bottom navigation
   ========================================================================== */

.gp-mobile-nav {
	position: fixed;
	bottom: 0;
	inset-inline: 0;
	z-index: var(--gp-z-mobilenav);
	background: var(--gp-surface);
	border-top: 1px solid var(--gp-border);
	box-shadow: var(--gp-shadow-nav);
	padding-bottom: env(safe-area-inset-bottom, 0px);
}

@media (min-width: 768px) { .gp-mobile-nav { display: none; } }

.gp-mobile-nav__list {
	display: flex;
	align-items: center;
	justify-content: space-around;
	height: var(--gp-mobilenav-h);
	margin: 0;
	padding: 0;
	list-style: none;
}

.gp-mobile-nav__item { flex: 1; height: 100%; }

.gp-mobile-nav__link {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding: 0;
	border: 0;
	background: none;
	color: var(--gp-muted);
	cursor: pointer;
}

.gp-mobile-nav__link:hover,
.gp-mobile-nav__link.gp-is-active { color: var(--gp-primary); }

.gp-mobile-nav__icon { position: relative; }
.gp-mobile-nav__link svg { width: 1.5rem; height: 1.5rem; margin-bottom: .25rem; }

.gp-mobile-nav__label {
	font-size: .625rem;
	font-weight: 600;
	letter-spacing: .04em;
	text-transform: uppercase;
	line-height: 1;
}

.gp-mobile-nav .gp-count { top: -.25rem; inset-inline-end: -.5rem; right: auto; }

[dir="ltr"] .gp-mobile-nav .gp-count { right: -.5rem; }

/* ==========================================================================
   17. Cart drawer, search overlay, back to top
   ========================================================================== */

.gp-cart-drawer__empty { padding-block: 3rem; text-align: center; color: var(--gp-muted); }

.gp-cart-drawer__totals {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1rem;
	font-size: .9375rem;
}

.gp-cart-drawer__totals strong { color: var(--gp-heading-color); font-family: var(--gp-font-heading); font-size: 1.25rem; }
.gp-cart-drawer__actions { display: grid; gap: .625rem; }

.gp-search-overlay {
	position: fixed;
	inset: 0;
	z-index: var(--gp-z-modal);
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding: 6rem var(--gp-gutter) 2rem;
	background: rgba(0, 0, 0, .96);
	opacity: 0;
	visibility: hidden;
	transition: opacity var(--gp-speed) var(--gp-ease), visibility var(--gp-speed) var(--gp-ease);
}

.gp-search-overlay.gp-is-active { opacity: 1; visibility: visible; }
.gp-search-overlay__inner { width: 100%; max-width: 44rem; }

.gp-search-overlay__label {
	display: block;
	margin-bottom: 1rem;
	color: var(--gp-primary);
	font-size: .6875rem;
	letter-spacing: .2em;
	text-transform: uppercase;
}

.gp-search-overlay input[type="search"] {
	padding: 1rem 3rem 1rem 0;
	background: transparent;
	border: 0;
	border-bottom: 1px solid rgba(255, 255, 255, .2);
	border-radius: 0;
	color: var(--gp-white);
	font-family: var(--gp-font-heading);
	font-size: 1.5rem;
}

@media (min-width: 768px) { .gp-search-overlay input[type="search"] { font-size: 2rem; } }

.gp-search-overlay input[type="search"]:focus { border-color: var(--gp-primary); box-shadow: none; }
.gp-search-overlay .gp-search-form button { color: var(--gp-primary); }

.gp-search-overlay__close {
	position: absolute;
	top: 1.5rem;
	inset-inline-end: 1.5rem;
	padding: .5rem;
	border: 0;
	background: none;
	color: var(--gp-white);
	cursor: pointer;
}

.gp-search-overlay__close svg { width: 1.5rem; height: 1.5rem; }

/* Live results dropdown. */
.gp-search-results { margin-top: 1.5rem; max-height: 50vh; overflow-y: auto; }

.gp-search-results__item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: .75rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, .08);
	color: var(--gp-white);
}

.gp-search-results__item:hover { color: var(--gp-primary); }
.gp-search-results__item img { width: 3rem; height: 3rem; object-fit: cover; flex: none; }
.gp-search-results__title { font-size: .9375rem; }
.gp-search-results__price { margin-inline-start: auto; color: var(--gp-primary); font-size: .875rem; }

/* Back to top -------------------------------------------------------------- */

.gp-to-top {
	position: fixed;
	inset-inline-end: 1.25rem;
	bottom: calc(var(--gp-mobilenav-h) + 1.25rem + env(safe-area-inset-bottom, 0px));
	z-index: var(--gp-z-sticky);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	border: 0;
	border-radius: 50%;
	background: var(--gp-black);
	color: var(--gp-white);
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all var(--gp-speed) var(--gp-ease);
}

@media (min-width: 768px) { .gp-to-top { bottom: 1.5rem; } }

.gp-to-top.gp-is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.gp-to-top:hover { background: var(--gp-primary); color: var(--gp-white); }
.gp-to-top svg { width: 1.125rem; height: 1.125rem; }

/* Preloader ---------------------------------------------------------------- */

.gp-preloader {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--gp-surface);
	transition: opacity .4s var(--gp-ease), visibility .4s var(--gp-ease);
}

.gp-preloader.gp-is-done { opacity: 0; visibility: hidden; }

.gp-preloader__mark {
	color: var(--gp-primary);
	font-family: var(--gp-font-heading);
	font-size: 3rem;
	animation: gp-pulse 1.4s var(--gp-ease) infinite;
}

@keyframes gp-pulse {
	0%, 100% { opacity: .35; transform: scale(.96); }
	50% { opacity: 1; transform: scale(1); }
}

/* ==========================================================================
   18. Accessibility & utilities
   ========================================================================== */

.screen-reader-text,
.gp-sr-only {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	position: fixed !important;
	top: .5rem;
	left: .5rem;
	z-index: 9999;
	width: auto;
	height: auto;
	padding: .75rem 1.25rem;
	clip: auto;
	background: var(--gp-black);
	color: var(--gp-white);
	font-size: .875rem;
}

.gp-hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
.gp-hide-scrollbar::-webkit-scrollbar { display: none; }

.gp-text-center { text-align: center; }
.gp-text-left { text-align: left; }
.gp-text-right { text-align: right; }
.gp-mt-0 { margin-top: 0; }
.gp-mb-0 { margin-bottom: 0; }

.gp-hide-mobile { display: none; }

@media (min-width: 768px) {
	.gp-hide-mobile { display: block; }
	.gp-hide-desktop { display: none; }
}

/* Horizontal scroller used by carousels before JS boots. */
.gp-scroller {
	display: flex;
	gap: 1rem;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.gp-scroller::-webkit-scrollbar { display: none; }
.gp-scroller > * { flex: 0 0 auto; scroll-snap-align: start; width: min(78vw, 280px); }

/* Reveal-on-scroll, applied by theme.js. */
.gp-reveal { opacity: 0; transform: translateY(24px); }

.gp-reveal.gp-is-revealed {
	opacity: 1;
	transform: none;
	transition: opacity .7s var(--gp-ease), transform .7s var(--gp-ease);
}

@media (prefers-reduced-motion: reduce) {
	.gp-reveal { opacity: 1; transform: none; }
}

/* Aspect ratio helpers for embeds. */
.gp-embed { position: relative; aspect-ratio: 16 / 9; }
.gp-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.wp-block-embed__wrapper iframe { width: 100%; }

/* ==========================================================================
   19. Print
   ========================================================================== */

@media print {
	.gp-topbar, .gp-header, .gp-footer, .gp-mobile-nav, .gp-to-top,
	.gp-drawer, .gp-overlay, .gp-search-overlay, .gp-sidebar,
	.comment-respond, .gp-post-nav { display: none !important; }

	body { background: #fff; color: #000; padding: 0 !important; }
	a[href]::after { content: " (" attr(href) ")"; font-size: .8em; }
	.gp-layout { display: block; }
}

/* ==========================================================================
   20. Component styles for widget and template-part markup
   ========================================================================== */

/* Editor-facing notice, shown inside Elementor when a widget lacks input. */
.gp-notice {
	margin: 0;
	padding: 1rem 1.25rem;
	background: rgba(57, 134, 245, .08);
	border-left: 3px solid var(--gp-primary);
	color: var(--gp-body-color);
	font-size: .875rem;
}

/* Drawer extras ------------------------------------------------------------ */

.gp-drawer__extras {
	display: flex;
	flex-direction: column;
	gap: .25rem;
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--gp-border);
}

.gp-drawer__extra {
	display: flex;
	align-items: center;
	gap: .75rem;
	padding: .625rem 0;
	color: var(--gp-body-color);
	font-size: .875rem;
}

.gp-drawer__extra:hover { color: var(--gp-primary); }
.gp-drawer__extra svg { width: 1.125rem; height: 1.125rem; color: var(--gp-primary); flex: none; }

.gp-drawer__social { margin-top: 1.5rem; }
.gp-drawer__social a { border-color: var(--gp-border); color: var(--gp-body-color); }

/* Nav item description (mega menus) ---------------------------------------- */

.gp-nav__desc {
	display: block;
	margin-top: .125rem;
	color: var(--gp-muted-light);
	font-size: .6875rem;
	letter-spacing: .04em;
	text-transform: uppercase;
}

/* Payment badges ----------------------------------------------------------- */

.gp-payments {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: .375rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

@media (min-width: 768px) { .gp-payments { justify-content: flex-end; } }

.gp-payments__item {
	padding: .25rem .625rem;
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: var(--gp-radius);
	color: inherit;
	font-size: .625rem;
	letter-spacing: .06em;
	text-transform: uppercase;
	white-space: nowrap;
}

.gp-footer__small { margin-top: .375rem; color: var(--gp-muted); font-size: .6875rem; }

/* Free shipping progress --------------------------------------------------- */

.gp-shipping-note {
	margin-bottom: 1.25rem;
	padding: .875rem 1rem;
	background: var(--gp-card);
	border: 1px solid var(--gp-border);
	border-radius: var(--gp-radius);
	font-size: .8125rem;
}

.gp-shipping-note p {
	display: flex;
	align-items: center;
	gap: .5rem;
	margin: 0;
}

.gp-shipping-note svg { width: 1.125rem; height: 1.125rem; flex: none; color: var(--gp-primary); }
.gp-shipping-note--met { border-left: 3px solid var(--gp-success); }
.gp-shipping-note--met svg { color: var(--gp-success); }

.gp-progress {
	display: block;
	height: 4px;
	margin-top: .625rem;
	background: var(--gp-surface-2);
	border-radius: var(--gp-radius-pill);
	overflow: hidden;
}

.gp-progress__bar {
	display: block;
	height: 100%;
	background: var(--gp-primary);
	border-radius: inherit;
	transition: width var(--gp-speed) var(--gp-ease);
}

.gp-cart-drawer__shipping { padding: 0 var(--gp-gutter); margin-top: 1rem; }

/* Checkout ----------------------------------------------------------------- */

.gp-checkout-secure {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	color: var(--gp-muted);
	font-size: .75rem;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.gp-checkout-secure svg { width: 1rem; height: 1rem; color: var(--gp-success); }

.gp-checkout-trust {
	display: flex;
	align-items: flex-start;
	gap: .5rem;
	margin: 1rem 0 0;
	color: var(--gp-muted);
	font-size: .75rem;
	line-height: 1.6;
}

.gp-checkout-trust svg { width: 1rem; height: 1rem; flex: none; margin-top: .125rem; color: var(--gp-primary); }

.gp-header--checkout .gp-header__actions { gap: 1.5rem; }

/* Carousel controls -------------------------------------------------------- */

.gp-products,
.gp-testimonials-wrap { position: relative; }

.gp-carousel-nav {
	position: absolute;
	top: 0;
	inset-inline-end: 0;
	display: none;
	gap: .5rem;
}

@media (min-width: 768px) { .gp-carousel-nav { display: flex; } }

.gp-carousel-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	background: var(--gp-card);
	border: 1px solid var(--gp-border);
	border-radius: 50%;
	color: var(--gp-heading-color);
	cursor: pointer;
	transition: all var(--gp-speed) var(--gp-ease);
}

.gp-carousel-btn:hover:not(:disabled) { background: var(--gp-primary); border-color: var(--gp-primary); color: var(--gp-white); }
.gp-carousel-btn:disabled { opacity: .35; cursor: default; }
.gp-carousel-btn svg { width: 1rem; height: 1rem; }

/* A carousel track reuses .gp-scroller, so neutralise the grid rules. */
ul.products.gp-scroller { display: flex; grid-template-columns: none; }

/* Quick view --------------------------------------------------------------- */

.gp-quick-view__media { margin-bottom: 1.25rem; }
.gp-quick-view__media img { width: 100%; border-radius: var(--gp-radius); }
.gp-quick-view__title { margin-bottom: .5rem; font-size: 1.5rem; }
.gp-quick-view__excerpt { margin-bottom: 1.25rem; color: var(--gp-muted); font-size: .875rem; }
.gp-quick-view .gp-btn { margin-bottom: .625rem; }

/* Filter drawer is a phone-only mirror of the shop sidebar. */
@media (min-width: 1024px) {
	.gp-filter-drawer { display: none; }
}

/* Checklist ---------------------------------------------------------------- */

.gp-checklist { margin: 0 0 1.5rem; padding: 0; list-style: none; }

.gp-checklist li {
	display: flex;
	align-items: flex-start;
	gap: .625rem;
	margin-bottom: .625rem;
	font-size: .9375rem;
}

.gp-checklist svg { width: 1.125rem; height: 1.125rem; flex: none; margin-top: .1875rem; color: var(--gp-primary); }

/* Media & text ------------------------------------------------------------- */

.gp-media-text__title { margin-bottom: 1rem; }
.gp-media-text__text { margin-bottom: 1.5rem; color: var(--gp-muted); }

/* Newsletter consent ------------------------------------------------------- */

.gp-newsletter__consent {
	max-width: 34rem;
	margin: 1rem auto 0;
	color: #6b7280;
	font-size: .6875rem;
	line-height: 1.6;
}

/* Logo strip --------------------------------------------------------------- */

.gp-logo-strip { text-align: center; }

.gp-logo-strip__caption {
	margin-bottom: 1.5rem;
	color: var(--gp-muted);
	font-size: .6875rem;
	letter-spacing: .2em;
	text-transform: uppercase;
}

.gp-logos--color img { filter: none; opacity: 1; }

/* Marquee text spacing ----------------------------------------------------- */

.gp-marquee__track > span { display: inline-block; }

@media (prefers-reduced-motion: reduce) {
	.gp-marquee__track { animation: none; }
}

/* Blog list layout --------------------------------------------------------- */

.gp-post-list { display: flex; flex-direction: column; gap: 2rem; }

.gp-post-row {
	display: grid;
	gap: 1.25rem;
	grid-template-columns: minmax(0, 1fr);
	padding-bottom: 2rem;
	border-bottom: 1px solid var(--gp-border);
}

@media (min-width: 640px) {
	.gp-post-row { grid-template-columns: 280px minmax(0, 1fr); gap: 2rem; align-items: start; }
}

.gp-post-row__media { overflow: hidden; border-radius: var(--gp-radius); aspect-ratio: 16 / 10; }
.gp-post-row__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--gp-ease); }
.gp-post-row:hover .gp-post-row__media img { transform: scale(1.04); }
.gp-post-row__title { margin: .5rem 0 .75rem; font-size: 1.5rem; }
.gp-post-row__title a { color: var(--gp-heading-color); }
.gp-post-row__title a:hover { color: var(--gp-primary); }

.gp-related-posts { margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid var(--gp-border); }

.gp-page-links {
	display: flex;
	align-items: center;
	gap: .5rem;
	margin-top: 2rem;
	font-size: .875rem;
}

.gp-page-links .post-page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2rem;
	height: 2rem;
	border: 1px solid var(--gp-border);
	border-radius: var(--gp-radius);
}

.gp-page-links .post-page-numbers.current { background: var(--gp-primary); border-color: var(--gp-primary); color: var(--gp-white); }

/* Share -------------------------------------------------------------------- */

.gp-share__label {
	color: var(--gp-muted);
	font-size: .6875rem;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.gp-share__copy {
	padding: 0;
	border: 0;
	background: none;
	color: var(--gp-muted);
	cursor: pointer;
}

.gp-share__copy:hover { color: var(--gp-primary); }
.gp-share__copy svg { width: 1.125rem; height: 1.125rem; }

/* 404 ---------------------------------------------------------------------- */

.gp-404__search { max-width: 30rem; margin: 2rem auto 0; }

/* Live search results ------------------------------------------------------ */

.gp-search-results__empty { color: #9ca3af; font-size: .9375rem; }

.gp-search-results__all {
	justify-content: center;
	color: var(--gp-primary);
	font-size: .75rem;
	letter-spacing: .1em;
	text-transform: uppercase;
}

/* Elementor-built front page ----------------------------------------------- */

.gp-front-page > .elementor { max-width: none; }

/* Shop sidebar ------------------------------------------------------------- */

.gp-shop-sidebar { display: flex; flex-direction: column; gap: 2rem; }

/* Below the sidebar breakpoint the filters live in the drawer instead, so the
   inline sidebar is removed from the flow and from the accessibility tree. */
@media (max-width: 1023.98px) {
	.gp-shop-sidebar { display: none; }
}

/* Quick view loading + copied state ---------------------------------------- */

.gp-quick-view__loading {
	padding: 2rem 0;
	color: var(--gp-muted);
	font-size: .875rem;
	text-align: center;
}

.gp-share__copy.gp-is-copied { color: var(--gp-success); }
