/*
Theme Name:   Piccolo WC v2
Theme URI:    https://piccolo-allgaeu.de
Author:       WeAreWeblabs
Author URI:   https://weareweblabs.com
Description:  Modernes Custom-Theme für Piccolo Sonthofen – dezent, warm, listenbasierte Speisekarte.
Version:      2.1.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
Text Domain:  piccolo
License: proprietary
*/

/* ═══════════════════════════════════════════════════════════════
   Material Symbols (geladen via Google Fonts / enqueue.php)
   ═══════════════════════════════════════════════════════════════ */

.ms {
	font-family: 'Material Symbols Rounded';
	font-weight: normal;
	font-style: normal;
	font-size: 24px;
	line-height: 1;
	letter-spacing: normal;
	text-transform: none;
	display: inline-block;
	white-space: nowrap;
	word-wrap: normal;
	direction: ltr;
	font-feature-settings: 'liga';
	-webkit-font-smoothing: antialiased;
	vertical-align: middle;
	font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* ═══════════════════════════════════════════════════════════════
   Design Tokens – Piccolo (dezent, warm-italienisch, kein Rot)
   ═══════════════════════════════════════════════════════════════ */
:root {
	/* Brand – Gold & Grün statt Rot */
	--pc-accent:        #b8924a;   /* warmes Gold */
	--pc-accent-dark:   #9a7838;
	--pc-accent-soft:   rgba(184, 146, 74, 0.10);
	--pc-accent-hover:  #9a7838;

	/* Secondary – Salatgrün */
	--pc-secondary:     #489777;
	--pc-secondary-soft: rgba(72, 151, 119, 0.10);

	/* Backgrounds – warm neutral */
	--pc-bg:            #fafaf8;
	--pc-bg-soft:       #f3f0ea;
	--pc-bg-warm:       #fbfaf6;
	--pc-bg-card:       #ffffff;
	--pc-bg-dark:       #2a2520;

	/* Text */
	--pc-text:          #2a2520;
	--pc-text-mute:     #6b6358;
	--pc-text-light:    #9b9388;
	--pc-text-invert:   #ffffff;

	/* Border */
	--pc-border:        #e8e2d5;
	--pc-border-soft:   #f0eae0;

	/* Status */
	--pc-success:       #489777;
	--pc-success-soft:  #eaf4ee;
	--pc-warning:       #c08a3e;
	--pc-warning-soft:  #faf3e8;
	--pc-error:         #b04a3a;
	--pc-error-soft:    #f8eeec;

	/* Typography */
	--pc-font:          'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--pc-font-display:  'Inter', sans-serif;
	--pc-font-size-base: 15px;
	--pc-font-size-sm:   13px;
	--pc-font-size-xs:   12px;
	--pc-font-size-lg:   17px;
	--pc-font-size-xl:   22px;
	--pc-font-size-2xl:  30px;
	--pc-font-size-3xl:  40px;

	/* Radius */
	--pc-radius-sm:     6px;
	--pc-radius:        10px;
	--pc-radius-lg:     16px;
	--pc-radius-full:   999px;

	/* Shadows */
	--pc-shadow-sm:     0 1px 2px rgba(42, 37, 32, 0.04);
	--pc-shadow:        0 2px 10px rgba(42, 37, 32, 0.06);
	--pc-shadow-lg:     0 6px 28px rgba(42, 37, 32, 0.10);

	/* Spacing */
	--pc-gap:           16px;
	--pc-gap-sm:        8px;
	--pc-gap-lg:        24px;
	--pc-gap-xl:        40px;

	/* Container */
	--pc-container:     1140px;
	--pc-container-narrow: 720px;

	/* Header */
	--pc-header-h:      60px;
	--pc-header-bg:     rgba(250, 250, 248, 0.92);
}

/* ═══════════════════════════════════════════════════════════════
   Reset & Base
   ═══════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }

html {
	font-size: var(--pc-font-size-base);
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--pc-font);
	font-size: 1rem;
	line-height: 1.6;
	color: var(--pc-text);
	background: var(--pc-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--pc-font-display);
	font-weight: 600;
	line-height: 1.25;
	margin: 0 0 0.5em;
	letter-spacing: -0.01em;
}
h1 { font-size: var(--pc-font-size-2xl); font-weight: 700; }
h2 { font-size: var(--pc-font-size-xl); }
h3 { font-size: var(--pc-font-size-lg); }

a { color: var(--pc-accent); text-decoration: none; }
a:hover { color: var(--pc-accent-hover); text-decoration: underline; }

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

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

/* ── Container ── */
.pc-container {
	max-width: var(--pc-container);
	margin: 0 auto;
	padding: 0 20px;
}
.pc-container--narrow { max-width: var(--pc-container-narrow); }

/* ═══════════════════════════════════════════════════════════════
   Header
   ═══════════════════════════════════════════════════════════════ */
.pc-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: var(--pc-header-bg);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--pc-border-soft);
}
.pc-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--pc-header-h);
	gap: 16px;
}
.pc-header__left { display: flex; align-items: center; gap: 10px; }
.pc-header__logo img {
	height: 32px;
	width: auto;
}
.pc-header__nav {
	display: flex;
	align-items: center;
	gap: 24px;
}
.pc-header__nav a {
	color: var(--pc-text);
	font-weight: 500;
	font-size: var(--pc-font-size-sm);
}
.pc-header__nav a:hover { color: var(--pc-accent); text-decoration: none; }
.pc-header__actions {
	display: flex;
	align-items: center;
	gap: 8px;
}

