:root {
  --ink: #17211b;
  --muted: #748079;
  --line: #e8ece8;
  --canvas: #f5f7f4;
  --card: #ffffff;
  --green: #1f6a4a;
  --green-dark: #174f39;
  --green-soft: #e6f1eb;
  --orange: #e98236;
  --orange-soft: #fff0e3;
  --blue: #4f75bd;
  --blue-soft: #eaf0fb;
  --purple: #8467af;
  --purple-soft: #f0ebf7;
  --danger: #c84a4a;
  --shadow: 0 18px 45px rgba(25, 46, 34, 0.08);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.app-shell {
  min-height: 100vh;
}

.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 20;
  display: flex;
  width: 248px;
  flex-direction: column;
  padding: 28px 20px 22px;
  color: #fff;
  background:
    radial-gradient(circle at 0 0, rgba(128, 186, 151, 0.19), transparent 34%),
    #17261e;
}

.sidebar-close,
.sidebar-overlay {
  display: none;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 8px 44px;
  color: #fff;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 12px;
  color: #173e2b;
  background: #a9d6bb;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 800;
}

.brand strong,
.brand small,
.sidebar-footer strong,
.sidebar-footer small {
  display: block;
}

.brand strong {
  font-family: "Manrope", sans-serif;
  font-size: 17px;
}

.brand small,
.sidebar-footer small {
  margin-top: 3px;
  color: #95a59b;
  font-size: 11px;
}

.nav-menu {
  display: grid;
  gap: 8px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 13px 15px;
  border: 0;
  border-radius: 12px;
  color: #9daaa2;
  background: transparent;
  text-align: left;
  font-weight: 600;
  transition: 0.2s ease;
}

.nav-item:hover,
.nav-item.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
}

.nav-item.active {
  box-shadow: inset 3px 0 #9dd1af;
}

.nav-icon {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  font-size: 18px;
}

.sidebar-card {
  margin-top: auto;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  color: #d8e0da;
  background: rgba(255, 255, 255, 0.045);
}

.sidebar-card-icon {
  display: grid;
  width: 24px;
  height: 24px;
  margin-bottom: 12px;
  place-items: center;
  border-radius: 50%;
  color: #193c2b;
  background: #9bc8aa;
  font-weight: 700;
}

.sidebar-card strong {
  font-size: 12px;
}

.sidebar-card p {
  margin: 6px 0 0;
  color: #8fa096;
  font-size: 11px;
  line-height: 1.55;
}

.sidebar-footer {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 20px;
  padding: 18px 8px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar-footer strong {
  font-size: 12px;
}

.avatar {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: #244532;
  background: #d9e9de;
  font-size: 11px;
  font-weight: 700;
}

.main-content {
  min-height: 100vh;
  margin-left: 248px;
  padding: 32px 38px 48px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.eyebrow {
  margin: 0 0 6px;
  color: #859088;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.topbar h1,
.welcome-card h2,
.panel h2,
.modal h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
}

.topbar h1 {
  font-size: clamp(23px, 3vw, 30px);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.button,
.icon-button {
  border: 0;
  border-radius: 11px;
  font-weight: 700;
  transition: 0.2s ease;
}

.button {
  padding: 11px 16px;
  font-size: 12px;
}

.button:hover,
.icon-button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: #fff;
  background: var(--green);
  box-shadow: 0 8px 18px rgba(31, 106, 74, 0.2);
}

.button.primary:hover {
  background: var(--green-dark);
}

.button.secondary {
  color: var(--green);
  border: 1px solid #cad8cf;
  background: #fff;
}

.button.ghost {
  color: #66726b;
  background: #eef1ee;
}

.button.danger {
  color: #fff;
  background: var(--danger);
}

.icon-button {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  color: #56635b;
  border: 1px solid #dce3de;
  background: #fff;
  font-size: 18px;
}

.mobile-menu {
  display: none;
}

.topbar-title {
  min-width: 0;
}

.page {
  display: none;
}

.page.active {
  display: block;
  animation: fade-in 0.25s ease;
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(4px); }
}

.welcome-card {
  position: relative;
  display: flex;
  min-height: 164px;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px 36px;
  border-radius: var(--radius);
  color: #fff;
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.11), transparent 26%),
    linear-gradient(120deg, #1d5038, #183f2e);
  box-shadow: var(--shadow);
}

.welcome-card::after {
  position: absolute;
  right: 21%;
  bottom: -90px;
  width: 220px;
  height: 220px;
  border: 32px solid rgba(255, 255, 255, 0.035);
  border-radius: 50%;
  content: "";
}

.welcome-card h2 {
  margin-top: 14px;
  font-size: 25px;
}

