


.highlight-product {
	display: flex;
	background-color: #fff;
	border-radius: 10px;
	overflow: hidden;
	flex-direction: row;
	justify-content: space-between;
	padding:50px 0;
}


.highlight-product .image {
  flex: 0 0 60%;
  display: flex;
  justify-content: center;
  align-items: center;
	
}

.highlight-product .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px 0 0 10px;

	border-radius: 35px;

}

.highlight-product .details {
  flex: 0 0 40%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
	position: relative;
}

.highlight-product .details .produkt-image img {
	width: 100%;
	height: auto;
}

.highlight-product .details .produkt-infos {
	display: flex;
	flex-direction: column;
	padding:0px !important;
	position: absolute;
	bottom: 40px;
}

.highlight-product .details .produkt-infos .produktname {
font-family: minion-pro-subhead, serif;
font-weight: 400;
font-style: normal;
	font-size: 20px;
	color: rgba(var(--color-1), 1);
	line-height: 1.0em;
}

.image {
    position: relative;
}

.highlight-product .image .image-holder {
	position: relative;
	height: 100%;
}

.highlight-product .image-button {
    position: absolute;
    top: 20px;
    left: 20px;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s ease; /* Übergänge für alle Eigenschaften */
    background: #FFF;
    display: flex;
    flex-direction: row;
    align-items: center; /* Vertikal zentrieren */
    gap: 8px; /* Abstand zwischen Text und Icon */
    width: auto;
    color: rgba(var(--color-1), 1);
}

.highlight-product .image-button svg {
    width: 16px; /* Feste Breite */
    height: auto; /* Automatische Höhe */
    display: inline-block; /* SVG bleibt inline */
    transition: transform 0.3s ease, fill 0.3s ease; /* Animation für Bewegung und Farbe */
    fill: rgba(var(--color-1), 1);
}

.highlight-product .image-button:hover {
    background-color: rgba(var(--color-1), 1);
    color: #fff; 
    padding-right: 30px; /* Button wird länger nach rechts */
}

.highlight-product .image-button:hover svg {
    fill: #FFF; /* Pfeil wird weiß */
    transform: translateX(10px); /* Pfeil bewegt sich nach rechts */
}


@media only screen and (max-width: 767px) {
	.highlight-product {
	   flex-direction: column;
	}
	.highlight-product .details .produkt-infos {
		position: relative;
		bottom: 20px;
	}
}