/* Mode-Selector im Header */
.pc-header__mode { margin-right: 4px; }
.pc-mode-selector {
	display: inline-flex;
	gap: 2px;
	background: var(--pc-bg-soft);
	border-radius: var(--pc-radius-full);
	padding: 3px;
}
.pc-mode-btn {
	flex: 1;
	appearance: none;
	border: none;
	background: transparent;
	padding: 7px 14px;
	font-size: 12px;
	font-weight: 500;
	color: var(--pc-text-mute);
	border-radius: var(--pc-radius-full);
	cursor: pointer;
	transition: all .2s;
	font-family: inherit;
	display: inline-flex;
	align-items: center;
	gap: 5px;
}
.pc-mode-btn .ms { font-size: 16px; }
.pc-mode-btn.is-active {
	background: var(--pc-bg-card);
	color: var(--pc-text);
	box-shadow: var(--pc-shadow-sm);
}
.pc-mode-btn:hover:not(.is-active) { color: var(--pc-text); }

/* Cart Button */
.pc-cart-btn {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: none;
	background: transparent;
	border-radius: var(--pc-radius-full);
	color: var(--pc-text);
	transition: all .2s;
}
.pc-cart-btn:hover { background: var(--pc-bg-soft); color: var(--pc-accent); }
.pc-cart-btn .ms { font-size: 22px; }
.pc-cart-badge {
	position: absolute;
	top: 2px;
	right: 2px;
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	background: var(--pc-accent);
	color: #fff;
	font-size: 10px;
	font-weight: 600;
	border-radius: var(--pc-radius-full);
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid var(--pc-bg);
}

/* Mobile Burger */
.pc-burger {
	display: none;
	width: 40px;
	height: 40px;
	border: none;
	background: transparent;
	border-radius: var(--pc-radius-full);
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
}
.pc-burger .ms { font-size: 22px; }

/* Mobile Nav */
.pc-mobile-nav {
	display: none;
	position: fixed;
	top: var(--pc-header-h);
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--pc-bg);
	z-index: 999;
	padding: 20px;
	overflow-y: auto;
}
.pc-mobile-nav.is-open { display: block; }
.pc-mobile-nav a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 0;
	font-size: 16px;
	font-weight: 500;
	border-bottom: 1px solid var(--pc-border-soft);
	color: var(--pc-text);
}
.pc-mobile-nav a:hover { color: var(--pc-accent); text-decoration: none; }
.pc-mobile-nav a .ms { color: var(--pc-text-mute); }

/* ═══════════════════════════════════════════════════════════════
   Minicart Popover / Bottom-Sheet
   ═══════════════════════════════════════════════════════════════ */
