@import url("https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500&family=Inter:wght@400;500&display=swap");

:root {
  --color-tangerine-tag: #f69251;
  --color-midnight-ink: #181825;
  --color-graphite: #484758;
  --color-deep-slate: #242433;
  --color-carbon: #000000;
  --color-stone: #636363;
  --color-pebble: #949494;
  --color-ash: #8b8b8b;
  --color-fog: #f7f7f7;
  --color-snow: #ffffff;
  --color-border: #e7e4df;
  --font-display: "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius-cards: 24px;
  --radius-buttons: 28px;
  --radius-nav: 32px;
  --radius-badges: 100px;
  --shadow-subtle: rgba(24, 24, 37, 0.12) 0 2px 3px -2px;
  --shadow-button: rgba(0, 0, 0, 0.04) 0 1px 2px 0, rgba(0, 0, 0, 0.02) 0 2px 4px 0, rgba(0, 0, 0, 0.02) 0 4px 8px 0;
  --page-max-width: 1200px;
}

html {
  font-size: 16px;
  min-height: 100%;
  position: relative;
}

body {
  background: var(--color-fog);
  color: var(--color-midnight-ink);
  font-family: var(--font-body);
  letter-spacing: 0;
  margin: 0;
  min-height: 100vh;
}

a {
  color: var(--color-carbon);
}

a:hover {
  color: var(--color-stone);
}

h1,
h2,
h3,
h4,
h5,
h6,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
  color: var(--color-carbon);
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0;
}

.text-muted {
  color: var(--color-stone) !important;
}

.text-dark,
.link-body-emphasis {
  color: var(--color-carbon) !important;
}

.text-primary,
.text-info,
.text-success {
  color: var(--color-carbon) !important;
}

.border-primary,
.border-info,
.border-success {
  border-color: var(--color-border) !important;
}

.bg-light,
.table-light {
  background-color: var(--color-fog) !important;
}

.bg-primary {
  background-color: var(--color-midnight-ink) !important;
}

.bg-success,
.bg-info,
.bg-secondary {
  background-color: var(--color-graphite) !important;
}

.site-header {
  padding: 20px 16px 0;
}

.app-nav {
  background: var(--color-snow);
  border: 0;
  border-radius: var(--radius-nav);
  box-shadow: var(--shadow-subtle);
  margin: 0 auto;
  max-width: var(--page-max-width);
  min-height: 64px;
  padding: 8px 10px;
}

.app-nav-inner {
  flex-wrap: wrap;
  gap: 16px;
}

.navbar-expand.app-nav > .container-fluid.app-nav-inner {
  flex-wrap: wrap;
}

.navbar-brand.app-brand {
  align-items: center;
  color: var(--color-carbon);
  display: inline-flex;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  gap: 10px;
  margin-right: 0;
}

.brand-mark {
  align-items: center;
  background: var(--color-fog);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-carbon);
  display: inline-flex;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.app-nav-links {
  gap: 18px;
}

.navbar .nav-link {
  color: var(--color-stone);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: var(--color-carbon);
}

.navbar-toggler {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-buttons);
  padding: 8px 10px;
}

.app-sidebar-toggle {
  align-items: center;
  background: var(--color-snow);
  height: 40px;
  justify-content: center;
  padding: 0;
  width: 40px;
}

.sidebar-toggle-lines,
.sidebar-toggle-lines::before,
.sidebar-toggle-lines::after {
  background: var(--color-carbon);
  border-radius: 100px;
  display: block;
  height: 2px;
  width: 18px;
}

.sidebar-toggle-lines {
  position: relative;
}

.sidebar-toggle-lines::before,
.sidebar-toggle-lines::after {
  content: "";
  left: 0;
  position: absolute;
}

.sidebar-toggle-lines::before {
  top: -6px;
}

.sidebar-toggle-lines::after {
  top: 6px;
}

.public-container {
  max-width: var(--page-max-width);
  padding-bottom: 64px;
  padding-top: 48px;
}

.app-shell {
  padding: 28px 24px 72px;
}

