/*
Theme Name: Pizzalio
Theme URI: https://example.com/pizzalio
Author: Lajos Kiss
Description: A sunny, retro-pop landing page theme for a wood-fired pizza kitchen, featuring an interactive drag-and-drop pizza builder. Ported from a Claude Design export. Practice/demo theme.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pizzalio
Tags: one-column, custom-colors, custom-menu, food-and-drink, landing-page
*/

/* ===============================================================
   1. BASE
   =============================================================== */

* { box-sizing: border-box; }

/*
 * The browser hides [hidden] elements with a UA rule of the lowest possible
 * specificity, so any class that sets `display` silently overrides it — the
 * element stays on screen while JavaScript believes it is hidden. Several
 * elements here (.pz-pizza-empty, .pz-field) do set display, so the attribute
 * is given teeth once, globally.
 */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--surface-page);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--text-body-lh);
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
  overflow-x: hidden;
}

a {
  color: var(--text-hot);
  text-decoration: none;
  font-weight: var(--weight-semibold);
}

a:hover {
  color: var(--orange-600);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: var(--weight-black);
  color: var(--text-strong);
  letter-spacing: var(--track-display);
  margin: 0;
}

h1 { font-size: var(--text-display); line-height: var(--text-display-lh); }
h2 { font-size: var(--text-title);   line-height: var(--text-title-lh); }
h3 { font-size: var(--text-section); line-height: var(--text-section-lh); }

p { margin: 0; }

img { max-width: 100%; }

button, input { font-family: var(--font-body); }

:focus-visible { outline: none; box-shadow: var(--ring-focus); }

::selection { background: var(--pink-200); color: var(--ink-900); }

/* Visible only to screen readers. WordPress convention. */
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.pz-eyebrow {
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: var(--text-xs);
  letter-spacing: var(--track-label);
  text-transform: uppercase;
}

.pz-script {
  font-family: var(--font-script);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.pz-mono { font-family: var(--font-mono); }

.pz-icon {
  display: inline-block;
  vertical-align: middle;
  flex: 0 0 auto;
}

/* ===============================================================
   2. LAYOUT PRIMITIVES
   A page is a vertical stack of rounded slabs, 20px apart,
   inside a 28px gutter, capped at 1180px.
   =============================================================== */

.pz-section {
  position: relative;
  max-width: var(--max-page);
  margin: 0 auto var(--section-gap);
  padding: 0 var(--gutter-page);
}

.pz-slab {
  position: relative;
  border-radius: var(--radius-block);
  padding: var(--card-pad-lg);
  overflow: hidden;
}

.pz-slab--warm    { background: var(--surface-warm-soft); }
.pz-slab--sweet   { background: var(--surface-sweet-soft); }
.pz-slab--inverse { background: var(--surface-inverse); }
.pz-slab--hot     { background: var(--surface-hot); color: var(--text-on-hot); }

/* Section header: heading left, supporting line right. */
.pz-slab-head {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
  margin-bottom: var(--space-8);
}

.pz-slab-head h2 {
  font-size: var(--text-display);
  line-height: var(--text-display-lh);
  text-transform: uppercase;
  margin: 8px 0 0;
}

.pz-slab-head p { max-width: 46ch; }

/* Decorative blobs/circles sitting behind content. */
.pz-blob {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

/* ===============================================================
   3. BUTTONS
   Pill-shaped, always. Hover lifts 2px AND darkens — never opacity.
   =============================================================== */

.pz-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform var(--dur-fast) var(--ease-out),
    background var(--dur-base) var(--ease-out),
    box-shadow var(--dur-base) var(--ease-out),
    color var(--dur-base) var(--ease-out);
}

.pz-btn:hover { transform: var(--lift-hover); text-decoration: none; }
.pz-btn:active { transform: scale(var(--press-scale)); }

.pz-btn--sm { height: 34px; padding: 0 16px; font-size: var(--text-xs); }
.pz-btn--md { height: 44px; padding: 0 20px; font-size: var(--text-xs); }
.pz-btn--lg { height: 54px; padding: 0 26px; font-size: var(--text-sm); }

.pz-btn--full { width: 100%; }

.pz-btn--primary {
  background: var(--surface-hot);
  color: var(--text-on-hot);
  box-shadow: var(--shadow-hot);
}
.pz-btn--primary:hover { background: var(--surface-hot-deep); color: var(--text-on-hot); }

.pz-btn--sweet {
  background: var(--surface-sweet);
  color: var(--text-on-sweet);
  box-shadow: var(--shadow-sweet);
}
.pz-btn--sweet:hover { background: var(--pink-600); color: var(--text-on-sweet); }

.pz-btn--cream {
  background: var(--cream-50);
  color: var(--text-hot);
  box-shadow: var(--shadow-sm);
}
.pz-btn--cream:hover { background: var(--white); color: var(--orange-600); }

.pz-btn--outline {
  background: transparent;
  color: var(--text-strong);
  box-shadow: inset 0 0 0 2px var(--border-soft);
}
.pz-btn--outline:hover {
  background: var(--state-hover-veil);
  color: var(--text-strong);
  box-shadow: inset 0 0 0 2px var(--peach-400);
}

.pz-btn--ghost {
  background: transparent;
  color: var(--text-strong);
}
.pz-btn--ghost:hover { background: var(--state-hover-veil); color: var(--text-strong); }

/* ===============================================================
   4. TAGS — the selectable pills for size / crust / sauce / mode
   =============================================================== */

.pz-tag {
  display: inline-flex;
  align-items: center;
  height: 38px;
  padding: 0 16px;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-pill);
  background: var(--surface-sunk);
  color: var(--text-body);
  font-family: var(--font-body);
  font-weight: var(--weight-semibold);
  font-size: var(--text-sm);
  line-height: 1;
  transition:
    background var(--dur-base) var(--ease-out),
    color var(--dur-base) var(--ease-out),
    box-shadow var(--dur-base) var(--ease-out),
    transform var(--dur-fast) var(--ease-out);
}

