:root {
	--pc-bg: #fbf9f4;
	--pc-bg-soft: #f5f3ee;
	--pc-surface: #ffffff;
	--pc-ink: #1b1c19;
	--pc-muted: #594138;
	--pc-brown: #3e2723;
	--pc-espresso: #1a0f0e;
	--pc-roasted: #5d4037;
	--pc-sand: #d7ccc8;
	--pc-sand-light: #f5d7b6;
	--pc-orange: #f26522;
	--pc-orange-dark: #a63b00;
	--pc-line: #e1bfb3;
	--pc-shadow: 0 4px 20px rgba(62, 39, 35, 0.08);
	--pc-shadow-strong: 0 12px 32px rgba(62, 39, 35, 0.14);
	--pc-radius: 8px;
	--pc-container: 1280px;
}

body.pc-home-body {
	margin: 0;
	background: var(--pc-bg);
	color: var(--pc-ink);
	font-family: "Manrope", sans-serif;
	font-size: 16px;
	line-height: 1.6;
	letter-spacing: 0;
}

.pc-home-body *,
.pc-home-body *::before,
.pc-home-body *::after {
	box-sizing: border-box;
}

.pc-home-body a {
	color: inherit;
	text-decoration: none;
}

.pc-home-body img {
	display: block;
	max-width: 100%;
}

.pc-container {
	width: min(100% - 48px, var(--pc-container));
	margin-inline: auto;
}

.pc-skip-link {
	position: fixed;
	left: 16px;
	top: 16px;
	z-index: 1000;
	transform: translateY(-160%);
	border-radius: var(--pc-radius);
	background: var(--pc-orange);
	color: #fff;
	padding: 10px 14px;
	font-weight: 700;
	transition: transform 180ms ease;
}

.pc-skip-link:focus {
	transform: translateY(0);
}

.pc-site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(251, 249, 244, 0.96);
	border-bottom: 1px solid rgba(225, 191, 179, 0.45);
	box-shadow: var(--pc-shadow);
	backdrop-filter: blur(14px);
}

.pc-site-header,
.pc-site-footer {
	font-family: "Manrope", sans-serif;
	letter-spacing: 0;
}

@media screen and (max-width: 782px) {
	.admin-bar .pc-site-header {
		top: 0;
	}
}

.pc-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 78px;
	gap: 24px;
}

.pc-logo {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-height: 44px;
	font-family: 'Manrope';
	font-weight: 700;
	letter-spacing: 0;
	white-space: nowrap;
}

.pc-logo-img {
	width: auto;
	max-height: 42px;
	object-fit: contain;
}

.pc-primary-nav,
.pc-menu {
	display: flex;
	font-size: 16px;
	align-items: center;
	justify-content: center;
	gap: 34px;
}

.pc-menu,
.pc-mobile-menu,
.pc-footer-menu,
.pc-menu ul,
.pc-mobile-menu ul,
.pc-footer-menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.pc-primary-nav {
	font-family: 'Manrope';
	font-size: 14px;
	font-weight: 600;
}

.pc-menu > li {
	position: relative;
}

.pc-menu > .menu-item-has-children > a {
	gap: 7px;
}

.pc-menu > .menu-item-has-children > a::after {
	content: "";
	width: 7px;
	height: 7px;
	margin-top: -4px;
	border-right: 1.6px solid currentColor;
	border-bottom: 1.6px solid currentColor;
	transform: rotate(45deg);
	transition: transform 180ms ease;
}

.pc-menu > .menu-item-has-children:hover > a::after,
.pc-menu > .menu-item-has-children:focus-within > a::after {
	margin-top: 3px;
	transform: rotate(225deg);
}

.pc-primary-nav a,
.pc-menu a {
	display: flex;
	align-items: center;
	min-height: 44px;
	color: var(--pc-muted);
	transition: color 180ms ease;
}

.pc-primary-nav a:hover,
.pc-primary-nav a:focus-visible,
.pc-menu .current-menu-item > a,
.pc-menu .current-menu-ancestor > a {
	color: var(--pc-orange);
}

.pc-menu .sub-menu {
	position: absolute;
	z-index: 80;
	top: 100%;
	left: 0;
	min-width: 248px;
	padding: 12px;
	border: 1px solid rgba(225, 191, 179, 0.5);
	border-radius: var(--pc-radius);
	background: rgba(255, 255, 255, 0.98);
	box-shadow: var(--pc-shadow-strong);
	opacity: 0;
	pointer-events: none;
	transform: translateY(8px);
	transition: opacity 180ms ease, transform 180ms ease;
}

