/* ========== Wanderlust Menu — Travel Journal CSS ========== */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Manrope', 'Helvetica Neue', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.wl-app {
  --bg: #F1E9D6;
  --bg2: #E8DEC4;
  --paper: #FBF6E9;
  --ink: #1A2233;
  --ink2: #3D4858;
  --sage: #7E9061;
  --sage-dark: #5C6E42;
  --sage-light: #A6B68A;
  --stamp: #B85339;
  --stamp-blue: #2C4A6A;
  --muted: #8F8675;
  --rule: #C9BFA6;
  --density: 1;
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.wl-app[data-theme="ink"] {
  background: var(--bg);
}

/* Faint paper texture */
.wl-app::before {
  content: '';
  position: fixed; inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 30%, rgba(0,0,0,0.025) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(0,0,0,0.02) 0%, transparent 50%),
    repeating-linear-gradient(0deg, transparent 0px, transparent 2px, rgba(0,0,0,0.008) 2px, rgba(0,0,0,0.008) 3px);
  pointer-events: none;
  z-index: 1;
}
.wl-app[data-theme="ink"]::before {
  background-image:
    radial-gradient(ellipse at 20% 30%, rgba(255,255,255,0.025) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(255,255,255,0.015) 0%, transparent 50%);
}

.wl-app > * { position: relative; z-index: 2; }

/* ========== HERO ========== */
.hero {
  padding: 56px 6vw 32px;
  position: relative;
  border-bottom: 1.5px dashed var(--rule);
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}
.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-brand {
  display: flex;
  align-items: center;
  gap: 24px;
}
.hero-est {
  font-family: 'JetBrains Mono', 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink2);
  margin-bottom: 4px;
}
.hero-title {
  font-family: 'Caveat', 'Brush Script MT', cursive;
  font-size: clamp(72px, 9vw, 128px);
  font-weight: 700;
  margin: 0;
  line-height: 0.85;
  color: var(--sage-dark);
  letter-spacing: -0.01em;
  transform: rotate(-2deg);
  transform-origin: left;
}
.wl-app[data-theme="ink"] .hero-title { color: var(--sage); }
.hero-sub {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--ink2);
  margin-top: 8px;
  letter-spacing: 0.02em;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-left: 1.5px dashed var(--rule);
  padding-left: 24px;
}
.hero-meta-row {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  color: var(--ink2);
}
.hero-meta-row span:last-child {
  color: var(--ink);
  font-weight: 600;
}

.hero-rule {
  margin: 32px 0 24px;
  color: var(--sage);
  opacity: 0.7;
}

.hero-blurb {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.5;
  color: var(--ink2);
  max-width: 720px;
  margin: 0;
  position: relative;
  padding: 0 8px;
}
.hero-quote-open, .hero-quote-close {
  font-family: 'Playfair Display', serif;
  font-size: 1.6em;
  color: var(--sage);
  line-height: 0;
  position: relative;
  top: 0.15em;
}

/* Postmarks (decorative) */
.hero-postmarks {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.postmark {
  position: absolute;
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  color: var(--stamp);
  opacity: 0.55;
}
.postmark--1 {
  top: 24px;
  right: 8vw;
  transform: rotate(-12deg);
}
.postmark-ring {
  width: 130px;
  height: 130px;
  border: 1.5px solid var(--stamp);
  border-radius: 50%;
  position: relative;
}
.postmark-ring::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px dashed var(--stamp);
  border-radius: 50%;
}
.postmark-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-align: center;
  padding: 0 12px;
  font-weight: 700;
}
.postmark--2 {
  top: 110px;
  right: 22vw;
  font-size: 11px;
  letter-spacing: 0.3em;
  font-weight: 700;
  padding: 4px 10px;
  border-top: 2px solid var(--stamp);
  border-bottom: 2px solid var(--stamp);
  transform: rotate(8deg);
  color: var(--stamp);
}

/* ========== STICKY STACK ========== */
.sticky-stack {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg) 85%, transparent 100%);
  padding-bottom: 8px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ========== CATEGORY NAV ========== */
.cat-nav {
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  background: var(--bg);
  margin-top: 0;
}
.cat-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 6vw;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.cat-nav-inner::-webkit-scrollbar { display: none; }

