.container.full_product_container {
    width: calc(100vw - var(--main-padding)* 2);
    padding-left: calc(var(--main-padding));
    padding-right: calc(var(--main-padding));
    padding-top: 50px;
    padding-bottom: 50px;
	position: relative !important;
	    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.full_product_container::before {
	position: absolute;
	content:'';
	width: 100%;
	height: 100%;
	left:0;
	top:0;
background: rgb(255,255,255);
background: linear-gradient(90deg, rgba(255,255,255,0) 47%, rgba(0,0,0,0.4415967070421919) 100%);
	z-index: 1;
	pointer-events: none;
	
}

.full_product {
  position: relative; /* Wichtig für die absolute Positionierung der Kinder */
  width: 100%;
  height: 60vh;
  display: flex;
  justify-content: center;
  font-family: Arial, sans-serif;
  color: white;
  overflow: hidden;
}

.full_product_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.full_product_text_top {
    align-self: flex-end; /* Stellt sicher, dass das Element am rechten Rand bleibt */
	text-align: left;
	position: relative;
	z-index: 2;
	color:#FFF !important;
}


.full_product_text_top .produkt_info {
  font-size: 16px;
  letter-spacing: 2px;
  margin: 0;
  color:#FFF;
	font-weight: 300;
	text-transform: uppercase !important;
}
.full_product_text_top .produkt_category a {
	color:#FFF !important;
}
.full_product_text_top .produkt_category  {
  font-size: 19px;
  font-weight: bold;
  margin: 0;
  color:#fff !important;
}

.full_product_text_bottom {
	position: relative;
	z-index: 2;
}
.full_product_text_bottom .produkt_name {
	font-family: minion-pro-subhead, serif;
font-weight: 400;
font-style: normal;
	font-size: 35px;
	color:#FFF;
}

.full_product_text_bottom p {
	line-height: 1.3em;
	color:#FFF;
}

.full_product_discover_button {
  font-size: 16px;
  font-weight: bold;
  background-color: #FFF;
  border-radius: 25px;
  padding: 10px 20px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: auto;
	margin-top:15px;
	color:rgba(var(--color-1), 1);
	border-color: transparent;
	position: relative;
	
	 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);
	
}


.full_product_discover_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);
}


.full_product_discover_button:hover {
  padding-left: 70px; /* Erhöht die Breite bei Hover */
}

.full_product_arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.full_product_discover_button:hover .full_product_arrow {
  transform: translateX(10px); /* Pfeil bewegt sich nach rechts */
}


.full_product_text_bottom p {
  margin: 5px 0;
  font-size: 16px;
}


@media only screen and (max-width: 767px) {
	.full_product_text_bottom .produkt_name {
    font-size: 30px;
    line-height: 1.2em;
}
}