  .prod-img {
    border-radius: 20px;
    overflow: hidden; /* schneidet Blur und Bild an den Ecken ab */
  }

  /* Hintergrundebene */
  .prod-img-bg {
    position: absolute;
    inset: 0;
    filter: blur(20px);
    transform: scale(1.1); /* verhindert helle Ränder durch Blur */
    z-index: 0;
  }

  /* Vordergrundebene */
  .prod-img-fg {
    position: absolute;
    z-index: 1;
  }

  .navbar-collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s ease-out;
  }

  .navbar-collapse.show {
    max-height: 120px; /* ausreichend groß wählen */
  }

  .header-mobile {
    height: auto;
  }

  .header-mobile.shrink {
	height: 25px;
  }

  .header-mobile.shrink img {
    height: 20px;
    width: 20px;
  }

  .header-mobile.shrink .header-main {
    font-size: 16px;
  }

  .header-mobile.shrink .header-sub {
    display: none;
  }