.welcome-card p {
  margin: 8px 0 0;
  color: #b8cabf;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 9px;
  border-radius: 20px;
  color: #c4d8ca;
  background: rgba(255, 255, 255, 0.08);
  font-size: 10px;
  font-weight: 600;
}

.status-pill span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #85d9a4;
  box-shadow: 0 0 0 3px rgba(133, 217, 164, 0.15);
}

.welcome-art {
  position: relative;
  z-index: 2;
  width: 230px;
  height: 120px;
}

.shirt {
  position: absolute;
  display: grid;
  width: 86px;
  height: 92px;
  place-items: center;
  clip-path: polygon(24% 5%, 38% 0, 62% 0, 76% 5%, 100% 24%, 84% 43%, 76% 35%, 76% 100%, 24% 100%, 24% 35%, 16% 43%, 0 24%);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.shirt-one {
  top: 19px;
  left: 0;
  z-index: 1;
  color: #70897a;
  background: #cbd9d0;
  transform: rotate(-8deg);
}

.shirt-two {
  top: 7px;
  left: 67px;
  z-index: 3;
  color: #758a7e;
  background: #f0f2ec;
}

.shirt-three {
  top: 20px;
  left: 134px;
  z-index: 2;
  color: #293c31;
  background: #354a3d;
  transform: rotate(8deg);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.metric-card {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 15px;
  padding: 21px;
  border: 1px solid #edf0ed;
  border-radius: 16px;
  background: var(--card);
  box-shadow: 0 10px 26px rgba(25, 46, 34, 0.04);
}

.metric-icon {
  display: grid;
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  font-size: 19px;
  font-weight: 700;
}

.metric-icon.green { color: var(--green); background: var(--green-soft); }
.metric-icon.orange { color: var(--orange); background: var(--orange-soft); }
.metric-icon.blue { color: var(--blue); background: var(--blue-soft); }
.metric-icon.purple { color: var(--purple); background: var(--purple-soft); }

.metric-card p {
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.metric-card h3 {
  margin: 5px 0 3px;
  font-family: "Manrope", sans-serif;
  font-size: 25px;
}

.metric-card span {
  color: #9aa39d;
  font-size: 9px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.panel {
  padding: 24px;
  border: 1px solid #e9edea;
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 0 10px 30px rgba(25, 46, 34, 0.035);
}

.panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.panel h2 {
  font-size: 16px;
}

.soft-label {
  padding: 5px 9px;
  border-radius: 12px;
  color: var(--green);
  background: var(--green-soft);
  font-size: 9px;
  font-weight: 700;
}

.text-button {
  padding: 0;
  border: 0;
  color: var(--green);
  background: transparent;
  font-size: 10px;
  font-weight: 700;
}

.stock-bars {
  display: grid;
  gap: 14px;
}

.stock-bar-row {
  display: grid;
  grid-template-columns: 80px 1fr 32px;
  align-items: center;
  gap: 12px;
}

.stock-bar-label,
.stock-bar-value {
  font-size: 10px;
  font-weight: 600;
}

.stock-bar-value {
  text-align: right;
}

.bar-track {
  height: 8px;
  overflow: hidden;
  border-radius: 10px;
  background: #eef1ee;
}

.bar-fill {
  height: 100%;
  border-radius: inherit;
  background: var(--green);
}

.low-stock-list {
  display: grid;
  gap: 12px;
}

.low-stock-item {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 11px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eff2f0;
}

.low-stock-item:last-child {
  padding-bottom: 0;
  border: 0;
}

.color-dot {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.88);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
  font-size: 9px;
  font-weight: 700;
}

.low-stock-item strong {
  display: block;
  overflow: hidden;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.low-stock-item small {
  color: var(--muted);
  font-size: 9px;
}

.stock-count {
  padding: 5px 8px;
  border-radius: 9px;
  color: var(--danger);
  background: #fcecec;
  font-size: 10px;
  font-weight: 700;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

th {
  padding: 10px 12px;
  color: #929b95;
  border-bottom: 1px solid #e9edea;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

td {
  padding: 13px 12px;
  color: #536058;
  border-bottom: 1px solid #f0f2f0;
  font-size: 10px;
}

tbody tr:last-child td {
  border-bottom: 0;
}

td strong {
  color: var(--ink);
}

.transaction-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 8px;
  border-radius: 9px;
  font-weight: 700;
}

.transaction-badge.in {
  color: var(--green);
  background: var(--green-soft);
}

.transaction-badge.out {
  color: #b25447;
  background: #fbecea;
}

.transaction-badge.adjust {
  color: #7253a0;
  background: var(--purple-soft);
}

.toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
}

.search-box {
  display: flex;
  min-width: 260px;
  flex: 1;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  border: 1px solid #dde4df;
  border-radius: 10px;
  color: #818d85;
  background: #fafbfa;
}

.search-box input {
  width: 100%;
  padding: 10px 0;
  border: 0;
  outline: 0;
  background: transparent;
}

.toolbar select,
.form-field input,
.form-field select,
.form-field textarea {
  border: 1px solid #dce3de;
  border-radius: 10px;
  outline: none;
  background: #fff;
}

.toolbar select {
  padding: 10px 34px 10px 12px;
  color: #5d6961;
}

.record-count {
  min-width: 76px;
  color: #8c9690;
  font-size: 11px;
  text-align: right;
}

.product-grid {
  overflow: hidden;
  border: 1px solid #e5eae6;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(25, 46, 34, 0.04);
}

.product-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 96px;
  margin: 0 18px;
  padding: 15px 24px 15px 8px;
  border-bottom: 1px solid #edf1ee;
}

.product-card:last-child {
  border-bottom: 0;
}

.product-main {
  min-width: 0;
  flex: 1;
}

.product-main h3 {
  overflow: hidden;
  margin: 0 0 9px;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-main h3 a,
.product-info h3 a {
  color: inherit;
  text-decoration: none;
  pointer-events: none;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
}

.product-tags span {
  min-width: 72px;
  padding: 5px 12px;
  border-radius: 7px;
  color: var(--green);
  background: var(--green-soft);
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
}

.product-stock {
  display: flex;
  width: 125px;
  flex: 0 0 125px;
  align-items: flex-end;
  flex-direction: column;
  margin-left: auto;
  text-align: right;
}

.product-stock > small {
  display: block;
  color: var(--ink);
  font-size: 10px;
  white-space: nowrap;
}

.product-stock > strong {
  display: block;
  margin: -2px 0;
  font-family: "Manrope", sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.15;
}

.product-stock > span {
  display: block;
  color: var(--ink);
  font-size: 10px;
}

.product-stock > strong.low {
  color: var(--danger);
}

.transaction-table-panel {
  padding: 8px 16px;
}

.so-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 16px;
  padding: 20px 24px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(120deg, #315d48, #1c4532);
}

.so-intro h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 17px;
}

.so-intro .eyebrow {
  color: #b9d1c2;
}

.so-intro > p {
  max-width: 390px;
  margin: 0;
  color: #b9cbc0;
  font-size: 11px;
  line-height: 1.6;
}

.so-list {
  display: grid;
  gap: 10px;
}

.so-row {
  display: grid;
  grid-template-columns: minmax(230px, 1.5fr) 90px 120px minmax(180px, 1fr) auto;
  align-items: end;
  gap: 14px;
  padding: 16px;
  border: 1px solid #e5eae6;
  border-radius: 14px;
  background: #fff;
}

.so-product strong,
.so-product small {
  display: block;
}

.so-product strong {
  margin-bottom: 4px;
  font-size: 12px;
}

.so-product small {
  color: var(--muted);
  font-size: 9px;
}

.so-current {
  align-self: center;
  text-align: center;
}

.so-current small,
.so-field span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
}

.so-current strong {
  font-family: "Manrope", sans-serif;
  font-size: 20px;
}

.so-field input {
  width: 100%;
  padding: 10px 11px;
  border: 1px solid #dce3de;
  border-radius: 9px;
  outline: none;
}

.so-field input:focus {
  border-color: #73a88a;
  box-shadow: 0 0 0 3px rgba(31, 106, 74, 0.08);
}

.so-save {
  min-width: 105px;
}

.so-row-readonly {
  grid-template-columns: 1fr 110px auto;
  align-items: center;
}

.readonly-label {
  padding: 7px 10px;
  border-radius: 9px;
  color: #68746c;
  background: #eef1ef;
  font-size: 9px;
  font-weight: 700;
}

.users-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fff;
}

.users-heading h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
}

