@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;1,400;1,500&display=swap');

/* ============================================================
 * THE PLAYING ELEVEN — Main theme stylesheet
 *
 * Design system carried across sessions:
 *   Display font: Oswald
 *   Body font:    Barlow
 *   Palette:      red / blue / white / black
 *   Signature:    cricket-ball cursor, motion background, hero rotator
 * ============================================================ */

/* ------- TOKENS ----------------------------------------------------------- */
:root {
	/* Brand colour palette */
	--pe-red:           #c0392b;
	--pe-red-dark:      #962f23;
	--pe-red-deep:      #6e1f17;
	--pe-blue:           #0052FF;
	--pe-blue-dark:     #003DBD;
	--pe-blue-deep:     #0a1a2f;
	--pe-white:         #ffffff;
	--pe-cream:         #faf8f5;
	--pe-bone:          #f4f1ec;
	--pe-black:         #0a0a0a;
	--pe-charcoal:      #1f1f1f;
	--pe-gray-900:      #212121;
	--pe-gray-700:      #4b4b4b;
	--pe-gray-500:      #6b7280;
	--pe-gray-300:      #d1d5db;
	--pe-gray-200:      #e5e7eb;
	--pe-gray-100:      #f3f4f6;

	/* Type */
	--pe-font-display:  'Oswald', 'Arial Narrow', sans-serif;
	--pe-font-body:     'Barlow', system-ui, -apple-system, sans-serif;

	/* Layout */
	--pe-container:     1240px;
	--pe-radius-sm:     6px;
	--pe-radius:        12px;
	--pe-radius-lg:     20px;

	/* Shadow */
	--pe-shadow-sm:     0 2px 8px rgba(10,10,10,.06);
	--pe-shadow:        0 8px 24px rgba(10,10,10,.10);
	--pe-shadow-lg:     0 20px 50px rgba(10,10,10,.18);

	/* Motion */
	--pe-ease:          cubic-bezier(.22, .61, .36, 1);
}

/* ------- RESET & BASE ----------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--pe-font-body);
	font-size: 16px;
	line-height: 1.6;
	color: var(--pe-gray-900);
	background: var(--pe-cream);
	overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--pe-red); text-decoration: none; transition: color .2s var(--pe-ease); }
a:hover { color: var(--pe-red-dark); }

h1, h2, h3, h4, h5, h6 {
	font-family: var(--pe-font-display);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: .01em;
	color: var(--pe-charcoal);
	margin: 0 0 .5em;
}

button { font-family: inherit; cursor: pointer; }

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px; width: 1px; overflow: hidden;
	word-wrap: normal !important;
}

.skip-link {
	position: absolute; top: -100px; left: 0;
	background: var(--pe-red); color: var(--pe-white);
	padding: 12px 20px; z-index: 9999;
}
.skip-link:focus { top: 0; }

/* ------- LAYOUT UTILS ----------------------------------------------------- */
.pe-container {
	max-width: var(--pe-container);
	margin: 0 auto;
	padding: 0 24px;
	width: 100%;
}

/* ------- BUTTONS ---------------------------------------------------------- */
.pe-btn {
	display: inline-flex; 
	align-items: center; 
	gap: 8px;
	padding: 14px 28px;
	font-family: var(--pe-font-display);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	border: none;
	border-radius: var(--pe-radius-sm);
	cursor: pointer;
	transition: all .3s var(--pe-ease);
	text-decoration: none;
	white-space: nowrap;
	position: relative;
	overflow: hidden;
}

/* ─────────────────────────────────────────────────────────────
   PRIMARY BUTTON - PREMIUM RED WITH ANIMATED NEON GLOW RINGS
   ───────────────────────────────────────────────────────────── */
