@import "https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Space+Grotesk:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500;600&display=swap";
/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --paper: #eee7d8;
  --paper-dark: #e4dac4;
  --ink: #26231c;
  --ink-soft: #5c5646;
  --olive: #3f4a2e;
  --olive-light: #5c6b42;
  --yolk: #e8a33d;
  --tomato: #c1442e;
  --line: #c9bfa8;
  --card: #fbf8f0;
}

* {
  box-sizing: border-box;
}

html, body {
  padding: 0;
  margin: 0;
}

body {
  background: var(--paper);
  background-image: radial-gradient(circle at 1px 1px, #26231c0f 1px, #0000 0);
  background-size: 22px 22px;
  color: var(--ink);
  font-family: Space Grotesk, sans-serif;
  min-height: 100vh;
}

a {
  color: inherit;
}

.vf-wrap {
  max-width: 1040px;
  margin: 0 auto;
  padding: 32px 20px 60px;
}

.vf-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1040px;
  margin: 0 auto;
  padding: 20px 20px 0;
}

.vf-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.vf-logo-img {
  height: 75px;
  width: auto;
  display: block;
  transform: rotate(-5deg);
}

@media (width <= 479px) {
  .vf-logo-img {
    height: 55px;
  }
}

.vf-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  font-weight: 600;
}

.vf-nav a {
  text-decoration: none;
  border-bottom: 2px solid #0000;
  padding-bottom: 2px;
}

.vf-nav a:hover {
  border-color: var(--olive);
}

.vf-nav button {
  font-family: Space Grotesk, sans-serif;
  font-size: 13px;
  font-weight: 600;
  background: var(--ink);
  color: var(--paper);
  border: none;
  padding: 8px 14px;
  cursor: pointer;
}

.vf-nav .vf-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
}

.vf-loading-bar {
  height: 3px;
  width: 100%;
  background: var(--ink);
  transition: background .2s;
  margin-bottom: 36px;
}

.vf-loading-bar.pulsing {
  animation: 1.1s ease-in-out infinite vf-pulse;
}

@keyframes vf-pulse {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: .35;
  }
}

.vf-loading-bar.sweeping {
  background: linear-gradient(90deg, var(--ink) 0%, var(--olive-light) 50%, var(--ink) 100%);
  background-size: 200% 100%;
  animation: 1.2s linear infinite vf-sweep;
}

@keyframes vf-sweep {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.vf-hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  flex-wrap: wrap;
}

.vf-title {
  font-family: Bebas Neue, sans-serif;
  font-size: clamp(40px, 8vw, 84px);
  line-height: .85;
  letter-spacing: .5px;
  color: var(--ink);
  margin: 0;
}

.vf-title span {
  color: var(--tomato);
}

.vf-sub {
  font-size: 14px;
  color: var(--ink-soft);
  max-width: 360px;
  margin: 8px 0 0;
  line-height: 1.5;
}

.vf-stamp {
  font-family: Bebas Neue, sans-serif;
  font-size: 15px;
  letter-spacing: 2px;
  color: var(--olive);
  border: 2.5px solid var(--olive);
  border-radius: 50%;
  width: 104px;
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(-9deg);
  flex-shrink: 0;
  position: relative;
  opacity: .9;
}

.vf-stamp:before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px dashed var(--olive);
  border-radius: 50%;
}

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

@media (width <= 820px) {
  .vf-grid {
    grid-template-columns: 1fr;
  }
}

.vf-panel {
  background: var(--card);
  border: 1.5px solid var(--ink);
  padding: 22px 22px 26px;
  position: relative;
}

.vf-panel-label {
  font-family: IBM Plex Mono, monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.vf-panel-label:after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.vf-field {
  margin-bottom: 22px;
}

.vf-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}

.vf-input {
  width: 100%;
  border: 1.5px solid var(--ink);
  background: var(--paper);
  padding: 11px 12px;
  font-family: Space Grotesk, sans-serif;
  font-size: 14px;
  color: var(--ink);
  outline: none;
}

.vf-input:focus {
  border-color: var(--tomato);
}

.vf-hint {
  font-size: 11px;
  color: var(--ink-soft);
  margin-top: 6px;
}

.vf-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.vf-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--olive);
  color: var(--paper);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 10px 6px 12px;
  border-radius: 3px;
}

.vf-chip button {
  background: none;
  border: none;
  color: var(--paper);
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  opacity: .75;
  padding: 0;
}

.vf-chip button:hover {
  opacity: 1;
}

.vf-suggest {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.vf-suggest button {
  font-family: Space Grotesk, sans-serif;
  font-size: 12px;
  background: none;
  border: 1px dashed var(--line);
  color: var(--ink-soft);
  padding: 5px 10px;
  border-radius: 3px;
  cursor: pointer;
}

.vf-suggest button:hover {
  border-color: var(--olive);
  color: var(--olive);
}

.vf-equip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}

