/* =============================================================================
   Punjabi Curry House — design system
   -----------------------------------------------------------------------------
   Brand colours are taken from the logo. Everything else builds on the tokens
   in :root, so a colour change happens in one place. Mobile-first: base styles
   are for phones, media queries add up from there.
   ========================================================================== */

:root {
	/* Brand palette (from the logo) */
	--pch-black:      #0C0C0C;
	--pch-saffron:    #EE9C00;
	--pch-amber:      #C98200; /* hover */
	--pch-cream:      #FBF5EA; /* page background */
	--pch-sand:       #F3E6CF; /* cards, alt sections */
	--pch-red:        #A4161A; /* small accents only */
	--pch-white:      #FFFFFF;

	/* Derived tints */
	--pch-black-80:   rgba(12, 12, 12, .8);
	--pch-black-60:   rgba(12, 12, 12, .6);
	--pch-black-08:   rgba(12, 12, 12, .08);
	--pch-saffron-14: rgba(238, 156, 0, .14);
	--pch-line:       rgba(12, 12, 12, .1);

	/* Type */
	--pch-font-display: "Playfair Display", Georgia, "Times New Roman", serif;
	--pch-font-head:    "Cinzel", Georgia, serif;
	--pch-font-body:    "Poppins", "Segoe UI", system-ui, sans-serif;
	--pch-font-gurmukhi:"Mukta Mahee", "Poppins", sans-serif;

	/* Layout */
	--pch-wrap:   1180px;
	--pch-gutter: 16px;
	--pch-radius: 16px;
	--pch-radius-sm: 10px;
	--pch-shadow: 0 10px 30px rgba(12, 12, 12, .10);
	--pch-shadow-sm: 0 4px 14px rgba(12, 12, 12, .08);

	/* Header height, used to offset anchors */
	--pch-header-h: 72px;
}

/* --------------------------------------------------------------- base reset */

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

html { scroll-behavior: smooth; }

body.pch {
	margin: 0;
	background: var(--pch-cream);
	color: var(--pch-black);
	font-family: var(--pch-font-body);
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--pch-amber); text-decoration: none; }
a:hover { color: var(--pch-saffron); }

h1, h2, h3, h4 { font-family: var(--pch-font-display); line-height: 1.15; margin: 0 0 .5em; font-weight: 700; }

.pch-eyebrow {
	font-family: var(--pch-font-head);
	font-size: .78rem;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--pch-amber);
	font-weight: 600;
	margin: 0 0 .6rem;
}

.pch-gurmukhi { font-family: var(--pch-font-gurmukhi); }