.pe-btn--primary {
	background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
	color: var(--pe-white);
	box-shadow: 
		0 0 20px rgba(192, 57, 43, 0.4),
		0 0 40px rgba(192, 57, 43, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	position: relative;
	overflow: visible;
}

/* Animated glow ring #1 - Inner */
.pe-btn--primary::before {
	content: '';
	position: absolute;
	inset: -4px;
	border-radius: var(--pe-radius-sm);
	background: linear-gradient(45deg, #c0392b, #e74c3c, #ff6b6b, #c0392b);
	background-size: 300% 300%;
	opacity: 0;
	z-index: -1;
	transition: all .3s cubic-bezier(0.34, 1.56, 0.64, 1);
	filter: blur(1px);
}

/* Animated glow ring #2 - Outer expanding */
.pe-btn--primary::after {
	content: '';
	position: absolute;
	inset: -12px;
	border-radius: var(--pe-radius-sm);
	border: 1px solid rgba(192, 57, 43, 0);
	background: radial-gradient(circle at center, rgba(192, 57, 43, 0.3), transparent);
	opacity: 0;
	z-index: -2;
	transition: opacity .3s;
	animation: pe-glow-expand 0s;
}

.pe-btn--primary:hover {
	background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
	color: var(--pe-white);
	transform: translateY(-4px) scale(1.02);
	box-shadow: 
		0 0 30px rgba(192, 57, 43, 0.6),
		0 0 60px rgba(192, 57, 43, 0.3),
		0 10px 40px rgba(192, 57, 43, 0.25),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.pe-btn--primary:hover::before {
	opacity: 1;
	animation: pe-glow-pulse-red 1.5s ease-in-out infinite;
}

.pe-btn--primary:hover::after {
	opacity: 1;
	animation: pe-glow-expand 1.5s ease-out infinite;
}

.pe-btn--primary:active {
	transform: translateY(-1px) scale(0.98);
	box-shadow: 
		0 0 20px rgba(192, 57, 43, 0.4),
		0 0 40px rgba(192, 57, 43, 0.2);
}

/* ─────────────────────────────────────────────────────────────
   SECONDARY BUTTON - PREMIUM BLUE WITH ANIMATED NEON GLOW RINGS
   ───────────────────────────────────────────────────────────── */
.pe-btn--secondary {
	background: linear-gradient(135deg, #0a2f7d 0%, #1a5ba6 100%);
	color: var(--pe-white);
	box-shadow: 
		0 0 20px rgba(15, 38, 84, 0.4),
		0 0 40px rgba(15, 38, 84, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	position: relative;
	overflow: visible;
}

.pe-btn--secondary::before {
	content: '';
	position: absolute;
	inset: -4px;
	border-radius: var(--pe-radius-sm);
	background: linear-gradient(45deg, #0a2f7d, #1a5ba6, #4a90e2, #0a2f7d);
	background-size: 300% 300%;
	opacity: 0;
	z-index: -1;
	transition: all .3s cubic-bezier(0.34, 1.56, 0.64, 1);
	filter: blur(1px);
}

.pe-btn--secondary::after {
	content: '';
	position: absolute;
	inset: -12px;
	border-radius: var(--pe-radius-sm);
	border: 1px solid rgba(15, 38, 84, 0);
	background: radial-gradient(circle at center, rgba(15, 38, 84, 0.3), transparent);
	opacity: 0;
	z-index: -2;
	transition: opacity .3s;
	animation: pe-glow-expand 0s;
}

.pe-btn--secondary:hover {
	background: linear-gradient(135deg, #1a5ba6 0%, #0a2f7d 100%);
	color: var(--pe-white);
	transform: translateY(-4px) scale(1.02);
	box-shadow: 
		0 0 30px rgba(15, 38, 84, 0.6),
		0 0 60px rgba(15, 38, 84, 0.3),
		0 10px 40px rgba(15, 38, 84, 0.25),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.pe-btn--secondary:hover::before {
	opacity: 1;
	animation: pe-glow-pulse-blue 1.5s ease-in-out infinite;
}

.pe-btn--secondary:hover::after {
	opacity: 1;
	animation: pe-glow-expand 1.5s ease-out infinite;
}

.pe-btn--secondary:active {
	transform: translateY(-1px) scale(0.98);
	box-shadow: 
		0 0 20px rgba(15, 38, 84, 0.4),
		0 0 40px rgba(15, 38, 84, 0.2);
}

/* ─────────────────────────────────────────────────────────────
   GHOST BUTTON - PREMIUM OUTLINE WITH GLOW
   ───────────────────────────────────────────────────────────── */
.pe-btn--ghost {
	background: transparent;
	color: var(--pe-charcoal);
	border: 2px solid var(--pe-charcoal);
	box-shadow: 0 0 0 rgba(10, 10, 40, 0);
	transition: all .3s var(--pe-ease);
}

.pe-btn--ghost:hover {
	background: var(--pe-charcoal);
	color: var(--pe-white);
	border-color: var(--pe-charcoal);
	transform: translateY(-3px);
	box-shadow: 
		0 8px 25px rgba(10, 10, 40, 0.2),
		0 0 40px rgba(10, 10, 40, 0.15);
}

/* ─────────────────────────────────────────────────────────────
   PREMIUM GLOW ANIMATIONS - ANIMATED RINGS & PULSES
   ───────────────────────────────────────────────────────────── */
@keyframes pe-glow-pulse-red {
	0% {
		opacity: 1;
		transform: scale(0.95);
		background-position: 0% 50%;
		filter: blur(1px);
	}
	50% {
		opacity: 0.8;
		background-position: 100% 50%;
		filter: blur(2px);
	}
	100% {
		opacity: 1;
		transform: scale(1);
		background-position: 0% 50%;
		filter: blur(1px);
	}
}

@keyframes pe-glow-pulse-blue {
	0% {
		opacity: 1;
		transform: scale(0.95);
		background-position: 0% 50%;
		filter: blur(1px);
	}
	50% {
		opacity: 0.8;
		background-position: 100% 50%;
		filter: blur(2px);
	}
	100% {
		opacity: 1;
		transform: scale(1);
		background-position: 0% 50%;
		filter: blur(1px);
	}
}

@keyframes pe-glow-expand {
	0% {
		opacity: 0.6;
		transform: scale(1);
		box-shadow: 0 0 10px rgba(192, 57, 43, 0.4), inset 0 0 10px rgba(192, 57, 43, 0.2);
	}
	50% {
		opacity: 0.3;
	}
	100% {
		opacity: 0;
		transform: scale(1.4);
		box-shadow: 0 0 30px rgba(192, 57, 43, 0.1), inset 0 0 10px rgba(192, 57, 43, 0);
	}
}

/* ─────────────────────────────────────────────────────────────
   SIZE VARIANTS
   ───────────────────────────────────────────────────────────── */
.pe-btn--large {
	padding: 18px 40px;
	font-size: 16px;
	font-weight: 700;
}

.pe-btn--sm {
	padding: 10px 18px;
	font-size: 12px;
	font-weight: 600;
}

/* ─────────────────────────────────────────────────────────────
   ICON ANIMATION
   ───────────────────────────────────────────────────────────── */
.pe-btn svg {
	transition: transform .3s var(--pe-ease);
}

.pe-btn:hover svg {
	transform: translateX(3px);
}

.pe-btn--primary:hover svg {
	transform: translateX(4px) scale(1.1);
}

/* ─────────────────────────────────────────────────────────────
   DISABLED STATE
   ───────────────────────────────────────────────────────────── */
.pe-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none !important;
}

.pe-btn:disabled:hover {
	background: inherit;
	box-shadow: inherit;
	transform: none !important;
}

/* ─────────────────────────────────────────────────────────────
   UNIVERSAL CTA LINKS - APPLY BUTTON STYLES TO ALL MAIN CTAS
   ───────────────────────────────────────────────────────────── */

/* Primary CTA links - Red glow effect */
a.cta-btn--primary,
a[data-cta="primary"],
.pe-hero a.pe-btn,
.pe-section__cta a:not(.pe-btn--ghost),
.pe-featured a.pe-btn--primary,
.pe-gear-showcase a.pe-btn:not(.pe-btn--ghost) {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
	color: var(--pe-white) !important;
	border-radius: var(--pe-radius-sm);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
	font-family: var(--pe-font-display);
	box-shadow: 0 4px 20px rgba(192, 57, 43, 0.3), 0 0 35px rgba(192, 57, 43, 0.15);
	text-decoration: none;
	transition: all .3s var(--pe-ease);
	position: relative;
	overflow: hidden;
}

a.cta-btn--primary:hover,
a[data-cta="primary"]:hover,
.pe-hero a.pe-btn:hover,
.pe-section__cta a:not(.pe-btn--ghost):hover,
.pe-featured a.pe-btn--primary:hover,
.pe-gear-showcase a.pe-btn:not(.pe-btn--ghost):hover {
	background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
	transform: translateY(-4px) scale(1.03);
	box-shadow: 0 10px 35px rgba(192, 57, 43, 0.4), 0 0 60px rgba(192, 57, 43, 0.25);
	color: var(--pe-white) !important;
}

a.cta-btn--primary:active {
	transform: translateY(-1px) scale(0.98);
	box-shadow: 0 4px 20px rgba(192, 57, 43, 0.3), 0 0 35px rgba(192, 57, 43, 0.15);
}

/* Secondary CTA links - Blue glow effect */
a.cta-btn--secondary,
a[data-cta="secondary"],
.pe-featured a.pe-btn--secondary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	background: linear-gradient(135deg, #0a2f7d 0%, #1a5ba6 100%);
	color: var(--pe-white) !important;
	border-radius: var(--pe-radius-sm);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
	font-family: var(--pe-font-display);
	box-shadow: 0 4px 20px rgba(15, 38, 84, 0.3), 0 0 35px rgba(15, 38, 84, 0.15);
	text-decoration: none;
	transition: all .3s var(--pe-ease);
	position: relative;
	overflow: hidden;
}

a.cta-btn--secondary:hover,
a[data-cta="secondary"]:hover,
.pe-featured a.pe-btn--secondary:hover {
	background: linear-gradient(135deg, #1a5ba6 0%, #0a2f7d 100%);
	transform: translateY(-4px) scale(1.03);
	box-shadow: 0 10px 35px rgba(15, 38, 84, 0.4), 0 0 60px rgba(15, 38, 84, 0.25);
	color: var(--pe-white) !important;
}

a.cta-btn--secondary:active {
	transform: translateY(-1px) scale(0.98);
	box-shadow: 0 4px 20px rgba(15, 38, 84, 0.3), 0 0 35px rgba(15, 38, 84, 0.15);
}

/* Arrow animation for all CTAs */
a[href*="shop"]::after,
a[href*="custom"]::after,
a[href*="build"]::after,
a[href*="bulk"]::after,
a[href*="repair"]::after,
.pe-section a::after {
	content: '';
	transition: all .3s var(--pe-ease);
}

a.cta-btn--primary:hover::after,
a[data-cta="primary"]:hover::after {
	transform: translateX(4px);
}

/* ─────────────────────────────────────────────────────────────
   FEATURED SECTION BUTTONS - PREMIUM STYLING
   ───────────────────────────────────────────────────────────── */
.pe-featured a,
.pe-hero__ctas a,
.pe-section a.pe-btn {
	position: relative;
	z-index: 1;
}

.pe-section a.pe-btn:not(.pe-btn--ghost) {
	box-shadow: 0 6px 20px rgba(192, 57, 43, 0.25), 0 0 30px rgba(192, 57, 43, 0.12);
}
.pe-announcement {
	background: var(--pe-blue-deep);
	color: var(--pe-white);
	font-size: 13px;
	letter-spacing: .03em;
	overflow: hidden;
	white-space: nowrap;
}
.pe-ticker { width: 100%; overflow: hidden; }
.pe-ticker__inner {
	display: inline-flex;
	align-items: center;
	padding: 10px 0;
	animation: pe-ticker-scroll 28s linear infinite;
	will-change: transform;
}
.pe-ticker__inner:hover { animation-play-state: paused; }
@keyframes pe-ticker-scroll {
	0%   { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}
.pe-announcement__item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 0 36px;
	border-right: 1px solid rgba(255, 255, 255, 0.18);
	flex-shrink: 0;
}
.pe-announcement__item a { color: var(--pe-white); }
.pe-announcement__item a:hover { color: var(--pe-red); }
.pe-announcement__item--accent { color: #ffd1ca; }

/* ------- SITE HEADER ------------------------------------------------------ */
.site-header {
	background: var(--pe-white);
	box-shadow: var(--pe-shadow-sm);
	position: sticky; top: 0;
	z-index: 100;
}
.site-header__inner {
	display: flex; align-items: center; justify-content: space-between;
	gap: 24px;
	padding: 16px 24px 16px 0;
	min-height: 80px;
}
.site-branding { flex-shrink: 0; }
.pe-logo-link { 
	display: flex; 
	align-items: center; 
	justify-content: center;
	text-decoration: none; 
	border-radius: 50%;
	width: 48px;
	height: 48px;
	background: rgba(192, 57, 43, 0.1);
	transition: all 0.3s ease;
}
.pe-logo-link:hover {
	background: rgba(192, 57, 43, 0.2);
}
.pe-logo {
	font-family: var(--pe-font-display);
	font-size: 18px;
	font-weight: 900;
	color: var(--pe-red);
	letter-spacing: 1px;
	line-height: 1;
}

/* WordPress custom logo — sized to match the 48px logo slot */
.custom-logo-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
	text-decoration: none;
	transition: opacity 0.3s ease;
}
.custom-logo-link:hover { opacity: 0.85; }
.custom-logo-link .custom-logo {
	width: 48px;
	height: 48px;
	object-fit: contain;
	border-radius: 50%;
	display: block;
}
.site-title-link { display: block; text-decoration: none; }
.site-title {
	display: flex; flex-direction: column;
	font-family: var(--pe-font-display);
	font-weight: 700;
	line-height: .9;
	letter-spacing: .03em;
	color: var(--pe-charcoal);
}
.site-title__main { font-size: 18px; }
.site-title__accent {
	font-size: 28px;
	color: var(--pe-red);
	letter-spacing: .12em;
}
.site-tagline {
	display: block;
	font-size: 11px;
	font-family: var(--pe-font-body);
	font-weight: 500;
	letter-spacing: .15em;
	text-transform: uppercase;
	color: var(--pe-gray-500);
	margin-top: 4px;
}

.main-navigation { flex: 1; display: flex; justify-content: center; }
.pe-menu, .pe-menu ul {
	list-style: none; margin: 0; padding: 0;
	display: flex; gap: 8px;
}
.pe-menu li { position: relative; }
.pe-menu a {
	display: flex;
	align-items: center;
	padding: 10px 18px;
	font-family: var(--pe-font-display);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--pe-charcoal);
	border-radius: 8px;
	transition: all .3s cubic-bezier(0.34, 1.56, 0.64, 1);
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, transparent 0%, rgba(192,57,43,0.02) 100%);
}

/* Gradient underline effect */
.pe-menu a::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--pe-red), var(--pe-blue));
	transition: width .4s cubic-bezier(0.34, 1.56, 0.64, 1);
	border-radius: 3px 3px 0 0;
}

/* Hover state - modern gradient */
.pe-menu a:hover, .pe-menu .current-menu-item > a {
	color: var(--pe-red);
	background: linear-gradient(135deg, rgba(192,57,43,0.1) 0%, rgba(0,82,255,0.05) 100%);
	transform: translateY(-2px);
	box-shadow: 0 8px 16px rgba(192,57,43,0.12);
}

.pe-menu a:hover::before, .pe-menu .current-menu-item > a::before {
	width: 100%;
}

/* Submenu styling */
.pe-menu .sub-menu {
	position: absolute; top: 100%; left: 0;
	background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
	box-shadow: 0 12px 32px rgba(0,0,0,0.12);
	min-width: 220px;
	padding: 12px;
	border-radius: 12px;
	flex-direction: column;
	opacity: 0; visibility: hidden;
	transform: translateY(12px) scale(0.95);
	transition: all .3s cubic-bezier(0.34, 1.56, 0.64, 1);
	z-index: 10;
	backdrop-filter: blur(4px);
	border: 1px solid rgba(192,57,43,0.1);
}
.pe-menu li:hover > .sub-menu, .pe-menu li:focus-within > .sub-menu {
	opacity: 1; visibility: visible; transform: translateY(0);
}
.pe-menu .sub-menu a {
	font-size: 13px;
	padding: 10px 14px;
	letter-spacing: .04em;
	color: var(--pe-charcoal);
	border-radius: 6px;
	margin: 2px 0;
	transition: all .25s ease;
	background: transparent;
	position: relative;
}

.pe-menu .sub-menu a::before {
	content: '▸';
	position: absolute;
	left: 8px;
	color: var(--pe-red);
	opacity: 0;
	transition: opacity .2s ease;
	font-weight: bold;
}

.pe-menu .sub-menu a:hover {
	color: var(--pe-red);
	background: rgba(192,57,43,0.08);
	padding-left: 24px;
	transform: none;
	box-shadow: none;
}

.pe-menu .sub-menu a:hover::before {
	opacity: 1;
}

.pe-header-actions { display: flex; gap: 12px; align-items: center; }
.pe-header-icon {
	position: relative;
	display: inline-flex; align-items: center; justify-content: center;
	width: 42px; height: 42px;
	border-radius: 50%;
	color: var(--pe-charcoal);
	background: linear-gradient(135deg, #f5f5f5 0%, #efefef 100%);
	transition: all .3s cubic-bezier(0.34, 1.56, 0.64, 1);
	border: 1px solid rgba(192,57,43,0.1);
	cursor: pointer;
}
.pe-header-icon:hover { 
	background: linear-gradient(135deg, var(--pe-red) 0%, #c0392b 100%);
	color: var(--pe-white);
	transform: translateY(-2px);
	box-shadow: 0 8px 16px rgba(192,57,43,0.2);
}
.pe-cart-count {
	position: absolute; top: -4px; right: -4px;
	background: var(--pe-red);
	color: var(--pe-white);
	font-size: 11px; font-weight: 700;
	min-width: 20px; height: 20px;
	padding: 0 5px;
	border-radius: 10px;
	display: flex; align-items: center; justify-content: center;
	border: 2px solid var(--pe-white);
}

.pe-nav-toggle {
	display: none;
	width: 44px; height: 44px;
	background: transparent;
	border: 0;
	flex-direction: column;
	gap: 5px; align-items: center; justify-content: center;
}
.pe-nav-toggle span {
	width: 24px; height: 2px; background: var(--pe-charcoal);
	transition: all .25s var(--pe-ease);
}

@media (max-width: 980px) {
	.pe-nav-toggle { display: flex; order: 3; }
	.pe-header-actions { order: 2; }
	.main-navigation {
		order: 4;
		position: fixed;
		top: 0; right: -100%;
		width: 320px; max-width: 90vw; height: 100vh;
		background: var(--pe-white);
		box-shadow: var(--pe-shadow-lg);
		padding: 80px 24px 24px;
		transition: right .3s var(--pe-ease);
		justify-content: flex-start;
		z-index: 50;
		overflow-y: auto;
	}
	.main-navigation.is-open { right: 0; }
	.pe-menu { flex-direction: column; gap: 0; width: 100%; }
	.pe-menu a { padding: 14px 8px; font-size: 16px; border-bottom: 1px solid var(--pe-gray-200); border-radius: 0; }
	.pe-menu .sub-menu {
		position: static; opacity: 1; visibility: visible;
		transform: none; box-shadow: none; padding: 0 0 0 16px;
		background: transparent;
	}
	.site-header__inner { padding: 12px 20px; }
	.site-title__main { font-size: 14px; }
	.site-title__accent { font-size: 22px; }
}

/* ------- CRICKET BALL CURSOR ---------------------------------------------- */
.pe-cursor { display: none; }
.pe-cursor.is-active { opacity: 1; display: none; }
.pe-cursor.is-clicking .pe-cursor__ball { transform: scale(.8); display: none; }
.pe-cursor__ball { display: none; }
.pe-cursor__seam { display: none; }
.pe-cursor-trail { display: none; }

/* Disable on touch devices */
@media (hover: none), (max-width: 768px) {
	.pe-cursor, .pe-cursor-trail { display: none; }
}

/* ------- MOTION BACKGROUND ------------------------------------------------ */
.pe-motion-bg {
	position: fixed; inset: 0;
	z-index: -1;
	pointer-events: none;
	overflow: hidden;
}
.pe-motion-bg__layer {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: .25;
	will-change: transform;
}
.pe-motion-bg__layer--1 {
	width: 600px; height: 600px;
	background: radial-gradient(circle, var(--pe-red), transparent 70%);
	top: -200px; left: -200px;
	animation: pe-float-1 22s ease-in-out infinite;
}
.pe-motion-bg__layer--2 {
	width: 700px; height: 700px;
	background: radial-gradient(circle, var(--pe-blue), transparent 70%);
	bottom: -250px; right: -250px;
	animation: pe-float-2 28s ease-in-out infinite;
}
.pe-motion-bg__layer--3 {
	width: 400px; height: 400px;
	background: radial-gradient(circle, #fcd34d, transparent 70%);
	top: 40%; left: 50%;
	opacity: .12;
	animation: pe-float-3 35s ease-in-out infinite;
}
@keyframes pe-float-1 {
	0%, 100% { transform: translate(0, 0) scale(1); }
	33%      { transform: translate(120px, 80px) scale(1.1); }
	66%      { transform: translate(-60px, 140px) scale(.9); }
}
@keyframes pe-float-2 {
	0%, 100% { transform: translate(0, 0) scale(1); }
	33%      { transform: translate(-100px, -60px) scale(.95); }
	66%      { transform: translate(80px, -120px) scale(1.05); }
}
@keyframes pe-float-3 {
	0%, 100% { transform: translate(-50%, -50%) scale(1); }
	50%      { transform: translate(-30%, -60%) scale(1.2); }
}

/* ------- SITEWIDE MOTION GRID (fixed, every page) ---------------------- */
/* Red-tinted lines — visible on the cream (#faf8f5) background            */
.pe-motion-grid {
	position: fixed;
	top: 0; left: 0; width: 100%; height: 100%;
	background-image:
		linear-gradient(rgba(200, 21, 28, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(200, 21, 28, 0.03) 1px, transparent 1px);
	background-size: 60px 60px;
	pointer-events: none;
	z-index: 0;
	animation: gridMotion 20s linear infinite;
}

@keyframes gridMotion {
	0%   { background-position: 0 0, 0 0; }
	100% { background-position: 60px 60px, 60px 60px; }
}

/* ------- SITEWIDE CRICKET MOTION ELEMENTS (fixed, every page) ----------
   Floating bats, orbiting balls, rings, pitch rectangle, scan line,
   sparkle dots — all pointer-events:none so they never block clicks.
------------------------------------------------------------------------- */

/* Scan line */
.hm-scan {
	position: fixed;
	left: 0; right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(200, 21, 28, 0.07), transparent);
	pointer-events: none;
	z-index: 0;
	animation: scanLine 10s linear infinite;
}

/* Floating bat emojis */
.hm-bat {
	position: fixed;
	font-size: clamp(48px, 6vw, 80px);
	opacity: 0.05;
	pointer-events: none;
	z-index: 0;
	animation: floatBat 6s ease-in-out infinite;
}
.hm-bat1 { top: 12%; left: 4%; animation-delay: 0s; }
.hm-bat2 { bottom: 18%; right: 6%; animation-delay: 3s; transform: rotate(45deg); }

/* Orbiting ball circles */
.hm-ball {
	position: fixed;
	border-radius: 50%;
	border: 2px solid rgba(200, 21, 28, 0.12);
	pointer-events: none;
	z-index: 0;
	animation: drift2 9s ease-in-out infinite;
}
.hm-ball::after {
	content: '';
	position: absolute;
	inset: 4px;
	border-radius: 50%;
	border: 1px solid rgba(200, 21, 28, 0.07);
}
.hm-b1 { width: clamp(28px, 4vw, 48px); height: clamp(28px, 4vw, 48px); top: 18%; right: 14%; animation-delay: 0s; }
.hm-b2 { width: clamp(18px, 3vw, 32px); height: clamp(18px, 3vw, 32px); bottom: 28%; left: 10%; animation-delay: 3.5s; }
.hm-b3 { width: clamp(12px, 2vw, 22px); height: clamp(12px, 2vw, 22px); top: 58%; right: 22%; animation-delay: 6s; }

/* Concentric rings */
.hm-ring {
	position: fixed;
	border-radius: 50%;
	border: 1px solid rgba(200, 21, 28, 0.06);
	pointer-events: none;
	z-index: 0;
	animation: drift3 14s ease-in-out infinite;
}
.hm-r1 { width: clamp(180px, 28vw, 380px); height: clamp(180px, 28vw, 380px); top: 50%; left: 50%; transform: translate(-50%, -50%); animation-delay: 0s; }
.hm-r2 { width: clamp(120px, 18vw, 260px); height: clamp(120px, 18vw, 260px); top: 8%; right: 4%; animation-delay: 5s; }

/* Pitch rectangle */
.hm-pitch {
	position: fixed;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: clamp(50px, 7vw, 110px);
	height: clamp(90px, 18vh, 200px);
	border: 1px solid rgba(200, 21, 28, 0.06);
	border-radius: 2px;
	pointer-events: none;
	z-index: 0;
	animation: pitchPulse 5s ease-in-out infinite;
}
.hm-pitch::before,
.hm-pitch::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 1px;
	background: rgba(200, 21, 28, 0.05);
	left: 0;
}
.hm-pitch::before { top: 30%; }
.hm-pitch::after  { bottom: 30%; }

/* Sparkle dots */
.hm-spark {
	position: fixed;
	width: 4px;
	height: 4px;
	background: var(--pe-red);
	border-radius: 50%;
	pointer-events: none;
	z-index: 0;
	animation: sparkle 3.5s ease-in-out infinite;
}
.hm-sp1 { top: 28%;  left: 18%;  animation-delay: 0s; }
.hm-sp2 { top: 58%;  left: 58%;  animation-delay: 1.2s; }
.hm-sp3 { top: 18%;  right: 28%; animation-delay: 2.4s; }
.hm-sp4 { bottom: 22%; left: 38%; animation-delay: 0.7s; }

/* Keyframes for cricket motion elements */
@keyframes floatBat {
	0%, 100% { transform: rotate(0deg)   translateY(0); }
	50%       { transform: rotate(0deg)   translateY(-18px); }
}
.hm-bat2 { transform: rotate(45deg); }
@keyframes drift2 {
	0%, 100% { transform: translateX(0)   translateY(0); }
	50%       { transform: translateX(-45px) translateY(-35px); }
}
@keyframes drift3 {
	0%, 100% { transform: translate(-50%, -50%) scale(1); }
	33%       { transform: translate(-50%, -50%) scale(1.06); }
	66%       { transform: translate(-50%, -50%) scale(0.94); }
}
.hm-r2 { transform: none; }
@keyframes pitchPulse {
	0%, 100% { opacity: 0.05; }
	50%       { opacity: 0.11; }
}
@keyframes sparkle {
	0%, 100% { opacity: 0; transform: scale(0); }
	50%       { opacity: 1; transform: scale(1); }
}
@keyframes scanLine {
	0%   { transform: translateY(-10px); }
	100% { transform: translateY(100vh); }
}

/* ------- SITEWIDE REFERENCE BLOBS (fixed, every page) ------------------
   Exact colours, sizes, and positions from reference index_17.html:
     blob-1: #C8151C red,  700×700, top:-100px  right:-200px, opacity .08
     blob-2: #C8151C red,  400×400, bottom:-100px right:200px, opacity .04
     blob-3: #D4900A gold, 200×200, top:20%     left:10%,     opacity .07
   Motion added (staggered blobFloat) since these are sitewide bg elements.
------------------------------------------------------------------------- */
.pe-ref-blob {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
}
.pe-ref-blob--1 {
	width: 700px; height: 700px;
	background: #C8151C;
	right: -200px; top: -100px;
	opacity: .08;
	animation: blobFloat 12s ease-in-out infinite;
}
.pe-ref-blob--2 {
	width: 400px; height: 400px;
	background: #C8151C;
	right: 200px; bottom: -100px;
	opacity: .04;
	animation: blobFloat 16s ease-in-out infinite 3s;
}
.pe-ref-blob--3 {
	width: 200px; height: 200px;
	background: #D4900A;
	left: 10%; top: 20%;
	opacity: .07;
	animation: blobFloat 20s ease-in-out infinite 6s;
}

/* ------- SECTION HEADERS -------------------------------------------------- */
.pe-eyebrow {
	display: inline-block;
	font-family: var(--pe-font-display);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .25em;
	text-transform: uppercase;
	color: var(--pe-red);
	margin-bottom: 16px;
}
.pe-eyebrow--light { color: rgba(255,255,255,.85); }
.pe-section-header {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 64px;
}
.pe-section-header--left {
	text-align: left;
	margin: 0 0 48px;
}
.pe-section-title {
	font-size: clamp(32px, 5vw, 56px);
	font-weight: 700;
	margin: 0 0 16px;
	letter-spacing: .01em;
}
.pe-section-sub {
	font-size: 17px;
	color: var(--pe-gray-700);
	margin: 0;
}

/* ------- HERO ------------------------------------------------------------- */
.pe-hero {
	padding: 120px 0 140px;
	position: relative;
	overflow: visible;
	background: transparent;
}

/* ANIMATED GRID BACKGROUND — moved to .pe-motion-grid in header (sitewide) */

/* FLOATING RED BLOB — moved to .pe-motion-redblob in header (sitewide) */

@keyframes blobFloat {
	0%, 100% { transform: translate(0, 0); }
	25% { transform: translate(30px, -40px); }
	50% { transform: translate(0, -80px); }
	75% { transform: translate(-30px, -40px); }
}

.pe-hero__inner {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 80px;
	align-items: center;
	justify-items: start;
	position: relative;
	z-index: 10;
}

.pe-hero__copy {
	/* content visible — layout and text styles set in hero override block below */
}

.pe-hero__showcase {
	position: relative;
	aspect-ratio: 9 / 12;
	width: 100%;
	max-width: 520px;
	z-index: 20;
	justify-self: end;
	animation: showcaseSlideIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
	border-radius: 32px;
}

.pe-hero__showcase::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 32px;
	background: 
		/* Multiple layers of sparkles at different positions */
		radial-gradient(circle at 10% 15%, rgba(255,255,255,0.8) 0%, transparent 1.5%),
		radial-gradient(circle at 20% 25%, rgba(255,255,150,0.7) 0%, transparent 1.2%),
		radial-gradient(circle at 85% 10%, rgba(255,220,100,0.8) 0%, transparent 1.5%),
		radial-gradient(circle at 90% 20%, rgba(255,255,200,0.6) 0%, transparent 1%),
		radial-gradient(circle at 30% 85%, rgba(255,255,255,0.7) 0%, transparent 1.2%),
		radial-gradient(circle at 15% 75%, rgba(255,240,180,0.6) 0%, transparent 1%),
		radial-gradient(circle at 80% 80%, rgba(255,200,100,0.7) 0%, transparent 1.3%),
		radial-gradient(circle at 88% 70%, rgba(255,255,255,0.5) 0%, transparent 1%),
		radial-gradient(circle at 45% 10%, rgba(255,255,200,0.6) 0%, transparent 0.8%),
		radial-gradient(circle at 70% 50%, rgba(255,220,150,0.5) 0%, transparent 0.9%);
	background-size: 100% 100%;
	animation: glitterSparks 2.5s ease-in-out infinite;
	pointer-events: none;
	z-index: 5;
	mix-blend-mode: screen;
}

@keyframes glitterSparks {
	0% {
		opacity: 0;
	}
	25% {
		opacity: 0.6;
	}
	50% {
		opacity: 1;
	}
	75% {
		opacity: 0.7;
	}
	100% {
		opacity: 0;
	}
}

@keyframes showcaseSlideIn {
	from {
		opacity: 0;
		transform: translateX(60px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.pe-hero__showcase:hover .pe-hero__rotator {
	transform: translateY(-12px);
	box-shadow:
		0 48px 96px rgba(0,0,0,0.20),
		0 0 0 1px rgba(200,21,28,0.15),
		inset 0 1px 0 rgba(255,255,255,0.95);
}

/* PRODUCT ROTATOR - PREMIUM CARD */
.pe-hero__rotator {
	position: relative;
	width: 100%; height: 100%;
	border-radius: 32px;
	overflow: hidden;
	background: linear-gradient(160deg, #f7f3f0 0%, #faf8f5 50%, #f0ece8 100%);
	border-top: 4px solid var(--pe-red);
	box-shadow:
		0 32px 80px rgba(0,0,0,0.14),
		0 0 0 1px rgba(200,21,28,0.1),
		inset 0 1px 0 rgba(255,255,255,0.9);
	transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* CORNER SPARKLE EFFECTS */
.pe-hero__rotator::before {
	content: '';
	position: absolute;
	inset: 0;
	background: 
		/* Top corners - bright white */
		radial-gradient(circle at 5% 3%, rgba(255,255,255,0.9) 0%, transparent 2%),
		radial-gradient(circle at 95% 2%, rgba(255,255,200,0.85) 0%, transparent 2.2%),
		/* Mid-top - golden */
		radial-gradient(circle at 50% 2%, rgba(255,230,100,0.8) 0%, transparent 1.5%),
		/* Side sparkles */
		radial-gradient(circle at 2% 45%, rgba(255,255,255,0.7) 0%, transparent 1.8%),
		radial-gradient(circle at 98% 50%, rgba(255,220,80,0.75) 0%, transparent 2%),
		/* Bottom corners */
		radial-gradient(circle at 8% 97%, rgba(255,255,255,0.65) 0%, transparent 1.8%),
		radial-gradient(circle at 92% 96%, rgba(255,200,50,0.8) 0%, transparent 2%),
		/* Additional sparkles - mid card */
		radial-gradient(circle at 35% 15%, rgba(255,240,150,0.6) 0%, transparent 1.2%),
		radial-gradient(circle at 70% 25%, rgba(255,255,255,0.55) 0%, transparent 1.3%),
		radial-gradient(circle at 25% 65%, rgba(255,220,100,0.5) 0%, transparent 1%),
		/* Geometric accents */
		linear-gradient(45deg, rgba(200, 21, 28, 0.12) 0%, transparent 50%),
		linear-gradient(-45deg, rgba(212, 144, 10, 0.08) 0%, transparent 50%);
	border-radius: 32px;
	pointer-events: none;
	z-index: 1;
	animation: cornerSparkle 3s ease-in-out infinite;
	mix-blend-mode: screen;
}

@keyframes cornerSparkle {
	0% { 
		opacity: 0.2;
		filter: brightness(0.9);
	}
	25% { 
		opacity: 1;
		filter: brightness(1.6);
	}
	50% { 
		opacity: 0.5;
		filter: brightness(1.2);
	}
	75% { 
		opacity: 0.9;
		filter: brightness(1.4);
	}
	100% { 
		opacity: 0.2;
		filter: brightness(0.9);
	}
}

@keyframes geometricFlow {
	0% { background-position: 0 0, 0 0; }
	100% { background-position: 150px 150px, -150px 150px; }
}

/* GLOWING DYNAMIC LIGHT */
.pe-hero__rotator::after {
	content: '';
	position: absolute;
	width: 450px; height: 450px;
	background: radial-gradient(circle, rgba(200, 21, 28, 0.18) 0%, rgba(212, 144, 10, 0.06) 35%, transparent 70%);
	border-radius: 50%;
	top: 45%; left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	animation: glowDance 5s ease-in-out infinite;
	filter: blur(50px);
}

@keyframes glowDance {
	0%, 100% { 
		opacity: 0.5;
		transform: translate(-50%, -50%) scale(1) translateY(0);
	}
	50% { 
		opacity: 0.85;
		transform: translate(-50%, -50%) scale(1.15) translateY(-15px);
	}
}

.pe-hero__slide {
	position: absolute; inset: 0;
	display: flex; flex-direction: column;
	justify-content: flex-end;
	opacity: 0;
	transform: scale(1.04);
	transition: opacity .6s var(--pe-ease), transform .8s var(--pe-ease);
	pointer-events: none;
	color: var(--pe-white);
	z-index: 2;
}

.pe-hero__slide.is-active {
	opacity: 1;
	transform: scale(1);
	pointer-events: auto;
}

.pe-hero__slide.is-active:hover .pe-hero__slide-image img {
	transform: scale(1.08) translateY(-8px);
	filter: drop-shadow(0 28px 48px rgba(0,0,0,0.25)) brightness(1.05);
}

.pe-hero__slide.is-active:hover .pe-hero__slide-info {
	background: linear-gradient(0deg, rgba(200,21,28,0.95) 0%, rgba(10,10,30,0.85) 70%, transparent 100%);
	transform: translateY(-8px);
}

/* PRODUCT IMAGE - PREMIUM CUTOUT */
.pe-hero__slide-image {
	position: absolute;
	top: 0; left: 0; right: 0;
	bottom: 130px;
	display: flex; align-items: center; justify-content: center;
	padding: 0;
	overflow: hidden;
	z-index: 3;
	background: 
		repeating-linear-gradient(
			90deg,
			rgba(200,21,28,0.02) 0px,
			rgba(200,21,28,0.02) 2px,
			transparent 2px,
			transparent 4px
		),
		repeating-linear-gradient(
			0deg,
			rgba(212,144,10,0.02) 0px,
			rgba(212,144,10,0.02) 2px,
			transparent 2px,
			transparent 4px
		),
		radial-gradient(circle at 30% 30%, rgba(255,255,255,0.08) 0%, transparent 50%);
	background-blend-mode: overlay;
}

.pe-hero__slide-image img {
	height: 120%;
	width: 110%;
	max-width: none;
	object-fit: contain;
	object-position: center center;
	mix-blend-mode: normal;
	filter: drop-shadow(0 20px 40px rgba(0,0,0,0.18)) contrast(1.02);
	transition: transform .5s cubic-bezier(0.34, 1.56, 0.64, 1), filter .5s ease;
	will-change: transform, filter;
}

@keyframes productFloat {
	0%, 100% { transform: translateY(0px); }
	50%       { transform: translateY(-10px); }
}

/* SHADOW BENEATH PRODUCT */
.pe-hero__slide-image::before { display: none; }

/* PREMIUM GRADIENT LIGHTING */
.pe-hero__slide-image::after {
	content: '';
	position: absolute;
	inset: 0;
	background: 
		linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 50%, rgba(200, 21, 28, 0.04) 100%),
		radial-gradient(ellipse 100% 60% at 50% -20%, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
	border-radius: 20px;
	pointer-events: none;
	z-index: 3;
}

.pe-hero__slide.is-active .pe-hero__slide-image img {
	animation: productFloat 4s ease-in-out infinite;
	filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}

/* PRODUCT INFO - REDESIGNED */
.pe-hero__slide-info {
	position: absolute;
	bottom: 0; left: 0; right: 0;
	min-height: 130px;
	padding: 20px 28px 24px;
	background: linear-gradient(0deg, rgba(10,10,30,0.95) 0%, rgba(10,10,30,0.80) 60%, transparent 100%);
	z-index: 4;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	border-bottom-left-radius: 28px;
	border-bottom-right-radius: 28px;
	transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
	will-change: transform, background;
}

.pe-hero__slide-cat {
	font-family: var(--pe-font-display);
	font-size: 11px;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--pe-red);
	display: block;
	margin-bottom: 6px;
	font-weight: 700;
	transition: color 0.3s ease;
}

.pe-hero__slide.is-active:hover .pe-hero__slide-cat {
	color: #ff6b6b;
	letter-spacing: 3.5px;
}

.pe-hero__slide-title {
	font-size: 20px;
	color: #fff;
	margin: 0 0 8px;
	font-weight: 700;
	line-height: 1.3;
	white-space: normal;
	word-wrap: break-word;
	overflow: visible;
	text-overflow: clip;
	transition: all 0.3s ease;
}

.pe-hero__slide.is-active:hover .pe-hero__slide-title {
	color: #fff;
	font-size: 22px;
	letter-spacing: 0.5px;
}

.pe-hero__slide-price {
	font-family: var(--pe-font-display);
	font-size: 24px;
	font-weight: 800;
	color: #fff;
	transition: all 0.3s ease;
	display: flex;
	align-items: baseline;
	gap: 8px;
}

.pe-hero__slide.is-active:hover .pe-hero__slide-price {
	color: var(--pe-red);
	font-size: 26px;
}

.pe-hero__slide-price .amount,
.pe-hero__slide-price ins,
.pe-hero__slide-price del { color: var(--pe-white) !important; }
.pe-hero__slide-price del { opacity: .55; margin-right: 8px; }

/* CAROUSEL DOTS - PREMIUM */
.pe-hero__dots {
	position: absolute; bottom: -40px; left: 0; right: 0;
	display: flex; gap: 12px;
	justify-content: center;
	z-index: 20;
}

.pe-hero__dot {
	width: 12px; height: 12px;
	border-radius: 50%;
	background: rgba(200, 21, 28, 0.35);
	border: 1.5px solid rgba(200, 21, 28, 0.5);
	padding: 0;
	transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
	box-shadow: 0 0 10px rgba(200, 21, 28, 0.1);
}

.pe-hero__dot.is-active { 
	background: linear-gradient(135deg, #C8151C 0%, #E01E26 100%);
	width: 32px;
	border-radius: 8px;
	box-shadow: 0 0 25px rgba(200, 21, 28, 0.5);
	border-color: rgba(255, 255, 255, 0.4);
}

.pe-hero__dot:hover {
	background: rgba(200, 21, 28, 0.5);
	box-shadow: 0 0 15px rgba(200, 21, 28, 0.25);
}
.pe-hero__title {
	font-size: clamp(44px, 7vw, 88px);
	line-height: .95;
	letter-spacing: -.01em;
	margin: 0 0 24px;
}
.pe-hero__title-accent {
	color: var(--pe-red);
	font-style: italic;
	display: inline-block;
	position: relative;
}
.pe-hero__title-accent::after {
	content: '';
	position: absolute;
	left: 0; right: 0; bottom: 6px;
	height: 8px;
	background: rgba(192,57,43,.18);
	z-index: -1;
}
.pe-hero__subtitle {
	font-family: 'Lora', Georgia, serif;
	font-size: 18px;
	font-style: italic;
	font-weight: 400;
	line-height: 1.7;
	color: var(--pe-gray-700);
	max-width: 520px;
	margin: 0 0 36px;
	letter-spacing: 0.01em;
}
.pe-hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.pe-hero__showcase {
	position: relative;
	aspect-ratio: 2 / 3;
	max-width: 400px;
	margin-left: auto;
	width: 100%;
}
.pe-hero__rotator {
	position: relative;
	width: 100%; height: 100%;
	border-radius: 20px;
	overflow: hidden;
	background: linear-gradient(160deg, #f7f3f0 0%, #faf8f5 50%, #f0ece8 100%);
	box-shadow:
		0 32px 80px rgba(0,0,0,0.14),
		0 0 0 1px rgba(200,21,28,0.1),
		inset 0 1px 0 rgba(255,255,255,0.9);
	border-top: 3px solid var(--pe-red);
}
.pe-hero__slide {
	position: absolute; inset: 0;
	display: flex; flex-direction: column;
	justify-content: flex-end;
	opacity: 0;
	transform: scale(1.04);
	transition: opacity .6s var(--pe-ease), transform .8s var(--pe-ease);
	pointer-events: none;
	color: var(--pe-white);
}
.pe-hero__slide.is-active {
	opacity: 1;
	transform: scale(1);
	pointer-events: auto;
}
.pe-hero__slide-image {
	position: absolute;
	top: 0; left: 0; right: 0;
	bottom: 110px;
	display: flex; align-items: center; justify-content: center;
	padding: 24px 20px 12px;
	overflow: hidden;
}
.pe-hero__slide-image img {
	height: 100%;
	width: auto;
	max-width: 100%;
	object-fit: contain;
	mix-blend-mode: normal;
	filter: drop-shadow(0 16px 32px rgba(0,0,0,0.15));
}
.pe-hero__slide-placeholder {
	font-size: 200px;
	opacity: .3;
}
.pe-hero__slide-info {
	position: absolute;
	bottom: 0; left: 0; right: 0;
	height: 110px;
	padding: 14px 20px 18px;
	background: linear-gradient(0deg, rgba(10,10,30,0.90) 0%, rgba(10,10,30,0.72) 70%, transparent 100%);
	z-index: 2;
	display: flex; flex-direction: column; justify-content: flex-end;
}
.pe-hero__slide-cat {
	font-family: var(--pe-font-display);
	font-size: 10px;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #ff6b6b;
	display: block;
	margin-bottom: 4px;
	font-weight: 700;
}
.pe-hero__slide-title {
	font-size: 16px;
	color: #fff;
	margin: 0 0 5px;
	font-weight: 700;
	line-height: 1.2;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.pe-hero__slide-price {
	font-family: var(--pe-font-display);
	font-size: 18px;
	font-weight: 800;
	color: #fff;
}
.pe-hero__slide-price .amount,
.pe-hero__slide-price ins,
.pe-hero__slide-price del { color: var(--pe-white) !important; }
.pe-hero__slide-price del { opacity: .55; margin-right: 8px; }

.pe-hero__dots {
	position: absolute; bottom: -32px; left: 0; right: 0;
	display: flex; gap: 10px;
	justify-content: center;
}
.pe-hero__dot {
	width: 10px; height: 10px;
	border-radius: 50%;
	background: var(--pe-gray-300);
	border: 0;
	padding: 0;
	transition: all .25s var(--pe-ease);
}
.pe-hero__dot.is-active { background: var(--pe-red); width: 28px; border-radius: 5px; }

@media (max-width: 900px) {
	.pe-hero { padding: 48px 0 80px; }
	.pe-hero__inner { grid-template-columns: 1fr; gap: 40px; }
	.pe-hero__showcase { max-width: 340px; aspect-ratio: 2 / 3; }
}

/* ------- TRUST STATS MARQUEE ------------------------------------------------ */
.pe-trust-stats {
	background: var(--pe-blue-deep);
	padding: 8px 0;
	overflow: hidden;
	position: relative;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pe-trust-stats::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		90deg,
		transparent 0%,
		rgba(255, 255, 255, 0.03) 20%,
		rgba(255, 255, 255, 0.05) 50%,
		rgba(255, 255, 255, 0.03) 80%,
		transparent 100%
	);
	animation: pe-shimmer 3s infinite;
	pointer-events: none;
	z-index: 2;
}

.pe-trust-stats::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.08),
		transparent
	);
	animation: pe-shine 3s infinite;
	pointer-events: none;
}

@keyframes pe-shimmer {
	0%, 100% { opacity: 0.3; }
	50% { opacity: 0.8; }
}

@keyframes pe-shine {
	0% { left: -100%; }
	100% { left: 100%; }
}

.pe-trust-stats__wrapper {
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.pe-trust-stats__carousel {
	display: flex;
	gap: 40px;
	animation: pe-stats-scroll 30s linear infinite;
	width: fit-content;
	padding: 0;
	align-items: center;
}

.pe-trust-stats__carousel:hover {
	animation-play-state: paused;
}

.pe-trust-stats__carousel:hover .pe-stat-item {
	animation-play-state: paused;
}

@keyframes pe-stats-scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(calc(-50% - 20px));
	}
}

.pe-stat-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-width: 90px;
	text-align: center;
	padding: 0 10px;
	position: relative;
	transition: all 0.3s var(--pe-ease);
}

.pe-stat-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
	border-radius: 4px;
	opacity: 0;
	transition: opacity 0.3s var(--pe-ease);
}

.pe-stat-item:hover::before {
	opacity: 1;
}

.pe-stat-number {
	font-size: 16px;
	font-weight: 900;
	background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-family: var(--pe-font-display);
	letter-spacing: 0.05em;
	margin-bottom: 3px;
	animation: pe-float 3s ease-in-out infinite;
	position: relative;
	z-index: 1;
	filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.15));
}

.pe-stat-number::after {
	content: '';
	position: absolute;
	top: -1px;
	left: -4px;
	right: -4px;
	bottom: -1px;
	background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 60%);
	border-radius: 2px;
	animation: pe-pulse 2s ease-in-out infinite;
	z-index: -1;
	opacity: 0.6;
}

.pe-stat-label {
	font-size: 8px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.72);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	line-height: 1.2;
	position: relative;
	z-index: 1;
	transition: color 0.3s var(--pe-ease);
}