.cat-tab {
  appearance: none;
  background: transparent;
  border: none;
  border-right: 1px dashed var(--rule);
  color: var(--ink2);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 17px;
  padding: 18px 28px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  position: relative;
  letter-spacing: 0.01em;
}
.cat-tab:first-child { border-left: 1px dashed var(--rule); }
.cat-tab:hover {
  color: var(--ink);
  background: var(--bg2);
}
.cat-tab.is-active {
  color: var(--paper);
  background: var(--ink);
  font-weight: 600;
}
.cat-tab.is-active::after {
  content: '✦';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--stamp);
  font-size: 14px;
  background: var(--bg);
  width: 18px;
  text-align: center;
}

/* ========== FILTER BAR ========== */
.filter-bar {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 6vw 0;
}
.filter-row {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.filter-row + .filter-row { margin-top: 12px; }

.search {
  flex: 1;
  min-width: 280px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 999px;
  color: var(--ink2);
}
.search:focus-within {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--sage) 20%, transparent);
}
.search input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font: inherit;
  color: var(--ink);
  font-size: 14px;
}
.search input::placeholder { color: var(--muted); }
.search-clear {
  background: var(--ink);
  color: var(--paper);
  border: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lang {
  display: flex;
  gap: 2px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 3px;
  background: var(--paper);
}
.lang-btn {
  appearance: none;
  border: none;
  background: transparent;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--ink2);
  font-weight: 600;
}
.lang-btn.is-active {
  background: var(--ink);
  color: var(--paper);
}

.filter-row--allergens {
  gap: 12px;
}
.filter-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}
.allergens-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.allergen-toggle {
  appearance: none;
  border: 1px solid var(--rule);
  background: var(--paper);
  border-radius: 999px;
  padding: 5px 12px 5px 5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 12px;
  color: var(--ink2);
  font-family: inherit;
  transition: all 0.15s;
}
.allergen-toggle:hover {
  border-color: var(--ink2);
  color: var(--ink);
}
.allergen-toggle-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bg2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  font-weight: 700;
  color: var(--ink);
}
.allergen-toggle.is-on {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  text-decoration: line-through;
}
.allergen-toggle.is-on .allergen-toggle-dot {
  background: var(--stamp);
  color: var(--paper);
}
.allergen-clear {
  appearance: none;
  border: none;
  background: transparent;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--stamp);
  text-decoration: underline;
  cursor: pointer;
  padding: 5px 8px;
}

/* ========== MAIN ========== */
.menu-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 6vw 80px;
}

/* Category header */
.cat-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  margin: calc(48px * var(--density)) 0 24px;
  padding-bottom: 24px;
  border-bottom: 1.5px solid var(--ink);
  flex-wrap: wrap;
}
.cat-header-left {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.cat-header-marker {
  color: var(--sage);
  margin-top: 4px;
}
.cat-header-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.cat-header-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  margin: 0;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.cat-header-tag {
  font-family: 'Caveat', cursive;
  font-size: 26px;
  margin: 8px 0 0;
  color: var(--sage-dark);
}
.wl-app[data-theme="ink"] .cat-header-tag { color: var(--sage); }

.cat-header-right {
  max-width: 480px;
  flex: 1;
  min-width: 280px;
}

/* Section nav */
.sec-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}
.sec-chip {
  appearance: none;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 6px 14px 6px 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  color: var(--ink2);
  transition: all 0.15s;
}
.sec-chip:hover { color: var(--ink); border-color: var(--ink2); }
.sec-chip.is-active {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.sec-chip-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  background: var(--bg2);
  color: var(--ink);
  padding: 3px 6px;
  border-radius: 999px;
  font-weight: 700;
}
.sec-chip.is-active .sec-chip-num {
  background: var(--stamp);
  color: var(--paper);
}

/* Section header */
.menu-section {
  margin: calc(64px * var(--density)) 0 0;
  scroll-margin-top: 200px;
}
.sec-header {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--rule);
}
.sec-header-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--stamp);
  font-weight: 700;
  border: 1.5px solid var(--stamp);
  padding: 4px 8px;
  border-radius: 4px;
  flex-shrink: 0;
}
.sec-header-mid { flex: 1; }
.sec-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.sec-note {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 4px 0 0;
  text-transform: uppercase;
}
.sec-header-trail {
  color: var(--sage);
  opacity: 0.5;
  margin-bottom: 8px;
  display: none;
}
@media (min-width: 900px) {
  .sec-header-trail { display: block; }
}

/* Items grid */
.items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: calc(20px * var(--density)) 48px;
}