/* Visually-hidden, still read by screen readers */
.pch-sr-only {
	position: absolute !important; width: 1px; height: 1px;
	padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.pch-skip-link {
	position: absolute; left: -999px; top: 0; z-index: 1000;
	background: var(--pch-black); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0;
}
.pch-skip-link:focus { left: 0; }

/* ------------------------------------------------------------------ layout */

.pch-wrap { width: 100%; max-width: var(--pch-wrap); margin: 0 auto; padding: 0 var(--pch-gutter); }

.pch-section { padding: 56px 0; }
.pch-section--tight { padding: 40px 0; }
.pch-section--sand { background: var(--pch-sand); }
.pch-section--dark { background: var(--pch-black); color: var(--pch-cream); }
.pch-section--dark .pch-eyebrow { color: var(--pch-saffron); }
.pch-section--dark h1, .pch-section--dark h2, .pch-section--dark h3 { color: #fff; }

.pch-section__head { text-align: center; max-width: 640px; margin: 0 auto 36px; }
.pch-section__head h2 { font-size: clamp(1.7rem, 4.5vw, 2.6rem); margin-bottom: .3rem; }
.pch-section__head p { color: var(--pch-black-60); margin: 0; }
.pch-section--dark .pch-section__head p { color: rgba(251, 245, 234, .72); }

/* The ornamental divider under headings, echoing the logo flourish */
.pch-divider {
	width: 128px; height: 20px; margin: 12px auto 20px;
	color: var(--pch-saffron);
}
.pch-divider svg { width: 100%; height: 100%; display: block; }

/* Phulkari embroidery accent strip (CSS-only, tessellating triangles) */
.pch-phulkari {
	height: 12px;
	background-image:
		linear-gradient(135deg, var(--pch-saffron) 25%, transparent 25%),
		linear-gradient(225deg, var(--pch-saffron) 25%, transparent 25%),
		linear-gradient(45deg, var(--pch-red) 25%, transparent 25%),
		linear-gradient(315deg, var(--pch-red) 25%, transparent 25%);
	background-size: 24px 24px;
	background-position: 0 0, 12px 0, 12px -12px, 0 12px;
	opacity: .9;
}

/* ------------------------------------------------------------------ buttons */

.pch-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: .5em;
	font-family: var(--pch-font-body); font-weight: 600; font-size: 1rem;
	padding: 13px 26px; border-radius: 999px; border: 2px solid transparent;
	cursor: pointer; transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
	text-align: center; line-height: 1.2;
}
.pch-btn:active { transform: translateY(1px); }

.pch-btn--primary { background: var(--pch-saffron); color: var(--pch-black); box-shadow: 0 6px 16px rgba(238,156,0,.32); }
.pch-btn--primary:hover { background: var(--pch-amber); color: var(--pch-black); box-shadow: 0 8px 22px rgba(201,130,0,.4); }

.pch-btn--ghost { background: transparent; color: var(--pch-black); border-color: var(--pch-black); }
.pch-btn--ghost:hover { background: var(--pch-black); color: #fff; }

.pch-section--dark .pch-btn--ghost,
.pch-hero .pch-btn--ghost,
.pch-bookbanner .pch-btn--ghost { color: #fff; border-color: rgba(255,255,255,.6); }
.pch-section--dark .pch-btn--ghost:hover,
.pch-hero .pch-btn--ghost:hover,
.pch-bookbanner .pch-btn--ghost:hover { background: #fff; color: var(--pch-black); }

.pch-btn--whatsapp { background: #25D366; color: #fff; }
.pch-btn--whatsapp:hover { background: #1da851; color: #fff; }

.pch-btn--sm { padding: 9px 16px; font-size: .9rem; }
.pch-btn--block { width: 100%; }

/* ================================================================== HEADER */

.pch-header {
	position: sticky; top: 0; z-index: 500;
	background: var(--pch-cream);
	border-bottom: 1px solid var(--pch-line);
	transition: background .3s ease, box-shadow .3s ease;
}
.pch-header__bar {
	display: flex; align-items: center; gap: 16px;
	height: var(--pch-header-h);
}
/* Three columns: logo left, nav centred, actions right. The two side columns
   share the width so the nav sits in the true centre. */
.pch-header__logo { display: flex; align-items: center; flex: 1 1 0; min-width: 0; }
.pch-header__logo img { height: 46px; width: auto; }
.pch-header__logo .pch-logo-white { display: none; }

/* On scroll the header goes dark and swaps to the white logo */
.pch-header.is-scrolled { background: var(--pch-black); box-shadow: 0 4px 18px rgba(0,0,0,.25); }
.pch-header.is-scrolled .pch-logo-black { display: none; }
.pch-header.is-scrolled .pch-logo-white { display: block; }
.pch-header.is-scrolled .pch-nav a { color: var(--pch-cream); }
.pch-header.is-scrolled .pch-nav a:hover,
.pch-header.is-scrolled .pch-nav .current-menu-item > a { color: var(--pch-saffron); }
.pch-header.is-scrolled .pch-header__icon { color: var(--pch-cream); }
.pch-header.is-scrolled .pch-lang__current { color: var(--pch-cream); border-color: rgba(255,255,255,.3); }

.pch-nav { display: none; flex: 0 0 auto; }
.pch-nav ul { display: flex; gap: 22px; list-style: none; margin: 0; padding: 0; justify-content: center; }
.pch-nav a {
	font-weight: 500; color: var(--pch-black); font-size: .98rem;
	padding: 6px 0; position: relative;
}
.pch-nav a::after {
	content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
	background: var(--pch-saffron); transition: width .2s ease;
}
.pch-nav a:hover, .pch-nav .current-menu-item > a { color: var(--pch-amber); }
.pch-nav a:hover::after, .pch-nav .current-menu-item > a::after { width: 100%; }

.pch-header__actions { display: flex; align-items: center; gap: 12px; flex: 1 1 0; justify-content: flex-end; min-width: 0; }
.pch-header__icon {
	position: relative; display: inline-flex; align-items: center; justify-content: center;
	width: 42px; height: 42px; color: var(--pch-black); background: none; border: none; cursor: pointer;
}
.pch-header__icon svg { width: 24px; height: 24px; }
.pch-cart-count {
	position: absolute; top: 2px; right: 2px; min-width: 18px; height: 18px; padding: 0 4px;
	background: var(--pch-red); color: #fff; border-radius: 999px;
	font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center;
	font-family: var(--pch-font-body); line-height: 1;
}
.pch-cart-count:empty, .pch-cart-count[data-count="0"] { display: none; }

.pch-header__cta { display: none; }

/* Language switcher */
.pch-lang { position: relative; }
.pch-lang__current {
	display: inline-flex; align-items: center; gap: 5px; cursor: pointer;
	background: none; border: 1px solid var(--pch-line); border-radius: 999px;
	padding: 6px 12px; font-family: var(--pch-font-body); font-weight: 600; font-size: .85rem;
	color: var(--pch-black);
}
.pch-lang__menu {
	position: absolute; right: 0; top: calc(100% + 8px); min-width: 150px;
	background: #fff; border-radius: 12px; box-shadow: var(--pch-shadow); padding: 6px;
	list-style: none; margin: 0; display: none; z-index: 10;
}
.pch-lang.is-open .pch-lang__menu { display: block; }
.pch-lang__menu a {
	display: block; padding: 9px 12px; border-radius: 8px; color: var(--pch-black); font-weight: 500; font-size: .9rem;
}
.pch-lang__menu a:hover { background: var(--pch-sand); }
.pch-lang__menu li.is-current a { color: var(--pch-amber); font-weight: 700; }

/* Hamburger */
.pch-burger { display: inline-flex; }
@media (min-width: 1024px) {
	.pch-nav { display: block; }
	.pch-burger { display: none; }
	.pch-header__cta { display: inline-flex; }
}

/* Mobile drawer */
.pch-drawer {
	position: fixed; inset: 0; z-index: 900; visibility: hidden;
}
.pch-drawer.is-open { visibility: visible; }
.pch-drawer__scrim {
	position: absolute; inset: 0; background: rgba(12,12,12,.5); opacity: 0; transition: opacity .25s ease;
}
.pch-drawer.is-open .pch-drawer__scrim { opacity: 1; }
.pch-drawer__panel {
	position: absolute; top: 0; right: 0; height: 100%; width: min(84vw, 340px);
	background: var(--pch-black); color: var(--pch-cream);
	transform: translateX(100%); transition: transform .28s ease;
	display: flex; flex-direction: column; padding: 22px; overflow-y: auto;
}
.pch-drawer.is-open .pch-drawer__panel { transform: translateX(0); }
.pch-drawer__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.pch-drawer__head img { height: 40px; }
.pch-drawer__close { background: none; border: none; color: var(--pch-cream); cursor: pointer; width: 40px; height: 40px; }
.pch-drawer__close svg { width: 26px; height: 26px; }
.pch-drawer nav ul { list-style: none; margin: 0; padding: 0; }
.pch-drawer nav a {
	display: block; padding: 14px 4px; font-size: 1.15rem; font-family: var(--pch-font-display);
	color: var(--pch-cream); border-bottom: 1px solid rgba(255,255,255,.1);
}
.pch-drawer nav a:hover { color: var(--pch-saffron); }
.pch-drawer__lang { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 8px; }
.pch-drawer__lang a {
	padding: 7px 12px; border: 1px solid rgba(255,255,255,.25); border-radius: 999px;
	color: var(--pch-cream); font-size: .85rem; font-weight: 600;
}
.pch-drawer__lang a.is-current { background: var(--pch-saffron); color: var(--pch-black); border-color: var(--pch-saffron); }

/* ================================================================ MOBILE BAR */

.pch-mobilebar {
	position: fixed; left: 0; right: 0; bottom: 0; z-index: 480;
	display: grid; grid-template-columns: repeat(4, 1fr);
	background: var(--pch-black); border-top: 2px solid var(--pch-saffron);
	padding-bottom: env(safe-area-inset-bottom, 0);
}
.pch-mobilebar a {
	display: flex; flex-direction: column; align-items: center; gap: 3px;
	padding: 9px 4px; color: var(--pch-cream); font-size: .68rem; font-weight: 600;
}
.pch-mobilebar a svg { width: 21px; height: 21px; }
.pch-mobilebar a:hover, .pch-mobilebar a:active { color: var(--pch-saffron); }
.pch-mobilebar .pch-mobilebar__badge {
	position: relative;
}
.pch-mobilebar .pch-cart-count { top: -6px; right: -10px; }
@media (min-width: 1024px) { .pch-mobilebar { display: none; } body.pch { } }
@media (max-width: 1023px) { body.pch { padding-bottom: 62px; } }

/* ==================================================================== HERO */

.pch-hero { position: relative; background: var(--pch-black); color: #fff; overflow: hidden; }
.pch-hero__media { position: absolute; inset: 0; z-index: 0; }
.pch-hero__media img, .pch-hero__media video { width: 100%; height: 100%; object-fit: cover; }
.pch-hero__media::after {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(12,12,12,.55) 0%, rgba(12,12,12,.75) 100%);
}
.pch-hero__inner {
	position: relative; z-index: 1; text-align: center;
	padding: 84px var(--pch-gutter) 96px; max-width: 820px; margin: 0 auto;
}
.pch-hero__greeting {
	display: inline-block; font-family: var(--pch-font-gurmukhi);
	color: var(--pch-saffron); font-size: 1.1rem; margin-bottom: 14px;
	border: 1px solid rgba(238,156,0,.5); border-radius: 999px; padding: 6px 18px;
}
.pch-hero h1 { color: #fff; font-size: clamp(2.1rem, 6vw, 4rem); margin-bottom: .35em; }
.pch-hero p { font-size: clamp(1rem, 2.4vw, 1.25rem); color: rgba(255,255,255,.86); margin: 0 auto 28px; max-width: 560px; }
.pch-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* The flame from the logo, gently flickering */
.pch-flame { display: inline-block; transform-origin: center bottom; animation: pch-flicker 2.8s ease-in-out infinite; }
@keyframes pch-flicker {
	0%, 100% { transform: scale(1) rotate(-1deg); opacity: 1; }
	25% { transform: scale(1.06, .97) rotate(1deg); opacity: .92; }
	50% { transform: scale(.97, 1.05) rotate(-1deg); opacity: 1; }
	75% { transform: scale(1.03, .99) rotate(1deg); opacity: .95; }
}
@media (prefers-reduced-motion: reduce) {
	.pch-flame { animation: none; }
	html { scroll-behavior: auto; }
}

/* =============================================================== WELCOME */

.pch-welcome { display: grid; gap: 30px; align-items: center; }
.pch-welcome__phrase {
	display: inline-block; font-family: var(--pch-font-gurmukhi); font-size: 1.4rem;
	color: var(--pch-amber); margin-top: 10px;
}
.pch-welcome__phrase small { display: block; font-family: var(--pch-font-body); font-size: .85rem; color: var(--pch-black-60); }
@media (min-width: 860px) { .pch-welcome { grid-template-columns: 1.1fr .9fr; gap: 50px; } }

/* ============================================================= DISH CARDS */

.pch-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 560px) { .pch-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .pch-grid--3 { grid-template-columns: repeat(3, 1fr); } }

.pch-dish {
	background: #fff; border-radius: var(--pch-radius); overflow: hidden;
	box-shadow: var(--pch-shadow-sm); display: flex; flex-direction: column;
	transition: transform .2s ease, box-shadow .2s ease;
	border: 1px solid var(--pch-black-08);
}
.pch-dish:hover { transform: translateY(-5px); box-shadow: var(--pch-shadow); }
.pch-dish__media { position: relative; aspect-ratio: 4 / 3; background: var(--pch-sand); overflow: hidden; }
.pch-dish__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.pch-dish:hover .pch-dish__media img { transform: scale(1.05); }
.pch-dish__badges { position: absolute; top: 10px; left: 10px; display: flex; flex-wrap: wrap; gap: 6px; }
.pch-badge {
	font-size: .68rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
	padding: 4px 9px; border-radius: 999px; color: #fff; font-family: var(--pch-font-body);
}
.pch-badge--bestseller { background: var(--pch-saffron); color: var(--pch-black); }
.pch-badge--chefs { background: var(--pch-black); }
.pch-badge--spicy { background: var(--pch-red); }

/* Veg / non-veg dot, Indian-style square marker */
.pch-diet { position: absolute; top: 10px; right: 10px; width: 22px; height: 22px; border-radius: 4px; background: #fff; display: flex; align-items: center; justify-content: center; }
.pch-diet::after { content: ""; width: 11px; height: 11px; border-radius: 50%; }
.pch-diet--veg { border: 2px solid #0F9D58; }
.pch-diet--veg::after { background: #0F9D58; }
.pch-diet--nonveg { border: 2px solid #A4161A; }
.pch-diet--nonveg::after { background: #A4161A; }

.pch-dish__body { padding: 16px 16px 18px; display: flex; flex-direction: column; flex: 1; }
.pch-dish__name { font-size: 1.12rem; margin: 0 0 4px; font-family: var(--pch-font-display); }
.pch-dish__desc { font-size: .88rem; color: var(--pch-black-60); margin: 0 0 12px; line-height: 1.5; }

.pch-dish__meta { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; flex-wrap: wrap; }
.pch-spice { display: inline-flex; align-items: center; gap: 2px; }
.pch-spice svg { width: 15px; height: 15px; color: var(--pch-red); }
.pch-spice__label { font-size: .78rem; color: var(--pch-black-60); margin-left: 3px; }

.pch-allergens-row { display: inline-flex; gap: 3px; flex-wrap: wrap; }
.pch-allergen { display: inline-flex; line-height: 0; }
.pch-allergen svg { display: block; }

.pch-dish__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.pch-price { font-size: 1.2rem; font-weight: 700; color: var(--pch-amber); font-family: var(--pch-font-display); }
.pch-price small { font-size: .72rem; color: var(--pch-black-60); font-weight: 500; font-family: var(--pch-font-body); }

.pch-qty { display: inline-flex; align-items: center; border: 1.5px solid var(--pch-saffron); border-radius: 999px; overflow: hidden; background: #fff; }
.pch-qty button {
	width: 34px; height: 36px; border: none; background: #fff; cursor: pointer;
	font-size: 1.35rem; line-height: 1; font-weight: 700; color: var(--pch-amber);
	display: inline-flex; align-items: center; justify-content: center; padding: 0;
	transition: background .15s ease, color .15s ease;
}
.pch-qty button:first-child { border-right: 1px solid var(--pch-sand); }
.pch-qty button:last-child { border-left: 1px solid var(--pch-sand); }
.pch-qty button:hover { background: var(--pch-saffron); color: var(--pch-black); }
.pch-qty input { width: 30px; text-align: center; border: none; font-size: 1rem; font-weight: 700; color: var(--pch-black); background: transparent; -moz-appearance: textfield; }
.pch-qty input::-webkit-outer-spin-button, .pch-qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.pch-dish__note { font-size: .76rem; color: var(--pch-amber); margin: 0 0 10px; font-style: italic; }

/* ===================================================== MENU LIST (no images)
   A printed-menu-style list: name … price with a dotted leader, description
   and allergen row beneath, an add control on the right. Used on the Menu page
   and the home signature section — the menu carries no photos, by request. */

.pch-menu-list { display: grid; gap: 4px; }
@media (min-width: 900px) { .pch-menu-list--2col { grid-template-columns: 1fr 1fr; column-gap: 40px; } }

.pch-row {
	display: flex; align-items: flex-start; gap: 16px;
	padding: 18px 4px; border-bottom: 1px solid var(--pch-line);
}
.pch-row:last-child { border-bottom: none; }
.pch-row__main { flex: 1; min-width: 0; }

.pch-row__head { display: flex; align-items: baseline; gap: 8px; }
.pch-row__diet { flex: 0 0 auto; width: 16px; height: 16px; border-radius: 3px; position: relative; top: 3px; display: inline-flex; align-items: center; justify-content: center; }
.pch-row__diet::after { content: ""; width: 8px; height: 8px; border-radius: 50%; }
.pch-row__diet--veg { border: 2px solid #0F9D58; } .pch-row__diet--veg::after { background: #0F9D58; }
.pch-row__diet--nonveg { border: 2px solid #A4161A; } .pch-row__diet--nonveg::after { background: #A4161A; }

.pch-row__name { font-family: var(--pch-font-body); font-size: 1.05rem; font-weight: 600; margin: 0; white-space: normal; letter-spacing: -.01em; }
.pch-row__leader { flex: 1; border-bottom: 2px dotted var(--pch-line); transform: translateY(-4px); min-width: 18px; }
.pch-row__price { font-family: var(--pch-font-body); font-size: 1.05rem; font-weight: 700; color: var(--pch-amber); white-space: nowrap; }
.pch-row__price small { font-size: .7rem; color: var(--pch-black-60); font-weight: 500; font-family: var(--pch-font-body); }

.pch-row__badges { display: inline-flex; gap: 6px; flex-wrap: wrap; }
.pch-row__desc { font-size: .9rem; color: var(--pch-black-60); margin: 5px 0 0; line-height: 1.5; }
.pch-row__note { font-size: .78rem; color: var(--pch-amber); margin: 5px 0 0; font-style: italic; }
.pch-row__meta { display: flex; align-items: center; gap: 12px; margin-top: 9px; flex-wrap: wrap; }

.pch-row__add { flex: 0 0 auto; display: flex; flex-direction: column; align-items: flex-end; gap: 8px; padding-top: 2px; }
@media (max-width: 559px) {
	.pch-row { flex-wrap: wrap; }
	.pch-row__add { width: 100%; flex-direction: row; align-items: center; justify-content: flex-end; }
}

/* ============================================================= MENU PAGE */

.pch-menu-tabs {
	position: sticky; top: var(--pch-header-h); z-index: 400;
	background: var(--pch-cream); border-bottom: 1px solid var(--pch-line);
	margin: 0 calc(-1 * var(--pch-gutter)); padding: 12px var(--pch-gutter);
}
/* Category chips wrap onto as many rows as needed instead of a single
   horizontally-scrolling line. */
.pch-menu-tabs__list { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
/* On phones the wrapped chips are tall, so let them scroll away rather than
   staying pinned and eating the screen. */
@media (max-width: 1023px) { .pch-menu-tabs { position: static; } }
.pch-menu-tab {
	flex: 0 0 auto; padding: 8px 16px; border-radius: 999px; border: 1px solid var(--pch-line);
	background: #fff; color: var(--pch-black); font-weight: 600; font-size: .9rem; cursor: pointer;
	font-family: var(--pch-font-body);
}
.pch-menu-tab.is-active { background: var(--pch-black); color: #fff; border-color: var(--pch-black); }

.pch-filters { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin: 22px 0 8px; }
.pch-filter {
	display: inline-flex; align-items: center; gap: 6px; padding: 7px 14px; border-radius: 999px;
	border: 1px solid var(--pch-line); background: #fff; cursor: pointer; font-size: .85rem; font-weight: 600;
	font-family: var(--pch-font-body); color: var(--pch-black);
}
.pch-filter.is-active { background: var(--pch-saffron); border-color: var(--pch-saffron); color: var(--pch-black); }
.pch-filter--veg.is-active { background: #0F9D58; border-color: #0F9D58; color: #fff; }
.pch-filter--spicy.is-active { background: var(--pch-red); border-color: var(--pch-red); color: #fff; }

.pch-search { margin-left: auto; position: relative; }
.pch-search input {
	padding: 9px 14px 9px 38px; border-radius: 999px; border: 1px solid var(--pch-line);
	font-family: var(--pch-font-body); font-size: .9rem; min-width: 210px; background: #fff;
}
.pch-search svg { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); width: 17px; height: 17px; color: var(--pch-black-60); }

.pch-menu-cat { padding-top: 34px; scroll-margin-top: calc(var(--pch-header-h) + 60px); }
.pch-menu-cat__head { display: flex; align-items: baseline; gap: 12px; margin-bottom: 4px; }
.pch-menu-cat__head h2 { font-size: clamp(1.5rem, 4vw, 2.1rem); margin: 0; }
.pch-menu-cat__desc { color: var(--pch-black-60); margin: 0 0 18px; }

.pch-menu-empty { text-align: center; padding: 60px 0; color: var(--pch-black-60); }
.pch-menu-empty.is-hidden, .pch-is-hidden { display: none !important; }

/* Allergen legend */
.pch-allergen-legend {
	list-style: none; margin: 0; padding: 0;
	display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 16px;
}
@media (min-width: 620px) { .pch-allergen-legend { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .pch-allergen-legend { grid-template-columns: repeat(4, 1fr); } }
.pch-allergen-legend__item { display: flex; align-items: center; gap: 8px; font-size: .88rem; }

.pch-allergen-notice {
	background: #fff; border-left: 4px solid var(--pch-saffron); border-radius: 0 10px 10px 0;
	padding: 16px 18px; margin-top: 22px; font-size: .86rem; color: var(--pch-black-80);
}

/* =========================================================== WHY / ICONS */

.pch-why { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 560px) { .pch-why { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .pch-why { grid-template-columns: repeat(4, 1fr); } }
.pch-why__item { text-align: center; padding: 8px; }
.pch-why__icon {
	width: 68px; height: 68px; margin: 0 auto 14px; border-radius: 50%;
	background: var(--pch-saffron-14); display: flex; align-items: center; justify-content: center; color: var(--pch-amber);
}
.pch-why__icon svg { width: 32px; height: 32px; }
.pch-why__item h3 { font-size: 1.15rem; margin-bottom: .3rem; }
.pch-why__item p { font-size: .88rem; color: var(--pch-black-60); margin: 0; }
.pch-section--dark .pch-why__item p { color: rgba(251,245,234,.7); }

/* =========================================================== CATEGORIES */

.pch-cats { display: grid; gap: 16px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 720px) { .pch-cats { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .pch-cats { grid-template-columns: repeat(4, 1fr); } }
.pch-cat-card {
	position: relative; display: block; border-radius: var(--pch-radius); overflow: hidden;
	aspect-ratio: 1 / 1; background: var(--pch-black); color: #fff;
}
.pch-cat-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 1; transition: transform .4s ease; }
.pch-cat-card:hover img { transform: scale(1.08); }
.pch-cat-card__label {
	position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 16px; z-index: 1;
	background: linear-gradient(to top, rgba(12,12,12,.9) 0%, rgba(12,12,12,.5) 38%, rgba(12,12,12,.05) 72%, transparent 100%);
}
.pch-cat-card__label h3 { color: #fff; font-size: 1.15rem; margin: 0; }
.pch-cat-card__label span { font-size: .78rem; color: var(--pch-saffron); font-weight: 600; }

/* =========================================================== TESTIMONIALS */

.pch-testimonials { position: relative; max-width: 760px; margin: 0 auto; text-align: center; }
.pch-testimonial { display: none; }
.pch-testimonial.is-active { display: block; animation: pch-fade .5s ease; }
.pch-testimonial__stars { color: var(--pch-saffron); font-size: 1.15rem; margin-bottom: 12px; letter-spacing: 3px; }
.pch-testimonial__quote { font-family: var(--pch-font-display); font-size: clamp(1.15rem, 2.6vw, 1.6rem); line-height: 1.5; margin: 0 0 16px; }
.pch-testimonial__author { font-weight: 600; color: var(--pch-amber); }
.pch-testimonial__nav { display: flex; justify-content: center; gap: 10px; margin-top: 24px; }
.pch-testimonial__dot { width: 10px; height: 10px; border-radius: 50%; border: none; background: var(--pch-black-08); cursor: pointer; }
.pch-testimonial__dot.is-active { background: var(--pch-saffron); }
.pch-section--dark .pch-testimonial__dot { background: rgba(255,255,255,.2); }
.pch-section--dark .pch-testimonial__dot.is-active { background: var(--pch-saffron); }
@keyframes pch-fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* Review cards (home page, near the footer) — shown as a slider */
.pch-reviews-slider { position: relative; }
.pch-reviews-viewport { overflow: hidden; }
.pch-reviews-track { display: flex; gap: 20px; transition: transform .45s ease; }
.pch-reviews-track > .pch-review { flex: 0 0 100%; }
@media (min-width: 680px) { .pch-reviews-track > .pch-review { flex: 0 0 calc(50% - 10px); } }

.pch-slider-arrow {
	position: absolute; top: calc(50% - 22px); transform: translateY(-50%); z-index: 3;
	width: 46px; height: 46px; border-radius: 50%; border: none; background: #fff; color: var(--pch-black);
	box-shadow: var(--pch-shadow-sm); cursor: pointer; font-size: 1.7rem; line-height: 1;
	display: flex; align-items: center; justify-content: center; transition: background .2s ease, color .2s ease;
}
.pch-slider-arrow:hover { background: var(--pch-saffron); color: var(--pch-black); }
.pch-slider-arrow--prev { left: -10px; }
.pch-slider-arrow--next { right: -10px; }
@media (max-width: 560px) { .pch-slider-arrow--prev { left: -4px; } .pch-slider-arrow--next { right: -4px; } }

.pch-slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 26px; }
.pch-slider-dot { width: 10px; height: 10px; border-radius: 999px; border: none; background: var(--pch-black-08); cursor: pointer; padding: 0; transition: width .2s ease, background .2s ease; }
.pch-slider-dot.is-active { background: var(--pch-saffron); width: 26px; }

.pch-review {
	background: #fff; border-radius: var(--pch-radius); padding: 24px 22px; margin: 0;
	box-shadow: var(--pch-shadow-sm); border: 1px solid var(--pch-black-08);
	display: flex; flex-direction: column;
}
.pch-review__stars { color: var(--pch-saffron); font-size: 1.05rem; letter-spacing: 2px; margin-bottom: 12px; }
.pch-review__quote { font-size: 1rem; line-height: 1.65; color: var(--pch-black-80); margin: 0 0 18px; }
.pch-review__quote::before { content: "\201C"; color: var(--pch-saffron); font-family: var(--pch-font-display); font-size: 1.4em; line-height: 0; margin-right: 2px; vertical-align: -.35em; }
.pch-review__author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.pch-review__avatar {
	width: 44px; height: 44px; border-radius: 50%; flex: 0 0 auto;
	background: var(--pch-saffron); color: var(--pch-black);
	display: flex; align-items: center; justify-content: center;
	font-weight: 700; font-size: .95rem; font-family: var(--pch-font-body);
}
.pch-review__who { display: flex; flex-direction: column; line-height: 1.3; }
.pch-review__who strong { font-family: var(--pch-font-body); font-weight: 600; font-size: .98rem; }
.pch-review__who small { color: var(--pch-black-60); font-size: .82rem; }

/* ============================================================= INSTAGRAM */

.pch-insta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
@media (min-width: 720px) { .pch-insta { grid-template-columns: repeat(6, 1fr); } }
.pch-insta a { display: block; aspect-ratio: 1/1; overflow: hidden; position: relative; }
.pch-insta img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.pch-insta a:hover img { transform: scale(1.08); }

/* =========================================================== BOOK BANNER */

.pch-bookbanner { position: relative; background: var(--pch-black); color: #fff; text-align: center; overflow: hidden; }
.pch-bookbanner__media { position: absolute; inset: 0; }
.pch-bookbanner__media img { width: 100%; height: 100%; object-fit: cover; opacity: .38; }
.pch-bookbanner__inner { position: relative; z-index: 1; padding: 66px var(--pch-gutter); max-width: 640px; margin: 0 auto; }
.pch-bookbanner h2 { color: #fff; font-size: clamp(1.8rem, 5vw, 2.8rem); }
.pch-bookbanner p { color: rgba(255,255,255,.82); margin: 0 0 24px; }

/* ================================================================ FIND US */

.pch-findus { display: grid; gap: 30px; }
@media (min-width: 860px) { .pch-findus { grid-template-columns: 1fr 1fr; align-items: start; } }
.pch-findus__map iframe, .pch-findus__map img { width: 100%; min-height: 320px; border: 0; border-radius: var(--pch-radius); display: block; }
.pch-info-row { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--pch-line); }
.pch-info-row svg { width: 22px; height: 22px; color: var(--pch-amber); flex: 0 0 auto; margin-top: 2px; }
.pch-info-row h4 { margin: 0 0 2px; font-family: var(--pch-font-head); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--pch-black-60); }
.pch-info-row p, .pch-info-row a { margin: 0; color: var(--pch-black); font-family: var(--pch-font-body); }

/* Opening hours table */
.pch-hours { width: 100%; border-collapse: collapse; }
.pch-hours td { padding: 7px 0; border-bottom: 1px solid var(--pch-line); font-size: .92rem; }
.pch-hours td:last-child { text-align: right; font-weight: 600; }
.pch-hours tr.is-today td { color: var(--pch-amber); font-weight: 700; }
.pch-hours tr.is-closed td:last-child { color: var(--pch-black-60); font-weight: 500; }

.pch-open-badge { display: inline-flex; align-items: center; gap: 6px; font-size: .82rem; font-weight: 600; padding: 4px 12px; border-radius: 999px; }
.pch-open-badge::before { content: ""; width: 8px; height: 8px; border-radius: 50%; }
.pch-open-badge.is-open { background: rgba(15,157,88,.12); color: #0F9D58; }
.pch-open-badge.is-open::before { background: #0F9D58; }
.pch-open-badge.is-closed { background: rgba(164,22,26,.1); color: var(--pch-red); }
.pch-open-badge.is-closed::before { background: var(--pch-red); }

/* ==================================================================== CART DRAWER */

.pch-cartdrawer { position: fixed; inset: 0; z-index: 950; visibility: hidden; }
.pch-cartdrawer.is-open { visibility: visible; }
.pch-cartdrawer__scrim { position: absolute; inset: 0; background: rgba(12,12,12,.5); opacity: 0; transition: opacity .25s ease; }
.pch-cartdrawer.is-open .pch-cartdrawer__scrim { opacity: 1; }
.pch-cartdrawer__panel {
	position: absolute; top: 0; right: 0; height: 100%; width: min(90vw, 400px); background: var(--pch-cream);
	transform: translateX(100%); transition: transform .28s ease; display: flex; flex-direction: column;
}
.pch-cartdrawer.is-open .pch-cartdrawer__panel { transform: none; }
.pch-cartdrawer__head { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--pch-line); }
.pch-cartdrawer__head h2 { margin: 0; font-size: 1.3rem; }
.pch-cartdrawer__body { flex: 1; overflow-y: auto; padding: 16px 20px; }
.pch-cartdrawer__foot { padding: 18px 20px; border-top: 1px solid var(--pch-line); background: #fff; }
.pch-cartdrawer__total { display: flex; justify-content: space-between; font-size: 1.15rem; font-weight: 700; margin-bottom: 14px; }

/* ============================================================ ORDER TYPE */

.pch-ordertype { display: flex; gap: 8px; margin-bottom: 20px; }
.pch-ordertype button {
	flex: 1; padding: 12px 8px; border-radius: 12px; border: 2px solid var(--pch-line);
	background: #fff; cursor: pointer; font-weight: 600; font-family: var(--pch-font-body); font-size: .9rem;
	display: flex; flex-direction: column; align-items: center; gap: 5px; color: var(--pch-black);
}
.pch-ordertype button svg { width: 22px; height: 22px; color: var(--pch-amber); }
.pch-ordertype button.is-active { border-color: var(--pch-saffron); background: var(--pch-saffron-14); }

/* Closed / alert notices */
.pch-alert { border-radius: 12px; padding: 14px 18px; margin: 16px 0; font-size: .92rem; }
.pch-alert--closed { background: rgba(164,22,26,.08); border: 1px solid rgba(164,22,26,.25); color: var(--pch-red); }

/* ================================================================ FORMS */

.pch-form { display: grid; gap: 16px; }
.pch-field { display: flex; flex-direction: column; gap: 6px; }
.pch-field label { font-weight: 600; font-size: .9rem; }
.pch-field .req { color: var(--pch-red); }
.pch-field input, .pch-field select, .pch-field textarea {
	padding: 12px 14px; border-radius: 10px; border: 1px solid var(--pch-line); background: #fff;
	font-family: var(--pch-font-body); font-size: 1rem; color: var(--pch-black);
}
.pch-field input:focus, .pch-field select:focus, .pch-field textarea:focus {
	outline: none; border-color: var(--pch-saffron); box-shadow: 0 0 0 3px var(--pch-saffron-14);
}
.pch-field textarea { resize: vertical; min-height: 90px; }
.pch-field.has-error input, .pch-field.has-error select, .pch-field.has-error textarea { border-color: var(--pch-red); }
.pch-field__error { color: var(--pch-red); font-size: .82rem; display: none; }
.pch-field.has-error .pch-field__error { display: block; }
.pch-form__row { display: grid; gap: 16px; }
@media (min-width: 620px) { .pch-form__row--2 { grid-template-columns: 1fr 1fr; } }
.pch-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.pch-form__success {
	background: #fff; border-radius: var(--pch-radius); padding: 34px 26px; text-align: center;
	box-shadow: var(--pch-shadow-sm); border: 1px solid var(--pch-black-08);
}
.pch-form__success .pch-success-icon { width: 62px; height: 62px; margin: 0 auto 16px; color: #0F9D58; }
.pch-form__success h3 { font-size: 1.5rem; margin-bottom: .4rem; }
.pch-form__success p { color: var(--pch-black-60); margin: 0; }

/* Slot chips for booking time */
.pch-slots { display: flex; flex-wrap: wrap; gap: 8px; }
.pch-slot {
	padding: 8px 14px; border-radius: 999px; border: 1px solid var(--pch-line); background: #fff;
	cursor: pointer; font-size: .88rem; font-weight: 600; font-family: var(--pch-font-body);
}
.pch-slot.is-active { background: var(--pch-saffron); border-color: var(--pch-saffron); color: var(--pch-black); }
.pch-slot:disabled { opacity: .4; cursor: not-allowed; }
.pch-slots__empty { color: var(--pch-black-60); font-size: .88rem; }

/* ============================================================= PROSE (legal, about) */

.pch-prose { color: var(--pch-black-80); line-height: 1.7; }
.pch-prose h2 { font-family: var(--pch-font-display); font-size: 1.4rem; margin: 1.8em 0 .5em; color: var(--pch-black); }
.pch-prose h3 { font-family: var(--pch-font-body); font-weight: 600; font-size: 1.1rem; margin: 1.5em 0 .4em; color: var(--pch-black); }
.pch-prose p { margin: 0 0 1em; }
.pch-prose ul, .pch-prose ol { margin: 0 0 1em; padding-left: 1.4em; }
.pch-prose li { margin-bottom: .5em; }
.pch-prose a { color: var(--pch-amber); text-decoration: underline; }
.pch-prose a:hover { color: var(--pch-saffron); }
.pch-prose hr { border: none; border-top: 1px solid var(--pch-line); margin: 2.4em 0; }
.pch-prose strong { color: var(--pch-black); }
.pch-prose em { color: var(--pch-black-60); }
.pch-prose .pch-table-wrap { overflow-x: auto; margin: 0 0 1.4em; }
.pch-prose table { width: 100%; border-collapse: collapse; font-size: .88rem; min-width: 520px; }
.pch-prose th, .pch-prose td { text-align: left; padding: 9px 12px; border: 1px solid var(--pch-line); vertical-align: top; }
.pch-prose thead th { background: var(--pch-sand); font-family: var(--pch-font-body); font-weight: 600; }
.pch-prose tbody tr:nth-child(even) { background: rgba(243,230,207,.35); }

/* ================================================================ FOOTER */

.pch-footer { background: var(--pch-black); color: var(--pch-cream); }
.pch-footer__phulkari { height: 12px; }
.pch-footer__inner { display: grid; gap: 34px; padding: 48px 0 30px; }
@media (min-width: 720px) { .pch-footer__inner { grid-template-columns: 1.4fr 1fr 1fr; } }
.pch-footer__brand img { height: 64px; margin-bottom: 14px; }
.pch-footer__brand p { color: rgba(251,245,234,.7); font-size: .9rem; max-width: 320px; }
.pch-footer h4 { color: #fff; font-family: var(--pch-font-head); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 14px; }
.pch-footer ul { list-style: none; margin: 0; padding: 0; }
.pch-footer ul li { margin-bottom: 9px; }
.pch-footer a { color: rgba(251,245,234,.78); font-size: .92rem; }
.pch-footer a:hover { color: var(--pch-saffron); }
.pch-footer__social { display: flex; gap: 12px; margin-top: 8px; }
.pch-footer__social a { display: inline-flex; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); align-items: center; justify-content: center; color: var(--pch-cream); }
.pch-footer__social a:hover { background: var(--pch-saffron); color: var(--pch-black); }
.pch-footer__social svg { width: 20px; height: 20px; }
.pch-footer__bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 18px 0; text-align: center; font-size: .82rem; color: rgba(251,245,234,.6); }
.pch-footer__bottom a { color: rgba(251,245,234,.7); }

/* ====================================================== FLOATING BUTTONS */

.pch-floats { position: fixed; right: 16px; bottom: 74px; z-index: 470; display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 1024px) { .pch-floats { bottom: 24px; } }
.pch-float {
	width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
	box-shadow: 0 6px 18px rgba(0,0,0,.25); color: #fff; transition: transform .15s ease;
}
.pch-float:hover { transform: scale(1.08); color: #fff; }
.pch-float svg { width: 28px; height: 28px; }
.pch-float--whatsapp { background: #25D366; }
.pch-float--call { background: var(--pch-black); color: var(--pch-cream); }
.pch-float--call:hover { color: #fff; }

/* Floating cart button: appears once the order has items, opens the order
   drawer, and carries a live item count. */
.pch-float--cart {
	background: var(--pch-saffron); color: var(--pch-black); border: none; cursor: pointer;
	display: none; /* shown by JS when the cart has items */
}
.pch-float--cart.is-visible { display: flex; animation: pch-pop .25s ease; }
.pch-float--cart:hover { background: var(--pch-amber); color: var(--pch-black); }
.pch-float__count {
	position: absolute; top: -3px; right: -3px; min-width: 22px; height: 22px; padding: 0 6px;
	background: var(--pch-red); color: #fff; border-radius: 999px; font-size: 12px; font-weight: 700;
	display: flex; align-items: center; justify-content: center; font-family: var(--pch-font-body);
	line-height: 1; border: 2px solid var(--pch-cream);
}
@keyframes pch-pop { 0% { transform: scale(.4); opacity: 0; } 70% { transform: scale(1.12); } 100% { transform: scale(1); opacity: 1; } }

/* ========================================================= COOKIE CONSENT */

.pch-cookie { position: fixed; inset: 0; z-index: 1200; display: flex; align-items: flex-end; justify-content: center; }
.pch-cookie[hidden] { display: none; }
.pch-cookie__scrim { position: absolute; inset: 0; background: rgba(12,12,12,.35); }
/* Anchored to the bottom of the screen, full-width up to a max, on every size. */
.pch-cookie__box {
	position: relative; z-index: 1; width: 100%; max-width: 900px; margin: 0 12px 12px;
	background: #fff; border-radius: var(--pch-radius); box-shadow: var(--pch-shadow);
	border: 1px solid var(--pch-black-08); padding: 20px 22px; max-height: calc(100vh - 24px); overflow-y: auto;
}
/* On wide screens the banner sits as a horizontal bar. */
@media (min-width: 860px) {
	.pch-cookie__banner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 8px 28px; }
	.pch-cookie__banner .pch-cookie__title { grid-column: 1; margin-bottom: 4px; }
	.pch-cookie__banner .pch-cookie__msg { grid-column: 1; grid-row: 2; margin-bottom: 0; }
	.pch-cookie__banner .pch-cookie__actions { grid-column: 2; grid-row: 1 / span 2; flex-wrap: nowrap; }
}
.pch-cookie__title { font-size: 1.25rem; margin: 0 0 8px; }
.pch-cookie__msg { font-size: .92rem; color: var(--pch-black-80); line-height: 1.6; margin: 0 0 16px; }
.pch-cookie__msg a { color: var(--pch-amber); text-decoration: underline; }
.pch-cookie__actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; }
.pch-cookie__actions .pch-btn { flex: 1 1 auto; min-width: 120px; }
@media (min-width: 560px) { .pch-cookie__actions .pch-btn { flex: 0 1 auto; } }

.pch-cookie__cat { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--pch-line); }
.pch-cookie__cat-text { flex: 1; }
.pch-cookie__cat-text strong { display: block; font-family: var(--pch-font-body); font-weight: 600; margin-bottom: 2px; }
.pch-cookie__cat-text p { margin: 0; font-size: .85rem; color: var(--pch-black-60); line-height: 1.5; }
.pch-cookie__always { flex: 0 0 auto; font-size: .8rem; font-weight: 600; color: #0F9D58; padding-top: 2px; }
.pch-cookie__prefs { margin-bottom: 4px; }
.pch-cookie__prefs .pch-cookie__actions { margin-top: 16px; }

/* Toggle switch */
.pch-switch { position: relative; flex: 0 0 auto; display: inline-flex; align-items: center; cursor: pointer; padding-top: 2px; }
.pch-switch input { position: absolute; opacity: 0; width: 46px; height: 26px; margin: 0; cursor: pointer; }
.pch-switch__track { width: 46px; height: 26px; border-radius: 999px; background: var(--pch-black-08); position: relative; transition: background .2s ease; }
.pch-switch__track::after { content: ""; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,.3); transition: transform .2s ease; }
.pch-switch input:checked + .pch-switch__track { background: var(--pch-saffron); }
.pch-switch input:checked + .pch-switch__track::after { transform: translateX(20px); }
.pch-switch input:focus-visible + .pch-switch__track { box-shadow: 0 0 0 3px var(--pch-saffron-14); }

/* Reopen button */
.pch-cookie-reopen {
	position: fixed; left: 16px; bottom: 16px; z-index: 460;
	width: 46px; height: 46px; border-radius: 50%; border: none; cursor: pointer;
	background: var(--pch-black); color: var(--pch-cream); box-shadow: var(--pch-shadow-sm);
	display: flex; align-items: center; justify-content: center; transition: transform .15s ease, background .2s ease;
}
.pch-cookie-reopen[hidden] { display: none; }
.pch-cookie-reopen:hover { transform: scale(1.08); background: var(--pch-amber); color: var(--pch-black); }
@media (max-width: 1023px) { .pch-cookie-reopen { bottom: 70px; } }

/* ============================================================= UTILITIES */

.pch-reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.pch-reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .pch-reveal { opacity: 1; transform: none; transition: none; } }

.pch-toast {
	position: fixed; left: 50%; bottom: 84px; transform: translateX(-50%) translateY(20px);
	background: var(--pch-black); color: #fff; padding: 12px 22px; border-radius: 999px;
	font-size: .9rem; font-weight: 600; box-shadow: var(--pch-shadow); z-index: 999;
	opacity: 0; pointer-events: none; transition: opacity .25s ease, transform .25s ease;
}
.pch-toast.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); }
@media (min-width: 1024px) { .pch-toast { bottom: 30px; } }
