.product-navigation {
    display: flex;
    justify-content: space-between;
    position: absolute;
    width: 100%;
    z-index: 1000;
}
.nav-link {
    line-height: 1;
    color: #862633 !important;
    text-decoration: none !important;
}
.nav-link:hover {
    color: #404040 !important;
    text-decoration: none !important;
}
.nav-link.prev .icon-arrow-left::before,
.nav-link.next .icon-arrow-right::before {
    font-family: 'luma-icons';
    color: #862633;
}
.nav-link.prev .icon-arrow-left::before {
    content: '\e617'; /* Luma-Icon für Pfeil links */
}
.nav-link.next .icon-arrow-right::before {
    content: '\e608'; /* Luma-Icon für Pfeil rechts */
}
.nav-link:hover .icon-arrow-left::before,
.nav-link:hover .icon-arrow-right::before {
    color: #6b1f29; /* Dunklere Farbe beim Hover */
    text-decoration: none;
}