.pc-menu li:hover > .sub-menu,
.pc-menu li:focus-within > .sub-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.pc-menu .sub-menu .sub-menu {
	top: 0;
	left: 100%;
	transform: translateX(8px);
}

.pc-menu .sub-menu li:hover > .sub-menu,
.pc-menu .sub-menu li:focus-within > .sub-menu {
	transform: translateX(0);
}

.pc-menu .sub-menu a {
	min-height: 46px;
	border-radius: 6px;
	padding: 10px 14px;
	color: var(--pc-brown);
	white-space: nowrap;
}

.pc-menu .sub-menu .menu-item-has-children > a {
	justify-content: space-between;
	gap: 18px;
}

.pc-menu .sub-menu .menu-item-has-children > a::after {
	content: "";
	width: 7px;
	height: 7px;
	border-right: 1.6px solid currentColor;
	border-bottom: 1.6px solid currentColor;
	transform: rotate(-45deg);
}

.pc-menu .sub-menu a:hover,
.pc-menu .sub-menu a:focus-visible {
	background: rgba(242, 101, 34, 0.08);
	color: var(--pc-orange);
	outline: none;
}

.pc-nav-actions {
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--pc-orange-dark);
}

.pc-header-search {
	position: relative;
	display: flex;
	align-items: center;
	width: 44px;
	height: 44px;
	border: 1px solid transparent;
	border-radius: 999px;
	background: transparent;
	margin-bottom: 0;
}

.pc-header-search:focus-within {
	z-index: 90;
}