.pz-tag:hover { background: var(--peach-200); }
.pz-tag:active { transform: scale(var(--press-scale)); }

.pz-tag[aria-pressed="true"] {
  background: var(--surface-hot);
  color: var(--text-on-hot);
  box-shadow: var(--shadow-hot);
}
.pz-tag[aria-pressed="true"]:hover { background: var(--surface-hot-deep); }

/* ===============================================================
   5. NAV
   The only fixed element: sticky, cream at 86%, 10px blur.
   =============================================================== */

.pz-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding: 18px var(--gutter-page);
  background: rgba(253, 241, 228, .86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.pz-logo {
  font-family: var(--font-display);
  font-weight: var(--weight-black);
  font-size: 19px;
  line-height: .92;
  letter-spacing: var(--track-tight);
  text-transform: uppercase;
  color: var(--orange-500);
  text-decoration: none;
}
.pz-logo:hover { text-decoration: none; color: var(--orange-600); }

/*
 * Works for both markup shapes: the <div> from the fallback nav, and the <ul>
 * that wp_nav_menu() emits once a menu is assigned in Appearance -> Menus.
 */
.pz-nav-links {
  display: flex;
  gap: var(--space-8);
  list-style: none;
  margin: 0;
  padding: 0;
}

.pz-nav-links li { list-style: none; }

.pz-nav-links a { color: var(--text-strong); text-decoration: none; }
.pz-nav-links a:hover { color: var(--text-hot); text-decoration: none; }

/* ===============================================================
   6. HERO
   =============================================================== */

.pz-hero {
  position: relative;
  min-height: calc(100vh - 70px);
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: var(--space-10);
  padding: var(--space-8) var(--gutter-page) var(--space-16);
  max-width: var(--max-page);
  margin: 0 auto;
  overflow: visible;
}

.pz-hero-copy { position: relative; z-index: 2; }

.pz-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--pink-500);
}

.pz-hero h1 {
  font-family: var(--font-display);
  font-weight: var(--weight-black);
  font-size: var(--text-hero);
  line-height: var(--text-hero-lh);
  letter-spacing: var(--track-display);
  text-transform: uppercase;
  color: var(--orange-500);
  margin: 0;
}

.pz-hero-line2 {
  display: flex;
  align-items: baseline;
  gap: 18px;
  flex-wrap: wrap;
}

.pz-hero-line2 .pz-word {
  font-family: var(--font-display);
  font-weight: var(--weight-black);
  font-size: var(--text-hero);
  line-height: var(--text-hero-lh);
  letter-spacing: var(--track-display);
  text-transform: uppercase;
  color: var(--ink-900);
}

.pz-hero-line2 .pz-script {
  font-size: calc(var(--text-hero) * .775);
  line-height: .8;
  color: var(--pink-500);
}

.pz-hero-lead {
  max-width: 42ch;
  margin: 24px 0 28px;
  color: var(--text-body);
  font-size: var(--text-lg);
}

.pz-hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.pz-hero-cue {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: var(--space-10);
  color: var(--text-muted);
}

.pz-hero-cue-arrow {
  animation: pz-cue 1.8s var(--ease-out) infinite;
  display: inline-flex;
  color: var(--orange-500);
}

.pz-hero-art {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 460px;
}

.pz-hero-disc {
  position: relative;
  width: min(440px, 92%);
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-circle);
  background: var(--peach-200);
  box-shadow: var(--shadow-lg);
}

