:root {
  color-scheme: light;
  --red: #ed1c24;
  --red-dark: #be151b;
  --yellow: #ffc20e;
  --ink: #181818;
  --text: #252525;
  --muted: #656d76;
  --line: #dde1e6;
  --panel: #ffffff;
  --soft: #f5f6f7;
  --soft-2: #eceff2;
  --green: #247a48;
  --amber: #9b6500;
  --blue: #245a94;
  --shadow: 0 2px 8px rgba(24, 24, 24, .08);
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Ubuntu, "Noto Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--soft);
  color: var(--text);
  overflow-x: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  min-height: 82px;
  padding: 0 max(24px, calc((100vw - 1280px) / 2 + 24px));
  border-bottom: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 1px 0 rgba(24, 24, 24, .03);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.brand-logo {
  display: inline-block;
  color: var(--red);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-logo span {
  color: var(--ink);
}

.brand strong {
  display: block;
  font-size: 15px;
  line-height: 1.1;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

nav {
  display: flex;
  justify-content: center;
  gap: 4px;
  min-width: 0;
}

.nav-button,
.cart-button,
.login-button,
.back-button,
.secondary,
.file-action {
  min-height: 40px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--ink);
  text-decoration: none;
}

.nav-button {
  display: inline-grid;
  place-items: center;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-button:hover,
.nav-button.active {
  color: var(--red);
}

.login-button {
  display: grid;
  place-items: center;
  width: 42px;
  border-color: var(--line);
  border-radius: 50%;
  background: #fff;
}

.login-button span {
  position: relative;
  width: 18px;
  height: 18px;
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.login-button span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 22px;
  height: 12px;
  border: 2px solid var(--ink);
  border-bottom: 0;
  border-radius: 13px 13px 0 0;
  transform: translateX(-50%);
}

.login-button.active,
.login-button:hover {
  border-color: var(--red);
}

.cart-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 15px;
  border-color: #d7a400;
  background: var(--yellow);
  font-weight: 800;
}

.cart-button span {
  display: grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  background: #fff;
  font-size: 12px;
}

main {
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: 26px 24px 34px;
}

.view {
  display: none;
}

.view.active {
  display: block;
}

.store-hero {
  min-height: 360px;
  display: grid;
  align-items: center;
  margin-bottom: 24px;
  padding: 44px;
  border: 1px solid #2a2a2a;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0,0,0,.88), rgba(0,0,0,.56) 48%, rgba(0,0,0,.18)),
    url("https://aardwolfusa.com/web/image/product.product/10480/image_1920?unique=48dfff2") right center / contain no-repeat,
    #1c1c1c;
}

.hero-copy {
  max-width: 660px;
}

.eyebrow {
  display: block;
  margin: 0 0 7px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.store-hero .eyebrow {
  color: var(--yellow);
}

.store-hero h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

.store-hero p {
  max-width: 560px;
  margin: 16px 0 0;
  color: #f2f2f2;
  font-size: 17px;
  line-height: 1.55;
}

.hero-actions,
.confirmation-actions,
.card-actions,
.heading-actions,
.order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.hero-actions {
  margin-top: 24px;
}

.primary-link,
.secondary-link,
.card-actions button,
.checkout-panel button,
.detail-buy,
.admin-gate button,
.fulfiller-form button[type="submit"],
.rule-form button[type="submit"] {
  display: inline-grid;
  place-items: center;
  min-height: 44px;
  border: 0;
  background: var(--red);
  color: #fff;
  padding: 0 17px;
  font-weight: 900;
  text-decoration: none;
}

.primary-link:hover,
.card-actions button:hover,
.checkout-panel button:hover,
.detail-buy:hover {
  background: var(--red-dark);
}

.secondary-link,
.card-actions .secondary,
.secondary,
.back-button,
.file-action {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.secondary,
.back-button,
.file-action {
  min-height: 38px;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 800;
}

.secondary:hover,
.secondary.active-console,
.back-button:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.file-action {
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  font-weight: 700;
}

.file-action input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.category-band,
.industry-band {
  margin-bottom: 24px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.category-band {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 20px;
  padding: 22px;
}

.band-heading h2,
.industry-band h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.15;
}

.category-chips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 10px;
}

.category-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  background: var(--soft);
  text-align: left;
  font-weight: 800;
}

.category-loading {
  min-height: 48px;
  display: grid;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid var(--line);
  background: var(--soft);
  color: var(--muted);
  font-weight: 800;
}

.category-chip:hover {
  border-color: var(--red);
  color: var(--red);
}

.category-chip strong {
  display: grid;
  place-items: center;
  min-width: 28px;
  height: 28px;
  background: #fff;
  color: var(--ink);
  font-size: 12px;
}

.industry-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
  gap: 28px;
  padding: 24px;
  border-left: 5px solid var(--red);
}

.industry-band p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.store-layout,
.checkout-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.filters,
.checkout-panel,
.admin-gate {
  display: grid;
  gap: 15px;
  padding: 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.filters {
  position: sticky;
  top: 106px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  padding: 9px 11px;
  background: #fff;
  color: var(--ink);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(237, 28, 36, .16);
  border-color: var(--red);
}

.table-control {
  min-width: 150px;
  min-height: 36px;
  margin-top: 8px;
  padding: 6px 8px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.section-heading h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.05;
}

.section-heading.compact h1 {
  font-size: 30px;
}

.section-heading p {
  max-width: 680px;
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.catalog-status {
  display: grid;
  gap: 4px;
  min-width: 210px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 12px;
  box-shadow: var(--shadow);
}

.catalog-status strong,
.catalog-status span {
  display: block;
}

.catalog-status strong {
  text-transform: uppercase;
}

.catalog-status span {
  color: var(--muted);
}

.catalog-status.live {
  border-left: 4px solid var(--green);
}

.catalog-status.fallback {
  border-left: 4px solid var(--amber);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 16px;
}

.product-card {
  display: grid;
  grid-template-rows: 240px 1fr;
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.product-body {
  display: grid;
  gap: 9px;
  align-content: start;
  padding: 16px;
}

.product-body h2,
.product-body h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.15;
}

.product-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.sku,
.status,
.variant-count {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.variant-count {
  color: var(--blue);
}

.price {
  font-size: 25px;
  font-weight: 900;
}

.route-summary {
  display: grid;
  gap: 4px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.route-summary span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(300px, 520px) minmax(0, 1fr);
  gap: 28px;
  margin-top: 18px;
}

.detail-media {
  min-height: 520px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.detail-media img {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
  padding: 24px;
}

.detail-panel {
  display: grid;
  gap: 17px;
  align-content: start;
}

.detail-panel h1 {
  margin: 0;
  font-size: 42px;
  line-height: 1.04;
}

.detail-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.source-link {
  color: var(--blue);
  font-weight: 800;
}

.spec-table,
.orders-table table,
.fulfiller-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.spec-table td,
.orders-table th,
.orders-table td,
.fulfiller-table th,
.fulfiller-table td {
  border-bottom: 1px solid var(--line);
  padding: 12px;
  text-align: left;
  vertical-align: top;
}

.spec-table td:first-child,
.orders-table th,
.fulfiller-table th {
  background: #fafbfc;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.line-list,
.preview-list,
.confirmation-lines,
.dashboard-panel,
.composition-list,
.queue-list,
.fulfiller-load,
.health-list,
.drawer-lines {
  display: grid;
  gap: 10px;
}

.cart-line,
.route-card,
.order-card,
.preview-list article,
.metric,
.dashboard-card,
.detail-field,
.detail-note,
.drawer-line,
.queue-item,
.fulfiller-load div,
.health-list div,
.empty-state {
  display: grid;
  gap: 7px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
}

.cart-line {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.cart-preview,
.preview-grid,
.confirmation-grid,
.metrics,
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.cart-preview span,
.preview-list article {
  background: var(--soft);
  font-size: 12px;
}

.cart-preview strong,
.detail-field span,
.detail-note span,
.timeline span,
.metric span,
.card-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.routing-preview {
  display: grid;
  gap: 12px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
}

.routing-preview p {
  margin: 0;
  color: var(--muted);
}

.confirmation-panel {
  max-width: 980px;
  margin: 0 auto;
}

.confirmation-card {
  display: grid;
  gap: 18px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.confirmation-card h1,
.confirmation-card p {
  margin: 0;
}

.confirmation-card h1 {
  font-size: 40px;
  line-height: 1;
}

.confirmation-card p {
  max-width: 720px;
  color: var(--muted);
  line-height: 1.5;
}

.confirmation-lines article {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(120px, .7fr) minmax(0, 1fr) minmax(120px, .6fr);
  gap: 10px;
  align-items: center;
  padding: 12px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.confirmation-lines span,
.muted-preview {
  color: var(--muted);
}

.admin-gate {
  max-width: 420px;
}

.admin-gate h2,
.admin-gate p {
  margin: 0;
}

.admin-gate p {
  color: var(--muted);
}

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

.routing-rules {
  margin-top: 18px;
}

.metric strong {
  font-size: 28px;
}

.route-card strong {
  font-size: 20px;
}

.dashboard-grid {
  gap: 14px;
}

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

.dashboard-card {
  align-content: start;
  min-height: 145px;
  box-shadow: var(--shadow);
}

.dashboard-card.span-2 {
  grid-column: span 2;
}

.dashboard-card > strong {
  font-size: 34px;
  line-height: 1;
}

.dashboard-card p,
.dashboard-card small {
  margin: 0;
  color: var(--muted);
}

.card-heading {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}

.card-heading strong {
  display: block;
  margin-top: 4px;
  font-size: 20px;
}

.composition-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 34px;
  gap: 10px;
  align-items: center;
}

.composition-row span {
  font-weight: 800;
}

.composition-row div {
  height: 10px;
  background: var(--soft-2);
  border: 1px solid var(--line);
}

.composition-row i {
  display: block;
  height: 100%;
  background: var(--red);
}

.queue-item {
  width: 100%;
  text-align: left;
}

.ok-text {
  color: var(--green);
}

.warn-text {
  color: var(--amber);
}

.fulfiller-shell,
.rules-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.fulfiller-tools,
.rule-tools {
  display: grid;
  gap: 12px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.fulfiller-form,
.rule-form,
.quick-filters {
  display: grid;
  gap: 10px;
}

.quick-filters button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
}

.quick-filters .active-filter {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.tool-actions,
.score-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.fulfiller-form,
.rule-form {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.rule-form {
  padding-top: 0;
  border-top: 0;
}

.fulfiller-form h2,
.rule-form h2 {
  margin: 0;
  font-size: 20px;
}

.fulfiller-table-wrap,
.rules-table-wrap,
.orders-table {
  overflow-x: auto;
}

.fulfiller-table {
  min-width: 980px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  width: fit-content;
  margin: 1px 3px 1px 0;
  padding: 0 8px;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: capitalize;
}

.badge.ready,
.badge.warehouse,
.badge.accepted,
.badge.accepted_by_fulfiller,
.badge.quote_ready,
.badge.closed,
.badge.payment_authorized,
.badge.payment_paid,
.badge.response_accepted,
.badge.notify_sent,
.badge.notify_simulated,
.badge.capture {
  background: var(--green);
}

.badge.freight_review,
.badge.fallback,
.badge.quote_requested,
.badge.assigned,
.badge.sent_to_fulfiller,
.badge.response_pending,
.badge.payment_capture_pending,
.badge.notify_failed {
  background: var(--amber);
}

.badge.declined_by_fulfiller,
.badge.response_declined {
  background: #b42318;
}

.order-actions .secondary {
  min-height: 32px;
  padding: 0 9px;
  font-size: 12px;
}

.order-drawer {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: none;
  justify-content: end;
  background: rgba(24, 24, 24, .38);
}

.order-drawer.open {
  display: flex;
}

.drawer-panel {
  width: min(680px, 100%);
  height: 100%;
  overflow-y: auto;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 24px;
  background: #fff;
  border-left: 1px solid var(--line);
}

.drawer-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.drawer-heading h2,
.drawer-section h3,
.detail-note p {
  margin: 0;
}

.drawer-heading h2 {
  font-size: 32px;
  line-height: 1.05;
}

.drawer-status {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.drawer-section {
  display: grid;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

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

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

.quote-form textarea,
.quote-form button {
  grid-column: 1 / -1;
}

.timeline {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.timeline strong {
  display: block;
  margin-top: 2px;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  max-width: 360px;
  padding: 14px 16px;
  background: var(--ink);
  color: #fff;
  transform: translateY(120px);
  opacity: 0;
  transition: transform 180ms ease, opacity 180ms ease;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: 22px 24px 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.site-footer div {
  display: grid;
  gap: 4px;
}

.site-footer strong {
  color: var(--red);
  font-size: 18px;
}

@media (max-width: 1100px) {
  .topbar {
    grid-template-columns: 1fr auto auto;
    gap: 14px;
    padding: 12px 18px;
  }

  nav {
    grid-column: 1 / -1;
    order: 4;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .store-layout,
  .checkout-layout,
  .product-detail,
  .fulfiller-shell,
  .rules-shell,
  .category-band,
  .industry-band {
    grid-template-columns: 1fr;
  }

  .filters {
    position: static;
  }

  .routing-board,
  .metrics,
  .dashboard-grid,
  .dashboard-grid.lower,
  .cart-preview,
  .preview-grid,
  .confirmation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-card.span-2 {
    grid-column: span 1;
  }
}

@media (max-width: 700px) {
  main {
    padding: 18px 14px 28px;
  }

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

  .brand-logo {
    font-size: 23px;
  }

  .cart-button {
    grid-column: 1 / -1;
    justify-self: stretch;
  }

  .store-hero {
    min-height: 0;
    padding: 28px 20px;
    background:
      linear-gradient(180deg, rgba(0,0,0,.9), rgba(0,0,0,.64)),
      url("https://aardwolfusa.com/web/image/product.product/10480/image_1920?unique=48dfff2") center bottom / 86% auto no-repeat,
      #1c1c1c;
    padding-bottom: 210px;
  }

  .store-hero h1 {
    font-size: 33px;
  }

  .section-heading,
  .card-heading,
  .drawer-heading,
  .site-footer {
    display: grid;
    align-items: start;
  }

  .product-grid,
  .routing-board,
  .metrics,
  .dashboard-grid,
  .dashboard-grid.lower,
  .cart-preview,
  .preview-grid,
  .confirmation-grid,
  .confirmation-lines article,
  .detail-grid,
  .quote-form,
  .tool-actions,
  .score-grid {
    grid-template-columns: 1fr;
  }

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

  .drawer-panel {
    padding: 18px;
  }

  .section-heading h1,
  .detail-panel h1,
  .confirmation-card h1 {
    font-size: 32px;
  }
}

/* Aardwolf Odoo homepage match */
.topbar {
  position: sticky;
  top: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto auto;
  min-height: 61px;
  padding: 0 8px;
  gap: 12px;
  align-items: center;
  justify-content: stretch;
  box-shadow: none;
  border-bottom: 0;
  background: #fff;
  font-family: "Kanit", "Montserrat", sans-serif;
  z-index: 20;
}

.brand img {
  display: block;
  width: 194px;
  height: 41px;
  object-fit: contain;
}

.topbar nav {
  display: flex;
  justify-content: flex-start;
  gap: 32px;
  margin-left: 42px;
  min-width: 0;
}

.nav-button {
  min-height: 61px;
  padding: 0;
  font-size: 14px;
  color: #131313;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.nav-button:hover,
.nav-button.active {
  color: #e60012;
}

.nav-menu {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-product-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav-caret {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.products-dropdown {
  position: absolute;
  left: -14px;
  top: calc(100% - 1px);
  z-index: 30;
  display: none;
  width: 318px;
  max-height: min(70vh, 640px);
  overflow: auto;
  padding: 10px 0;
  border: 1px solid #e5e5e5;
  background: #fff;
  box-shadow: 0 10px 22px rgba(0,0,0,.12);
}

.nav-menu:hover .products-dropdown,
.nav-menu:focus-within .products-dropdown {
  display: block;
}

.products-dropdown button {
  display: block;
  width: 100%;
  padding: 10px 18px;
  border: 0;
  border-radius: 0;
  background: #fff;
  color: #131313;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  text-align: left;
  text-transform: capitalize;
}

.products-dropdown button:hover,
.products-dropdown button:focus {
  background: #f7f7f7;
  color: #e60012;
}

.search-button {
  position: relative;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #f5f5f5;
}

.search-button::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 13px;
  width: 12px;
  height: 12px;
  border: 3px solid #111;
  border-radius: 50%;
}

.search-button::after {
  content: "";
  position: absolute;
  left: 28px;
  top: 28px;
  width: 10px;
  height: 3px;
  background: #111;
  transform: rotate(45deg);
  transform-origin: left center;
}

.login-button {
  width: 42px;
  height: 42px;
  border: 0;
  background: #fff;
}

.cart-button {
  min-height: 38px;
  padding: 0 10px;
  background: #ffc20e;
}

body[data-view="storefront"] .cart-button {
  display: none;
}

main {
  width: 100%;
  max-width: none;
  padding: 0;
}

#catalog,
#product,
#cart,
#confirmation,
#dashboard,
#router,
#fulfillers,
#orders,
#admin-module {
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: 28px 24px 34px;
}

#dashboard.admin-quivers-view,
#router.admin-quivers-view,
#fulfillers.admin-quivers-view,
#orders.admin-quivers-view,
#admin-module.admin-quivers-view {
  width: 100%;
  margin: 0;
  padding: 0;
}

#catalog {
  font-family: "Kanit", "Montserrat", sans-serif;
}

.catalog-layout {
  grid-template-columns: 255px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.catalog-layout .filters {
  position: sticky;
  top: 83px;
  gap: 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.filters-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
}

.filters-title-row h2 {
  margin: 0;
  color: #131313;
  font-family: "Oswald", "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.15;
}

.clear-filters {
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: #131313;
  font-size: 13px;
  font-weight: 600;
  text-decoration: underline;
}

.catalog-layout .filters label {
  color: #131313;
  font-size: 15px;
  font-weight: 600;
}

.catalog-layout .filters input,
.catalog-layout .filters select {
  min-height: 42px;
  margin-top: 7px;
  border-radius: 8px;
  font-family: "Kanit", "Montserrat", sans-serif;
}

.catalog-layout .route-summary {
  border-radius: 0;
  background: #f7f7f7;
}

#catalog .catalog-heading {
  align-items: center;
  margin-bottom: 24px;
  padding: 0;
  border: 0;
}

#catalog .catalog-heading h1 {
  margin: 0;
  color: #131313;
  font-family: "Oswald", "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.15;
}

#catalog .catalog-status {
  border-radius: 0;
  font-family: "Kanit", "Montserrat", sans-serif;
}

#catalog .product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 24px;
}

#catalog .product-card {
  display: block;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

#catalog .product-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  padding: 18px;
  background: #f7f7f7;
  object-fit: contain;
}

#catalog .product-body {
  padding: 12px 0 0;
}

#catalog .product-body .eyebrow {
  margin-bottom: 4px;
  color: #777;
  font-size: 12px;
  font-weight: 500;
}

#catalog .product-body h2 {
  margin: 0 0 4px;
  color: #131313;
  font-family: "Kanit", "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.22;
}

#catalog .product-body .sku {
  color: #777;
  font-size: 13px;
  font-weight: 500;
}

#catalog .product-body p {
  display: none;
}

#catalog .variant-count,
#catalog .product-body .price,
#catalog .product-body .badge {
  display: none;
}

#catalog .card-actions {
  margin-top: 11px;
}

#catalog .card-actions button {
  min-height: 36px;
  padding: 0 13px;
  font-size: 13px;
}

.category-detail-page {
  width: 100%;
  max-width: 2560px;
  margin: -28px auto -34px;
  padding: 23px 57px 94px;
  background: #f4f4f4;
  font-family: "Kanit", "Montserrat", sans-serif;
}

.category-detail-head {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #bababa;
  font-size: 16px;
  line-height: 1.68;
  text-transform: capitalize;
}

.category-detail-head a {
  color: #bababa;
  text-decoration: none;
}

.category-detail-head a::after {
  content: "/";
  margin-left: 8px;
}

.category-detail-head span {
  color: #131313;
}

.category-detail-intro {
  margin-top: 60px;
  text-align: center;
}

.category-detail-intro h1 {
  margin: 0;
  color: #000;
  font-family: "Oswald", "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: normal;
}

.category-detail-subcategories {
  margin-top: 83px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px 19px;
}

.subcategory-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 65px;
  padding: 10px;
  border: 1px solid #fff;
  border-radius: 8px;
  background: #fff;
  color: #404040;
  font-family: "Kanit", "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}

.subcategory-chip:hover,
.subcategory-chip.active {
  border-color: #ed1c24;
}

.category-detail-content {
  position: relative;
  display: grid;
  grid-template-columns: 255px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  margin-top: 36px;
}

.category-detail-filters {
  position: sticky;
  top: 83px;
  min-width: 255px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.category-detail-filters .filters-title-row,
.category-detail-products .catalog-heading {
  min-height: 36px;
  margin: 0 0 40px;
}

.category-detail-filters .filters-title-row h2,
.category-detail-products .catalog-heading h2 {
  margin: 0;
  color: #000;
  font-family: "Kanit", "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.23;
  text-transform: capitalize;
}

.category-detail-products .catalog-heading h2 span {
  font-weight: 500;
}

.category-detail-filters .clear-filters {
  color: #191819;
  font-size: 12px;
  font-weight: 600;
}

.catalog-search-field,
.catalog-category-field {
  display: block;
  margin-bottom: 12px;
  color: #131313;
  font-size: 15px;
  font-weight: 600;
}

.catalog-search-field input,
.catalog-category-field select {
  min-height: 42px;
  margin-top: 7px;
  border-radius: 8px;
  background: #fff;
  font-family: "Kanit", "Montserrat", sans-serif;
}

.catalog-filter-groups {
  display: grid;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 12px;
  background: #fff;
}

.catalog-filter-group {
  position: relative;
}

.catalog-filter-name {
  margin-top: 8px;
  color: #131313;
  font-size: 15px;
  font-weight: 600;
}

.catalog-filter-count {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 40px;
  margin-top: 6px;
  padding: 8px 24px 8px 12px;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  background: #fff;
  color: #131313;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
}

.catalog-filter-count::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #212529;
}

.catalog-filter-values {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 25;
  display: none;
  min-width: 100%;
  padding: 10px 16px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 2px 2px 4px 2px rgba(0,0,0,.15);
}

.catalog-filter-group.show .catalog-filter-values {
  display: block;
}

.catalog-filter-option {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0 0 8px;
  color: #131313;
  font-size: 14px;
  font-weight: 500;
}

.catalog-filter-option input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
}

.catalog-filter-empty {
  color: #777;
  font-size: 14px;
  font-weight: 500;
}

.filters-toggle {
  position: relative;
  display: none;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
}

.filters-toggle::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 9px;
  width: 20px;
  height: 16px;
  border-top: 2px solid #131313;
  border-bottom: 2px solid #131313;
}