.app-main {
  min-width: 0;
  padding-bottom: 36px !important;
}

.app-sidebar {
  background: transparent !important;
  border: 0 !important;
  min-height: calc(100vh - 104px);
  position: sticky;
  top: 24px;
}

.app-sidebar-inner {
  background: var(--color-snow);
  border-radius: var(--radius-cards);
  box-shadow: var(--shadow-subtle);
  padding: 18px;
}

.sidebar-heading {
  color: var(--color-stone) !important;
  font-size: 12px;
  font-weight: 500 !important;
  letter-spacing: 0;
}

.app-sidebar .nav-link {
  align-items: center;
  border-radius: var(--radius-buttons);
  color: var(--color-stone);
  display: flex;
  font-size: 14px;
  font-weight: 500;
  gap: 12px;
  padding: 10px 12px;
}

.app-sidebar .nav-link:hover,
.app-sidebar .nav-link.active {
  background: var(--color-fog);
  color: var(--color-carbon);
}

.app-sidebar .nav-link.active .sidebar-glyph {
  background: var(--color-carbon);
  border-color: var(--color-carbon);
  color: var(--color-snow);
}

.sidebar-glyph {
  align-items: center;
  background: var(--color-snow);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-graphite);
  display: inline-flex;
  flex: 0 0 34px;
  font-size: 12px;
  font-weight: 500;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.offcanvas {
  background: var(--color-fog);
}

.offcanvas.app-sidebar-panel {
  max-width: min(86vw, 340px);
}

.offcanvas-header {
  border-bottom-color: var(--color-border) !important;
}

.offcanvas .app-sidebar-inner {
  border-radius: 0;
  box-shadow: none;
  min-height: 100%;
  padding: 16px;
}

.btn {
  border-radius: var(--radius-buttons);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  padding: 12px 22px;
}

.btn-sm {
  font-size: 13px;
  padding: 9px 16px;
}

.btn-primary {
  background: var(--color-tangerine-tag);
  border-color: var(--color-tangerine-tag);
  box-shadow: var(--shadow-button);
  color: var(--color-carbon);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background: #e98643 !important;
  border-color: #e98643 !important;
  color: var(--color-carbon) !important;
}

.btn-outline-primary,
.btn-outline-secondary,
.btn-outline-info,
.btn-outline-danger {
  background: var(--color-snow);
  border-color: var(--color-border);
  color: var(--color-carbon);
}

.btn-outline-primary:hover,
.btn-outline-secondary:hover,
.btn-outline-info:hover,
.btn-outline-danger:hover,
.btn-outline-primary:focus,
.btn-outline-secondary:focus,
.btn-outline-info:focus,
.btn-outline-danger:focus {
  background: var(--color-carbon);
  border-color: var(--color-carbon);
  color: var(--color-snow);
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
  box-shadow: 0 0 0 3px rgba(246, 146, 81, 0.22);
}

.card,
.public-check-panel,
.public-info-tile,
.manager-form,
.bg-white,
.table-responsive.shadow-sm,
.table-responsive.rounded {
  background: var(--color-snow) !important;
  border: 0 !important;
  border-radius: var(--radius-cards) !important;
  box-shadow: var(--shadow-subtle) !important;
}

.card-body {
  padding: 24px;
}

.card-header {
  background: var(--color-snow) !important;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-carbon) !important;
  font-weight: 500;
}

.shadow-sm {
  box-shadow: var(--shadow-subtle) !important;
}

.badge {
  border-radius: var(--radius-badges);
  font-weight: 500;
  letter-spacing: 0;
  padding: 6px 10px;
}

.text-bg-primary,
.badge.bg-primary {
  background: var(--color-carbon) !important;
  color: var(--color-snow) !important;
}

.badge.bg-light {
  background: var(--color-fog) !important;
  color: var(--color-graphite) !important;
}

.alert {
  background: var(--color-snow);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-cards);
  color: var(--color-midnight-ink);
}

.alert-primary,
.alert-info,
.alert-success,
.alert-warning {
  background: var(--color-snow);
  border-color: var(--color-border);
  color: var(--color-midnight-ink);
}