.pz-hero-disc img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-circle);
  transform: scale(1.02);
}

/* The 112px circle of small uppercase text overlapping an image edge. */
.pz-sticker {
  position: absolute;
  width: 112px;
  height: 112px;
  border-radius: var(--radius-circle);
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--font-display);
  font-weight: var(--weight-black);
  font-size: 10px;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  line-height: 1.5;
}

.pz-sticker--sweet {
  background: var(--surface-sweet);
  color: var(--white);
  box-shadow: var(--shadow-sweet);
  left: 2%;
  bottom: 12%;
}

.pz-sticker--dough {
  background: var(--surface-dough);
  color: var(--orange-700);
  left: -34px;
  bottom: 34px;
}

/* ===============================================================
   7. BUILDER
   =============================================================== */

.pz-builder-grid {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: var(--section-gap);
  align-items: flex-start;
}

.pz-builder-main {
  flex: 1 1 600px;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  gap: var(--section-gap);
}

.pz-card {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  padding: var(--card-pad);
  box-shadow: var(--shadow-sm);
}

/* Size / crust / sauce chooser */
.pz-choices {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
}

.pz-choice-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pz-choice-group--size  { flex: 1 1 160px; }
.pz-choice-group--crust { flex: 1 1 190px; }
.pz-choice-group--sauce { flex: 1 1 230px; }

.pz-choice-opts { display: flex; gap: 6px; flex-wrap: wrap; }

/* The coral stage the pizza sits on */
.pz-stage {
  position: relative;
  display: grid;
  place-items: center;
  background: var(--surface-hot);
  border-radius: var(--radius-block);
  padding: var(--card-pad-lg);
  overflow: hidden;
}

.pz-stage-deco {
  position: absolute;
  border-radius: var(--radius-circle);
  background: rgba(255, 255, 255, .14);
}
.pz-stage-deco--a { left: -30px; top: -30px; width: 150px; height: 150px; }
.pz-stage-deco--b { right: 8%; bottom: -50px; width: 120px; height: 120px; }

.pz-pizza-wrap {
  position: relative;
  width: 100%;
  max-width: 430px;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
}

.pz-pizza {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-circle);
  background: var(--yellow-300);
  box-shadow: var(--shadow-md);
  transition:
    transform var(--dur-base) var(--ease-pop),
    box-shadow var(--dur-base) var(--ease-out);
}

/* Drop-zone highlight while dragging an ingredient over the dough. */
.pz-pizza.is-over {
  box-shadow: 0 0 0 10px rgba(255, 255, 255, .5), var(--shadow-lg);
}

.pz-sauce {
  position: absolute;
  border-radius: var(--radius-circle);
  overflow: hidden;
}

.pz-piece {
  position: absolute;
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.pz-pizza-empty {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.pz-pizza-empty span {
  color: rgba(255, 255, 255, .85);
  text-align: center;
}

.pz-stage-bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  width: 100%;
  margin-top: var(--space-6);
  flex-wrap: wrap;
}

.pz-counter {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  box-shadow: var(--shadow-sm);
}

.pz-counter-sep { width: 1px; height: 14px; background: var(--divider); }

.pz-counter-total {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--text-hot);
}

.pz-mute {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: none;
  cursor: pointer;
  background: rgba(255, 255, 255, .18);
  color: var(--white);
  border-radius: var(--radius-pill);
  padding: 10px 16px;
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: var(--text-xs);
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  transition: background var(--dur-base) var(--ease-out);
}
.pz-mute:hover { background: rgba(255, 255, 255, .3); }

.pz-builder-actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* Ingredient tray tabs */
.pz-tabs {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: var(--surface-sunk);
  border-radius: var(--radius-pill);
}

.pz-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  flex: 1 1 auto;
  height: 38px;
  padding: 0 14px;
  border: none;
  cursor: pointer;
  background: transparent;
  color: var(--text-body);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: var(--text-xs);
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  transition:
    background var(--dur-base) var(--ease-out),
    color var(--dur-base) var(--ease-out),
    box-shadow var(--dur-base) var(--ease-out);
}

.pz-tab:hover { color: var(--text-strong); }

.pz-tab[aria-selected="true"] {
  background: var(--surface-card);
  color: var(--text-hot);
  box-shadow: var(--shadow-xs);
}

.pz-tray {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(118px, 1fr));
  gap: 10px;
  margin-top: var(--space-5);
}

.pz-chip {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 10px;
  border: none;
  border-radius: var(--radius-md);
  background: var(--cream-100);
  cursor: grab;
  touch-action: none;
  box-shadow: var(--shadow-xs);
  transition:
    transform var(--dur-fast) var(--ease-out),
    background var(--dur-base) var(--ease-out),
    box-shadow var(--dur-base) var(--ease-out);
}

