/* ============================================================
   GPSR-Block: Herstellerangaben am Produkt
   Wird in allen Shop-Themes geladen. Nutzt currentColor und
   transparent rgba() Farben, damit es zu Light- und Dark-Themes passt.
   ============================================================ */

.gpsr-block {
    margin-top: 18px;
    padding: 0;
    border-radius: 14px;
    border: 1px solid rgba(127, 127, 127, 0.22);
    background: rgba(127, 127, 127, 0.05);
    font-size: 0.92rem;
    line-height: 1.55;
}

.gpsr-block[open] {
    background: rgba(127, 127, 127, 0.08);
}

.gpsr-block__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 18px;
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: background 0.15s ease;
}

.gpsr-block__summary::-webkit-details-marker {
    display: none;
}

.gpsr-block__summary::after {
    content: "+";
    flex-shrink: 0;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
    opacity: 0.55;
    transition: transform 0.18s ease;
}

.gpsr-block[open] .gpsr-block__summary::after {
    content: "\2212"; /* minus */
    transform: none;
}

.gpsr-block__summary:hover {
    background: rgba(127, 127, 127, 0.06);
}

.gpsr-block__label {
    font-weight: 700;
    letter-spacing: 0.02em;
}

.gpsr-block__hint {
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.55;
}

.gpsr-block__content {
    padding: 4px 18px 18px;
    display: grid;
    gap: 16px;
}

.gpsr-block__row {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.gpsr-block__row-label {
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.65;
}

.gpsr-block__row-value {
    font-weight: 600;
}

.gpsr-block__entity {
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(127, 127, 127, 0.18);
    background: rgba(127, 127, 127, 0.04);
    display: grid;
    gap: 4px;
}

.gpsr-block__entity-label {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.65;
    margin-bottom: 6px;
}

.gpsr-block__entity-line {
    line-height: 1.55;
}

.gpsr-block__entity-line strong {
    font-weight: 700;
}

.gpsr-block__brand {
    margin-left: 6px;
    opacity: 0.72;
    font-size: 0.92em;
}

.gpsr-block__entity-line a {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: rgba(127, 127, 127, 0.45);
    text-underline-offset: 2px;
}

.gpsr-block__entity-line a:hover {
    text-decoration-color: currentColor;
}

.gpsr-block__warnings {
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(214, 158, 46, 0.32);
    background: rgba(214, 158, 46, 0.08);
}

.gpsr-block__warnings p {
    margin: 6px 0 0;
    line-height: 1.6;
}

.gpsr-block__footer {
    font-size: 0.78rem;
    opacity: 0.6;
    padding-top: 6px;
    border-top: 1px dashed rgba(127, 127, 127, 0.22);
}

.gpsr-block__footer a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Theme-Anpassung: Dark-Themes (KB, Tina, Feuerwehr) */
.kb-shop-body .gpsr-block,
.tina-shop-body .gpsr-block,
.fw-shop-body .gpsr-block {
    border-color: rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.03);
}

.kb-shop-body .gpsr-block[open],
.tina-shop-body .gpsr-block[open],
.fw-shop-body .gpsr-block[open] {
    background: rgba(255, 255, 255, 0.05);
}

.kb-shop-body .gpsr-block__entity,
.tina-shop-body .gpsr-block__entity,
.fw-shop-body .gpsr-block__entity {
    border-color: rgba(255, 255, 255, 0.10);
    background: rgba(0, 0, 0, 0.18);
}

.kb-shop-body .gpsr-block__summary:hover,
.tina-shop-body .gpsr-block__summary:hover,
.fw-shop-body .gpsr-block__summary:hover {
    background: rgba(255, 255, 255, 0.04);
}

.kb-shop-body .gpsr-block__entity-line a,
.tina-shop-body .gpsr-block__entity-line a,
.fw-shop-body .gpsr-block__entity-line a {
    text-decoration-color: rgba(255, 255, 255, 0.35);
}

.kb-shop-body .gpsr-block__footer,
.tina-shop-body .gpsr-block__footer,
.fw-shop-body .gpsr-block__footer {
    border-top-color: rgba(255, 255, 255, 0.10);
}
