@charset "UTF-8";

/* src/styles.scss */
:root {
  --brand-navy: #16244a;
  --brand-navy-2: #1b2a52;
  --brand-blue: #2b5ba8;
  --brand-blue-2: #3a6fc4;
  --brand-blue-ink: #234a86;
  --bg: #eef1f6;
  --surface: #ffffff;
  --surface-2: #f7f9fc;
  --border: #e4e8f0;
  --border-2: #eef1f6;
  --ink: #172038;
  --text: #3a4660;
  --muted: #7c8aa5;
  --selected: #eaf1fb;
  --selected-bd: #cdddf6;
  --success: #1aa672;
  --success-bg: #e6f5ee;
  --warn: #a65a1e;
  --warn-bg: #fdeee3;
  --rose: #a8295a;
  --rose-bg: #fde9ef;
  --cat-blue-bg: #e7eefb;
  --cat-blue: #234a86;
  --cat-green-bg: #e6f5ee;
  --cat-green: #147551;
  --cat-amber-bg: #fdeee3;
  --cat-amber: #a65a1e;
  --cat-violet-bg: #f0eafb;
  --cat-violet: #5b3da8;
  --cat-teal-bg: #e9f3f6;
  --cat-teal: #1f6678;
  --mono:
    "JetBrains Mono",
    ui-monospace,
    monospace;
  --r: 12px;
  --r-lg: 18px;
  --r-xl: 24px;
  --shadow-sm: 0 1px 2px rgba(22, 36, 74, 0.06), 0 1px 3px rgba(22, 36, 74, 0.05);
  --shadow-md: 0 4px 16px rgba(22, 36, 74, 0.08), 0 2px 6px rgba(22, 36, 74, 0.05);
  --shadow-pop: 0 8px 28px rgba(22, 36, 74, 0.16);
  --shadow-hero: 0 12px 30px rgba(22, 36, 74, 0.22);
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}
html[data-theme=dark] {
  --bg: #0c1326;
  --surface: #121b33;
  --surface-2: #0f1830;
  --border: #22304f;
  --border-2: #1a2742;
  --ink: #eef2fb;
  --text: #b7c2da;
  --muted: #7e8cab;
  --selected: #16294b;
  --selected-bd: #27437a;
  --success: #34d39e;
  --success-bg: #13362a;
  --warn: #e8b184;
  --warn-bg: #3a2716;
  --rose: #f09bbd;
  --rose-bg: #3a1a28;
  --cat-blue-bg: #1a2c4f;
  --cat-blue: #9bc0f5;
  --cat-green-bg: #13362a;
  --cat-green: #7fd6ad;
  --cat-amber-bg: #3a2716;
  --cat-amber: #e8b184;
  --cat-violet-bg: #2a2148;
  --cat-violet: #bda3f0;
  --cat-teal-bg: #15303a;
  --cat-teal: #8fc9d9;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.4);
  --shadow-pop: 0 10px 30px rgba(0, 0, 0, 0.55);
  --shadow-hero: 0 12px 30px rgba(0, 0, 0, 0.5);
}
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: var(--bg);
}
body {
  font-family:
    "Plus Jakarta Sans",
    system-ui,
    sans-serif;
  -webkit-font-smoothing: antialiased;
  color: var(--text);
  background: var(--bg);
  overscroll-behavior-y: none;
}
app-root {
  display: block;
  min-height: 100dvh;
  background: var(--bg);
}
button,
input,
select,
textarea {
  font-family: inherit;
}
.noscroll::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.noscroll {
  scrollbar-width: none;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 36px;
  padding: 0 14px;
  border-radius: 10px;
  cursor: pointer;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
}
.edit-label {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}
.edit-input {
  height: 44px;
  padding: 0 13px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  outline: none;
}
.edit-input:focus {
  border-color: var(--brand-blue);
}
.qty-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-pill {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 12px;
  padding: 4px 11px;
  border-radius: 999px;
}
.pref-select {
  width: 100%;
  height: 48px;
  padding: 0 42px 0 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
  appearance: none;
  cursor: pointer;
}
.pref-chevron {
  position: absolute;
  right: 15px;
  top: 15px;
  color: var(--muted);
  pointer-events: none;
}
.meas-input {
  width: 88px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  outline: none;
}
.meas-input.filled {
  background: var(--selected);
  border-color: var(--selected-bd);
  color: var(--brand-blue-ink);
}
.meas-input:focus {
  border-color: var(--brand-blue);
  color: var(--ink);
}
.meas-cell {
  width: 100%;
  font-size: 16px;
  border-radius: 9px;
}
.oc-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(12, 19, 38, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.oc-modal {
  width: 460px;
  max-width: 100%;
  max-height: 86vh;
  overflow-y: auto;
  background: var(--surface);
  border-radius: 16px;
  box-shadow: var(--shadow-pop);
  padding: 20px;
  animation: ocPop 0.18s ease-out;
}
.oc-modal-cancel {
  display: block;
  width: 100%;
  height: 40px;
  margin-top: 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-weight: 700;
  font-size: 13.5px;
  cursor: pointer;
}
.pf-input {
  width: 100%;
  height: 44px;
  margin-top: 6px;
  padding: 0 13px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  outline: none;
}
.pf-input:focus {
  border-color: var(--brand-blue);
}
.pf-input:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.webrow {
  transition: background 0.12s;
}
.webrow:hover {
  background: var(--surface-2);
}
@keyframes ocFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes ocSlideIn {
  from {
    opacity: 0;
    transform: translateX(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes ocPop {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes ocSlideUp {
  from {
    transform: translateY(40px);
  }
  to {
    transform: none;
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
