main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.sticky-top {
  position: sticky;
  top: 70px;
  background-color: black;
  z-index: 999;
  text-align: center;
  padding-bottom: 1rem;
}

.info-text {
  max-width: 1200px;
  margin: 0 auto 1rem;
  padding: 1rem;
  background-color: rgba(226,176,7,0.1);
  border-radius: 8px;
  font-weight: bold;
  color: #E2B007;
}

.info-text a {
  color: #FFD84D;
  text-decoration: underline;
}

.vermietung-button {
  background-color: #E2B007;
  color: black;
  font-weight: bold;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.vermietung-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(226,176,7,0.4);
}

.products-column {
  max-width: 1200px;
  margin: 0 auto 2rem;
  display: block;
}

.car-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.car-container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 280px;
  margin: 1rem;
}

.car-container p {
  text-align: center;
  margin-bottom: 0.5rem;
  color: #E2B007;
  font-weight: 500;
}

.car {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.roofbox {
  position: absolute;
  background-color: rgba(255,255,255,0);
  border-radius: 20px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.car-container:hover .roofbox {
  background-color: rgba(255,255,255,0.3);
  box-shadow: 0 0 15px 5px rgba(255,255,255,0.4);
}

/* Roofbox Positionen */
.roofbox.first, .roofbox.third, .roofbox.fourth, .roofbox.seventh {
  width: 50%; height: 20%; top: 55%; left: 45%; transform: translate(-50%, -50%);
}
.roofbox.second {
  width: 30%; height: 35%; top: 57%; left: 11%; transform: translate(-50%, -50%);
}
.roofbox.fifth {
  width: 60%; height: 20%; top: 40%; left: 40%; transform: translate(-50%, -50%);
}
.roofbox.sixth {
  width: 60%; height: 18%; top: 55%; left: 45%; transform: translate(-50%, -50%);
}
.roofbox.eighth {
  width: 50%; height: 20%; top: 50%; left: 50%; transform: translate(-50%, -50%);
}