.users-heading > div > p:last-child {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.role-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.role-summary article {
  padding: 16px;
  border: 1px solid #e5eae6;
  border-radius: 13px;
  background: #fff;
}

.role-summary strong {
  font-size: 11px;
}

.role-summary p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 9px;
}

.user-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.user-card {
  padding: 18px;
  border: 1px solid #e5eae6;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(25, 46, 34, 0.04);
}

.user-card-top {
  display: flex;
  align-items: center;
  gap: 11px;
}

.user-card-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  color: var(--green);
  background: var(--green-soft);
  font-weight: 800;
}

.user-card h3 {
  margin: 0 0 3px;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
}

.user-card small {
  color: var(--muted);
  font-size: 9px;
}

.user-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 13px;
  border-top: 1px solid #eef1ef;
}

.user-permissions {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
}

.user-edit-button {
  width: 100%;
}

.user-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
}

.user-delete-form,
.user-delete-form .button {
  width: 100%;
}

.role-badge,
.status-badge {
  padding: 5px 8px;
  border-radius: 9px;
  font-size: 9px;
  font-weight: 700;
}

.role-badge {
  color: #7253a0;
  background: var(--purple-soft);
}

.status-badge.active {
  color: var(--green);
  background: var(--green-soft);
}

.status-badge.inactive {
  color: #a55449;
  background: #fbecea;
}

