.product-exchange {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    align-items: stretch;
}

.product-exchange>div {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-exchange__item {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 7px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-exchange__title {
    margin: 0 0 12px;
    font-size: 1.1em;
}

.product-exchange__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    flex: unset !important;
}

.product-exchange__item--original {
    box-shadow: 0px 0px 55px 5px rgba(0, 0, 0, 0.06);
    border-color: #ffffff;
}

.product-exchange__item--new {
    box-shadow: 0px 0px 55px 5px rgba(0, 0, 0, 0.06);
    border-color: #003466;
}

/* Für die Product-Short-Info besser darstellen */
.product-short-info {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    height: 100%;
    align-items: center;
}

.product-exchange .product-short-info img {
    max-width: 130px;
    height: auto;
    mix-blend-mode: multiply;
}

.product-attributes {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
    font-size: 0.9em;
}

.product-attributes span {
    font-weight: bold;
}

.product-price {
    margin: 6px 0;
    font-weight: bold;
    color: #333;
}

/* Hinweis-Banner für Kernaustausch */
.product-exchange-notice {
    border: 2px solid #003466;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
}

.product-exchange-notice__icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: #003466;
    border-radius: 50%;
    color: white;
    text-align: center;
    line-height: 24px;
    font-size: 14px;
    font-weight: bold;
    margin-right: 12px;
    vertical-align: top;
    flex-shrink: 0;
}

.product-exchange-notice__content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-exchange-notice__text {
    flex: 1;
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
    .product-exchange {
        flex-direction: column;
        gap: 10px;
    }

    .product-exchange__arrow {
        transform: rotate(90deg);
        margin: 5px 0;
        height: 30px;
    }

    .product-exchange__item {
        padding: 12px;
    }

    /* Produktinfo mobil optimieren */
    .product-short-info {
        display: flex;
        flex-direction: column;
    }

    .product-exchange .product-short-info img {
        height: auto;
        margin-bottom: 10px;
    }

    /* Hinweis-Banner Anpassungen */
    .product-exchange-notice {
        padding: 16px;
        margin: 16px 0;
    }

    .product-exchange-notice__text {
        font-size: 15px;
    }
}