/* ============================================================
   GPSR – Sekcja bezpieczeństwa na stronie produktu
   ============================================================ */

.gpsr-section {
    margin: 2rem 0;
    font-size: .9rem;
    color: #333;
}

/* details/summary – reset i style */
.gpsr-details {
    border: 1px solid #dce3ea;
    border-radius: 6px;
    background: #ffffff;
    overflow: hidden;
}

.gpsr-details[open] .gpsr-summary {
    border-bottom: 1px solid #dce3ea;
}

.gpsr-summary {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: .9rem 1.25rem;
    font-size: 1rem;
    font-weight: 700;
    color: #1a2b3c;
    cursor: pointer;
    list-style: none;
    user-select: none;
}

/* Ukryj domyślny trójkąt we wszystkich przeglądarkach */
.gpsr-summary::-webkit-details-marker { display: none; }
.gpsr-summary::marker               { display: none; }

/* Strzałka CSS */
.gpsr-summary::after {
    content: 'Rozwiń ▾';
    margin-left: auto;
    font-size: .85rem;
    color: #666;
    transition: transform .2s;
}

.gpsr-details[open] .gpsr-summary::after {
    content: 'Zwiń ▴';
    transform: none;
}

.gpsr-summary:hover {
    background: #f6f6f6;
}

/* Treść */
.gpsr-body {
    padding: 1rem 1.25rem;
}

.gpsr-block {
    margin-bottom: 1rem;
}

.gpsr-block:last-of-type {
    margin-bottom: 0;
}

.gpsr-block__title {
    font-size: .9rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #1a2b3c;
    margin: 0 0 .5rem 0;
}
.gpsr-block p {
    font-size: .9rem;
    font-weight: normal;
}

.gpsr-list {
    margin: 0;
    padding-left: 1.25rem;
    list-style: disc;
}

.gpsr-list li {
    margin-bottom: .35rem;
    line-height: 1.55;
}

.gpsr-block p {
    margin: 0;
    line-height: 1.7;
}

.gpsr-block a {
    text-decoration: none;
}

.gpsr-block a:hover {
    text-decoration: underline;
}

.gpsr-legal {
    margin: 1rem 0 0 0;
    padding-top: .6rem;
    border-top: 1px solid #dce3ea;
    font-size: .72rem;
    color: #aaa;
    font-style: italic;
}