.filters-toggle::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 16px;
  width: 14px;
  border-top: 2px solid #131313;
}

#catalog .catalog-status {
  margin: -26px 0 22px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #666;
  box-shadow: none;
}

#catalog .product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

#catalog .product-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

#catalog .product-card .product-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 20px 15px 3px;
  overflow: hidden;
}

#catalog .product-card .product-img img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  padding: 0;
  background: transparent;
  object-fit: contain;
  transition: transform .2s ease;
}

#catalog .product-card:hover .product-img img {
  transform: scale(1.06);
}

#catalog .product-body {
  width: 100%;
  padding: 12px 10px 18px;
}

#catalog .product-body h2 {
  margin: 0 0 4px;
  color: #131313;
  font-family: "Kanit", "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.17;
  text-transform: capitalize;
}

#catalog .product-body .sku {
  display: block;
  margin-bottom: 7px;
  color: #ed1c24;
  font-size: 16px;
  font-weight: 600;
}

#catalog .product-body ul {
  min-height: 40px;
  margin: 0;
  padding-left: 15px;
  color: #131313;
}

#catalog .product-body li {
  list-style: disc;
  font-size: 13px;
  line-height: 1.25;
}

#catalog .card-actions {
  margin-top: 12px;
  gap: 8px;
}

#catalog .card-actions button {
  min-height: 32px;
  padding: 0 11px;
  font-size: 12px;
}