.empty-state {
  padding: 70px 20px;
  color: var(--muted);
  text-align: center;
}

.empty-state div {
  font-size: 35px;
}

.empty-state h3 {
  margin: 12px 0 5px;
  color: var(--ink);
}

.empty-state p {
  margin: 0;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  padding: 20px;
  place-items: center;
  background: rgba(12, 22, 16, 0.57);
  backdrop-filter: blur(3px);
}

.modal {
  width: min(580px, 100%);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 26px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 25px 70px rgba(6, 20, 12, 0.25);
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 22px;
}

.modal h2 {
  font-size: 21px;
}

.modal-close {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 9px;
  color: #758078;
  background: #f0f2f0;
  font-size: 22px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field > span {
  color: #59655e;
  font-size: 11px;
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 11px 12px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #73a88a;
  box-shadow: 0 0 0 3px rgba(31, 106, 74, 0.08);
}

.permission-field {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
  margin: 0;
  padding: 13px;
  border: 1px solid #dce3de;
  border-radius: 11px;
}

.permission-field.full {
  grid-column: 1 / -1;
}

.permission-field legend {
  padding: 0 5px;
  color: #59655e;
  font-size: 11px;
  font-weight: 700;
}

.permission-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border-radius: 9px;
  background: #f5f7f5;
  font-size: 10px;
  font-weight: 600;
}

.permission-option input {
  width: 15px;
  height: 15px;
  accent-color: var(--green);
}

.permission-field p {
  grid-column: 1 / -1;
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 9px;
}

.product-combobox {
  position: relative;
}

.product-combobox > input[type="search"] {
  padding-right: 42px;
}

.combobox-toggle {
  position: absolute;
  top: 4px;
  right: 4px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  border-radius: 8px;
  color: #657169;
  background: #f1f4f2;
  font-size: 17px;
}

.combobox-options {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  left: 0;
  z-index: 10;
  max-height: 230px;
  overflow-y: auto;
  padding: 6px;
  border: 1px solid #dce3de;
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 14px 35px rgba(25, 46, 34, 0.16);
}

.combobox-option {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 12px;
  width: 100%;
  padding: 10px 11px;
  border: 0;
  border-radius: 8px;
  color: var(--ink);
  background: transparent;
  text-align: left;
}

.combobox-option.hidden,
.combobox-option[hidden] {
  display: none !important;
}

.combobox-option:hover,
.combobox-option.active {
  background: var(--green-soft);
}