/* ========== ITEM ========== */
.item {
  appearance: none;
  background: transparent;
  border: none;
  text-align: left;
  font: inherit;
  color: inherit;
  padding: calc(14px * var(--density)) 0;
  cursor: pointer;
  position: relative;
  border-bottom: 1px dashed var(--rule);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.2s ease;
}
.item:hover {
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--sage) 8%, transparent), transparent);
  padding-left: 8px;
  padding-right: 8px;
}
.item:hover .item-name { color: var(--sage-dark); }
.wl-app[data-theme="ink"] .item:hover .item-name { color: var(--sage); }

.item-ribbon {
  position: absolute;
  top: -2px;
  right: 0;
  font-family: 'Caveat', cursive;
  font-size: 16px;
  color: var(--stamp);
  font-weight: 700;
  letter-spacing: 0.02em;
  transform: rotate(-3deg);
  background: var(--paper);
  padding: 0 6px;
  border-radius: 4px;
}

.item--hidden {
  opacity: 0.35;
  filter: grayscale(0.7);
}
.item--hidden::after {
  content: 'OCULTO POR ALÉRGENO';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-4deg);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--stamp);
  background: var(--paper);
  padding: 4px 12px;
  border: 1.5px solid var(--stamp);
  border-radius: 4px;
}

.item-head {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.item-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.005em;
  flex-shrink: 0;
  max-width: 70%;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.item-chili {
  color: var(--stamp);
  display: inline-flex;
}
.item-dots {
  flex: 1;
  border-bottom: 1.5px dotted var(--rule);
  transform: translateY(-4px);
}
.item-price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  text-align: right;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.price-label {
  font-size: 10px;
  color: var(--muted);
  margin-right: 4px;
}

.item-desc {
  font-family: 'Manrope', sans-serif;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink2);
  margin: 0;
  max-width: 92%;
  text-wrap: pretty;
}

.item-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 2px;
}
.item-allergens {
  display: flex;
  gap: 3px;
  flex-wrap: wrap;
}
.allergen-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  font-weight: 700;
  background: var(--bg2);
  color: var(--ink2);
  border-radius: 50%;
  cursor: help;
}
.allergen-more { width: auto; padding: 0 6px; border-radius: 999px; }

.item-tags {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 700;
}
.tag--green { background: var(--sage); color: var(--paper); }
.tag--amber { background: var(--stamp); color: var(--paper); }
.tag--ghost { background: transparent; border: 1px solid var(--rule); color: var(--muted); }

/* ========== MODAL — BOARDING PASS ========== */
.modal-scrim {
  position: fixed;
  inset: 0;
  background: color-mix(in srgb, var(--ink) 60%, transparent);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: scrimIn 0.2s ease-out;
}
@keyframes scrimIn { from { opacity: 0; } to { opacity: 1; } }

.boarding-pass {
  background: var(--paper);
  color: var(--ink);
  width: min(720px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3), 0 0 0 1px var(--rule);
  display: flex;
  flex-direction: column;
  animation: passIn 0.3s cubic-bezier(0.2, 0.8, 0.3, 1.1);
  position: relative;
}
@keyframes passIn {
  from { opacity: 0; transform: translateY(20px) rotate(-1deg); }
  to { opacity: 1; transform: translateY(0) rotate(0); }
}