.all-categories-page {
  width: 100%;
  max-width: 2560px;
  margin: 0 auto;
  padding-bottom: 46px;
  overflow-x: hidden;
  background: #fff;
  font-family: "Kanit", "Montserrat", sans-serif;
}

.all-categories-banner {
  width: 100%;
  height: 357px;
  background:
    linear-gradient(90deg, rgba(0,0,0,.18), rgba(0,0,0,0)),
    url("assets/aardwolfusa/Mechanical%20Clamp%20Lifter%20.webp") center / cover no-repeat;
}

.all-categories-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 79px 80px 58px;
  text-align: center;
}

.all-categories-intro h1 {
  margin: 0;
  color: #ed1c24;
  font-family: "Oswald", "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}

.all-categories-intro p {
  max-width: 790px;
  margin: 0;
  color: #131313;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
}

.all-categories-list {
  display: grid;
  gap: 82px;
}

.all-category-section {
  padding: 0 86px 0 80px;
}

.all-category-section.reverse .all-category-feature {
  flex-direction: row-reverse;
}

.all-category-feature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  min-height: 550px;
}

.all-category-info {
  flex: 0 0 411px;
}

.all-category-info-box {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 484px;
  padding: 46px 49px 53px;
  background: #f4f4f4;
}

.all-category-info-box::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 10px;
  background: #ed1c24;
}