.pc-header-search input.pc-header-search__field {
	position: absolute;
	top: calc(100% + 12px);
	right: 0;
	z-index: 95;
	width: 320px !important;
	max-width: calc(100vw - 32px);
	height: 46px;
	border: 1px solid rgba(225, 191, 179, 0.58);
	border-radius: 999px;
	background: #fff;
	box-sizing: border-box;
	box-shadow: 0 14px 34px rgba(62, 39, 35, 0.14);
	color: var(--pc-brown);
	font: 600 14px/1 "Manrope", sans-serif;
	margin: 0;
	outline: none;
	opacity: 0;
	pointer-events: none;
	padding: 0 48px 0 18px;
	transform: translateY(-6px);
	transition: opacity 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.pc-header-search:focus-within input.pc-header-search__field {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.pc-header-search input.pc-header-search__field:focus {
	border-color: rgba(242, 101, 34, 0.55);
}

.pc-header-search input.pc-header-search__field::placeholder {
	color: rgba(89, 65, 56, 0.68);
}

.pc-header-search__submit {
	flex: 0 0 44px;
	min-height: 44px;
	padding: 0;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	color: inherit !important;
	line-height: 1;
}

.pc-icon-link,
.pc-menu-toggle,
.pc-round-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: inherit;
	cursor: pointer;
	transition: background 180ms ease, color 180ms ease, transform 180ms ease;
	margin-bottom: 0;
}

.pc-icon-link:hover,
.pc-menu-toggle:hover,
.pc-round-action:hover,
.pc-icon-link:focus-visible,
.pc-menu-toggle:focus-visible,
.pc-round-action:focus-visible {
	background: rgba(242, 101, 34, 0.1);
	color: var(--pc-orange);
	outline: none;
}

.pc-icon-link:active,
.pc-menu-toggle:active,
.pc-round-action:active {
	transform: scale(0.94);
}

.pc-icon-link svg,
.pc-menu-toggle svg,
.pc-round-action svg,
.pc-category-content svg,
.pc-text-link svg,
.pc-read-more svg,
.pc-roast-icon svg,
.pc-footer-contact svg {
	width: 21px;
	height: 21px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.pc-cart-link {
	position: relative;
}

.pc-cart-link span {
	position: absolute;
	top: 3px;
	right: 1px;
	min-width: 17px;
	height: 17px;
	border-radius: 999px;
	background: var(--pc-orange);
	color: #fff;
	font-size: 10px;
	font-weight: 800;
	line-height: 17px;
	text-align: center;
}

.pc-menu-toggle,
.pc-mobile-nav {
	display: none;
}

.pc-mobile-nav {
	padding: 0 24px 18px;
	border-top: 1px solid rgba(225, 191, 179, 0.35);
	background: var(--pc-bg);
}

.pc-mobile-menu a,
.pc-mobile-nav a {
	display: block;
	min-height: 44px;
	padding: 12px 0;
	color: var(--pc-muted);
	font-weight: 700;
}

.pc-mobile-menu .sub-menu {
	margin-left: 14px;
	border-left: 1px solid rgba(225, 191, 179, 0.62);
	padding-left: 14px;
}

.pc-hero {
	position: relative;
	height: clamp(240px, 30vw, 380px);
	overflow: hidden;
	background: var(--pc-espresso);
	margin: 24px auto;
	max-width: min(100% - 48px, 1280px);
	border-radius: var(--pc-radius);
	border: 1px solid rgba(225, 191, 179, 0.25);
	cursor: grab;
	user-select: none;
	-webkit-user-select: none;
}

.pc-hero:active {
	cursor: grabbing;
}

/* --- Slider track & slides --- */
.pc-slider-track {
	display: flex;
	width: 100%;
	height: 100%;
	transition: transform 700ms cubic-bezier(0.4, 0, 0.2, 1);
	touch-action: pan-y;
	will-change: transform;
}

.pc-slider-track.is-dragging {
	transition: none;
	cursor: grabbing;
}

.pc-slider-track.is-jump-reset {
	transition: none;
}

.pc-slider-slide {
	flex: 0 0 100%;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.pc-slider-slide picture,
.pc-slider-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	cursor: grab;
}

.pc-slider-slide.is-dragging picture,
.pc-slider-slide.is-dragging img,
.pc-slider-track.is-dragging picture,
.pc-slider-track.is-dragging img {
	cursor: grabbing;
}

/* --- Slider dots --- */
.pc-slider-dots {
	position: absolute;
	bottom: 8px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	display: flex;
	gap: 4px;
	align-items: center;
}

.pc-slider-dot {
	width: 6px;
	height: 6px;
	min-height: auto;
	min-width: auto;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.6);
	border-radius: 999px;
	background: transparent;
	cursor: pointer;
	transition: background 250ms ease, width 250ms ease, border-color 250ms ease;
}

.pc-slider-dot.is-active {
	width: 14px;
	min-height: auto;
	background: #fff;
	border-color: #fff;
}

.pc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	border-radius: var(--pc-radius);
	padding: 13px 26px;
	border: 1px solid transparent;
	font-family: 'Manrope';
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0;
	cursor: pointer;
	transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.pc-btn:hover,
.pc-btn:focus-visible {
	transform: translateY(-2px);
	outline: none;
}

.pc-btn-primary {
	background: var(--pc-orange);
	color: #fff;
	box-shadow: 0 8px 24px rgba(242, 101, 34, 0.26);
}

.pc-btn-primary:hover,
.pc-btn-primary:focus-visible {
	background: var(--pc-orange-dark);
}

.pc-btn-ghost {
	background: transparent;
	border-color: rgba(141, 113, 102, 0.35);
	color: var(--pc-muted);
	border-radius: 999px;
}

.pc-btn-ghost:hover,
.pc-btn-ghost:focus-visible {
	border-color: var(--pc-orange);
	color: var(--pc-orange);
}

.pc-btn-light {
	background: rgba(255, 255, 255, 0.72);
	border-color: rgba(141, 113, 102, 0.28);
	color: var(--pc-brown);
}

.pc-btn-light:hover,
.pc-btn-light:focus-visible {
	background: var(--pc-orange);
	border-color: var(--pc-orange);
	color: #fff;
}

.pc-section {
	padding: 20px 0 60px;
}

.pc-category-section {
	background: linear-gradient(180deg, #fff 0%, var(--pc-bg-soft) 100%);
}

.pc-category-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}

.pc-category-section .screen-reader-text {
	position: static !important;
	display: block;
	width: auto;
	height: auto;
	clip: auto;
	clip-path: none;
	overflow: visible;
	margin: 0 auto 10px;
	font-family: 'Manrope';
	font-size: clamp(24px, 3vw, 40px);
	font-weight: 700;
	line-height: 1.15;
	text-align: center;
	color: var(--pc-ink);
}

.pc-category-section .screen-reader-text::after {
	content: "Chọn nhanh dòng sản phẩm hoặc dịch vụ phù hợp với nhu cầu của bạn.";
	display: block;
	max-width: 620px;
	margin: 12px auto 34px;
	font-family: "Manrope", sans-serif;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.65;
	color: var(--pc-muted);
}

.pc-category-card {
	position: relative;
	min-height: 220px;
	overflow: hidden;
	border-radius: var(--pc-radius);
	box-shadow: var(--pc-shadow);
	isolation: isolate;
	background: var(--pc-espresso);
	transition: transform 220ms ease, box-shadow 220ms ease;
}

.pc-category-card:hover,
.pc-category-card:focus-visible {
	transform: translateY(-4px);
	box-shadow: var(--pc-shadow-strong);
	outline: none;
}

.pc-category-card img {
	width: 100%;
	height: 100%;
	min-height: 220px;
	object-fit: cover;
	transition: transform 520ms ease;
}

.pc-category-card:hover img,
.pc-category-card:focus-visible img {
	transform: scale(1.06);
}

.pc-category-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(26, 15, 14, 0.02) 0%, rgba(26, 15, 14, 0.22) 42%, rgba(26, 15, 14, 0.86) 100%),
		linear-gradient(90deg, rgba(166, 59, 0, 0.16), transparent 52%);
	z-index: 1;
}

