html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: #fbf9f6;
}

main {
  max-height: 100dvh;
  overflow-y: scroll;
}

svg[role=img] {
  fill: currentColor;
  flex-shrink: 0;
}

.brand-freezer-logo {
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-freezer-logo-sidebar {
  width: 2.35rem;
  height: 2.35rem;
}

.menu {
  box-shadow: 5px 0 20px 0 #d7d7d7;
}

.menu .link-body-emphasis,
.menu .nav-link {
  color: #111827;
}

.menu .nav-link:hover,
.menu .nav-link:focus {
  color: #111827;
  background-color: #f3f4f6;
}

.menu .nav-pills .nav-link.active,
.menu .nav-pills .show > .nav-link {
  color: #111827;
  background-color: #e5e7eb;
}

.loading-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100dvw;
  height: 100dvh;
  z-index: 9999;
  cursor: wait;
  display: none;
}
.loading-wrapper.active {
  display: block;
}
.loading-wrapper:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: grey;
  opacity: 0.5;
}
.loading-wrapper .loading-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.loading-wrapper .icecream-loader {
  position: relative;
  width: 100px;
  height: 160px;
}
.loading-wrapper .cone {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) rotate(0deg);
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-top: 100px solid #deb887;
  z-index: 1;
}
.loading-wrapper .scoop {
  position: absolute;
  left: 50%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  transform: translateX(-50%);
  animation: drop 2s infinite;
}
.loading-wrapper .scoop1 {
  background: #472714;
  animation-delay: 0s;
}
.loading-wrapper .scoop2 {
  background: #fd1e5f;
  animation-delay: 0.5s;
}
.loading-wrapper .scoop3 {
  background: #fffbbe;
  animation-delay: 1s;
}
@keyframes drop {
  0% {
    top: -80px;
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  60% {
    top: 40px;
  }
  80% {
    top: 60px;
  }
  100% {
    top: 20px;
    opacity: 0;
  }
}

.resource-page {
  color: #1f2937;
  padding-bottom: 2rem;
}

.resource-page h1,
.resource-page h2 {
  margin: 0;
}

.resource-page h1 {
  color: #18243a;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.15;
}

.resource-page h2 {
  color: #18243a;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.2;
}

.resource-page-head,
.resource-table-card,
.resource-empty-state,
.resource-panel,
.resource-list-card {
  border: 1px solid #e1e7ef;
  border-radius: 0.5rem;
  background: #ffffff;
}

.resource-page-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
}

.resource-filter-form {
  display: grid;
  gap: 0.85rem;
  padding: 1rem 1.15rem;
  border: 1px solid #e1e7ef;
  border-radius: 0.5rem;
  background: #ffffff;
}

.resource-filter-grid {
  display: grid;
  grid-template-columns: minmax(10rem, 0.9fr) minmax(9rem, 0.7fr) minmax(16rem, 1.4fr);
  gap: 0.75rem;
  align-items: end;
}

.resource-filter-grid label {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
  margin: 0;
}

.resource-filter-grid label > span {
  color: #64748b;
  font-size: 0.76rem;
  font-weight: 800;
}

.resource-filter-grid .form-control,
.resource-filter-grid .form-select {
  min-height: 2.55rem;
  border-color: #d9e2ec;
  border-radius: 0.42rem;
  color: #18243a;
  font-size: 0.86rem;
  font-weight: 700;
}

.resource-filter-grid .form-control::placeholder {
  color: #94a3b8;
  font-weight: 650;
}

.resource-filter-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.resource-filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem;
}

.resource-filter-buttons .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.resource-table-card {
  padding: 0.35rem 1rem 1rem;
}

.resource-table-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0 0.55rem;
}

.resource-table-head p {
  margin: 0.2rem 0 0;
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 650;
}

.resource-table-card .table {
  min-width: 960px;
  margin-bottom: 0;
}

.resource-table-card th {
  color: #64748b;
  font-size: 0.76rem;
  font-weight: 800;
}

.resource-empty-state {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem;
}

.resource-empty-state p,
.resource-panel p {
  margin: 0.35rem 0 0;
  color: #64748b;
  font-size: 0.86rem;
  font-weight: 650;
}

.resource-panel {
  padding: 1rem;
}

.resource-title-link {
  color: #18243a;
  font-weight: 850;
  text-decoration: none;
}

.resource-title-link:hover {
  color: #0d6efd;
  text-decoration: underline;
}

.resource-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.resource-kicker {
  display: block;
  margin-bottom: 0.28rem;
  color: #64748b;
  font-size: 0.76rem;
  font-weight: 800;
}

.resource-card-list {
  display: grid;
  gap: 0.85rem;
}

.resource-list-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 12rem;
  gap: 1rem;
  padding: 1rem;
}

.resource-list-card h2 {
  margin-top: 0.2rem;
}

.resource-list-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.85rem;
}

.resource-list-side strong {
  color: #18243a;
  font-size: 1rem;
  font-weight: 800;
}

.resource-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  margin-top: 0.75rem;
}

.resource-chip-row span {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  background: #f1f5f9;
  color: #64748b;
  font-size: 0.76rem;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.resource-state-pill {
  display: inline-flex;
  align-items: center;
  min-height: 1.65rem;
  padding: 0.24rem 0.62rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1;
}

.resource-state-pill.is-ready {
  border: 1px solid #bbf7d0;
  background: #ecfdf3;
  color: #166534;
}

.resource-state-pill.is-muted {
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #475569;
}

.resource-stock-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(18rem, 0.9fr);
  gap: 1rem;
}

.resource-stock-hero {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
}

.equipment-stock-image,
.equipment-stock-image-placeholder {
  width: 5rem;
  height: 5rem;
  border-radius: 0.5rem;
}

.equipment-stock-image {
  object-fit: cover;
  background: #f1f5f9;
}

.equipment-stock-image-placeholder {
  display: grid;
  place-items: center;
  background: #f1f5f9;
  color: #64748b;
}

.resource-stock-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.resource-stock-stat {
  display: grid;
  gap: 0.15rem;
  min-height: 5.8rem;
  padding: 0.9rem;
  border: 1px solid #e1e7ef;
  border-radius: 0.5rem;
  background: #ffffff;
}

.resource-stock-stat strong {
  color: #18243a;
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1;
}

.resource-stock-stat span {
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 850;
}

.resource-stock-stat.is-available {
  border-color: #bbf7d0;
  background: #ecfdf3;
}

.resource-stock-stat.is-reserved {
  border-color: #bfdbfe;
  background: #eff6ff;
}

.resource-stock-stat.is-blocked {
  border-color: #bae6fd;
  background: #f0f9ff;
}

.resource-stock-stat.is-rented {
  border-color: #ddd6fe;
  background: #f5f3ff;
}

.resource-stock-stat.is-warning {
  border-color: #fecaca;
  background: #fef2f2;
}

.flavor-resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
  gap: 0.85rem;
}

.flavor-resource-card {
  display: grid;
  gap: 0.65rem;
  min-width: 0;
  padding: 0.7rem;
  border: 1px solid #e1e7ef;
  border-radius: 0.5rem;
  background: #ffffff;
}

.flavor-resource-body {
  display: grid;
  gap: 0.15rem;
}

.flavor-resource-body strong {
  color: #18243a;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.15;
}

.flavor-resource-body span {
  overflow: hidden;
  color: #64748b;
  font-size: 0.76rem;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.flavor-resource-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.flavor-resource-footer b {
  color: #18243a;
  font-size: 0.86rem;
  font-weight: 850;
  white-space: nowrap;
}

.settings-integration-form {
  display: grid;
  gap: 0.85rem;
}

.settings-subpanel {
  display: grid;
  gap: 0.75rem;
  padding: 0.85rem;
  border: 1px solid #e1e7ef;
  border-radius: 0.5rem;
  background: #f8fafc;
}

.settings-subpanel summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  cursor: pointer;
  list-style: none;
}

.settings-subpanel summary::-webkit-details-marker {
  display: none;
}

.settings-subpanel summary span {
  color: #18243a;
  font-size: 0.9rem;
  font-weight: 850;
}

.settings-subpanel summary small {
  color: #64748b;
  font-size: 0.76rem;
  font-weight: 700;
}

.settings-subpanel summary::after {
  color: #64748b;
  content: "+";
  font-size: 1rem;
  font-weight: 850;
}

.settings-subpanel[open] summary {
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e1e7ef;
}

.settings-subpanel[open] summary::after {
  content: "-";
}

.settings-subpanel p {
  margin: 0.15rem 0 0;
  color: #64748b;
  font-size: 0.84rem;
  font-weight: 650;
}

.settings-subpanel.is-nested {
  margin: 0.75rem 0 0;
  border-style: dashed;
  background: #ffffff;
}

.equipment-thumb {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 0.25rem;
  background: #f0f0f0;
}

.equipment-thumb-placeholder {
  width: 64px;
  height: 64px;
  border-radius: 0.25rem;
  background: #eeeeee;
  color: #777777;
}

.equipment-color-swatch {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  vertical-align: -0.15rem;
}

.equipment-status {
  display: inline-flex;
  align-items: center;
  min-height: 1.65rem;
  padding: 0.24rem 0.62rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
}

.equipment-status::before {
  width: 0.44rem;
  height: 0.44rem;
  flex: 0 0 auto;
  margin-right: 0.42rem;
  border-radius: 50%;
  content: "";
}

