.product-cards-container {
  width: 100%;
  gap: 2rem;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  flex-direction: row;
  justify-content: center;
  padding: 2rem;
}

.product-feature-card {
  width: clamp(200px, 100%, 400px);
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: var(--green-opaque);
  border-radius: 20px;
  transition: 0.5s;
  box-shadow: 10px 10px 10px var(--gray-opaque);
  padding: 1rem;
}

.product-feature-card.addon {
  width: auto;
  display: flex;
}

.addon-feature-card {
  width: auto;
}

.addon-card-list,
.product-specs {
  list-style: none; /* remove default bullets */
  padding-left: 1rem;
  color: rgb(0, 0, 0);
}

.addon-card-list li,
.product-specs li {
  position: relative;
  margin: 0.4rem 0 0.4rem 1rem;
  text-align: left;
}

.addon-card-list li::before,
.product-specs li::before {
  content: "•";
  position: absolute;
  left: -1rem;
  color: var(--dl-color-primary-100); /* or 'white', or any accent color */
  font-size: 1.2rem;
  line-height: 1;
}

.addon-feature-header{
  display: flex;
  flex-direction: row;
}

.product-feature-card:hover {
  scale: 1.05;
}


.product-feature-card .model-image {
  object-fit: contain;
  width: 100%;
  max-height: 200px;
  margin: 1rem 0rem;
  object-fit: contain;
  justify-content: center;
}

.product-feature-card .product-heading {
  text-align: center;
  background: none;
}

.product-feature-card.addon .product-heading {
  margin-top: 0;
  font-size: 2rem;
  color: var(--engbakken-color);
  margin-bottom: 1rem;
}


.product-feature-card .specification-text {
  color: white;
  text-align: center;
  font-weight: 610;
}


.product-feature-card .product-config-info {
  opacity: 0;
  max-height: 0;
  padding-bottom: 0.5rem;
  overflow: hidden;
  transition: opacity 1s ease-in-out, max-height 2s ease-in-out;
}

.product-feature-card .product-config-info-static {
  display: block;
  overflow: hidden;

}

.addon .model-image {
    width: 100%;
    max-height: 300px;
}

.product-feature-card:hover .product-config-info {
  opacity: 1;
  max-height: 9999px;
  display: block;
}


.product-cards-container .product-button.button {
  margin-bottom: 1rem;
}