/* =========================================================
   BENSINI — strona „Jestem w ciąży” / „Do karmienia”
   Bazowe style
   ========================================================= */


/* =========================================================
   ZMIENNE
   ========================================================= */

:root {
    --bmc-fuchsia: #e63772;
    --bmc-fuchsia-dark: #c92860;
    --bmc-ink: #272326;
    --bmc-muted: #6f696d;
    --bmc-cream: #f7f3ef;
    --bmc-blush: #fbf0f3;
    --bmc-line: #e8e2df;
    --bmc-white: #fff;

    --bmc-shadow: 0 18px 45px rgba(37, 28, 32, .09);
    --bmc-radius: 12px;
    --bmc-shell: 1440px;
}


/* =========================================================
   BAZA
   ========================================================= */

.bmc-page,
.bmc-page * {
    box-sizing: border-box;
}

.bmc-page {
    overflow: hidden;
    color: var(--bmc-ink);
    background: var(--bmc-white);
    font-family: inherit;
    line-height: 1.55;
}

.bmc-page img {
    display: block;
    max-width: 100%;
}

.bmc-page a {
    color: inherit;
    text-decoration: none;
}

.bmc-page h1,
.bmc-page h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: -.025em;
}

.bmc-page h1 {
    max-width: 780px;
    font-size: clamp(30px, 3vw, 43px);
    color: var(--bmc-white);
    text-align: left;
}

.bmc-page h2 {
    font-size: clamp(32px, 3.2vw, 52px);
}

.bmc-page p {
    margin: 0;
}


/* =========================================================
   KONTENER / SEKCJE
   ========================================================= */

.bmc-shell {
    width: min(calc(100% - 48px), var(--bmc-shell));
    margin-inline: auto;
}

.bmc-section {
    padding-block: clamp(72px, 8vw, 120px);
}


/* =========================================================
   EYEBROW / KICKER
   ========================================================= */

.bmc-eyebrow,
.bmc-kicker {
    margin-bottom: 14px !important;
    color: #d20b50;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}


/* =========================================================
   PRZYCISKI
   ========================================================= */

.bmc-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;
    padding: 13px 26px;

    border: 1px solid var(--bmc-fuchsia);
    border-radius: 8px;

    background: #a61246;
    color: var(--bmc-white) !important;

    font-size: 14px;
    font-weight: 800;
    letter-spacing: .035em;
    text-transform: uppercase;

    transition:
        background .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

.bmc-button:hover,
.bmc-button:focus-visible {
    border-color: var(--bmc-fuchsia-dark);
    background: var(--bmc-fuchsia-dark);
    transform: translateY(-2px);
}

.bmc-button:focus-visible,
.bmc-page a:focus-visible,
.bmc-page summary:focus-visible {
    outline: 3px solid rgb(230 55 114 / .3);
    outline-offset: 3px;
}


/* =========================================================
   HERO
   ========================================================= */

.bmc-hero {
    position: relative;
    min-height: clamp(520px, 40vw, 640px);

    display: grid;
    align-items: center;

    isolation: isolate;
    background: #c7b7ad;
}

.bmc-hero__image,
.bmc-hero__shade {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;
}

.bmc-hero__image {
    z-index: -2;

    object-fit: cover;
    object-position: center 34%;
}

.bmc-hero__shade {
    z-index: -1;

    background: linear-gradient(
        90deg,
        rgb(45 36 38 / .38) 0%,
        rgb(45 36 38 / .22) 38%,
        rgb(45 36 38 / .08) 58%,
        transparent 72%
    );
}

.bmc-hero__inner {
    padding-block: 80px;
}

.bmc-hero__content {
    max-width: 760px;
    padding: clamp(28px, 4vw, 54px);

    border: 1px solid rgb(255 255 255 / .18);
    border-radius: var(--bmc-radius);

    background: rgb(30 25 27 / .52);
    box-shadow: var(--bmc-shadow);

    backdrop-filter: blur(7px);
}

.bmc-hero__lead {
    max-width: 600px;
    margin: 22px 0 30px !important;

    color: rgb(255 255 255 / .92);

    font-size: clamp(18px, 1.6vw, 23px);
}


/* =========================================================
   TRUST BAR
   ========================================================= */

.bmc-trust {
    border-bottom: 1px solid var(--bmc-line);
    background: var(--bmc-white);
}

.bmc-trust__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.bmc-trust__item {
    min-height: 92px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    padding: 20px 18px;

    text-align: center;
    font-size: 14px;
}

.bmc-trust__item + .bmc-trust__item {
    border-left: 1px solid var(--bmc-line);
}

.bmc-trust__item > span {
    color: var(--bmc-fuchsia);
    font-size: 25px;
    line-height: 1;
}


/* =========================================================
   NAGŁÓWKI SEKCJI
   ========================================================= */

.bmc-heading {
    max-width: 760px;
    margin: 0 auto clamp(34px, 5vw, 58px);

    text-align: center;
}

.bmc-heading > p:last-child {
    margin-top: 16px;

    color: var(--bmc-muted);
    font-size: 18px;
}

.bmc-heading--row {
    max-width: none;

    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;

    text-align: left;
}


/* =========================================================
   KATEGORIE
   ========================================================= */

.bmc-categories {
    background: var(--bmc-cream);
}

/*
 * DESKTOP:
 * 6 kart w jednym rzędzie
 */
.bmc-categories__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}