.combobox-option strong {
  overflow: hidden;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.combobox-option small {
  color: var(--muted);
  font-size: 9px;
}

.combobox-option .option-stock {
  grid-row: 1 / 3;
  grid-column: 2;
  align-self: center;
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
}

.stock-type-field {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.stock-type-field legend {
  margin-bottom: 7px;
  padding: 0;
  color: #59655e;
  font-size: 11px;
  font-weight: 700;
}

.stock-type-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  padding: 3px;
  border: 1px solid #dce3de;
  border-radius: 11px;
  background: #f4f7f5;
}

.stock-type-toggle label {
  cursor: pointer;
}

.stock-type-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.stock-type-toggle span {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border-radius: 8px;
  color: #647168;
  font-size: 10px;
  font-weight: 800;
  transition: 0.2s ease;
}

.stock-type-toggle input:checked + span {
  color: #fff;
  background: var(--green);
  box-shadow: 0 6px 15px rgba(31, 106, 74, 0.2);
}

.stock-type-toggle input:focus-visible + span {
  box-shadow: 0 0 0 3px rgba(31, 106, 74, 0.15);
}

.combobox-empty {
  margin: 0;
  padding: 13px 10px;
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 23px;
}

.form-error {
  margin: 13px 0 0;
  padding: 10px 12px;
  border-radius: 9px;
  color: #a33f3f;
  background: #fcecec;
  font-size: 11px;
}

.toast {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 80;
  display: flex;
  min-width: 285px;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid #cfe0d5;
  border-radius: 13px;
  background: #fff;
  box-shadow: var(--shadow);
}

.toast > span {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
}

.toast strong {
  font-size: 12px;
}

.toast p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.hidden {
  display: none !important;
}

@media (max-width: 1100px) {
  .metric-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .user-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .sidebar {
    z-index: 42;
    transform: translateX(-100%);
    transition: 0.25s ease;
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .sidebar-close {
    position: absolute;
    top: 18px;
    right: 16px;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    font-size: 22px;
  }

  .sidebar-overlay {
    position: fixed;
    inset: 0;
    z-index: 41;
    display: block;
    border: 0;
    opacity: 0;
    visibility: hidden;
    background: rgba(8, 18, 12, 0.46);
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }

  .sidebar-overlay.open {
    opacity: 1;
    visibility: visible;
  }

  .main-content {
    margin-left: 0;
    padding: 24px 20px 40px;
  }

  .mobile-menu {
    display: flex;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    padding: 0;
    border: 1px solid #dce3de;
    border-radius: 12px;
    color: var(--ink);
    background: #fff;
    box-shadow: 0 6px 16px rgba(25, 46, 34, 0.06);
  }

  .mobile-menu span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 4px;
    background: currentColor;
  }

  .topbar-title {
    margin-right: auto;
    margin-left: 14px;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .welcome-art {
    display: none;
  }

  .toolbar {
    flex-wrap: wrap;
  }

  .search-box {
    min-width: 100%;
  }

  .so-row {
    grid-template-columns: 1fr 90px 120px;
  }

  .so-row .so-note {
    grid-column: 1 / 3;
  }

  .role-summary {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 600px) {
  .topbar {
    align-items: center;
    flex-wrap: wrap;
  }

  .topbar-title h1 {
    font-size: 22px;
    line-height: 1.15;
  }

  .topbar-actions {
    width: 100%;
    margin-top: 16px;
  }

  .topbar-actions .button {
    flex: 1;
  }

  .metric-grid,
  .user-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    border-radius: 15px;
  }

  .product-card {
    min-height: 90px;
    margin: 0 12px;
    padding: 14px 14px 14px 2px;
    gap: 12px;
  }

  .product-main h3 {
    font-size: 14px;
  }

  .product-tags {
    gap: 5px;
  }

  .product-tags span {
    min-width: auto;
    padding: 4px 7px;
    font-size: 9px;
  }

  .product-stock {
    width: 94px;
    flex-basis: 94px;
  }

  .product-stock > small {
    font-size: 8px;
  }

  .product-stock > strong {
    font-size: 34px;
  }

  .users-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .users-heading .button {
    width: 100%;
  }

  .welcome-card {
    padding: 25px;
  }

  .welcome-card h2 {
    font-size: 21px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .so-intro {
    align-items: flex-start;
    flex-direction: column;
  }

  .so-row {
    grid-template-columns: 1fr 1fr;
  }

  .so-product,
  .so-row .so-note {
    grid-column: 1 / -1;
  }

  .so-save {
    width: 100%;
  }

  .form-field.full {
    grid-column: auto;
  }

  .panel {
    padding: 18px;
  }
}

a.button,
a.quick-stock-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.nav-item {
  text-decoration: none;
}

.nav-item > span {
  display: grid;
  width: 22px;
  place-items: center;
  font-size: 10px;
}

.logout-link {
  margin-left: auto;
  color: #a9b8ae;
  font-size: 10px;
  text-decoration: none;
}

.alert {
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: 11px;
  font-size: 11px;
  font-weight: 600;
}

.alert.success {
  color: var(--green);
  background: var(--green-soft);
}

.alert.error {
  color: #a33f3f;
  background: #fcecec;
}

.muted {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.auth-body {
  display: grid;
  min-height: 100vh;
  padding: 20px;
  place-items: center;
  background:
    radial-gradient(circle at 20% 10%, rgba(103, 166, 129, 0.24), transparent 28%),
    #14231b;
}

.auth-card {
  width: min(430px, 100%);
  padding: 34px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
}

.auth-card h1 {
  margin: 8px 0;
  font-family: "Manrope", sans-serif;
  font-size: 25px;
}

.auth-card > p:not(.eyebrow) {
  color: var(--muted);
}

.auth-brand {
  margin: 0 0 30px;
  color: var(--ink);
}

.setup-link {
  display: block;
  margin-top: 18px;
  color: var(--green);
  font-size: 10px;
  text-align: center;
}

.auth-card .install-pwa {
  width: 100%;
  margin-top: 12px;
}

.stack-form {
  display: grid;
  gap: 14px;
}

.stack-form label {
  display: grid;
  gap: 7px;
  color: #59655e;
  font-size: 11px;
  font-weight: 700;
}

.stack-form input,
.stack-form select {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid #dce3de;
  border-radius: 10px;
  outline: none;
}

.form-panel {
  max-width: 800px;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 8px;
}

.full {
  grid-column: 1 / -1;
}

#productFinder {
  margin: 0;
}

.users-layout,
.import-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  gap: 18px;
  align-items: start;
}

.users-layout .user-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.import-grid .panel {
  min-height: 230px;
}

.low-stock-item {
  grid-template-columns: 1fr auto;
}

.so-row-readonly {
  grid-template-columns: 1fr 120px auto;
}

@media (max-width: 980px) {
  .users-layout,
  .import-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .auth-card {
    padding: 25px;
  }

  .users-layout .user-grid {
    grid-template-columns: 1fr;
  }

  .form-actions {
    flex-direction: column-reverse;
  }
}

.request-page {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.request-page > *,
#requestCashierForm,
#requestCashierForm > * {
  min-width: 0;
  max-width: 100%;
}

.request-heading,
.request-heading-actions,
.request-decision-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.request-heading h2 {
  margin: 3px 0;
  font-family: "Manrope", sans-serif;
}

.request-list {
  display: grid;
  gap: 10px;
}

.request-card {
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto auto;
  align-items: center;
  gap: 18px;
  padding: 17px 19px;
  border: 1px solid #e2e9e4;
  border-radius: 14px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 7px 18px rgba(25, 46, 34, 0.035);
  text-decoration: none;
}

.request-card:hover {
  border-color: #b9d2c2;
  transform: translateY(-1px);
}

.request-card > div:first-child {
  display: grid;
  gap: 4px;
}

.request-card > div:first-child span,
.request-card-summary {
  color: var(--muted);
  font-size: 10px;
}

.request-card-summary {
  display: flex;
  gap: 14px;
}

.request-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 9px;
  border-radius: 20px;
  font-size: 9px;
  font-weight: 800;
  white-space: nowrap;
}

.request-status.pending {
  color: #9b6516;
  background: #fff2d9;
}

.request-status.approved {
  color: var(--green);
  background: var(--green-soft);
}

.request-status.revised {
  color: #6550a0;
  background: var(--purple-soft);
}

.request-status.rejected {
  color: #a33f3f;
  background: #fcecec;
}

.request-products-panel,
.request-review-panel {
  padding: 16px;
}

.request-products-panel .table-wrap,
.request-review-panel .table-wrap {
  max-width: 100%;
}

.request-live-toolbar {
  position: sticky;
  top: 8px;
  z-index: 8;
}

.request-destination-panel {
  display: grid;
  grid-template-columns: 230px minmax(240px, 1fr) auto;
  align-items: end;
  gap: 14px;
}

.request-type-field {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.request-type-field legend {
  margin-bottom: 7px;
  padding: 0;
  color: #59655e;
  font-size: 12px;
  font-weight: 700;
}

.request-type-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 4px;
  border: 1px solid #dce3de;
  border-radius: 11px;
  background: #f4f7f5;
}

.request-type-toggle label {
  cursor: pointer;
}

.request-type-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.request-type-toggle span {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border-radius: 8px;
  color: #647168;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  transition: 0.2s ease;
}

.request-type-toggle input:checked + span {
  color: #fff;
  background: var(--green);
  box-shadow: 0 6px 15px rgba(31, 106, 74, 0.2);
}

.request-type-toggle input:focus-visible + span {
  box-shadow: 0 0 0 3px rgba(31, 106, 74, 0.15);
}

.request-cart-panel {
  display: grid;
  gap: 14px;
}

.request-cart-top {
  scroll-margin-top: 14px;
}

.request-cart-heading,
.request-cart-total,
.request-cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.request-cart-heading h3 {
  margin: 2px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
}

.request-cart-heading > strong {
  color: var(--green);
  font-size: 11px;
}

.request-cart-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  max-height: 280px;
  overflow-y: auto;
}