.pz-chip:hover {
  transform: var(--lift-hover);
  background: var(--peach-200);
  box-shadow: var(--shadow-md);
}
.pz-chip:active { transform: scale(var(--press-scale)); cursor: grabbing; }

.pz-chip-swatch { width: 32px; height: 32px; }

.pz-chip-name {
  font-family: var(--font-body);
  font-weight: var(--weight-semibold);
  font-size: var(--text-sm);
  line-height: 1.2;
  text-align: center;
  color: var(--text-strong);
}

.pz-chip-price {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.pz-chip-count {
  position: absolute;
  top: 8px;
  right: 10px;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--text-sweet);
}

.pz-tray-hint {
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* Order summary rail */
.pz-summary {
  flex: 0 1 340px;
  min-width: 290px;
  position: sticky;
  top: 96px;
  background: var(--surface-inverse);
  border-radius: var(--radius-xl);
  padding: var(--card-pad-lg);
  box-shadow: var(--shadow-lg);
}

.pz-summary h3 {
  font-size: var(--text-section);
  text-transform: uppercase;
  color: var(--text-on-dark);
  margin: 8px 0 var(--space-5);
}

.pz-summary-rows { display: flex; flex-direction: column; }

.pz-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(253, 241, 228, .12);
}

.pz-row-dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-xs);
  flex: 0 0 auto;
}

.pz-row-label { flex: 1; font-size: var(--text-sm); color: var(--text-on-dark); }

.pz-row-price {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--ink-300);
}

.pz-row-remove {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border: none;
  border-radius: var(--radius-circle);
  background: rgba(253, 241, 228, .12);
  color: var(--text-on-dark);
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
  transition: background var(--dur-base) var(--ease-out);
}
.pz-row-remove:hover { background: var(--surface-sweet); }

.pz-subtotal {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: var(--space-6) 0 var(--space-4);
}

.pz-subtotal-value {
  font-family: var(--font-mono);
  font-size: 30px;
  color: var(--yellow-300);
}

.pz-notice {
  margin-top: var(--space-3);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 92, 158, .16);
  color: var(--pink-300);
  font-size: var(--text-sm);
  animation: pz-fade var(--dur-base) var(--ease-out);
}

.pz-summary-fineprint {
  margin-top: var(--space-4);
  font-size: var(--text-xs);
  color: var(--ink-500);
}

/* ===============================================================
   8. KITCHEN / HOW IT WORKS
   =============================================================== */

.pz-kitchen-slab { padding: var(--space-16) var(--card-pad-lg); }

.pz-kitchen-head {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: end;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}

.pz-kitchen-head h2 {
  font-size: var(--text-display);
  line-height: var(--text-display-lh);
  text-transform: uppercase;
  color: var(--text-on-dark);
  margin: 0;
}

.pz-kitchen-head p { max-width: 40ch; color: var(--ink-300); }

.pz-kitchen-copy { display: flex; flex-direction: column; gap: var(--space-5); }

.pz-kitchen-art {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 380px;
}

/* An arch: a rectangle with a big top radius. */
.pz-arch {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 220px 220px var(--radius-block) var(--radius-block);
}

.pz-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-5);
}

.pz-step {
  background: rgba(253, 241, 228, .07);
  border-radius: var(--radius-lg);
  padding: var(--card-pad-lg);
}

.pz-step-num {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--yellow-300);
}

.pz-step h3 {
  font-size: var(--text-section);
  text-transform: uppercase;
  color: var(--text-on-dark);
  margin: 12px 0 10px;
}

.pz-step p { color: var(--ink-300); }

/* ===============================================================
   9. FAVOURITES
   =============================================================== */

.pz-combos {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-5);
}

.pz-combo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  border: none;
  cursor: pointer;
  background: var(--surface-card);
  border-radius: var(--radius-xl);
  padding: var(--card-pad-lg);
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--dur-base) var(--ease-out),
    box-shadow var(--dur-base) var(--ease-out);
}

.pz-combo:hover { transform: var(--lift-hover); box-shadow: var(--shadow-lg); }

.pz-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: var(--text-xs);
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  line-height: 1;
}

.pz-combo h3 { font-size: var(--text-section); text-transform: uppercase; margin: 0; }

.pz-combo p { color: var(--text-body); font-size: var(--text-sm); }

.pz-combo-load {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: var(--text-xs);
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--text-hot);
}

.pz-combo-price {
  font-family: var(--font-mono);
  letter-spacing: 0;
  color: var(--text-muted);
}

/* ===============================================================
   10. LOCATIONS / TESTIMONIALS
   =============================================================== */

