.mijn-product-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* CARD */
.product-row {
  background: #ffffff;
  border-radius: 10px;
  padding: 20px;
  border: 1px solid #e5e5e5;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.product-row:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* TITEL */
.product-title {
  margin: 0 0 15px;
  font-size: 1.6em;
  font-weight: 700;
  color: #222;
}

/* LAYOUT */
.product-columns {
  display: flex;
  gap: 25px;
  align-items: flex-start;
}

.product-image img {
  width: 260px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

/* SPECIFICATIES */
.product-specs {
  flex: 1;
}

.product-price {
  font-size: 1.8em;
  font-weight: 700;
  color: #e09900; /* MiJi oranje */
  margin-bottom: 15px;
}

.spec-list {
  list-style: none;
   display: grid; 
  grid-template-columns: 400px 1fr;
 row-gap: 6px;
}

.spec-list li {
  /* margin: 6px 0;
  font-size: 0.95em;
  color: #333;
  padding-left: 50px;
  list-style-type: none; */
  display: contents;
}

.spec-list li strong { 
  /* width: 140px; 
  flex-shrink: 0;  */
  font-weight: 600;
}

.spec-list li strong, .spec-list li span { 
  padding: 6px 0; 
  border-bottom: 1px solid #e5e5e5; 
}

.spec-list li:last-child strong, .spec-list li:last-child span { 
  border-bottom: none; 
}

/* BADGES */
.badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8em;
  font-weight: 600;
  margin-right: 8px;
  margin-bottom: 10px;
}

.badge-fuel {
  background: #e09900; /* MiJi oranje */
  color: #fff;
}

.badge-gear {
  background: #222; /* donker */
  color: #fff;
}

/* KNOP */
.meer-info-button {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 22px;
  background-color: #e09900;
  color: #ffffff !important;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 700;
  transition: background-color 0.2s ease;
}

.meer-info-button:hover {
  background-color: #d97c00;
}

/* MOBIEL */
@media (max-width: 768px) {
  .product-columns {
    flex-direction: column;
  }

  .product-image img {
    width: 100%;
  }
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 15px;
}

.product-badges {
  display: flex;
  gap: 8px;
    flex-wrap: wrap;
}

.meer-info-button {
  margin-top: 0;
  width:185px;
  text-align: center;
}

.image-wrapper {
    position: relative;
    display: inline-block;
}

.sold-out-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(224, 153, 0, 1);
    color: #000;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
    z-index: 9;
    pointer-events: none;
}
