.product.caraflair {
  /*padding-bottom: 300px;*/
}

/* Grid für die Produkte */
.collection-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Grid für Produkte: Wir beginnen mit 1 Spalte auf ganz kleinen Viewports */
.products-grid2 {
  display: grid;
  grid-gap: 20px;
  align-items: stretch; /* gleiche Höhe je Zeile */
}

/* Bis 575px -> 1 Spalte */
@media (max-width: 575px) {
  .products-grid2 {
    grid-template-columns: 1fr;
  }
}
/* Ab 576px -> 2 Spalten */
@media (min-width: 576px) and (max-width: 767px) {
  .products-grid2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Ab 768px -> 3 Spalten */
@media (min-width: 768px) and (max-width: 991px) {
  .products-grid2 {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* Ab 992px -> 4 Spalten (maximal 4) */
@media (min-width: 992px) {
  .products-grid2 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Einzelne Produktkarte */
.product-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  overflow: hidden;
  padding: 15px;
  transition: transform 0.2s ease;
  text-align: center;
}
.product-card:hover {
  transform: translateY(-2px);
}
.product-img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}
.product-title {
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 5px;
}
.product-price {
  font-size: 14px;
  color: #444;
  margin-bottom: 15px;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Format */
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}