.equipment-status-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.equipment-status.is-available {
  border-color: #bbf7d0;
  background: #ecfdf3;
  color: #166534;
}

.equipment-status.is-available::before {
  background: #22c55e;
}

.equipment-status.is-reserved {
  border-color: #bfdbfe;
  background: #eff6ff;
  color: #1d4ed8;
}

.equipment-status.is-reserved::before {
  background: #3b82f6;
}

.equipment-status.is-blocked {
  border-color: #bae6fd;
  background: #f0f9ff;
  color: #0369a1;
}

.equipment-status.is-blocked::before {
  background: #0ea5e9;
}

.equipment-status.is-rented {
  border-color: #ddd6fe;
  background: #f5f3ff;
  color: #6d28d9;
}

.equipment-status.is-rented::before {
  background: #8b5cf6;
}

.equipment-status.is-external {
  border-color: #fed7aa;
  background: #fff7ed;
  color: #c2410c;
}

.equipment-status.is-external::before {
  background: #f97316;
}

.equipment-status.is-defective {
  border-color: #fecaca;
  background: #fef2f2;
  color: #b91c1c;
}

.equipment-status.is-defective::before {
  background: #ef4444;
}

.equipment-status.is-repair {
  border-color: #fde68a;
  background: #fffbeb;
  color: #a16207;
}

.equipment-status.is-repair::before {
  background: #eab308;
}

.equipment-status.is-retired,
.equipment-status.is-neutral {
  border-color: #e2e8f0;
  background: #f8fafc;
  color: #475569;
}

.equipment-status.is-retired::before,
.equipment-status.is-neutral::before {
  background: #94a3b8;
}

.customer-assignment-panel {
  display: grid;
  gap: 0.55rem;
  padding: 0.75rem;
  border: 1px solid #e1e7ef;
  border-radius: 0.5rem;
  background: #f8fafc;
}

.customer-assignment-panel strong,
.customer-assignment-panel span {
  display: block;
}

.customer-assignment-panel span {
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 750;
}

.customer-assignment-panel span.is-warning,
.customer-assignment-panel .shopware-customer-message.is-error {
  color: #b45309;
}

@media (max-width: 767.98px) {
  .resource-page-head,
  .resource-empty-state,
  .resource-panel-head,
  .resource-list-card {
    align-items: stretch;
    grid-template-columns: 1fr;
    flex-direction: column;
  }
  .resource-filter-grid {
    grid-template-columns: 1fr;
  }
  .resource-filter-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .resource-filter-buttons,
  .resource-filter-buttons .btn {
    width: 100%;
  }
  .resource-filter-buttons .btn {
    justify-content: center;
  }
  .resource-stock-layout,
  .resource-stock-stats,
  .resource-stock-hero {
    grid-template-columns: 1fr;
  }
  .resource-list-side {
    align-items: stretch;
  }
}
.offer-page {
  color: #1f2937;
  padding-bottom: 2rem;
}

.offer-page h1,
.offer-page h2 {
  margin: 0;
}

.offer-page-head,
.offer-card,
.offer-form-card,
.offer-summary-panel,
.offer-stat-card {
  border: 1px solid #e1e7ef;
  border-radius: 0.5rem;
  background: #ffffff;
}

.offer-page-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
}

.offer-page-head h1 {
  color: #18243a;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.15;
}

.offer-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.offer-stat-card {
  min-height: 5.1rem;
  padding: 0.95rem 1rem;
}

.offer-stat-card strong,
.offer-stat-card span {
  display: block;
}

.offer-stat-card strong {
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1;
}

.offer-stat-card span {
  margin-top: 0.45rem;
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 750;
}

.offer-empty-state {
  display: grid;
  grid-template-columns: minmax(16rem, 24rem) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.offer-empty-state h2 {
  font-size: 1.25rem;
  font-weight: 800;
}

.offer-empty-state p {
  margin: 0.5rem 0 0;
  color: #64748b;
  font-weight: 650;
}

.offer-template-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(13rem, 1fr));
  gap: 0.75rem;
}

.offer-template-card {
  display: grid;
  gap: 0.45rem;
  min-height: 5.6rem;
  padding: 0.9rem;
  border: 1px solid #e1e7ef;
  border-radius: 0.5rem;
  background: #ffffff;
  color: #1f2937;
  text-decoration: none;
}

.offer-template-card:hover {
  border-color: #bfdbfe;
  background: #f8fbff;
  color: #1f2937;
}

.offer-template-card strong {
  font-size: 0.96rem;
  font-weight: 800;
}

.offer-template-card span {
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 750;
}

.offer-card-list {
  display: grid;
  gap: 0.85rem;
}

.offer-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 12rem;
  gap: 1rem;
  padding: 1rem;
}

.offer-card-kicker,
.offer-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
}

.offer-card-kicker {
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 750;
}

.offer-card h2 {
  margin-top: 0.35rem;
  font-size: 1.16rem;
  font-weight: 800;
}

.offer-card-title {
  margin-top: 0.2rem;
  color: #475569;
  font-weight: 750;
}

.offer-card-meta {
  margin-top: 0.75rem;
}

.offer-card-meta span {
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  background: #f1f5f9;
  color: #64748b;
  font-size: 0.76rem;
  font-weight: 800;
}

.offer-card-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.offer-card-side strong {
  font-size: 1.15rem;
  font-weight: 800;
}

.offer-total-stack {
  display: grid;
  justify-items: end;
  gap: 0.2rem;
  text-align: right;
}

.offer-total-stack span {
  color: #64748b;
  font-size: 0.72rem;
  font-weight: 750;
}

.offer-status-form {
  width: 100%;
}

.offer-status {
  display: inline-flex;
  align-items: center;
  min-height: 1.55rem;
  padding: 0.2rem 0.55rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.offer-status::before {
  width: 0.42rem;
  height: 0.42rem;
  flex: 0 0 auto;
  margin-right: 0.38rem;
  border-radius: 50%;
  content: "";
}

.offer-status.is-draft {
  border-color: #e2e8f0;
  background: #f8fafc;
  color: #475569;
}

.offer-status.is-draft::before {
  background: #94a3b8;
}

.offer-status.is-open {
  border-color: #bfdbfe;
  background: #eff6ff;
  color: #1d4ed8;
}

.offer-status.is-open::before {
  background: #3b82f6;
}

.offer-status.is-warning {
  border-color: #fde68a;
  background: #fffbeb;
  color: #92400e;
}

.offer-status.is-warning::before {
  background: #f59e0b;
}

.offer-status.is-accepted {
  border-color: #bbf7d0;
  background: #ecfdf3;
  color: #166534;
}

.offer-status.is-accepted::before {
  background: #22c55e;
}

.offer-status.is-rejected {
  border-color: #fecaca;
  background: #fef2f2;
  color: #b91c1c;
}

.offer-status.is-rejected::before {
  background: #ef4444;
}

.offer-status.is-order-waiting {
  border-color: #fde68a;
  background: #fffbeb;
  color: #92400e;
}

.offer-status.is-order-waiting::before {
  background: #f59e0b;
}

.offer-status.is-order-picked_up,
.offer-status.is-order-delivered,
.offer-status.is-order-outbound_done,
.offer-status.is-order-at_customer {
  border-color: #ddd6fe;
  background: #f5f3ff;
  color: #6d28d9;
}

.offer-status.is-order-picked_up::before,
.offer-status.is-order-delivered::before,
.offer-status.is-order-outbound_done::before,
.offer-status.is-order-at_customer::before {
  background: #8b5cf6;
}

.offer-status.is-order-return_pending {
  border-color: #bfdbfe;
  background: #eff6ff;
  color: #1d4ed8;
}

.offer-status.is-order-return_pending::before {
  background: #3b82f6;
}

.offer-status.is-order-completed {
  border-color: #bbf7d0;
  background: #ecfdf3;
  color: #166534;
}

.offer-status.is-order-completed::before {
  background: #22c55e;
}

.offer-status.is-integration-pending {
  border-color: #e2e8f0;
  background: #f8fafc;
  color: #475569;
}

.offer-status.is-integration-pending::before {
  background: #94a3b8;
}

.offer-status.is-integration-partial {
  border-color: #fde68a;
  background: #fffbeb;
  color: #92400e;
}

.offer-status.is-integration-partial::before {
  background: #f59e0b;
}

.offer-status.is-integration-completed {
  border-color: #bbf7d0;
  background: #ecfdf3;
  color: #166534;
}

.offer-status.is-integration-completed::before {
  background: #22c55e;
}

.offer-status.is-integration-failed {
  border-color: #fecaca;
  background: #fef2f2;
  color: #b91c1c;
}

.offer-status.is-integration-failed::before {
  background: #ef4444;
}

.offer-logistics-pill {
  display: inline-flex;
  align-items: center;
  min-height: 1.45rem;
  padding: 0.2rem 0.55rem;
  border: 1px solid #dbe4f0;
  border-radius: 999px;
  background: #f8fafc;
  color: #64748b;
  font-size: 0.72rem;
  font-weight: 850;
}

.offer-logistics-pill.is-delivery {
  border-color: #bfdbfe;
  background: #eff6ff;
  color: #1d4ed8;
}

.offer-logistics-pill.is-collection {
  border-color: #fed7aa;
  background: #fff7ed;
  color: #c2410c;
}

.offer-logistics-pill.is-delivery-collection {
  border-color: #c7d2fe;
  background: #eef2ff;
  color: #4338ca;
}

.offer-logistics-pill.is-self {
  border-color: #d1fae5;
  background: #ecfdf5;
  color: #047857;
}

.order-status-form {
  display: grid;
  gap: 0.45rem;
  width: 100%;
}

.shopware-customer-panel {
  display: grid;
  gap: 0.8rem;
  padding: 0.85rem;
  border: 1px solid #e1e7ef;
  border-radius: 0.5rem;
  background: #f8fafc;
}

.shopware-customer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.shopware-customer-head strong {
  display: block;
  margin-top: 0.15rem;
  color: #111827;
  font-size: 0.95rem;
  font-weight: 850;
}

.shopware-customer-results {
  display: grid;
  gap: 0.5rem;
}

.shopware-customer-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid #e1e7ef;
  border-radius: 0.5rem;
  background: #ffffff;
  color: #111827;
  text-align: left;
}