.all-category-info-box h2 {
  margin: 25px 0 0;
  color: #000;
  font-family: "Oswald", "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: normal;
}

.all-category-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

.all-category-primary,
.all-category-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 44px;
  padding: 10px 32px;
  border: 0;
  border-radius: 6px;
  background: #dbdbdb;
  color: #131313;
  font-family: "Kanit", "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
}

.all-category-primary {
  background: #ed1c24;
  color: #fff;
}

.all-category-primary:hover,
.all-category-secondary:hover {
  transform: scale(1.03);
}

.all-category-image {
  flex: 1 1 680px;
  height: 550px;
  min-width: 0;
  overflow: hidden;
}

.all-category-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.all-category-thumbs {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 237px;
  gap: 0;
  max-width: 1049px;
  margin: 11px 0 0;
  padding: 0 50px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
}

.all-category-thumbs::before,
.all-category-thumbs::after {
  content: "";
  position: sticky;
  top: 0;
  z-index: 2;
  width: 50px;
  height: 100%;
  pointer-events: none;
  background: #fff;
}

.all-category-thumbs::before {
  left: 0;
}

.all-category-thumbs::after {
  right: 0;
}

.all-category-thumb {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-height: 138px;
  padding: 0 10px 0;
  border: 0;
  border-radius: 0;
  background: #fff;
  color: #000;
  text-align: center;
}

.all-category-thumb::after {
  content: "";
  position: absolute;
  top: 23px;
  right: 0;
  width: 1px;
  height: 92px;
  background: #b7b7b7;
}

.all-category-thumb img {
  display: block;
  width: 100%;
  height: 92px;
  object-fit: contain;
}

.all-category-thumb span {
  padding: 0 4px;
  color: #000;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}

.all-category-thumb strong {
  color: #ed1c24;
  font-size: 11px;
  font-weight: 600;
}

.all-category-empty {
  padding: 24px;
  color: #777;
  background: #f4f4f4;
}

.store-hero {
  position: relative;
  min-height: 0;
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  background: #fff;
  color: #000;
  overflow: hidden;
}

.store-hero img {
  display: block;
  width: 100%;
  height: auto;
}

.clone-banner-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.clone-banner-text {
  position: absolute;
  left: 35%;
  top: 15%;
  width: 45%;
  letter-spacing: -2px;
  text-shadow: none;
  -webkit-font-smoothing: antialiased;
}

.award-banner-title {
  color: #f6840e;
  font-size: 4.05vw;
  font-weight: 800;
  line-height: 1;
  text-shadow: none;
  -webkit-text-stroke: 0 transparent;
}

.award-banner-subtitle-1 {
  color: #023a7c;
  font-size: 3.01vw;
  font-weight: 800;
  line-height: 1;
  text-shadow: none;
  -webkit-text-stroke: 0 transparent;
}

.award-banner-subtitle-2 {
  color: #c51780;
  font-size: 2.05vw;
  font-style: italic;
  font-weight: 800;
  line-height: 1.4;
  text-shadow: none;
  -webkit-text-stroke: 0 transparent;
}

.award-banner-copy {
  color: #000;
  font-size: 1.7vw;
  line-height: 1.25;
  letter-spacing: -1px;
  text-shadow: none;
  -webkit-text-stroke: 0 transparent;
}

.clone-banner-button {
  position: absolute;
  left: 3%;
  bottom: 5%;
  display: block;
  width: 25%;
  border: 2px solid #ea9424;
  border-radius: 25px;
  background: #ea9424;
  color: #fff;
  padding: .3% 1%;
  text-align: center;
  font-size: 1.5vw;
  font-weight: 800;
  line-height: 1.25;
  pointer-events: auto;
  text-decoration: none;
  text-shadow: none;
  -webkit-text-stroke: 0 transparent;
  -webkit-font-smoothing: antialiased;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  width: 36px;
  height: 56px;
  border: 0;
  background: transparent;
  transform: translateY(-50%);
}

.carousel-arrow::before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  border-left: 2px solid rgba(255,255,255,.8);
  border-bottom: 2px solid rgba(255,255,255,.8);
}

.carousel-arrow.prev {
  left: 35px;
}

.carousel-arrow.prev::before {
  transform: rotate(45deg);
}

.carousel-arrow.next {
  right: 35px;
}

.carousel-arrow.next::before {
  transform: rotate(-135deg);
}

.category-band {
  display: block;
  margin: 0;
  padding: 80px max(24px, calc((100vw - 1190px) / 2)) 153px;
  border: 0;
  background: #fff;
  box-shadow: none;
}

.category-page-band {
  padding-top: 72px;
}

.odoo-section-title {
  margin: 0 0 64px;
  color: #131313;
  font-family: "Oswald", "Montserrat", sans-serif;
  font-size: 40px;
  line-height: 1.08;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0;
}

.category-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  gap: 24px;
}

.category-chip {
  position: relative;
  display: flex;
  flex: 1 1 260px;
  width: 25%;
  max-width: 302px;
  min-height: 0;
  height: 293px;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #ddd;
  color: #fff;
  text-align: left;
}

.category-chip img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.category-chip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,.72));
}

.category-chip:hover img {
  transform: scale(1.04);
}

.category-chip span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 17px;
  z-index: 1;
  color: #fff;
  font-family: "Kanit", "Montserrat", sans-serif;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 600;
  text-transform: capitalize;
}

.category-chip strong {
  display: none;
}

.category-loading {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(302px, 100%);
}

.industry-band {
  display: block;
  margin: 0;
  padding: 54px max(24px, calc((100vw - 1190px) / 2)) 120px;
  border: 0;
  background: #292929;
  box-shadow: none;
}

.industry-band .odoo-section-title {
  margin-bottom: 64px;
  color: #fff;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-items: center;
  gap: 24px;
}

.industry-grid article {
  position: relative;
  width: 100%;
  max-width: 400px;
  min-height: 314px;
  overflow: hidden;
  background: #111;
}

.industry-grid img {
  display: block;
  width: 100%;
  height: 314px;
  object-fit: cover;
}

.industry-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  height: 50%;
  background: linear-gradient(180deg, #000 -7%, rgba(0,0,0,0));
}

.industry-grid span {
  position: absolute;
  top: 47px;
  left: 47px;
  right: 24px;
  bottom: auto;
  z-index: 1;
  color: #fff;
  font-family: "Kanit", "Montserrat", sans-serif;
  font-size: 24px;
  line-height: 1.27;
  font-weight: 600;
}

.site-footer {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 18px 24px;
  border-top: 0;
  background: #fff;
  justify-content: center;
  color: #555;
}

