/* ============================================================
 * 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:          #1e3a5f;
	--pe-blue-dark:     #142a47;
	--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: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	border: 2px solid transparent;
	border-radius: var(--pe-radius-sm);
	cursor: pointer;
	transition: all .25s var(--pe-ease);
	text-decoration: none;
	white-space: nowrap;
}
.pe-btn--primary { background: var(--pe-red); color: var(--pe-white); }
.pe-btn--primary:hover { background: var(--pe-red-dark); color: var(--pe-white); transform: translateY(-2px); box-shadow: var(--pe-shadow); }
.pe-btn--secondary { background: var(--pe-blue); color: var(--pe-white); }
.pe-btn--secondary:hover { background: var(--pe-blue-dark); color: var(--pe-white); transform: translateY(-2px); }
.pe-btn--ghost { background: transparent; color: var(--pe-charcoal); border-color: var(--pe-charcoal); }
.pe-btn--ghost:hover { background: var(--pe-charcoal); color: var(--pe-white); }
.pe-btn--large { padding: 18px 36px; font-size: 16px; }

/* ------- ANNOUNCEMENT BAR ------------------------------------------------- */
.pe-announcement {
	background: var(--pe-blue-deep);
	color: var(--pe-white);
	font-size: 13px;
	letter-spacing: .03em;
}
.pe-announcement__inner {
	display: flex; flex-wrap: wrap; gap: 24px;
	align-items: center; justify-content: center;
	padding: 10px 24px;
}
.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;
	min-height: 80px;
}
.site-branding { flex-shrink: 0; }
.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: 6px;
}
.pe-menu li { position: relative; }
.pe-menu a {
	display: block;
	padding: 10px 14px;
	font-family: var(--pe-font-display);
	font-size: 15px;
	font-weight: 500;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--pe-charcoal);
	border-radius: var(--pe-radius-sm);
	transition: all .2s var(--pe-ease);
}
.pe-menu a:hover, .pe-menu .current-menu-item > a {
	color: var(--pe-red);
	background: var(--pe-bone);
}
.pe-menu .sub-menu {
	position: absolute; top: 100%; left: 0;
	background: var(--pe-white);
	box-shadow: var(--pe-shadow);
	min-width: 220px;
	padding: 8px;
	border-radius: var(--pe-radius);
	flex-direction: column;
	opacity: 0; visibility: hidden;
	transform: translateY(8px);
	transition: all .2s var(--pe-ease);
	z-index: 10;
}
.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: 8px 12px;
	letter-spacing: .04em;
}

.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: var(--pe-bone);
	transition: all .2s var(--pe-ease);
}
.pe-header-icon:hover { background: var(--pe-red); color: var(--pe-white); }
.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 {
	position: fixed; top: 0; left: 0;
	width: 22px; height: 22px;
	pointer-events: none;
	z-index: 9999;
	mix-blend-mode: normal;
	opacity: 0;
	transition: opacity .3s var(--pe-ease), transform .08s linear;
	will-change: transform;
}
.pe-cursor.is-active { opacity: 1; }
.pe-cursor.is-clicking .pe-cursor__ball { transform: scale(.8); }
.pe-cursor__ball {
	display: block;
	width: 100%; height: 100%;
	background: radial-gradient(circle at 30% 30%, #e74c3c 0%, var(--pe-red) 50%, var(--pe-red-deep) 100%);
	border-radius: 50%;
	box-shadow:
		0 0 0 1px rgba(0,0,0,.15),
		0 4px 12px rgba(192,57,43,.5),
		inset -2px -3px 6px rgba(0,0,0,.3);
	transform-origin: center;
	transition: transform .15s var(--pe-ease);
	position: relative;
}
.pe-cursor__seam {
	position: absolute; top: 50%; left: 12%; right: 12%; height: 1.5px;
	background: linear-gradient(90deg, transparent, #fff 20%, #fff 80%, transparent);
	transform: translateY(-50%);
	box-shadow: 0 -3px 0 -1.5px rgba(255,255,255,.5), 0 3px 0 -1.5px rgba(255,255,255,.5);
	border-radius: 1px;
}
.pe-cursor-trail {
	position: fixed; inset: 0;
	pointer-events: none;
	z-index: 9998;
	width: 100%; height: 100%;
}

/* 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); }
}
@media (prefers-reduced-motion: reduce) {
	.pe-motion-bg__layer { animation: none; }
}

/* ------- 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: 80px 0 100px;
	position: relative;
	overflow: hidden;
}
.pe-hero__inner {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: 60px;
	align-items: center;
}
.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-size: 19px;
	line-height: 1.55;
	color: var(--pe-gray-700);
	max-width: 540px;
	margin: 0 0 36px;
}
.pe-hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.pe-hero__showcase {
	position: relative;
	aspect-ratio: 1;
	max-width: 560px;
	margin-left: auto;
	width: 100%;
}
.pe-hero__rotator {
	position: relative;
	width: 100%; height: 100%;
	border-radius: var(--pe-radius-lg);
	overflow: hidden;
	background: linear-gradient(135deg, var(--pe-blue-deep) 0%, var(--pe-blue) 100%);
	box-shadow: var(--pe-shadow-lg);
}
.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; inset: 0;
	display: flex; align-items: center; justify-content: center;
	padding: 40px;
}
.pe-hero__slide-image img {
	width: 100%; height: 100%;
	object-fit: contain;
	filter: drop-shadow(0 24px 48px rgba(0,0,0,.4));
}
.pe-hero__slide-placeholder {
	font-size: 200px;
	opacity: .3;
}
.pe-hero__slide-info {
	position: relative;
	padding: 24px 28px;
	background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.7) 60%);
	z-index: 2;
}
.pe-hero__slide-cat {
	font-family: var(--pe-font-display);
	font-size: 12px;
	letter-spacing: .25em;
	text-transform: uppercase;
	color: rgba(255,255,255,.85);
	display: block;
	margin-bottom: 6px;
}
.pe-hero__slide-title {
	font-size: 24px;
	color: var(--pe-white);
	margin: 0 0 4px;
}
.pe-hero__slide-price {
	font-family: var(--pe-font-display);
	font-size: 18px;
	font-weight: 600;
	color: var(--pe-white);
}
.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: 100%; aspect-ratio: 4 / 3; }
}

/* ------- CATEGORY GRID ---------------------------------------------------- */
.pe-categories {
	padding: 100px 0;
	background: var(--pe-white);
}
.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: var(--pe-cream);
}
.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: hidden;
	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, var(--pe-blue-deep) 0%, var(--pe-blue) 100%);
	color: var(--pe-white);
	position: relative;
	overflow: hidden;
}
.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: var(--pe-white); }
.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 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: var(--pe-charcoal);
	color: var(--pe-cream);
	padding: 80px 0 0;
	margin-top: 60px;
}
.pe-footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 48px;
	padding-bottom: 60px;
	border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (max-width: 900px) {
	.pe-footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@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); }
}
.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); }