.pc-minicart {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	width: 360px;
	max-width: calc(100vw - 32px);
	background: var(--pc-bg-card);
	border-radius: var(--pc-radius-lg);
	box-shadow: var(--pc-shadow-lg);
	border: 1px solid var(--pc-border-soft);
	z-index: 1001;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-8px);
	transition: all .25s ease;
}
.pc-minicart.is-open {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.pc-minicart__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 18px;
	border-bottom: 1px solid var(--pc-border-soft);
}
.pc-minicart__title { font-size: 15px; font-weight: 600; margin: 0; }
.pc-minicart__close {
	width: 30px; height: 30px;
	border: none; background: var(--pc-bg-soft);
	border-radius: var(--pc-radius-full);
	color: var(--pc-text-mute);
	display: flex; align-items: center; justify-content: center;
}
.pc-minicart__close .ms { font-size: 18px; }
.pc-minicart__items {
	max-height: 340px;
	overflow-y: auto;
	padding: 4px;
}
.pc-minicart__item {
	display: flex;
	gap: 10px;
	padding: 10px;
	border-bottom: 1px solid var(--pc-border-soft);
}
.pc-minicart__item:last-child { border-bottom: none; }
.pc-minicart__item-img {
	width: 50px; height: 50px;
	border-radius: var(--pc-radius-sm);
	overflow: hidden;
	background: var(--pc-bg-soft);
	flex-shrink: 0;
}
.pc-minicart__item-img img { width: 100%; height: 100%; object-fit: cover; }
.pc-minicart__item-info { flex: 1; min-width: 0; }
.pc-minicart__item-name {
	font-size: 13px;
	font-weight: 600;
	margin: 0 0 2px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.pc-minicart__item-meta { font-size: 11px; color: var(--pc-text-mute); margin-bottom: 6px; }
.pc-minicart__item-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
}
.pc-minicart__qty {
	display: flex;
	align-items: center;
	gap: 4px;
	background: var(--pc-bg-soft);
	border-radius: var(--pc-radius-full);
	padding: 2px;
}
.pc-minicart__qty-btn {
	width: 24px; height: 24px;
	border: none;
	background: transparent;
	border-radius: var(--pc-radius-full);
	color: var(--pc-text);
	display: flex; align-items: center; justify-content: center;
}
.pc-minicart__qty-btn .ms { font-size: 14px; }
.pc-minicart__qty-btn:hover { background: rgba(0,0,0,.05); }
.pc-minicart__qty-val { font-size: 12px; font-weight: 600; min-width: 16px; text-align: center; }
.pc-minicart__item-price { font-size: 13px; font-weight: 600; }
.pc-minicart__remove {
	border: none;
	background: transparent;
	color: var(--pc-text-light);
	padding: 2px;
	display: flex; align-items: center; justify-content: center;
}
.pc-minicart__remove .ms { font-size: 16px; }
.pc-minicart__remove:hover { color: var(--pc-error); }
.pc-minicart__footer {
	padding: 14px 18px;
	border-top: 1px solid var(--pc-border-soft);
}
.pc-minicart__total {
	display: flex;
	justify-content: space-between;
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 10px;
}
.pc-minicart__actions {
	display: flex;
	gap: 8px;
}
.pc-minicart__actions .pc-btn { flex: 1; }
.pc-minicart__empty {
	padding: 36px 20px;
	text-align: center;
	color: var(--pc-text-mute);
}
.pc-minicart__empty-icon { margin-bottom: 10px; }
.pc-minicart__empty-icon .ms { font-size: 44px; color: var(--pc-text-light); }
.pc-minicart__empty-text { font-size: 13px; margin-bottom: 14px; }

/* ═══════════════════════════════════════════════════════════════
   Buttons
   ═══════════════════════════════════════════════════════════════ */