.pz-cards3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-5);
}

.pz-quote {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  border-radius: var(--radius-xl);
  padding: var(--card-pad-lg);
  box-shadow: var(--shadow-sm);
}

.pz-quote--dough { background: var(--surface-dough); }
.pz-quote--warm  { background: var(--surface-warm-soft); }

.pz-quote-mark {
  font-family: var(--font-script);
  font-size: 46px;
  line-height: .6;
}

.pz-quote p { font-size: var(--text-lg); color: var(--text-strong); }

.pz-quote-by {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

.pz-avatar {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  border-radius: var(--radius-circle);
  object-fit: cover;
  object-position: 55% 30%;
}

.pz-hours {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--surface-card);
  border-radius: var(--radius-xl);
  padding: var(--card-pad-lg);
  box-shadow: var(--shadow-sm);
}

.pz-hours-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.pz-hours-row span:first-child { font-weight: var(--weight-semibold); color: var(--text-strong); }

.pz-hours-row span:last-child {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.pz-hours-note {
  margin-top: auto;
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* ===============================================================
   11. FOOTER
   =============================================================== */

.pz-footer {
  max-width: var(--max-page);
  margin: 0 auto;
  padding: 0 var(--gutter-page) var(--section-gap);
}

.pz-footer-slab {
  background: var(--surface-hot);
  border-radius: var(--radius-block);
  padding: var(--space-16) var(--card-pad-lg) var(--card-pad-lg);
  color: var(--text-on-hot);
}

.pz-footer-cta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.pz-footer-cta h2 {
  font-size: var(--text-display);
  line-height: var(--text-display-lh);
  text-transform: uppercase;
  color: var(--white);
  margin: 0;
}

.pz-footer-cols {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-10);
  justify-content: space-between;
  margin-top: var(--space-16);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, .28);
}

.pz-footer-col { display: flex; flex-direction: column; gap: 10px; }

.pz-footer-col .pz-eyebrow { color: rgba(255, 255, 255, .7); }

.pz-footer-col a { color: var(--white); font-size: var(--text-sm); }
.pz-footer-col a:hover { color: var(--white); }

.pz-footer-brand { max-width: 260px; }

.pz-footer-brand .pz-logo { color: var(--white); }

.pz-footer-brand p {
  margin-top: 12px;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, .82);
}

.pz-footer-legal {
  margin-top: var(--space-8);
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, .7);
}

/* ===============================================================
   12. DRAG GHOST
   =============================================================== */

.pz-ghost {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 90;
  pointer-events: none;
  display: none;
}

.pz-ghost-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px 8px 8px;
  border-radius: var(--radius-pill);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translate(-50%, -50%);
  font-weight: var(--weight-semibold);
  font-size: var(--text-sm);
  color: var(--text-strong);
}

.pz-ghost-swatch { width: 26px; height: 26px; }

/* ===============================================================
   13. DIALOG
   =============================================================== */

.pz-dialog[hidden] { display: none; }

.pz-dialog {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: var(--space-5);
}

.pz-dialog-scrim {
  position: absolute;
  inset: 0;
  background: rgba(59, 31, 20, .42);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  border: none;
  padding: 0;
  cursor: pointer;
}

.pz-dialog-panel {
  position: relative;
  width: 100%;
  max-width: 660px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--surface-card);
  border-radius: var(--radius-2xl);
  padding: var(--card-pad-lg);
  box-shadow: var(--shadow-lg);
  animation: pz-rise var(--dur-slow) var(--ease-out) both;
}

.pz-dialog-head { margin-bottom: var(--space-5); padding-right: 40px; }

.pz-dialog-head h2 {
  font-size: var(--text-title);
  text-transform: uppercase;
  margin: 6px 0 0;
}

.pz-dialog-close {
  position: absolute;
  top: var(--card-pad-lg);
  right: var(--card-pad-lg);
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-circle);
  background: var(--surface-sunk);
  color: var(--text-strong);
  transition: transform var(--dur-base) var(--ease-pop), background var(--dur-base) var(--ease-out);
}
.pz-dialog-close:hover { transform: scale(1.08); background: var(--peach-200); }

.pz-order-preview {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  margin-top: var(--space-6);
}

.pz-order-snapshot {
  flex: 0 0 170px;
  height: 170px;
  position: relative;
  border-radius: var(--radius-circle);
  background: var(--yellow-300);
  box-shadow: var(--shadow-md);
}

.pz-order-lines { flex: 1 1 280px; min-width: 230px; }

.pz-order-line {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--divider);
  font-size: var(--text-sm);
}

.pz-order-line span:first-child { flex: 1; color: var(--text-strong); }
.pz-order-line span:last-child { font-family: var(--font-mono); color: var(--text-muted); }