.pe-stat-item:hover .pe-stat-label {
	color: rgba(255, 255, 255, 0.95);
}

@keyframes pe-float {
	0%, 100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-2px);
	}
}

@keyframes pe-pulse {
	0%, 100% {
		transform: scale(1);
		opacity: 0.6;
	}
	50% {
		transform: scale(1.1);
		opacity: 0.3;
	}
}

@media (max-width: 768px) {
	.pe-trust-stats {
		padding: 6px 0;
	}
	
	.pe-trust-stats__carousel {
		gap: 25px;
	}
	
	.pe-stat-item {
		min-width: 65px;
		padding: 0 6px;
	}
	
	.pe-stat-number {
		font-size: 12px;
	}
	
	.pe-stat-label {
		font-size: 7px;
	}
}

/* ------- CATEGORY GRID ---------------------------------------------------- */
.pe-categories {
	padding: 100px 0;
	background: transparent;
}
.pe-category-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
@media (max-width: 900px) { .pe-category-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pe-category-grid { grid-template-columns: 1fr; } }

.pe-cat-card {
	display: block;
	background: var(--pe-bone);
	border-radius: var(--pe-radius);
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	border: 2px solid transparent;
	transition: all .3s var(--pe-ease);
	position: relative;
}
.pe-cat-card:hover {
	transform: translateY(-6px);
	border-color: var(--pe-red);
	box-shadow: var(--pe-shadow);
	color: inherit;
}
.pe-cat-card__image {
	aspect-ratio: 5 / 4;
	display: flex; align-items: center; justify-content: center;
	background: linear-gradient(135deg, var(--pe-blue-deep) 0%, var(--pe-blue) 100%);
	overflow: hidden;
	position: relative;
}
.pe-cat-card__image img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform .5s var(--pe-ease);
}
.pe-cat-card:hover .pe-cat-card__image img { transform: scale(1.06); }
.pe-cat-card__emoji { font-size: 96px; filter: drop-shadow(0 8px 24px rgba(0,0,0,.3)); }
.pe-cat-card__body { padding: 24px 28px; }
.pe-cat-card__tag {
	display: inline-block;
	font-family: var(--pe-font-display);
	font-size: 11px;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--pe-red);
	margin-bottom: 8px;
}
.pe-cat-card__title {
	font-size: 26px;
	margin: 0 0 12px;
	color: var(--pe-charcoal);
}
.pe-cat-card__cta {
	display: inline-flex; align-items: center; gap: 8px;
	font-family: var(--pe-font-display);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--pe-charcoal);
}
.pe-cat-card__arrow { transition: transform .25s var(--pe-ease); }
.pe-cat-card:hover .pe-cat-card__arrow { transform: translateX(6px); color: var(--pe-red); }

/* ------- FEATURED PRODUCTS GRID (homepage) -------------------------------- */
.pe-featured {
	padding: 100px 0;
	background: transparent;
}
.pe-product-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
@media (max-width: 1100px) { .pe-product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px)  { .pe-product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .pe-product-grid { grid-template-columns: 1fr; } }

.pe-product-card {
	background: var(--pe-white);
	border-radius: var(--pe-radius);
	overflow: visible;
	position: relative;
	box-shadow: var(--pe-shadow-sm);
	transition: all .3s var(--pe-ease);
	display: flex; flex-direction: column;
}
.pe-product-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--pe-shadow);
}
.pe-product-card__link {
	display: flex; flex-direction: column;
	flex: 1;
	color: inherit;
	text-decoration: none;
}
.pe-product-card__link:hover { color: inherit; }
.pe-product-card__image {
	aspect-ratio: 1;
	background: var(--pe-bone);
	overflow: hidden;
	position: relative;
}
.pe-product-card__image img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform .5s var(--pe-ease);
}
.pe-product-card:hover .pe-product-card__image img { transform: scale(1.05); }
.pe-product-card__placeholder {
	width: 100%; height: 100%;
	display: flex; align-items: center; justify-content: center;
	font-size: 80px; opacity: .4;
}
.pe-product-card__badge {
	position: absolute;
	top: 12px; left: 12px;
	font-family: var(--pe-font-display);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .15em;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: 4px;
	z-index: 2;
}
.pe-product-card__badge--sale { background: var(--pe-red); color: var(--pe-white); }
.pe-product-card__badge--hot  { background: var(--pe-blue); color: var(--pe-white); top: 12px; right: 12px; left: auto; }
.pe-product-card__body { padding: 16px 18px; flex: 1; }
.pe-product-card__cat {
	font-family: var(--pe-font-display);
	font-size: 11px;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--pe-gray-500);
	display: block;
	margin-bottom: 4px;
}
.pe-product-card__title {
	font-size: 17px;
	font-weight: 600;
	margin: 0 0 8px;
	line-height: 1.25;
	color: var(--pe-charcoal);
}
.pe-product-card__price {
	font-family: var(--pe-font-display);
	font-size: 18px;
	font-weight: 600;
	color: var(--pe-red);
}
.pe-product-card .button,
.pe-product-card .added_to_cart {
	display: block !important;
	margin: 0 18px 18px !important;
	padding: 10px 16px !important;
	background: var(--pe-charcoal) !important;
	color: var(--pe-white) !important;
	text-align: center;
	border-radius: var(--pe-radius-sm);
	font-family: var(--pe-font-display);
	font-size: 12px !important;
	letter-spacing: .15em;
	text-transform: uppercase;
	font-weight: 600;
	border: 0;
	text-decoration: none;
	transition: background .2s var(--pe-ease);
}
.pe-product-card .button:hover,
.pe-product-card .added_to_cart:hover { background: var(--pe-red) !important; }

.pe-featured__more { text-align: center; margin-top: 56px; }

/* ------- BULK STRIP CTA --------------------------------------------------- */
.pe-bulk-strip {
	padding: 80px 0;
	background: linear-gradient(135deg, rgba(13,27,64,0.93) 0%, rgba(26,58,123,0.91) 100%);
	color: var(--pe-white);
	position: relative;
	overflow: visible;
}
.pe-bulk-strip::before {
	content: '🏏';
	position: absolute;
	font-size: 320px;
	opacity: .04;
	right: -40px; top: 50%;
	transform: translateY(-50%) rotate(-15deg);
}
.pe-bulk-strip__inner {
	display: grid;
	grid-template-columns: 1.6fr 1fr;
	gap: 40px;
	align-items: center;
	position: relative; z-index: 1;
}
.pe-bulk-strip h2 {
	font-size: clamp(32px, 4.5vw, 48px);
	color: var(--pe-white);
	margin: 0 0 12px;
}
.pe-bulk-strip p {
	font-size: 17px;
	color: rgba(255,255,255,.85);
	margin: 0;
	max-width: 560px;
}
.pe-bulk-strip__inner > a { justify-self: end; }
@media (max-width: 800px) {
	.pe-bulk-strip__inner { grid-template-columns: 1fr; }
	.pe-bulk-strip__inner > a { justify-self: start; }
}

/* ------- TRUST STRIP ------------------------------------------------------ */
.pe-trust { padding: 60px 0; background: transparent; }
.pe-trust__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
}
@media (max-width: 800px) { .pe-trust__grid { grid-template-columns: repeat(2, 1fr); } }
.pe-trust__item { text-align: center; }
.pe-trust__icon { display: block; font-size: 40px; margin-bottom: 12px; }
.pe-trust__item h4 {
	font-size: 18px; margin: 0 0 4px;
}
.pe-trust__item p {
	font-size: 14px; color: var(--pe-gray-500); margin: 0;
}

/* ------- BULK ORDERS PAGE ------------------------------------------------- */
.pe-bulk-page { padding-bottom: 80px; }
.pe-bulk-hero {
	padding: 100px 0 80px;
	background: linear-gradient(135deg, var(--pe-cream) 0%, var(--pe-bone) 100%);
	position: relative;
	overflow: hidden;
}
.pe-bulk-hero::before {
	content: '';
	position: absolute;
	width: 600px; height: 600px;
	background: radial-gradient(circle, var(--pe-red) 0%, transparent 70%);
	opacity: .08;
	top: -300px; right: -200px;
	border-radius: 50%;
}
.pe-bulk-hero__inner { text-align: center; max-width: 820px; margin: 0 auto; position: relative; }
.pe-bulk-hero__title {
	font-size: clamp(40px, 6vw, 72px);
	margin: 0 0 24px;
}
.pe-bulk-hero__title-accent { color: var(--pe-red); font-style: italic; }
.pe-bulk-hero__sub {
	font-size: 19px;
	color: var(--pe-gray-700);
	margin: 0 0 36px;
	line-height: 1.55;
}
.pe-bulk-hero__ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.pe-bulk-why { padding: 100px 0; }
.pe-bulk-why__grid {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 900px) { .pe-bulk-why__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pe-bulk-why__grid { grid-template-columns: 1fr; } }
.pe-bulk-why__card {
	padding: 32px;
	background: var(--pe-white);
	border-radius: var(--pe-radius);
	border: 2px solid var(--pe-gray-200);
	transition: all .25s var(--pe-ease);
}
.pe-bulk-why__card:hover {
	border-color: var(--pe-red);
	transform: translateY(-4px);
	box-shadow: var(--pe-shadow);
}
.pe-bulk-why__icon { display: block; font-size: 40px; margin-bottom: 16px; }
.pe-bulk-why__card h3 { font-size: 22px; margin: 0 0 12px; }
.pe-bulk-why__card p { color: var(--pe-gray-700); margin: 0; }