.pc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 10px 18px;
	font-size: var(--pc-font-size-sm);
	font-weight: 600;
	font-family: inherit;
	border: none;
	border-radius: var(--pc-radius);
	cursor: pointer;
	transition: all .15s;
	text-decoration: none;
	white-space: nowrap;
}
.pc-btn .ms { font-size: 18px; }
.pc-btn:hover { text-decoration: none; }
.pc-btn-primary {
	background: var(--pc-accent);
	color: #fff;
}
.pc-btn-primary:hover { background: var(--pc-accent-dark); color: #fff; }
.pc-btn-secondary {
	background: var(--pc-bg-soft);
	color: var(--pc-text);
}
.pc-btn-secondary:hover { background: var(--pc-border-soft); }
.pc-btn-outline {
	background: transparent;
	border: 1px solid var(--pc-border);
	color: var(--pc-text);
}
.pc-btn-outline:hover { border-color: var(--pc-accent); color: var(--pc-accent); }
.pc-btn-lg { padding: 14px 26px; font-size: 15px; }
.pc-btn-block { width: 100%; }

/* ═══════════════════════════════════════════════════════════════
   Hero (Subpages)
   ═══════════════════════════════════════════════════════════════ */
.pc-hero {
	background: var(--pc-bg-soft);
	padding: 24px 0 20px;
	border-bottom: 1px solid var(--pc-border-soft);
}
.pc-hero__back {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 12px;
	color: var(--pc-text-mute);
	margin-bottom: 10px;
}
.pc-hero__back .ms { font-size: 16px; }
.pc-hero__title { font-size: var(--pc-font-size-2xl); margin-bottom: 6px; }
.pc-hero__desc { color: var(--pc-text-mute); margin: 0; font-size: var(--pc-font-size-sm); }

/* ── Checkout Steps ── */
.pc-checkout-steps {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-top: 14px;
}
.pc-checkout-step {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 12px;
	color: var(--pc-text-mute);
}
.pc-checkout-step span {
	width: 22px; height: 22px;
	border-radius: var(--pc-radius-full);
	background: var(--pc-border);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 600;
}
.pc-checkout-step.is-active { color: var(--pc-accent); font-weight: 600; }
.pc-checkout-step.is-active span { background: var(--pc-accent); }
.pc-checkout-step.is-done span { background: var(--pc-success); }
.pc-checkout-step__line {
	width: 20px; height: 2px;
	background: var(--pc-border);
}
.pc-checkout-step__line.is-done { background: var(--pc-success); }

/* ═══════════════════════════════════════════════════════════════
   Front Page – Sections
   ═══════════════════════════════════════════════════════════════ */
.pc-section {
	padding: 52px 20px;
}
.pc-section--alt {
	background: var(--pc-bg-soft);
}
.pc-section__header {
	text-align: center;
	margin-bottom: 28px;
}
.pc-section__header h2 {
	font-size: var(--pc-font-size-2xl);
	margin: 0 0 6px;
}
.pc-section__header p {
	color: var(--pc-text-mute);
	font-size: 14px;
	margin: 0;
}
.pc-section__action {
	text-align: center;
	margin-top: 28px;
}

/* Hero */
.pc-hero {
	position: relative;
	background: var(--pc-bg-dark);
	color: #fff;
	overflow: hidden;
}
.pc-hero__bg {
	position: absolute;
	inset: 0;
	opacity: 0.35;
}
.pc-hero__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.pc-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, rgba(42,37,32,0.92), rgba(42,37,32,0.4) 70%);
}
.pc-hero__content {
	position: relative;
	z-index: 2;
	padding: 80px 0 64px;
	max-width: 560px;
}
.pc-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 12px;
	background: rgba(184,146,74,0.2);
	border: 1px solid rgba(184,146,74,0.4);
	border-radius: var(--pc-radius-full);
	font-size: 12px;
	font-weight: 500;
	margin-bottom: 18px;
	color: var(--pc-accent);
}
.pc-hero__title {
	color: #fff;
	font-size: var(--pc-font-size-3xl);
	margin: 0 0 12px;
	letter-spacing: -0.02em;
}
.pc-hero__sub {
	font-size: 17px;
	color: rgba(255,255,255,0.8);
	margin: 0 0 24px;
	line-height: 1.5;
}
.pc-hero__mode {
	margin-bottom: 16px;
}