.shopware-customer-result:hover,
.shopware-customer-result:focus {
  border-color: #cbd5e1;
  background: #ffffff;
}

.shopware-customer-result span {
  display: grid;
  gap: 0.15rem;
}

.shopware-customer-result strong {
  font-size: 0.9rem;
  font-weight: 850;
}

.shopware-customer-result small,
.shopware-customer-empty {
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 700;
}

.shopware-customer-result b {
  color: #0f172a;
  font-size: 0.78rem;
  font-weight: 850;
  white-space: nowrap;
}

.shopware-customer-message {
  min-height: 1.2rem;
  color: #166534;
  font-size: 0.8rem;
  font-weight: 750;
}

.shopware-customer-message.is-error {
  color: #b91c1c;
}

.shopware-customer-create {
  padding-top: 0.25rem;
}

.shopware-customer-create summary {
  cursor: pointer;
  color: #111827;
  font-size: 0.86rem;
  font-weight: 850;
}

.offer-wizard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 23rem;
  gap: 1rem;
  align-items: start;
}

.offer-wizard-main {
  min-width: 0;
}

.offer-stepper {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0;
  padding: 1rem;
  border: 1px solid #e1e7ef;
  border-radius: 0.5rem;
  background: #ffffff;
}

.offer-stepper-item {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 0.4rem;
  border: 0;
  background: transparent;
  color: #7a8798;
  font-size: 0.78rem;
  font-weight: 850;
}

.offer-stepper-item::before {
  position: absolute;
  top: 1rem;
  right: 50%;
  left: -50%;
  height: 2px;
  background: #e1e7ef;
  content: "";
}

.offer-stepper-item:first-child::before {
  display: none;
}

.offer-stepper-item span {
  position: relative;
  z-index: 1;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e8edf4;
  color: #64748b;
  font-weight: 800;
}

.offer-stepper-item.is-active,
.offer-stepper-item.is-done {
  color: #0d6efd;
}

.offer-stepper-item.is-active span,
.offer-stepper-item.is-done span {
  background: #0d6efd;
  color: #ffffff;
}

.offer-stepper-item.is-done::before,
.offer-stepper-item.is-active::before {
  background: #0d6efd;
}

.offer-wizard-step {
  display: none;
  margin-top: 1rem;
}

.offer-wizard-step.is-active {
  display: block;
}

.offer-step-card,
.offer-config-summary {
  border: 1px solid #e1e7ef;
  border-radius: 0.5rem;
  background: #ffffff;
}

.offer-step-card {
  min-height: 31rem;
  padding: 1.25rem;
}

.offer-step-head {
  margin-bottom: 1.25rem;
}

.offer-step-head span,
.offer-summary-eyebrow {
  display: block;
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 800;
}

.offer-step-head h2 {
  max-width: 42rem;
  margin-top: 0.45rem;
  color: #111827;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.18;
}

.offer-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.offer-product-card,
.offer-choice-card {
  position: relative;
  display: grid;
  gap: 0.55rem;
  min-width: 0;
  padding: 1rem;
  border: 1px solid #e1e7ef;
  border-radius: 0.5rem;
  background: #ffffff;
  cursor: pointer;
}

.offer-product-card:hover,
.offer-choice-card:hover {
  border-color: #bfdbfe;
  background: #f8fbff;
}

.offer-choice-card.is-disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.offer-configurator .form-control.is-readonly,
.offer-configurator .form-control[readonly] {
  background-color: #f1f5f9;
  border-color: #dbe3ed;
  color: #64748b;
  cursor: not-allowed;
}

.offer-product-card:has(input:checked),
.offer-choice-card:has(input:checked) {
  border-color: #0d6efd;
  box-shadow: 0 0 0 2px rgba(13, 110, 253, 0.12);
}

.offer-product-card input,
.offer-choice-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.has-shopware-customer-lock [data-company-name],
.has-shopware-customer-lock [data-customer-name],
.has-shopware-customer-lock [data-customer-first-name],
.has-shopware-customer-lock [data-customer-last-name],
.has-shopware-customer-lock [data-customer-email],
.has-shopware-customer-lock [data-customer-phone],
.has-shopware-customer-lock [data-shopware-customer-number] {
  background-color: #f1f5f9;
  color: #64748b;
}

.offer-product-badge {
  width: 3.25rem;
  height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: #eff6ff;
  color: #0d6efd;
  font-weight: 800;
}

.offer-product-card strong,
.offer-choice-card strong {
  font-size: 1.1rem;
  font-weight: 800;
}

.offer-product-card small,
.offer-choice-card span,
.offer-inline-control p {
  color: #64748b;
  font-size: 0.84rem;
  font-weight: 650;
}

.transport-warning {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.28rem 0.55rem;
  border: 1px solid #facc15;
  border-radius: 999px;
  background: #fefce8;
  color: #854d0e;
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 800;
}

.offer-product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  margin-top: 0.35rem;
}

.offer-product-meta span {
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  background: #f1f5f9;
  color: #64748b;
  font-size: 0.74rem;
  font-weight: 750;
}

.offer-inline-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 8rem;
  gap: 1rem;
  align-items: end;
  padding: 1rem;
  border: 1px solid #e1e7ef;
  border-radius: 0.5rem;
  background: #f8fafc;
}

.offer-inline-control p {
  margin: 0.25rem 0 0;
}

.offer-date-grid,
.offer-logistics-grid,
.offer-ice-grid,
.offer-discount-grid {
  display: grid;
  gap: 1rem;
}

.flavor-config-panel {
  padding: 1rem;
  border: 1px solid #e1e7ef;
  border-radius: 0.5rem;
  background: #fbfcfe;
}

.flavor-progress {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 0.9rem;
  padding: 0.75rem;
  border: 1px solid #e1e7ef;
  border-radius: 0.5rem;
  background: #ffffff;
}

.flavor-progress-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.flavor-progress-head strong {
  color: #111827;
  font-size: 0.9rem;
  font-weight: 800;
}

.flavor-progress-head span {
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 700;
  text-align: right;
}

.flavor-progress-track {
  height: 0.5rem;
  overflow: hidden;
  border-radius: 999px;
  background: #e8edf4;
}

.flavor-progress-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: #0d6efd;
  transition: width 0.18s ease;
}

.flavor-progress-track.is-complete span {
  background: #22c55e;
}

.flavor-progress-track.is-over span {
  background: #f59e0b;
}

.flavor-selection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(9.6rem, 1fr));
  gap: 0.75rem;
}

.flavor-choice-card {
  position: relative;
  display: grid;
  gap: 0.55rem;
  min-width: 0;
  padding: 0.6rem;
  border: 1px solid #e1e7ef;
  border-radius: 0.5rem;
  background: #ffffff;
}

.flavor-choice-card:hover {
  border-color: #bfdbfe;
  background: #f8fbff;
}

.flavor-choice-card:has(input:checked) {
  border-color: #0d6efd;
  box-shadow: 0 0 0 2px rgba(13, 110, 253, 0.12);
}

.flavor-choice-card.has-quantity {
  border-color: #0d6efd;
  box-shadow: 0 0 0 2px rgba(13, 110, 253, 0.12);
}

.flavor-choice-toggle {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 2;
  cursor: pointer;
}

.flavor-choice-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.flavor-choice-toggle span {
  display: inline-flex;
  align-items: center;
  min-height: 1.45rem;
  padding: 0.18rem 0.42rem;
  border: 1px solid #dbe4f0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #64748b;
  font-size: 0.68rem;
  font-weight: 800;
}

.flavor-choice-toggle input:checked + span {
  border-color: #0d6efd;
  background: #eff6ff;
  color: #1d4ed8;
}

.flavor-choice-media {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 0.42rem;
  background: #f3f6fa;
}

.flavor-choice-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flavor-choice-placeholder {
  display: grid;
  place-items: center;
  width: clamp(2.5rem, 42%, 4rem);
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #ffffff;
  color: #94a3b8;
}

.flavor-choice-body {
  display: grid;
  gap: 0.15rem;
  min-height: 2.9rem;
}

.flavor-choice-card strong {
  color: #111827;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.15;
}

.flavor-choice-body span {
  color: #64748b;
  font-size: 0.74rem;
  font-weight: 700;
}

.flavor-choice-quantity {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr) 2rem;
  gap: 0.35rem;
  align-items: center;
}

.flavor-choice-quantity button {
  width: 2rem;
  height: 2rem;
  border: 1px solid #dbe4f0;
  border-radius: 0.4rem;
  background: #ffffff;
  color: #1f2937;
  font-size: 1rem;
  font-weight: 850;
  line-height: 1;
}