.pe-bulk-tiers { padding: 60px 0 100px; background: var(--pe-bone); }
.pe-bulk-tiers__grid {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
	max-width: 1100px; margin: 0 auto;
}
@media (max-width: 900px) { .pe-bulk-tiers__grid { grid-template-columns: 1fr; } }
.pe-bulk-tier {
	background: var(--pe-white);
	border-radius: var(--pe-radius-lg);
	padding: 36px 32px;
	border: 2px solid transparent;
	position: relative;
	transition: transform .25s var(--pe-ease);
}
.pe-bulk-tier:hover { transform: translateY(-4px); }
.pe-bulk-tier--featured {
	border-color: var(--pe-red);
	box-shadow: var(--pe-shadow-lg);
	transform: scale(1.04);
}
.pe-bulk-tier--featured:hover { transform: scale(1.04) translateY(-4px); }
.pe-bulk-tier__badge {
	position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
	background: var(--pe-red); color: var(--pe-white);
	padding: 6px 16px;
	border-radius: 20px;
	font-family: var(--pe-font-display);
	font-size: 12px; letter-spacing: .15em; text-transform: uppercase;
	font-weight: 600;
}
.pe-bulk-tier__header { text-align: center; padding-bottom: 24px; border-bottom: 1px solid var(--pe-gray-200); margin-bottom: 24px; }
.pe-bulk-tier__qty { display: block; font-family: var(--pe-font-display); font-size: 22px; color: var(--pe-charcoal); margin-bottom: 8px; }
.pe-bulk-tier__discount { display: block; font-family: var(--pe-font-display); font-size: 56px; font-weight: 700; color: var(--pe-red); line-height: 1; }
.pe-bulk-tier__perks { list-style: none; margin: 0; padding: 0; }
.pe-bulk-tier__perks li { padding: 8px 0; color: var(--pe-gray-700); border-bottom: 1px dashed var(--pe-gray-200); }
.pe-bulk-tier__perks li:last-child { border-bottom: 0; }

.pe-bulk-form { padding: 100px 0; }
.pe-bulk-form__inner { max-width: 760px; margin: 0 auto; }
.pe-quote-form {
	background: var(--pe-white);
	padding: 40px;
	border-radius: var(--pe-radius);
	box-shadow: var(--pe-shadow);
}
@media (max-width: 600px) { .pe-quote-form { padding: 24px; } }
.pe-quote-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
@media (max-width: 600px) { .pe-quote-form__row { grid-template-columns: 1fr; } }
.pe-quote-form__field { display: block; margin-bottom: 20px; }
.pe-quote-form__field > span {
	display: block;
	font-family: var(--pe-font-display);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--pe-charcoal);
	margin-bottom: 8px;
}
.pe-quote-form__field input,
.pe-quote-form__field select,
.pe-quote-form__field textarea {
	width: 100%;
	padding: 12px 16px;
	font-family: var(--pe-font-body);
	font-size: 15px;
	border: 2px solid var(--pe-gray-200);
	border-radius: var(--pe-radius-sm);
	background: var(--pe-cream);
	transition: border-color .2s var(--pe-ease), background .2s var(--pe-ease);
	color: var(--pe-charcoal);
}
.pe-quote-form__field input:focus,
.pe-quote-form__field select:focus,
.pe-quote-form__field textarea:focus {
	border-color: var(--pe-red); outline: none; background: var(--pe-white);
}
.pe-quote-form__checks { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 600px) { .pe-quote-form__checks { grid-template-columns: 1fr; } }
.pe-quote-form__checks label {
	display: flex; align-items: center; gap: 10px;
	padding: 8px 12px;
	background: var(--pe-cream);
	border-radius: var(--pe-radius-sm);
	cursor: pointer;
	font-size: 14px;
	font-weight: 500;
	transition: background .15s var(--pe-ease);
}
.pe-quote-form__checks input[type="checkbox"] {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	cursor: pointer;
	margin: 0;
}
.pe-quote-form__checks label:hover { background: var(--pe-bone); }
.pe-quote-form__note { font-size: 13px; color: var(--pe-gray-500); margin: 16px 0 0; }

.pe-bulk-contact { padding: 0 0 80px; }
.pe-bulk-contact__grid {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 900px) { .pe-bulk-contact__grid { grid-template-columns: 1fr; } }
.pe-bulk-contact__card {
	text-align: center;
	padding: 40px 24px;
	background: var(--pe-bone);
	border-radius: var(--pe-radius);
	transition: all .25s var(--pe-ease);
}
.pe-bulk-contact__card:hover { background: var(--pe-white); box-shadow: var(--pe-shadow); transform: translateY(-4px); }
.pe-bulk-contact__icon { display: block; font-size: 36px; margin-bottom: 12px; }
.pe-bulk-contact__card h3 { font-size: 22px; margin: 0 0 6px; }
.pe-bulk-contact__card p { color: var(--pe-gray-500); font-size: 14px; margin: 0 0 16px; }
.pe-bulk-contact__link {
	font-family: var(--pe-font-display);
	font-size: 18px; font-weight: 600;
	color: var(--pe-red);
}

/* ------- 404 PAGE --------------------------------------------------------- */
.pe-404 { padding: 120px 0; text-align: center; }
.pe-404__big { font-family: var(--pe-font-display); font-size: clamp(120px, 24vw, 280px); line-height: .85; color: var(--pe-red); display: block; margin-bottom: 16px; letter-spacing: .04em; }
.pe-404__title { font-size: clamp(32px, 5vw, 48px); margin: 0 0 16px; }
.pe-404__sub { font-size: 18px; color: var(--pe-gray-700); margin: 0 0 32px; }
.pe-404__ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ------- BLOG/PAGE BASIC -------------------------------------------------- */
.pe-page, .pe-archive, .pe-single { padding: 80px 0; }
.pe-page-header { text-align: center; margin-bottom: 48px; }
.pe-page-title { font-size: clamp(32px, 5vw, 56px); margin: 0; }
.pe-page-content { max-width: 760px; margin: 0 auto; font-size: 17px; line-height: 1.7; }
.pe-page-content h2, .pe-page-content h3 { margin-top: 1.4em; }
.pe-post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 800px) { .pe-post-grid { grid-template-columns: 1fr; } }
.pe-post-card { background: var(--pe-white); border-radius: var(--pe-radius); overflow: hidden; box-shadow: var(--pe-shadow-sm); transition: transform .25s var(--pe-ease); }
.pe-post-card:hover { transform: translateY(-4px); }
.pe-post-card__image img { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; }
.pe-post-card__body { padding: 24px; }
.pe-post-card__title { font-size: 22px; margin: 0 0 8px; }
.pe-post-card__title a { color: var(--pe-charcoal); }
.pe-post-card__title a:hover { color: var(--pe-red); }
.pe-post-card__meta { font-size: 13px; color: var(--pe-gray-500); margin-bottom: 12px; letter-spacing: .05em; text-transform: uppercase; font-family: var(--pe-font-display); }
.pe-post-card__excerpt { font-size: 15px; color: var(--pe-gray-700); }
.pe-post-card__link { display: inline-block; margin-top: 14px; font-family: var(--pe-font-display); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--pe-red); font-weight: 600; }

/* ------- SEARCH FORM ------------------------------------------------------ */
.pe-search-form { display: flex; gap: 12px; max-width: 480px; margin: 24px auto; }
.pe-search-form__input { flex: 1; padding: 12px 16px; border: 2px solid var(--pe-gray-200); border-radius: var(--pe-radius-sm); font-size: 15px; }
.pe-search-form__input:focus { border-color: var(--pe-red); outline: none; }
.pe-search-form__submit { padding: 12px 22px; background: var(--pe-red); color: var(--pe-white); border: 0; border-radius: var(--pe-radius-sm); font-family: var(--pe-font-display); letter-spacing: .12em; text-transform: uppercase; font-weight: 600; cursor: pointer; }
.pe-search-form__submit:hover { background: var(--pe-red-dark); }

/* ------- FOOTER ----------------------------------------------------------- */
.site-footer {
	background: #0a1a2f;
	color: var(--pe-cream);
	padding: 80px 0 0;
	margin-top: 60px;
}
.pe-footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
	gap: 40px;
	padding-bottom: 60px;
	border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (max-width: 1100px) {
	.pe-footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
}
@media (max-width: 900px) {
	.pe-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 560px) {
	.pe-footer-grid { grid-template-columns: 1fr; }
}
.pe-footer-brand {
	font-family: var(--pe-font-display);
	font-size: 28px;
	line-height: 1;
	margin: 0 0 16px;
	display: flex; flex-direction: column;
	color: var(--pe-white);
	letter-spacing: .04em;
}
.pe-footer-brand__accent { color: var(--pe-red); letter-spacing: .12em; }
.pe-footer-tagline { color: rgba(255,255,255,.65); margin: 0 0 16px; max-width: 320px; line-height: 1.55; }
.pe-footer-address { color: rgba(255,255,255,.85); font-size: 14px; line-height: 1.6; margin: 0; }
.pe-footer-heading {
	font-size: 16px;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	margin: 0 0 20px;
	color: var(--pe-white);
}
.pe-footer-links { list-style: none; margin: 0; padding: 0; }
.pe-footer-links li { margin-bottom: 10px; }
.pe-footer-links a { color: rgba(255,255,255,.7); font-size: 15px; transition: color .15s var(--pe-ease); }
.pe-footer-links a:hover { color: var(--pe-red); }
.pe-footer-links--contact a { color: var(--pe-white); font-weight: 500; }
.pe-footer-social { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.pe-social-icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 38px; height: 38px;
	border-radius: 50%;
	background: rgba(255,255,255,.08);
	color: var(--pe-white);
	font-family: var(--pe-font-display);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .05em;
	transition: all .2s var(--pe-ease);
}
.pe-social-icon:hover { background: var(--pe-red); color: var(--pe-white); transform: translateY(-2px); }
.pe-footer-bottom {
	padding: 24px 0;
	display: flex; justify-content: space-between;
	flex-wrap: wrap; gap: 12px;
	font-size: 14px;
	color: rgba(255,255,255,.5);
}
.pe-footer-bottom p { margin: 0; }