.bmc-category {
    overflow: hidden;

    border: 1px solid var(--bmc-line);
    border-radius: var(--bmc-radius);

    background: var(--bmc-white);
    box-shadow: 0 8px 28px rgb(36 29 32 / .04);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.bmc-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--bmc-shadow);
}

.bmc-category__media {
    aspect-ratio: 4 / 3;

    overflow: hidden;

    background: #eee8e4;
}

.bmc-category__media img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .45s ease;
}

.bmc-category:hover img {
    transform: scale(1.035);
}

/*
 * Przy 6 kartach podpis jest celowo
 * bardziej kompaktowy niż wcześniej.
 */
.bmc-category__label {
    min-height: 72px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;

    padding: 16px;

    font-size: 16px;
    font-weight: 750;
}

.bmc-category__label span {
    color: var(--bmc-fuchsia);
    font-size: 21px;
}


/* =========================================================
   LINKI TEKSTOWE
   ========================================================= */

.bmc-text-link,
.bmc-product__link {
    color: var(--bmc-fuchsia) !important;
    font-weight: 800;
}

.bmc-text-link:hover,
.bmc-product__link:hover {
    color: var(--bmc-fuchsia-dark) !important;
}


/* =========================================================
   PRODUKTY
   ========================================================= */

.bmc-products__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.bmc-product {
    overflow: hidden;

    border: 1px solid var(--bmc-line);
    border-radius: var(--bmc-radius);

    background: var(--bmc-white);

    transition:
        box-shadow .25s ease,
        transform .25s ease;
}

.bmc-product:hover {
    transform: translateY(-4px);
    box-shadow: var(--bmc-shadow);
}

.bmc-product__media {
    position: relative;

    display: block;

    aspect-ratio: 4 / 5;
    overflow: hidden;

    background: var(--bmc-cream);
}