.bp-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1.5px dashed var(--rule);
  background: var(--sage);
  color: var(--paper);
  border-radius: 12px 12px 0 0;
}
.bp-flight {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.15em;
  font-weight: 700;
  text-transform: uppercase;
}
.bp-airline {
  background: var(--paper);
  color: var(--sage-dark);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
}
.bp-divider { width: 24px; height: 1px; background: currentColor; opacity: 0.5; }
.bp-close {
  appearance: none;
  background: transparent;
  border: 1.5px solid var(--paper);
  color: var(--paper);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.bp-close:hover { background: var(--paper); color: var(--sage-dark); }

.bp-body {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 0;
  padding: 0;
}
@media (max-width: 640px) {
  .bp-body { grid-template-columns: 1fr; }
}

.bp-main {
  padding: 32px 32px 32px;
}
.bp-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.bp-name {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.bp-chili { color: var(--stamp); }
.bp-desc {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink2);
  margin: 0 0 24px;
  text-wrap: pretty;
}
.bp-section {
  margin-bottom: 24px;
  padding-top: 16px;
  border-top: 1px dashed var(--rule);
}
.bp-extras {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bp-extras li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  padding: 6px 0;
  border-bottom: 1px dotted var(--rule);
}
.bp-extra-price {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  color: var(--sage-dark);
}
.wl-app[data-theme="ink"] .bp-extra-price { color: var(--sage); }
.bp-allergens {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.bp-allergen {
  font-size: 11px;
  background: var(--bg2);
  color: var(--ink);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 500;
}

.bp-stub {
  background: var(--bg2);
  padding: 32px 24px;
  border-left: 2px dashed var(--rule);
  border-radius: 0 0 12px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.bp-stub::before, .bp-stub::after {
  content: '';
  position: absolute;
  left: -10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--bg);
}
.bp-stub::before { top: -9px; }
.bp-stub::after { bottom: -9px; }

@media (max-width: 640px) {
  .bp-stub { border-left: none; border-top: 2px dashed var(--rule); }
  .bp-stub::before, .bp-stub::after {
    left: 50%; transform: translateX(-50%);
    top: -9px; right: auto;
  }
  .bp-stub::after { display: none; }
}

.bp-stamps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.stamp {
  width: 72px; height: 72px;
  border: 2px solid var(--c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.stamp::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px dashed var(--c);
  border-radius: 50%;
}
.stamp-inner {
  font-family: 'Caveat', cursive;
  font-size: 16px;
  font-weight: 700;
  color: var(--c);
  text-align: center;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bp-price-block {
  background: var(--paper);
  padding: 16px;
  border-radius: 8px;
  border: 1.5px solid var(--ink);
}
.bp-price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
}
.bp-price-tag {
  font-size: 11px;
  background: var(--ink);
  color: var(--paper);
  padding: 2px 6px;
  border-radius: 3px;
  margin-right: 6px;
  font-weight: 700;
}
.bp-price-multi { display: flex; flex-direction: column; gap: 6px; }
.bp-price-multi .bp-price { font-size: 18px; }

.bp-barcode {
  display: flex;
  gap: 1px;
  align-items: center;
  height: 36px;
  margin: 4px 0;
}
.bp-barcode span {
  display: block;
  height: 100%;
  background: var(--ink);
}
.bp-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-align: center;
}

/* ========== EMPTY ========== */
.empty-state {
  text-align: center;
  padding: 80px 20px;
  color: var(--muted);
}
.empty-state svg { color: var(--sage); margin-bottom: 16px; }
.empty-state p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 20px;
  margin: 0 0 16px;
}
.empty-state button {
  appearance: none;
  background: var(--ink);
  color: var(--paper);
  border: none;
  padding: 10px 24px;
  border-radius: 999px;
  cursor: pointer;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
}

/* ========== FOOTER ========== */
.wl-footer {
  border-top: 1.5px solid var(--ink);
  padding: 48px 6vw 32px;
  background: var(--bg2);
  margin-top: 80px;
}
.wl-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 720px) {
  .wl-footer-inner { grid-template-columns: 1fr; }
}
.footer-left {
  display: flex;
  gap: 16px;
  align-items: center;
}
.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
}
.footer-loc {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
.footer-h {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.footer-langs {
  font-size: 14px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.footer-langs span:nth-child(even) { color: var(--muted); }
.footer-social {
  font-family: 'Caveat', cursive;
  font-size: 24px;
  color: var(--sage-dark);
}
.wl-app[data-theme="ink"] .footer-social { color: var(--sage); }

.footer-stamp {
  max-width: 1280px;
  margin: 32px auto 0;
  border-top: 1px dashed var(--rule);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.footer-stampline { color: var(--sage); opacity: 0.6; }
.footer-note {
  font-family: 'Caveat', cursive;
  font-size: 22px;
  color: var(--ink2);
  letter-spacing: 0.02em;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 720px) {
  .hero { padding: 40px 5vw 24px; }
  .hero-meta { border-left: none; padding-left: 0; border-top: 1.5px dashed var(--rule); padding-top: 16px; }
  .cat-tab { font-size: 14px; padding: 14px 18px; }
  .items-grid { grid-template-columns: 1fr; gap: 4px; }
  .postmark--1 { right: 4vw; }
  .postmark--2 { display: none; }
  .cat-header-right { width: 100%; }
  .sec-nav { justify-content: flex-start; }
  .bp-name { font-size: 24px; }
  .bp-main { padding: 24px 20px; }
}