.request-cart-item {
  padding: 9px 10px;
  border-radius: 9px;
  background: #f5f7f5;
  font-size: 9px;
}

.request-cart-item span {
  color: #526057;
}

.request-cart-controls {
  display: flex;
  align-items: center;
  gap: 5px;
  flex: 0 0 auto;
}

.request-cart-controls input {
  width: 58px;
  padding: 6px;
  border: 1px solid #d6e0d9;
  border-radius: 7px;
  text-align: right;
}

.request-cart-controls > span {
  font-size: 8px;
}

.request-cart-remove {
  padding: 6px 7px;
  border: 0;
  border-radius: 7px;
  color: #a33f3f;
  background: #fcecec;
  font-size: 8px;
  font-weight: 700;
}

.request-cart-footer {
  display: grid;
  grid-template-columns: 180px minmax(220px, 1fr) auto;
  align-items: end;
  gap: 14px;
}

.request-cart-total {
  display: grid;
  align-content: center;
  padding: 10px 12px;
  border: 1px solid #e4eae6;
  border-radius: 10px;
  font-size: 11px;
}

.request-cart-total strong {
  font-family: "Manrope", sans-serif;
  font-size: 20px;
}

.request-submit-button {
  width: 100%;
}

.request-product-table tr.selected td {
  background: #f1f8f4;
}