.pc-category-content {
	position: absolute;
	left: 24px;
	right: 24px;
	bottom: 24px;
	z-index: 2;
	color: #fff;
}

.pc-category-content strong {
	display: block;
	margin-bottom: 6px;
	font-family: 'Manrope';
	font-size: 24px;
	line-height: 1.2;
}

.pc-category-content small {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: rgba(255, 255, 255, 0.84);
	font-size: 13px;
	font-weight: 700;
	min-height: 32px;
	padding: 7px 12px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(8px);
}

.pc-category-content svg {
	width: 16px;
	height: 16px;
}

.pc-products-section {
	background: var(--pc-bg-soft);
}

.pc-section-heading {
	max-width: 760px;
	margin: 42px;
}

.pc-centered {
	margin-inline: auto;
	text-align: center;
}

.pc-section-heading h2,
.pc-about-copy h2,
.pc-blog-head h2 {
	margin: 0;
	font-family: 'Manrope';
	font-weight: 700;
	line-height: 1.12;
	letter-spacing: 0;
	color: var(--pc-ink);
	font-size: clamp(28px, 3vw, 38px);
}

.pc-section-heading p,
.pc-blog-head p {
	margin: 12px 0 0;
	color: var(--pc-muted);
}

.pc-product-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

.pc-product-card {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: 16px;
	border-radius: var(--pc-radius);
	background: var(--pc-surface);
	box-shadow: 0 4px 18px rgba(62, 39, 35, 0.055);
	transition: transform 220ms ease, box-shadow 220ms ease;
}

.pc-product-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--pc-shadow);
}

.pc-product-image {
	position: relative;
	display: grid;
	place-items: center;
	aspect-ratio: 1;
	margin-bottom: 16px;
	overflow: hidden;
	border-radius: var(--pc-radius);
	background: var(--pc-bg-soft);
}

.pc-product-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform 300ms ease;
}

.pc-product-card:hover .pc-product-image img {
	transform: scale(1.035);
}

.pc-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 1;
	border-radius: 999px;
	background: var(--pc-orange);
	color: #fff;
	padding: 4px 8px;
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
}

.pc-product-card h3 {
	margin: 0 0 14px;
	color: var(--pc-ink);
	font-family: "Manrope", sans-serif;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.4;
}

.pc-product-card h3 a {
	display: -webkit-box;
	min-height: 42px;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.pc-product-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: auto;
}

.pc-price,
.pc-price .amount {
	color: var(--pc-orange-dark);
	font-family: 'Manrope';
	font-size: 18px;
	font-weight: 400;
}

.pc-round-action {
	flex: 0 0 40px;
	width: 40px;
	height: 40px;
	background: var(--pc-bg-soft);
	color: var(--pc-brown);
}

.pc-round-action:hover,
.pc-round-action:focus-visible {
	background: var(--pc-orange);
	color: #fff;
}

.pc-section-action {
	margin-top: 38px;
	text-align: center;
}

.pc-roast-section {
	background: var(--pc-bg);
}

.pc-roast-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}

.pc-roast-card {
	padding: 32px;
	border: 1px solid rgba(225, 191, 179, 0.48);
	border-radius: var(--pc-radius);
	background: var(--pc-bg-soft);
	text-align: center;
}