/* USPs */
.pc-usps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px 32px;
}
.pc-usp {
	display: flex;
	align-items: center;
	gap: 12px;
}
.pc-usp__icon {
	font-size: 28px;
	color: var(--pc-accent);
	flex-shrink: 0;
}
.pc-usp__title {
	font-size: 14px;
	font-weight: 600;
	margin: 0 0 2px;
}
.pc-usp__text {
	font-size: 12px;
	color: var(--pc-text-mute);
	margin: 0;
}

/* Empfehlungen */
.pc-rec-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
.pc-rec-card {
	display: block;
	background: var(--pc-bg-card);
	border-radius: var(--pc-radius);
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: transform .15s, box-shadow .2s;
	box-shadow: var(--pc-shadow-sm);
}
.pc-rec-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(42,37,32,0.08);
}
.pc-rec-card__img {
	aspect-ratio: 4/3;
	overflow: hidden;
}
.pc-rec-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .3s;
}
.pc-rec-card:hover .pc-rec-card__img img {
	transform: scale(1.05);
}
.pc-rec-card__body {
	padding: 12px 14px 14px;
}
.pc-rec-card__title {
	font-size: 14px;
	font-weight: 600;
	margin: 0 0 4px;
}
.pc-rec-card__price {
	font-size: 14px;
	font-weight: 600;
	color: var(--pc-accent);
}
.pc-rec-card__price del { color: var(--pc-text-light); font-weight: 400; margin-right: 4px; }
.pc-rec-card__price ins { text-decoration: none; }

/* Kategorien */
.pc-cat-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
}
.pc-cat-card {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 10px;
	background: var(--pc-bg-card);
	border-radius: var(--pc-radius);
	text-decoration: none;
	color: inherit;
	transition: box-shadow .2s, transform .15s;
	box-shadow: var(--pc-shadow-sm);
}
.pc-cat-card:hover {
	box-shadow: 0 4px 16px rgba(42,37,32,0.06);
	transform: translateY(-2px);
}
.pc-cat-card__img {
	width: 60px;
	height: 60px;
	border-radius: var(--pc-radius-sm);
	overflow: hidden;
	flex-shrink: 0;
}
.pc-cat-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.pc-cat-card__body {
	flex: 1;
}
.pc-cat-card__title {
	font-size: 14px;
	font-weight: 600;
	margin: 0 0 2px;
}
.pc-cat-card__count {
	font-size: 12px;
	color: var(--pc-text-light);
}
.pc-cat-card__arrow {
	font-size: 20px;
	color: var(--pc-text-light);
	flex-shrink: 0;
}

/* Schritte */
.pc-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	text-align: center;
}
.pc-step {
	position: relative;
	padding-top: 10px;
}
.pc-step__num {
	position: absolute;
	top: -4px;
	left: 50%;
	transform: translateX(-50%);
	width: 28px;
	height: 28px;
	background: var(--pc-accent);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.pc-step__icon {
	font-size: 32px;
	color: var(--pc-accent);
	margin-bottom: 10px;
	display: block;
}
.pc-step__title {
	font-size: 15px;
	font-weight: 600;
	margin: 0 0 6px;
}
.pc-step__text {
	font-size: 13px;
	color: var(--pc-text-mute);
	margin: 0;
	line-height: 1.5;
}

/* Öffnungszeiten */
.pc-hours {
	max-width: 360px;
	margin: 0 auto;
}
.pc-hours__row {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 16px;
	border-bottom: 1px solid var(--pc-border-soft);
	font-size: 14px;
}
.pc-hours__row--today {
	background: var(--pc-accent-soft);
	border-radius: var(--pc-radius-sm);
	border-bottom-color: transparent;
	font-weight: 500;
}
.pc-hours__day {
	width: 30px;
	font-weight: 500;
}
.pc-hours__badge {
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--pc-accent);
	font-weight: 600;
}
.pc-hours__time {
	margin-left: auto;
	color: var(--pc-text-mute);
}
.pc-hours__time--closed {
	color: var(--pc-error);
	font-weight: 500;
}