.request-creator {
  display: grid;
  gap: 4px;
  min-width: 150px;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--green-soft);
}

.request-creator small {
  color: var(--muted);
  font-size: 9px;
}

.request-creator strong {
  color: var(--green);
  font-size: 11px;
}

.request-product-table td:last-child,
.request-product-table th:last-child {
  width: 120px;
  text-align: right;
}

.request-add-button {
  min-width: 92px;
}

.request-qty-input {
  width: 92px;
  padding: 9px 10px;
  border: 1px solid #dce3de;
  border-radius: 9px;
  outline: none;
  text-align: right;
}

.request-qty-input:focus {
  border-color: #73a88a;
  box-shadow: 0 0 0 3px rgba(31, 106, 74, 0.08);
}

.request-submit-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 16px;
  margin-top: 14px;
}

.request-review-panel {
  display: grid;
  gap: 17px;
}

.request-notes {
  padding: 12px 14px;
  border-radius: 10px;
  background: #f5f7f5;
  font-size: 11px;
}

.request-notes p {
  margin: 5px 0;
}

.delivery-view-page {
  display: grid;
  min-width: 0;
  padding: 10px 0 24px;
  place-items: start center;
}

.thermal-receipt {
  color: #000;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
  width: 80mm;
  max-width: 100%;
  min-height: 120mm;
  margin: 0 auto;
  padding: 6mm;
  border: 1px solid #dfe5e1;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
}

.thermal-receipt header {
  padding-bottom: 3mm;
  border-bottom: 2px dashed #000;
  text-align: center;
}

