
/* HS Fuels visual option cards */
#product .radio {
  margin: 8px 0;
}
#product .radio label {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d8d5ce;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
#product .radio label:hover {
  border-color: #ce9042;
  box-shadow: 0 5px 18px rgba(0,0,0,.06);
}
#product .radio input[type="radio"] {
  margin: 0 2px 0 0;
  flex: 0 0 auto;
}
#product .radio label .img-thumbnail {
  width: 92px;
  height: 72px;
  object-fit: contain;
  border: 0;
  padding: 3px;
  background: #f7f4ed;
  border-radius: 9px;
}
#product .radio label:has(input[type="radio"]:checked) {
  border-color: #10261e;
  box-shadow: 0 0 0 2px rgba(16,38,30,.12);
}
@media (max-width: 767px) {
  #product .radio label {
    align-items: flex-start;
  }
  #product .radio label .img-thumbnail {
    width: 78px;
    height: 62px;
  }
}