.bmc-product__media img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.bmc-product__badge {
    position: absolute;
    z-index: 1;
    top: 14px;
    left: 14px;

    padding: 7px 10px;

    border-radius: 999px;

    background: #a61246;
    color: var(--bmc-white);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.bmc-product__body {
    padding: 20px;
}

.bmc-product h3 {
    min-height: 48px;
    margin: 0 0 12px;

    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.45;
}

.bmc-product__price {
    min-height: 29px;
    margin-bottom: 14px;

    color: var(--bmc-ink);

    font-size: 18px;
    font-weight: 850;
}

.bmc-product__price del {
    margin-right: 6px;

    color: var(--bmc-muted);

    font-size: .8em;
    font-weight: 500;
}

.bmc-product__price ins {
    text-decoration: none;
}

.bmc-product__link {
    font-size: 14px;
}

.bmc-products__empty {
    grid-column: 1 / -1;

    padding: 30px;

    border: 1px dashed var(--bmc-line);
    border-radius: var(--bmc-radius);

    color: var(--bmc-muted);

    text-align: center;
}


/* =========================================================
   KOMFORT / PANEL 2-KOLUMNOWY
   ========================================================= */

.bmc-comfort {
    padding-top: 0;
}

.bmc-comfort__panel {
    overflow: hidden;

    display: grid;
    grid-template-columns: 1fr 1.05fr;

    border-radius: var(--bmc-radius);

    background: var(--bmc-blush);
}

.bmc-comfort__copy {
    align-self: center;

    padding: clamp(38px, 6vw, 90px);
}

.bmc-comfort__copy > p:not(.bmc-kicker) {
    max-width: 650px;
    margin-top: 20px;

    color: var(--bmc-muted);

    font-size: 18px;
}

.bmc-comfort__image {
    min-height: 620px;
}

.bmc-comfort__image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* =========================================================
   BENEFITY
   ========================================================= */

.bmc-benefits {
    display: grid;
    gap: 18px;

    margin: 34px 0 0;
    padding: 0;

    list-style: none;
}

.bmc-benefits li {
    display: flex;
    align-items: center;
    gap: 14px;
}

.bmc-benefits li > span {
    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: grid;
    place-items: center;

    border: 1px solid var(--bmc-fuchsia);
    border-radius: 50%;

    color: var(--bmc-fuchsia);

    font-weight: 900;
}

.bmc-benefits strong,
.bmc-benefits small {
    display: block;
}

.bmc-benefits small {
    margin-top: 2px;

    color: var(--bmc-muted);
}


/* =========================================================
   PRODUKCJA / POLSKA MARKA
   ========================================================= */

.bmc-made {
    padding-top: 0;
}

.bmc-made__panel {
    min-height: 500px;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    padding: clamp(32px, 6vw, 90px);

    border-radius: var(--bmc-radius);

    background:
        linear-gradient(
            90deg,
            rgb(31 24 27 / .08),
            rgb(31 24 27 / .74)
        ),
        url(/wp-content/uploads/2026/06/bluzka-ciazowa-donata-bensini-odziez-ciazowa.webp)
        center 35% / cover no-repeat;
}

.bmc-made__content {
    max-width: 590px;

    padding: clamp(30px, 4vw, 52px);

    border-radius: var(--bmc-radius);

    background: rgb(21 17 19 / 19%);
    color: var(--bmc-white);

    backdrop-filter: blur(6px);
}

.bmc-made__content h2 {
    color: var(--bmc-white);
}

.bmc-made__content > p:not(.bmc-kicker) {
    margin: 20px 0 28px;

    color: rgb(255 255 255 / .85);

    font-size: 18px;
}

.bmc-button--light {
    border-color: var(--bmc-white);
}


/* =========================================================
   FAQ
   ========================================================= */

.bmc-faq {
    border-top: 1px solid var(--bmc-line);
    background: var(--bmc-cream);
}

.bmc-faq__layout {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: clamp(40px, 8vw, 120px);
}

.bmc-faq__layout > div:first-child > p:last-child {
    max-width: 430px;
    margin-top: 20px;

    color: var(--bmc-muted);

    font-size: 18px;
}

.bmc-faq__items {
    display: grid;
    gap: 12px;
}

.bmc-faq details {
    border: 1px solid var(--bmc-line);
    border-radius: 9px;

    background: var(--bmc-white);
}

.bmc-faq summary {
    position: relative;

    padding: 20px 54px 20px 22px;

    cursor: pointer;

    font-weight: 750;

    list-style: none;
}

.bmc-faq summary::-webkit-details-marker {
    display: none;
}

.bmc-faq summary::after {
    content: "+";

    position: absolute;
    top: 50%;
    right: 22px;

    color: var(--bmc-fuchsia);

    font-size: 25px;

    transform: translateY(-50%);
}

.bmc-faq details[open] summary::after {
    content: "−";
}

.bmc-faq details p {
    padding: 0 22px 22px;

    color: var(--bmc-muted);
}


/* =========================================================
   DOLNE CTA
   ========================================================= */

.bmc-bottom-cta {
    padding-block: clamp(54px, 6vw, 88px);

    background: #31455f;
    color: var(--bmc-white);
}

.bmc-bottom-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 38px;
}