.site-footer div {
  display: none;
}

@media (max-width: 760px) {
  .topbar {
    grid-template-columns: 1fr auto auto;
    min-height: 61px;
    gap: 8px;
  }

  .brand img {
    width: 194px;
    max-width: 52vw;
  }

  .topbar nav {
    grid-column: 1 / -1;
    order: 5;
    justify-content: flex-start;
    gap: 28px;
    margin-left: 0;
    overflow-x: visible;
  }

  .products-dropdown {
    left: 0;
    width: min(318px, calc(100vw - 32px));
  }

  .search-button {
    width: 42px;
    height: 42px;
  }

  .cart-button {
    grid-column: 1 / -1;
    justify-self: stretch;
  }

  .category-band {
    padding: 64px 20px 120px;
  }

  .odoo-section-title {
    margin-bottom: 54px;
    font-size: 36px;
  }

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

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

  .catalog-layout .filters {
    position: static;
  }

  #catalog .product-grid {
    grid-template-columns: 1fr;
  }

  .category-chips {
    gap: 8px;
  }

  .category-chip {
    flex-basis: 156px;
    max-width: 166px;
    height: 156px;
  }

  .category-chip span {
    left: 12px;
    right: 12px;
    bottom: 11px;
    font-size: 13px;
  }

  .industry-grid article,
  .industry-grid img {
    height: 293px;
  }

  .industry-band {
    padding: 54px 20px 100px;
  }

  .industry-grid span {
    top: 27px;
    left: 30px;
    right: 30px;
    font-size: 14px;
  }

  .store-hero img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .clone-banner-text {
    left: 35%;
    top: 12%;
    width: 58%;
    letter-spacing: -1px;
  }

  .award-banner-title {
    font-size: 22px;
  }

  .award-banner-subtitle-1 {
    font-size: 16px;
  }

  .award-banner-subtitle-2 {
    font-size: 13px;
  }

  .award-banner-copy {
    display: none;
  }

  .clone-banner-button {
    left: 35%;
    bottom: 6%;
    width: 52%;
    padding: 5px 10px;
    font-size: 12px;
  }
}

@media (max-width: 1100px) and (min-width: 761px) {
  .topbar {
    grid-template-columns: auto minmax(0, 1fr) auto auto auto;
    padding: 0 8px;
    justify-content: stretch;
  }

  .topbar nav {
    grid-column: auto;
    order: initial;
    width: auto;
    overflow: visible;
    margin-left: 28px;
    gap: 24px;
  }

  .store-layout,
  .checkout-layout {
    grid-template-columns: 260px minmax(0, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  #catalog .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .category-detail-page {
    padding: 23px 40px 54px;
  }

  .category-detail-subcategories {
    grid-template-columns: repeat(3, 1fr);
  }

  #catalog .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .all-category-section {
    padding: 0 40px;
  }

  .all-category-info {
    flex-basis: 360px;
  }
}

@media (max-width: 991px) {
  .category-detail-subcategories {
    display: flex;
    align-items: stretch;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .subcategory-chip {
    flex: 0 0 200px;
  }

  .category-detail-content {
    display: block;
  }

  .category-detail-filters {
    position: absolute;
    top: 36px;
    right: 0;
    z-index: 35;
    display: none;
    width: min(320px, 100%);
    padding: 16px 24px;
    background: #fff;
    box-shadow: 2px 2px 4px 2px rgba(0,0,0,.15);
  }

  .category-detail-filters.show {
    display: block;
  }

  .filters-toggle {
    display: block;
  }

  .all-category-feature,
  .all-category-section.reverse .all-category-feature {
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
  }

  .all-category-info {
    flex: 0 0 auto;
  }

  .all-category-info-box {
    min-height: 0;
    padding: 44px 0 47px;
    background: transparent;
  }

  .all-category-info-box::before {
    display: none;
  }

  .all-category-actions {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
  }

  .all-category-image {
    flex-basis: auto;
    height: 404px;
  }

  .all-category-thumbs {
    max-width: none;
    margin-top: 44px;
    padding: 0;
  }
}

@media (max-width: 760px) {
  .category-detail-page {
    margin: -28px -24px -34px;
    padding: 18px 14px 43px;
  }

  .category-detail-head {
    font-size: 12px;
  }

  .category-detail-intro {
    margin-top: 30px;
  }

  .category-detail-intro h1 {
    font-size: 24px;
  }

  .category-detail-subcategories {
    margin-top: 20px;
  }

  .category-detail-products .catalog-heading,
  .category-detail-filters .filters-title-row {
    margin-bottom: 24px;
  }

  #catalog .catalog-status {
    margin: -12px 0 18px;
  }

  #catalog .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  #catalog .product-body {
    padding: 10px 8px 14px;
  }

  #catalog .product-body h2,
  #catalog .product-body .sku {
    font-size: 14px;
  }

  #catalog .product-body li {
    font-size: 12px;
  }

  .all-categories-banner {
    height: 285px;
  }

  .all-categories-intro {
    padding: 60px 68px;
  }

  .all-categories-intro p {
    font-size: 16px;
  }

  .all-categories-list {
    gap: 58px;
  }

  .all-category-section {
    padding: 0 24px;
  }
}

@media (max-width: 490px) {
  .all-categories-banner {
    height: 197px;
  }

  .all-categories-intro {
    padding: 40px 16px;
  }

  .all-categories-intro h1,
  .all-category-info-box h2 {
    font-size: 32px;
  }

  .all-category-info-box {
    padding: 45px 27px 32px;
  }

  .all-category-actions {
    gap: 7px;
  }

  .all-category-primary,
  .all-category-secondary {
    padding: 10px 22px;
    font-size: 14px;
  }

  .all-category-image {
    height: 262px;
  }

  .all-category-thumbs {
    grid-auto-columns: 168px;
    margin-top: 21px;
    padding-left: 15px;
  }
}

/* Quivers-style fulfiller admin */
body[data-view="fulfiller-admin"],
body[data-view="dashboard"],
body[data-view="router"],
body[data-view="fulfillers"],
body[data-view="orders"],
body[data-view="admin-module"] {
  background: #eef1f5;
  font-family: "Kanit", "Montserrat", sans-serif;
}

body[data-view="fulfiller-admin"] > .topbar,
body[data-view="dashboard"] > .topbar,
body[data-view="router"] > .topbar,
body[data-view="fulfillers"] > .topbar,
body[data-view="orders"] > .topbar,
body[data-view="admin-module"] > .topbar,
body[data-view="fulfiller-admin"] .site-footer,
body[data-view="dashboard"] .site-footer,
body[data-view="router"] .site-footer,
body[data-view="fulfillers"] .site-footer,
body[data-view="orders"] .site-footer,
body[data-view="admin-module"] .site-footer {
  display: none;
}

body[data-view="fulfiller-admin"] main,
body[data-view="dashboard"] main,
body[data-view="router"] main,
body[data-view="fulfillers"] main,
body[data-view="orders"] main,
body[data-view="admin-module"] main {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

#fulfiller-admin,
.admin-quivers-view {
  width: 100%;
}

.qfa-shell {
  min-height: 100vh;
  color: #39424e;
  background: #eef1f5;
}

.qfa-topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 196px minmax(260px, 1fr) 150px 40px 40px 240px;
  align-items: center;
  gap: 6px;
  height: 56px;
  padding: 0 4px 0 0;
  background: #243d5c;
  color: #fff;
}

.admin-qfa-topbar {
  grid-template-columns: 196px minmax(0, 1fr) 40px 40px 240px;
}

.admin-qfa-shell {
  min-height: 100vh;
}

.admin-qfa-main {
  gap: 26px;
  padding-top: 18px;
}

.admin-qfa-main .admin-trial-banner {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid #2d82b4;
  border-radius: 4px;
  background: #398cc1;
  color: #fff;
  font-size: 14px;
}

.admin-qfa-main .admin-trial-banner strong {
  font-weight: 600;
}

.admin-qfa-main .dashboard-panel {
  display: grid;
  gap: 26px;
}

.admin-qfa-main .dashboard-grid,
.admin-qfa-main .dashboard-grid.lower {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}