.vf-equip-grid.cols-5 {
  grid-template-columns: repeat(5, 1fr);
}

@media (width <= 420px) {
  .vf-equip-grid, .vf-equip-grid.cols-5 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.vf-equip {
  border: 1.5px solid var(--line);
  background: var(--paper);
  padding: 12px 8px 10px;
  text-align: center;
  cursor: pointer;
  transition: border-color .12s, background .12s;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.vf-equip svg {
  width: 26px;
  height: 26px;
  stroke: var(--ink-soft);
  fill: none;
  stroke-width: 1.6px;
  margin-bottom: 6px;
}

.vf-equip span {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-soft);
}

.vf-equip.active {
  border-color: var(--olive);
  background: #e9e5d3;
}

.vf-equip.active svg {
  stroke: var(--olive);
}

.vf-equip.active span {
  color: var(--olive);
}

.vf-row {
  display: flex;
  gap: 18px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.vf-row > div {
  flex: 1;
  min-width: 160px;
}

.vf-time-val {
  font-family: IBM Plex Mono, monospace;
  font-size: 22px;
  font-weight: 600;
  color: var(--olive);
}

input[type="range"] {
  width: 100%;
  accent-color: var(--olive);
  margin-top: 8px;
}

.vf-stepper {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}

.vf-stepper button {
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--ink);
  background: var(--paper);
  font-size: 16px;
  cursor: pointer;
  color: var(--ink);
}

.vf-stepper button:hover {
  background: var(--yolk);
}

.vf-stepper-val {
  font-family: IBM Plex Mono, monospace;
  font-size: 20px;
  font-weight: 600;
  min-width: 22px;
  text-align: center;
}

.vf-btn {
  background: var(--tomato);
  color: var(--paper);
  border: none;
  font-family: Bebas Neue, sans-serif;
  font-size: 20px;
  letter-spacing: 1.5px;
  padding: 14px;
  cursor: pointer;
  transition: transform 80ms, background .12s;
}

.vf-btn:hover:not(:disabled) {
  background: #a6371f;
}

.vf-btn:active:not(:disabled) {
  transform: scale(.99);
}

.vf-btn:disabled {
  background: var(--line);
  color: var(--ink-soft);
  cursor: not-allowed;
}

.vf-btn-outline {
  background: none;
  color: var(--olive);
  border: 1.5px solid var(--olive);
  font-family: Space Grotesk, sans-serif;
  font-weight: 600;
  font-size: 13px;
  padding: 9px 14px;
  cursor: pointer;
}

.vf-btn-outline:hover {
  background: var(--olive);
  color: var(--paper);
}

.vf-btn-block {
  width: 100%;
  margin-top: 14px;
}

.vf-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--ink-soft);
  padding: 40px 10px;
}

.vf-empty svg {
  width: 46px;
  height: 46px;
  stroke: var(--line);
  fill: none;
  stroke-width: 1.4px;
  margin-bottom: 14px;
}

.vf-empty p {
  font-size: 13px;
  max-width: 220px;
  line-height: 1.6;
  margin: 0;
}

.vf-loading {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 40px 10px;
}

.vf-dial {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 3px solid var(--line);
  border-top-color: var(--olive);
  animation: .9s linear infinite vf-spin;
}

@keyframes vf-spin {
  to {
    transform: rotate(360deg);
  }
}

.vf-loading p {
  font-family: IBM Plex Mono, monospace;
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 1px;
}

.vf-error {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 40px 20px;
  text-align: center;
}

.vf-error strong {
  color: var(--tomato);
  font-size: 14px;
}

.vf-error p {
  font-size: 12px;
  color: var(--ink-soft);
  margin: 0;
}

.vf-ticket {
  background: var(--card);
  border: 1.5px dashed var(--ink);
  font-family: IBM Plex Mono, monospace;
  color: var(--ink);
  padding: 22px 20px 26px;
  position: relative;
}

.vf-ticket-jag {
  position: absolute;
  left: 0;
  right: 0;
  height: 9px;
  background-image: radial-gradient(circle at 50% 100%, transparent 5px, var(--card) 5.5px);
  background-size: 14px 18px;
  background-repeat: repeat-x;
}

.vf-ticket-jag.top {
  top: -9px;
  transform: rotate(180deg);
}

.vf-ticket-jag.bot {
  bottom: -9px;
}

.vf-ticket-head {
  text-align: center;
  border-bottom: 1px dashed var(--ink);
  padding-bottom: 14px;
  margin-bottom: 14px;
}

.vf-ticket-title {
  font-family: Bebas Neue, monospace;
  font-size: 26px;
  letter-spacing: 1px;
  color: var(--olive);
  line-height: 1.1;
  margin: 0 0 6px;
}

.vf-ticket-meta {
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: .5px;
}

.vf-ticket-section-title {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 16px 0 8px;
}