.flavor-choice-quantity button:hover {
  border-color: #bfdbfe;
  background: #f8fbff;
}

.flavor-choice-quantity button:disabled,
.flavor-choice-quantity button.is-disabled {
  border-color: #e5e7eb;
  background: #f3f4f6;
  color: #9ca3af;
  cursor: not-allowed;
  opacity: 0.72;
}

.flavor-choice-quantity button:disabled:hover,
.flavor-choice-quantity button.is-disabled:hover {
  border-color: #e5e7eb;
  background: #f3f4f6;
  color: #9ca3af;
}

.flavor-choice-quantity .form-control {
  min-height: 2rem;
  padding: 0.25rem 0.35rem;
  text-align: center;
}

.flavor-empty-note {
  display: grid;
  gap: 0.15rem;
  padding: 0.9rem;
  border: 1px dashed #cbd5e1;
  border-radius: 0.5rem;
  background: #ffffff;
}

.flavor-empty-note strong {
  color: #111827;
  font-weight: 800;
}

.flavor-empty-note span {
  color: #64748b;
  font-size: 0.86rem;
  font-weight: 650;
}

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

.offer-date-grid h3,
.offer-logistics-block h3 {
  margin: 0 0 0.8rem;
  font-size: 1rem;
  font-weight: 800;
}

.offer-logistics-block {
  padding: 1rem;
  border: 1px solid #e1e7ef;
  border-radius: 0.5rem;
  background: #fbfcfe;
}

.offer-choice-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.offer-address-box {
  padding: 1rem;
  border: 1px solid #e1e7ef;
  border-radius: 0.5rem;
  background: #ffffff;
}

.offer-checkline {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #475569;
  font-size: 0.88rem;
  font-weight: 750;
}

.offer-distance-tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.offer-distance-tools span {
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 700;
}

.offer-distance-tools span.is-error {
  color: #b91c1c;
}

.offer-wizard-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.6rem;
  margin-top: 1rem;
}

.offer-config-summary {
  padding: 1rem;
}

.offer-config-summary-inner {
  position: sticky;
  top: 1rem;
}

.offer-config-summary h2 {
  margin-top: 0.35rem;
  color: #111827;
  font-size: 1.15rem;
  font-weight: 800;
}

.offer-summary-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  margin-top: 0.85rem;
}

.offer-summary-chip-row span {
  padding: 0.28rem 0.62rem;
  border-radius: 999px;
  background: #f1f5f9;
  color: #64748b;
  font-size: 0.76rem;
  font-weight: 750;
}

.offer-cost-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e1e7ef;
}

.offer-cost-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(5.2rem, auto) auto;
  gap: 0.75rem;
  align-items: start;
  padding: 0.55rem 0.65rem;
  border: 1px solid transparent;
  border-radius: 0.45rem;
}

.offer-cost-row strong,
.offer-cost-row span {
  display: block;
}

.offer-cost-row strong {
  font-size: 0.9rem;
  font-weight: 800;
}

.offer-cost-row span {
  color: #64748b;
  font-size: 0.75rem;
  font-weight: 650;
}

.offer-cost-row b {
  justify-self: end;
  align-self: center;
  font-size: 0.86rem;
  font-weight: 800;
  white-space: nowrap;
}

.offer-cost-row.is-head {
  padding-top: 0;
  padding-bottom: 0;
  border: 0;
  color: #64748b;
}

.offer-cost-row.is-head span {
  color: #64748b;
  font-size: 0.68rem;
  font-weight: 850;
}

.offer-cost-row.is-head span:not(:first-child) {
  text-align: right;
}

.offer-cost-row.has-discount {
  border-color: #bbf7d0;
  background: #f0fdf4;
}

.offer-cost-discount {
  justify-self: end;
  align-self: center;
  width: fit-content;
  padding: 0.18rem 0.42rem;
  border-radius: 999px;
  background: #dcfce7;
  color: #166534;
  font-size: 0.72rem;
  font-weight: 850;
  white-space: nowrap;
}

.offer-cost-row:not(.has-discount) .offer-cost-discount {
  padding: 0;
  background: transparent;
  color: #94a3b8;
}

.offer-config-summary .offer-summary-total {
  margin-top: 1rem;
  padding-top: 1rem;
}

.offer-summary-note {
  margin-top: 1rem;
  padding: 0.85rem;
  border-radius: 0.5rem;
  background: #f8fafc;
}

.offer-summary-note strong,
.offer-summary-note span {
  display: block;
}

.offer-summary-note strong {
  font-size: 0.9rem;
  font-weight: 800;
}

.offer-summary-note span {
  margin-top: 0.28rem;
  color: #64748b;
  font-size: 0.76rem;
  font-weight: 650;
  white-space: pre-line;
}

.offer-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 22rem;
  gap: 1rem;
  align-items: start;
}

.offer-form-main {
  display: grid;
  gap: 1rem;
}

.offer-form-card,
.offer-summary-panel {
  padding: 1rem;
}

.offer-form-card-head,
.offer-section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.offer-form-card h2,
.offer-section-head h2 {
  color: #18243a;
  font-size: 1.05rem;
  font-weight: 800;
}

.offer-form-card-head span,
.offer-section-head span {
  display: block;
  margin-top: 0.25rem;
  color: #64748b;
  font-size: 0.8rem;
  font-weight: 650;
}

.offer-lines-section {
  padding: 1rem;
  border: 1px solid #e1e7ef;
  border-radius: 0.5rem;
  background: #ffffff;
}

.offer-line-list {
  display: grid;
  gap: 0;
}

.offer-line-item {
  padding: 1rem 0;
  border-top: 1px solid #e1e7ef;
}

.offer-line-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.offer-line-item:last-child {
  padding-bottom: 0;
}

.offer-line-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 0.75rem;
  align-items: end;
}

.offer-line-option {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 0.42rem;
}

.offer-line-fields {
  display: grid;
  grid-template-columns: 7rem 7rem 9rem 7rem 8rem;
  gap: 0.75rem;
  align-items: end;
  margin-top: 0.85rem;
}

.offer-line-total {
  min-height: 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.35rem 0.6rem;
  border-radius: 0.45rem;
  background: #f8fafc;
}

.offer-line-total span {
  color: #64748b;
  font-size: 0.7rem;
  font-weight: 750;
}

.offer-line-total strong {
  font-size: 0.86rem;
  font-weight: 800;
}

.offer-summary-sticky {
  position: sticky;
  top: 1rem;
}

.offer-summary-total {
  padding-bottom: 1rem;
  border-bottom: 1px solid #e1e7ef;
}

.offer-summary-total span,
.offer-summary-lines span {
  display: block;
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 750;
}

.offer-summary-total strong {
  display: block;
  margin-top: 0.25rem;
  color: #18243a;
  font-size: 1.45rem;
  font-weight: 800;
}

.offer-summary-total small,
.public-offer-total small,
.inquiry-offer-sum small {
  display: block;
  margin-top: 0.18rem;
  color: #64748b;
  font-size: 0.74rem;
  font-weight: 750;
}

.offer-summary-lines {
  padding: 0.85rem 0;
  border-bottom: 1px solid #e1e7ef;
}

.offer-summary-lines strong {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.95rem;
  font-weight: 800;
}

@media (max-width: 1199.98px) {
  .offer-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .offer-wizard-grid {
    grid-template-columns: 1fr;
  }
  .offer-config-summary-inner {
    position: static;
  }
  .offer-form-layout {
    grid-template-columns: 1fr;
  }
  .offer-summary-sticky {
    position: static;
  }
}
@media (max-width: 767.98px) {
  .offer-page-head,
  .offer-card,
  .offer-form-card-head,
  .offer-section-head,
  .offer-line-main {
    align-items: stretch;
    grid-template-columns: 1fr;
    flex-direction: column;
  }
  .offer-empty-state,
  .offer-card {
    grid-template-columns: 1fr;
  }
  .offer-card-side {
    align-items: stretch;
  }
  .offer-line-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .offer-stepper {
    overflow-x: auto;
    grid-template-columns: repeat(7, minmax(5rem, 1fr));
  }
  .offer-stepper-item {
    min-width: 5rem;
  }
  .offer-product-grid,
  .offer-date-grid,
  .offer-choice-row,
  .offer-inline-control {
    grid-template-columns: 1fr;
  }
  .offer-cost-row {
    grid-template-columns: minmax(0, 1fr) auto;
  }
  .offer-cost-row.is-head {
    display: none;
  }
  .offer-cost-row > div:first-child {
    grid-column: 1/-1;
  }
  .offer-cost-discount {
    grid-column: 1;
    grid-row: 2;
    justify-self: start;
  }
  .offer-cost-row b {
    grid-column: 2;
    grid-row: 2;
  }
  .offer-step-card {
    min-height: auto;
  }
  .offer-step-head h2 {
    font-size: 1.28rem;
  }
}
@media (max-width: 575.98px) {
  .offer-stats-grid,
  .offer-line-fields {
    grid-template-columns: 1fr;
  }
}
@font-face {
  font-display: swap;
  font-family: "Eiswieser Display";
  font-style: normal;
  font-weight: 400;
  src: url("https://www.eiswieser.de/wp-content/uploads/2024/05/VOIR-48.woff2") format("woff2"), url("https://www.eiswieser.de/wp-content/uploads/2024/05/VOIR-48.woff") format("woff");
}
.public-configurator-shell {
  min-height: 100vh;
  background: #f3f3f3;
  color: #333333;
  font-family: "Source Sans 3", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.55;
}