.admin-qfa-main .dashboard-card {
  min-height: 0;
  padding: 16px;
  border: 1px solid #d9dfe7;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(30, 44, 58, .04);
}

.admin-qfa-main .dashboard-card.span-2 {
  grid-column: auto;
}

.admin-qfa-main .dashboard-card > strong {
  display: block;
  margin: 8px 0 18px;
  color: #3d464f;
  font-size: 31px;
  font-weight: 300;
}

.admin-qfa-main .dashboard-card p,
.admin-qfa-main .dashboard-card small {
  color: #657384;
}

.admin-qfa-main .card-label {
  color: #3d464f;
  font-size: 21px;
  font-weight: 400;
  text-transform: none;
}

.admin-qfa-main .card-heading strong {
  color: #3d464f;
  font-size: 21px;
  font-weight: 400;
}

.admin-qfa-main .composition-row {
  grid-template-columns: 190px minmax(0, 1fr) 36px;
}

.admin-qfa-main .composition-row i {
  background: #3195c8;
}

.admin-qfa-main .empty-state {
  min-height: 110px;
  place-items: center;
  color: #697786;
  text-align: center;
  box-shadow: none;
}

.admin-qfa-main .metrics {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.admin-qfa-main .metric,
.admin-qfa-main .route-card,
.admin-qfa-main .rules-shell,
.admin-qfa-main .fulfiller-shell,
.admin-qfa-main .orders-table table {
  border: 1px solid #d9dfe7;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(30, 44, 58, .04);
}

.admin-qfa-main .orders-table table,
.admin-qfa-main .fulfiller-table {
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
}

.qfa-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 56px;
  padding: 0 16px;
  color: #fff;
  text-decoration: none;
}

.qfa-brand span {
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-right: 24px solid #1d9bd7;
  transform: rotate(42deg);
}

.qfa-brand strong {
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0;
}

.qfa-search {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  height: 40px;
  padding: 0 14px;
  border: 1px solid #1b344f;
  border-radius: 5px;
  background: #18314d;
}

.qfa-search span,
.qfa-icon {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
}

.qfa-search span::before {
  content: "";
  position: absolute;
  inset: 1px 4px 4px 1px;
  border: 2px solid #a9bdd1;
  border-radius: 50%;
}

.qfa-search span::after {
  content: "";
  position: absolute;
  right: 1px;
  bottom: 1px;
  width: 7px;
  height: 2px;
  background: #a9bdd1;
  transform: rotate(45deg);
}

.qfa-search input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
}

.qfa-search input::placeholder {
  color: #b9cadb;
}

.qfa-setup-pill {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  height: 22px;
  overflow: hidden;
  border: 0;
  border-radius: 3px;
  background: #dfe5ee;
  color: #fff;
  font-size: 12px;
}

.qfa-setup-pill span {
  display: grid;
  place-items: center;
  align-self: stretch;
  background: #3195c8;
}

.qfa-setup-pill i {
  height: 100%;
  background: linear-gradient(90deg, #dfe5ee 50%, #f4f6f8 50%);
}

.qfa-icon-button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.qfa-icon-button:hover,
.qfa-account:hover,
.qfa-icon-button:focus-visible,
.qfa-account:focus-visible {
  background: #315677;
  outline: 0;
}

.qfa-account {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  column-gap: 8px;
  height: 40px;
  padding: 4px 9px;
  border: 0;
  border-radius: 5px;
  background: #2f5b82;
  color: #fff;
  text-align: left;
}

.qfa-account span {
  grid-row: span 2;
  width: 32px;
  height: 32px;
  border: 2px solid #c6d9eb;
  border-radius: 5px;
  background: linear-gradient(135deg, #6ac2e7 0 33%, #fff 33% 47%, #f0a83a 47% 70%, #2a7fb7 70%);
}

.qfa-account strong,
.qfa-account small {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.qfa-account strong {
  font-size: 13px;
}

.qfa-account small {
  color: #d6e2ee;
  font-size: 11px;
}

.qfa-menu {
  position: fixed;
  top: 44px;
  z-index: 80;
  display: grid;
  gap: 2px;
  width: 230px;
  padding: 8px;
  border: 1px solid #d4dce5;
  border-radius: 4px;
  background: #fff;
  color: #39424e;
  box-shadow: 0 12px 30px rgba(24, 42, 61, .18);
}

.qfa-menu.support {
  right: 288px;
}

.qfa-menu.settings {
  right: 248px;
}

.qfa-menu.account {
  right: 8px;
}

.qfa-menu h3 {
  margin: 2px 8px 6px;
  color: #677788;
  font-size: 14px;
  font-weight: 500;
}

.qfa-menu button {
  min-height: 30px;
  border: 0;
  background: transparent;
  color: #39424e;
  text-align: left;
}

.qfa-menu button:hover {
  background: #eef5fb;
}

.qfa-sidebar {
  position: fixed;
  top: 56px;
  bottom: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-rows: 1fr auto auto auto auto;
  width: 196px;
  border-right: 1px solid #d8dde4;
  background: #fff;
}

.qfa-sidebar nav {
  display: block;
  overflow-y: auto;
}

.qfa-sidebar ul {
  display: grid;
  gap: 3px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
}

.qfa-sidebar li {
  display: grid;
  gap: 1px;
}

.qfa-sidebar button {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  min-height: 30px;
  padding: 0 12px;
  border: 0;
  border-left: 4px solid transparent;
  background: transparent;
  color: #33383e;
  font-size: 14px;
  text-align: left;
}

.qfa-sidebar button.child {
  min-height: 25px;
  padding-left: 38px;
  color: #5b6977;
  font-size: 13px;
}

.qfa-sidebar button.active {
  border-left-color: #3195c8;
  background: #dcebf7;
  color: #226d9e;
}

.qfa-sidebar a,
.qfa-sidebar small {
  margin: 0 48px 12px;
  color: #4d5967;
  font-size: 12px;
}

.qfa-sidebar a span {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-left: 7px;
  border-radius: 50%;
  background: #22a36d;
}

.qfa-feedback {
  justify-self: center;
  width: 130px;
  min-height: 29px;
  margin-bottom: 20px;
  border: 1px solid #b8d0e4;
  border-radius: 6px;
  background: #edf6fd;
  color: #3779a7;
  font-size: 13px;
}

.qfa-main {
  display: grid;
  gap: 24px;
  width: calc(100% - 196px);
  margin-left: 196px;
  padding: 20px 28px 36px;
}

.qfa-setup,
.qfa-panel,
.qfa-settings-grid section,
.qfa-empty,
.qfa-app-grid article,
.qfa-table-wrap {
  border: 1px solid #d9dfe7;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(30, 44, 58, .04);
}

.qfa-setup {
  display: grid;
  gap: 0;
  width: min(880px, 100%);
  margin: 0 auto 6px;
  overflow: hidden;
}

.qfa-setup header {
  display: grid;
  gap: 8px;
  padding: 18px 22px 12px;
}

.qfa-setup h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
}

.qfa-progress {
  height: 24px;
  overflow: hidden;
  border-radius: 4px;
  background: #c9ced5;
}

.qfa-progress span {
  display: grid;
  place-items: center;
  height: 100%;
  background: #3195c8;
  color: #fff;
}

.qfa-setup-row {
  display: grid;
  grid-template-columns: 22px 190px 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 31px;
  padding: 0 16px;
  border: 0;
  border-top: 1px solid #e0e5eb;
  background: #fff;
  color: #39424e;
  text-align: left;
}

.qfa-setup-row::after {
  content: ">";
  color: #8996a5;
}

.qfa-setup-row span {
  width: 15px;
  height: 15px;
  border: 1px solid #a8b2be;
  border-radius: 2px;
}

.qfa-setup-row.warning span {
  border: 0;
}

.qfa-setup-row.warning span::before {
  content: "!";
  color: #ba5a43;
  font-weight: 700;
}

.qfa-setup-row strong,
.qfa-setup-row em {
  font-style: normal;
}

.qfa-setup-row em,
.qfa-note {
  color: #657384;
}

.qfa-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 22px;
}

.qfa-card-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.qfa-dashboard-page {
  display: grid;
  gap: 28px;
  width: min(880px, 100%);
  margin: 0 auto;
}

.qfa-dashboard-primary,
.qfa-dashboard-secondary {
  display: grid;
  gap: 22px;
}

.qfa-dashboard-primary {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.qfa-dashboard-page .qfa-panel {
  min-height: 218px;
  padding: 15px 14px;
  border-color: #dce2e8;
  border-radius: 5px;
}

.qfa-dashboard-page .qfa-panel:first-child {
  min-height: 218px;
}

.qfa-dashboard-page .qfa-panel header {
  align-items: start;
  min-height: 28px;
  margin-bottom: 7px;
}

.qfa-dashboard-page .qfa-panel h3 {
  color: #3d464f;
  font-size: 20px;
  font-weight: 300;
}

.qfa-dashboard-page .qfa-money {
  display: block;
  margin: 7px 0 22px;
  color: #3d464f;
  font-size: 28px;
  font-weight: 300;
  line-height: 1.1;
}

.qfa-dashboard-page .qfa-money.small {
  margin-top: 10px;
}

.qfa-dashboard-page .qfa-panel span {
  font-size: 16px;
  font-weight: 300;
}

.qfa-dashboard-page .qfa-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 144px;
  border: 0;
  background: transparent;
  color: #687581;
}

.qfa-dashboard-page .qfa-empty strong {
  font-size: 14px;
  font-weight: 400;
}

.qfa-svg-icon {
  display: inline-grid;
  place-items: center;
  width: 17px;
  height: 17px;
  color: currentColor;
}

.qfa-svg-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.qfa-sidebar .qfa-svg-home {
  flex: 0 0 auto;
  color: currentColor;
}

.qfa-sidebar .qfa-svg-home svg {
  width: 17px;
  height: 17px;
}

.qfa-glyph-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: currentColor;
  font-family: Arial, "Segoe UI Symbol", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

.qfa-glyph-handshake {
  font-size: 13px;
}

.qfa-glyph-inventory {
  font-size: 14px;
  transform: rotate(45deg);
}

.qfa-glyph-apps,
.qfa-glyph-database {
  font-size: 17px;
}

.qfa-glyph-truck {
  font-size: 14px;
}

.qfa-empty .qfa-svg-icon {
  margin-bottom: 0;
  color: #aeb8c3;
}

.qfa-card-menu {
  position: relative;
}

.qfa-card-menu summary {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: #5e6975;
  cursor: pointer;
  list-style: none;
}

.qfa-card-menu summary::-webkit-details-marker {
  display: none;
}

.qfa-card-menu summary span,
.qfa-card-menu summary span::before,
.qfa-card-menu summary span::after {
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
}

.qfa-card-menu summary span {
  position: relative;
}

.qfa-card-menu summary span::before,
.qfa-card-menu summary span::after {
  content: "";
  position: absolute;
  left: 0;
}

.qfa-card-menu summary span::before {
  top: -6px;
}

.qfa-card-menu summary span::after {
  top: 6px;
}

.qfa-card-menu div {
  position: absolute;
  top: 28px;
  right: 0;
  z-index: 25;
  display: grid;
  min-width: 132px;
  padding: 4px 0;
  border: 1px solid #d4dce5;
  border-radius: 3px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(24, 42, 61, .16);
}

.qfa-card-menu button {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 0 10px;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #39424e;
  text-align: left;
}

.qfa-card-menu button:nth-child(2) {
  border-top: 1px solid #e3e8ee !important;
}

.qfa-card-menu button:hover {
  background: #eef5fb !important;
}

.qfa-dashboard-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(20, 34, 48, .28);
}