.pc-roast-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	margin-bottom: 18px;
	border-radius: 999px;
	background: #ffdbce;
	color: var(--pc-orange-dark);
}

.pc-roast-icon svg {
	width: 28px;
	height: 28px;
}

.pc-roast-card h3 {
	margin: 0 0 24px;
	font-family: 'Manrope';
	font-size: 21px;
	line-height: 1.25;
}

.pc-roast-bars {
	display: grid;
	gap: 15px;
	text-align: left;
}

.pc-roast-label {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 6px;
	color: var(--pc-muted);
	font-size: 13px;
	font-weight: 700;
}

.pc-roast-label strong {
	color: var(--pc-orange-dark);
}

.pc-progress {
	height: 5px;
	overflow: hidden;
	border-radius: 999px;
	background: rgba(225, 191, 179, 0.52);
}

.pc-progress span {
	display: block;
	height: 100%;
	border-radius: inherit;
	background: var(--pc-orange-dark);
}

.pc-about-section {
	position: relative;
	overflow: hidden;
	padding: 74px 0;
	background: var(--pc-sand-light);
}

.pc-about-section::before {
	content: "";
	position: absolute;
	inset: 0;
	opacity: 0.18;
	background-image: radial-gradient(var(--pc-roasted) 1px, transparent 1px);
	background-size: 20px 20px;
}

.pc-about-layout {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	align-items: center;
	gap: 54px;
}

.pc-about-media {
	overflow: hidden;
	border-radius: var(--pc-radius);
	box-shadow: var(--pc-shadow-strong);
}

.pc-about-media img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.pc-about-copy h2 {
	color: var(--pc-espresso);
	font-size: clamp(38px, 5vw, 56px);
}

.pc-about-copy p {
	max-width: 640px;
	margin: 18px 0 0;
	color: var(--pc-muted);
}

.pc-about-copy .pc-lead {
	color: var(--pc-roasted);
	font-size: clamp(17px, 1.6vw, 20px);
	font-weight: 500;
}

.pc-about-copy .pc-btn {
	margin-top: 26px;
}

.pc-blog-section {
	position: relative;
	overflow: hidden;
	padding: 70px 0 78px;
	background: linear-gradient(180deg, #fff 0%, #fbf9f4 52%, #f5f3ee 100%);
	border-top: 1px solid rgba(225, 191, 179, 0.28);
}

.pc-blog-section > .pc-container {
	position: relative;
}

.pc-blog-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 32px;
	margin-bottom: 34px;
	padding-bottom: 22px;
	border-bottom: 1px solid rgba(225, 191, 179, 0.55);
}

.pc-blog-head > div {
	max-width: 760px;
}

.pc-blog-head h2 {
	font-size: clamp(32px, 3.2vw, 44px);
}

.pc-blog-head p {
	max-width: 640px;
	font-size: 15px;
	line-height: 1.7;
}

.pc-text-link,
.pc-read-more {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--pc-orange-dark);
	font-family: 'Manrope';
	font-size: 14px;
	font-weight: 800;
	transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.pc-blog-head .pc-text-link {
	flex: 0 0 auto;
	min-height: 40px;
	border: 1px solid rgba(166, 59, 0, 0.18);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.72);
	padding: 9px 14px;
	box-shadow: 0 8px 22px rgba(62, 39, 35, 0.055);
}

.pc-text-link:hover,
.pc-read-more:hover,
.pc-text-link:focus-visible,
.pc-read-more:focus-visible {
	background: rgba(242, 101, 34, 0.12);
	border-color: rgba(242, 101, 34, 0.28);
	color: var(--pc-orange);
	transform: translateY(-1px);
	outline: none;
}

.pc-text-link svg,
.pc-read-more svg {
	width: 17px;
	height: 17px;
}

.pc-blog-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}

.pc-blog-card {
	display: flex;
	flex-direction: column;
	min-height: 430px;
	overflow: hidden;
	border: 1px solid rgba(225, 191, 179, 0.38);
	border-radius: var(--pc-radius);
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 10px 30px rgba(62, 39, 35, 0.075);
	transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.pc-blog-card:hover,
.pc-blog-card:focus-within {
	transform: translateY(-4px);
	border-color: rgba(242, 101, 34, 0.34);
	box-shadow: 0 16px 38px rgba(62, 39, 35, 0.12);
}

.pc-blog-image {
	display: block;
	aspect-ratio: 1.62;
	overflow: hidden;
	background: var(--pc-bg-soft);
}

.pc-blog-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 480ms ease;
}