.public-configurator-topbar {
  position: sticky;
  z-index: 10;
  top: 0;
  border-bottom: 1px solid #dddddd;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.public-brand {
  width: min(1180px, 100% - 2rem);
  min-height: 4.2rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 auto;
  color: #000000;
  font-weight: 700;
  text-decoration: none;
}

.public-brand-logo {
  width: 2.15rem;
  height: 2.35rem;
}

.public-configurator-wrap {
  width: min(1180px, 100% - 2rem);
  margin: 0 auto;
  padding: 1.25rem 0 2rem;
}

.public-configurator-hero,
.public-step-card,
.public-summary,
.public-thanks-card {
  border: 1px solid #dddddd;
  border-radius: 0.5rem;
  background: #ffffff;
}

.public-configurator-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.25rem 1.45rem;
}

.public-configurator-hero > div {
  max-width: 58rem;
}

.public-configurator-hero h1,
.public-thanks-card h1 {
  margin: 0;
  color: #000000;
  font-weight: 400;
  line-height: 1.08;
  text-transform: uppercase;
}

.public-step-card h2,
.public-summary h2 {
  margin: 0;
  color: #000000;
  line-height: 1.15;
}

.public-configurator-hero h1 {
  margin-top: 0.25rem;
  font-family: "Eiswieser Display", "Source Sans 3", sans-serif;
  font-size: 2.85rem;
}

.public-configurator-hero p,
.public-step-head p,
.public-summary p,
.public-thanks-card p {
  margin: 0.45rem 0 0;
  color: #606060;
  font-weight: 400;
}

.public-configurator-hero p {
  font-size: 0.98rem;
}

.public-server-errors {
  margin: 1rem 0;
  padding: 1rem 1.15rem;
  border: 1px solid #fecaca;
  border-radius: 0.6rem;
  background: #fff5f5;
  color: #7f1d1d;
}

.public-server-errors strong {
  display: block;
  font-weight: 800;
}

.public-server-errors ul {
  margin: 0.65rem 0 0;
  padding-left: 1.2rem;
}

.public-server-errors li + li {
  margin-top: 0.25rem;
}

.public-hero-badge {
  min-width: 9rem;
  padding: 1rem;
  border: 1px solid #dddddd;
  border-radius: 0.5rem;
  background: #f3f3f3;
  color: #000000;
  text-align: center;
}

.public-hero-badge strong,
.public-hero-badge span {
  display: block;
}

.public-hero-badge strong {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}

.public-hero-badge span {
  margin-top: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.public-stepper {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 1rem;
}

.public-stepper-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.55rem 0.7rem;
  border: 1px solid #dddddd;
  border-radius: 0.4rem;
  background: #ffffff;
  color: #606060;
  font-size: 0.8rem;
  font-weight: 700;
  text-align: left;
}

.public-step-number {
  width: 1.7rem;
  height: 1.7rem;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f3f3f3;
  color: #606060;
}

.public-stepper-icon {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  color: #737373;
}

.public-stepper-item strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.public-stepper-item.is-active {
  border-color: #000000;
  background: #ffffff;
  color: #000000;
}

.public-stepper-item.is-active .public-step-number,
.public-stepper-item.is-done .public-step-number {
  background: #000000;
  color: #ffffff;
}

.public-stepper-item.is-active .public-stepper-icon,
.public-stepper-item.is-done .public-stepper-icon {
  color: #000000;
}

.public-stepper-item.is-locked,
.public-stepper-item:disabled {
  opacity: 0.48;
  cursor: not-allowed;
}

.public-stepper-item.is-locked .public-step-number,
.public-stepper-item:disabled .public-step-number {
  background: #eeeeee;
  color: #9ca3af;
}

.public-stepper-item.is-locked .public-stepper-icon,
.public-stepper-item:disabled .public-stepper-icon {
  color: #9ca3af;
}

.public-configurator-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 22rem;
  gap: 1rem;
  align-items: start;
  margin-top: 1rem;
}

.public-configurator[data-current-step="1"] .public-configurator-grid,
.public-configurator[data-current-step="6"] .public-configurator-grid {
  grid-template-columns: minmax(0, 46rem);
  justify-content: center;
}

.public-configurator[data-current-step="1"] .public-summary,
.public-configurator[data-current-step="6"] .public-summary {
  display: none;
}

.public-configurator-main {
  display: grid;
  gap: 1rem;
  min-width: 0;
}

.public-step-card,
.public-summary,
.public-thanks-card {
  padding: 1rem;
}

.public-step-card {
  display: none;
}

.public-step-card.is-active {
  display: block;
}

.public-step-head {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 0.85rem;
}

.public-step-head > span {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #000000;
  color: #ffffff;
  font-weight: 700;
}

.public-step-card h2 {
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.15;
  text-transform: none;
}

.public-step-subline {
  max-width: 34rem;
}

.public-guest-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 12rem;
  gap: 1rem;
  align-items: end;
}

.public-quantity-panel {
  grid-template-columns: 1fr;
  gap: 0.55rem;
  align-items: stretch;
  padding: 0.85rem;
  border: 1px solid #dddddd;
  border-radius: 0.5rem;
  background: #f7f7f7;
}

.public-quantity-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.public-quantity-label .form-label {
  margin: 0;
  color: #606060;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.public-configurator-shell .public-quantity-panel .form-control {
  min-height: 4.2rem;
  border-radius: 0.5rem;
  background: #ffffff;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.public-input-hint {
  display: inline-flex;
  margin-left: 0.45rem;
  color: #606060;
  font-size: 0.82rem;
  font-weight: 700;
}

.public-helper-note {
  margin: 0.55rem 0 0;
  color: #606060;
  font-size: 0.92rem;
}

.public-recommendation {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 0.75rem;
  padding: 0.75rem;
  border: 1px solid #dddddd;
  border-radius: 0.5rem;
  background: #f3f3f3;
}

.public-recommendation-compact {
  background: #ffffff;
}

.public-recommendation strong,
.public-recommendation span {
  display: block;
}

.public-recommendation strong {
  font-weight: 700;
}

.public-recommendation span {
  margin-top: 0.2rem;
  color: #606060;
  font-size: 0.84rem;
  font-weight: 500;
}

.public-recommendation .public-mini-kicker {
  margin: 0 0 0.25rem;
  color: #606060;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.public-recommendation-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.45rem;
}

.public-recommendation-meta span {
  margin-top: 0;
  padding: 0.2rem 0.48rem;
  border-radius: 999px;
  background: #ffffff;
  color: #333333;
  font-size: 0.74rem;
  font-weight: 700;
}

.public-product-visual {
  width: 4.85rem;
  height: 4.85rem;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid #dddddd;
  border-radius: 0.5rem;
  background: #ffffff;
  color: #000000;
  overflow: hidden;
}