/* ------- COMMON ANIMATIONS ----------------------------------------------- */
@keyframes pe-fade-up {
	from { opacity: 0; transform: translateY(20px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* ─── MOTION BACKGROUND ANIMATIONS ─ */
@keyframes pe-blob-float-1 {
	0%, 100% { transform: translate(-80px, -60px); }
	25% { transform: translate(-120px, -40px); }
	50% { transform: translate(-60px, -100px); }
	75% { transform: translate(-100px, -80px); }
}
@keyframes pe-blob-float-2 {
	0%, 100% { transform: translate(200px, 100px); }
	25% { transform: translate(240px, 60px); }
	50% { transform: translate(160px, 140px); }
	75% { transform: translate(220px, 120px); }
}
@keyframes pe-blob-float-3 {
	0%, 100% { transform: translate(-150px, 200px); }
	25% { transform: translate(-100px, 240px); }
	50% { transform: translate(-180px, 160px); }
	75% { transform: translate(-140px, 200px); }
}
@keyframes pe-blob-float-4 {
	0%, 100% { transform: translate(300px, -180px); }
	25% { transform: translate(340px, -140px); }
	50% { transform: translate(260px, -220px); }
	75% { transform: translate(320px, -160px); }
}

.pe-motion-blob--1 {
	animation: pe-blob-float-1 28s ease-in-out infinite;
	top: 20%;
	right: 10%;
}
.pe-motion-blob--2 {
	animation: pe-blob-float-2 34s ease-in-out infinite;
	top: 60%;
	left: 5%;
}
.pe-motion-blob--3 {
	animation: pe-blob-float-3 31s ease-in-out infinite;
	top: 70%;
	right: 15%;
}
.pe-motion-blob--4 {
	animation: pe-blob-float-4 26s ease-in-out infinite;
	top: 10%;
	left: 40%;
}

.pe-reveal { opacity: 0; transition: opacity .8s var(--pe-ease), transform .8s var(--pe-ease); transform: translateY(24px); }
.pe-reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ----------------------------------------------------------------------
 * JS-driven state hooks (cursor hover-grow, mobile nav scroll lock,
 * empty cart count state). Kept at the bottom so they win the cascade.
 * ---------------------------------------------------------------------- */
.pe-cursor.is-hover .pe-cursor__ball {
	transform: scale(1.6);
	box-shadow: 0 0 0 8px rgba(192, 57, 43, .14), 0 0 24px rgba(192, 57, 43, .35);
}
body.pe-nav-open { overflow: hidden; }
.pe-cart-count.is-empty { background: var(--pe-gray-300); color: var(--pe-charcoal); }

/* ──────────────────────────────────────────────────────────
   HERO SECTION - EXACT DESIGN FROM REFERENCE
   ────────────────────────────────────────────────────────── */

.pe-hero::before{display:none;} /* blobs handled by sitewide pe-motion-bg */
.pe-hero::after{display:none;}
.pe-hero__copy::before{content:'';position:absolute;right:0;top:0;width:1px;height:100%;background:linear-gradient(to bottom,transparent,rgba(200,21,28,0.15),transparent);pointer-events:none;}
.pe-hero{position:relative;min-height:auto;display:flex;align-items:center;overflow:visible;background:transparent;padding:80px 0 64px;}
.pe-hero__grid{display:none;} /* sitewide grid in header replaces this */
.pe-hero__inner{display:grid;grid-template-columns:1.05fr 1fr;gap:60px;align-items:center;position:relative;z-index:10;max-width:1400px;margin:0 auto;padding:100px 40px 80px;width:100%;}
.pe-hero__copy{position:relative;z-index:10;}
.pe-hero__title{font-family:var(--pe-font-display);font-size:clamp(64px,9vw,116px);font-weight:800;line-height:.9;letter-spacing:-1px;text-transform:uppercase;margin-bottom:24px;color:var(--pe-charcoal);}
.pe-hero__title .stroke{color:transparent;-webkit-text-stroke:2.5px rgba(10,10,40,0.15);}
.pe-hero__title-accent{color:var(--pe-red);}
.pe-hero__subtitle{font-size:16px;color:var(--pe-gray-700);max-width:460px;line-height:1.75;margin-bottom:40px;}
.pe-hero__ctas{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:56px;}
.pe-hero .pe-btn--ghost{color:var(--pe-charcoal) !important;border-color:rgba(10,10,40,0.3) !important;}
.pe-hero .pe-btn--ghost:hover{border-color:var(--pe-red) !important;color:var(--pe-red) !important;}
/* ═══════════════════════════════════════════════════════════
   HERO PRODUCT CARD — Nike-inspired clean card (FINAL)
   Portrait card · pastel image zone · white info strip
═══════════════════════════════════════════════════════════ */

/* Card wrapper — portrait, centred, clean shadow */
.pe-hero__showcase {
	position: relative;
	aspect-ratio: 3 / 4;
	max-width: 380px;
	margin-left: auto;
	width: 100%;
	z-index: 10;
}

/* Card */
.pe-hero__rotator {
	position: relative;
	width: 100%; height: 100%;
	border-radius: 20px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 20px 60px rgba(0,0,0,0.13), 0 4px 16px rgba(0,0,0,0.06);
}

/* Slide */
.pe-hero__slide {
	position: absolute; inset: 0;
	display: flex; flex-direction: column;
	opacity: 0;
	transition: opacity .5s ease;
	pointer-events: none;
}
.pe-hero__slide.is-active {
	opacity: 1;
	pointer-events: auto;
}

/* Image zone — pastel cream-pink bg, top 72% of card */
.pe-hero__slide-image {
	position: absolute;
	top: 0; left: 0; right: 0;
	bottom: 108px;
	background: linear-gradient(145deg, #fff5f5 0%, #fdeaea 60%, #fdf0f0 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px 16px 12px;
	overflow: hidden;
}

/* Bat image — height-driven so it fills the tall zone */
.pe-hero__slide-image img {
	height: 100%;
	width: auto;
	max-width: 100%;
	object-fit: contain;
	mix-blend-mode: multiply;
	filter: drop-shadow(0 12px 24px rgba(0,0,0,0.12));
	animation: batBob 3.5s ease-in-out infinite;
}
@keyframes batBob {
	0%,100% { transform: translateY(0); }
	50%      { transform: translateY(-8px); }
}

/* Info strip — white, pinned to bottom */
.pe-hero__slide-info {
	position: absolute;
	bottom: 0; left: 0; right: 0;
	height: 108px;
	background: #fff;
	border-top: 1px solid #f0e8e8;
	padding: 14px 18px 16px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
	z-index: 2;
}

/* Red left accent line inside info strip */
.pe-hero__slide-info::before {
	content: '';
	position: absolute;
	left: 0; top: 16px; bottom: 16px;
	width: 3px;
	background: var(--pe-red);
	border-radius: 0 2px 2px 0;
}

.pe-hero__slide-cat {
	font-family: var(--pe-font-display);
	font-size: 10px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--pe-red);
	display: block;
	font-weight: 700;
}
.pe-hero__slide-title {
	font-size: 15px;
	font-weight: 700;
	color: #111;
	margin: 0;
	line-height: 1.25;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.pe-hero__slide-price {
	font-family: var(--pe-font-display);
	font-size: 17px;
	font-weight: 800;
	color: #111;
}
.pe-hero__slide-price .amount,
.pe-hero__slide-price ins  { color: #111 !important; }
.pe-hero__slide-price del  { color: #aaa !important; font-size: 13px; margin-right: 6px; }

/* Dots */
.pe-hero__dots {
	position: absolute;
	bottom: -36px; left: 0; right: 0;
	display: flex; gap: 8px;
	justify-content: center;
}
.pe-hero__dot {
	width: 8px; height: 8px;
	border-radius: 50%;
	background: rgba(200,21,28,0.25);
	border: 0; padding: 0;
	transition: all .25s ease;
	cursor: pointer;
}
.pe-hero__dot.is-active { background: var(--pe-red); width: 24px; border-radius: 4px; }

/* ================================================================
   PRODUCT PAGES — Helmets & Batting Gloves (shared styles)
   ================================================================ */

/* Page hero */
.pe-page-hero { padding: 80px 0 60px; }
.pe-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--pe-gray-700); margin-bottom: 24px; }
.pe-breadcrumb a { color: var(--pe-red); text-decoration: none; }
.pe-breadcrumb a:hover { text-decoration: underline; }
.pe-page-hero__title { font-family: var(--pe-font-display); font-size: clamp(48px, 8vw, 88px); font-weight: 800; line-height: .9; letter-spacing: -1px; text-transform: uppercase; margin: 12px 0 20px; color: var(--pe-charcoal); }
.pe-page-hero__stroke { color: transparent; -webkit-text-stroke: 2px rgba(10,10,40,0.2); }
.pe-page-hero__accent { color: var(--pe-red); }
.pe-page-hero__sub { font-family: 'Lora', Georgia, serif; font-style: italic; font-size: 17px; line-height: 1.7; color: var(--pe-gray-700); max-width: 560px; margin: 0 0 32px; }
.pe-page-hero__meta { display: flex; flex-wrap: wrap; gap: 20px; }
.pe-phm-item { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--pe-charcoal); background: rgba(200,21,28,0.06); border: 1px solid rgba(200,21,28,0.12); padding: 8px 16px; border-radius: 4px; }

/* Trust band */
.pe-trust-band { background: var(--pe-charcoal); padding: 20px 0; }
.pe-trust-band__inner { display: flex; flex-wrap: wrap; gap: 0; justify-content: space-between; align-items: center; }
.pe-tb-item { display: flex; align-items: center; gap: 12px; padding: 8px 20px; color: #fff; font-size: 13px; border-right: 1px solid rgba(255,255,255,.1); }
.pe-tb-item:last-child { border-right: none; }
.pe-tb-item span { font-size: 22px; }
.pe-tb-item strong { display: block; font-size: 13px; font-weight: 700; }
.pe-tb-item small { color: rgba(255,255,255,.65); font-size: 11px; }

/* Products section */
.pe-ppage-products { padding: 80px 0; }
.pe-filter-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.pe-filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.pe-ftab { font-family: var(--pe-font-display); font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 8px 16px; border: 1px solid var(--pe-gray-300); border-radius: 3px; background: transparent; color: var(--pe-gray-700); cursor: pointer; transition: all .2s; }
.pe-ftab.active, .pe-ftab:hover { background: var(--pe-red); color: #fff; border-color: var(--pe-red); }
.pe-result-count { font-size: 13px; color: var(--pe-gray-700); font-weight: 600; }
.pe-pp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 1100px) { .pe-pp-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .pe-pp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .pe-pp-grid { grid-template-columns: 1fr; } }

/* Product card */
.pe-pp-card { background: #fff; border-radius: 12px; overflow: visible; position: relative; border: 1px solid var(--pe-gray-200); box-shadow: 0 2px 12px rgba(0,0,0,.06); display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease; }
.pe-pp-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.12); }
.pe-pp-card__gallery { position: relative; aspect-ratio: 5/4; overflow: hidden; background: #f9f5f5; }
.pe-pp-mainimg { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.pe-pp-card:hover .pe-pp-mainimg { transform: scale(1.04); }
.pe-pp-badge { position: absolute; top: 12px; left: 12px; font-family: var(--pe-font-display); font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 4px 10px; border-radius: 3px; z-index: 2; }
.pe-pp-badge--hot  { background: var(--pe-red); color: #fff; }
.pe-pp-badge--sale { background: #1a3a7b; color: #fff; }
.pe-pp-badge--value { background: #d4900a; color: #fff; }
.pe-pp-badge--new  { background: #166534; color: #fff; }
.pe-pp-badge--cod  { background: #f0f9ff; color: #0369a1; border: 1px solid #bae6fd; }
.pe-pp-card__thumbs { display: flex; gap: 6px; padding: 8px 12px; background: #fafafa; border-bottom: 1px solid var(--pe-gray-200); }
.pe-pp-thumb { width: 44px; height: 44px; object-fit: cover; border-radius: 4px; border: 2px solid transparent; cursor: pointer; opacity: .7; transition: all .2s; }
.pe-pp-thumb.active, .pe-pp-thumb:hover { border-color: var(--pe-red); opacity: 1; }
.pe-pp-card__info { padding: 16px; flex: 1; }
.pe-pp-brand { font-size: 11px; color: var(--pe-gray-700); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.pe-pp-name { font-family: var(--pe-font-display); font-size: 18px; font-weight: 800; text-transform: uppercase; color: var(--pe-charcoal); margin-bottom: 8px; line-height: 1.1; }
.pe-pp-price { font-family: var(--pe-font-display); font-size: 22px; font-weight: 900; color: var(--pe-red); margin-bottom: 4px; }
.pe-pp-price small { font-size: 13px; font-weight: 400; color: var(--pe-gray-700); }
.pe-pp-moq { font-size: 11px; color: var(--pe-gray-700); margin-bottom: 10px; }
.pe-pp-chips { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 4px; }
.pe-pp-chips span { font-size: 10px; font-weight: 600; padding: 3px 8px; background: #f5f5f5; border: 1px solid #e5e5e5; border-radius: 2px; color: var(--pe-gray-700); text-transform: uppercase; letter-spacing: .5px; }
.pe-pp-card__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 12px 16px 16px; }
.pe-btn--sm { padding: 10px 16px !important; font-size: 12px !important; }

/* Why section */
.pe-why-section { padding: 80px 0; background: transparent; }
.pe-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
@media (max-width: 768px) { .pe-why-grid { grid-template-columns: 1fr; } }
.pe-why-card { background: #fff; border-radius: 12px; padding: 32px 28px; border: 1px solid var(--pe-gray-200); border-top: 3px solid var(--pe-red); box-shadow: 0 2px 12px rgba(0,0,0,.05); opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.pe-why-card.pe-visible { opacity: 1; transform: translateY(0); }
.pe-why-icon { font-size: 36px; margin-bottom: 16px; }
.pe-why-card h3 { font-family: var(--pe-font-display); font-size: 18px; font-weight: 800; text-transform: uppercase; color: var(--pe-charcoal); margin: 0 0 12px; }
.pe-why-card p { font-size: 14px; line-height: 1.7; color: var(--pe-gray-700); margin: 0; }

/* Compare table */
.pe-compare-section { padding: 80px 0; }
.pe-section-header--center { text-align: center; margin-left: auto; margin-right: auto; }
.pe-table-wrap { overflow-x: auto; border-radius: 12px; box-shadow: 0 2px 20px rgba(0,0,0,.08); }
.pe-compare-table { width: 100%; border-collapse: collapse; background: #fff; }
.pe-compare-table th { font-family: var(--pe-font-display); font-size: 13px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; padding: 16px 20px; background: var(--pe-charcoal); color: #fff; text-align: left; }
.pe-compare-table th.pe-col-pro { background: var(--pe-red); }
.pe-compare-table td { padding: 14px 20px; font-size: 14px; color: var(--pe-charcoal); border-bottom: 1px solid #f0f0f0; }
.pe-compare-table td.pe-col-pro { font-weight: 600; color: var(--pe-red); }
.pe-compare-table tr:last-child td { border-bottom: none; }
.pe-compare-table tr:nth-child(even) { background: #fafafa; }

/* Product modal */
.pe-pmodal { position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 9000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .3s; padding: 20px; }
.pe-pmodal.open { opacity: 1; pointer-events: auto; }
.pe-pmodal__box { background: #fff; border-radius: 16px; width: 100%; max-width: 860px; max-height: 90vh; overflow-y: auto; display: grid; grid-template-columns: 1fr 1fr; position: relative; }
@media (max-width: 640px) { .pe-pmodal__box { grid-template-columns: 1fr; } }
.pe-pmodal__close { position: absolute; top: 16px; right: 16px; background: none; border: none; font-size: 20px; cursor: pointer; color: var(--pe-gray-700); z-index: 2; width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.pe-pmodal__close:hover { background: #f5f5f5; }
.pe-pmodal__media { padding: 24px; border-right: 1px solid #f0f0f0; }
.pe-pmodal__media img#pModalImg { width: 100%; border-radius: 8px; margin-bottom: 12px; }
.pe-pmodal__thumbs { display: flex; gap: 8px; flex-wrap: wrap; }
.pe-pmodal__thumb { width: 56px; height: 56px; object-fit: cover; border-radius: 6px; border: 2px solid transparent; cursor: pointer; opacity: .7; transition: all .2s; }
.pe-pmodal__thumb.active, .pe-pmodal__thumb:hover { border-color: var(--pe-red); opacity: 1; }
.pe-pmodal__info { padding: 28px 24px; overflow-y: auto; }
.pe-pmodal__brand { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--pe-gray-700); margin-bottom: 4px; }
.pe-pmodal__name { font-family: var(--pe-font-display); font-size: 22px; font-weight: 800; text-transform: uppercase; color: var(--pe-charcoal); margin-bottom: 8px; }
.pe-pmodal__price { font-family: var(--pe-font-display); font-size: 28px; font-weight: 900; color: var(--pe-red); margin-bottom: 4px; }
.pe-pmodal__moq { font-size: 12px; color: var(--pe-gray-700); margin-bottom: 16px; }
.pe-pmodal__desc { font-size: 14px; line-height: 1.7; color: var(--pe-gray-700); margin-bottom: 16px; }
.pe-pmodal__specs { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; margin-bottom: 20px; }
.pe-pmodal__spec-row { display: flex; justify-content: space-between; gap: 8px; padding: 6px 10px; background: #f9f9f9; border-radius: 4px; font-size: 12px; }
.pe-pmodal__spec-row span:first-child { color: var(--pe-gray-700); }
.pe-pmodal__spec-row span:last-child { font-weight: 600; color: var(--pe-charcoal); }
.pe-pmodal__actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* Toast */
.pe-toast { position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%) translateY(80px); background: var(--pe-charcoal); color: #fff; padding: 12px 24px; border-radius: 8px; font-size: 14px; z-index: 9999; opacity: 0; transition: all .3s; pointer-events: none; }
.pe-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Reveal animation */
.pe-reveal { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.pe-visible { opacity: 1; transform: translateY(0); }

/* ================================================================
   PROTECTION GEAR SECTION (homepage)
   ================================================================ */
.pe-protection { padding: 100px 0; background: transparent; }
.pe-protection__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 8px; }
@media (max-width: 900px) { .pe-protection__grid { grid-template-columns: 1fr; } }
.pe-prot-card { background: #fff; border-radius: 16px; overflow: hidden; border: 1px solid var(--pe-gray-200); box-shadow: 0 4px 20px rgba(0,0,0,.07); display: flex; flex-direction: column; text-decoration: none; color: inherit; transition: transform .25s ease, box-shadow .25s ease; }
.pe-prot-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(200,21,28,.12); }
.pe-prot-card__icon-wrap { display: flex; align-items: center; justify-content: center; height: 280px; background: linear-gradient(145deg, #fff5f5 0%, #fdeaea 100%); border-bottom: 1px solid rgba(200,21,28,.08); overflow: hidden; }
.pe-prot-card__emoji { font-size: 64px; line-height: 1; filter: drop-shadow(0 4px 12px rgba(200,21,28,.15)); }
.pe-prot-card__img { width: 450px; height: 450px; object-fit: cover; object-position: center; }
.pe-prot-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.pe-prot-card__tag { font-family: var(--pe-font-display); font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--pe-red); display: block; margin-bottom: 8px; }
.pe-prot-card h3 { font-family: var(--pe-font-display); font-size: 22px; font-weight: 800; text-transform: uppercase; color: var(--pe-charcoal); margin: 0 0 10px; }
.pe-prot-card p { font-size: 14px; line-height: 1.65; color: var(--pe-gray-700); margin: 0 0 16px; flex: 1; }
.pe-prot-card__chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.pe-prot-card__chips span { font-size: 10px; font-weight: 600; padding: 3px 10px; border: 1px solid rgba(200,21,28,.2); border-radius: 20px; color: var(--pe-red); text-transform: uppercase; letter-spacing: .5px; }
.pe-prot-card__cta { font-family: var(--pe-font-display); font-size: 13px; font-weight: 700; letter-spacing: 1px; color: var(--pe-red); text-transform: uppercase; display: flex; align-items: center; gap: 6px; margin-top: auto; }
.pe-prot-card:hover .pe-prot-card__cta { gap: 10px; }

/* ================================================================
   BLOG SECTIONS (homepage + page templates)
   ================================================================ */
.pe-blog-home { padding: 100px 0; background: transparent; }
.pe-blog-strip { padding: 80px 0; background: transparent; }
.pe-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 8px; }
@media (max-width: 900px) { .pe-blog-grid { grid-template-columns: 1fr; } }
.pe-blog-card { background: #fff; border-radius: 16px; overflow: hidden; border: 1px solid var(--pe-gray-200); box-shadow: 0 4px 16px rgba(0,0,0,.06); display: flex; flex-direction: column; text-decoration: none; color: inherit; transition: transform .25s, box-shadow .25s; }
.pe-blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,.1); }
.pe-blog-card__icon { font-size: 48px; padding: 0; text-align: center; background: linear-gradient(145deg, #fafafa, #f5f5f5); border-bottom: 1px solid var(--pe-gray-200); height: 220px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.pe-blog-card__img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.pe-blog-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.pe-blog-card__tag { font-family: var(--pe-font-display); font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--pe-red); display: block; margin-bottom: 8px; }
.pe-blog-card h3 { font-size: 17px; font-weight: 700; color: var(--pe-charcoal); margin: 0 0 10px; line-height: 1.35; }
.pe-blog-card p { font-size: 14px; line-height: 1.65; color: var(--pe-gray-700); margin: 0 0 16px; flex: 1; }
.pe-blog-card__link { font-family: var(--pe-font-display); font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--pe-red); margin-top: auto; }
.pe-blog-card:hover .pe-blog-card__link { text-decoration: underline; }

/* ================================================================
   BLOG ARTICLE PAGE
   ================================================================ */
.pe-blog-page { padding: 0; }
.pe-blog-article-wrap { padding: 60px 0 80px; }
.pe-article { max-width: 760px; background: #fff; border-radius: 16px; padding: 48px 56px; border: 1px solid var(--pe-gray-200); box-shadow: 0 4px 24px rgba(0,0,0,.06); }
@media (max-width: 640px) { .pe-article { padding: 28px 20px; } }
.pe-article h2 { font-family: var(--pe-font-display); font-size: 26px; font-weight: 800; text-transform: uppercase; color: var(--pe-charcoal); margin: 36px 0 14px; border-left: 4px solid var(--pe-red); padding-left: 16px; }
.pe-article h2:first-child { margin-top: 0; }
.pe-article h3 { font-family: var(--pe-font-display); font-size: 18px; font-weight: 700; color: var(--pe-charcoal); margin: 24px 0 10px; }
.pe-article p { font-size: 16px; line-height: 1.8; color: var(--pe-gray-700); margin: 0 0 16px; }
.pe-article ul { padding-left: 20px; margin: 0 0 16px; }
.pe-article li { font-size: 15px; line-height: 1.75; color: var(--pe-gray-700); margin-bottom: 8px; }
.pe-article blockquote { border-left: 4px solid var(--pe-red); margin: 32px 0; padding: 16px 24px; background: #fff9f9; font-family: 'Lora', Georgia, serif; font-style: italic; font-size: 18px; color: var(--pe-charcoal); border-radius: 0 8px 8px 0; }
.pe-cta-box { background: var(--pe-charcoal); color: #fff; border-radius: 12px; padding: 32px; margin-top: 40px; }
.pe-cta-box h3 { font-family: var(--pe-font-display); font-size: 22px; font-weight: 800; text-transform: uppercase; color: #fff; margin: 0 0 10px; }
.pe-cta-box p { font-size: 15px; color: rgba(255,255,255,.8); margin: 0 0 20px; }

/* ================================================================
   ABOUT PAGE — Tabs, Stats, Content Cards, FAQ, Values
   ================================================================ */
.pe-about-page { padding: 0; }

/* Sub-nav tabs */
.pe-about-nav { background: #fff; border-bottom: 1px solid var(--pe-gray-200); position: sticky; top: 80px; z-index: 50; box-shadow: 0 2px 8px rgba(0,0,0,.06); }
.pe-about-nav__inner { display: flex; gap: 0; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.pe-about-tab { font-family: var(--pe-font-display); font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 16px 24px; color: var(--pe-gray-700); text-decoration: none; white-space: nowrap; border-bottom: 3px solid transparent; transition: all .2s; }
.pe-about-tab:hover { color: var(--pe-red); }
.pe-about-tab.active { color: var(--pe-red); border-bottom-color: var(--pe-red); }

/* Section visibility */
.pe-about-section { display: none; }
.pe-about-section.active { display: block; }

/* Badge */
.pe-about-badge { display: inline-block; font-family: var(--pe-font-display); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; background: rgba(200,21,28,.08); color: var(--pe-red); border: 1px solid rgba(200,21,28,.15); padding: 5px 14px; border-radius: 20px; margin-bottom: 16px; }

/* Body wrapper */
.pe-about-body { padding: 60px 0 100px; max-width: 800px; }

/* Stats */
.pe-stat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 48px; }
@media (max-width: 640px) { .pe-stat-grid { grid-template-columns: repeat(2,1fr); } }
.pe-stat-card { background: #fff; border-radius: 12px; padding: 24px 16px; text-align: center; border: 1px solid var(--pe-gray-200); border-top: 3px solid var(--pe-red); box-shadow: 0 2px 12px rgba(0,0,0,.05); }
.pe-stat-num { font-family: var(--pe-font-display); font-size: 36px; font-weight: 900; color: var(--pe-red); line-height: 1; margin-bottom: 6px; }
.pe-stat-label { font-size: 12px; color: var(--pe-gray-700); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* Content cards */
.pe-content-card { background: #fff; border-radius: 12px; padding: 36px 40px; margin-bottom: 24px; border: 1px solid var(--pe-gray-200); box-shadow: 0 2px 12px rgba(0,0,0,.05); position: relative; }
@media (max-width: 640px) { .pe-content-card { padding: 24px 20px; } }
.pe-content-num { position: absolute; top: -16px; left: 32px; font-family: var(--pe-font-display); font-size: 48px; font-weight: 900; color: rgba(200,21,28,.08); line-height: 1; pointer-events: none; }
.pe-content-card h2 { font-family: var(--pe-font-display); font-size: 22px; font-weight: 800; text-transform: uppercase; color: var(--pe-charcoal); margin: 0 0 16px; padding-left: 0; border: none; }
.pe-content-card p { font-size: 15px; line-height: 1.8; color: var(--pe-gray-700); margin: 0 0 12px; }
.pe-content-card ul, .pe-content-card ol { padding-left: 20px; margin: 0 0 12px; }
.pe-content-card li { font-size: 15px; line-height: 1.8; color: var(--pe-gray-700); margin-bottom: 8px; }
.pe-highlight-box { background: #fff9f9; border-left: 4px solid var(--pe-red); padding: 14px 18px; border-radius: 0 8px 8px 0; margin-top: 16px; font-size: 14px; color: var(--pe-charcoal); }

/* Values grid */
.pe-values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 8px; }
@media (max-width: 640px) { .pe-values-grid { grid-template-columns: 1fr; } }
.pe-value-card { background: #f9f9f9; border-radius: 10px; padding: 24px 20px; text-align: center; border: 1px solid var(--pe-gray-200); }
.pe-value-icon { font-size: 32px; margin-bottom: 12px; }
.pe-value-card h3 { font-family: var(--pe-font-display); font-size: 16px; font-weight: 800; color: var(--pe-charcoal); margin: 0 0 8px; }
.pe-value-card p { font-size: 13px; color: var(--pe-gray-700); margin: 0; line-height: 1.6; }

/* FAQ */
.pe-faq-list { display: flex; flex-direction: column; gap: 8px; }
.pe-faq-item { background: #fff; border-radius: 10px; border: 1px solid var(--pe-gray-200); overflow: hidden; }
.pe-faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 24px; font-size: 15px; font-weight: 600; color: var(--pe-charcoal); background: none; border: none; cursor: pointer; text-align: left; }
.pe-faq-q:hover { color: var(--pe-red); }
.pe-faq-icon { font-size: 20px; flex-shrink: 0; color: var(--pe-red); }
.pe-faq-a { border-top: 1px solid var(--pe-gray-200); }
.pe-faq-a-inner { padding: 16px 24px; font-size: 14px; line-height: 1.75; color: var(--pe-gray-700); }

/* Footer policy note */
.pe-footer-policy-note {
	margin-top: 20px;
	padding: 12px 14px;
	background: rgba(200,21,28,.12);
	border: 1px solid rgba(200,21,28,.25);
	border-radius: 6px;
}
.pe-footer-policy-note span {
	display: block;
	font-family: var(--pe-font-display);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #ff8080;
	margin-bottom: 6px;
}
.pe-footer-policy-note p {
	font-size: 12px;
	color: rgba(255,255,255,.55);
	line-height: 1.5;
	margin: 0;
}

/* ================================================================
   PROTECTION GEAR — 3-card guaranteed layout
   ================================================================ */
.pe-prot3-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 8px;
}
@media (max-width: 900px) { .pe-prot3-grid { grid-template-columns: 1fr; } }

.pe-prot3-card {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid var(--pe-gray-200);
	box-shadow: 0 4px 20px rgba(0,0,0,.07);
	display: flex;
	flex-direction: column;
	transition: transform .25s ease, box-shadow .25s ease;
	text-decoration: none;
	color: inherit;
}
.pe-prot3-card:hover { transform: translateY(-5px); box-shadow: 0 14px 40px rgba(200,21,28,.1); }

/* Image zone */
.pe-prot3-card__img {
	display: block;
	position: relative;
	aspect-ratio: 4/3;
	overflow: hidden;
	background: linear-gradient(145deg, #fff5f5 0%, #fdeaea 100%);
	text-decoration: none;
}
.pe-prot3-card__img img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform .4s ease;
}
.pe-prot3-card:hover .pe-prot3-card__img img { transform: scale(1.04); }
.pe-prot3-card__img--empty {
	display: flex; align-items: center; justify-content: center;
}
.pe-prot3-card__emoji {
	font-size: 80px;
	line-height: 1;
	filter: drop-shadow(0 4px 12px rgba(200,21,28,.15));
}
.pe-prot3-badge {
	position: absolute; top: 12px; left: 12px;
	background: var(--pe-red); color: #fff;
	font-family: var(--pe-font-display); font-size: 10px; font-weight: 700;
	letter-spacing: 1px; text-transform: uppercase;
	padding: 4px 10px; border-radius: 3px;
}

/* Info body */
.pe-prot3-card__body {
	padding: 20px 24px 24px;
	flex: 1; display: flex; flex-direction: column;
}
.pe-prot3-card__cat {
	font-family: var(--pe-font-display);
	font-size: 10px; font-weight: 700;
	letter-spacing: 2px; text-transform: uppercase;
	color: var(--pe-red); display: block; margin-bottom: 6px;
}
.pe-prot3-card__body h3 {
	font-size: 18px; font-weight: 700;
	color: var(--pe-charcoal); margin: 0 0 8px; line-height: 1.3;
}
.pe-prot3-card__body p {
	font-size: 14px; color: var(--pe-gray-700);
	margin: 0 0 12px; line-height: 1.6;
}
.pe-prot3-card__price {
	font-family: var(--pe-font-display);
	font-size: 20px; font-weight: 800;
	color: var(--pe-red); margin-bottom: 12px;
}
.pe-prot3-card__price del { font-size: 14px; color: var(--pe-gray-700); margin-right: 6px; font-weight: 400; }
.pe-prot3-card__price ins { text-decoration: none; }
.pe-prot3-card__all {
	font-family: var(--pe-font-display);
	font-size: 12px; font-weight: 700;
	letter-spacing: 1px; text-transform: uppercase;
	color: var(--pe-red); margin-top: auto;
	display: inline-flex; align-items: center; gap: 4px;
}
.pe-prot3-card:hover .pe-prot3-card__all { gap: 8px; }

/* ================================================================
   BUILD YOUR KIT — Smart Bundles (matches reference design)
   ================================================================ */
.pe-kit-builder { padding: 100px 0; background: transparent; }
.pe-kit-inner {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 64px;
	align-items: center;
}
@media (max-width: 900px) { .pe-kit-inner { grid-template-columns: 1fr; gap: 48px; } }

/* Left side */
.pe-kit-overline {
	display: flex; align-items: center; gap: 12px;
	margin-bottom: 20px;
}
.pe-kit-line { width: 32px; height: 2px; background: var(--pe-red); }
.pe-kit-overline span {
	font-family: var(--pe-font-display); font-size: 11px; font-weight: 700;
	letter-spacing: 3px; text-transform: uppercase; color: var(--pe-red);
}
.pe-kit-title {
	font-family: var(--pe-font-display);
	font-size: clamp(52px, 7vw, 80px);
	font-weight: 900; line-height: .88;
	letter-spacing: -1px; text-transform: uppercase;
	color: var(--pe-charcoal); margin: 0 0 24px;
}
.pe-kit-title__accent { color: var(--pe-red); }
.pe-kit-sub {
	font-size: 16px; color: var(--pe-gray-700);
	line-height: 1.65; max-width: 360px; margin: 0 0 32px;
}
.pe-kit-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Right side — bundle cards */
.pe-kit-right { display: flex; flex-direction: column; gap: 12px; }

.pe-bundle-card {
	background: #fff;
	border-radius: 12px;
	border: 1px solid var(--pe-gray-200);
	box-shadow: 0 2px 10px rgba(0,0,0,.05);
	padding: 18px 20px;
	display: flex; align-items: center; gap: 16px;
	position: relative;
	transition: box-shadow .2s, border-color .2s;
}
.pe-bundle-card:hover {
	border-color: rgba(200,21,28,.2);
	box-shadow: 0 8px 28px rgba(200,21,28,.08);
}
.pe-bundle-card--popular {
	border-color: rgba(200,21,28,.25);
	box-shadow: 0 4px 20px rgba(200,21,28,.1);
}
.pe-bundle-popular {
	position: absolute; top: -11px; left: 16px;
	background: var(--pe-red); color: #fff;
	font-family: var(--pe-font-display); font-size: 10px; font-weight: 700;
	letter-spacing: 1.5px; text-transform: uppercase;
	padding: 3px 12px; border-radius: 20px;
}
.pe-bundle-icon {
	width: 48px; height: 48px; flex-shrink: 0;
	background: #fff5f5; border: 1px solid rgba(200,21,28,.12);
	border-radius: 10px;
	display: flex; align-items: center; justify-content: center;
	font-size: 22px;
}
.pe-bundle-info { flex: 1; min-width: 0; }
.pe-bundle-name {
	font-family: var(--pe-font-display); font-size: 14px; font-weight: 800;
	letter-spacing: .5px; text-transform: uppercase;
	color: var(--pe-charcoal); margin-bottom: 3px;
}
.pe-bundle-contents {
	font-size: 12px; color: var(--pe-gray-700);
	line-height: 1.4; margin-bottom: 6px;
	white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.pe-bundle-pricing { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.pe-bundle-price {
	font-family: var(--pe-font-display); font-size: 18px; font-weight: 900;
	color: var(--pe-red);
}
.pe-bundle-old {
	font-size: 13px; color: var(--pe-gray-700);
	text-decoration: line-through;
}
.pe-bundle-save {
	font-family: var(--pe-font-display); font-size: 10px; font-weight: 700;
	letter-spacing: 1px; text-transform: uppercase;
	background: #fef2f2; color: var(--pe-red);
	border: 1px solid rgba(200,21,28,.2);
	padding: 2px 8px; border-radius: 3px;
}
.pe-bundle-add {
	width: 36px; height: 36px; flex-shrink: 0;
	border-radius: 50%; background: #fff5f5;
	border: 1.5px solid rgba(200,21,28,.2);
	color: var(--pe-red); font-size: 20px; font-weight: 300;
	display: flex; align-items: center; justify-content: center;
	text-decoration: none; transition: all .2s;
}
.pe-bundle-add:hover {
	background: var(--pe-red); color: #fff;
	border-color: var(--pe-red);
}

/* Glowing bundle icon */
.pe-bundle-icon--glow {
	background: linear-gradient(135deg, rgba(200,21,28,.1), rgba(200,21,28,.05));
	box-shadow: 0 0 30px rgba(200,21,28,.15), inset 0 0 20px rgba(200,21,28,.08);
	animation: pe-glow-pulse 3s ease-in-out infinite;
}
.pe-bundle-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	filter: drop-shadow(0 4px 12px rgba(200,21,28,.2));
}
@keyframes pe-glow-pulse {
	0%, 100% { box-shadow: 0 0 30px rgba(200,21,28,.15), inset 0 0 20px rgba(200,21,28,.08); }
	50% { box-shadow: 0 0 45px rgba(200,21,28,.25), inset 0 0 30px rgba(200,21,28,.12); }
}

/* Kit Modal */
.pe-kit-modal {
	position: fixed; top: 0; left: 0; right: 0; bottom: 0;
	z-index: 9999; display: flex; align-items: center; justify-content: center;
	padding: 20px;
}
.pe-kit-modal__overlay {
	position: absolute; inset: 0;
	background: rgba(0,0,0,.6);
	backdrop-filter: blur(4px);
	animation: fadeIn .3s ease-out;
}
.pe-kit-modal__content {
	position: relative; z-index: 2;
	background: #fff; border-radius: 16px;
	max-width: 600px; width: 100%;
	max-height: 90vh; overflow-y: auto;
	box-shadow: 0 20px 60px rgba(0,0,0,.3);
	animation: slideUp .3s cubic-bezier(.34,.69,.7,.95);
}
@keyframes slideUp {
	from { transform: translateY(30px); opacity: 0; }
	to { transform: translateY(0); opacity: 1; }
}
@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}
.pe-kit-modal__close {
	position: absolute; top: 16px; right: 16px;
	width: 32px; height: 32px; border-radius: 50%;
	background: #f5f5f5; border: none;
	font-size: 24px; cursor: pointer; z-index: 3;
	color: var(--pe-charcoal);
	display: flex; align-items: center; justify-content: center;
	transition: all .2s;
}
.pe-kit-modal__close:hover {
	background: var(--pe-red); color: #fff;
}
.pe-kit-modal__inner {
	padding: 40px;
}
.pe-kit-modal__title {
	font-family: var(--pe-font-display);
	font-size: 24px; font-weight: 800;
	color: var(--pe-charcoal); margin: 0 0 24px;
	text-transform: uppercase;
}
.pe-kit-modal__items {
	display: grid; gap: 16px; margin-bottom: 24px;
	border-top: 1px solid var(--pe-gray-200);
	padding-top: 24px;
}
.pe-kit-item {
	display: flex; gap: 16px; padding: 12px; border-radius: 8px;
	background: #f9f9f9; border: 1px solid var(--pe-gray-200);
}
.pe-kit-item__image {
	width: 80px; height: 80px; flex-shrink: 0;
	border-radius: 6px; overflow: hidden;
	background: #fff; border: 1px solid var(--pe-gray-200);
}
.pe-kit-item__image img {
	width: 100%; height: 100%;
	object-fit: cover; object-position: center;
}
.pe-kit-item__info {
	flex: 1; display: flex; flex-direction: column; justify-content: center;
}
.pe-kit-item__name {
	font-weight: 600; font-size: 14px;
	color: var(--pe-charcoal); margin-bottom: 4px;
}
.pe-kit-item__price {
	font-size: 14px; font-weight: 700;
	color: var(--pe-red);
}
.pe-kit-modal__pricing {
	background: #f9f9f9; border: 1px solid var(--pe-gray-200);
	border-radius: 8px; padding: 16px;
	margin-bottom: 20px;
}
.pe-kit-modal__price-row {
	display: flex; justify-content: space-between;
	font-size: 14px; color: var(--pe-charcoal);
	padding: 8px 0;
}
.pe-kit-modal__price-row--savings {
	color: var(--pe-red); font-weight: 600;
	border-top: 1px solid var(--pe-gray-200);
	border-bottom: 1px solid var(--pe-gray-200);
	padding: 12px 0;
	margin: 8px 0;
}
.pe-kit-modal__price-row--total {
	font-size: 16px; font-weight: 800;
	color: var(--pe-charcoal);
	padding-top: 12px;
}
.pe-kit-modal__footer {
	padding-top: 20px;
	border-top: 1px solid var(--pe-gray-200);
}
.pe-kit-modal__checkout {
	width: 100%; padding: 14px 20px;
	font-size: 14px; font-weight: 700;
	letter-spacing: .5px;
}

/* ================================================================
   FAQ CATEGORY GROUPS
   ================================================================ */
.pe-faq-group { margin-bottom: 32px; }
.pe-faq-category {
	font-family: var(--pe-font-display);
	font-size: 11px; font-weight: 700;
	letter-spacing: 2px; text-transform: uppercase;
	color: var(--pe-red); margin: 0 0 12px;
	display: flex; align-items: center; gap: 10px;
}
.pe-faq-category::after {
	content: ''; flex: 1; height: 1px;
	background: rgba(200,21,28,.15);
}

/* ================================================================
   FULL RESPONSIVE — Laptop, Tablet, Mobile
   ================================================================ */

/* ── 1280px — large tablets / small laptops ── */
@media (max-width: 1280px) {
	.pe-hero__inner { padding: 80px 32px 60px; }
	.pe-kit-title { font-size: clamp(44px, 6vw, 72px); }
}

/* ── 1024px — tablets landscape / small laptops ── */
@media (max-width: 1024px) {
	.pe-hero__inner { grid-template-columns: 1fr; justify-items: center; text-align: center; padding: 80px 24px 60px; gap: 60px; }
	.pe-hero__showcase { margin: 0 auto; max-width: 420px; justify-self: center; }
	.pe-hero__subtitle { margin: 0 auto 36px; }
	.pe-hero__ctas { justify-content: center; }
	.pe-hero__dots { bottom: -28px; }

	.pe-protection__grid { grid-template-columns: 1fr 1fr; }
	.pe-prot3-grid { grid-template-columns: 1fr; gap: 16px; }

	.pe-kit-inner { grid-template-columns: 1fr; gap: 40px; }
	.pe-kit-left { text-align: center; }
	.pe-kit-left .pe-kit-overline { justify-content: center; }
	.pe-kit-ctas { justify-content: center; }
	.pe-kit-sub { margin: 0 auto 32px; }

	.pe-hero__title { font-size: clamp(48px, 7vw, 88px); }
	.pe-pmodal__box { grid-template-columns: 1fr; }
	.pe-pmodal__media { border-right: none; border-bottom: 1px solid #f0f0f0; }
}

/* ── 900px — tablets portrait ── */
@media (max-width: 900px) {
	.pe-container { padding: 0 20px; }

	/* Hero */
	.pe-hero { padding: 60px 0 80px; }
	.pe-hero__showcase { aspect-ratio: 3 / 4; max-width: 320px; }

	/* Categories */
	.pe-category-grid { grid-template-columns: repeat(2, 1fr); }

	/* Products */
	.pe-product-grid { grid-template-columns: repeat(2, 1fr); }

	/* Trust */
	.pe-trust__grid { grid-template-columns: repeat(2, 1fr); }

	/* Bulk strip */
	.pe-bulk-strip__inner { grid-template-columns: 1fr; }
	.pe-bulk-strip__inner > a { justify-self: start; }

	/* Protection */
	.pe-protection { padding: 60px 0; }
	.pe-prot3-grid { grid-template-columns: 1fr; }
	.pe-protection__grid { grid-template-columns: 1fr; }

	/* Kit builder */
	.pe-kit-builder { padding: 60px 0; }

	/* Blog */
	.pe-blog-grid { grid-template-columns: 1fr; }
	.pe-blog-home { padding: 60px 0; }
	.pe-blog-strip { padding: 40px 0; }

	/* Footer */
	.pe-footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
	.pe-footer-col--brand { grid-column: 1 / -1; }

	/* About */
	.pe-about-nav__inner { gap: 0; overflow-x: auto; -webkit-overflow-scrolling: touch; }
	.pe-about-tab { padding: 14px 16px; font-size: 11px; }
	.pe-stat-grid { grid-template-columns: repeat(2, 1fr); }
	.pe-values-grid { grid-template-columns: 1fr; }
	.pe-compare-section { padding: 40px 0; }

	/* Sections spacing */
	.pe-categories { padding: 60px 0; }
	.pe-featured { padding: 60px 0; }
	.pe-trust { padding: 40px 0; }

	/* Product pages */
	.pe-page-hero { padding: 48px 0 40px; }
	.pe-page-hero__title { font-size: clamp(36px, 6vw, 64px); }
	.pe-ppage-products { padding: 48px 0; }
	.pe-why-section { padding: 48px 0; }
	.pe-why-grid { grid-template-columns: 1fr; }

	/* Trust band */
	.pe-trust-band__inner { flex-wrap: wrap; justify-content: center; }
	.pe-tb-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); width: 50%; justify-content: center; }

	/* Bundle cards */
	.pe-bundle-contents { white-space: normal; }
}

/* ── 768px — tablet small / large phone ── */
@media (max-width: 768px) {
	/* Announcement ticker */
	.pe-ticker__inner { animation-duration: 18s; }

	/* Hero text */
	.pe-hero__title { font-size: clamp(40px, 8vw, 72px); }
	.pe-hero__subtitle { font-size: 15px; }
	.pe-hero__ctas { flex-direction: column; align-items: center; gap: 12px; }
	.pe-hero__ctas .pe-btn { width: 100%; max-width: 280px; justify-content: center; }

	/* Section headers */
	.pe-section-title { font-size: clamp(24px, 5vw, 40px); }
	.pe-section-sub { font-size: 15px; }

	/* Product grid */
	.pe-product-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
	.pe-pp-grid { grid-template-columns: 1fr 1fr; }

	/* Category grid */
	.pe-category-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
	.pe-cat-card { aspect-ratio: 1; }

	/* Protection 3-card */
	.pe-prot3-card__img { aspect-ratio: 16/9; }

	/* Kit builder */
	.pe-kit-title { font-size: clamp(40px, 10vw, 68px); }

	/* Footer */
	.pe-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
	.pe-footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
	.pe-footer-bottom__right { text-align: center; }

	/* About */
	.pe-content-card { padding: 24px 20px; }
	.pe-about-body { padding: 32px 0 60px; }

	/* Compare table */
	.pe-table-wrap { font-size: 13px; }
	.pe-compare-table th, .pe-compare-table td { padding: 10px 14px; }

	/* Modal */
	.pe-pmodal { padding: 12px; }
	.pe-pmodal__box { max-height: 95vh; }

	/* Filter tabs */
	.pe-filter-tabs { gap: 6px; }
	.pe-ftab { padding: 7px 12px; font-size: 10px; }
}

/* ── 480px — phones ── */
@media (max-width: 480px) {
	/* Header */
	.site-header__inner { padding: 12px 16px 12px 0; }

	/* Hero */
	.pe-hero { padding: 48px 0 64px; }
	.pe-hero__title { font-size: clamp(36px, 10vw, 56px); line-height: .92; }
	.pe-hero__showcase { max-width: 280px; aspect-ratio: 3/4; }
	.pe-hero__dots { bottom: -24px; }

	/* Container */
	.pe-container { padding: 0 16px; }

	/* Grids → single column */
	.pe-product-grid { grid-template-columns: 1fr; }
	.pe-category-grid { grid-template-columns: 1fr; }
	.pe-pp-grid { grid-template-columns: 1fr; }
	.pe-trust__grid { grid-template-columns: 1fr; }
	.pe-why-grid { grid-template-columns: 1fr; }
	.pe-blog-grid { grid-template-columns: 1fr; }
	.pe-protection__grid { grid-template-columns: 1fr; }
	.pe-prot3-grid { grid-template-columns: 1fr; }
	.pe-values-grid { grid-template-columns: 1fr; }
	.pe-stat-grid { grid-template-columns: 1fr 1fr; }

	/* Section padding */
	.pe-categories { padding: 48px 0; }
	.pe-featured { padding: 48px 0; }
	.pe-protection { padding: 48px 0; }
	.pe-kit-builder { padding: 48px 0; }
	.pe-blog-home { padding: 48px 0; }
	.pe-trust { padding: 32px 0; }
	.pe-bulk-strip { padding: 48px 0; }

	/* Section headers */
	.pe-section-header { margin-bottom: 40px; }

	/* Page hero */
	.pe-page-hero { padding: 40px 0 32px; }
	.pe-page-hero__title { font-size: clamp(32px, 10vw, 52px); }
	.pe-page-hero__meta { gap: 12px; }
	.pe-phm-item { font-size: 12px; padding: 6px 12px; }

	/* Kit builder */
	.pe-kit-title { font-size: clamp(36px, 12vw, 56px); }
	.pe-bundle-card { flex-wrap: wrap; }
	.pe-bundle-pricing { flex-wrap: wrap; gap: 6px; }

	/* Footer */
	.pe-footer-grid { grid-template-columns: 1fr; gap: 24px; }
	.pe-footer-col--brand { grid-column: 1; }
	.pe-footer-bottom { padding: 24px 0; }
	.pe-footer-policy-note { display: none; }

	/* About nav */
	.pe-about-tab { padding: 12px 12px; font-size: 10px; letter-spacing: 1px; }

	/* Trust band */
	.pe-tb-item { width: 100%; justify-content: flex-start; padding: 10px 16px; }

	/* Product page */
	.pe-ppage-products { padding: 32px 0; }
	.pe-why-section { padding: 32px 0; }
	.pe-compare-section { padding: 32px 0; }
	.pe-pp-card__actions { grid-template-columns: 1fr; }

	/* Blog article */
	.pe-article { padding: 24px 16px; }
	.pe-cta-box { padding: 24px 20px; }

	/* Motion elements — reduce on small screens */
	.hm-bat { font-size: 40px; opacity: 0.03; }
	.hm-r1 { width: 200px; height: 200px; }
	.hm-r2 { display: none; }
	.hm-pitch { display: none; }
}

/* ── 360px — very small phones ── */
@media (max-width: 360px) {
	.pe-hero__title { font-size: 32px; }
	.pe-kit-title { font-size: 32px; }
	.pe-page-hero__title { font-size: 28px; }
	.pe-about-tab { padding: 12px 8px; font-size: 9px; }
	.pe-stat-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   FAQ CATEGORY HEADING
   ================================================================ */
.pe-faq-category { margin-bottom: 32px; }
.pe-faq-cat-title {
	font-family: var(--pe-font-display);
	font-size: 13px; font-weight: 700;
	letter-spacing: 2px; text-transform: uppercase;
	color: var(--pe-red); margin: 0 0 12px;
	padding-bottom: 8px;
	border-bottom: 1px solid rgba(200,21,28,.15);
}

/* ================================================================
   FULL RESPONSIVE OVERRIDES — Mobile / Tablet / Laptop
   Breakpoints: 480 · 640 · 768 · 900 · 1100
   ================================================================ */

/* ── Global ─────────────────────────────────────────────────────── */
@media (max-width: 768px) {
	.pe-container { padding: 0 16px; }
	.pe-section-title { font-size: clamp(28px, 6vw, 48px); }
	.pe-section-sub   { font-size: 15px; }
	.pe-eyebrow       { font-size: 11px; }
	.pe-btn           { padding: 12px 20px; font-size: 13px; }
}

/* ── Header / Nav ──────────────────────────────────────────────── */
@media (max-width: 768px) {
	.pe-announcement { font-size: 11px; }
	.pe-ticker__inner { padding: 8px 0; }
	.pe-announcement__item { padding: 0 20px; }
	.site-header__inner { padding: 12px 16px 12px 0; min-height: 64px; }
	.pe-header-actions .pe-header-icon { width: 36px; height: 36px; }
	.pe-cart-count { width: 14px; height: 14px; font-size: 8px; }
}

/* ── Hero ──────────────────────────────────────────────────────── */
@media (max-width: 900px) {
	.pe-hero { padding: 60px 0 80px; }
	.pe-hero__inner { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px 40px; }
	.pe-hero__showcase { max-width: 360px; margin: 0 auto; }
	.pe-hero__title { font-size: clamp(48px, 10vw, 80px); }
	.pe-hero__dots { bottom: -28px; }
}
@media (max-width: 480px) {
	.pe-hero { padding: 40px 0 60px; }
	.pe-hero__inner { padding: 40px 16px 24px; gap: 32px; }
	.pe-hero__showcase { max-width: 280px; }
	.pe-hero__title { font-size: clamp(40px, 12vw, 64px); }
	.pe-hero__subtitle { font-size: 14px; }
	.pe-hero__ctas { gap: 10px; }
	.pe-hero__ctas .pe-btn { flex: 1; justify-content: center; }
}

/* ── Categories ────────────────────────────────────────────────── */
@media (max-width: 480px) {
	.pe-categories { padding: 60px 0; }
	.pe-category-grid { gap: 12px; }
	.pe-cat-card__body { padding: 16px; }
	.pe-cat-card__title { font-size: 16px; }
}

/* ── Featured Products ─────────────────────────────────────────── */
@media (max-width: 480px) {
	.pe-featured { padding: 60px 0; }
	.pe-product-card__title { font-size: 14px; }
}

/* ── Protection Gear 3-card ────────────────────────────────────── */
@media (max-width: 900px) {
	.pe-prot3-grid { grid-template-columns: 1fr; gap: 16px; }
	.pe-prot3-card { flex-direction: row; }
	.pe-prot3-card__img { aspect-ratio: 1; width: 140px; flex-shrink: 0; border-radius: 12px 0 0 12px; }
	.pe-prot3-card__img--empty { width: 140px; }
	.pe-prot3-card__emoji { font-size: 56px; }
}
@media (max-width: 560px) {
	.pe-prot3-card { flex-direction: column; }
	.pe-prot3-card__img { width: 100%; aspect-ratio: 16/9; border-radius: 12px 12px 0 0; }
	.pe-prot3-card__img--empty { width: 100%; min-height: 120px; }
}

/* ── Build Your Kit ────────────────────────────────────────────── */
@media (max-width: 900px) {
	.pe-kit-inner { grid-template-columns: 1fr; gap: 40px; }
	.pe-kit-title { font-size: clamp(48px, 10vw, 72px); }
}
@media (max-width: 480px) {
	.pe-kit-builder { padding: 60px 0; }
	.pe-kit-title { font-size: clamp(40px, 12vw, 60px); }
	.pe-kit-sub { font-size: 14px; }
	.pe-kit-ctas { flex-direction: column; }
	.pe-kit-ctas .pe-btn { text-align: center; justify-content: center; }
	.pe-bundle-card { padding: 14px 14px; gap: 12px; }
	.pe-bundle-name { font-size: 12px; }
	.pe-bundle-contents { font-size: 11px; white-space: normal; }
	.pe-bundle-price { font-size: 16px; }
	.pe-bundle-add { width: 32px; height: 32px; font-size: 18px; }
}

/* ── Blog grid ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
	.pe-blog-grid  { grid-template-columns: 1fr; }
	.pe-blog-home  { padding: 60px 0; }
	.pe-blog-strip { padding: 60px 0; }
}

/* ── Bulk orders strip ─────────────────────────────────────────── */
@media (max-width: 640px) {
	.pe-bulk-strip { padding: 60px 0; }
	.pe-bulk-strip h2 { font-size: clamp(26px, 7vw, 40px); }
	.pe-bulk-strip__inner { gap: 28px; }
}

/* ── Trust strip ───────────────────────────────────────────────── */
@media (max-width: 480px) {
	.pe-trust { padding: 40px 0; }
	.pe-trust__grid { grid-template-columns: repeat(2,1fr); gap: 20px; }
	.pe-trust__icon { font-size: 24px; }
}

/* ── Footer ────────────────────────────────────────────────────── */
@media (max-width: 768px) {
	.pe-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
	.pe-footer-col--brand { grid-column: 1 / -1; }
	.pe-footer-brand { font-size: 28px; }
	.pe-footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
	.pe-footer-bottom__right { font-size: 12px; }
}
@media (max-width: 480px) {
	.pe-footer-grid { grid-template-columns: 1fr; gap: 24px; }
	.pe-footer-policy-note { margin-top: 12px; }
}

/* ── Page Hero (product/about pages) ──────────────────────────── */
@media (max-width: 768px) {
	.pe-page-hero { padding: 48px 0 36px; }
	.pe-page-hero__title { font-size: clamp(40px, 10vw, 72px); }
	.pe-page-hero__sub { font-size: 15px; }
	.pe-page-hero__meta { gap: 10px; }
	.pe-phm-item { font-size: 12px; padding: 6px 12px; }
}
@media (max-width: 480px) {
	.pe-page-hero { padding: 36px 0 24px; }
	.pe-page-hero__meta { flex-direction: column; }
}

/* ── Trust band (product pages) ────────────────────────────────── */
@media (max-width: 768px) {
	.pe-trust-band__inner { gap: 0; flex-wrap: wrap; justify-content: center; }
	.pe-tb-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); width: 50%; justify-content: center; }
}
@media (max-width: 480px) {
	.pe-tb-item { width: 100%; }
}

/* ── Product page grid ─────────────────────────────────────────── */
@media (max-width: 480px) {
	.pe-ppage-products { padding: 48px 0; }
	.pe-filter-row { flex-direction: column; align-items: flex-start; }
	.pe-filter-tabs { width: 100%; overflow-x: auto; flex-wrap: nowrap; }
	.pe-ftab { white-space: nowrap; }
	.pe-pp-card__actions { grid-template-columns: 1fr; }
}

/* ── Why grid / Compare table ──────────────────────────────────── */
@media (max-width: 768px) {
	.pe-why-section { padding: 60px 0; }
	.pe-compare-section { padding: 60px 0; }
	.pe-compare-table th, .pe-compare-table td { padding: 10px 12px; font-size: 13px; }
}

/* ── Product modal ─────────────────────────────────────────────── */
@media (max-width: 640px) {
	.pe-pmodal { padding: 12px; align-items: flex-end; }
	.pe-pmodal__box { border-radius: 16px 16px 0 0; max-height: 85vh; }
	.pe-pmodal__info { padding: 20px 16px; }
	.pe-pmodal__specs { grid-template-columns: 1fr; }
}

/* ── About page ────────────────────────────────────────────────── */
@media (max-width: 768px) {
	.pe-about-nav { top: 64px; }
	.pe-about-nav__inner { gap: 0; }
	.pe-about-tab { padding: 12px 16px; font-size: 11px; }
	.pe-about-body { padding: 40px 0 60px; }
	.pe-stat-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
	.pe-stat-num { font-size: 28px; }
	.pe-content-card { padding: 24px 20px; }
	.pe-values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
	.pe-stat-grid { gap: 10px; }
	.pe-content-card h2 { font-size: 18px; }
	.pe-faq-q { font-size: 14px; padding: 14px 16px; }
	.pe-faq-a-inner { padding: 12px 16px; font-size: 13px; }
}

/* ── Kit builder (about page CTA) ─────────────────────────────── */
@media (max-width: 480px) {
	.pe-kit-builder { padding: 60px 0; }
}

/* ── Scrollbar — hide on mobile ────────────────────────────────── */
@media (max-width: 768px) {
	.pe-about-nav__inner::-webkit-scrollbar { display: none; }
	.pe-filter-tabs::-webkit-scrollbar { display: none; }
}

/* ── Motion BG — reduce on mobile ─────────────────────────────── */
@media (max-width: 768px) {
	.hm-bat, .hm-ring { display: none; }
	.hm-ball { width: 20px; height: 20px; }
	.pe-ref-blob--1 { width: 400px; height: 400px; }
	.pe-ref-blob--2 { width: 250px; height: 250px; }
}

.pe-section-sub { font-family: var(--pe-font-display); font-size: 15px; font-weight: 400; letter-spacing: .02em; line-height: 1.65; color: var(--pe-gray-700); max-width: 600px; margin: 12px auto 0; text-transform: none; }

.pe-footer-social{display:flex;gap:10px;margin-top:20px;flex-wrap:wrap;}
.pe-social-icon{display:flex;align-items:center;justify-content:center;width:38px;height:38px;border-radius:10px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12);color:rgba(255,255,255,.8);text-decoration:none;transition:all .2s;}
.pe-social-icon svg{width:18px;height:18px;display:block;}
.pe-social-icon:hover{background:var(--pe-red);color:#fff;border-color:var(--pe-red);transform:translateY(-2px);}

.pe-footer-tagline{font-family:var(--pe-font-display);font-size:12px;font-weight:400;letter-spacing:.02em;color:rgba(255,255,255,.55);margin:8px 0 0;}

/* ================================================================
   FOOTER CONTACT ROW — one line per item
   ================================================================ */
.pe-footer-contact-row {
	display: flex !important;
	align-items: center;
	gap: 8px;
	white-space: nowrap;
}
.pe-footer-contact-row span:first-child { flex-shrink: 0; }
.pe-footer-contact-row a,
.pe-footer-address-text { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pe-footer-social--nowrap { flex-wrap: nowrap !important; gap: 8px !important; }
.pe-footer-social--nowrap .pe-social-icon { width: 34px; height: 34px; flex-shrink: 0; }
.pe-footer-social--nowrap .pe-social-icon svg { width: 16px; height: 16px; }

/* ================================================================
   WISHLIST BUTTON — on product cards
   ================================================================ */
.pe-wish-btn {
	position: absolute;
	top: 10px; right: 10px;
	width: 36px; height: 36px;
	border-radius: 50%;
	background: #fff;
	border: 1.5px solid rgba(0,0,0,.1);
	cursor: pointer;
	display: flex; align-items: center; justify-content: center;
	padding: 0;
	box-shadow: 0 2px 10px rgba(0,0,0,.18);
	transition: transform .2s, background .2s, box-shadow .2s;
	z-index: 5;
}
.pe-wish-btn svg { width: 17px; height: 17px; color: #555; transition: color .2s, fill .2s; }
.pe-wish-btn.is-wished { background: var(--pe-red); border-color: var(--pe-red); }
.pe-wish-btn.is-wished svg { fill: #fff; stroke: #fff; color: #fff; }
.pe-wish-btn:hover { background: var(--pe-red); border-color: var(--pe-red); transform: scale(1.12); box-shadow: 0 4px 14px rgba(192,57,43,.35); }
.pe-wish-btn:hover svg { fill: #fff; stroke: #fff; color: #fff; }
.pe-wish-btn.pe-wish-pop { animation: wishPop .4s cubic-bezier(.36,.07,.19,.97); }
@keyframes wishPop {
	0%   { transform: scale(1); }
	30%  { transform: scale(1.35); }
	60%  { transform: scale(.9); }
	100% { transform: scale(1); }
}

/* Wishlist counter in header */
.pe-wishlist-icon { position: relative; }
.pe-wishlist-count {
	position: absolute; top: -4px; right: -4px;
	width: 16px; height: 16px;
	border-radius: 50%;
	background: var(--pe-red); color: #fff;
	font-size: 9px; font-weight: 700;
	display: flex; align-items: center; justify-content: center;
	pointer-events: none;
}

/* ================================================================
   WISHLIST PAGE
   ================================================================ */
.pe-wishlist-page { padding: 0; }
.pe-wishlist-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.pe-wishlist-item { background: #fff; border-radius: 12px; border: 1px solid var(--pe-gray-200); overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.pe-wishlist-item__img { display: block; aspect-ratio: 4/3; overflow: hidden; background: #f9f5f5; }
.pe-wishlist-item__img img { width: 100%; height: 100%; object-fit: cover; }
.pe-wishlist-item__info { padding: 14px 16px 0; }
.pe-wishlist-item__cat { font-family: var(--pe-font-display); font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--pe-red); }
.pe-wishlist-item__info h3 { font-size: 15px; font-weight: 700; color: var(--pe-charcoal); margin: 4px 0 6px; }
.pe-wishlist-item__price { font-family: var(--pe-font-display); font-size: 18px; font-weight: 800; color: var(--pe-red); }
.pe-wishlist-item__actions { padding: 12px 16px 16px; display: flex; gap: 8px; flex-wrap: wrap; }
.pe-wishlist-item__remove { background: none; border: 1px solid var(--pe-gray-300); border-radius: 4px; padding: 8px 12px; font-size: 12px; color: var(--pe-gray-700); cursor: pointer; }
.pe-wishlist-item__remove:hover { border-color: var(--pe-red); color: var(--pe-red); }
.pe-wishlist-empty { text-align: center; padding: 80px 20px; }
.pe-wishlist-empty__icon { font-size: 64px; margin-bottom: 16px; }
.pe-wishlist-empty h3 { font-family: var(--pe-font-display); font-size: 22px; font-weight: 800; text-transform: uppercase; color: var(--pe-charcoal); margin: 0 0 8px; }
.pe-wishlist-empty p { font-size: 15px; color: var(--pe-gray-700); margin: 0 0 24px; }

/* ================================================================
   GALLERY PAGE
   ================================================================ */
.pe-gallery-page { padding: 0; }
.pe-gallery-body { padding: 40px 0 100px; }
.pe-gallery-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.pe-gallery-grid {
	columns: 3 280px;
	gap: 16px;
}
.pe-gallery-item {
	break-inside: avoid;
	margin-bottom: 16px;
	border-radius: 12px;
	overflow: hidden;
}
.pe-gallery-item__wrap { position: relative; overflow: hidden; border-radius: 12px; cursor: pointer; }
.pe-gallery-item__wrap img { width: 100%; display: block; transition: transform .4s ease; }
.pe-gallery-item:hover .pe-gallery-item__wrap img { transform: scale(1.04); }
.pe-gallery-item__overlay {
	position: absolute; bottom: 0; left: 0; right: 0;
	padding: 16px;
	background: linear-gradient(0deg, rgba(0,0,0,.7) 0%, transparent 100%);
	opacity: 0;
	transition: opacity .3s;
}
.pe-gallery-item:hover .pe-gallery-item__overlay { opacity: 1; }
.pe-gallery-item__title { display: block; font-weight: 700; color: #fff; font-size: 14px; }
.pe-gallery-item__event { display: block; font-size: 11px; color: rgba(255,255,255,.7); margin-bottom: 4px; }
.pe-gallery-item__cat { display: inline-block; font-family: var(--pe-font-display); font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--pe-red); margin-top: 4px; }
.pe-gallery-empty { text-align: center; padding: 80px 20px; }
@media (max-width: 640px) { .pe-gallery-grid { columns: 2 160px; } }

/* ================================================================
   STAR PLAYERS PAGE
   ================================================================ */
.pe-players-page { padding: 0; }
.pe-players-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.pe-player-card { background: #fff; border-radius: 16px; overflow: hidden; border: 1px solid var(--pe-gray-200); box-shadow: 0 4px 20px rgba(0,0,0,.07); }
.pe-player-card__photo { position: relative; aspect-ratio: 3/4; overflow: hidden; background: linear-gradient(145deg, #fff5f5, #fdeaea); }
.pe-player-card__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.pe-player-card__photo-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 80px; }
.pe-player-card__role { position: absolute; top: 12px; left: 12px; background: var(--pe-red); color: #fff; font-family: var(--pe-font-display); font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 4px 10px; border-radius: 3px; }
.pe-player-card__body { padding: 20px; }
.pe-player-card__name { font-family: var(--pe-font-display); font-size: 20px; font-weight: 800; text-transform: uppercase; color: var(--pe-charcoal); margin: 0 0 4px; }
.pe-player-card__team { font-size: 13px; color: var(--pe-gray-700); display: block; margin-bottom: 12px; }
.pe-player-card__quote { border-left: 3px solid var(--pe-red); padding: 8px 12px; margin: 0 0 12px; font-family: 'Lora', Georgia, serif; font-style: italic; font-size: 14px; color: var(--pe-gray-700); line-height: 1.6; }
.pe-player-card__insta { font-family: var(--pe-font-display); font-size: 12px; font-weight: 700; letter-spacing: 1px; color: var(--pe-red); text-decoration: none; }
.pe-player-card__insta:hover { text-decoration: underline; }

/* ================================================================
   BAT REPAIR CTA SECTION (homepage)
   ================================================================ */
.pe-bat-repair-cta {
	background: linear-gradient(135deg, #fff5f5 0%, #fdeaea 60%, #fff0f0 100%);
	padding: 100px 0;
	position: relative;
	overflow: hidden;
}
.pe-bat-repair-cta::before {
	content: '';
	position: absolute;
	right: -80px; top: -80px;
	width: 400px; height: 400px;
	background: radial-gradient(circle, rgba(192,57,43,.08) 0%, transparent 70%);
	border-radius: 50%;
}
.pe-bat-repair-cta__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}
.pe-bat-repair-cta__title {
	font-family: var(--pe-font-display);
	font-size: clamp(36px, 5vw, 56px);
	font-weight: 800;
	text-transform: uppercase;
	line-height: 1.05;
	color: var(--pe-charcoal);
	margin: 12px 0 20px;
}
.pe-bat-repair-cta__accent { color: var(--pe-red); }
.pe-bat-repair-cta__desc {
	font-size: 16px;
	color: var(--pe-gray-700);
	line-height: 1.7;
	max-width: 480px;
	margin-bottom: 32px;
}
.pe-bat-repair-cta__stats {
	display: flex;
	gap: 40px;
	margin-bottom: 36px;
}
.pe-bat-repair-cta__stat-num {
	display: block;
	font-family: var(--pe-font-display);
	font-size: 32px;
	font-weight: 800;
	color: var(--pe-red);
	line-height: 1;
}
.pe-bat-repair-cta__stat-label {
	display: block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--pe-gray-500);
	margin-top: 4px;
}
.pe-bat-repair-cta__btn { display: inline-flex; align-items: center; gap: 8px; }
.pe-bat-repair-cta__visual { display: flex; align-items: center; justify-content: center; }
.pe-bat-repair-cta__badge-wrap {
	position: relative;
	width: 320px; height: 300px;
}
.pe-bat-repair-cta__badge {
	position: absolute;
	background: #fff;
	border: 2px solid var(--pe-gray-100);
	box-shadow: 0 8px 24px rgba(0,0,0,0.08);
	border-radius: var(--pe-radius);
	padding: 16px 20px;
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 140px;
	animation: pe-float 4s ease-in-out infinite;
	transition: all 0.3s ease;
}
.pe-bat-repair-cta__badge:hover {
	box-shadow: 0 12px 32px rgba(192, 57, 43, 0.12);
	border-color: var(--pe-red);
	transform: translateY(-2px);
}
.pe-bat-repair-cta__badge--2 { top: 100px; right: 0; animation-delay: 1.3s; }
.pe-bat-repair-cta__badge--3 { bottom: 0; left: 30px; animation-delay: 2.6s; }

/* Circular Icon Styling */
.pe-bat-repair-cta__badge-icon { 
	width: 56px; 
	height: 56px; 
	min-width: 56px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #f5f5f5 0%, #efefef 100%);
	border: 2px solid var(--pe-gray-200);
	box-shadow: inset 0 2px 4px rgba(0,0,0,0.05), 0 4px 8px rgba(0,0,0,0.08);
	overflow: hidden;
	flex-shrink: 0;
}

.pe-bat-repair-cta__badge-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

.pe-bat-repair-cta__badge:hover .pe-bat-repair-cta__badge-icon {
	border-color: var(--pe-red);
	box-shadow: inset 0 2px 4px rgba(0,0,0,0.05), 0 6px 16px rgba(192, 57, 43, 0.2);
	background: linear-gradient(135deg, #fef5f5 0%, #fdeaea 100%);
}

.pe-bat-repair-cta__badge-text { 
	font-family: var(--pe-font-display); 
	font-size: 12px; 
	font-weight: 700; 
	text-transform: uppercase; 
	letter-spacing: 0.6px; 
	color: var(--pe-charcoal); 
	line-height: 1.35;
}

@keyframes pe-float {
	0%, 100% { transform: translateY(0); }
	50%       { transform: translateY(-8px); }
}
@media (max-width: 900px) {
	.pe-bat-repair-cta__inner { grid-template-columns: 1fr; }
	.pe-bat-repair-cta__visual { display: none; }
}

/* ================================================================
   TESTIMONIALS SECTION (homepage)
   ================================================================ */
.pe-testimonials {
	background: var(--pe-cream);
	padding: 100px 0;
}
.pe-testimonial-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-bottom: 48px;
}
.pe-testimonial-card {
	background: #fff;
	border: 1px solid var(--pe-gray-200);
	border-radius: var(--pe-radius);
	padding: 28px;
	box-shadow: var(--pe-shadow-sm);
	transition: transform .25s var(--pe-ease), box-shadow .25s var(--pe-ease);
}
.pe-testimonial-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--pe-shadow);
}
.pe-testimonial-card__top {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 18px;
}
.pe-testimonial-card__avatar {
	width: 52px; height: 52px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--pe-red), var(--pe-red-dark));
	color: #fff;
	font-family: var(--pe-font-display);
	font-size: 16px;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	letter-spacing: .5px;
}
.pe-testimonial-card__info { flex: 1; min-width: 0; }
.pe-testimonial-card__name {
	display: block;
	font-family: var(--pe-font-display);
	font-size: 16px;
	font-weight: 700;
	color: var(--pe-charcoal);
	text-transform: uppercase;
	letter-spacing: .5px;
}
.pe-testimonial-card__role {
	display: block;
	font-size: 12px;
	color: var(--pe-gray-500);
	margin-top: 2px;
}
.pe-testimonial-card__stars {
	color: #f59e0b;
	font-size: 16px;
	letter-spacing: 1px;
	flex-shrink: 0;
}
.pe-testimonial-card__review {
	font-size: 14px;
	line-height: 1.7;
	color: var(--pe-gray-700);
	margin: 0 0 16px;
}
.pe-testimonial-card__product {
	font-size: 12px;
	font-weight: 600;
	color: var(--pe-gray-500);
	display: block;
	border-top: 1px solid var(--pe-gray-100);
	padding-top: 12px;
}
.pe-testimonials__cta { text-align: center; }
@media (max-width: 900px) { .pe-testimonial-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .pe-testimonial-grid { grid-template-columns: 1fr; } }

/* ================================================================
   BAT REPAIR PAGE — HERO
   ================================================================ */
.pe-bat-repair-page { padding: 0; }
.pe-repair-hero {
	position: relative;
	background: var(--pe-blue-deep);
	min-height: 500px;
	display: flex;
	align-items: center;
	padding: 80px 0 60px;
	overflow: hidden;
}
.pe-repair-hero__bg {
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at 70% 50%, rgba(192,57,43,.18) 0%, transparent 60%),
	            radial-gradient(ellipse at 10% 80%, rgba(30,58,95,.5) 0%, transparent 50%);
	pointer-events: none;
}
.pe-repair-hero__inner {
	position: relative;
	z-index: 1;
	text-align: center;
}
.pe-repair-hero__back {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--pe-font-display);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: rgba(255,255,255,.6);
	margin-bottom: 24px;
	transition: color .2s;
}
.pe-repair-hero__back:hover { color: #fff; }
.pe-eyebrow--light { color: rgba(255,255,255,.7); border-color: rgba(255,255,255,.2); }
.pe-eyebrow--tag {
	background: rgba(255,255,255,.1);
	border: 1px solid rgba(255,255,255,.2);
	padding: 5px 14px;
	border-radius: 100px;
	font-size: 11px;
	display: inline-block;
	margin-bottom: 20px;
}
.pe-repair-hero__title {
	font-family: var(--pe-font-display);
	font-size: clamp(52px, 8vw, 96px);
	font-weight: 900;
	text-transform: uppercase;
	color: #fff;
	line-height: 1;
	margin: 0 0 24px;
}
.pe-repair-hero__accent { color: var(--pe-red); }
.pe-repair-hero__desc {
	font-size: 18px;
	color: rgba(255,255,255,.75);
	line-height: 1.7;
	max-width: 600px;
	margin: 0 auto 36px;
}
.pe-repair-hero__ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }
.pe-repair-hero__stats {
	display: flex;
	gap: 60px;
	justify-content: center;
	border-top: 1px solid rgba(255,255,255,.12);
	padding-top: 40px;
}
.pe-repair-hero__stat-num {
	display: block;
	font-family: var(--pe-font-display);
	font-size: 40px;
	font-weight: 900;
	color: #fff;
}
.pe-repair-hero__stat-label {
	display: block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: rgba(255,255,255,.5);
	margin-top: 4px;
}

/* ================================================================
   BAT REPAIR PAGE — SERVICE CARDS
   ================================================================ */
.pe-repair-options { padding: 100px 0; background: var(--pe-cream); }
.pe-repair-options__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.pe-service-card {
	background: #fff;
	border: 1px solid var(--pe-gray-200);
	border-radius: var(--pe-radius);
	padding: 32px 28px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	transition: transform .25s var(--pe-ease), box-shadow .25s var(--pe-ease);
}
.pe-service-card:hover { transform: translateY(-5px); box-shadow: var(--pe-shadow); }
.pe-service-card__icon {
	width: 56px; height: 56px;
	background: var(--pe-gray-100);
	border-radius: var(--pe-radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
}
.pe-service-card__name {
	font-family: var(--pe-font-display);
	font-size: 18px;
	font-weight: 800;
	text-transform: uppercase;
	color: var(--pe-charcoal);
	margin: 0;
}
.pe-service-card__desc { font-size: 14px; color: var(--pe-gray-700); line-height: 1.7; flex: 1; margin: 0; }
.pe-service-card__footer { margin-top: 8px; display: flex; flex-direction: column; gap: 4px; }
.pe-service-card__price { font-family: var(--pe-font-display); font-size: 20px; font-weight: 800; color: var(--pe-red); }
.pe-service-card__time { font-size: 12px; color: var(--pe-gray-500); }
@media (max-width: 900px) { .pe-repair-options__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .pe-repair-options__grid { grid-template-columns: 1fr; } }

/* ================================================================
   BAT REPAIR PAGE — PROCESS STEPS
   ================================================================ */
.pe-repair-process {
	background: var(--pe-bone);
	padding: 100px 0;
}
.pe-process-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	position: relative;
}
.pe-process-steps::before {
	content: '';
	position: absolute;
	top: 28px;
	left: 12%;
	right: 12%;
	height: 2px;
	background: linear-gradient(to right, var(--pe-red), rgba(192,57,43,.2));
	z-index: 0;
}
.pe-process-step {
	text-align: center;
	padding: 0 20px;
	position: relative;
	z-index: 1;
}
.pe-process-step__num {
	display: block;
	font-family: var(--pe-font-display);
	font-size: 64px;
	font-weight: 900;
	color: rgba(192,57,43,.12);
	line-height: 1;
	margin-bottom: 12px;
}
.pe-process-step__title {
	font-family: var(--pe-font-display);
	font-size: 16px;
	font-weight: 800;
	text-transform: uppercase;
	color: var(--pe-charcoal);
	margin: 0 0 10px;
}
.pe-process-step__desc { font-size: 13px; color: var(--pe-gray-700); line-height: 1.6; margin: 0; }
@media (max-width: 768px) {
	.pe-process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
	.pe-process-steps::before { display: none; }
}
@media (max-width: 500px) { .pe-process-steps { grid-template-columns: 1fr; } }

/* ================================================================
   BAT REPAIR PAGE — BAT TYPES
   ================================================================ */
.pe-repair-types { padding: 100px 0; background: var(--pe-cream); }
.pe-repair-types__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
}
.pe-repair-types__title {
	font-family: var(--pe-font-display);
	font-size: clamp(36px, 4vw, 52px);
	font-weight: 900;
	text-transform: uppercase;
	line-height: 1.05;
	margin: 12px 0 20px;
}
.pe-repair-types__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pe-bat-type-card {
	background: #fff;
	border: 1px solid var(--pe-gray-200);
	border-radius: var(--pe-radius);
	padding: 24px;
	display: flex;
	gap: 16px;
	align-items: flex-start;
	transition: box-shadow .2s var(--pe-ease);
}
.pe-bat-type-card:hover { box-shadow: var(--pe-shadow); }
.pe-bat-type-card__icon { font-size: 28px; flex-shrink: 0; margin-top: 2px; }
.pe-bat-type-card__name {
	font-family: var(--pe-font-display);
	font-size: 15px;
	font-weight: 800;
	text-transform: uppercase;
	color: var(--pe-charcoal);
	margin: 0 0 6px;
}
.pe-bat-type-card__desc { font-size: 13px; color: var(--pe-gray-700); line-height: 1.6; margin: 0 0 10px; }
.pe-bat-type-card__price { font-family: var(--pe-font-display); font-size: 15px; font-weight: 700; color: var(--pe-red); }
@media (max-width: 900px) {
	.pe-repair-types__inner { grid-template-columns: 1fr; }
	.pe-repair-types__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) { .pe-repair-types__grid { grid-template-columns: 1fr; } }

/* ================================================================
   BAT REPAIR PAGE — BOOKING FORM
   ================================================================ */
.pe-book-repair {
	background: var(--pe-bone);
	padding: 100px 0;
}
.pe-book-repair__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
}
.pe-book-repair__title {
	font-family: var(--pe-font-display);
	font-size: clamp(32px, 4vw, 48px);
	font-weight: 900;
	text-transform: uppercase;
	line-height: 1.05;
	margin: 12px 0 20px;
}
.pe-book-repair__contact-list { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.pe-book-repair__contact-item { display: flex; gap: 16px; align-items: flex-start; }
.pe-book-repair__contact-icon {
	width: 44px; height: 44px;
	background: var(--pe-red);
	color: #fff;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	flex-shrink: 0;
}
.pe-book-repair__contact-item strong { display: block; font-family: var(--pe-font-display); font-size: 15px; font-weight: 800; text-transform: uppercase; color: var(--pe-charcoal); margin-bottom: 2px; }
.pe-book-repair__contact-item span { font-size: 13px; color: var(--pe-gray-700); }
.pe-book-repair__form-wrap {
	background: #fff;
	border: 1px solid var(--pe-gray-200);
	border-radius: var(--pe-radius-lg);
	padding: 40px;
	box-shadow: var(--pe-shadow);
}
.pe-book-repair__form-title {
	font-family: var(--pe-font-display);
	font-size: 22px;
	font-weight: 800;
	text-transform: uppercase;
	color: var(--pe-charcoal);
	margin: 0 0 28px;
}
.pe-book-repair__form { display: flex; flex-direction: column; gap: 18px; }
.pe-book-repair__form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pe-form-field { display: flex; flex-direction: column; gap: 6px; }
.pe-form-field__label { font-size: 13px; font-weight: 700; color: var(--pe-charcoal); text-transform: uppercase; letter-spacing: .5px; }
.pe-required { color: var(--pe-red); }
.pe-form-field__input {
	padding: 12px 14px;
	border: 1.5px solid var(--pe-gray-200);
	border-radius: var(--pe-radius-sm);
	font-family: var(--pe-font-body);
	font-size: 15px;
	color: var(--pe-charcoal);
	background: var(--pe-cream);
	width: 100%;
	transition: border-color .2s var(--pe-ease);
	outline: none;
}
.pe-form-field__input:focus { border-color: var(--pe-red); background: #fff; }
.pe-form-field__textarea { resize: vertical; min-height: 100px; }
.pe-book-repair__submit { width: 100%; justify-content: center; padding: 16px; font-size: 16px; }
.pe-book-repair__form-note { text-align: center; font-size: 12px; color: var(--pe-gray-500); margin: 0; }
@media (max-width: 900px) {
	.pe-book-repair__inner { grid-template-columns: 1fr; }
	.pe-book-repair__form-row { grid-template-columns: 1fr; }
}

/* ================================================================
   FOOTER — Reorganized clean layout
   ================================================================ */

/* ── Trust bar ── */
.pe-footer-trust {
	display: flex;
	justify-content: center;
	gap: 0;
	flex-wrap: wrap;
	padding: 24px 0;
	border-bottom: 1px solid rgba(255,255,255,.08);
}
.pe-footer-trust__item {
	display: flex; align-items: center; gap: 8px;
	font-size: 13px; font-weight: 600; color: rgba(255,255,255,.6);
	padding: 8px 28px;
	border-right: 1px solid rgba(255,255,255,.08);
}
.pe-footer-trust__item:last-child { border-right: none; }
.pe-footer-trust__item span:first-child { font-size: 18px; }

/* ── Divider ── */
.pe-footer-divider { height: 1px; background: rgba(255,255,255,.08); margin: 0; }

/* ── Main grid ── */
.pe-footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr 1.4fr;
	gap: 40px;
	padding: 48px 0;
}

/* ── Brand col ── */
.pe-footer-logo {
	display: inline-flex; align-items: center; gap: 12px;
	text-decoration: none; margin-bottom: 18px;
}
.pe-footer-logo__mark {
	width: 42px; height: 42px;
	background: var(--pe-red);
	border-radius: 8px;
	display: flex; align-items: center; justify-content: center;
	font-family: var(--pe-font-display); font-size: 16px;
	font-weight: 900; color: #fff;
	flex-shrink: 0;
}
.pe-footer-logo__text {
	font-family: var(--pe-font-display); font-size: 14px;
	font-weight: 600; text-transform: uppercase;
	letter-spacing: 1px; color: rgba(255,255,255,.85);
	line-height: 1.3;
}
.pe-footer-logo__text strong { display: block; font-weight: 900; font-size: 16px; color: #fff; }
.pe-footer-tagline {
	font-size: 13px; color: rgba(255,255,255,.45);
	line-height: 1.7; margin: 0 0 24px; max-width: 280px;
}

/* ── Social icons ── */
.pe-footer-social {
	display: flex; flex-wrap: wrap; gap: 8px;
}
.pe-social-icon {
	width: 36px; height: 36px;
	border-radius: 8px;
	background: rgba(255,255,255,.06);
	border: 1px solid rgba(255,255,255,.1);
	display: flex; align-items: center; justify-content: center;
	color: rgba(255,255,255,.6);
	transition: all .2s;
}
.pe-social-icon svg { width: 16px; height: 16px; }
.pe-social-icon:hover { background: var(--pe-red); border-color: var(--pe-red); color: #fff; transform: translateY(-2px); }

/* ── Column headings ── */
.pe-footer-heading {
	font-family: var(--pe-font-display);
	font-size: 12px; font-weight: 800;
	text-transform: uppercase; letter-spacing: 2px;
	color: rgba(255,255,255,.4);
	margin: 0 0 18px;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(255,255,255,.08);
}

/* ── Links ── */
.pe-footer-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.pe-footer-links a {
	font-size: 13px; color: rgba(255,255,255,.55);
	text-decoration: none; transition: color .2s;
	display: flex; align-items: center; gap: 6px;
}
.pe-footer-links a:hover { color: #fff; }

/* ── Contact block ── */
.pe-footer-contact-block { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.pe-footer-contact-row {
	display: flex; align-items: center; gap: 8px;
	font-size: 12px; color: rgba(255,255,255,.45);
	text-decoration: none; transition: color .2s;
}
.pe-footer-contact-row:hover { color: rgba(255,255,255,.75); }
.pe-footer-contact-row span:first-child { font-size: 14px; flex-shrink: 0; }

/* ── Bottom bar ── */
.pe-footer-bottom {
	display: flex; justify-content: space-between; align-items: center;
	flex-wrap: wrap; gap: 8px;
	padding: 20px 0;
	font-size: 12px; color: rgba(255,255,255,.3);
}
.pe-footer-bottom__right { color: rgba(255,255,255,.3); }

/* ── Responsive ── */
@media (max-width: 1100px) {
	.pe-footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 32px; }
	.pe-footer-col:nth-child(4), .pe-footer-col:nth-child(5) { grid-column: auto; }
}
@media (max-width: 700px) {
	.pe-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
	.pe-footer-col--brand { grid-column: 1 / -1; }
	.pe-footer-trust { flex-direction: column; align-items: flex-start; padding: 16px 0; gap: 4px; }
	.pe-footer-trust__item { border-right: none; padding: 6px 0; }
	.pe-footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
	.pe-footer-grid { grid-template-columns: 1fr; }
}


.pe-marquee-contact-bar {
	overflow: hidden;
	background: rgba(192, 57, 43, 0.08);
	padding: 16px 0;
	border: 1px solid rgba(255, 255, 255, 0.05);
	margin: 0 -12px;
	padding: 16px 12px;
}

.pe-marquee-content {
	display: flex;
	align-items: center;
	gap: 24px;
	animation: scroll-left 20s linear infinite;
	white-space: nowrap;
}

/* Duplicate content for seamless loop */
.pe-marquee-contact-bar::after {
	content: attr(data-content);
}

.pe-marquee-item {
	display: inline-flex;
	align-items: center;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.75);
	flex-shrink: 0;
}

.pe-marquee-link {
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
	transition: color 0.2s;
	font-weight: 500;
}

.pe-marquee-link:hover {
	color: var(--pe-red);
}

.pe-marquee-separator {
	color: rgba(255, 255, 255, 0.2);
	display: inline-block;
	margin: 0 8px;
}

/* Responsive adjustments for marquee */
@media (max-width: 768px) {
	.pe-marquee-content {
		gap: 16px;
		animation: scroll-left 15s linear infinite;
	}
	
	.pe-marquee-item {
		font-size: 13px;
	}
}

@media (max-width: 480px) {
	.pe-marquee-contact-bar {
		padding: 12px 12px;
		margin: 0 -12px;
	}
	
	.pe-marquee-content {
		gap: 12px;
		animation: scroll-left 12s linear infinite;
	}
	
	.pe-marquee-item {
		font-size: 12px;
	}
	
	.pe-marquee-separator {
		margin: 0 6px;
	}
}

/* Contact simple below socials */
.pe-footer-contact-simple { margin-top: 16px; }
.pe-footer-contact-simple p { margin: 4px 0; font-size: 12px; }
.pe-footer-contact-simple a { color: rgba(255,255,255,.65); text-decoration: none; transition: color .2s; }
.pe-footer-contact-simple a:hover { color: rgba(255,255,255,.95); }
/* Update PE blue to match logo */
:root {
	--pe-blue: #0052FF;
	--pe-blue-dark: #003DBD;
}

/* Footer headings and accents */
.pe-footer-heading {
	color: var(--pe-blue);
	border-bottom: 1px solid rgba(0, 82, 255, 0.15);
}

/* Footer links on hover */
.pe-footer-links a:hover {
	color: var(--pe-blue);
}

/* Social icons */
.pe-social-icon:hover {
	background: var(--pe-blue);
	border-color: var(--pe-blue);
}

/* Contact links */
.pe-footer-contact-simple a {
	color: var(--pe-blue);
	font-weight: 500;
}

.pe-footer-contact-simple a:hover {
	color: var(--pe-blue-dark);
}

/* Bottom bar accent */
.pe-footer-bottom__right {
	color: var(--pe-blue);
}

/* Footer logo image */
.pe-footer-logo-img {
	height: 120px;
	width: auto;
	display: block;
	margin-bottom: 16px;
}

/* Footer headings - white & bold */
.pe-footer-heading {
	color: #ffffff !important;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 1px;
}