.pc-blog-card:hover .pc-blog-image img {
	transform: scale(1.055);
}

.pc-blog-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 20px 20px 0;
	color: var(--pc-orange-dark);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.pc-blog-meta span + span::before {
	content: "";
	display: inline-block;
	width: 4px;
	height: 4px;
	margin-right: 10px;
	border-radius: 999px;
	background: currentColor;
	vertical-align: middle;
}

.pc-blog-card h3 {
	margin: 10px 20px 10px;
	font-family: 'Manrope';
	font-size: 20px;
	font-weight: 800;
	line-height: 1.34;
	color: var(--pc-espresso);
}

.pc-blog-card h3 a {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	transition: color 180ms ease;
}

.pc-blog-card h3 a:hover,
.pc-blog-card h3 a:focus-visible {
	color: var(--pc-orange-dark);
	outline: none;
}

.pc-blog-card p {
	display: -webkit-box;
	margin: 0 20px 22px;
	overflow: hidden;
	color: var(--pc-muted);
	font-size: 14px;
	line-height: 1.65;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.pc-read-more {
	width: fit-content;
	min-height: 36px;
	margin-inline: 20px;
	margin-bottom: 20px;
	margin-top: auto;
	border: 1px solid transparent;
	border-radius: 999px;
	background: rgba(242, 101, 34, 0.08);
	padding: 8px 13px;
}

.pc-blog-card:hover .pc-read-more,
.pc-blog-card:focus-within .pc-read-more {
	background: rgba(242, 101, 34, 0.14);
}

.pc-site-footer {
	padding: 64px 0;
	background: var(--pc-espresso);
	color: rgba(255, 255, 255, 0.76);
}

.pc-footer-grid {
	display: grid;
	grid-template-columns: 1.35fr 1fr 1fr 1.35fr;
	gap: 42px;
}

.pc-footer-logo {
	color: #fff;
}

.pc-footer-brand p {
	max-width: 310px;
	margin: 18px 0;
}

.pc-site-footer h2 {
	margin: 0 0 16px;
	color: #fff;
	font-family: 'Manrope';
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;
}

.pc-site-footer a {
	display: flex;
	width: fit-content;
	min-height: 30px;
	align-items: center;
	color: rgba(255, 255, 255, 0.76);
	transition: color 180ms ease;
}

.pc-site-footer a:hover,
.pc-site-footer a:focus-visible {
	color: #ffb599;
	outline: none;
}

.pc-footer-menu a {
	min-height: 30px;
}

.pc-socials {
	display: flex;
	gap: 10px;
}

.pc-socials a {
	justify-content: center;
	width: 34px;
	height: 34px;
	min-height: 34px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	font-weight: 800;
}

.pc-footer-contact {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 0 0 12px;
}

.pc-footer-contact svg {
	flex: 0 0 20px;
	margin-top: 3px;
	color: #ffb599;
}

.pc-footer-contact a {
	display: inline-flex;
	min-height: auto;
}

@media (max-width: 1024px) {
	.pc-primary-nav {
		gap: 18px;
		font-size: 13px;
	}

	.pc-product-grid,
	.pc-footer-grid,
	.pc-category-grid,
	.pc-roast-grid,
	.pc-blog-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.pc-about-layout {
		gap: 34px;
	}

	.pc-blog-section {
		padding: 58px 0 66px;
	}

	.pc-blog-card {
		min-height: 410px;
	}
}

@media (max-width: 767px) {
	.pc-container {
		width: min(100% - 32px, var(--pc-container));
	}

	.pc-nav {
		min-height: 68px;
		gap: 8px;
	}

	.pc-logo {
		min-height: 40px;
	}

	.pc-logo-img {
		max-height: 34px;
	}

	.pc-primary-nav,
	.pc-user-link,
	.pc-cart-link {
		display: none;
	}

	.pc-nav-actions {
		gap: 8px;
	}

	.pc-header-search {
		width: 40px;
		height: 40px;
	}

	.pc-header-search__submit {
		flex-basis: 40px;
		min-height: 40px;
	}

	.pc-header-search input.pc-header-search__field {
		right: -48px;
	}

	.pc-icon-link,
	.pc-menu-toggle {
		width: 40px;
		height: 40px;
	}

	.pc-menu-toggle {
		display: inline-flex;
		position: relative;
		flex: 0 0 40px;
		margin-bottom:0;
	}

	.pc-menu-toggle::before {
		content: "";
		display: block;
		flex: 0 0 21px;
		width: 21px;
		height: 2px;
		border-radius: 999px;
		background: currentColor;
		box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
	}

	.pc-menu-toggle svg {
		display: none;
	}

	.pc-mobile-nav.is-open {
		display: block;
	}

	.pc-hero {
		height: clamp(200px, 52vw, 400px);
	}

	.pc-section {
		padding: 10px 0;
	}

	.pc-blog-section {
		padding-top: 42px;
		padding-bottom: 48px;
	}

	.pc-blog-head {
		display: block;
		margin-bottom: 22px;
		padding-bottom: 14px;
	}

	.pc-blog-head h2 {
		font-size: 28px;
	}

	.pc-blog-head p {
		font-size: 14px;
	}

	.pc-blog-head .pc-text-link {
		width: fit-content;
		margin-top: 16px;
	}

	.pc-about-layout,
	.pc-footer-grid {
		grid-template-columns: 1fr;
	}

	.pc-roast-grid,
	.pc-blog-grid {
		display: flex;
		flex-wrap: nowrap;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		-ms-overflow-style: none;
		grid-template-columns: unset;
		gap: 16px;
		padding-bottom: 12px;
		/* Bleed to edge of screen */
		width: calc(100% + 32px);
		margin-left: -16px;
		padding-left: 16px;
		padding-right: 16px;
	}

	.pc-category-section {
		padding: 0px;
	}

	.pc-category-section .screen-reader-text {
		max-width: 320px;
		margin-bottom: 18px;
		font-size: 27px;
	}

	.pc-category-section .screen-reader-text::after {
		max-width: 310px;
		margin: 10px auto 24px;
		font-size: 14px;
		line-height: 1.55;
	}

	.pc-category-grid {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.pc-category-grid::-webkit-scrollbar,
	.pc-roast-grid::-webkit-scrollbar,
	.pc-blog-grid::-webkit-scrollbar {
		display: none;
	}

	.pc-roast-card,
	.pc-blog-card {
		flex: 0 0 82%;
		scroll-snap-align: center;
	}

	.pc-blog-card {
		min-height: 390px;
		border-radius: 8px;
		box-shadow: 0 8px 24px rgba(62, 39, 35, 0.09);
	}

	.pc-blog-card h3 {
		margin-inline: 16px;
		font-size: 17px;
	}

	.pc-blog-card p {
		margin-inline: 16px;
		-webkit-line-clamp: 2;
	}

	.pc-blog-meta,
	.pc-read-more {
		margin-inline: 16px;
	}

	.pc-category-card:first-child {
		grid-column: 1 / -1;
	}

	.pc-category-card:hover,
	.pc-roast-card:hover,
	.pc-blog-card:hover {
		transform: none;
	}

	.pc-category-card:hover img,
	.pc-blog-card:hover img {
		transform: none;
	}

	.pc-category-card {
		min-height: 152px;
		border-radius: 8px;
	}

	.pc-category-card:first-child {
		min-height: 190px;
	}

	.pc-category-card img {
		min-height: 152px;
	}

	.pc-category-card:first-child img {
		min-height: 190px;
	}

	.pc-category-content {
		left: 14px;
		right: 14px;
		bottom: 14px;
	}

	.pc-category-content strong {
		margin-bottom: 8px;
		font-size: 17px;
		line-height: 1.18;
	}

	.pc-category-card:first-child .pc-category-content strong {
		font-size: 22px;
	}

	.pc-category-content small {
		min-height: 28px;
		padding: 6px 10px;
		font-size: 11px;
		line-height: 1.2;
	}

	.pc-category-content svg {
		width: 13px;
		height: 13px;
	}

	.pc-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px;
	}

	.pc-product-card {
		padding: 12px;
	}

	.pc-product-card h3 {
		font-size: 14px;
	}

	.pc-price,
	.pc-price .amount {
		font-size: 15px;
	}

	.pc-text-link {
		margin-top: 14px;
	}
}

@media (max-width: 420px) {
	.pc-nav-actions {
		gap: 6px;
	}

	.pc-container {
		width: min(100% - 28px, var(--pc-container));
	}

	.pc-logo-img {
		max-height: 32px;
	}

	.pc-product-grid {
		grid-template-columns: 1fr 1fr;
	}
}

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