/* ============================================================
   Goldener Herbst −10 %  ·  german-apotheke.de
   Aktionszeile, Rabattkreise, durchgestrichene Altpreise.
   Abschalten: <link> entfernen + .aktionszeile-Block im
   wrapper_default.php + $discount-Zeile in PCashPost.php.
   ============================================================ */

/* ---- Helle Aktionszeile am Seitenkopf ---- */
.aktionszeile{
    background: #f7edda;
    border-top: 1px solid #e6d4ab;
    border-bottom: 3px solid #b0791f;
    color: #4a3113;
}
.aktionszeile-mitte{
    max-width: 1180px;
    margin: 0 auto;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 15px;
    line-height: 1.3;
    text-align: center;
}
.aktionszeile-piktogramm{ font-size: 17px; line-height: 1; }
.aktionszeile-satz b{ color: #8a4b0f; font-weight: 700; }
.aktionszeile-frist{ font-size: 13px; color: #7a6340; font-style: italic; }
.aktionszeile-marke{
    background: #8a4b0f;
    color: #fdf6e7;
    font-family: Arial, sans-serif;
    font-weight: 700;
    font-size: 12px;
    padding: 3px 11px;
    border-radius: 3px;
    white-space: nowrap;
}
@media (max-width: 680px){
    .aktionszeile-mitte{ font-size: 12px; gap: 8px; padding: 8px 10px; }
    .aktionszeile-marke{ display: none; }
}

/* ---- Runder Rabattkreis auf Produktbildern ---- */
.product-left-side{ position: relative; }
.goods-item{ position: relative; }
.rabattkreis{
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 6;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 32% 28%, #f2d488 0%, #d9a83a 55%, #c2912b 100%);
    color: #fff;
    font-family: Arial, sans-serif;
    font-weight: 800;
    font-size: 14px;
    line-height: 1;
    white-space: nowrap;
    transform: rotate(-8deg);
    box-shadow: 0 4px 10px rgba(0,0,0,.28), inset 0 0 0 2px rgba(255,255,255,.55);
    pointer-events: none;
}
.rabattkreis--gross{
    top: 12px;
    left: 12px;
    right: auto;
    width: 64px;
    height: 64px;
    font-size: 16px;
}
@media (max-width: 680px){
    .rabattkreis{ width: 42px; height: 42px; font-size: 12px; }
    .rabattkreis--gross{ width: 52px; height: 52px; font-size: 13px; }
}

/* ---- Durchgestrichener Altpreis / Aktionspreis ---- */
.altpreis,
.altpreis-tabelle{
    text-decoration: line-through;
    color: #9aa0a6;
    font-weight: 400;
    font-size: .85em;
    margin-right: 5px;
}
.neupreis-tabelle{ color: #c0392b; }

/* ---- Inline-Pille "−10 %" in der Preistabelle ---- */
.rabattpille{
    display: inline-block;
    margin-left: 8px;
    padding: 2px 8px;
    background: #8a4b0f;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .03em;
    border-radius: 12px;
    vertical-align: middle;
    white-space: nowrap;
}