.qfa-dashboard-modal section {
  width: min(520px, 100%);
  border: 1px solid #d4dce5;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(24, 42, 61, .24);
}

.qfa-dashboard-modal header,
.qfa-dashboard-modal footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid #e3e8ee;
}

.qfa-dashboard-modal footer {
  justify-content: flex-end;
  border-top: 1px solid #e3e8ee;
  border-bottom: 0;
}

.qfa-dashboard-modal h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
}

.qfa-dashboard-modal .qfa-form-grid {
  padding: 16px;
}

.qfa-dashboard-modal button {
  min-height: 30px;
}

.qfa-orders-page {
  display: grid;
  gap: 18px;
}

.qfa-orders-search {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid #d7dee6;
  border-radius: 3px;
  background: #fff;
  color: #7b8794;
}

.qfa-orders-search input {
  min-width: 0;
  border: 0;
  outline: 0;
  color: #39424e;
}

.admin-orders-filters button {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid #d1d9e2;
  border-radius: 3px;
  background: #fff;
  color: #2d668f;
}

.admin-orders-filters button:hover {
  background: #eef5fb;
}

.admin-orders-filters {
  min-height: 0;
}

.qfa-orders-filter-row {
  display: grid;
  grid-template-columns: minmax(220px, 1fr);
}

.qfa-orders-card {
  min-height: 260px;
}

.qfa-orders-table-wrap {
  overflow-x: auto;
  border: 1px solid #d9dfe7;
  border-radius: 4px;
  background: #fff;
}

.qfa-orders-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.qfa-orders-table th,
.qfa-orders-table td {
  padding: 12px;
  border-bottom: 1px solid #e3e8ee;
  color: #39424e;
  text-align: left;
  vertical-align: top;
}

.qfa-orders-table th {
  color: #657384;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.qfa-orders-table tr:last-child td {
  border-bottom: 0;
}

.qfa-orders-empty-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 152px;
  color: #697786;
  font-weight: 400;
}

@media (min-width: 1180px) {
  .qfa-dashboard-primary,
  .qfa-dashboard-secondary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .qfa-dashboard-secondary .qfa-panel:last-child {
    grid-column: 1 / -1;
  }
}

.qfa-panel {
  min-height: 140px;
  padding: 16px;
}

.qfa-panel header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.qfa-panel h3,
.qfa-module-heading h2 {
  margin: 0;
  font-weight: 400;
}

.qfa-panel-actions button,
.qfa-module-actions button,
.qfa-toolbar button,
.qfa-app-grid button,
.qfa-modal button,
.qfa-store-hours button {
  min-height: 30px;
  border: 1px solid #c8d5e1;
  border-radius: 4px;
  background: #fff;
  color: #2d668f;
}

.qfa-module-actions button:first-child,
.qfa-toolbar button:first-of-type,
.qfa-app-grid button {
  border-color: #2f91c7;
  background: #2f91c7;
  color: #fff;
}

.qfa-money {
  display: block;
  margin: 12px 0 18px;
  font-size: 31px;
  font-weight: 300;
}

.qfa-money.small {
  font-size: 29px;
}

.qfa-empty {
  display: grid;
  place-items: center;
  min-height: 110px;
  padding: 20px;
  color: #697786;
  text-align: center;
  box-shadow: none;
}

.qfa-empty p {
  max-width: 560px;
  margin: 4px 0 0;
}

.qfa-empty-icon {
  width: 20px;
  height: 14px;
  border: 1px solid #aeb8c3;
  border-top: 0;
  border-radius: 0 0 2px 2px;
}

.qfa-module-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  min-height: 50px;
}

.qfa-module-heading p {
  margin: 4px 0 0;
  color: #657384;
}

.qfa-module-actions,
.qfa-panel-actions,
.qfa-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

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

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

.qfa-table th,
.qfa-table td {
  padding: 12px;
  border-bottom: 1px solid #e3e8ee;
  text-align: left;
}

.qfa-table th {
  color: #657384;
  font-size: 12px;
  text-transform: uppercase;
}

.qfa-pill {
  display: inline-grid;
  place-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 3px;
  background: #dcebf7;
  color: #226d9e;
  font-size: 12px;
}

.qfa-pill.warning {
  background: #fff1d2;
  color: #8a5a00;
}

.qfa-link-card {
  width: fit-content;
  min-height: 36px;
  border: 1px solid #2f91c7;
  border-radius: 4px;
  background: #2f91c7;
  color: #fff;
}

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