.pz-order-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: var(--space-4);
}

.pz-order-total-value {
  font-family: var(--font-mono);
  font-size: 26px;
  color: var(--text-hot);
}

.pz-mode-toggle { display: flex; gap: 8px; margin-top: var(--space-6); }

.pz-fields {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.pz-field { display: flex; flex-direction: column; gap: 6px; }

.pz-field--wide { grid-column: 1 / -1; }

.pz-field label {
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: var(--text-xs);
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--text-muted);
}

.pz-field input {
  height: 46px;
  padding: 0 var(--control-pad-x);
  border: none;
  border-radius: var(--radius-pill);
  background: var(--surface-card);
  color: var(--text-strong);
  font-size: var(--text-base);
  box-shadow: inset 0 0 0 1px var(--border-soft);
  transition: box-shadow var(--dur-base) var(--ease-out);
}

.pz-field input:focus {
  outline: none;
  box-shadow: inset 0 0 0 1px var(--orange-500), var(--ring-focus);
}

.pz-form-notice {
  margin-top: var(--space-4);
  padding: 11px 16px;
  border-radius: var(--radius-pill);
  background: var(--danger-100);
  color: var(--danger-500);
  font-size: var(--text-sm);
  animation: pz-fade var(--dur-base) var(--ease-out);
}

.pz-dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: var(--space-6);
}

/* Success state */
.pz-success { text-align: center; animation: pz-rise var(--dur-slow) var(--ease-out) both; }

.pz-success-icon {
  width: 84px;
  height: 84px;
  margin: 0 auto;
  border-radius: var(--radius-circle);
  background: var(--surface-dough);
  color: var(--text-hot);
  display: grid;
  place-items: center;
}

.pz-success-line {
  margin: var(--space-5) auto 0;
  max-width: 42ch;
  font-size: var(--text-lg);
  color: var(--text-body);
}

.pz-receipt {
  display: inline-flex;
  gap: var(--space-8);
  margin-top: var(--space-6);
  padding: 16px 26px;
  border-radius: var(--radius-lg);
  background: var(--surface-warm-soft);
  text-align: left;
}

.pz-receipt-value {
  font-family: var(--font-mono);
  font-size: var(--text-lg);
  color: var(--text-strong);
}

.pz-dialog-actions--center { justify-content: center; }

/* ===============================================================
   13b. PAGES — generic page + contact page
   =============================================================== */

/* Clears the sticky nav, since inner pages have no full-height hero. */
.pz-page-top { padding-top: var(--space-8); }

.pz-page-head { margin-bottom: var(--space-6); }

.pz-page-head h1 {
  font-size: var(--text-display);
  line-height: var(--text-display-lh);
  text-transform: uppercase;
  color: var(--text-strong);
  margin: 0;
}

/* Editor content: whatever the client types in WordPress lands here. */
.pz-entry { max-width: 68ch; }

.pz-entry > * + * { margin-top: var(--space-4); }

.pz-entry h2,
.pz-entry h3,
.pz-entry h4 {
  text-transform: uppercase;
  margin-top: var(--space-8);
}

.pz-entry ul,
.pz-entry ol { padding-left: 1.3em; }

.pz-entry li + li { margin-top: 6px; }

.pz-entry img {
  height: auto;
  border-radius: var(--radius-lg);
}

.pz-entry blockquote {
  margin: var(--space-6) 0;
  padding: var(--card-pad) var(--card-pad-lg);
  border-radius: var(--radius-lg);
  background: var(--surface-card);
  font-size: var(--text-lg);
  color: var(--text-strong);
}

.pz-entry code {
  font-family: var(--font-mono);
  font-size: .92em;
  padding: 2px 6px;
  border-radius: var(--radius-xs);
  background: var(--surface-sunk);
}

.pz-entry table { width: 100%; border-collapse: collapse; }

.pz-entry th,
.pz-entry td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid var(--divider);
}

.pz-page-links { margin-top: var(--space-6); font-family: var(--font-mono); }

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

.pz-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, .65fr);
  gap: var(--section-gap);
  align-items: start;
}

.pz-contact-form { padding: var(--card-pad-lg); }

.pz-form-title {
  font-size: var(--text-section);
  text-transform: uppercase;
  margin: 0 0 var(--space-5);
}

.pz-contact-aside {
  display: flex;
  flex-direction: column;
  gap: var(--section-gap);
}

/* The honeypot: reachable by bots, invisible and unfocusable for people. */
.pz-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.pz-field textarea {
  padding: 14px var(--control-pad-x);
  border: none;
  border-radius: var(--radius-lg);
  background: var(--surface-card);
  color: var(--text-strong);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--text-body-lh);
  resize: vertical;
  box-shadow: inset 0 0 0 1px var(--border-soft);
  transition: box-shadow var(--dur-base) var(--ease-out);
}