.form-control,
.form-select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--color-ash);
  border-radius: 0;
  color: var(--color-carbon);
  padding: 11px 0;
}

.form-control:focus,
.form-select:focus {
  background: transparent;
  border-color: var(--color-carbon);
}

.form-control::placeholder {
  color: var(--color-pebble);
}

.form-control:disabled {
  background: transparent;
  color: var(--color-stone);
}

.table {
  color: var(--color-midnight-ink);
  margin-bottom: 0;
}

.table > :not(caption) > * > * {
  background-color: transparent;
  border-bottom-color: var(--color-border);
  padding: 14px 16px;
}

.table thead th {
  color: var(--color-stone);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-table-accent-bg: rgba(247, 247, 247, 0.65);
}

.list-group-item {
  background: transparent;
  border-color: var(--color-border);
  color: var(--color-midnight-ink);
}

.public-hero {
  padding: 80px 0 48px;
}

.showroom-hero {
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  min-height: 620px;
  place-items: center;
}

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

.eyebrow,
.section-label {
  align-items: center;
  background: var(--color-snow);
  border-radius: var(--radius-badges);
  color: var(--color-graphite);
  display: inline-flex;
  font-size: 12px;
  font-weight: 500;
  gap: 8px;
  margin-bottom: 16px;
  padding: 7px 13px;
}

.showroom-hero h1 {
  font-size: 70px;
  line-height: 1.15;
  margin-bottom: 18px;
}

.showroom-hero .lead {
  color: var(--color-stone);
  font-size: 18px;
  line-height: 1.55;
  margin-bottom: 28px;
  max-width: 570px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-store-actions .store-badge-link {
  transition: filter 0.16s ease, transform 0.16s ease;
}

.hero-store-actions .store-badge-link:hover,
.hero-store-actions .store-badge-link:focus {
  filter: drop-shadow(0 12px 18px rgba(24, 24, 37, 0.12));
  transform: translateY(-2px);
}

.wallx-static-qr {
  display: grid;
  min-height: 460px;
  place-items: center;
  position: relative;
  width: 100%;
}

.wallx-qr-image {
  display: block;
  filter: drop-shadow(0 28px 38px rgba(24, 24, 37, 0.14));
  height: auto;
  max-width: 430px;
  width: min(100%, 430px);
}

.info-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 24px 0 96px;
}

.public-info-tile {
  padding: 24px;
}

.public-info-tile h2 {
  font-size: 24px;
  line-height: 1.33;
  margin-bottom: 12px;
}

.public-info-tile p {
  color: var(--color-stone);
  line-height: 1.55;
}

.catalog-page {
  margin: 36px auto 84px;
  max-width: 1160px;
}

.catalog-heading {
  margin-bottom: 28px;
  max-width: 720px;
}

.catalog-heading h1 {
  font-size: 50px;
  line-height: 1.14;
  margin-bottom: 14px;
}

.catalog-heading p {
  color: var(--color-stone);
  font-size: 17px;
  line-height: 1.58;
  margin: 0;
}

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

.product-catalog-card {
  background: var(--color-snow);
  border-radius: 18px;
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}

.product-catalog-image {
  align-items: center;
  aspect-ratio: 4 / 3;
  background: var(--color-fog);
  display: flex;
  justify-content: center;
  overflow: hidden;
  text-decoration: none;
}

.product-catalog-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.product-catalog-image span,
.catalog-empty {
  color: var(--color-stone);
}

.product-catalog-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
}

.product-catalog-body h2 {
  font-size: 20px;
  line-height: 1.28;
  margin: 0;
}

