/* ---------- Automechanika Störer (cube badge) ---------- */
.m-cube-stage-cube--product {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #00b0eb;
  border-radius: 0 0 10px 10px;
  padding: 0.5rem 1.1rem 0.8rem;
  width: 140px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  /* Sticky: anchored to bottom edge of the fixed navbar */
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1100;
}

.m-cube-stage-cube--product:hover {
  transform: translateX(-50%) translateY(3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

.m-cube-stage-cube--product-logo img {
  width: 110px;
  height: auto;
  display: block;
}

.m-cube-stage-cube--product-text {
  text-align: center;
}

.m-cube-stage-cube--product-text span {
  font-size: 0.78rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.4;
  display: block;
}

@media (max-width: 768px) {
  .m-cube-stage-cube--product {
    width: 110px;
    padding: 0.5rem 0.8rem 0.4rem;
    gap: 5px;
  }
  .m-cube-stage-cube--product-logo img {
    width: 85px;
  }
}