.public-configurator-shell .public-product-visual img {
  width: auto;
  height: auto;
  max-width: 3.25rem;
  max-height: 3.75rem;
  display: block;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.public-freezer-visual {
  position: relative;
  width: 2.8rem;
  height: 2.4rem;
  display: block;
  border: 0.16rem solid #111111;
  border-radius: 0.38rem 0.38rem 0.2rem 0.2rem;
  background: linear-gradient(180deg, #ffffff 0 43%, #d7eef8 43% 48%, #f1f1f1 48% 100%);
  box-shadow: inset 0 -0.35rem 0 rgba(0, 0, 0, 0.07);
}

.public-freezer-visual::before,
.public-freezer-visual::after {
  content: "";
  position: absolute;
  background: #111111;
}

.public-freezer-visual::before {
  left: 0.25rem;
  right: 0.25rem;
  top: 0.55rem;
  height: 0.12rem;
}

.public-freezer-visual::after {
  left: 0.55rem;
  right: 0.55rem;
  bottom: -0.32rem;
  height: 0.18rem;
  border-radius: 999px;
}

.public-availability {
  display: grid;
  gap: 0.15rem;
  margin-top: 0.8rem;
  padding: 0.85rem;
  border: 1px solid #dddddd;
  border-radius: 0.5rem;
  background: #ffffff;
}

.public-availability strong,
.public-availability span {
  display: block;
}

.public-availability strong {
  color: #000000;
  font-weight: 700;
}

.public-availability span {
  color: #606060;
  font-size: 0.88rem;
}

.public-availability.is-available {
  border-color: #28a745;
  background: #f1fbf4;
}

.public-availability.is-unavailable {
  border-color: #dc3545;
  background: #fff5f5;
}

.public-availability-alternative {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.75rem;
  padding: 1rem;
  border: 1px solid #93c5fd;
  border-radius: 0.5rem;
  background: #eff6ff;
}

.public-availability-alternative > div {
  display: grid;
  gap: 0.2rem;
}

.public-availability-alternative strong {
  color: #1d4ed8;
  font-weight: 800;
}

.public-availability-alternative span {
  color: #334155;
  font-size: 0.9rem;
}

.public-availability-alternative .btn {
  flex: 0 0 auto;
}

@media (max-width: 575.98px) {
  .public-availability-alternative {
    align-items: stretch;
    flex-direction: column;
  }
  .public-availability-alternative .btn {
    width: 100%;
  }
}
.public-address-box {
  padding: 1rem;
  border: 1px solid #dddddd;
  border-radius: 0.5rem;
  background: #f8f8f8;
}

.public-transport-dimensions {
  padding: 0.85rem 1rem;
  border: 1px solid #dbeafe;
  border-radius: 0.5rem;
  background: #eff6ff;
}

.public-transport-dimensions strong {
  display: block;
  color: #1d4ed8;
  font-size: 0.86rem;
  font-weight: 800;
}

.public-transport-dimensions div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.9rem;
  margin-top: 0.45rem;
}

.public-transport-dimensions span {
  color: #334155;
  font-size: 0.85rem;
  font-weight: 700;
}

.public-transport-dimensions b {
  color: #0f172a;
  font-weight: 900;
}

.public-distance-status {
  margin-top: 0.85rem;
  padding: 0.72rem 0.85rem;
  border: 1px solid #dddddd;
  border-radius: 0.5rem;
  background: #ffffff;
  color: #606060;
  font-size: 0.88rem;
  font-weight: 600;
}

.public-distance-status.is-loading {
  border-color: #d8d8d8;
  background: #f3f3f3;
  color: #333333;
}

.public-distance-status.is-success {
  border-color: #28a745;
  background: #f1fbf4;
  color: #1f7a38;
}

.public-distance-status.is-error {
  border-color: #dc3545;
  background: #fff5f5;
  color: #9f1239;
}

.public-handover-notice {
  margin-top: 0.9rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid #facc15;
  border-radius: 0.5rem;
  background: #fefce8;
  color: #713f12;
  font-size: 0.88rem;
  font-weight: 700;
}

.public-offer-preview {
  margin-top: 1.2rem;
  padding: 1rem;
  border: 1px solid #dddddd;
  border-radius: 0.5rem;
  background: #ffffff;
}

.public-final-step .public-offer-preview {
  margin-top: 0;
}

.public-offer-preview h3 {
  margin: 0.25rem 0 0;
  color: #000000;
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.15;
  text-transform: none;
}

.public-offer-preview .offer-cost-list {
  border-top-color: #dddddd;
}

.public-offer-preview .offer-cost-row strong,
.public-offer-preview .offer-cost-row b {
  color: #000000;
  font-weight: 700;
}

.public-offer-preview .offer-cost-row span {
  color: #606060;
  font-weight: 400;
}

.public-offer-preview .offer-cost-row.is-head span {
  color: #606060;
  font-weight: 700;
}

.public-offer-preview .offer-cost-row .offer-cost-discount {
  color: #166534;
  font-weight: 700;
}

.public-offer-preview .offer-cost-row:not(.has-discount) .offer-cost-discount {
  color: #9ca3af;
}

.public-tooltip-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.public-tooltip-label span {
  width: 1.15rem;
  height: 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #efefef;
  color: #606060;
  font-size: 0.75rem;
  font-weight: 700;
}

.public-offer-preview .offer-summary-chip-row span,
.public-offer-preview .offer-summary-note {
  background: #f3f3f3;
}

.public-offer-total {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #dddddd;
  border-bottom: 0;
}

.public-offer-total span {
  color: #606060;
}

.public-offer-total strong {
  color: #000000;
}

.public-step-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.6rem;
  margin-top: 1.15rem;
}

.public-step-validation {
  margin-top: 1rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid #dbeafe;
  border-radius: 0.45rem;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 0.9rem;
  font-weight: 800;
}

.public-request-confirmation {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: flex-start;
  margin-top: 2rem;
  padding: 1.1rem 1.15rem;
  border: 1px solid #d6e4f5;
  border-radius: 0.65rem;
  background: #f7fbff;
}

.public-request-confirmation .form-check-input {
  width: 1.35rem;
  height: 1.35rem;
  margin-top: 0.28rem;
  border-color: #8fb8ea;
  cursor: pointer;
}

.public-request-confirmation label {
  display: grid;
  gap: 0.28rem;
  margin: 0;
  cursor: pointer;
}

.public-request-confirmation em {
  color: #1d4ed8;
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.public-request-confirmation strong {
  color: #000000;
  font-size: 1rem;
  font-weight: 800;
}

.public-request-confirmation span {
  color: #606060;
  font-size: 0.92rem;
  line-height: 1.45;
}

.public-step-actions .btn:disabled,
.public-step-actions .btn.is-disabled {
  border-color: #dddddd;
  background: #eeeeee;
  color: #9ca3af;
  cursor: not-allowed;
}

.public-summary {
  position: sticky;
  top: 5.25rem;
}

.public-summary h2 {
  margin-top: 0.25rem;
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.15;
  text-transform: none;
}

.public-summary-lines {
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0;
}

.public-summary-lines div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
  background: #f3f3f3;
}

.public-summary-lines span {
  color: #606060;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.public-summary-lines strong {
  color: #000000;
  font-weight: 700;
  text-align: right;
}

.public-thanks-card {
  max-width: 42rem;
  margin: 3rem auto;
  text-align: center;
}

.public-thanks-card h1 {
  margin-top: 0.35rem;
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: 2.25rem;
  font-weight: 850;
  line-height: 1.12;
  text-transform: none;
}

.public-thanks-card .resource-chip-row {
  justify-content: center;
}

.public-confirm-shell {
  display: grid;
  gap: 1rem;
}

.public-confirm-shell,
.public-confirm-shell h1,
.public-confirm-shell h2,
.public-confirm-shell h3,
.public-confirm-shell strong {
  font-family: "Source Sans 3", system-ui, sans-serif;
}

.public-confirm-hero,
.public-confirm-document,
.public-confirm-action {
  border: 1px solid #dddddd;
  border-radius: 0.5rem;
  background: #ffffff;
}

.public-confirm-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.45rem;
}

.public-confirm-hero h1 {
  margin: 0.25rem 0 0;
  color: #000000;
  font-family: "Source Sans 3", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.9rem, 2.8vw, 2.55rem);
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1.12;
  text-transform: none;
}

.public-confirm-hero p {
  margin: 0.35rem 0 0;
  color: #606060;
}

.public-confirm-total,
.public-confirm-sum,
.public-confirm-signed-by {
  display: grid;
  gap: 0.15rem;
  padding: 0.85rem;
  border: 1px solid #dddddd;
  border-radius: 0.5rem;
  background: #f3f3f3;
}

.public-confirm-total {
  min-width: 12rem;
  border-color: #bbf7d0;
  background: #ecfdf3;
  text-align: right;
}

.public-confirm-total span,
.public-confirm-total small,
.public-confirm-sum span,
.public-confirm-sum small,
.public-confirm-signed-by span {
  color: #606060;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.public-confirm-total strong,
.public-confirm-sum strong,
.public-confirm-signed-by strong {
  color: #000000;
  font-size: 1.25rem;
  font-weight: 700;
}

.public-confirm-total span,
.public-confirm-total small,
.public-confirm-sum span,
.public-confirm-sum small {
  color: #166534;
}

.public-confirm-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 22rem;
  gap: 1rem;
  align-items: start;
}

.public-confirm-document {
  display: grid;
  gap: 1rem;
  min-width: 0;
  padding: 1.2rem;
}

.public-confirm-section {
  display: grid;
  gap: 0.55rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #dddddd;
}

.public-confirm-section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.public-confirm-section h2,
.public-confirm-section h3,
.public-confirm-action h2 {
  margin: 0;
  color: #000000;
  font-family: "Source Sans 3", "Helvetica Neue", Arial, sans-serif;
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1.18;
  text-transform: none;
}

.public-confirm-section h2 {
  font-size: 1.45rem;
}

.public-confirm-section h3,
.public-confirm-action h2 {
  font-size: 1.3rem;
}

.public-confirm-action .public-confirm-thanks-title {
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: 1.45rem;
  font-weight: 850;
  line-height: 1.18;
  text-transform: none;
}

.public-confirm-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.public-confirm-meta span {
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: #f3f3f3;
  color: #333333;
  font-size: 0.78rem;
  font-weight: 700;
}

.public-confirm-logistics {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.public-confirm-logistics p,
.public-confirm-closing p,
.public-confirm-action p {
  margin: 0.25rem 0 0;
  color: #606060;
}

.public-confirm-table {
  border: 1px solid #dddddd;
  border-radius: 0.5rem;
  background: #ffffff;
  overflow: hidden;
}

.public-confirm-row {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) 5rem 7rem 6.8rem 7rem;
  gap: 0.75rem;
  padding: 0.85rem;
  border-top: 1px solid #dddddd;
  background: #ffffff;
}

.public-confirm-row:first-child {
  border-top: 0;
}

.public-confirm-row.is-head {
  background: #f8f8f8;
  color: #606060;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.public-confirm-row.has-discount {
  border-color: #bbf7d0;
  background: #f1fbf4;
}

.public-confirm-row strong,
.public-confirm-row span,
.public-confirm-row small {
  display: block;
}

.public-confirm-row strong {
  color: #000000;
  font-weight: 700;
}

.public-confirm-row span,
.public-confirm-row small,
.public-confirm-row div {
  color: #606060;
  font-size: 0.86rem;
}

.public-confirm-discount strong {
  display: inline-flex;
  width: fit-content;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  background: #ecfdf3;
  color: #166534;
  font-size: 0.8rem;
  font-weight: 800;
}

.public-confirm-discount strong:only-child {
  white-space: nowrap;
}

.public-confirm-discount.is-empty strong {
  background: transparent;
  color: #9ca3af;
  padding: 0;
}