/* Testimonials */
.pc-testimonials {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.pc-testimonial {
	background: var(--pc-bg-card);
	padding: 24px;
	border-radius: var(--pc-radius);
	box-shadow: var(--pc-shadow-sm);
}
.pc-testimonial__stars {
	display: flex;
	gap: 2px;
	margin-bottom: 12px;
}
.pc-testimonial__text {
	font-size: 14px;
	line-height: 1.6;
	color: var(--pc-text);
	margin: 0 0 12px;
	font-style: italic;
}
.pc-testimonial__author {
	font-size: 13px;
	font-weight: 500;
	color: var(--pc-text-light);
}

/* About */
.pc-about {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 36px;
	align-items: center;
}
.pc-about__img {
	border-radius: var(--pc-radius-lg);
	overflow: hidden;
}
.pc-about__img img {
	width: 100%;
	display: block;
}
.pc-about__content h2 {
	margin-bottom: 14px;
}
.pc-about__content p {
	color: var(--pc-text-mute);
	margin-bottom: 14px;
	line-height: 1.6;
}

/* CTA Banner */
.pc-cta-banner {
	position: relative;
	padding: 52px 20px;
	background: var(--pc-bg-soft);
	border-top: 1px solid var(--pc-border-soft);
}
.pc-cta-banner::before {
	content: '';
	position: absolute;
	inset: 0;
	opacity: 0.05;
	background-image: radial-gradient(circle at 30% 50%, var(--pc-accent) 0%, transparent 60%);
}

/* Homepage responsive */
@media (max-width: 768px) {
	.pc-hero__content { padding: 56px 0 48px; }
	.pc-hero__title { font-size: var(--pc-font-size-2xl); }
	.pc-hero__sub { font-size: 15px; }
	.pc-usps { grid-template-columns: repeat(2, 1fr); gap: 20px; }
	.pc-rec-grid { grid-template-columns: repeat(2, 1fr); }
	.pc-steps { grid-template-columns: 1fr; gap: 24px; max-width: 320px; margin-left: auto; margin-right: auto; }
	.pc-testimonials { grid-template-columns: 1fr; }
	.pc-about { grid-template-columns: 1fr; }
	.pc-cat-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
	.pc-hero__content { padding: 40px 0 36px; }
	.pc-hero__title { font-size: 26px; }
	.pc-usps { grid-template-columns: 1fr; gap: 16px; }
	.pc-rec-grid { grid-template-columns: 1fr; }
	.pc-section { padding: 36px 16px; }
}

/* ═══════════════════════════════════════════════════════════════
   Order Bar – Sticky Bottom Bar (Speisekarte)
   ═══════════════════════════════════════════════════════════════ */
.pc-order-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: var(--pc-bg-card);
	border-top: 1px solid var(--pc-border);
	box-shadow: 0 -4px 20px rgba(42,37,32,0.10);
	padding: 12px 0;
	transform: translateY(100%);
	transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.pc-order-bar--active {
	transform: translateY(0);
}
.pc-order-bar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}
.pc-order-bar__info {
	display: flex;
	align-items: center;
	gap: 10px;
}
.pc-order-bar__icon {
	position: relative;
	display: flex;
	align-items: center;
	color: var(--pc-accent);
}
.pc-order-bar__icon .ms {
	font-size: 26px;
}
.pc-order-bar__badge {
	position: absolute;
	top: -6px;
	right: -8px;
	min-width: 20px;
	height: 20px;
	background: var(--pc-accent);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 5px;
	line-height: 1;
	box-shadow: 0 1px 4px rgba(184,146,74,0.3);
}
.pc-order-bar__total {
	font-size: 16px;
	font-weight: 700;
	color: var(--pc-text);
}
.pc-order-bar__actions {
	display: flex;
	align-items: center;
	gap: 12px;
}
.pc-order-bar__min {
	font-size: 11px;
	color: var(--pc-warning);
	white-space: nowrap;
	background: var(--pc-warning-soft);
	padding: 4px 10px;
	border-radius: var(--pc-radius-sm);
}
.pc-order-bar__btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	white-space: nowrap;
	padding: 10px 22px;
	border-radius: var(--pc-radius);
	font-size: 14px;
	font-weight: 600;
	background: var(--pc-accent);
	color: #fff;
	text-decoration: none;
	transition: background .2s;
}
.pc-order-bar__btn:hover {
	background: var(--pc-accent-dark);
	color: #fff;
}
.pc-order-bar__btn .ms {
	font-size: 18px;
}