.product-catalog-body p {
  color: var(--color-stone);
  display: -webkit-box;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.product-catalog-footer {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: auto;
}

.product-showroom {
  align-items: start;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(260px, 0.88fr) minmax(0, 1.12fr);
  margin: 36px auto 72px;
  max-width: 1080px;
  min-width: 0;
  width: 100%;
}

.product-media-card,
.product-detail-card,
.dealer-card,
.support-card {
  background: var(--color-snow);
  border-radius: var(--radius-cards);
  box-shadow: var(--shadow-subtle);
}

.product-media-card {
  aspect-ratio: 4 / 3;
  background: var(--color-fog);
  max-height: min(560px, calc(100vh - 180px));
  max-width: 100%;
  min-height: 0;
  min-width: 0;
  overflow: hidden;
}

.product-public-image {
  display: block;
  height: 100%;
  max-width: 100%;
  min-height: 0;
  object-fit: contain;
  width: 100%;
}

.product-image-placeholder {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(236, 232, 226, 0.65)),
    var(--color-fog);
  color: var(--color-stone);
  display: flex;
  font-weight: 500;
  height: 100%;
  justify-content: center;
  min-height: 0;
}

.product-detail-card {
  max-width: 100%;
  min-width: 0;
  padding: 36px;
}

.product-detail-card h1 {
  font-size: 50px;
  line-height: 1.2;
  margin-bottom: 18px;
}

