.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  text-align: center;
  margin: 0;
  margin-top: var(--bottom_gap);
  margin-bottom: var(--bottom_gap);
  gap: 0.5rem;
  justify-content: space-between;
  align-items: center;
}

.footer-wrapper * {
  display: inline-block;
  font-weight: var(--font_weight_regular);
  font-style: normal;
}

.footer-wrapper .impressum-link {
  text-align: right;
  margin: 0;
  margin-left: auto;
  flex-shrink: 0;
}

.footer-wrapper .resource-link {
  text-align: left;
  margin: 0;
  margin-right: auto;
  flex-shrink: 0;
}
.footer-wrapper .total-screw-price {
  margin: 0 auto;
  /* padding: 0; */
  flex-shrink: 0;
}
.footer-wrapper .kirby-link {
  margin: 0 auto;
  flex-shrink: 0;
}

body.has-hover .footer-wrapper .total-screw-price:hover {
  /* rotate the element to the right continuously */
  animation: rotate 2s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.footer-wrapper .daytime-gradient {
  /* width: 100%; */
  margin: 0 auto;
  min-width: 20vw;
  height: 1.5rem;
  min-height: 1rem;
  /* pointer-events: none; */
  transition: background 2s ease-in-out;
  border-radius: 1vw;
  flex-shrink: 0;
}

/* Responsive behavior for smaller screens */
body.isMobile .footer-wrapper {
  justify-content: center;
  gap: 1rem;
}
