.brand-label {
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  background: #000;
  color: #fff;
  border-radius: 4px;
}

.product-preview h6,
.product-preview p {
  color: #111;
  font-size: 1rem;
  line-height: 1.4;
}


.product-card h6 {
  min-height: 2.6rem; /* Keeps layout stable across products */
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-card p {
  color: #ffd900;
}
.swiper-frontpage-products .swiper-slide {
  height: auto;
}

.swiper-slide {
  height: auto;
  display: flex;
}

.product-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background: transparent;
  color: #fff;
  padding: 1.5rem;
  border-radius: 16px;
  min-height: 360px;
  height: 100%;
  text-align: center;
  gap: 0.5rem;
  border: 1px solid #eee;
  
}

.product-card img {
  max-height: 240px;
  object-fit: contain;
  width: 100%;
  margin-bottom: 1rem;
}

.product-card h6 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  color: #000;
  margin-bottom: 0.25rem;
}

.product-card p {
  font-size: 1.1rem;
  font-weight: bold;
  color: #ffd900;
  margin: 0;
}

.product-card img {
  transition: transform 0.3s ease;
}
.product-card:hover img {
  transform: scale(1.04);
}

.brand-badge {
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  z-index: 2;
}

#swiper-wrapper .bg-dark {
  background-color: transparent!important;
}