/**
 * Separater Abholtermin — Badge (Loskarte) und Hinweisblock (Info-Sidebar)
 *
 * Bewusst amber statt markenblau: der Block muss sich vom umgebenden
 * Info-Block absetzen, sonst liest man ueber die Abweichung hinweg.
 * Palette bleibt sonst die der Auktionsseiten (Slate).
 */

/* ---------------------------------------------------------------------------
 * Hinweisblock in der Info-Sidebar der Losseite
 * ------------------------------------------------------------------------- */
.brandner-pickup-note {
    margin: 4px 0 8px;
}

.brandner-pickup-note__details {
    background: #fffbeb;
    border: 1px solid #fcd34d;
    border-radius: 8px;
    overflow: hidden;
}

.brandner-pickup-note__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 9px 12px;
    cursor: pointer;
    list-style: none;
    user-select: none;
}

/* Standard-Dreieck weg (WebKit + Rest) */
.brandner-pickup-note__summary::-webkit-details-marker {
    display: none;
}

.brandner-pickup-note__summary::marker {
    content: "";
}

.brandner-pickup-note__summary:hover {
    background: #fef3c7;
}

.brandner-pickup-note__summary:focus-visible {
    outline: 2px solid #d97706;
    outline-offset: -2px;
}

.brandner-pickup-note__label {
    font-size: 13px;
    font-weight: 700;
    color: #92400e;
    line-height: 1.4;
}

/* Info-Punkt rechts: signalisiert "hier gibt es mehr zu lesen" */
.brandner-pickup-note__hint {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #d97706;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    font-style: italic;
    line-height: 18px;
    text-align: center;
    transition: transform 0.15s ease;
}

.brandner-pickup-note__details[open] .brandner-pickup-note__hint {
    transform: rotate(180deg);
}

.brandner-pickup-note__body {
    padding: 0 12px 10px;
    border-top: 1px solid #fde68a;
    padding-top: 9px;
    margin-top: -1px;
}

.brandner-pickup-note__body p {
    margin: 0 0 6px;
    font-size: 12.5px;
    line-height: 1.55;
    color: #78350f;
}

.brandner-pickup-note__body p:last-child {
    margin-bottom: 0;
}

.brandner-pickup-note__from {
    margin: 6px 0 0;
    font-size: 12.5px;
    font-weight: 600;
    color: #92400e;
}

/* ---------------------------------------------------------------------------
 * Gebots-Sheet (mobil): Hinweis zwischen Timer und Eingabe
 * ------------------------------------------------------------------------- */
.bid-sheet-pickup-note {
    margin: 8px 0 0;
    padding: 8px 10px;
    background: #fffbeb;
    border: 1px solid #fcd34d;
    border-radius: 6px;
    font-size: 12.5px;
    font-weight: 600;
    line-height: 1.45;
    color: #92400e;
    text-align: center;
}

/* ---------------------------------------------------------------------------
 * Mein-Konto / Buchungs-Widget: Hinweis ueber der Slot-Auswahl
 * ------------------------------------------------------------------------- */
.brandner-booking-widget__pickup-note {
    margin: 0 0 14px;
    padding: 10px 12px;
    background: #fffbeb;
    border: 1px solid #fcd34d;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.55;
    color: #78350f;
}

.brandner-booking-widget__pickup-note strong {
    color: #92400e;
}
