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;
}

.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-table-card {
  padding: 0.35rem 1rem 1rem;
}

.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-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;
}

.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.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-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-list-side {
    align-items: stretch;
  }
}
.calendar-page {
  color: #1f2937;
  padding-bottom: 2rem;
}

.calendar-page h1,
.schedule-equipment-picker h2,
.blocking-card h2 {
  margin: 0;
}

.calendar-subscribe-card,
.calendar-stat-card,
.calendar-card,
.schedule-equipment-picker,
.blocking-card {
  border: 1px solid #e1e7ef;
  border-radius: 0.5rem;
  background: #ffffff;
}

.calendar-subscribe-card {
  overflow: hidden;
}

.calendar-subscribe-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4rem;
  padding: 0.95rem 1.2rem;
  cursor: pointer;
  list-style: none;
}

.calendar-subscribe-summary::-webkit-details-marker {
  display: none;
}

.calendar-subscribe-summary::after {
  width: 1.8rem;
  height: 1.8rem;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid #d9e1ec;
  border-radius: 50%;
  background: #f8fafc;
  color: #1f2937;
  content: "+";
  font-size: 1.05rem;
  font-weight: 800;
}

.calendar-subscribe-card[open] .calendar-subscribe-summary {
  border-bottom: 1px solid #e1e7ef;
}

.calendar-subscribe-card[open] .calendar-subscribe-summary::after {
  content: "-";
}

.calendar-subscribe-summary span,
.calendar-subscribe-summary small {
  display: block;
}

.calendar-subscribe-summary span {
  color: #18243a;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.2;
}

.calendar-subscribe-summary small {
  margin-top: 0.2rem;
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 800;
}

.calendar-subscribe-content {
  padding: 1rem 1.2rem 1.2rem;
}

.calendar-subscribe-card p {
  margin: 0 0 1.05rem;
  color: #64748b;
  font-weight: 600;
}

.calendar-subscribe-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.calendar-subscribe-card .form-label {
  color: #64748b;
  font-size: 0.86rem;
  font-weight: 800;
}

.calendar-subscribe-card .form-control {
  height: 2.6rem;
  font-weight: 600;
}

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

.calendar-stat-card {
  min-height: 5.2rem;
  padding: 0.95rem 1rem;
}

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

.calendar-stat-card strong {
  color: #1f2937;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1;
}

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

.calendar-card {
  overflow: hidden;
}

.calendar-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid #e1e7ef;
}

.calendar-navigation {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.calendar-navigation strong,
.calendar-navigation span {
  display: block;
}

.calendar-navigation strong {
  color: #1f2937;
  font-size: 1.05rem;
  font-weight: 800;
}

.calendar-navigation span {
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 700;
}

.calendar-nav-button {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d9e1ec;
  border-radius: 0.4rem;
  background: #ffffff;
  color: #1f2937;
  font-weight: 800;
  text-decoration: none;
}

.calendar-nav-button:hover {
  background: #f7f9fc;
  color: #1f2937;
}

.apple-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  background: #e1e7ef;
  gap: 1px;
}

.apple-calendar-weekday {
  padding: 0.8rem 0.5rem;
  background: #ffffff;
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
}

.apple-calendar-day {
  min-height: 168px;
  padding: 0.75rem;
  background: #ffffff;
}

.apple-calendar-day.is-muted {
  background: #fbfcfe;
}

.apple-calendar-day-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 1.5rem;
}

.apple-calendar-day-head span {
  color: #1f2937;
  font-size: 0.95rem;
  font-weight: 800;
}

.apple-calendar-day-head small {
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 800;
}

.apple-calendar-day.is-muted .apple-calendar-day-head span,
.apple-calendar-day.is-muted .apple-calendar-day-head small {
  color: #7a8798;
}

.apple-calendar-day.is-today .apple-calendar-day-head span {
  width: 1.55rem;
  height: 1.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #5865dc;
  color: #ffffff;
}

.apple-calendar-events {
  display: grid;
  gap: 0.48rem;
  margin-top: 0.65rem;
}

.apple-calendar-event {
  display: grid;
  gap: 0.08rem;
  min-width: 0;
  padding: 0.55rem 0.62rem;
  border: 1px solid #bfdbfe;
  border-radius: 0.45rem;
  background: #eaf6ff;
  color: #24415f;
  text-decoration: none;
}

.apple-calendar-event:hover {
  background: #dff0ff;
  color: #24415f;
}

.apple-calendar-event.is-blocking {
  border-color: #cfe7ff;
  background: #edf8ff;
  color: #24415f;
}

.apple-calendar-event.is-booking {
  border-color: #ddd6fe;
  background: #f2ecff;
  color: #3f2d77;
}

.apple-calendar-event-title,
.apple-calendar-event-meta {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.apple-calendar-event-title {
  font-size: 0.8rem;
  font-weight: 800;
}

.apple-calendar-event-meta {
  color: inherit;
  font-size: 0.74rem;
  font-weight: 700;
  opacity: 0.74;
}

.schedule-all-day-switch {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding-left: 2.7rem;
}

.schedule-equipment-picker {
  padding: 1rem;
}

.schedule-selected-equipment {
  display: grid;
  gap: 0.5rem;
}

.schedule-selected-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid #e1e7ef;
  border-radius: 0.45rem;
  background: #f8fafc;
}

.schedule-selected-item span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 700;
}

.schedule-selected-item button {
  width: 1.7rem;
  height: 1.7rem;
  flex: 0 0 auto;
  border: 0;
  border-radius: 50%;
  background: #e2e8f0;
  color: #475569;
  font-weight: 800;
  line-height: 1;
}

