
.lux-card {
  display: block;
  overflow: hidden;
  text-decoration: none;
  color: #0d1b2a;
  transition: 0.25s ease;
}

/* Category page inserate grid only (not product-slider / carousel) */
.category-grid .lux-card {
  border-radius: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-grid .lux-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(12, 19, 29, 0.1);
}

/* IMAGE – höher & edler */
.lux-card-img {
  height: 350px; /* vorher 280px */
  overflow: hidden;
}

.lux-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.30s ease;
}


.lux-card-img img.is-placeholder{
  object-fit:contain;
  padding:15px;
  background:#fff;
}

/* BODY */
.lux-card-body {
  padding: 18px 5px;
}

/* TITLE */
.lux-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
}

/* SPECS */
.lux-card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 22px;
}

.lux-card-specs span i {
  margin-right: 6px;
  font-size: 16px;
}

/* PRICE */
.lux-card-price {
  margin-top: 12px;
  font-weight: 650;
  font-size: 16pt;
}

/* GRID – Cards min 400px, max container 1800px */
.category-grid {
  width: 100%;
  max-width: 1800px; /* WICHTIG: dein Limit */
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr)); /* vorher 360px */
  gap: 32px;
  padding: 30px 20px;
}

.lux-card-country {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #5f6470;
  font-weight: 500;
  margin-top: 12px;
}
.lux-card-country i {
  margin-right: 4px;
}
.lux-card-flag {
  width: 22px;
  height: 16px;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 0 !important;
  flex: 0 0 auto;
  border: 1px solid #d8dde6;
  background: transparent;
  box-shadow: none;
  line-height: 1;
  vertical-align: middle;
}

.lux-card-country img.lux-card-flag {
  border-radius: 0 !important;
}