.pz-field textarea:focus {
  outline: none;
  box-shadow: inset 0 0 0 1px var(--orange-500), var(--ring-focus);
}

.pz-field input[aria-invalid="true"],
.pz-field textarea[aria-invalid="true"] {
  box-shadow: inset 0 0 0 2px var(--danger-500);
}

.pz-field-error {
  font-size: var(--text-sm);
  color: var(--danger-500);
  padding-left: var(--control-pad-x);
}

.pz-contact-submit {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  flex-wrap: wrap;
  margin-top: var(--space-6);
}

.pz-contact-fineprint {
  flex: 1 1 240px;
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* --- sent confirmation --- */

.pz-sent { text-align: center; padding: var(--space-8) 0; }

.pz-sent h3 {
  font-size: var(--text-title);
  text-transform: uppercase;
  margin: var(--space-5) 0 var(--space-3);
}

.pz-sent p {
  max-width: 44ch;
  margin: 0 auto var(--space-6);
  color: var(--text-body);
}

/* --- contact details panel --- */

.pz-contact-details h3 {
  font-size: var(--text-section);
  text-transform: uppercase;
  color: var(--text-on-dark);
  margin: 8px 0 var(--space-5);
}

.pz-contact-line {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: var(--text-on-dark);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  text-decoration: none;
  border-bottom: 1px solid rgba(253, 241, 228, .12);
}

.pz-contact-line:hover { color: var(--pink-400); text-decoration: none; }

/* The circle-icon pattern from the design system. */
.pz-contact-dot {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: var(--radius-circle);
  background: var(--surface-sweet-soft);
  color: var(--text-sweet);
}

.pz-contact-addr {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: var(--space-5);
  font-size: var(--text-sm);
  color: var(--ink-300);
}

.pz-contact-dot--inline { margin-top: -5px; }

.pz-contact-cta { padding: var(--card-pad-lg); }

.pz-contact-cta h3 {
  font-size: var(--text-section);
  text-transform: uppercase;
  margin: 0 0 8px;
}

.pz-contact-cta p {
  font-size: var(--text-sm);
  color: var(--text-body);
  margin-bottom: var(--space-5);
}

/* --- form plugins (Contact Form 7, WPForms) pasted in via shortcode --- */

.pz-contact-form input[type="text"],
.pz-contact-form input[type="email"],
.pz-contact-form input[type="tel"],
.pz-contact-form input[type="url"],
.pz-contact-form textarea,
.pz-contact-form select {
  width: 100%;
  max-width: 100%;
}

.pz-contact-form .wpcf7-submit,
.pz-contact-form .wpforms-submit,
.pz-contact-form input[type="submit"] {
  height: 54px;
  padding: 0 26px;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-pill);
  background: var(--surface-hot);
  color: var(--text-on-hot);
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: var(--text-sm);
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  box-shadow: var(--shadow-hot);
  transition: transform var(--dur-fast) var(--ease-out), background var(--dur-base) var(--ease-out);
}

.pz-contact-form .wpcf7-submit:hover,
.pz-contact-form .wpforms-submit:hover,
.pz-contact-form input[type="submit"]:hover {
  transform: var(--lift-hover);
  background: var(--surface-hot-deep);
}

@media (max-width: 980px) {
  .pz-contact-grid { grid-template-columns: 1fr; }
}

/* ===============================================================
   13c. BLOG — index, cards, single post
   =============================================================== */

.pz-blog-title {
  font-size: var(--text-display);
  line-height: var(--text-display-lh);
  text-transform: uppercase;
  margin: 8px 0 0;
}

.pz-posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-5);
}

/* Two wide cards on the homepage, side by side. */
.pz-posts--featured {
  position: relative;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.pz-post-card {
  display: flex;
  flex-direction: column;
  background: var(--surface-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--dur-base) var(--ease-out),
    box-shadow var(--dur-base) var(--ease-out);
}

.pz-post-card:hover { transform: var(--lift-hover); box-shadow: var(--shadow-lg); }

/* The image, or a flat brand panel when the post has no featured image. */
.pz-post-thumb {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  text-decoration: none;
}

.pz-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pz-post-card--large .pz-post-thumb { aspect-ratio: 3 / 2; }

.pz-post-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: var(--card-pad-lg);
  flex: 1;
}

.pz-post-title {
  font-size: var(--text-section);
  line-height: var(--text-section-lh);
  text-transform: uppercase;
  margin: 0;
}

.pz-post-card--large .pz-post-title { font-size: var(--text-title); }