.thermal-receipt h1 {
  margin: 0;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.thermal-receipt header p,
.thermal-footer {
  margin: 3px 0 0;
  font-size: 11px;
  font-weight: 800;
}

.thermal-meta {
  padding: 3mm 0;
  border-bottom: 2px dashed #000;
}

.thermal-meta p {
  display: flex;
  justify-content: space-between;
  gap: 3mm;
  margin: 1.5mm 0;
  font-size: 11px;
  font-weight: 700;
}

.thermal-meta p span {
  flex: 0 0 23mm;
  font-weight: 700;
}

.thermal-meta p strong {
  overflow-wrap: anywhere;
  text-align: right;
  font-weight: 900;
}

.thermal-receipt table {
  width: 100%;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
}

.thermal-receipt th,
.thermal-receipt td {
  padding: 2.4mm 0;
  color: #000;
  border-bottom: 1px solid #000;
  vertical-align: top;
}

.thermal-receipt th {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.thermal-receipt th:last-child,
.thermal-receipt td:last-child {
  width: 14mm;
  padding-left: 2mm;
  text-align: right;
}

.thermal-product-name {
  font-size: 12px;
  font-weight: 900;
}

.thermal-product-detail {
  display: inline-block;
  margin-top: 1mm;
  font-size: 10px;
  font-weight: 700;
}

.thermal-quantity {
  font-size: 13px;
  font-weight: 900;
}

.thermal-receipt tfoot th {
  padding-top: 3mm;
  border-bottom: 0;
  font-size: 12px;
  font-weight: 900;
}

.thermal-note {
  padding: 2mm 0;
  border-bottom: 1px solid #000;
  font-size: 10px;
  font-weight: 700;
}

.thermal-signatures {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8mm;
  margin-top: 7mm;
  font-size: 10px;
  font-weight: 800;
  text-align: center;
}

.thermal-footer {
  margin-top: 7mm;
  text-align: center;
}

.thermal-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2mm;
  margin-top: 5mm;
}

.android-print-button,
.eppos-print-button {
  display: none !important;
}

.thermal-actions a.button,
.thermal-actions .button {
  width: 100%;
  min-height: 40px;
  padding-right: 6px;
  padding-left: 6px;
  font-size: 12px;
  text-align: center;
}

.thermal-share-status {
  margin: 3mm 0 0;
  padding: 2.5mm;
  border-radius: 8px;
  color: #174f39;
  background: #e6f1eb;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
}

.thermal-share-status.error {
  color: #a33f3f;
  background: #fcecec;
}

@media (max-width: 700px) {
  .android-print-button,
  .eppos-print-button {
    display: inline-flex !important;
  }

  .thermal-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .request-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .request-heading > .button {
    width: 100%;
  }

  .request-card {
    grid-template-columns: 1fr auto;
  }

  .request-card-summary {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .request-status {
    grid-column: 2;
    grid-row: 1;
  }

  .request-submit-panel {
    grid-template-columns: 1fr;
  }

  .request-live-toolbar {
    position: static;
  }

  .request-live-toolbar .search-box {
    min-width: 100%;
  }

  .request-cart-items {
    grid-template-columns: 1fr;
  }

  .request-cart-footer {
    grid-template-columns: 1fr;
  }

  .request-destination-panel {
    grid-template-columns: 1fr;
  }

  .request-decision-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }
}

@media print {
  @page {
    size: 80mm auto;
    margin: 0;
  }

  body {
    background: #fff;
  }

  .sidebar,
  .sidebar-overlay,
  .topbar {
    display: none !important;
  }

  .app-shell,
  .main-content,
  .delivery-view-page {
    display: block;
    min-height: 0;
    margin: 0;
    padding: 0;
  }

  .thermal-receipt {
    width: 80mm;
    max-width: none;
    min-height: auto;
    margin: 0;
    padding: 3mm;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

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

/* Consistent application typography. Thermal receipt sizing stays unchanged. */
body:not(.thermal-body) {
  font-size: 14px;
  line-height: 1.5;
}

body:not(.thermal-body) .nav-item,
body:not(.thermal-body) input,
body:not(.thermal-body) select,
body:not(.thermal-body) textarea {
  font-size: 14px;
}

body:not(.thermal-body) .button,
body:not(.thermal-body) .alert,
body:not(.thermal-body) .form-error,
body:not(.thermal-body) .permission-option {
  font-size: 13px;
}

body:not(.thermal-body) .eyebrow,
body:not(.thermal-body) .brand small,
body:not(.thermal-body) .sidebar-footer small,
body:not(.thermal-body) .sidebar-card p,
body:not(.thermal-body) .avatar,
body:not(.thermal-body) .status-pill,
body:not(.thermal-body) .metric-card p,
body:not(.thermal-body) .metric-card span,
body:not(.thermal-body) .soft-label,
body:not(.thermal-body) .text-button,
body:not(.thermal-body) .stock-bar-label,
body:not(.thermal-body) .stock-bar-value,
body:not(.thermal-body) .low-stock-item small,
body:not(.thermal-body) .stock-count,
body:not(.thermal-body) th,
body:not(.thermal-body) .record-count,
body:not(.thermal-body) .product-stock > small,
body:not(.thermal-body) .product-stock > span,
body:not(.thermal-body) .so-intro > p,
body:not(.thermal-body) .so-product small,
body:not(.thermal-body) .so-current small,
body:not(.thermal-body) .so-field span,
body:not(.thermal-body) .readonly-label,
body:not(.thermal-body) .users-heading > div > p:last-child,
body:not(.thermal-body) .role-summary p,
body:not(.thermal-body) .user-card small,
body:not(.thermal-body) .user-permissions,
body:not(.thermal-body) .role-badge,
body:not(.thermal-body) .status-badge,
body:not(.thermal-body) .form-field > span,
body:not(.thermal-body) .permission-field legend,
body:not(.thermal-body) .permission-field p,
body:not(.thermal-body) .combobox-option small,
body:not(.thermal-body) .combobox-option .option-stock,
body:not(.thermal-body) .stock-type-field legend,
body:not(.thermal-body) .stock-type-toggle span,
body:not(.thermal-body) .combobox-empty,
body:not(.thermal-body) .toast p,
body:not(.thermal-body) .logout-link,
body:not(.thermal-body) .muted,
body:not(.thermal-body) .setup-link,
body:not(.thermal-body) .stack-form label,
body:not(.thermal-body) .request-card > div:first-child span,
body:not(.thermal-body) .request-card-summary,
body:not(.thermal-body) .request-status,
body:not(.thermal-body) .request-cart-heading > strong,
body:not(.thermal-body) .request-cart-item,
body:not(.thermal-body) .request-cart-controls > span,
body:not(.thermal-body) .request-cart-remove,
body:not(.thermal-body) .request-creator small,
body:not(.thermal-body) .request-creator strong {
  font-size: 12px;
}

body:not(.thermal-body) td,
body:not(.thermal-body) .product-tags span,
body:not(.thermal-body) .so-product strong,
body:not(.thermal-body) .role-summary strong,
body:not(.thermal-body) .user-card h3,
body:not(.thermal-body) .combobox-option strong,
body:not(.thermal-body) .toast strong,
body:not(.thermal-body) .request-notes {
  font-size: 13px;
}

body:not(.thermal-body) .sidebar-card strong,
body:not(.thermal-body) .sidebar-footer strong {
  font-size: 13px;
}

body:not(.thermal-body) .panel h2 {
  font-size: 18px;
}

body:not(.thermal-body) .request-heading h2 {
  font-size: 20px;
}

@media (max-width: 600px) {
  body:not(.thermal-body) .product-main h3 {
    font-size: 16px;
  }

  body:not(.thermal-body) .product-tags span,
  body:not(.thermal-body) .product-stock > small {
    font-size: 12px;
  }
}