.schedule-selected-item button:hover {
  background: #cbd5e1;
}

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

.blocking-card {
  display: grid;
  grid-template-columns: 8.5rem minmax(0, 1fr);
  overflow: hidden;
}

.blocking-date-tile {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  padding: 1rem;
  border-right: 1px solid #e1e7ef;
  background: #f8fafc;
}

.blocking-date-tile span,
.blocking-date-tile strong {
  display: block;
}

.blocking-date-tile span {
  color: #1f2937;
  font-size: 1.12rem;
  font-weight: 800;
}

.blocking-date-tile strong {
  color: #64748b;
  font-size: 0.8rem;
  font-weight: 800;
}

.blocking-card-body {
  min-width: 0;
  padding: 1rem;
}

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

.blocking-type {
  display: inline-flex;
  margin-bottom: 0.4rem;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  background: #edf8ff;
  color: #24415f;
  font-size: 0.72rem;
  font-weight: 800;
}

.blocking-card h2 {
  font-size: 1rem;
  font-weight: 800;
}

.blocking-equipment {
  margin-top: 0.75rem;
  color: #1f2937;
  font-weight: 750;
}

.blocking-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.75rem;
}

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

.blocking-list-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 0.35rem;
}

@media (max-width: 1199.98px) {
  .apple-calendar-grid {
    min-width: 1080px;
  }
  .calendar-card {
    overflow-x: auto;
  }
  .calendar-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 575.98px) {
  .calendar-card-header,
  .blocking-card-head {
    align-items: stretch;
    flex-direction: column;
  }
  .calendar-stats-grid {
    grid-template-columns: 1fr;
  }
  .blocking-card {
    grid-template-columns: 1fr;
  }
  .blocking-date-tile {
    border-right: 0;
    border-bottom: 1px solid #e1e7ef;
  }
}
.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-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,
.offer-status.is-order-completed,
.offer-status.is-order-return_pending {
  border-color: #bbf7d0;
  background: #ecfdf3;
  color: #166534;
}

.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,
.offer-status.is-order-completed::before,
.offer-status.is-order-return_pending::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-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-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-packaging-panel {
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
  border: 1px solid #e1e7ef;
  border-radius: 0.5rem;
  background: #fbfcfe;
}

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

.offer-packaging-head span,
.offer-packaging-head small {
  color: #64748b;
  font-size: 0.76rem;
  font-weight: 750;
}

.offer-packaging-head strong {
  display: block;
  margin-top: 0.15rem;
  color: #111827;
  font-size: 0.96rem;
  font-weight: 850;
}

.offer-packaging-hint {
  padding: 0.58rem 0.7rem;
  border: 1px solid #dbeafe;
  border-radius: 0.45rem;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 0.82rem;
  font-weight: 750;
}

.offer-packaging-options {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.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 .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;
}

.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-packaging-options,
  .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-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.65rem;
}

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

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

.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-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(5, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 1rem;
}

.public-stepper-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  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-stepper-item span {
  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-item.is-active {
  border-color: #000000;
  background: #ffffff;
  color: #000000;
}

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

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

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

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

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

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

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

.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", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

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

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

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

.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-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.55rem;
}

.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: 4rem;
  height: 4rem;
  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;
}

.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-address-box {
  padding: 1rem;
  border: 1px solid #dddddd;
  border-radius: 0.5rem;
  background: #f8f8f8;
}

.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-offer-preview {
  margin-top: 1.2rem;
  padding: 1rem;
  border: 1px solid #dddddd;
  border-radius: 0.5rem;
  background: #ffffff;
}

.public-offer-preview h3 {
  margin: 0.25rem 0 0;
  color: #000000;
  font-size: 1.25rem;
  font-weight: 700;
}

.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;
}

.offer-cost-row.is-deposit {
  border-color: #bfdbfe;
  background: #eff6ff;
}

.offer-cost-row.is-deposit strong,
.offer-cost-row.is-deposit b {
  color: #1d4ed8;
}

.offer-summary-breakdown {
  display: grid;
  gap: 0.35rem;
  margin-top: 0.85rem;
  padding: 0.75rem;
  border: 1px solid #e1e7ef;
  border-radius: 0.5rem;
  background: #f8fafc;
}

.offer-summary-breakdown div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  color: #475569;
  font-size: 0.84rem;
  font-weight: 750;
}

.offer-summary-breakdown strong {
  color: #18243a;
  font-weight: 850;
  white-space: nowrap;
}

.offer-summary-breakdown .is-deposit {
  color: #1d4ed8;
}

.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-summary {
  position: sticky;
  top: 5.25rem;
}

.public-summary h2 {
  margin-top: 0.25rem;
  font-size: 1.25rem;
}

.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: "Eiswieser Display", "Source Sans 3", sans-serif;
  font-size: 2.35rem;
}

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

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

.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: "Eiswieser Display", "Source Sans 3", sans-serif;
  font-size: 2.3rem;
  font-weight: 400;
  line-height: 1.08;
  text-transform: uppercase;
}

.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;
  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-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-weight: 700;
  line-height: 1.15;
}

.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;
  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;
}

.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 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-action {
  position: sticky;
  top: 5.25rem;
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
}

.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-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(5, minmax(5.4rem, 1fr));
    overflow-x: auto;
  }
  .public-configurator-hero h1,
  .public-confirm-hero h1,
  .public-thanks-card h1 {
    font-size: 1.75rem;
  }
  .public-hero-badge,
  .public-confirm-total {
    width: 100%;
    text-align: left;
  }
}
.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 .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;
}

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