:root{ --ms-bottombar-h: 128px; }





#muldenshop-form{ padding-bottom: calc(var(--ms-bottombar-h) + env(safe-area-inset-bottom)); }

/* Honeypot */
.ms-honeypot{
  position:absolute; left:-10000px; top:auto; width:1px; height:1px; overflow:hidden;
}


/* Bottom Bar */

.ms-bottom-bar{
  position: fixed; left: 0; 
  right: 0; 
  bottom: 0; 
  z-index: 9999;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(6px);
  border-top: 1px solid rgba(0,0,0,.12);
}

.btn.btn-labeled-orange {
    padding-top: 0;
    padding-bottom: 0;
    background-color: #FF6D2D;
    border-radius: 20px;
    border: 1px solid #fff;
    opacity: 1;
    color: #fff;
}

.btn-labeled-orange .btn-label {
    position: relative;
    left: -12px;
    display: inline-block;
    padding: 6px 12px;
    background: transparent;
    border-right: 1px solid #fff;
}

.btn-labeled-orange .btn-label.right {
    position: relative;
    left: unset;
    right: -12px;
    border-left: 1px solid #fff;
    border-right: unset;
}

/* Standard (nicht done) */
#ms_stepper .nav-item .step{
  display: inline-block;
  background: transparent;
  background: url("vorschritts_kreis.svg") no-repeat center;
  background-size: cover;
  width: 16px;
  height: 16px;
}

/* Done Steps */
#ms_stepper .nav-item.done .step{
  background: transparent;
  background: url("vorschritts_kreis_done.svg") no-repeat center;
}

/* Optional: Current Step anders */
#ms_stepper .nav-item.is-current .step{
  background: transparent;
  background: url("vorschritts_kreis_done.svg") no-repeat center;
}

#ms_stepper .badge.bg-primary,
#ms_stepper .badge.bg-secondary{
  background-color: transparent !important;
}

.ms-readonly{ background-color: #f8f9fa; }

.ms-summary-table td{padding:.55rem .6rem;}
.ms-summary-table td:first-child{width:55%;}
.ms-summary-table td:last-child{text-align:right; }

/* =========================
   DELUXE BACKGROUND LAYER
========================= */

body{ background: #0b0b0b; }

#ms-bg{
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 1;
  transition: opacity 180ms ease;
}
#ms-bg.is-fading{ opacity: 0; }
#ms-bg .ms-bg__inner{
  position: absolute;
  inset: 0;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

/* =========================
   STEP 1 HERO
========================= */
.ms-step-1 h1 {
  font-family: var(--font-bold);
  font-size: 69px;
  line-height: 69px;
  letter-spacing: -2.5px;
}

.ms-step-1  .list-group .list-group-item {
    background-color: white;
}

/* =========================
   STEP 2 Abfallarten
========================= */

.ms-step .card { 
  --bs-card-border-radius: 0; 
  --bs-card-border-color: #eee;
  border: 0;

}
.ms-step .ms-choice { border-top: 10px solid transparent; }
.ms-step .ms-choice.is-active { border-top: 10px solid var(--color-orange); }

.ms-step .ms-choice.is-active .card {
  border-bottom: 1px solid #FF6D2D;
  -webkit-box-shadow: 0px 12px 34px -4px rgba(0,0,0,0.98); 
  box-shadow: 0px 12px 34px -4px rgba(0,0,0,0.98);
}


.ms-step .card h4 {
  font-size: var(--fs-h4);
  line-height: var(--ls-h4);
  letter-spacing: var(--ls-h4);
  color: #000;
}

.ms-step-3 .ms-choice { 
  border-top: 10px solid transparent; 
}

.ms-step-3 .ms-choice.is-active { 
  border-top: 10px solid var(--color-orange); 
}

/* Card base */
.ms-choice-grid {
  display:grid; 
  grid-template-columns:repeat(1,minmax(0,1fr)); 
  gap:1.5rem;
}
@media (min-width:768px){.ms-choice-grid{grid-template-columns:repeat(3,minmax(0,1fr));}}
.ms-choice{cursor:pointer; user-select:none; position:relative;}
.ms-choice input{position:absolute; opacity:0; pointer-events:none;}
.ms-choice .card{
  transition:all .15s ease; 
  height:100%;
  background-color: #EEE;
}
.ms-choice.is-active .card{border-color: var(--bs-primary); box-shadow:0 0 0 .2rem rgba(13,110,253,.25);}
.ms-choice .ms-card-body{padding:12px; position:relative;}
.ms-choice .ms-total{font-weight:800; margin-top:10px; font-size: 1.05rem;}
.ms-choice .ms-info{margin-top:10px;}
.ms-choice.is-hidden{display:none !important;}

/* =========================
   UX UPGRADE: Popover Content Styling
========================= */
.popover{
  max-width: 360px;
}
.popover .popover-body{
  padding: 10px 12px;
}

.ms-popover-block{
  display:block;
}

.ms-popover-title{
  font-weight: 800;
  font-size: 0.95rem;
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom: 6px;
}

.ms-popover-icon{
  width: 18px; height: 18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
}

.ms-popover-icon.ms-ok{
  background: rgba(25,135,84,.15);
  color: #198754;
}
.ms-popover-icon.ms-no{
  background: rgba(220,53,69,.15);
  color: #dc3545;
}

.ms-popover-list{
  margin: 0;
  padding-left: 18px;
  font-size: 0.92rem;
}
.ms-popover-list li{
  margin: 2px 0;
}

.ms-popover-sep{
  height: 1px;
  background: rgba(0,0,0,.08);
  margin: 10px 0;
}

/* Popover info button */
.ms-info-btn{
  width:34px; 
  height:34px;
  display:inline-flex; 
  align-items:center; 
  justify-content:center;
  border-radius:100%;
  border: 1px solid #696969;
  color: #696969;
}
.ms-info-btn span {font-weight:800; line-height:1;}