.pz-post-title a { color: var(--text-strong); text-decoration: none; }
.pz-post-title a:hover { color: var(--text-hot); text-decoration: none; }

.pz-post-excerpt { color: var(--text-body); font-size: var(--text-sm); }

.pz-post-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 4px;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.pz-featured-more {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: var(--space-6);
}

/* --- pagination --- */

.pagination { margin-top: var(--space-8); }

.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  background: var(--surface-card);
  color: var(--text-strong);
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: var(--text-xs);
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: var(--shadow-xs);
  transition: transform var(--dur-fast) var(--ease-out), background var(--dur-base) var(--ease-out);
}

.pagination .page-numbers:hover { transform: var(--lift-hover); background: var(--peach-200); text-decoration: none; }

.pagination .page-numbers.current {
  background: var(--surface-hot);
  color: var(--text-on-hot);
  box-shadow: var(--shadow-hot);
}

.screen-reader-text + .nav-links { margin-top: 0; }

/* --- single post --- */

.pz-single-head-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  max-width: 60ch;
}

.pz-single-head-inner h1 {
  font-size: var(--text-display);
  line-height: var(--text-display-lh);
  text-transform: uppercase;
  margin: 0;
}

.pz-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: var(--text-xs);
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--text-hot);
  text-decoration: none;
}

.pz-back::before { content: "←"; }
.pz-back:hover { color: var(--orange-600); text-decoration: none; }

.pz-single-hero img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-block);
  box-shadow: var(--shadow-md);
}

.pz-single { max-width: 68ch; margin: 0 auto; }

/* Article prose is set larger than page prose — it is read, not scanned. */
.pz-entry--article { font-size: var(--text-lg); max-width: none; }

.pz-entry--article h2 {
  font-size: var(--text-title);
  margin-top: var(--space-10);
}

.pz-entry--article h3 { font-size: var(--text-section); margin-top: var(--space-8); }

.pz-entry--article > p + p { margin-top: var(--space-5); }

/* --- previous / next --- */

.pz-post-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-5);
}

.pz-post-nav-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: var(--card-pad-lg);
  border-radius: var(--radius-xl);
  background: var(--surface-card);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}

.pz-post-nav-link:hover { transform: var(--lift-hover); box-shadow: var(--shadow-lg); text-decoration: none; }

.pz-post-nav-link--next { text-align: right; align-items: flex-end; }

.pz-post-nav-title {
  font-family: var(--font-display);
  font-weight: var(--weight-black);
  font-size: var(--text-section);
  line-height: var(--text-section-lh);
  text-transform: uppercase;
  color: var(--text-strong);
}

/* --- end-of-post call to action --- */

.pz-post-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
  padding: var(--space-12) var(--card-pad-lg);
}

.pz-post-cta h2 {
  font-size: var(--text-display);
  line-height: var(--text-display-lh);
  text-transform: uppercase;
  color: var(--white);
  margin: 0;
}

@media (max-width: 760px) {
  .pz-post-nav-link--next { text-align: left; align-items: flex-start; }
}

/* ===============================================================
   14. ANIMATIONS
   =============================================================== */

@keyframes pz-plop {
  0%   { transform: translate(-50%, -170%) scale(.4); opacity: 0; }
  62%  { transform: translate(-50%, -50%) scale(1.22); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}

@keyframes pz-rise {
  0%   { transform: translateY(16px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes pz-fade {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes pz-cue {
  0%   { transform: translateY(0); opacity: .35; }
  50%  { transform: translateY(8px); opacity: 1; }
  100% { transform: translateY(0); opacity: .35; }
}

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

/* ===============================================================
   15. RESPONSIVE
   =============================================================== */

@media (max-width: 980px) {
  .pz-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: var(--space-6);
    padding-bottom: var(--space-12);
  }

  .pz-hero-art { min-height: 0; order: -1; }
  .pz-hero-disc { width: min(320px, 76%); }

  .pz-kitchen-head { grid-template-columns: 1fr; }
  .pz-kitchen-art { justify-self: start; max-width: 320px; }

  .pz-summary { position: static; flex: 1 1 100%; }
}

@media (max-width: 760px) {
  .pz-nav-links { display: none; }

  .pz-tabs { overflow-x: auto; }
  .pz-tab { flex: 0 0 auto; }

  .pz-tray { grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); }

  .pz-receipt { flex-direction: column; gap: var(--space-4); }

  .pz-footer-cols { gap: var(--space-8); }
}

@media (max-width: 520px) {
  .pz-hero-actions .pz-btn,
  .pz-dialog-actions .pz-btn { flex: 1 1 100%; }

  .pz-order-preview { gap: var(--space-4); }
  .pz-order-snapshot { margin: 0 auto; }
}