.public-confirm-closing {
  grid-template-columns: minmax(0, 1fr) 13rem;
  align-items: start;
}

.public-confirm-sum {
  border-color: #bbf7d0;
  background: #ecfdf3;
}

.public-confirm-action {
  position: sticky;
  top: 5.25rem;
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
}

.public-confirm-cancellation {
  display: grid;
  gap: 0.2rem;
  padding: 0.75rem;
  border: 1px solid #dddddd;
  border-radius: 0.5rem;
  background: #f8f8f8;
}

.public-confirm-cancellation strong {
  color: #000000;
  font-size: 0.92rem;
  font-weight: 700;
}

.public-confirm-cancellation span {
  color: #606060;
  font-size: 0.88rem;
}

.public-confirm-checkbox {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.9rem;
  padding: 0.75rem;
  border: 1px solid #dddddd;
  border-radius: 0.5rem;
  background: #f8f8f8;
  color: #333333;
  font-weight: 700;
}

.public-confirm-checkbox input {
  margin-top: 0.25rem;
}

.public-signature-box {
  margin-top: 1rem;
  border: 1px solid #dddddd;
  border-radius: 0.5rem;
  background: #ffffff;
  overflow: hidden;
}

.public-signature-box.is-invalid {
  border-color: #dc3545;
}

.public-signature-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 0.75rem;
  border-bottom: 1px solid #dddddd;
  background: #f8f8f8;
}

.public-signature-head span {
  color: #000000;
  font-weight: 700;
}

.public-signature-box canvas {
  display: block;
  width: 100%;
  height: 220px;
  background: #ffffff;
  touch-action: none;
}

.public-confirm-signature-image {
  display: block;
  width: 100%;
  max-height: 9rem;
  object-fit: contain;
  padding: 0.85rem;
  border: 1px solid #dddddd;
  border-radius: 0.5rem;
  background: #ffffff;
}

.inquiry-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 20rem;
  gap: 1rem;
  align-items: start;
}

.inquiry-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.inquiry-data-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.inquiry-data-grid > div,
.inquiry-note,
.inquiry-status-meta {
  padding: 0.85rem;
  border-radius: 0.5rem;
  background: #f8fafc;
}

.inquiry-data-grid span,
.inquiry-status-meta span,
.inquiry-offer-sum span {
  display: block;
  color: #64748b;
  font-size: 0.76rem;
  font-weight: 800;
}

.inquiry-data-grid strong {
  display: block;
  margin-top: 0.25rem;
  color: #18243a;
  font-size: 0.92rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.inquiry-note p {
  margin: 0;
}

.inquiry-action-panel > strong,
.inquiry-offer-total,
.inquiry-offer-sum strong {
  color: #18243a;
  font-size: 1.35rem;
  font-weight: 850;
}

.inquiry-value-stack {
  display: grid;
  gap: 0.18rem;
  justify-items: start;
  padding: 0.85rem;
  border: 1px solid #e1e7ef;
  border-radius: 0.5rem;
  background: #f8fafc;
}

.inquiry-value-stack span,
.inquiry-value-stack small {
  display: block;
  color: #64748b;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.25;
}

.inquiry-value-stack strong {
  display: block;
  color: #18243a;
  font-size: 1.35rem;
  font-weight: 850;
  line-height: 1.15;
}

.inquiry-action-buttons {
  display: grid;
  gap: 0.5rem;
}

.inquiry-status-meta {
  display: grid;
  gap: 0.35rem;
}

.integration-summary {
  display: grid;
  gap: 0.5rem;
  padding: 0.85rem;
  border: 1px solid #e1e7ef;
  border-radius: 0.5rem;
  background: #ffffff;
}

.inquiry-signature-preview {
  display: block;
  width: 100%;
  max-height: 8rem;
  object-fit: contain;
  padding: 0.75rem;
  border: 1px solid #e1e7ef;
  border-radius: 0.5rem;
  background: #ffffff;
}

.inquiry-offer-document {
  display: grid;
  gap: 1rem;
}

.inquiry-offer-text {
  max-width: 58rem;
  color: #475569;
  font-size: 0.9rem;
  font-weight: 650;
}

.inquiry-offer-text p,
.inquiry-offer-footer p {
  margin: 0;
}

.inquiry-offer-table {
  border: 1px solid #e1e7ef;
  border-radius: 0.5rem;
  overflow: hidden;
}

.inquiry-offer-row {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) 7rem 8rem 7rem 8rem;
  gap: 0.75rem;
  align-items: start;
  padding: 0.85rem 1rem;
  border-top: 1px solid #e1e7ef;
}

.inquiry-offer-row:first-child {
  border-top: 0;
}

.inquiry-offer-row.is-head {
  background: #f8fafc;
  color: #64748b;
  font-size: 0.76rem;
  font-weight: 850;
}

.inquiry-offer-row strong,
.inquiry-offer-row span,
.inquiry-offer-row small {
  display: block;
}

.inquiry-offer-row strong {
  color: #18243a;
  font-size: 0.92rem;
  font-weight: 850;
}

.inquiry-offer-row span,
.inquiry-offer-row small {
  margin-top: 0.25rem;
  color: #64748b;
  font-size: 0.76rem;
  font-weight: 650;
}

.inquiry-offer-row > div:not(:first-child) {
  color: #334155;
  font-size: 0.86rem;
  font-weight: 750;
}

.inquiry-offer-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 14rem;
  gap: 1rem;
  align-items: end;
  padding-top: 1rem;
  border-top: 1px solid #e1e7ef;
}

.inquiry-offer-sum {
  text-align: right;
}

@media (max-width: 991.98px) {
  .inquiry-detail-grid,
  .inquiry-info-grid,
  .public-confirm-grid {
    grid-template-columns: 1fr;
  }
  .public-configurator-grid {
    grid-template-columns: 1fr;
  }
  .public-summary,
  .public-confirm-action {
    position: static;
  }
}
@media (max-width: 767.98px) {
  .public-configurator-hero,
  .public-confirm-hero,
  .public-step-head,
  .public-guest-control,
  .public-step-actions,
  .inquiry-data-grid,
  .inquiry-offer-footer,
  .public-confirm-logistics,
  .public-confirm-closing {
    grid-template-columns: 1fr;
    align-items: stretch;
    flex-direction: column;
  }
  .offer-choice-row {
    grid-template-columns: 1fr;
  }
  .inquiry-offer-row,
  .public-confirm-row {
    grid-template-columns: 1fr;
  }
  .inquiry-offer-row.is-head,
  .public-confirm-row.is-head {
    display: none;
  }
  .inquiry-offer-sum {
    text-align: left;
  }
  .public-stepper {
    grid-template-columns: repeat(6, minmax(5.4rem, 1fr));
    overflow-x: auto;
  }
  .public-configurator-hero h1,
  .public-confirm-hero h1,
  .public-thanks-card h1 {
    font-size: 2rem;
  }
  .public-step-card h2 {
    font-size: 1.3rem;
  }
  .public-hero-badge,
  .public-confirm-total {
    width: 100%;
    text-align: left;
  }
}
@media (max-width: 575.98px) {
  .public-stepper {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.35rem;
    overflow-x: visible;
  }
  .public-stepper-item {
    justify-content: center;
    min-height: 2.85rem;
    padding: 0.45rem 0.35rem;
    gap: 0.25rem;
  }
  .public-stepper-item strong {
    display: none;
  }
  .public-step-number {
    width: 1.55rem;
    height: 1.55rem;
    font-size: 0.75rem;
  }
  .public-stepper-icon {
    width: 0.9rem;
    height: 0.9rem;
  }
}
.public-configurator-shell .btn-primary {
  border-color: #000000;
  background: #000000;
  color: #ffffff;
}

.public-configurator-shell .btn-primary:hover,
.public-configurator-shell .btn-primary:focus {
  border-color: #333333;
  background: #333333;
  color: #ffffff;
}

.public-configurator-shell .btn-secondary {
  border-color: #999999;
  background: #ffffff;
  color: #000000;
}

.public-configurator-shell .btn-secondary:hover,
.public-configurator-shell .btn-secondary:focus {
  border-color: #000000;
  background: #f3f3f3;
  color: #000000;
}

.public-configurator-shell .form-control,
.public-configurator-shell .form-select {
  min-height: 2.75rem;
  border-color: #dddddd;
  border-radius: 0.4rem;
  color: #000000;
}

.public-configurator-shell .form-control:focus,
.public-configurator-shell .form-select:focus {
  border-color: #000000;
  box-shadow: 0 0 0 0.15rem rgba(0, 0, 0, 0.12);
}

.public-configurator-shell .form-control.is-readonly {
  background: #eeeeee;
  color: #555555;
  cursor: not-allowed;
}

.public-configurator-shell .offer-choice-card {
  border-color: #dddddd;
  border-radius: 0.5rem;
  color: #000000;
}

.public-configurator-shell .offer-choice-card:hover {
  border-color: #999999;
  background: #f8f8f8;
}

.public-configurator-shell .offer-choice-card:has(input:checked) {
  border-color: #000000;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.12);
}

.public-configurator-shell .offer-choice-card strong {
  font-weight: 700;
}

.public-configurator-shell .offer-choice-card span {
  color: #606060;
  font-weight: 400;
}

.public-configurator-shell .transport-warning {
  border-color: #f2c94c;
  background: #fff8dc;
  color: #6b4f00;
}

