@charset "UTF-8";

/* Główne opakowanie dla stron typu Privacy / Terms / Refund / Shipping */


/* Zadziała gdy klasa jest:
   1) bezpośrednio na .entry-content  -> .entry-content.legal-page
   2) na wrapperze wokół .entry-content -> .legal-page .entry-content
   3) na zwykłym divie / group bloku -> .legal-page
*/

.legal-page,
.entry-content.legal-page,
.legal-page .entry-content {
    max-width: 960px;
    margin: 2.5rem auto 3.5rem;
    padding: 2.5rem 1.5rem 3rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    font-size: 0.95rem;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .legal-page,
    .entry-content.legal-page,
    .legal-page .entry-content {
        padding: 3.25rem 3rem 3.75rem;
        font-size: 1rem;
    }
}


/* Tytuł strony */

.legal-page h1,
.entry-content.legal-page h1,
.legal-page .entry-content h1 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    margin: 0 0 1rem;
    font-weight: 700;
}


/* Sekcje główne (1., 2., 3...) */

.legal-page h2,
.entry-content.legal-page h2,
.legal-page .entry-content h2 {
    font-size: clamp(1.25rem, 2.2vw, 1.5rem);
    margin: 2.25rem 0 0.75rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.4rem;
}

.legal-page h2::after,
.entry-content.legal-page h2::after,
.legal-page .entry-content h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 56px;
    height: 2px;
    border-radius: 999px;
    background: var(--color-warm-beige);
}


/* Podsekcje (a), b) itd.) */

.legal-page h3,
.entry-content.legal-page h3,
.legal-page .entry-content h3 {
    font-size: 1.05rem;
    margin: 1.6rem 0 0.4rem;
    font-weight: 600;
}

.legal-page p,
.entry-content.legal-page p,
.legal-page .entry-content p {
    margin: 0 0 0.9rem;
}

.legal-page p+ul,
.entry-content.legal-page p+ul,
.legal-page .entry-content p+ul {
    margin-top: -0.4rem;
}

.legal-page ul,
.entry-content.legal-page ul,
.legal-page .entry-content ul {
    margin: 0 0 1rem 1.1rem;
    padding: 0;
    list-style: disc;
}

.legal-page ul li+li,
.entry-content.legal-page ul li+li,
.legal-page .entry-content ul li+li {
    margin-top: 0.25rem;
}

.legal-page strong,
.entry-content.legal-page strong,
.legal-page .entry-content strong {
    font-weight: 600;
}

.legal-page a,
.entry-content.legal-page a,
.legal-page .entry-content a {
    text-decoration: underline;
    text-underline-offset: 2px;
}


/* “Last updated” – jeśli ją dodasz jako osobny element */

.legal-page .last-updated,
.entry-content.legal-page .last-updated,
.legal-page .entry-content .last-updated {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(0, 0, 0, 0.55);
    margin-bottom: 1.5rem;
}


/* Opcjonalnie – nagłówek strony, jeśli Storefront wyrównuje dziwnie */

.page .entry-header {
    text-align: left;
}


/*# sourceMappingURL=legal-page.css.map */


/* Complianz document should look like .legal-page */

#cmplz-document.cmplz-document,
.cmplz-document.cookie-statement,
.entry-content #cmplz-document.cmplz-document {
    max-width: 960px;
    margin: 2.5rem auto 3.5rem;
    padding: 2.5rem 1.5rem 3rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    font-size: 0.95rem;
    line-height: 1.7;
}

@media (min-width: 768px) {
    #cmplz-document.cmplz-document,
    .cmplz-document.cookie-statement,
    .entry-content #cmplz-document.cmplz-document {
        padding: 3.25rem 3rem 3.75rem;
        font-size: 1rem;
    }
}


/* Headings inside Complianz doc */

#cmplz-document h1,
#cmplz-document h2,
#cmplz-document h3 {
    margin-top: 0;
}

#cmplz-document h2 {
    font-size: clamp(1.25rem, 2.2vw, 1.5rem);
    margin: 2.25rem 0 0.75rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.4rem;
}

#cmplz-document h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 56px;
    height: 2px;
    border-radius: 999px;
    background: var(--color-warm-beige);
}

#cmplz-document h3 {
    font-size: 1.05rem;
    margin: 1.6rem 0 0.4rem;
    font-weight: 600;
}

#cmplz-document p {
    margin: 0 0 0.9rem;
}

#cmplz-document p+ul {
    margin-top: -0.4rem;
}

#cmplz-document ul {
    margin: 0 0 1rem 1.1rem;
    padding: 0;
    list-style: disc;
}

#cmplz-document ul li+li {
    margin-top: 0.25rem;
}

#cmplz-document strong {
    font-weight: 600;
}

#cmplz-document a {
    text-decoration: underline;
    text-underline-offset: 2px;
}