.vf-ing-line {
  display: flex;
  align-items: baseline;
  font-size: 13px;
  margin-bottom: 5px;
}

.vf-ing-name {
  white-space: nowrap;
}

.vf-ing-dots {
  flex: 1;
  border-bottom: 1px dotted var(--ink-soft);
  margin: 0 6px 3px;
}

.vf-ing-qty {
  white-space: nowrap;
  font-weight: 600;
}

.vf-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.vf-steps li {
  counter-increment: step;
  font-size: 13px;
  line-height: 1.55;
  margin-bottom: 10px;
  padding-left: 26px;
  position: relative;
}

.vf-steps li:before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid var(--olive);
  color: var(--olive);
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.vf-tips {
  border: 1px dashed var(--tomato);
  padding: 10px 12px;
  margin-top: 16px;
}

.vf-tips p {
  font-size: 12px;
  line-height: 1.6;
  margin: 0 0 6px;
  color: var(--ink);
}

.vf-tips p:last-child {
  margin-bottom: 0;
}

.vf-tips p:before {
  content: "→ ";
  color: var(--tomato);
  font-weight: 700;
}

.vf-ticket-foot {
  text-align: center;
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px dashed var(--ink);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--ink-soft);
  text-transform: uppercase;
}

.vf-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 14px;
  justify-content: center;
}

.vf-star {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 22px;
  color: var(--line);
  transition: color .1s, transform .1s;
  line-height: 1;
  padding: 2px;
}

.vf-star:hover {
  transform: scale(1.15);
}

.vf-star.filled {
  color: var(--yolk);
}

.vf-rating-avg {
  font-family: IBM Plex Mono, monospace;
  font-size: 11px;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 4px;
}

.vf-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vf-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1.5px solid var(--line);
  background: var(--card);
  padding: 12px 14px;
}

.vf-list-item h3 {
  font-family: Bebas Neue, sans-serif;
  font-size: 19px;
  margin: 0 0 2px;
  letter-spacing: .5px;
}

.vf-list-item p {
  font-size: 11px;
  color: var(--ink-soft);
  margin: 0;
  font-family: IBM Plex Mono, monospace;
}

.vf-list-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}

.vf-badge {
  font-family: IBM Plex Mono, monospace;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 7px;
  border: 1px solid var(--olive);
  color: var(--olive);
}

.vf-badge.public {
  background: var(--olive);
  color: var(--paper);
}

.vf-badge.tag {
  background: var(--yolk);
  color: #000;
  border-color: var(--yolk);
  font-weight: 600;
}

.vf-fav-btn {
  background: none;
  border: 1.5px solid var(--line);
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vf-fav-btn:hover {
  border-color: var(--tomato);
  color: var(--tomato);
}

.vf-fav-btn.active {
  border-color: var(--tomato);
  color: var(--tomato);
  background: #f6e2dc;
}

.vf-modal-backdrop {
  position: fixed;
  inset: 0;
  background: #26231c8c;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.vf-modal {
  background: var(--card);
  border: 1.5px solid var(--ink);
  padding: 24px;
  max-width: 420px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
}

textarea.vf-input {
  resize: vertical;
  font-family: Space Grotesk, sans-serif;
}

select.vf-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink-soft) 50%), linear-gradient(135deg, var(--ink-soft) 50%, transparent 50%);
  background-position: calc(100% - 18px), calc(100% - 13px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.vf-login-box {
  max-width: 380px;
  margin: 60px auto;
  background: var(--card);
  border: 1.5px solid var(--ink);
  padding: 30px 26px;
}

.vf-login-box h1 {
  font-family: Bebas Neue, sans-serif;
  font-size: 34px;
  margin: 0 0 6px;
}

.vf-login-box p {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0 0 22px;
}

.vf-provider-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1.5px solid var(--ink);
  background: var(--paper);
  padding: 12px;
  margin-bottom: 10px;
  font-family: Space Grotesk, sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}

.vf-provider-btn:hover {
  background: var(--yolk);
}

.vf-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0;
  font-size: 11px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.vf-divider:before, .vf-divider:after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.vf-ad-slot {
  border: 1px dashed var(--line);
  background: repeating-linear-gradient(135deg, #0000, #0000 8px, #26231c08 8px 16px);
  color: var(--ink-soft);
  font-family: IBM Plex Mono, monospace;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px;
  min-height: 60px;
  margin: 22px 0;
}

@media print {
  body * {
    visibility: hidden;
  }

  .vf-ticket, .vf-ticket * {
    visibility: visible;
  }

  .vf-ticket {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    border: none;
    box-shadow: none;
  }

  .vf-ticket-jag {
    display: none;
  }

  .vf-no-print {
    display: none !important;
  }

  .vf-ticket, .vf-badge.tag {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  @page {
    size: 80mm auto;
    margin: 4mm;
  }
}


/*# sourceMappingURL=src_app_globals_b80590.css.map*/
