/* Critical CSS - Above the Fold Styles */
:root {
	--pf-ink: #070b17;
	--pf-muted: #59616a;
	--pf-line: #dbe7c8;
	--pf-soft: #f7fbef;
	--pf-paper: #ffffff;
	--pf-lime: #86c900;
	--pf-lime-dark: #65a800;
	--pf-leaf: #1f7a2d;
	--pf-leaf-dark: #14551f;
	--pf-navy: #070b17;
	--pf-navy-soft: #111827;
	--pf-green: #86c900;
	--pf-green-dark: #1f7a2d;
	--pf-red: #dc3545;
	--pf-kraft: #65a800;
	--pf-charcoal: #070b17;
}

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

html {
	overflow-x: hidden;
	-webkit-text-size-adjust: 100%;
}

body {
	color: var(--pf-ink);
	background: #fff;
	margin: 0;
	font-family: 'Inter', Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.5;
	overflow-x: hidden;
	-webkit-tap-highlight-color: transparent;
	-webkit-font-smoothing: antialiased;
}

a, button {
	touch-action: manipulation;
}

.pf-wrap {
	width: min(1180px, calc(100% - 32px));
	margin: 0 auto;
}

.pf-site-header {
	position: relative;
	z-index: 50;
	background: #fff;
	box-shadow: 0 1px 0 rgba(31, 45, 39, 0.08);
}

.pf-contact-bar {
	background: var(--pf-charcoal);
	color: #fff;
	font-size: 12px;
}

.pf-contact-bar__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 18px;
	padding: 7px 0;
}

.pf-contact-bar a {
	color: #fff;
	text-decoration: none;
}

.pf-announcement {
	background: var(--pf-lime);
	color: var(--pf-navy);
	font-size: 14px;
	font-weight: 800;
	text-align: center;
}

.pf-main-head {
	background: #fff;
}

.pf-main-head__inner {
	display: grid;
	grid-template-columns: 230px minmax(260px, 1fr) auto;
	align-items: center;
	gap: 22px;
	padding: 22px 0;
}

.pf-brand {
	display: inline-flex;
	align-items: center;
	color: var(--pf-ink);
	line-height: 1;
	text-decoration: none;
}

.pf-brand img {
	display: block;
	width: 128px;
	height: auto;
	max-height: 116px;
	object-fit: contain;
}

.pf-nav {
	background: var(--pf-navy);
}

.pf-nav__inner {
	display: flex;
	align-items: center;
	gap: 0;
	overflow-x: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
	-webkit-overflow-scrolling: touch;
	scroll-snap-type: x proximity;
}

.pf-nav__inner::-webkit-scrollbar {
	display: none;
}

.pf-nav a {
	display: inline-flex;
	align-items: center;
	min-height: 46px;
	padding: 0 17px;
	color: #fff;
	font-size: 13px;
	font-weight: 900;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
}

.pf-nav a:hover,
.pf-nav__all {
	background: var(--pf-lime);
	color: var(--pf-navy);
}

.pf-hero {
	position: relative;
	min-height: 560px;
	background: #f0f8df url("../images/packfood-hero.png") center right / cover no-repeat;
	overflow: hidden;
}

.pf-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.92) 38%, rgba(255,255,255,0.28) 68%, rgba(255,255,255,0.04) 100%);
	z-index: 1;
}

.pf-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 660px);
	align-items: center;
	min-height: 560px;
	padding: 56px 0 64px;
}

.pf-hero__copy {
	position: relative;
	z-index: 3;
	max-width: 610px;
}

.pf-kicker {
	margin: 0 0 12px;
	color: var(--pf-lime-dark);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

.pf-hero h1 {
	margin: 0;
	color: var(--pf-ink);
	font-weight: 800;
	line-height: 1.04;
	letter-spacing: 0;
	font-size: clamp(40px, 5vw, 66px);
}

.pf-hero__text {
	max-width: 560px;
	margin: 20px 0 0;
	color: var(--pf-muted);
	font-size: 18px;
	line-height: 1.55;
}

.pf-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 22px;
	text-decoration: none;
	border-radius: 4px;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: none;
}

.pf-btn--primary {
	background: var(--pf-lime);
	border: 1px solid var(--pf-lime);
	color: var(--pf-navy);
}

.pf-btn--secondary {
	background: #fff;
	border: 1px solid var(--pf-line);
	color: var(--pf-ink);
}

.pf-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

/* Mobile Menu Toggle */
.pf-mobile-menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: space-around;
	width: 32px;
	height: 28px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	z-index: 1001;
}

.pf-mobile-menu-toggle span {
	width: 100%;
	height: 3px;
	background: var(--pf-navy);
	border-radius: 2px;
	transition: all 0.3s ease;
}

@media (max-width: 900px) {
	.pf-mobile-menu-toggle {
		display: flex;
		grid-column: 1;
		grid-row: 1;
	}

	.pf-main-head__inner {
		grid-template-columns: 42px 1fr auto;
		gap: 12px;
		padding: 14px 0;
	}

	.pf-brand {
		grid-column: 2;
		grid-row: 1;
		justify-content: center;
	}

	.pf-head-search {
		grid-column: 1 / -1;
		grid-row: 2;
	}

	.pf-head-badges {
		grid-column: 3;
		grid-row: 1;
		justify-content: end;
	}

	.pf-delivery-badge,
	.pf-nav {
		display: none;
	}

	.pf-cart-link {
		min-height: 40px;
		padding: 0 12px;
	}

	.pf-hero {
		min-height: 520px;
		background-position: 62% center;
	}

	.pf-hero__grid {
		min-height: 520px;
		grid-template-columns: minmax(0, 600px);
		padding: 48px 0 58px;
	}
}

@media (max-width: 560px) {
	.pf-wrap {
		width: min(100% - 22px, 1180px);
	}

	.pf-contact-bar {
		display: none;
	}

	.pf-main-head__inner {
		grid-template-columns: 42px 1fr auto;
		gap: 10px;
		padding: 12px 0;
	}

	.pf-head-badges {
		display: flex;
		grid-column: 3;
		grid-row: 1;
	}

	.pf-brand img {
		width: 96px;
		max-height: 90px;
	}

	.pf-hero {
		background-position: center bottom;
	}

	.pf-hero__grid {
		padding: 34px 0 230px;
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.pf-hero h1 {
		font-size: 34px;
		line-height: 1.08;
	}

	.pf-hero__text {
		margin-top: 16px;
		font-size: 16px;
	}

	.pf-hero__actions {
		display: grid;
		grid-template-columns: 1fr;
		gap: 10px;
	}
}