.public-configurator-shell .flavor-config-panel {
  border-color: #dddddd;
  background: #f8f8f8;
}

.public-configurator-shell .flavor-choice-card {
  border-color: #dddddd;
  color: #000000;
}

.public-configurator-shell .flavor-choice-card:hover {
  border-color: #999999;
  background: #ffffff;
}

.public-configurator-shell .flavor-choice-card:has(input:checked) {
  border-color: #000000;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.12);
}

.public-configurator-shell .flavor-choice-card strong {
  color: #000000;
  font-weight: 700;
}

.public-configurator-shell .flavor-choice-body span {
  color: #606060;
  font-weight: 500;
}

.public-configurator-shell .flavor-progress,
.public-configurator-shell .flavor-choice-media {
  border-color: #dddddd;
  background: #ffffff;
}

.public-configurator-shell .flavor-progress-track span,
.public-configurator-shell .flavor-progress-track.is-complete span,
.public-configurator-shell .flavor-progress-track.is-over span {
  background: #000000;
}

.public-configurator-shell .flavor-choice-toggle span {
  border-color: #dddddd;
  background: rgba(255, 255, 255, 0.94);
  color: #606060;
  font-weight: 700;
}

.public-configurator-shell .flavor-choice-toggle input:checked + span {
  border-color: #000000;
  background: #000000;
  color: #ffffff;
}

.public-configurator-shell .flavor-choice-quantity button {
  border-color: #dddddd;
  color: #000000;
}

.public-configurator-shell .flavor-choice-quantity button:disabled,
.public-configurator-shell .flavor-choice-quantity button.is-disabled {
  border-color: #e1e1e1;
  background: #f0f0f0;
  color: #a0a0a0;
  cursor: not-allowed;
}

.dashboard-page {
  min-width: 0;
}

.dashboard-stat-grid,
.dashboard-top-grid,
.dashboard-main-grid,
.dashboard-bottom-grid {
  display: grid;
  gap: 0.85rem;
}

.dashboard-stat-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.dashboard-main-grid {
  grid-template-columns: minmax(0, 1.35fr) minmax(19rem, 0.65fr);
}

.dashboard-side-stack {
  display: grid;
  align-content: start;
  gap: 0.85rem;
  min-width: 0;
}

.dashboard-stat-card,
.dashboard-panel,
.dashboard-action-card,
.dashboard-warning-card,
.dashboard-order-card,
.dashboard-compact-item,
.dashboard-equipment-card {
  border: 1px solid #e1e7ef;
  border-radius: 0.5rem;
  background: #ffffff;
}

.dashboard-stat-card {
  display: grid;
  gap: 0.25rem;
  min-height: 5.4rem;
  padding: 1rem;
}

.dashboard-stat-card strong {
  color: #18243a;
  font-size: 1.65rem;
  font-weight: 850;
  line-height: 1;
}

.dashboard-stat-card span {
  color: #18243a;
  font-size: 0.86rem;
  font-weight: 850;
}

.dashboard-stat-card small {
  color: #64748b;
  font-size: 0.76rem;
  font-weight: 750;
}

.dashboard-stat-card.is-live {
  border-color: #bfdbfe;
  background: #eff6ff;
}

.dashboard-stat-card.is-return {
  border-color: #c4b5fd;
  background: #f5f3ff;
}

.dashboard-stat-card.is-active {
  border-color: #bbf7d0;
  background: #ecfdf3;
}

.dashboard-stat-card.is-warning {
  border-color: #fed7aa;
  background: #fff7ed;
}

.dashboard-panel {
  display: grid;
  gap: 0.85rem;
  min-width: 0;
  padding: 1rem;
}

.dashboard-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.dashboard-panel-head h2 {
  margin-top: 0.15rem;
}

.dashboard-action-list,
.dashboard-warning-list,
.dashboard-order-list,
.dashboard-compact-list,
.dashboard-equipment-grid {
  display: grid;
  gap: 0.65rem;
}

.dashboard-action-card,
.dashboard-order-card,
.dashboard-compact-item {
  display: grid;
  grid-template-columns: 6.2rem minmax(0, 1fr);
  gap: 0.85rem;
  padding: 0.8rem;
  color: inherit;
  text-decoration: none;
}

.dashboard-action-card:hover,
.dashboard-order-card:hover,
.dashboard-compact-item:hover,
.dashboard-warning-card:hover {
  border-color: #bfdbfe;
  background: #f8fbff;
}

.dashboard-action-time,
.dashboard-order-date {
  display: grid;
  align-content: start;
  gap: 0.18rem;
  padding: 0.55rem;
  border-radius: 0.42rem;
  background: #f1f5f9;
}

.dashboard-action-time strong,
.dashboard-order-date strong {
  color: #18243a;
  font-size: 0.98rem;
  font-weight: 850;
}

.dashboard-action-time span,
.dashboard-order-date span,
.dashboard-action-card p,
.dashboard-order-card p,
.dashboard-compact-item span,
.dashboard-action-card small,
.dashboard-order-card small,
.dashboard-compact-item small {
  margin: 0;
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 750;
}

.dashboard-action-card h3,
.dashboard-order-card h3,
.dashboard-compact-item strong {
  margin: 0.35rem 0 0.15rem;
  color: #18243a;
  font-size: 0.98rem;
  font-weight: 850;
  line-height: 1.2;
}

.dashboard-warning-card {
  display: grid;
  gap: 0.2rem;
  padding: 0.85rem;
  color: inherit;
  text-decoration: none;
}

.dashboard-warning-card strong {
  color: #18243a;
  font-size: 0.94rem;
  font-weight: 850;
}

.dashboard-warning-card span {
  color: #64748b;
  font-size: 0.8rem;
  font-weight: 750;
}

.dashboard-warning-card.is-danger {
  border-color: #fecaca;
  background: #fef2f2;
}

.dashboard-warning-card.is-warning {
  border-color: #fed7aa;
  background: #fff7ed;
}

.dashboard-warning-card.is-info {
  border-color: #bfdbfe;
  background: #eff6ff;
}

.dashboard-compact-item {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.dashboard-compact-item strong {
  display: block;
}

.dashboard-equipment-grid {
  grid-template-columns: repeat(auto-fill, minmax(13rem, 1fr));
}

.dashboard-equipment-card {
  display: grid;
  gap: 0.55rem;
  padding: 0.85rem;
}

.dashboard-equipment-card > strong {
  color: #18243a;
  font-size: 0.95rem;
  font-weight: 850;
}

.dashboard-equipment-card small {
  color: #64748b;
  font-size: 0.76rem;
  font-weight: 750;
}

.dashboard-equipment-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.dashboard-equipment-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  min-height: 1.55rem;
  padding: 0.22rem 0.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1;
}

.dashboard-equipment-pill::before {
  width: 0.42rem;
  height: 0.42rem;
  flex: 0 0 auto;
  border-radius: 50%;
  content: "";
}

.dashboard-equipment-pill b {
  color: inherit;
  font-weight: 900;
}

.dashboard-equipment-pill.is-available {
  border-color: #bbf7d0;
  background: #ecfdf3;
  color: #166534;
}

.dashboard-equipment-pill.is-available::before {
  background: #22c55e;
}

.dashboard-equipment-pill.is-reserved {
  border-color: #bfdbfe;
  background: #eff6ff;
  color: #1d4ed8;
}

.dashboard-equipment-pill.is-reserved::before {
  background: #3b82f6;
}

.dashboard-equipment-pill.is-blocked {
  border-color: #bae6fd;
  background: #f0f9ff;
  color: #0369a1;
}

.dashboard-equipment-pill.is-blocked::before {
  background: #0ea5e9;
}

.dashboard-equipment-pill.is-rented {
  border-color: #ddd6fe;
  background: #f5f3ff;
  color: #6d28d9;
}

.dashboard-equipment-pill.is-rented::before {
  background: #8b5cf6;
}

.dashboard-equipment-pill.is-external {
  border-color: #fed7aa;
  background: #fff7ed;
  color: #c2410c;
}

.dashboard-equipment-pill.is-external::before {
  background: #f97316;
}

.dashboard-equipment-pill.is-defective {
  border-color: #fecaca;
  background: #fef2f2;
  color: #b91c1c;
}

.dashboard-equipment-pill.is-defective::before {
  background: #ef4444;
}

.dashboard-empty-note {
  padding: 1rem;
  border: 1px dashed #cbd5e1;
  border-radius: 0.5rem;
  background: #f8fafc;
  color: #64748b;
  font-size: 0.88rem;
  font-weight: 750;
}

.dashboard-empty-note.is-good {
  border-color: #bbf7d0;
  background: #ecfdf3;
  color: #166534;
}

@media (max-width: 1100px) {
  .dashboard-stat-grid,
  .dashboard-top-grid,
  .dashboard-main-grid,
  .dashboard-bottom-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .dashboard-main-grid .dashboard-panel-wide {
    grid-column: 1/-1;
  }
  .dashboard-side-stack {
    grid-column: 1/-1;
  }
}
@media (max-width: 760px) {
  .dashboard-stat-grid,
  .dashboard-top-grid,
  .dashboard-main-grid,
  .dashboard-bottom-grid {
    grid-template-columns: 1fr;
  }
  .dashboard-action-card,
  .dashboard-order-card {
    grid-template-columns: 1fr;
  }
  .dashboard-panel-head {
    display: grid;
  }
}

/*# sourceMappingURL=app.output.css.map */
