.header-col .price-stoerer {
  background-color: #F59C00 !important;
}
.price-stoerer {
  position: absolute;
  right: -40px;
  bottom: -40px;
  background: #F59C00 !important;
  color: #fff !important;
  font-weight: bold;
  text-align: center;
  width: 180px;
  height: 180px;
  border-radius: 50% !important;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1.2;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 10;
  transform: rotate(-15deg);
}

.price-stoerer .label {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px; /* gleichmäßiger Abstand */
}

.price-stoerer .price {
  font-size: 60px;
  font-weight: 700;
  margin: -10px 0 0; /* gleicher Abstand oben/unten */
}

.price-stoerer .sub {
  font-size: 14px;
  font-weight: 300;
  margin-top: 0px;
}

.price-stoerer .sub span {
  display: block; /* sorgt für Zeilenumbruch */
}
@media (max-width: 768px) {
  .price-stoerer {
    position: static !important;   /* absolute aufheben */
    margin: 20px auto !important; /* mittig und Abstand */
    transform: none !important;   /* keine Drehung */
  }
}