.bmc-bottom-cta h2 {
    max-width: 820px;

    color: var(--bmc-white);

    font-size: clamp(30px, 3vw, 48px);
}


/* =========================================================
   MNIEJSZY DESKTOP / TABLET
   ========================================================= */

@media (max-width: 1200px) {

    /* Kategorie: 6 → 3 */
    .bmc-categories__grid {
        grid-template-columns: repeat(3, 1fr);
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1024px) {

    .bmc-trust__grid,
    .bmc-products__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bmc-trust__item:nth-child(3) {
        border-left: 0;
    }

    .bmc-trust__item:nth-child(n + 3) {
        border-top: 1px solid var(--bmc-line);
    }

    /*
     * Kategorie pozostają 3-kolumnowe.
     * Nie zmieniamy ich tutaj na 2.
     */

    .bmc-comfort__panel,
    .bmc-faq__layout {
        grid-template-columns: 1fr;
    }

    .bmc-comfort__image {
        min-height: 520px;
        order: -1;
    }

    .bmc-faq__layout {
        gap: 42px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .bmc-shell {
        width: min(calc(100% - 32px), var(--bmc-shell));
    }

    .bmc-section {
        padding-block: 68px;
    }


    /* HERO */

    .bmc-hero {
        min-height: 520px;
        align-items: end;
    }

    .bmc-hero__shade {
        background:
            linear-gradient(
                0deg,
                rgb(28 23 25 / .82),
                rgb(28 23 25 / .12) 76%
            );
    }

    .bmc-hero__image {
        object-position: 95% center;
    }

    .bmc-hero__inner {
        padding-block: 26px;
    }

    .bmc-hero__content {
        padding: 28px 24px;
    }


    /* TRUST + PRODUKTY */

    .bmc-trust__grid,
    .bmc-products__grid {
        grid-template-columns: 1fr;
    }


    /* KATEGORIE: 2 W RZĘDZIE */

    .bmc-categories__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .bmc-category__label {
        min-height: 64px;

        gap: 8px;
        padding: 13px 12px;

        font-size: 14px;
    }

    .bmc-category__label span {
        font-size: 19px;
    }


    /* TRUST */

    .bmc-trust__item + .bmc-trust__item,
    .bmc-trust__item:nth-child(3) {
        border-top: 1px solid var(--bmc-line);
        border-left: 0;
    }

    .bmc-trust__item {
        min-height: 72px;

        justify-content: flex-start;

        text-align: left;
    }


    /* NAGŁÓWKI */

    .bmc-heading--row,
    .bmc-bottom-cta__inner {
        align-items: flex-start;
        flex-direction: column;
    }


    /* PRODUKTY */

    .bmc-product h3 {
        min-height: 0;
    }


    /* KOMFORT */

    .bmc-comfort__image {
        min-height: 400px;
    }

    .bmc-comfort__copy {
        padding: 36px 24px 44px;
    }


    /* POLSKA MARKA */

    .bmc-made__panel {
        min-height: 0;

        display: block;

        padding:
            clamp(320px, 75vw, 520px)
            0
            0;

        background-color: var(--bmc-ink);

        background-position:
            center top,
            center top;

        background-size:
            100% clamp(320px, 75vw, 520px),
            100% auto;

        background-repeat: no-repeat;
    }

    .bmc-made__content {
        width: 100%;
        max-width: none;

        padding: 34px 24px 38px;

        border-radius:
            0
            0
            var(--bmc-radius)
            var(--bmc-radius);

        background: var(--bmc-ink);

        backdrop-filter: none;
    }

    .bmc-made__content h2 {
        font-size: clamp(32px, 9vw, 43px);
    }

    .bmc-made__content > p:not(.bmc-kicker) {
        font-size: 17px;
    }

    .bmc-made__content .bmc-button {
        width: 100%;
    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .bmc-page *,
    .bmc-page *::before,
    .bmc-page *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }

}

@media (min-width: 1025px) {

    .bmc-categories {
        padding-bottom: 40px;
    }

    .bmc-categories + .bmc-section {
        padding-top: 48px;
    }

}