/* Add-to-Cart Button Feedback */
.pc-menu-item__btn.pc-adding {
	background: var(--pc-success) !important;
	pointer-events: none;
	transform: scale(1.15);
}

/* Mobile: Order Bar kompakt */
@media (max-width: 640px) {
	.pc-order-bar { padding: 10px 0; }
	.pc-order-bar__min { display: none; }
	.pc-order-bar__btn { padding: 8px 16px; font-size: 13px; }
	.pc-order-bar__total { font-size: 14px; }
}
@media (max-width: 480px) {
	.pc-order-bar__icon .ms { font-size: 22px; }
	.pc-order-bar__badge { min-width: 18px; height: 18px; font-size: 10px; }
	.pc-order-bar__btn { padding: 8px 14px; font-size: 12px; gap: 4px; }
	.pc-order-bar__btn .ms { font-size: 16px; }
}

/* ═══════════════════════════════════════════════════════════════
   Footer
   ═══════════════════════════════════════════════════════════════ */
.pc-footer {
	background: var(--pc-bg-dark);
	color: rgba(255,255,255,0.65);
	padding: 44px 0 28px;
}
.pc-footer a { color: rgba(255,255,255,0.75); text-decoration: none; }
.pc-footer a:hover { color: #fff; text-decoration: underline; }
.pc-footer__grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 32px;
	margin-bottom: 28px;
}
.pc-footer__col h4 {
	color: #fff;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.6px;
	margin-bottom: 12px;
	font-weight: 600;
}
.pc-footer__col p { font-size: 13px; line-height: 1.5; margin: 0; }
.pc-footer__col p + p { margin-top: 8px; }
.pc-footer__col ul { list-style: none; padding: 0; margin: 0; }
.pc-footer__col li { margin-bottom: 6px; font-size: 13px; }
.pc-footer__col .ms { font-size: 16px; vertical-align: middle; margin-right: 4px; color: var(--pc-accent); }
.pc-footer__bottom {
	border-top: 1px solid rgba(255,255,255,0.08);
	padding-top: 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	font-size: 11px;
	flex-wrap: wrap;
}
.pc-footer__payment {
	font-size: 12px;
	color: rgba(255,255,255,0.5);
}

/* ═══════════════════════════════════════════════════════════════
   Notices
   ═══════════════════════════════════════════════════════════════ */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	border-radius: var(--pc-radius) !important;
	border: none !important;
	padding: 12px 16px !important;
	font-size: 13px;
	margin-bottom: 14px !important;
}
.woocommerce-message { background: var(--pc-success-soft) !important; color: var(--pc-success) !important; }
.woocommerce-info { background: var(--pc-warning-soft) !important; color: var(--pc-warning) !important; }
.woocommerce-error { background: var(--pc-error-soft) !important; color: var(--pc-error) !important; }

/* ═══════════════════════════════════════════════════════════════
   Responsive
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 968px) {
	.pc-header__nav { display: none; }
	.pc-burger { display: flex; }
	.pc-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
	:root {
		--pc-font-size-2xl: 24px;
		--pc-font-size-3xl: 32px;
	}
	h1 { font-size: 22px; }
	h2 { font-size: 18px; }
	.pc-footer__grid { grid-template-columns: 1fr; gap: 20px; }
	.pc-footer { padding: 28px 0; }

	/* Minicart → Bottom-Sheet */
	.pc-minicart {
		position: fixed;
		top: auto;
		bottom: 0;
		left: 0;
		right: 0;
		width: 100%;
		max-width: 100%;
		border-radius: var(--pc-radius-lg) var(--pc-radius-lg) 0 0;
		max-height: 82vh;
		transform: translateY(100%);
	}
	.pc-minicart.is-open { transform: translateY(0); }
}

@media (max-width: 480px) {
	.pc-header__logo img { height: 26px; }
	.pc-mode-btn { padding: 6px 10px; font-size: 11px; }
}