.product-description {
  color: var(--color-stone);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.product-meta-list {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.product-meta-row {
  align-items: center;
  border-top: 1px solid var(--color-border);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding-top: 14px;
}

.product-meta-row span {
  color: var(--color-stone);
}

.product-meta-row strong {
  color: var(--color-carbon);
  font-weight: 500;
  text-align: right;
}

.dealer-card {
  margin-top: 28px;
  padding: 24px;
}

.dealer-card h2 {
  font-size: 24px;
  line-height: 1.33;
  margin-bottom: 14px;
}

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

.dealer-field {
  background: var(--color-fog);
  border-radius: 16px;
  padding: 14px;
}

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

.dealer-field span {
  color: var(--color-stone);
  display: block;
  font-size: 12px;
  margin-bottom: 4px;
}

.dealer-field strong,
.dealer-field a {
  color: var(--color-carbon);
  font-weight: 500;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.bonus-app-card {
  align-items: center;
  background: var(--color-snow);
  border-radius: var(--radius-cards);
  box-shadow: var(--shadow-subtle);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin: -36px auto 80px;
  max-width: 1080px;
  padding: 32px;
}

.bonus-app-copy h2 {
  font-size: 32px;
  line-height: 1.22;
  margin-bottom: 14px;
}

.bonus-app-copy p {
  color: var(--color-stone);
  font-size: 16px;
  line-height: 1.58;
  margin-bottom: 10px;
  max-width: 680px;
}

.bonus-app-copy p:last-child {
  margin-bottom: 0;
}

.store-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.store-badge-link {
  display: inline-flex;
  line-height: 0;
  text-decoration: none;
}

.store-badge {
  display: block;
  height: 52px;
  width: auto;
}

.store-badge-small {
  height: 34px;
}

.rate-limit-card {
  background: var(--color-snow);
  border-radius: var(--radius-cards);
  box-shadow: var(--shadow-subtle);
  margin: 56px auto 96px;
  max-width: 720px;
  padding: 40px;
  text-align: center;
}

.rate-limit-card h1 {
  font-size: 44px;
  line-height: 1.18;
  margin-bottom: 16px;
}

.rate-limit-card p {
  color: var(--color-stone);
  font-size: 17px;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 540px;
}

.support-page {
  margin: 36px auto 72px;
  max-width: 920px;
}

.support-hero {
  margin-bottom: 28px;
  text-align: center;
}

.support-hero h1 {
  font-size: 50px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.support-hero p {
  color: var(--color-stone);
  font-size: 17px;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 640px;
}

.support-grid {
  display: grid;
  gap: 18px;
}

.support-card {
  padding: 24px;
}

.support-card h2 {
  font-size: 24px;
  line-height: 1.33;
  margin-bottom: 12px;
}

.support-card p,
.support-card li {
  color: var(--color-stone);
  line-height: 1.6;
}

.support-card ul {
  margin-bottom: 0;
}

.support-contact-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
}

.camera-box {
  aspect-ratio: 4 / 3;
  background: #111;
  border-radius: var(--radius-cards) !important;
  max-width: 520px;
  overflow: hidden;
  width: 100%;
}

.camera-box video {
  object-fit: cover;
}

.client-tile .card,
.dealer-menu-card {
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.client-tile:hover .card,
.dealer-menu-card:hover {
  box-shadow: rgba(24, 24, 37, 0.16) 0 6px 14px -10px !important;
  transform: translateY(-2px);
}

.client-tile-icon {
  align-items: center;
  background: var(--color-fog);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-carbon);
  display: inline-flex;
  font-weight: 500;
  height: 56px;
  justify-content: center;
  width: 56px;
}

.purchase-history-list {
  display: grid;
  gap: 14px;
}

.purchase-history-card {
  background: var(--color-snow);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  box-shadow: var(--shadow-subtle);
  padding: 18px;
}

.purchase-history-date {
  align-items: center;
  color: var(--color-carbon);
  display: flex;
  font-size: 0.75rem;
  font-weight: 500;
  justify-content: space-between;
  line-height: 1.2;
  margin-bottom: 14px;
}

.purchase-history-date span {
  color: var(--color-stone);
}

.purchase-history-date time {
  color: var(--color-carbon);
  text-align: right;
}

.purchase-product-list {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.purchase-product-row {
  align-items: center;
  background: var(--color-snow);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  display: grid;
  gap: 8px;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  padding: 8px;
  text-align: center;
}

.purchase-product-image {
  align-items: center;
  background: var(--color-fog);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  color: var(--color-stone);
  display: flex;
  height: 92px;
  justify-content: center;
  overflow: hidden;
  width: 100%;
}

.purchase-product-image img {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.purchase-product-no-image {
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
}

.purchase-product-details {
  display: grid;
  gap: 2px;
  justify-items: center;
  min-width: 0;
  width: 100%;
}

.purchase-product-name {
  color: var(--color-carbon);
  font-weight: 700;
  line-height: 1.35;
  min-width: 0;
  overflow-wrap: anywhere;
}

.purchase-product-quantity {
  color: var(--color-stone);
  font-size: 0.875rem;
  line-height: 1.25;
}

.manager-form {
  max-width: 460px;
  padding: 24px !important;
}

.manager-product-image-frame {
  align-items: center;
  background: var(--color-fog);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  display: flex;
  justify-content: center;
  min-height: 220px;
  overflow: hidden;
  width: min(100%, 360px);
}

.manager-product-image-frame-sm {
  min-height: 150px;
}

.manager-product-image {
  height: 100%;
  max-height: 260px;
  object-fit: contain;
  width: 100%;
}

.manager-product-image-frame-sm .manager-product-image {
  max-height: 170px;
}

.manager-product-thumb {
  align-items: center;
  background: var(--color-fog);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  display: flex;
  height: 56px;
  justify-content: center;
  overflow: hidden;
  width: 72px;
}

.manager-product-thumb img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.manager-product-thumb span {
  color: var(--color-stone);
  font-size: 12px;
}

.dealer-product-overview {
  align-items: center;
  background: var(--color-snow);
  border-radius: var(--radius-cards);
  box-shadow: var(--shadow-subtle);
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(220px, 360px) minmax(0, 1fr);
  padding: 24px;
}

.dealer-product-image-frame {
  align-items: center;
  aspect-ratio: 4 / 3;
  background: var(--color-fog);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  color: var(--color-stone);
  display: flex;
  justify-content: center;
  overflow: hidden;
  width: 100%;
}

.dealer-product-image {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.dealer-product-summary {
  min-width: 0;
}

.dealer-product-summary h1 {
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.dealer-product-stat {
  border-top: 1px solid var(--color-border);
  padding-top: 18px;
}

.dealer-stock-progress {
  background: rgba(148, 148, 148, 0.2);
  border-radius: 999px;
  height: 10px;
  overflow: hidden;
}

.dealer-stock-progress-bar {
  border-radius: inherit;
  height: 100%;
}

.dealer-stock-progress-green {
  background: #1f9d55;
}

.dealer-stock-progress-yellow {
  background: #f2c94c;
}

.dealer-stock-progress-orange {
  background: #f97316;
}

.dealer-stock-progress-red {
  background: #dc2626;
}

.dealer-stock-empty {
  color: #dc2626;
  font-weight: 500;
  white-space: nowrap;
}

.qr-tile {
  min-height: 3rem;
  overflow-wrap: anywhere;
}

.client-purchase-check {
  align-items: center;
  background: #198754;
  border-radius: 50%;
  color: var(--color-snow);
  display: inline-flex;
  font-size: 12px;
  font-weight: 500;
  height: 22px;
  justify-content: center;
  line-height: 1;
  width: 22px;
}

.static-content {
  margin: 0 auto;
  max-width: 860px;
}

.static-content h1,
.static-content h2 {
  margin-top: 1.5rem;
}

.footer {
  color: var(--color-stone);
  padding: 28px 0 36px;
}

.footer a {
  color: var(--color-carbon);
  text-decoration: none;
}

.footer-inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
}

.footer-copy {
  font-size: 14px;
}

.footer-apps {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.footer-apps span {
  color: var(--color-stone);
  font-size: 12px;
  line-height: 1.35;
}

.form-floating > .form-control-plaintext::placeholder,
.form-floating > .form-control::placeholder {
  color: var(--color-pebble);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder,
.form-floating > .form-control:focus::placeholder {
  text-align: start;
}

@media (max-width: 991.98px) {
  .site-header {
    padding: 12px 12px 0;
  }

  .app-nav {
    border-radius: 24px;
  }

  .app-nav-links {
    flex: 0 0 100%;
    order: 3;
    justify-content: center;
    margin-left: 0 !important;
    width: 100%;
  }

  .app-nav-links .nav-link {
    font-size: 13px;
  }

  .public-container {
    padding-top: 28px;
  }

  .showroom-hero,
  .product-showroom,
  .bonus-app-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .showroom-hero {
    min-height: 0;
    padding-top: 52px;
  }

  .wallx-static-qr {
    min-height: 390px;
  }

  .showroom-hero h1 {
    font-size: 50px;
  }

  .info-grid {
    margin-top: 8px;
    grid-template-columns: 1fr;
    margin-bottom: 64px;
  }
}

@media (max-width: 767.98px) {
  .navbar-expand .app-sidebar-toggle {
    display: inline-flex;
  }

  .public-container,
  .app-shell {
    padding-left: 16px;
    padding-right: 16px;
  }

  .showroom-hero h1,
  .catalog-heading h1,
  .product-detail-card h1,
  .support-hero h1 {
    font-size: 39px;
    line-height: 1.2;
  }

  .showroom-hero .lead,
  .product-description,
  .support-hero p {
    font-size: 16px;
  }

  .product-detail-card,
  .support-card,
  .public-info-tile {
    border-radius: 20px;
  }

  .dealer-product-overview {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .showroom-hero {
    gap: 28px;
    padding-bottom: 22px;
    padding-top: 30px;
  }

  .wallx-static-qr {
    min-height: 280px;
  }

  .wallx-qr-image {
    width: min(100%, 300px);
  }

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

  .product-media-card,
  .product-public-image,
  .product-image-placeholder {
    max-height: min(340px, 58vh);
    min-height: 0;
  }

  .catalog-page {
    margin-bottom: 56px;
  }

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

  .bonus-app-card {
    margin-bottom: 56px;
    padding: 24px;
  }

  .bonus-app-copy h2,
  .rate-limit-card h1 {
    font-size: 32px;
  }

  .store-actions,
  .footer-apps {
    justify-content: flex-start;
  }

  .footer {
    padding-left: 25px;
    padding-right: 25px;
  }

  .store-badge {
    height: 46px;
  }

  .store-badge-small {
    height: 31px;
  }

  .rate-limit-card {
    border-radius: 20px;
    margin: 36px auto 72px;
    padding: 28px 22px;
  }

  .purchase-history-card {
    padding: 14px;
  }

  .purchase-product-image {
    height: 92px;
  }
}