.qfa-app-grid article,
.qfa-settings-grid section {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.qfa-app-grid span {
  color: #657384;
  font-size: 12px;
  text-transform: uppercase;
}

.qfa-app-grid p,
.qfa-store-hours span {
  margin: 0;
  color: #657384;
}

.qfa-settings-grid h3 {
  margin: 0;
  padding-bottom: 6px;
  border-bottom: 1px solid #edf0f4;
  font-weight: 400;
}

.qfa-settings-grid label,
.qfa-form-grid label {
  display: grid;
  gap: 5px;
  color: #657384;
  font-size: 13px;
}

.qfa-settings-grid input,
.qfa-settings-grid select,
.qfa-form-grid input,
.qfa-form-grid select,
.qfa-form-grid textarea,
.qfa-toolbar input {
  width: 100%;
  min-height: 40px;
  border: 1px solid #d7dee6;
  border-radius: 4px;
  background: #fff;
  color: #39424e;
}

.qfa-toggle-row {
  grid-template-columns: auto 1fr;
  align-items: center;
}

.qfa-toggle-row input {
  width: 18px;
  min-height: 18px;
}

.qfa-store-hours {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
  margin-top: 16px;
}

.qfa-store-hours span {
  grid-column: 1 / -1;
}

.qfa-toolbar {
  align-items: center;
  padding: 12px 0;
}

.qfa-toolbar input {
  width: min(300px, 100%);
}

.qfa-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(22, 34, 49, .45);
}

.qfa-modal {
  width: min(620px, 100%);
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0,0,0,.28);
}

.qfa-modal header,
.qfa-modal footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid #e1e7ee;
}

.qfa-modal footer {
  justify-content: flex-end;
  border-top: 1px solid #e1e7ee;
  border-bottom: 0;
}

.qfa-modal h2 {
  margin: 0;
  font-weight: 400;
}

.qfa-modal .qfa-form-grid {
  padding: 18px;
}

.qfa-icon::before {
  content: "";
  position: absolute;
  inset: 3px;
  border: 2px solid currentColor;
  border-radius: 2px;
}

.qfa-icon-home::before {
  content: none;
}

.qfa-icon-home::after {
  content: none;
}

.qfa-icon-bag::before {
  inset: 5px 3px 2px;
  border-radius: 1px;
}

.qfa-icon-bag::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 6px;
  height: 5px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
}

.qfa-icon-users::before,
.qfa-icon-handshake::before {
  inset: 2px 5px 7px;
  border-radius: 50%;
}

.qfa-icon-users::after,
.qfa-icon-handshake::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: 2px;
  height: 7px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 0 0 8px 8px;
}

.qfa-icon-inventory::before,
.qfa-icon-apps::before,
.qfa-icon-database::before {
  inset: 2px;
  border-radius: 1px;
  box-shadow: inset 0 5px 0 transparent, inset 0 6px 0 currentColor, inset 0 10px 0 transparent, inset 0 11px 0 currentColor;
}

.qfa-icon-chart::before {
  inset: auto 2px 2px 2px;
  height: 11px;
  border-width: 0 0 2px 2px;
  border-radius: 0;
  box-shadow: inset 4px -2px 0 -2px currentColor, inset 8px -5px 0 -2px currentColor, inset 12px -8px 0 -2px currentColor;
}

.qfa-icon-wallet::before {
  inset: 4px 2px 3px;
  border-radius: 2px;
}

.qfa-icon-store::before {
  inset: 7px 2px 3px;
  border-radius: 1px;
}

.qfa-icon-store::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 1px;
  right: 1px;
  height: 6px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 2px 2px 0 0;
}

.qfa-icon-tags::before {
  inset: 3px 2px 3px 5px;
  border-radius: 2px;
  transform: rotate(-28deg);
}

.qfa-icon-tags::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 7px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
}

.qfa-icon-truck::before {
  inset: 6px 7px 5px 1px;
  border-radius: 1px;
}

.qfa-icon-truck::after {
  content: "";
  position: absolute;
  right: 1px;
  bottom: 4px;
  width: 7px;
  height: 8px;
  border: 2px solid currentColor;
  border-left: 0;
  border-radius: 0 2px 2px 0;
  box-shadow: -10px 6px 0 -5px currentColor, -1px 6px 0 -5px currentColor;
}

.qfa-icon-dollar::before {
  content: "$";
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  font-size: 17px;
  font-weight: 700;
}

.qfa-icon-locator::before {
  inset: 2px 4px 6px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.qfa-icon-locator::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 7px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}

.qfa-icon-dot::before {
  inset: 5px;
  border-radius: 50%;
}

.qfa-settings-mark {
  font-size: 0;
}

.qfa-settings-mark::before {
  content: "⚙";
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: currentColor;
  font-family: "Segoe UI Symbol", Arial, sans-serif;
  font-size: 18px;
  line-height: 1;
  transform: none;
}

.qfa-glyph {
  display: inline-grid;
  place-items: center;
  font-family: "Segoe UI Symbol", "Arial Unicode MS", Webdings, sans-serif;
  font-size: 15px;
  line-height: 1;
}

.qfa-glyph::before {
  content: none;
}

.qfa-kb-page {
  margin: -18px -22px;
  min-height: calc(100vh - 56px);
  background: #eef3f7;
  color: #243447;
}

.qfa-kb-hero {
  padding: 18px 30px 96px;
  background: #fff;
}

.qfa-kb-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-bottom: 116px;
}

.qfa-kb-nav strong {
  margin-right: 28px;
  color: #4b5661;
  font-size: 38px;
  font-weight: 400;
}

.qfa-kb-nav button {
  margin-left: auto;
  border: 0;
  background: transparent;
  color: #4b5661;
}

.qfa-kb-hero h2 {
  margin: 0 0 12px;
  font-size: 24px;
}

.qfa-kb-search {
  display: grid;
  grid-template-columns: 1fr 42px;
  max-width: 980px;
  box-shadow: 0 7px 16px rgba(27, 45, 65, .08);
}

.qfa-kb-search input,
.qfa-kb-search button {
  min-height: 44px;
  border: 0;
  background: #fff;
}

.qfa-kb-search input {
  padding: 0 12px;
}

.qfa-kb-search button {
  color: #fff;
  background: #e7edf3;
}

.qfa-kb-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 34px;
  width: min(760px, calc(100% - 48px));
  margin: 84px auto;
}

.qfa-kb-cards article {
  min-height: 230px;
  padding: 62px 34px 28px;
  background: #fff;
  text-align: center;
  box-shadow: 0 1px 2px rgba(27, 45, 65, .05);
}

.qfa-kb-cards article:last-child {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(360px, 100%);
}

.qfa-kb-cards strong {
  display: block;
  margin-bottom: 20px;
  font-size: 24px;
}

.qfa-kb-cards p {
  color: #4f5b68;
  line-height: 1.45;
}

.qfa-kb-cards button {
  margin-top: 12px;
}

.qfa-chart::before,
.qfa-database::before,
.qfa-wallet::before {
  border-radius: 50%;
}

@media (max-width: 760px) {
  .qfa-topbar {
    grid-template-columns: 180px 1fr 40px 40px;
    height: auto;
    min-height: 56px;
    padding-right: 8px;
  }

  .qfa-setup-pill,
  .qfa-account {
    display: none;
  }

  .qfa-sidebar {
    position: static;
    width: auto;
    border-right: 0;
  }

  .qfa-sidebar ul {
    display: flex;
    overflow-x: auto;
    padding: 8px;
  }

  .qfa-sidebar li {
    min-width: 140px;
  }

  .qfa-sidebar a,
  .qfa-sidebar small,
  .qfa-feedback {
    display: none;
  }

  .qfa-main {
    width: 100%;
    margin-left: 0;
    padding: 18px;
  }
}

@media (max-width: 560px) {
  .qfa-topbar {
    grid-template-columns: 1fr 40px 40px;
  }

  .qfa-brand strong {
    font-size: 25px;
  }

  .qfa-search {
    grid-column: 1 / -1;
    order: 5;
    margin: 0 8px 8px;
  }

  .qfa-card-grid,
  .qfa-card-grid.two,
  .qfa-app-grid,
  .qfa-settings-grid,
  .qfa-form-grid {
    grid-template-columns: 1fr;
  }

  .qfa-module-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .qfa-setup-row {
    grid-template-columns: 22px 1fr;
  }

  .qfa-setup-row em,
  .qfa-setup-row::after {
    display: none;
  }
}
