/* =========================================================
   ZASILAJ24 - MOJE KONTO
========================================================= */

.z24-dashboard {
    display: flex;
    flex-direction: column;
    gap: 24px;

    font-family:
        Inter,
        Arial,
        sans-serif;
}


/* =========================================================
   HERO
========================================================= */

.z24-dashboard-hero {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 220px;

    padding: 42px;

    overflow: hidden;

    border-radius: 24px;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(255,255,255,0.18),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #6048c8 0%,
            #7658df 55%,
            #8d73ec 100%
        );

    box-shadow:
        0 20px 50px
        rgba(95, 70, 200, 0.18);

    color: white;
}


.z24-dashboard-hero-content {
    position: relative;
    z-index: 2;

    max-width: 650px;
}


.z24-dashboard-label {
    display: block;

    margin-bottom: 8px;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1px;

    color: #6750cc;
}


.z24-dashboard-hero
.z24-dashboard-label {
    color:
        rgba(255,255,255,0.75);
}


.z24-dashboard-hero h1 {
    margin:
        0 0 14px;

    color: white;

    font-size: 42px;

    line-height: 1.1;

    letter-spacing: -1px;
}


.z24-dashboard-hero p {
    max-width: 570px;

    margin: 0;

    color:
        rgba(255,255,255,0.82);

    font-size: 15px;

    line-height: 1.7;
}


.z24-dashboard-logo {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 105px;
    height: 105px;

    border-radius: 28px;

    border:
        1px solid
        rgba(255,255,255,0.25);

    background:
        rgba(255,255,255,0.12);

    backdrop-filter: blur(10px);

    font-size: 27px;
    font-weight: 900;

    transform: rotate(6deg);
}


/* =========================================================
   STATYSTYKI
========================================================= */

.z24-dashboard-stats {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 16px;
}


.z24-stat-card {
    padding: 24px;

    min-height: 145px;

    border:
        1px solid
        #e9e9ef;

    border-radius: 20px;

    background: #ffffff;

    text-decoration: none !important;

    box-shadow:
        0 8px 30px
        rgba(0,0,0,0.04);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


a.z24-stat-card:hover {
    transform:
        translateY(-3px);

    box-shadow:
        0 15px 35px
        rgba(0,0,0,0.07);
}


.z24-stat-title {
    display: block;

    margin-bottom: 14px;

    color: #777781;

    font-size: 13px;
}


.z24-stat-card strong {
    display: block;

    margin-bottom: 12px;

    color: #17171c;

    font-size: 32px;

    line-height: 1;
}


.z24-stat-link {
    color: #6750cc;

    font-size: 13px;

    font-weight: 700;
}


.z24-stat-points {
    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f4f1ff
        );
}


/* =========================================================
   SEKCJA
========================================================= */

.z24-dashboard-section {
    margin-top: 8px;
}


.z24-section-header {
    margin-bottom: 16px;
}


.z24-section-header h2 {
    margin: 0;

    color: #17171c;

    font-size: 26px;
}


/* =========================================================
   KAFELKI
========================================================= */

.z24-dashboard-actions {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 14px;
}


.z24-action-card {
    display: grid;

    grid-template-columns:
        54px 1fr auto;

    align-items: center;

    gap: 15px;

    min-height: 95px;

    padding: 18px;

    border:
        1px solid
        #e9e9ef;

    border-radius: 18px;

    background: white;

    text-decoration:
        none !important;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


a.z24-action-card:hover {
    transform:
        translateY(-2px);

    box-shadow:
        0 12px 30px
        rgba(0,0,0,0.06);
}


.z24-action-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    border-radius: 15px;

    background: #f2efff;

    font-size: 22px;
}


.z24-action-card strong {
    display: block;

    margin-bottom: 5px;

    color: #17171c;

    font-size: 15px;
}


.z24-action-card span {
    color: #777781;

    font-size: 12px;
}


.z24-action-arrow {
    color: #aaaab4;

    font-size: 22px;
}


.z24-coming-soon {
    padding:
        5px 9px;

    border-radius: 20px;

    background: #f0eef8;

    color: #695b99;

    font-size: 10px;

    font-weight: 800;
}


.z24-action-card-disabled {
    opacity: 0.78;
}


/* =========================================================
   REWARDS
========================================================= */

.z24-rewards {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding:
        32px 36px;

    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            #202026,
            #302d37
        );

    color: white;
}


.z24-rewards-content {
    max-width: 650px;
}


.z24-rewards-label {
    display: block;

    margin-bottom: 9px;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;

    color:
        rgba(255,255,255,0.6);
}


.z24-rewards h2 {
    margin:
        0 0 10px;

    color: white;

    font-size: 25px;
}


.z24-rewards p {
    margin: 0;

    color:
        rgba(255,255,255,0.67);

    font-size: 14px;

    line-height: 1.65;
}


.z24-rewards-balance {
    min-width: 150px;

    padding: 20px;

    border:
        1px solid
        rgba(255,255,255,0.12);

    border-radius: 18px;

    background:
        rgba(255,255,255,0.07);

    text-align: center;
}


.z24-rewards-balance span,
.z24-rewards-balance small {
    display: block;

    color:
        rgba(255,255,255,0.62);
}


.z24-rewards-balance strong {
    display: block;

    margin:
        5px 0;

    color: white;

    font-size: 36px;
}


/* =========================================================
   MOBILE
========================================================= */

@media
(max-width: 768px) {

    .z24-dashboard-hero {
        padding: 28px 24px;

        min-height: auto;

        border-radius: 20px;
    }


    .z24-dashboard-hero h1 {
        font-size: 30px;
    }


    .z24-dashboard-logo {
        display: none;
    }


    .z24-dashboard-stats {
        grid-template-columns: 1fr;
    }


    .z24-dashboard-actions {
        grid-template-columns: 1fr;
    }


    .z24-rewards {
        flex-direction: column;

        align-items: stretch;

        padding: 26px 23px;
    }


    .z24-rewards-balance {
        width: 100%;
    }

}

/* =========================================================
   ZASILAJ24 REWARDS
   STRONA PUNKTÓW
========================================================= */

.z24-loyalty-page {
    display: flex;
    flex-direction: column;
    gap: 24px;
}


/* NAGŁÓWEK */

.z24-loyalty-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 38px 40px;

    border-radius: 24px;

    background:
        linear-gradient(
            135deg,
            #6048c8,
            #8267e7
        );

    color: white;

    box-shadow:
        0 18px 45px
        rgba(95, 70, 200, 0.16);
}


.z24-loyalty-header h1 {
    margin:
        0 0 10px;

    color: white;

    font-size: 38px;

    line-height: 1.1;
}


.z24-loyalty-header p {
    margin: 0;

    max-width: 520px;

    color:
        rgba(255,255,255,0.78);

    line-height: 1.6;
}


.z24-loyalty-eyebrow {
    display: block;

    margin-bottom: 8px;

    color: #6b52d0;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;
}


.z24-loyalty-header
.z24-loyalty-eyebrow {
    color:
        rgba(255,255,255,0.67);
}


.z24-loyalty-star {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 90px;
    height: 90px;

    flex-shrink: 0;

    border:
        1px solid
        rgba(255,255,255,0.2);

    border-radius: 25px;

    background:
        rgba(255,255,255,0.12);

    font-size: 34px;
}


/* SALDO */

.z24-loyalty-balance-card {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    overflow: hidden;

    border:
        1px solid
        #e8e8ee;

    border-radius: 20px;

    background: white;

    box-shadow:
        0 8px 30px
        rgba(0,0,0,0.04);
}


.z24-loyalty-balance-info,
.z24-loyalty-value {
    padding: 28px 30px;
}


.z24-loyalty-balance-info {
    border-right:
        1px solid
        #eeeeF3;
}


.z24-loyalty-balance-info span,
.z24-loyalty-value span {
    display: block;

    margin-bottom: 10px;

    color: #777781;

    font-size: 13px;
}


.z24-loyalty-balance-info strong,
.z24-loyalty-value strong {
    color: #17171c;

    font-size: 34px;

    line-height: 1;
}


.z24-loyalty-balance-info small {
    color: #777781;

    font-size: 15px;
}


/* ZASADY */

.z24-loyalty-section,
.z24-loyalty-history {
    padding-top: 8px;
}


.z24-loyalty-section-heading {
    margin-bottom: 16px;
}


.z24-loyalty-section-heading h2 {
    margin: 0;

    color: #17171c;

    font-size: 25px;
}


.z24-loyalty-rules {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 14px;
}


.z24-loyalty-rule {
    padding: 24px;

    border:
        1px solid
        #e9e9ef;

    border-radius: 18px;

    background: white;
}


.z24-loyalty-rule-number {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    margin-bottom: 18px;

    border-radius: 12px;

    background: #f2efff;

    color: #674fcb;

    font-size: 11px;

    font-weight: 900;
}


.z24-loyalty-rule strong {
    display: block;

    margin-bottom: 7px;

    color: #17171c;

    font-size: 15px;
}


.z24-loyalty-rule p {
    margin: 0;

    color: #777781;

    font-size: 13px;

    line-height: 1.6;
}


/* PUSTA HISTORIA */

.z24-loyalty-empty {
    padding: 42px 25px;

    border:
        1px dashed
        #dcdce5;

    border-radius: 18px;

    background: #fafafd;

    text-align: center;
}


.z24-loyalty-empty-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 55px;
    height: 55px;

    margin:
        0 auto 15px;

    border-radius: 16px;

    background: #f1eeff;

    color: #6c53cf;

    font-size: 22px;
}


.z24-loyalty-empty strong {
    display: block;

    margin-bottom: 7px;

    color: #202026;
}


.z24-loyalty-empty p {
    max-width: 420px;

    margin: 0 auto;

    color: #7b7b84;

    font-size: 13px;

    line-height: 1.6;
}


/* MOBILE */

@media
(max-width: 768px) {

    .z24-loyalty-header {
        padding: 28px 24px;
    }


    .z24-loyalty-header h1 {
        font-size: 30px;
    }


    .z24-loyalty-star {
        display: none;
    }


    .z24-loyalty-balance-card {
        grid-template-columns: 1fr;
    }


    .z24-loyalty-balance-info {
        border-right: none;

        border-bottom:
            1px solid
            #eeeeF3;
    }


    .z24-loyalty-rules {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   INFORMACJA O ZASADACH
========================================================= */

.z24-loyalty-info {
    display: flex;
    align-items: flex-start;

    gap: 12px;

    margin-top: 14px;

    padding: 15px 17px;

    border-radius: 14px;

    background: #f7f5ff;

    color: #625b78;
}


.z24-loyalty-info-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    width: 25px;
    height: 25px;

    border-radius: 50%;

    background: #6c54d7;

    color: white;

    font-size: 12px;

    font-weight: 800;
}


.z24-loyalty-info p {
    margin: 2px 0 0;

    font-size: 12.5px;

    line-height: 1.6;
}


/* =========================================================
   HISTORIA PUNKTÓW
========================================================= */

.z24-loyalty-history-list {
    overflow: hidden;

    border:
        1px solid
        #e8e8ee;

    border-radius: 18px;

    background: white;

    box-shadow:
        0 8px 30px
        rgba(0,0,0,0.035);
}


/* =========================================================
   NAGŁÓWEK
========================================================= */

.z24-loyalty-history-head {
    display: grid;

    grid-template-columns:
        minmax(220px, 1fr)
        120px
        110px
        110px;

    gap: 15px;

    padding:
        13px 18px;

    background: #fafafd;

    border-bottom:
        1px solid
        #eeeeF3;

    color: #92929c;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.5px;

    text-transform: uppercase;
}


/* =========================================================
   WIERSZ HISTORII
========================================================= */

.z24-loyalty-history-row {
    display: grid;

    grid-template-columns:
        minmax(220px, 1fr)
        120px
        110px
        110px;

    gap: 15px;

    align-items: center;

    min-height: 82px;

    padding:
        15px 18px;

    border-bottom:
        1px solid
        #eeeeF3;
}


.z24-loyalty-history-row:last-child {
    border-bottom: none;
}


/* =========================================================
   OPIS
========================================================= */

.z24-loyalty-history-description {
    display: flex;

    align-items: center;

    gap: 12px;
}


.z24-history-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    width: 38px;
    height: 38px;

    border-radius: 12px;

    background: #f1eeff;

    color: #674fcf;

    font-size: 18px;

    font-weight: 800;
}


.z24-loyalty-history-description strong {
    display: block;

    margin-bottom: 3px;

    color: #202026;

    font-size: 13px;
}


.z24-loyalty-history-description small {
    display: block;

    color: #85858e;

    font-size: 11.5px;

    line-height: 1.4;
}


/* =========================================================
   DATA
========================================================= */

.z24-history-date {
    color: #74747d;

    font-size: 12px;
}


/* =========================================================
   LICZBA PUNKTÓW
========================================================= */

.z24-history-points {
    font-size: 13px;

    font-weight: 800;
}


.z24-history-points-positive {
    color: #26845b;
}


.z24-history-points-negative {
    color: #c44b57;
}


/* =========================================================
   SALDO
========================================================= */

.z24-history-balance {
    color: #303038;

    font-size: 12px;

    font-weight: 700;
}


/* =========================================================
   MOBILE - HISTORIA
========================================================= */

@media
(max-width: 768px) {

    .z24-loyalty-history-head {
        display: none;
    }


    .z24-loyalty-history-row {
        position: relative;

        display: grid;

        grid-template-columns:
            1fr auto;

        gap:
            12px 15px;

        padding:
            18px;
    }


    .z24-loyalty-history-description {
        grid-column:
            1 / -1;
    }


    .z24-history-date {
        grid-column: 1;
    }


    .z24-history-points {
        grid-column: 2;

        grid-row: 2;

        text-align: right;
    }


    .z24-history-balance {
        grid-column:
            1 / -1;

        padding-top: 10px;

        border-top:
            1px dashed
            #eeeeF3;

        color: #898992;

        font-size: 11px;
    }


    .z24-history-balance::before {
        content:
            "Saldo po operacji: ";

        font-weight: 400;
    }

}

/* =========================================================
   ZASILAJ24 REWARDS - KOSZYK
========================================================= */

.z24-redeem-box {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    margin: 0 0 24px;

    padding: 24px 26px;

    border: 1px solid #e7e3f7;

    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            #fbfaff,
            #f5f2ff
        );

    box-shadow:
        0 10px 30px
        rgba(65, 52, 120, 0.06);
}


.z24-redeem-box__content {
    max-width: 480px;
}


.z24-redeem-box__eyebrow {
    display: block;

    margin-bottom: 5px;

    color: #7055d5;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;
}


.z24-redeem-box h3 {
    margin: 0 0 7px;

    color: #1e1e24;

    font-size: 20px;
}


.z24-redeem-box p {
    margin: 0;

    color: #707079;

    font-size: 13px;

    line-height: 1.6;
}


.z24-redeem-form {
    min-width: 360px;
}


.z24-redeem-form label {
    display: block;

    margin-bottom: 7px;

    color: #55545d;

    font-size: 12px;

    font-weight: 700;
}


.z24-redeem-form__row {
    display: flex;

    gap: 8px;
}


.z24-redeem-form input {
    width: 135px;

    min-height: 44px;

    padding: 0 12px;

    border: 1px solid #ddd9ea;

    border-radius: 11px;

    background: white;
}


.z24-redeem-button {
    min-height: 44px !important;

    padding:
        0 18px !important;

    border-radius:
        11px !important;

    background:
        #6d53d5 !important;

    color:
        white !important;

    border:
        none !important;
}


.z24-redeem-form small {
    display: block;

    margin-top: 6px;

    color: #96959e;

    font-size: 10px;
}


.z24-redeem-remove {
    margin-top: 8px;

    padding: 0;

    border: 0;

    background: none;

    color: #8b6a6a;

    font-size: 11px;

    cursor: pointer;
}


.z24-redeem-locked {
    max-width: 330px;

    padding: 13px 16px;

    border-radius: 12px;

    background: white;

    color: #6f6e77;

    font-size: 12px;
}


@media
(max-width: 768px) {

    .z24-redeem-box {
        flex-direction: column;

        align-items: stretch;

        padding: 20px;
    }


    .z24-redeem-form {
        min-width: 0;
    }


    .z24-redeem-form__row {
        flex-direction: column;
    }


    .z24-redeem-form input {
        width: 100%;
    }


    .z24-redeem-button {
        width: 100%;
    }

}


/* =========================================================
   ZASILAJ24 - GŁÓWNY UKŁAD MOJE KONTO
========================================================= */

/* Ukrywamy standardowy tytuł strony */
body.woocommerce-account .entry-title {
    display: none;
}


/* Główny kontener WooCommerce */
body.woocommerce-account .woocommerce {
    display: grid;

    grid-template-columns:
        240px minmax(0, 1fr);

    gap: 32px;

    align-items: start;

    width: 100%;
}


/* =========================================================
   LEWE MENU
========================================================= */

body.woocommerce-account
.woocommerce-MyAccount-navigation {
    width: 100%;

    float: none;

    position: sticky;

    top: 110px;

    padding: 12px;

    border:
        1px solid
        #e8e8ef;

    border-radius: 20px;

    background: #ffffff;

    box-shadow:
        0 12px 35px
        rgba(26, 24, 40, 0.06);
}


body.woocommerce-account
.woocommerce-MyAccount-navigation ul {
    display: flex;

    flex-direction: column;

    gap: 4px;

    margin: 0;

    padding: 0;

    list-style: none;
}


body.woocommerce-account
.woocommerce-MyAccount-navigation li {
    margin: 0;

    padding: 0;

    list-style: none;
}


body.woocommerce-account
.woocommerce-MyAccount-navigation li::before {
    display: none;
}


body.woocommerce-account
.woocommerce-MyAccount-navigation a {
    display: flex;

    align-items: center;

    min-height: 46px;

    padding:
        0 14px;

    border-radius: 12px;

    color: #55545d;

    font-size: 14px;

    font-weight: 600;

    text-decoration: none;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}


body.woocommerce-account
.woocommerce-MyAccount-navigation a:hover {
    background: #f6f3ff;

    color: #674dcc;

    transform:
        translateX(2px);
}


body.woocommerce-account
.woocommerce-MyAccount-navigation
.is-active a {
    background:
        linear-gradient(
            135deg,
            #f0ecff,
            #f7f5ff
        );

    color: #6248c9;

    font-weight: 700;
}


/* WYLOGOWANIE */

body.woocommerce-account
.woocommerce-MyAccount-navigation
.woocommerce-MyAccount-navigation-link--customer-logout {
    margin-top: 8px;

    padding-top: 8px;

    border-top:
        1px solid
        #eeeeF3;
}


body.woocommerce-account
.woocommerce-MyAccount-navigation
.woocommerce-MyAccount-navigation-link--customer-logout a {
    color: #9d4b58;
}


body.woocommerce-account
.woocommerce-MyAccount-navigation
.woocommerce-MyAccount-navigation-link--customer-logout a:hover {
    background: #fff3f4;

    color: #b34452;
}


/* =========================================================
   PRAWA CZĘŚĆ
========================================================= */

body.woocommerce-account
.woocommerce-MyAccount-content {
    float: none;

    width: 100%;

    min-width: 0;
}


/* =========================================================
   POPRAWKA HERO
========================================================= */

.z24-dashboard-hero h1 {
    color: #ffffff !important;
}


/* =========================================================
   POPRAWKA ZASILAJ24 REWARDS
========================================================= */

.z24-rewards h2 {
    color: #ffffff !important;
}


.z24-rewards p {
    color:
        rgba(255, 255, 255, 0.74) !important;
}


.z24-rewards strong {
    color: #ffffff;
}


/* =========================================================
   KOMUNIKAT WOOCOMMERCE
========================================================= */

body.woocommerce-account
.woocommerce-info {
    margin-bottom: 22px;

    padding:
        18px 20px;

    border: none;

    border-radius: 16px;

    background: #f6f4ff;

    color: #4e4964;

    box-shadow: none;
}


body.woocommerce-account
.woocommerce-info::before {
    color: #6e54d6;
}


/* =========================================================
   TABLET
========================================================= */

@media
(max-width: 1024px) {

    body.woocommerce-account
    .woocommerce {
        grid-template-columns:
            205px minmax(0, 1fr);

        gap: 22px;
    }

}


/* =========================================================
   TELEFON
========================================================= */

@media
(max-width: 768px) {

    body.woocommerce-account
    .woocommerce {
        display: block;
    }


    body.woocommerce-account
    .woocommerce-MyAccount-navigation {
        position: static;

        margin-bottom: 20px;

        padding: 8px;

        overflow-x: auto;

        border-radius: 16px;
    }


    body.woocommerce-account
    .woocommerce-MyAccount-navigation ul {
        display: flex;

        flex-direction: row;

        width: max-content;

        gap: 5px;
    }


    body.woocommerce-account
    .woocommerce-MyAccount-navigation a {
        min-height: 40px;

        padding:
            0 12px;

        white-space: nowrap;

        font-size: 12px;
    }


    body.woocommerce-account
    .woocommerce-MyAccount-navigation
    .woocommerce-MyAccount-navigation-link--customer-logout {
        margin-top: 0;

        padding-top: 0;

        border-top: none;
    }

}

/* =========================================================
   ZASILAJ24 - WŁASNY SIDEBAR
========================================================= */

.z24-account-sidebar {
    position: sticky;
    top: 100px;

    display: flex;
    flex-direction: column;

    gap: 14px;

    width: 100%;

    padding: 14px;

    border: 1px solid #e8e8ef;

    border-radius: 22px;

    background: #ffffff;

    box-shadow:
        0 16px 45px
        rgba(29, 25, 50, 0.07);
}


/* =========================================================
   KLIENT
========================================================= */

.z24-sidebar-user {
    display: flex;
    align-items: center;

    gap: 12px;

    padding: 8px 8px 14px;

    border-bottom:
        1px solid #eeeeF3;
}


.z24-sidebar-avatar {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 45px;
    height: 45px;

    flex-shrink: 0;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            #654bd0,
            #8b6dec
        );

    color: #ffffff;

    font-size: 17px;
    font-weight: 800;

    box-shadow:
        0 8px 20px
        rgba(102, 75, 208, 0.20);
}


.z24-sidebar-user-info {
    min-width: 0;
}


.z24-sidebar-user-info span {
    display: block;

    margin-bottom: 2px;

    color: #96949e;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 0.7px;

    font-weight: 700;
}


.z24-sidebar-user-info strong {
    display: block;

    overflow: hidden;

    color: #222127;

    font-size: 14px;

    white-space: nowrap;

    text-overflow: ellipsis;
}


/* =========================================================
   PUNKTY
========================================================= */

.z24-sidebar-points {
    display: grid;

    grid-template-columns:
        38px 1fr auto;

    align-items: center;

    gap: 10px;

    padding: 12px;

    border-radius: 15px;

    background:
        linear-gradient(
            135deg,
            #f2efff,
            #f9f8ff
        );

    text-decoration: none !important;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.z24-sidebar-points:hover {
    transform:
        translateY(-2px);

    box-shadow:
        0 10px 25px
        rgba(86, 67, 165, 0.09);
}


.z24-sidebar-points-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    border-radius: 12px;

    background: #ffffff;

    color: #7054d4;
}


.z24-sidebar-points-icon svg {
    width: 20px;
    height: 20px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.6;

    stroke-linejoin: round;
}


.z24-sidebar-points span {
    display: block;

    color: #847d9f;

    font-size: 9px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.5px;
}


.z24-sidebar-points strong {
    display: block;

    margin-top: 2px;

    color: #6247ca;

    font-size: 14px;
}


.z24-sidebar-points-arrow {
    color: #9c94b9 !important;

    font-size: 17px !important;
}


/* =========================================================
   LINKI
========================================================= */

.z24-sidebar-menu {
    display: flex;
    flex-direction: column;

    gap: 4px;
}


.z24-sidebar-link,
.z24-sidebar-logout {
    display: flex;

    align-items: center;

    gap: 11px;

    min-height: 45px;

    padding: 0 11px;

    border-radius: 12px;

    color: #5a5962;

    font-size: 13px;

    font-weight: 600;

    text-decoration: none !important;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}


.z24-sidebar-link:hover {
    background: #f7f5ff;

    color: #644aca;

    transform:
        translateX(2px);
}


.z24-sidebar-link.is-active {
    background:
        linear-gradient(
            135deg,
            #eeeaff,
            #f8f6ff
        );

    color: #6046c8;

    font-weight: 700;
}


/* =========================================================
   IKONY
========================================================= */

.z24-sidebar-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 28px;
    height: 28px;

    flex-shrink: 0;

    color: #7a7784;
}


.z24-sidebar-link.is-active
.z24-sidebar-icon {
    color: #644aca;
}


.z24-sidebar-icon svg {
    width: 19px;
    height: 19px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.7;

    stroke-linecap: round;

    stroke-linejoin: round;
}


/* =========================================================
   WYLOGOWANIE
========================================================= */

.z24-sidebar-footer {
    padding-top: 10px;

    border-top:
        1px solid #eeeeF3;
}


.z24-sidebar-logout {
    color: #9c4f5b;
}


.z24-sidebar-logout:hover {
    background: #fff4f5;

    color: #b33f50;
}


/* =========================================================
   USUWAMY STARE STYLE NAV WOOCOMMERCE
========================================================= */

body.woocommerce-account
.woocommerce-MyAccount-navigation {
    width: 100%;

    float: none;

    padding: 0;

    border: 0;

    background: none;

    box-shadow: none;
}


/* =========================================================
   MOBILE
========================================================= */

@media
(max-width: 768px) {

    .z24-account-sidebar {
        position: static;

        margin-bottom: 20px;
    }

}


/* =========================================================
   ZASILAJ24 - ZAMÓWIENIA
========================================================= */

.z24-orders-page {
    display: flex;
    flex-direction: column;
    gap: 22px;
}


/* =========================================================
   NAGŁÓWEK STRONY
========================================================= */

.z24-page-header {
    padding: 4px 2px 8px;
}


.z24-page-eyebrow {
    display: block;

    margin-bottom: 7px;

    color: #6b50cf;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;
}


.z24-page-header h1 {
    margin: 0 0 8px;

    color: #17171c;

    font-size: 34px;

    line-height: 1.15;

    letter-spacing: -0.8px;
}


.z24-page-header p {
    margin: 0;

    max-width: 620px;

    color: #777781;

    font-size: 14px;

    line-height: 1.6;
}


/* =========================================================
   LISTA
========================================================= */

.z24-orders-list {
    display: flex;
    flex-direction: column;

    gap: 16px;
}


/* =========================================================
   KARTA ZAMÓWIENIA
========================================================= */

.z24-order-card {
    overflow: hidden;

    padding: 24px;

    border: 1px solid #e8e8ef;

    border-radius: 20px;

    background: #ffffff;

    box-shadow:
        0 10px 32px
        rgba(26, 24, 40, 0.045);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.z24-order-card:hover {
    transform: translateY(-2px);

    box-shadow:
        0 16px 38px
        rgba(26, 24, 40, 0.07);
}


/* =========================================================
   GÓRA KARTY
========================================================= */

.z24-order-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 20px;
}


.z24-order-number-label {
    display: block;

    margin-bottom: 3px;

    color: #96959e;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 0.6px;

    text-transform: uppercase;
}


.z24-order-card h2 {
    margin: 0;

    color: #1e1d23;

    font-size: 20px;
}


/* =========================================================
   STATUS
========================================================= */

.z24-order-status {
    display: inline-flex;
    align-items: center;

    min-height: 30px;

    padding: 0 11px;

    border-radius: 999px;

    background: #f0eef6;

    color: #68616f;

    font-size: 11px;

    font-weight: 750;
}


.z24-order-status--completed {
    background: #edf8f2;

    color: #28764f;
}


.z24-order-status--processing {
    background: #f1efff;

    color: #644ac8;
}


.z24-order-status--on-hold {
    background: #fff7e8;

    color: #986a17;
}


.z24-order-status--cancelled,
.z24-order-status--failed {
    background: #fff0f1;

    color: #a54451;
}


.z24-order-status--refunded {
    background: #f1f2f5;

    color: #666a72;
}


/* =========================================================
   PARAMETRY
========================================================= */

.z24-order-meta {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 12px;

    padding: 16px 0;

    border-top: 1px solid #eeeeF3;

    border-bottom: 1px solid #eeeeF3;
}


.z24-order-meta__item span {
    display: block;

    margin-bottom: 4px;

    color: #9897a0;

    font-size: 10px;
}


.z24-order-meta__item strong {
    display: block;

    color: #323138;

    font-size: 13px;
}


/* =========================================================
   PRODUKTY
========================================================= */

.z24-order-products {
    padding: 18px 0 0;
}


.z24-order-products__label {
    display: block;

    margin-bottom: 9px;

    color: #9998a1;

    font-size: 10px;

    text-transform: uppercase;

    font-weight: 700;

    letter-spacing: 0.5px;
}


.z24-order-product,
.z24-order-more {
    display: inline-flex;

    margin:
        0 6px 6px 0;

    padding:
        6px 10px;

    border-radius: 9px;

    background: #f7f6fa;

    color: #5f5d66;

    font-size: 11px;
}


.z24-order-more {
    background: #f1edff;

    color: #6650bd;
}


/* =========================================================
   PRZYCISKI
========================================================= */

.z24-order-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-top: 18px;
}


.z24-order-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 38px;

    padding: 0 15px;

    border: 1px solid #dedce8;

    border-radius: 10px;

    background: #ffffff;

    color: #55525e;

    font-size: 11px;

    font-weight: 700;

    text-decoration: none !important;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}


.z24-order-button:hover {
    border-color: #7156d5;

    color: #6047c5;
}


.z24-order-button--view {
    border-color: #6b50cf;

    background: #6b50cf;

    color: #ffffff;
}


.z24-order-button--view:hover {
    background: #5d43c1;

    color: #ffffff;
}


/* =========================================================
   BRAK ZAMÓWIEŃ
========================================================= */

.z24-orders-empty {
    padding: 60px 30px;

    border: 1px solid #e8e8ef;

    border-radius: 22px;

    background: #ffffff;

    text-align: center;

    box-shadow:
        0 10px 30px
        rgba(0,0,0,0.035);
}


.z24-orders-empty__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 64px;
    height: 64px;

    margin: 0 auto 18px;

    border-radius: 18px;

    background: #f1eeff;

    color: #6950cd;
}


.z24-orders-empty__icon svg {
    width: 28px;
    height: 28px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.6;

    stroke-linecap: round;

    stroke-linejoin: round;
}


.z24-orders-empty h2 {
    margin: 0 0 8px;

    color: #222127;

    font-size: 22px;
}


.z24-orders-empty p {
    margin: 0 auto 20px;

    max-width: 410px;

    color: #85848d;

    font-size: 13px;

    line-height: 1.6;
}


.z24-primary-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 43px;

    padding: 0 18px;

    border-radius: 11px;

    background: #6b50cf;

    color: #ffffff !important;

    font-size: 12px;

    font-weight: 700;

    text-decoration: none !important;
}


/* =========================================================
   PAGINACJA
========================================================= */

.z24-orders-pagination {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    padding-top: 8px;

    color: #84838c;

    font-size: 12px;
}


.z24-orders-pagination a {
    color: #6248ca;

    font-weight: 700;

    text-decoration: none;
}


/* =========================================================
   MOBILE
========================================================= */

@media
(max-width: 768px) {

    .z24-page-header h1 {
        font-size: 29px;
    }


    .z24-order-card {
        padding: 19px;
    }


    .z24-order-meta {
        grid-template-columns:
            1fr 1fr;
    }


    .z24-order-meta__item:last-child {
        grid-column:
            1 / -1;
    }


    .z24-order-card__top {
        align-items: flex-start;

        flex-direction: column;
    }

}


/* =========================================================
   ZASILAJ24 - NAPRAWA GŁÓWNEGO UKŁADU KONTA
========================================================= */

body.woocommerce-account .woocommerce {
    display: grid !important;

    grid-template-columns:
        250px minmax(0, 1fr) !important;

    grid-template-areas:
        "z24sidebar z24content";

    gap: 32px !important;

    align-items: start;

    width: 100% !important;
}


/* LEWA KOLUMNA */

body.woocommerce-account
.woocommerce-MyAccount-navigation {
    grid-area: z24sidebar;

    width: 250px !important;

    max-width: 250px !important;

    min-width: 250px !important;

    float: none !important;

    margin: 0 !important;
}


/* PRAWA KOLUMNA */

body.woocommerce-account
.woocommerce-MyAccount-content {
    grid-area: z24content;

    width: 100% !important;

    max-width: none !important;

    min-width: 0 !important;

    float: none !important;

    margin: 0 !important;
}


/* NASZ SIDEBAR */

.z24-account-sidebar {
    box-sizing: border-box;

    width: 250px !important;

    max-width: 250px !important;

    padding: 14px;

    border: 1px solid #e7e7ee;

    border-radius: 20px;

    background: #ffffff;

    box-shadow:
        0 14px 40px
        rgba(27, 24, 45, 0.06);
}


/* DASHBOARD MA WYPEŁNIAĆ PRAWĄ STRONĘ */

.z24-dashboard {
    width: 100%;

    max-width: none;
}


/* HERO NIE MOŻE SIĘ ŚCISKAĆ */

.z24-dashboard-hero {
    width: 100%;

    min-height: 220px;

    box-sizing: border-box;
}


/* STATYSTYKI */

.z24-dashboard-stats {
    width: 100%;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));
}


/* KAFELKI */

.z24-dashboard-actions {
    width: 100%;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));
}


/* REWARDS */

.z24-rewards {
    width: 100%;

    box-sizing: border-box;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

    body.woocommerce-account .woocommerce {
        grid-template-columns:
            210px minmax(0, 1fr) !important;

        gap: 22px !important;
    }


    body.woocommerce-account
    .woocommerce-MyAccount-navigation,
    .z24-account-sidebar {
        width: 210px !important;

        min-width: 210px !important;

        max-width: 210px !important;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    body.woocommerce-account .woocommerce {
        display: block !important;
    }


    body.woocommerce-account
    .woocommerce-MyAccount-navigation,
    .z24-account-sidebar {
        position: static;

        width: 100% !important;

        min-width: 0 !important;

        max-width: none !important;

        margin-bottom: 20px !important;
    }


    .z24-dashboard-stats {
        grid-template-columns: 1fr;
    }


    .z24-dashboard-actions {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   ZASILAJ24 - ZABEZPIECZENIE IKON ADRESÓW
========================================================= */

.z24-address-card__icon {
    overflow: hidden;
}

.z24-address-card__icon svg {
    display: block;

    width: 22px !important;
    height: 22px !important;

    min-width: 22px !important;
    min-height: 22px !important;

    max-width: 22px !important;
    max-height: 22px !important;

    fill: none !important;

    stroke: currentColor !important;
}


/* =========================================================
   ZASILAJ24 - ADRESY - FINALNY WYGLĄD
========================================================= */

.z24-address-page {
    display: block !important;
    width: 100% !important;
}


/* =========================================================
   SIATKA KART
========================================================= */

.z24-address-grid {
    display: grid !important;

    grid-template-columns:
        repeat(2, minmax(0, 1fr)) !important;

    gap: 20px !important;

    width: 100% !important;

    margin-top: 22px !important;
}


/* =========================================================
   KARTA ADRESU
========================================================= */

.z24-address-card {
    display: flex !important;
    flex-direction: column !important;

    width: 100% !important;
    min-width: 0 !important;
    min-height: 330px !important;

    margin: 0 !important;

    padding: 24px !important;

    border:
        1px solid
        #e6e6ed !important;

    border-radius:
        20px !important;

    background:
        #ffffff !important;

    box-shadow:
        0 10px 32px
        rgba(30, 28, 45, 0.05) !important;

    box-sizing:
        border-box !important;

    overflow:
        hidden !important;
}


/* =========================================================
   GÓRA KARTY
========================================================= */

.z24-address-card__top {
    display: flex !important;

    align-items: center !important;

    gap: 13px !important;

    margin:
        0 0 14px !important;
}


.z24-address-card__icon {
    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    width: 48px !important;
    height: 48px !important;

    min-width: 48px !important;
    max-width: 48px !important;

    min-height: 48px !important;
    max-height: 48px !important;

    flex: 0 0 48px !important;

    margin: 0 !important;

    padding: 0 !important;

    border-radius:
        14px !important;

    background:
        #f1eeff !important;

    color:
        #684dcc !important;

    overflow:
        hidden !important;
}


.z24-address-card__icon svg {
    display: block !important;

    width: 22px !important;
    height: 22px !important;

    min-width: 22px !important;
    min-height: 22px !important;

    max-width: 22px !important;
    max-height: 22px !important;

    margin: 0 !important;
    padding: 0 !important;

    fill:
        none !important;

    stroke:
        currentColor !important;

    stroke-width:
        1.7 !important;
}


/* =========================================================
   NAGŁÓWEK KARTY
========================================================= */

.z24-address-card__label {
    display: block !important;

    margin:
        0 0 3px !important;

    color:
        #9b99a4 !important;

    font-size:
        9px !important;

    line-height:
        1.3 !important;

    font-weight:
        800 !important;

    letter-spacing:
        0.8px !important;

    text-transform:
        uppercase !important;
}


.z24-address-card h2 {
    margin: 0 !important;

    padding: 0 !important;

    color:
        #1f1e25 !important;

    font-size:
        19px !important;

    line-height:
        1.25 !important;

    font-weight:
        700 !important;

    letter-spacing:
        -0.2px !important;
}


/* =========================================================
   OPIS
========================================================= */

.z24-address-card__description {
    margin:
        0 0 18px !important;

    padding: 0 !important;

    color:
        #81808a !important;

    font-size:
        12px !important;

    line-height:
        1.6 !important;
}


/* =========================================================
   ŚRODEK KARTY
========================================================= */

.z24-address-card__content {
    display: block !important;

    flex:
        1 1 auto !important;

    width:
        100% !important;

    margin:
        0 !important;

    padding:
        18px !important;

    border-radius:
        14px !important;

    background:
        #fafafd !important;

    box-sizing:
        border-box !important;
}


/* =========================================================
   ZAPISANY ADRES
========================================================= */

.z24-address-card address {
    margin: 0 !important;

    padding: 0 !important;

    color:
        #45444c !important;

    font-size:
        13px !important;

    line-height:
        1.8 !important;

    font-style:
        normal !important;
}


/* =========================================================
   BRAK ADRESU
========================================================= */

.z24-address-empty {
    display: flex !important;

    flex-direction: column !important;

    justify-content: center !important;

    min-height:
        100px !important;
}


.z24-address-empty span {
    display: block !important;

    margin:
        0 0 6px !important;

    color:
        #403f47 !important;

    font-size:
        13px !important;

    font-weight:
        700 !important;
}


.z24-address-empty p {
    margin: 0 !important;

    padding: 0 !important;

    color:
        #91909a !important;

    font-size:
        11.5px !important;

    line-height:
        1.6 !important;
}


/* =========================================================
   PRZYCISK DODAJ / EDYTUJ
========================================================= */

.z24-address-edit {
    display: flex !important;

    align-items: center !important;
    justify-content: space-between !important;

    width: 100% !important;

    min-height:
        44px !important;

    margin:
        16px 0 0 !important;

    padding:
        0 15px !important;

    border:
        none !important;

    border-radius:
        11px !important;

    background:
        #f1eeff !important;

    color:
        #6047c7 !important;

    font-size:
        12px !important;

    font-weight:
        700 !important;

    text-decoration:
        none !important;

    box-sizing:
        border-box !important;

    transition:
        background 0.2s ease,
        transform 0.2s ease !important;
}


.z24-address-edit:hover {
    background:
        #e9e4ff !important;

    color:
        #573dc0 !important;

    transform:
        translateY(-1px);
}


.z24-address-edit span {
    color:
        #7662c8 !important;

    font-size:
        17px !important;
}


/* =========================================================
   TELEFON
========================================================= */

@media (max-width: 768px) {

    .z24-address-grid {
        grid-template-columns:
            1fr !important;

        gap:
            14px !important;
    }


    .z24-address-card {
        min-height:
            auto !important;

        padding:
            20px !important;
    }

}


/* =========================================================
   ZASILAJ24 - EDYCJA ADRESU
========================================================= */

.z24-edit-address-page {
    display: flex;
    flex-direction: column;

    width: 100%;

    gap: 18px;
}


/* =========================================================
   POWRÓT
========================================================= */

.z24-back-link {
    display: inline-flex;

    align-items: center;

    width: fit-content;

    color: #6a50cc !important;

    font-size: 12px;

    font-weight: 700;

    text-decoration: none !important;
}


.z24-back-link:hover {
    color: #563bbd !important;
}


/* =========================================================
   KARTA FORMULARZA
========================================================= */

.z24-address-form-card {
    width: 100%;

    padding: 28px;

    border: 1px solid #e7e7ee;

    border-radius: 22px;

    background: #ffffff;

    box-shadow:
        0 12px 36px
        rgba(28, 25, 45, 0.05);

    box-sizing: border-box;
}


/* =========================================================
   NAGŁÓWEK KARTY
========================================================= */

.z24-address-form-card__heading {
    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 26px;

    padding-bottom: 20px;

    border-bottom: 1px solid #eeeeF3;
}


.z24-address-form-card__icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    flex: 0 0 48px;

    border-radius: 14px;

    background: #f1eeff;

    color: #654aca;

    overflow: hidden;
}


.z24-address-form-card__icon svg {
    width: 22px !important;
    height: 22px !important;

    max-width: 22px !important;
    max-height: 22px !important;

    fill: none !important;

    stroke: currentColor !important;

    stroke-width: 1.7 !important;

    stroke-linecap: round;

    stroke-linejoin: round;
}


.z24-address-form-card__heading strong {
    display: block;

    margin-bottom: 3px;

    color: #25242b;

    font-size: 15px;
}


.z24-address-form-card__heading span {
    display: block;

    color: #93919a;

    font-size: 11px;
}


/* =========================================================
   POLA
========================================================= */

.z24-address-fields {
    display: grid !important;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap:
        18px 16px;
}


.z24-address-fields
.form-row {
    width: 100% !important;

    margin: 0 !important;

    padding: 0 !important;

    float: none !important;
}


.z24-address-fields
.form-row-wide {
    grid-column:
        1 / -1;
}


.z24-address-fields
.form-row-first,
.z24-address-fields
.form-row-last {
    width: 100% !important;

    float: none !important;
}


/* =========================================================
   LABEL
========================================================= */

.z24-address-fields label {
    display: block;

    margin-bottom: 7px;

    color: #4b4a52;

    font-size: 11px;

    font-weight: 700;
}


.z24-address-fields
.required {
    color: #7658db;
}


/* =========================================================
   INPUTY
========================================================= */

.z24-address-fields input.input-text,
.z24-address-fields select,
.z24-address-fields textarea {
    width: 100% !important;

    min-height: 48px;

    padding:
        0 14px !important;

    border:
        1px solid
        #dddce5 !important;

    border-radius:
        12px !important;

    background:
        #ffffff !important;

    color:
        #29282f !important;

    font-size:
        13px !important;

    outline:
        none !important;

    box-shadow:
        none !important;

    box-sizing:
        border-box !important;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


.z24-address-fields textarea {
    min-height: 105px;

    padding:
        12px 14px !important;

    resize: vertical;
}


.z24-address-fields
input.input-text:focus,
.z24-address-fields
select:focus,
.z24-address-fields
textarea:focus {
    border-color:
        #7559d8 !important;

    box-shadow:
        0 0 0 3px
        rgba(117, 89, 216, 0.09) !important;
}


/* =========================================================
   SELECT2 WOOCOMMERCE
========================================================= */

.z24-address-fields
.select2-container {
    width: 100% !important;
}


.z24-address-fields
.select2-container
.select2-selection--single {
    height: 48px !important;

    border:
        1px solid
        #dddce5 !important;

    border-radius:
        12px !important;

    background:
        #ffffff !important;
}


.z24-address-fields
.select2-selection__rendered {
    display: flex !important;

    align-items: center;

    height: 46px;

    padding:
        0 14px !important;

    color:
        #29282f !important;

    font-size:
        13px !important;
}


.z24-address-fields
.select2-selection__arrow {
    height:
        46px !important;

    right:
        8px !important;
}


/* =========================================================
   STOPKA FORMULARZA
========================================================= */

.z24-address-form-footer {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-top: 28px;

    padding-top: 22px;

    border-top:
        1px solid
        #eeeeF3;
}


.z24-address-form-security {
    display: flex;

    align-items: center;

    gap: 7px;

    color:
        #8b8993;

    font-size:
        10.5px;
}


.z24-address-form-security span {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 21px;
    height: 21px;

    border-radius: 50%;

    background: #edf8f2;

    color: #28845b;

    font-size: 10px;

    font-weight: 900;
}


/* =========================================================
   ZAPISZ
========================================================= */

.z24-save-address-button {
    display: inline-flex !important;

    align-items: center;
    justify-content: center;

    min-height: 46px !important;

    padding:
        0 22px !important;

    border:
        none !important;

    border-radius:
        12px !important;

    background:
        linear-gradient(
            135deg,
            #6549cb,
            #795be0
        ) !important;

    color:
        #ffffff !important;

    font-size:
        12px !important;

    font-weight:
        750 !important;

    cursor: pointer;

    box-shadow:
        0 9px 22px
        rgba(101, 73, 203, 0.17);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.z24-save-address-button:hover {
    transform:
        translateY(-1px);

    box-shadow:
        0 12px 26px
        rgba(101, 73, 203, 0.23);
}


/* =========================================================
   WALIDACJA WOOCOMMERCE
========================================================= */

.z24-address-fields
.woocommerce-invalid
input.input-text {
    border-color:
        #cf5965 !important;
}


.z24-address-fields
.woocommerce-validated
input.input-text {
    border-color:
        #6db58f !important;
}


/* =========================================================
   MOBILE
========================================================= */

@media
(max-width: 768px) {

    .z24-address-form-card {
        padding: 20px;
    }


    .z24-address-fields {
        grid-template-columns:
            1fr;
    }


    .z24-address-fields
    .form-row-wide {
        grid-column:
            auto;
    }


    .z24-address-form-footer {
        flex-direction: column;

        align-items: stretch;
    }


    .z24-save-address-button {
        width: 100%;
    }

}


/* =========================================================
   ZASILAJ24 - DANE KONTA
========================================================= */

.z24-account-details-page {
    display: flex;
    flex-direction: column;

    width: 100%;

    gap: 20px;
}


.z24-account-details-form {
    display: flex;
    flex-direction: column;

    gap: 18px;
}


/* KARTA */

.z24-account-form-card {
    padding: 26px;

    border:
        1px solid
        #e7e7ee;

    border-radius:
        20px;

    background:
        #ffffff;

    box-shadow:
        0 10px 32px
        rgba(28, 25, 45, 0.045);
}


/* NAGŁÓWEK */

.z24-account-form-heading {
    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 24px;

    padding-bottom: 18px;

    border-bottom:
        1px solid
        #eeeeF3;
}


.z24-account-form-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    flex: 0 0 48px;

    border-radius:
        14px;

    background:
        #f1eeff;

    color:
        #674ccc;
}


.z24-account-form-icon svg {
    display: block;

    width: 22px !important;
    height: 22px !important;

    max-width: 22px !important;
    max-height: 22px !important;

    fill:
        none !important;

    stroke:
        currentColor !important;

    stroke-width:
        1.7 !important;

    stroke-linecap:
        round;

    stroke-linejoin:
        round;
}


.z24-account-form-heading strong {
    display: block;

    margin-bottom: 3px;

    color: #242329;

    font-size: 15px;
}


.z24-account-form-heading span {
    display: block;

    color: #93919a;

    font-size: 11px;
}


/* POLA */

.z24-account-fields {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap:
        18px 16px;
}


.z24-account-fields
.form-row {
    width: 100% !important;

    margin: 0 !important;

    padding: 0 !important;

    float: none !important;
}


.z24-account-fields
.form-row-wide {
    grid-column:
        1 / -1;
}


.z24-account-fields label {
    display: block;

    margin-bottom: 7px;

    color: #4a4951;

    font-size: 11px;

    font-weight: 700;
}


.z24-account-fields
.required {
    color: #7257d6;
}


/* INPUTY */

.z24-account-fields
input.input-text {
    width: 100% !important;

    min-height:
        48px;

    padding:
        0 14px !important;

    border:
        1px solid
        #dddce5 !important;

    border-radius:
        12px !important;

    background:
        #ffffff !important;

    color:
        #29282f !important;

    font-size:
        13px !important;

    box-shadow:
        none !important;

    outline:
        none !important;

    box-sizing:
        border-box !important;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


.z24-account-fields
input.input-text:focus {
    border-color:
        #7357d7 !important;

    box-shadow:
        0 0 0 3px
        rgba(115, 87, 215, 0.09) !important;
}


/* PODPOWIEDŹ */

.z24-field-help {
    display: block;

    margin-top:
        6px;

    color:
        #9997a0;

    font-size:
        10px;

    line-height:
        1.5;
}


/* STOPKA */

.z24-account-form-footer {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding:
        22px 26px;

    border:
        1px solid
        #e7e7ee;

    border-radius:
        18px;

    background:
        #fafafd;
}


.z24-account-security {
    display: flex;

    align-items: center;

    gap: 8px;

    color:
        #88868f;

    font-size:
        10.5px;
}


.z24-account-security span {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 22px;
    height: 22px;

    border-radius:
        50%;

    background:
        #edf8f2;

    color:
        #28845b;

    font-size:
        10px;

    font-weight:
        900;
}


/* PRZYCISK */

.z24-save-account-button {
    display: inline-flex !important;

    align-items: center;
    justify-content: center;

    min-height:
        46px !important;

    padding:
        0 22px !important;

    border:
        none !important;

    border-radius:
        12px !important;

    background:
        linear-gradient(
            135deg,
            #6549cb,
            #795be0
        ) !important;

    color:
        #ffffff !important;

    font-size:
        12px !important;

    font-weight:
        750 !important;

    cursor: pointer;

    box-shadow:
        0 9px 22px
        rgba(101, 73, 203, 0.17);
}


.z24-save-account-button:hover {
    transform:
        translateY(-1px);

    box-shadow:
        0 12px 27px
        rgba(101, 73, 203, 0.23);
}


/* MOBILE */

@media
(max-width: 768px) {

    .z24-account-form-card {
        padding:
            20px;
    }


    .z24-account-fields {
        grid-template-columns:
            1fr;
    }


    .z24-account-fields
    .form-row-wide {
        grid-column:
            auto;
    }


    .z24-account-form-footer {
        flex-direction:
            column;

        align-items:
            stretch;

        padding:
            20px;
    }


    .z24-save-account-button {
        width:
            100%;
    }

}


/* =========================================================
   ZASILAJ24 - SZCZEGÓŁY ZAMÓWIENIA
========================================================= */

.z24-view-order-page {
    display: flex;
    flex-direction: column;

    width: 100%;

    gap: 20px;
}


/* =========================================================
   NAGŁÓWEK
========================================================= */

.z24-order-details-header {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 24px;

    padding:
        4px 2px 8px;
}


.z24-order-details-header h1 {
    margin:
        0 0 7px;

    color:
        #17171c;

    font-size:
        34px;

    line-height:
        1.15;

    letter-spacing:
        -0.8px;
}


.z24-order-details-header p {
    margin: 0;

    color:
        #85838c;

    font-size:
        12px;
}


/* =========================================================
   MAŁE PODSUMOWANIE
========================================================= */

.z24-order-summary-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 12px;
}


.z24-order-summary-box {
    padding: 18px;

    border:
        1px solid
        #e8e8ef;

    border-radius:
        16px;

    background:
        #ffffff;

    box-shadow:
        0 8px 25px
        rgba(25, 23, 40, 0.035);
}


.z24-order-summary-box span {
    display: block;

    margin-bottom: 7px;

    color:
        #96949e;

    font-size:
        10px;
}


.z24-order-summary-box strong {
    display: block;

    color:
        #29282f;

    font-size:
        13px;

    line-height:
        1.4;
}


/* =========================================================
   GŁÓWNE KARTY
========================================================= */

.z24-order-details-card {
    padding: 24px;

    border:
        1px solid
        #e8e8ef;

    border-radius:
        20px;

    background:
        #ffffff;

    box-shadow:
        0 10px 32px
        rgba(28, 25, 45, 0.045);
}


.z24-order-details-heading {
    margin-bottom: 20px;

    padding-bottom: 16px;

    border-bottom:
        1px solid
        #eeeeF3;
}


.z24-order-details-heading h2 {
    margin: 0;

    color:
        #222127;

    font-size:
        19px;
}


/* =========================================================
   PRODUKTY
========================================================= */

.z24-order-items {
    display: flex;
    flex-direction: column;
}


.z24-order-item {
    display: grid;

    grid-template-columns:
        72px minmax(0, 1fr) auto;

    gap: 16px;

    align-items: center;

    padding:
        16px 0;

    border-bottom:
        1px solid
        #eeeeF3;
}


.z24-order-item:first-child {
    padding-top: 0;
}


.z24-order-item:last-child {
    padding-bottom: 0;

    border-bottom:
        none;
}


/* ZDJĘCIE */

.z24-order-item__image {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 72px;
    height: 72px;

    overflow: hidden;

    border:
        1px solid
        #eeeeF3;

    border-radius:
        13px;

    background:
        #fafafd;
}


.z24-order-item__image img {
    display: block;

    width: 100% !important;
    height: 100% !important;

    margin: 0 !important;

    object-fit: contain;
}


/* NAZWA */

.z24-order-item__name {
    display: block;

    margin-bottom: 7px;

    color:
        #25242b !important;

    font-size:
        13px;

    font-weight:
        700;

    line-height:
        1.5;

    text-decoration:
        none !important;
}


.z24-order-item__name:hover {
    color:
        #6249c8 !important;
}


.z24-order-item__quantity {
    display: block;

    color:
        #8e8c96;

    font-size:
        10.5px;
}


.z24-order-item__content ul {
    margin:
        7px 0 0 !important;

    padding: 0 !important;

    list-style:
        none !important;

    color:
        #94929b;

    font-size:
        10px;
}


/* CENA */

.z24-order-item__price {
    color:
        #26252c;

    font-size:
        14px;

    font-weight:
        750;

    white-space:
        nowrap;
}


/* =========================================================
   DOLNE KARTY
========================================================= */

.z24-order-bottom-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 18px;
}


/* =========================================================
   PODSUMOWANIE CEN
========================================================= */

.z24-order-total-list {
    display: flex;
    flex-direction: column;
}


.z24-order-total-row {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    padding:
        11px 0;

    border-bottom:
        1px solid
        #eeeeF3;
}


.z24-order-total-row:last-child {
    padding-bottom: 0;

    border-bottom: none;
}


.z24-order-total-row span {
    color:
        #81808a;

    font-size:
        12px;
}


.z24-order-total-row strong {
    color:
        #2a292f;

    font-size:
        12px;

    text-align: right;
}


/* =========================================================
   ADRESY
========================================================= */

.z24-order-addresses {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 20px;
}


.z24-order-addresses > div {
    min-width: 0;
}


.z24-order-addresses strong {
    display: block;

    margin-bottom:
        8px;

    color:
        #37363d;

    font-size:
        11px;
}


.z24-order-addresses address,
.z24-order-addresses p {
    margin: 0;

    color:
        #81808a;

    font-size:
        11px;

    font-style:
        normal;

    line-height:
        1.7;
}


/* =========================================================
   TABLET
========================================================= */

@media
(max-width: 1024px) {

    .z24-order-summary-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media
(max-width: 768px) {

    .z24-order-details-header {
        flex-direction:
            column;

        align-items:
            flex-start;
    }


    .z24-order-details-header h1 {
        font-size:
            28px;
    }


    .z24-order-summary-grid {
        grid-template-columns:
            1fr;
    }


    .z24-order-item {
        grid-template-columns:
            58px minmax(0, 1fr);

        align-items:
            start;
    }


    .z24-order-item__image {
        width:
            58px;

        height:
            58px;
    }


    .z24-order-item__price {
        grid-column:
            2;

        margin-top:
            5px;
    }


    .z24-order-bottom-grid {
        grid-template-columns:
            1fr;
    }


    .z24-order-addresses {
        grid-template-columns:
            1fr;
    }

}


/* =========================================================
   ZASILAJ24 - LOGOWANIE / REJESTRACJA
   TYLKO DLA NIEZALOGOWANYCH
========================================================= */

/*
 * Wyłączamy układ sidebar + content,
 * gdy użytkownik nie jest zalogowany.
 */
body:not(.logged-in).woocommerce-account .woocommerce {
    display: block !important;

    width: 100% !important;
    max-width: 1180px !important;

    margin: 0 auto !important;

    padding: 35px 20px 60px !important;
}


/* =========================================================
   DWIE KOLUMNY
========================================================= */

body:not(.logged-in).woocommerce-account
.woocommerce .u-columns.col2-set {
    display: grid !important;

    grid-template-columns:
        repeat(2, minmax(0, 1fr)) !important;

    gap: 28px !important;

    width: 100% !important;

    max-width: 980px !important;

    margin: 20px auto 0 !important;
}


/*
 * WooCommerce/Astra nadają tutaj własne width i float.
 * Kasujemy je.
 */
body:not(.logged-in).woocommerce-account
.woocommerce .u-column1.col-1,

body:not(.logged-in).woocommerce-account
.woocommerce .u-column2.col-2 {
    float: none !important;

    width: 100% !important;
    max-width: none !important;

    margin: 0 !important;

    padding: 0 !important;
}


/* =========================================================
   TYTUŁY
========================================================= */

body:not(.logged-in).woocommerce-account
.woocommerce .u-column1 h2,

body:not(.logged-in).woocommerce-account
.woocommerce .u-column2 h2 {
    margin: 0 0 16px !important;

    color: #102a75 !important;

    font-size: 29px !important;

    line-height: 1.2 !important;

    font-weight: 750 !important;

    letter-spacing: -0.5px !important;
}


/* =========================================================
   KARTY LOGOWANIA I REJESTRACJI
========================================================= */

body:not(.logged-in).woocommerce-account
form.woocommerce-form-login,

body:not(.logged-in).woocommerce-account
form.woocommerce-form-register {
    width: 100% !important;

    min-height: 100% !important;

    margin: 0 !important;

    padding: 30px !important;

    border: 1px solid #e6e7ee !important;

    border-radius: 22px !important;

    background: #ffffff !important;

    box-shadow:
        0 14px 40px
        rgba(25, 31, 63, 0.06) !important;

    box-sizing: border-box !important;
}


/* =========================================================
   POLA
========================================================= */

body:not(.logged-in).woocommerce-account
form.woocommerce-form-login .form-row,

body:not(.logged-in).woocommerce-account
form.woocommerce-form-register .form-row {
    float: none !important;

    width: 100% !important;

    margin: 0 0 18px !important;

    padding: 0 !important;
}


body:not(.logged-in).woocommerce-account
form.woocommerce-form-login label,

body:not(.logged-in).woocommerce-account
form.woocommerce-form-register label {
    display: block !important;

    margin-bottom: 7px !important;

    color: #474953 !important;

    font-size: 12px !important;

    font-weight: 700 !important;
}


body:not(.logged-in).woocommerce-account
form.woocommerce-form-login input.input-text,

body:not(.logged-in).woocommerce-account
form.woocommerce-form-register input.input-text {
    display: block !important;

    width: 100% !important;

    min-height: 50px !important;

    padding: 0 15px !important;

    border: 1px solid #dfe1e8 !important;

    border-radius: 12px !important;

    background: #ffffff !important;

    color: #202127 !important;

    font-size: 14px !important;

    box-sizing: border-box !important;

    box-shadow: none !important;

    outline: none !important;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease !important;
}


body:not(.logged-in).woocommerce-account
form.woocommerce-form-login input.input-text:focus,

body:not(.logged-in).woocommerce-account
form.woocommerce-form-register input.input-text:focus {
    border-color: #6d53d5 !important;

    box-shadow:
        0 0 0 3px
        rgba(109, 83, 213, 0.09) !important;
}


/* =========================================================
   HASŁO
========================================================= */

body:not(.logged-in).woocommerce-account
.woocommerce-password-input {
    display: block !important;

    width: 100% !important;
}


body:not(.logged-in).woocommerce-account
.woocommerce-password-input input {
    width: 100% !important;
}


/* =========================================================
   PRZYCISKI
========================================================= */

body:not(.logged-in).woocommerce-account
button.woocommerce-button {
    display: inline-flex !important;

    align-items: center !important;
    justify-content: center !important;

    min-height: 48px !important;

    padding: 0 23px !important;

    border: none !important;

    border-radius: 12px !important;

    background:
        linear-gradient(
            135deg,
            #6448ca,
            #785ae0
        ) !important;

    color: #ffffff !important;

    font-size: 13px !important;

    font-weight: 750 !important;

    cursor: pointer !important;

    box-shadow:
        0 9px 22px
        rgba(100, 72, 202, 0.18) !important;
}


body:not(.logged-in).woocommerce-account
button.woocommerce-button:hover {
    transform: translateY(-1px);

    box-shadow:
        0 12px 26px
        rgba(100, 72, 202, 0.24) !important;
}


/* =========================================================
   ZAPAMIĘTAJ MNIE
========================================================= */

body:not(.logged-in).woocommerce-account
.woocommerce-form-login__rememberme {
    display: flex !important;

    align-items: center !important;

    gap: 7px !important;

    margin-bottom: 16px !important;
}


/* =========================================================
   NIE PAMIĘTASZ HASŁA
========================================================= */

body:not(.logged-in).woocommerce-account
.woocommerce-LostPassword {
    margin: 17px 0 0 !important;
}


body:not(.logged-in).woocommerce-account
.woocommerce-LostPassword a {
    color: #654bca !important;

    font-size: 12px !important;

    font-weight: 700 !important;

    text-decoration: none !important;
}


/* =========================================================
   TEKST REJESTRACJI
========================================================= */

body:not(.logged-in).woocommerce-account
form.woocommerce-form-register > p {
    color: #777984 !important;

    font-size: 12px !important;

    line-height: 1.7 !important;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    body:not(.logged-in).woocommerce-account
    .woocommerce .u-columns.col2-set {
        grid-template-columns:
            1fr !important;

        gap: 22px !important;
    }


    body:not(.logged-in).woocommerce-account
    form.woocommerce-form-login,

    body:not(.logged-in).woocommerce-account
    form.woocommerce-form-register {
        padding: 22px !important;
    }


    body:not(.logged-in).woocommerce-account
    .woocommerce .u-column1 h2,

    body:not(.logged-in).woocommerce-account
    .woocommerce .u-column2 h2 {
        font-size: 25px !important;
    }

}


/* =========================================================
   ZASILAJ24 - AUTORYZACJA
========================================================= */

body:not(.logged-in).woocommerce-account .woocommerce {
    display: block !important;

    width: 100% !important;
    max-width: 1220px !important;

    margin: 0 auto !important;

    padding: 45px 24px 70px !important;
}


.z24-auth-page {
    width: 100%;
}


.z24-auth-header {
    max-width: 690px;

    margin-bottom: 30px;
}


.z24-auth-header h1 {
    margin: 0 0 10px;

    color: #102a75;

    font-size: 42px;

    line-height: 1.1;

    letter-spacing: -1px;
}


.z24-auth-header p {
    margin: 0;

    color: #777984;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   UKŁAD
========================================================= */

.z24-auth-layout {
    display: grid;

    grid-template-columns:
        minmax(300px, 0.8fr)
        minmax(420px, 1.2fr);

    gap: 28px;

    align-items: start;
}


/* =========================================================
   ZASILAJ24 - JASNA KARTA KORZYŚCI
========================================================= */

.z24-auth-benefits {
    position: sticky;

    top: 110px;

    padding: 34px;

    border: 1px solid #e7e2fb;

    border-radius: 24px;

    background:
        radial-gradient(
            circle at 15% 10%,
            rgba(126, 102, 232, 0.16),
            transparent 32%
        ),
        linear-gradient(
            145deg,
            #f8f6ff 0%,
            #f1eeff 55%,
            #edf4ff 100%
        );

    color: #17245c;

    box-shadow:
        0 18px 45px
        rgba(82, 65, 160, 0.09);
}


.z24-auth-benefits__label {
    display: block;

    margin-bottom: 10px;

    color: #7358d8;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;
}


.z24-auth-benefits h2 {
    margin: 0 0 12px;

    color: #102a75;

    font-size: 31px;

    line-height: 1.15;

    letter-spacing: -0.7px;
}


.z24-auth-benefits__intro {
    margin: 0 0 28px;

    color: #6f7080;

    font-size: 13px;

    line-height: 1.7;
}


.z24-auth-benefit {
    display: grid;

    grid-template-columns:
        44px minmax(0,1fr);

    gap: 13px;

    padding: 17px 0;

    border-top:
        1px solid
        rgba(107, 80, 207, 0.11);
}


.z24-auth-benefit__icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    border-radius: 13px;

    background: #ffffff;

    color: #6d52d2;

    border: 1px solid #e7e2fb;

    box-shadow:
        0 7px 18px
        rgba(92, 72, 176, 0.08);
}


.z24-auth-benefit strong {
    display: block;

    margin-bottom: 4px;

    color: #24294b;

    font-size: 12px;
}


.z24-auth-benefit p {
    margin: 0;

    color: #797a86;

    font-size: 11px;

    line-height: 1.6;
}

/* =========================================================
   PRAWA STRONA
========================================================= */

.z24-auth-forms {
    display: flex;

    flex-direction: column;

    gap: 18px;
}


.z24-auth-card {
    padding: 30px;

    border: 1px solid #e5e7ee;

    border-radius: 22px;

    background: #ffffff;

    box-shadow:
        0 12px 35px
        rgba(25, 31, 63, 0.05);
}


.z24-auth-card__heading {
    margin-bottom: 23px;
}


.z24-auth-card__heading > span {
    display: block;

    margin-bottom: 5px;

    color: #7156d4;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 0.9px;
}


.z24-auth-card__heading h2 {
    margin: 0 0 6px !important;

    color: #102a75 !important;

    font-size: 25px !important;

    line-height: 1.2 !important;
}


.z24-auth-card__heading p {
    margin: 0;

    color: #888a94;

    font-size: 11px;
}


/* =========================================================
   FORMULARZE
========================================================= */

.z24-auth-card form {
    margin: 0 !important;

    padding: 0 !important;

    border: none !important;

    box-shadow: none !important;
}


.z24-auth-card .form-row {
    float: none !important;

    width: 100% !important;

    margin: 0 0 17px !important;

    padding: 0 !important;
}


.z24-auth-card label {
    display: block;

    margin-bottom: 7px;

    color: #454750;

    font-size: 11px;

    font-weight: 700;
}


.z24-auth-card input.input-text {
    width: 100% !important;

    min-height: 48px;

    padding: 0 14px !important;

    border: 1px solid #dde0e8 !important;

    border-radius: 12px !important;

    background: #ffffff !important;

    box-sizing: border-box !important;

    box-shadow: none !important;
}


.z24-auth-card input.input-text:focus {
    border-color: #7156d5 !important;

    box-shadow:
        0 0 0 3px
        rgba(113,86,213,0.09) !important;
}


.z24-auth-card .password-input {
    display: block;

    width: 100%;
}


/* =========================================================
   LOGIN OPTIONS
========================================================= */

.z24-login-options {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-bottom: 20px;
}


.z24-auth-card
.woocommerce-form-login__rememberme {
    display: flex !important;

    align-items: center;

    gap: 7px;

    margin: 0 !important;

    font-size: 11px;
}


.z24-forgot-password {
    color: #674dca !important;

    font-size: 11px;

    font-weight: 700;

    text-decoration: none !important;
}


/* =========================================================
   BUTTON
========================================================= */

.z24-auth-button {
    display: flex !important;

    align-items: center;
    justify-content: center;

    width: 100% !important;

    min-height: 48px !important;

    padding: 0 20px !important;

    border: none !important;

    border-radius: 12px !important;

    background:
        linear-gradient(
            135deg,
            #6549cb,
            #795be0
        ) !important;

    color: #ffffff !important;

    font-size: 12px !important;

    font-weight: 750 !important;

    box-shadow:
        0 9px 22px
        rgba(101,73,203,0.17);
}


.z24-auth-button--secondary {
    background:
        #102a75 !important;

    box-shadow:
        0 9px 22px
        rgba(16,42,117,0.13);
}


/* =========================================================
   REJESTRACJA
========================================================= */

.z24-register-info,
.z24-auth-privacy {
    color: #868892;

    font-size: 11px;

    line-height: 1.65;
}


.z24-auth-privacy {
    margin: 15px 0 20px;
}


.z24-auth-privacy p {
    margin: 0;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 850px) {

    .z24-auth-layout {
        grid-template-columns: 1fr;
    }


    .z24-auth-benefits {
        position: static;
    }

}


@media (max-width: 600px) {

    body:not(.logged-in).woocommerce-account .woocommerce {
        padding:
            28px 16px 50px !important;
    }


    .z24-auth-header h1 {
        font-size: 32px;
    }


    .z24-auth-card,
    .z24-auth-benefits {
        padding: 22px;
    }


    .z24-login-options {
        align-items: flex-start;

        flex-direction: column;
    }

}


/* =========================================================
   ZASILAJ24 - POKAŻ / UKRYJ HASŁO
========================================================= */

.z24-password-wrapper {
    position: relative;

    display: block;

    width: 100%;
}


.z24-password-wrapper input {
    width: 100% !important;

    padding-right: 52px !important;
}


.z24-password-toggle {
    position: absolute;

    top: 50%;
    right: 13px;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    padding: 0 !important;

    border: none !important;

    border-radius: 9px !important;

    background: transparent !important;

    color: #666872 !important;

    cursor: pointer;

    transform:
        translateY(-50%);

    box-shadow: none !important;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}


.z24-password-toggle:hover {
    background:
        #f3f0ff !important;

    color:
        #654bca !important;
}


.z24-password-toggle svg {
    display: block;

    width: 20px !important;
    height: 20px !important;

    fill: none !important;

    stroke: currentColor !important;

    stroke-width: 1.7 !important;

    stroke-linecap: round;

    stroke-linejoin: round;

    pointer-events: none;
}


.z24-eye-closed {
    display: none !important;
}


.z24-password-toggle.is-visible
.z24-eye-open {
    display: none !important;
}


.z24-password-toggle.is-visible
.z24-eye-closed {
    display: block !important;
}


/* =========================================================
   ZASILAJ24 REWARDS - MINIMAL CLEAN
========================================================= */

.z24-redeem-premium {
    width: 100%;
    margin: 0 0 24px;
    padding: 12px 0 18px;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    box-sizing: border-box;
}


/* usuwamy ozdobny pasek */
.z24-redeem-premium::before {
    display: none !important;
    content: none !important;
}


/* =========================================================
   GÓRA
========================================================= */

.z24-redeem-premium__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eef0f5;
}

.z24-redeem-premium__brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.z24-redeem-premium__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 12px;
    background: #f7f8fc;
    color: #6d55d8;
}

.z24-redeem-premium__icon svg {
    width: 18px !important;
    height: 18px !important;
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 1.7 !important;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.z24-redeem-premium__eyebrow {
    display: block;
    margin-bottom: 3px;
    color: #7b75a0;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.z24-redeem-premium h3 {
    margin: 0 !important;
    color: #102a75 !important;
    font-size: 18px !important;
    line-height: 1.25 !important;
    font-weight: 750 !important;
}


/* =========================================================
   SALDO
========================================================= */

.z24-redeem-premium__balance {
    text-align: right;
    min-width: 120px;
}

.z24-redeem-premium__balance span {
    display: block;
    margin-bottom: 2px;
    color: #9aa0b2;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.z24-redeem-premium__balance strong {
    display: block;
    color: #102a75;
    font-size: 18px;
    line-height: 1.1;
    font-weight: 800;
}

.z24-redeem-premium__balance small {
    display: block;
    margin-top: 4px;
    color: #7f8496;
    font-size: 11px;
    font-weight: 600;
}


/* =========================================================
   FORMULARZ
========================================================= */

.z24-redeem-premium__form {
    margin: 16px 0 0 !important;
    padding: 0 !important;
    border: 0 !important;
}

.z24-redeem-premium__controls {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 180px;
    gap: 14px;
    align-items: end;
}

.z24-redeem-premium__input label,
.z24-redeem-premium__preview > span {
    display: block;
    margin-bottom: 6px;
    color: #70778b;
    font-size: 11px;
    font-weight: 700;
}


/* INPUT */

.z24-points-input-wrapper {
    position: relative;
}

.z24-points-input-wrapper input {
    width: 100% !important;
    min-height: 46px;
    padding: 0 50px 0 14px !important;
    border: 1px solid #dfe3ec !important;
    border-radius: 12px !important;
    background: #ffffff !important;
    color: #1f2430 !important;
    font-size: 14px !important;
    font-weight: 700;
    box-shadow: none !important;
    outline: none !important;
    box-sizing: border-box !important;
}

.z24-points-input-wrapper input:focus {
    border-color: #7b63de !important;
    box-shadow: 0 0 0 3px rgba(123, 99, 222, 0.08) !important;
}

.z24-points-input-wrapper > span {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    color: #8e94a5;
    font-size: 11px;
    font-weight: 700;
}


/* PODGLĄD RABATU */

.z24-redeem-premium__preview {
    padding: 12px 14px;
    border: 1px solid #eceff5;
    border-radius: 12px;
    background: #fafbfe;
}

.z24-redeem-live-value {
    display: block;
    color: #6249c9;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
}


/* QUICK BUTTONS */

.z24-points-quick {
    margin-top: 12px;
}

.z24-points-quick > span {
    display: none;
}

.z24-points-quick__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.z24-points-chip {
    min-height: 34px;
    padding: 0 12px !important;
    border: 1px solid #e2e6ef !important;
    border-radius: 10px !important;
    background: #ffffff !important;
    color: #5f6677 !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    cursor: pointer;
    box-shadow: none !important;
    transition: all 0.2s ease;
}

.z24-points-chip:hover,
.z24-points-chip.is-active {
    border-color: #7a62de !important;
    background: #f7f4ff !important;
    color: #654dcc !important;
}


/* LIMIT */

.z24-redeem-premium__limit {
    margin-top: 12px;
    color: #8b91a2;
    font-size: 11px;
    line-height: 1.5;
}

.z24-redeem-premium__limit strong {
    color: #5e52bc;
}


/* STOPKA */

.z24-redeem-premium__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 16px;
}

.z24-redeem-premium__apply {
    min-height: 42px !important;
    padding: 0 18px !important;
    border: none !important;
    border-radius: 12px !important;
    background: #6d53d8 !important;
    color: #ffffff !important;
    font-size: 12px !important;
    font-weight: 750 !important;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(109, 83, 216, 0.16) !important;
}

.z24-redeem-premium__apply:hover {
    background: #6048c8 !important;
}

.z24-redeem-premium__remove {
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: #9b6972 !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    box-shadow: none !important;
    cursor: pointer;
}


/* =========================================================
   BLOKADA
========================================================= */

.z24-redeem-premium__locked {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 12px;
    background: #fafbfe;
    border: 1px solid #edf0f6;
}

.z24-redeem-premium__locked-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    border-radius: 10px;
    background: #f1effa;
    color: #7157d8;
    font-size: 12px;
}

.z24-redeem-premium__locked strong {
    color: #353c4b;
    font-size: 14px;
}

.z24-redeem-premium__locked p {
    margin: 3px 0 0;
    color: #818899;
    font-size: 12px;
    line-height: 1.5;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .z24-redeem-premium {
        padding: 18px;
    }

    .z24-redeem-premium__top {
        flex-direction: column;
        align-items: flex-start;
    }

    .z24-redeem-premium__balance {
        text-align: left;
    }

    .z24-redeem-premium__controls {
        grid-template-columns: 1fr;
    }

    .z24-redeem-premium__footer {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .z24-redeem-premium__apply {
        width: 100%;
    }
}


/* =========================================================
   ZASILAJ24 REWARDS - LINK DO REGULAMINU
========================================================= */

.z24-rewards-rules-link {
    margin-top: 12px;
}

.z24-rewards-rules-link a {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: #6654c7 !important;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none !important;
}

.z24-rewards-rules-link a:hover {
    color: #513db8 !important;
}

.z24-rewards-rules-link span {
    font-size: 15px;
}


/* KOSZYK */

.z24-redeem-rules {
    margin-top: 14px;
    text-align: right;
}

.z24-redeem-rules a {
    color: #8a8794 !important;

    font-size: 10px;
    font-weight: 600;

    text-decoration: none !important;

    transition: color 0.2s ease;
}

.z24-redeem-rules a:hover {
    color: #6650c7 !important;
}


/* =========================================================
   REJESTRACJA - ZASILAJ24 REWARDS
========================================================= */

.z24-register-rewards {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    margin: 18px 0;
    padding: 14px 15px;

    border: 1px solid #ebe9f3;
    border-radius: 12px;

    background: #faf9fd;
}


/* IKONA */

.z24-register-rewards__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;
    flex: 0 0 34px;

    border-radius: 9px;

    background: #f0ecff;

    color: #6b51d4;

    font-size: 13px;
}


/* TREŚĆ */

.z24-register-rewards__content {
    flex: 1;
    min-width: 0;
}


/* GÓRNY WIERSZ */

.z24-register-rewards__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;

    margin-bottom: 4px;
}


.z24-register-rewards__top strong {
    color: #102a75;

    font-size: 13px;
    font-weight: 800;
}


.z24-register-rewards__top > span {
    padding: 3px 7px;

    border-radius: 7px;

    background: #ffffff;

    color: #6953c8;

    font-size: 10px;
    font-weight: 800;
}


/* OPIS */

.z24-register-rewards__content p {
    margin: 0 0 5px !important;

    color: #7c8190;

    font-size: 11px;
    line-height: 1.55;
}


.z24-register-rewards__content p b {
    color: #444958;
    font-weight: 700;
}


/* LINK */

.z24-register-rewards__content a {
    display: inline-flex;
    align-items: center;
    gap: 5px;

    color: #6550c7 !important;

    font-size: 10px;
    font-weight: 700;

    text-decoration: none !important;
}


.z24-register-rewards__content a:hover {
    color: #4f3ab4 !important;
}


.z24-register-rewards__content a span {
    transition: transform 0.2s ease;
}


.z24-register-rewards__content a:hover span {
    transform: translateX(2px);
}


/* MOBILE */

@media (max-width: 600px) {

    .z24-register-rewards {
        padding: 13px;
    }

    .z24-register-rewards__top {
        align-items: flex-start;
    }

}

/* =========================================================
   ZASILAJ24 - KOSZYK PREMIUM
========================================================= */

body.woocommerce-cart .woocommerce {
    max-width: 1480px;
    margin: 0 auto;
}


/* =========================================================
   FORMULARZ KOSZYKA
========================================================= */

body.woocommerce-cart .woocommerce-cart-form {
    margin: 0;
}


/* główna tabela jako karta */

body.woocommerce-cart
.woocommerce-cart-form
.shop_table.cart {

    width: 100%;

    margin: 0 0 28px !important;

    border: 1px solid #e7eaf1 !important;
    border-radius: 20px !important;

    background: #ffffff;

    border-collapse: separate !important;
    border-spacing: 0 !important;

    overflow: hidden;

    box-shadow:
        0 10px 35px
        rgba(14, 32, 78, 0.05);
}


/* =========================================================
   NAGŁÓWEK TABELI
========================================================= */

body.woocommerce-cart
.shop_table.cart thead th {

    padding: 17px 18px !important;

    border: 0 !important;
    border-bottom: 1px solid #edf0f5 !important;

    background: #fafbfc;

    color: #7d8495;

    font-size: 11px;
    font-weight: 750;

    text-transform: uppercase;
    letter-spacing: .5px;
}


/* =========================================================
   WIERSZE PRODUKTÓW
========================================================= */

body.woocommerce-cart
.shop_table.cart tbody td {

    padding: 20px 18px !important;

    border: 0 !important;
    border-bottom: 1px solid #eef0f4 !important;

    background: #ffffff;

    vertical-align: middle;
}


body.woocommerce-cart
.shop_table.cart tbody tr:last-child td {

    border-bottom: 0 !important;
}


/* =========================================================
   ZDJĘCIE
========================================================= */

body.woocommerce-cart
.shop_table.cart
.product-thumbnail {

    width: 88px;
}


body.woocommerce-cart
.shop_table.cart
.product-thumbnail img {

    width: 62px !important;
    height: 62px !important;

    object-fit: contain;

    padding: 6px;

    border: 1px solid #edf0f5;
    border-radius: 12px;

    background: #ffffff;
}


/* =========================================================
   NAZWA PRODUKTU
========================================================= */

body.woocommerce-cart
.shop_table.cart
.product-name a {

    color: #102a75 !important;

    font-size: 14px;
    font-weight: 700;

    line-height: 1.45;

    text-decoration: none !important;
}


body.woocommerce-cart
.shop_table.cart
.product-name a:hover {

    color: #684fd0 !important;
}


/* =========================================================
   CENA
========================================================= */

body.woocommerce-cart
.shop_table.cart
.product-price,

body.woocommerce-cart
.shop_table.cart
.product-subtotal {

    color: #20283a;

    font-size: 14px;
    font-weight: 750;

    white-space: nowrap;
}


body.woocommerce-cart
.shop_table.cart
.product-subtotal {

    color: #102a75;

    font-weight: 800;
}


/* =========================================================
   ILOŚĆ
========================================================= */

body.woocommerce-cart
.shop_table.cart
.quantity .qty {

    width: 64px !important;
    height: 44px !important;

    padding: 0 8px !important;

    border: 1px solid #dfe4ed !important;
    border-radius: 11px !important;

    background: #ffffff !important;

    color: #18233d;

    font-size: 14px;
    font-weight: 700;

    text-align: center;

    box-shadow: none !important;
}


/* =========================================================
   USUWANIE PRODUKTU
========================================================= */

body.woocommerce-cart
.shop_table.cart
.product-remove {

    width: 52px;

    text-align: center;
}


body.woocommerce-cart
.shop_table.cart
.product-remove .remove {

    display: inline-flex !important;

    align-items: center;
    justify-content: center;

    width: 32px !important;
    height: 32px !important;

    border-radius: 9px !important;

    background: #faf6f7 !important;

    color: #b95c6b !important;

    font-size: 18px !important;
    font-weight: 400 !important;

    line-height: 1 !important;

    text-decoration: none !important;

    transition:
        background .2s ease,
        color .2s ease;
}


body.woocommerce-cart
.shop_table.cart
.product-remove .remove:hover {

    background: #f7e9ec !important;

    color: #a34052 !important;
}


/* =========================================================
   DOLNY PASEK - KUPON
========================================================= */

body.woocommerce-cart
.shop_table.cart
.actions {

    padding: 16px 18px !important;

    background: #fafbfc !important;

    border: 0 !important;
}


body.woocommerce-cart
.shop_table.cart
.coupon {

    display: flex;

    align-items: center;

    gap: 8px;
}


body.woocommerce-cart
.shop_table.cart
.coupon #coupon_code {

    width: 170px !important;
    height: 42px !important;

    margin: 0 !important;

    padding: 0 13px !important;

    border: 1px solid #dfe3eb !important;
    border-radius: 10px !important;

    background: #ffffff !important;

    font-size: 12px !important;

    box-shadow: none !important;
}


body.woocommerce-cart
.shop_table.cart
.coupon button {

    min-height: 42px !important;

    padding: 0 15px !important;

    border: 0 !important;
    border-radius: 10px !important;

    background: #f0eef8 !important;

    color: #5946b7 !important;

    font-size: 11px !important;
    font-weight: 750 !important;

    box-shadow: none !important;
}


body.woocommerce-cart
.shop_table.cart
.coupon button:hover {

    background: #e9e5f8 !important;
}


/* AKTUALIZUJ */

body.woocommerce-cart
.shop_table.cart
button[name="update_cart"] {

    min-height: 42px !important;

    padding: 0 15px !important;

    border-radius: 10px !important;

    background: #f3f4f7 !important;

    color: #767d8c !important;

    font-size: 11px !important;
    font-weight: 700 !important;

    box-shadow: none !important;
}


/* =========================================================
   PODSUMOWANIE KOSZYKA
========================================================= */

body.woocommerce-cart
.cart-collaterals {

    margin-top: 24px;
}


body.woocommerce-cart
.cart-collaterals
.cart_totals {

    width: 420px;

    padding: 24px;

    border: 1px solid #e7eaf1;
    border-radius: 20px;

    background: #ffffff;

    box-shadow:
        0 12px 35px
        rgba(15, 32, 75, 0.055);
}


body.woocommerce-cart
.cart_totals h2 {

    margin: 0 0 18px !important;

    color: #102a75 !important;

    font-size: 22px !important;
    font-weight: 800 !important;
}


body.woocommerce-cart
.cart_totals
.shop_table {

    margin: 0 !important;

    border: 0 !important;

    border-collapse: collapse !important;
}


body.woocommerce-cart
.cart_totals
.shop_table th,

body.woocommerce-cart
.cart_totals
.shop_table td {

    padding: 13px 0 !important;

    border: 0 !important;
    border-bottom: 1px solid #eef0f4 !important;

    background: transparent !important;

    font-size: 13px;
}


body.woocommerce-cart
.cart_totals
.shop_table th {

    color: #777e8f;

    font-weight: 600;
}


body.woocommerce-cart
.cart_totals
.shop_table td {

    color: #20283b;

    font-weight: 750;

    text-align: right;
}


/* RAZEM */

body.woocommerce-cart
.cart_totals
.order-total th,

body.woocommerce-cart
.cart_totals
.order-total td {

    padding-top: 17px !important;

    border-bottom: 0 !important;

    color: #102a75 !important;

    font-size: 17px !important;
    font-weight: 800 !important;
}


/* =========================================================
   PRZEJDŹ DO KASY
========================================================= */

body.woocommerce-cart
.wc-proceed-to-checkout {

    padding: 18px 0 0 !important;
}


body.woocommerce-cart
.wc-proceed-to-checkout
.checkout-button {

    display: flex !important;

    align-items: center;
    justify-content: center;

    min-height: 52px;

    margin: 0 !important;

    border: 0 !important;
    border-radius: 13px !important;

    background:
        linear-gradient(
            135deg,
            #654bd0,
            #785be0
        ) !important;

    color: #ffffff !important;

    font-size: 14px !important;
    font-weight: 750 !important;

    text-decoration: none !important;

    box-shadow:
        0 10px 25px
        rgba(101, 75, 208, .2);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}


body.woocommerce-cart
.wc-proceed-to-checkout
.checkout-button:hover {

    transform: translateY(-1px);

    box-shadow:
        0 14px 30px
        rgba(101, 75, 208, .26);
}


/* =========================================================
   RESPONSYWNOŚĆ
========================================================= */

@media (max-width: 768px) {

    body.woocommerce-cart
    .shop_table.cart {

        border-radius: 16px !important;
    }


    body.woocommerce-cart
    .shop_table.cart tbody td {

        padding: 13px 15px !important;
    }


    body.woocommerce-cart
    .cart-collaterals
    .cart_totals {

        width: 100%;

        padding: 20px;

        border-radius: 16px;
    }


    body.woocommerce-cart
    .shop_table.cart
    .coupon {

        flex-direction: column;

        align-items: stretch;
    }


    body.woocommerce-cart
    .shop_table.cart
    .coupon #coupon_code {

        width: 100% !important;
    }

}

/* =========================================================
   ZASILAJ24 - NOWOCZESNY KOSZYK WOOCOMMERCE BLOCK
========================================================= */

body.woocommerce-cart .wp-block-woocommerce-cart {
    max-width: 1400px;
    margin: 0 auto;
}


/* =========================================================
   UKŁAD DWUKOLUMNOWY
========================================================= */

body.woocommerce-cart .wc-block-cart {
    gap: 32px;
}


/* =========================================================
   LEWA STRONA - PRODUKTY
========================================================= */

body.woocommerce-cart .wc-block-cart-items {
    border: 1px solid #e8eaf1 !important;
    border-radius: 18px !important;
    background: #ffffff !important;
    overflow: hidden;

    box-shadow:
        0 10px 32px rgba(17, 31, 72, 0.04);
}


/* usuwamy ciężkie linie tabeli */

body.woocommerce-cart .wc-block-cart-items th,
body.woocommerce-cart .wc-block-cart-items td {
    border: 0 !important;
}


/* pojedynczy produkt */

body.woocommerce-cart .wc-block-cart-items__row {
    border-bottom: 1px solid #edf0f5 !important;
}

body.woocommerce-cart
.wc-block-cart-items__row:last-child {
    border-bottom: 0 !important;
}


/* odstępy */

body.woocommerce-cart
.wc-block-cart-items__row td {
    padding-top: 22px !important;
    padding-bottom: 22px !important;
}


/* =========================================================
   ZDJĘCIE PRODUKTU
========================================================= */

body.woocommerce-cart
.wc-block-cart-item__image img {
    width: 76px !important;
    height: 76px !important;

    object-fit: contain;

    padding: 7px;

    border: 1px solid #edf0f5;
    border-radius: 13px;

    background: #ffffff;
}


/* =========================================================
   NAZWA PRODUKTU
========================================================= */

body.woocommerce-cart
.wc-block-components-product-name {
    color: #102a75 !important;

    font-size: 14px !important;
    line-height: 1.45 !important;
    font-weight: 700 !important;

    text-decoration: none !important;
}

body.woocommerce-cart
.wc-block-components-product-name:hover {
    color: #654dcc !important;
}


/* =========================================================
   CENA
========================================================= */

body.woocommerce-cart
.wc-block-components-product-price {
    color: #283044;

    font-size: 13px;
    font-weight: 650;
}


body.woocommerce-cart
.wc-block-cart-item__total-price-and-sale-badge-wrapper {
    color: #102a75;

    font-weight: 800;
}


/* =========================================================
   ILOŚĆ
========================================================= */

body.woocommerce-cart
.wc-block-components-quantity-selector {
    min-height: 40px;

    border: 1px solid #dfe3ec !important;
    border-radius: 10px !important;

    background: #ffffff;

    box-shadow: none !important;
}


body.woocommerce-cart
.wc-block-components-quantity-selector input {
    color: #18233d !important;

    font-size: 13px !important;
    font-weight: 700 !important;
}


/* + i - */

body.woocommerce-cart
.wc-block-components-quantity-selector button {
    color: #667086 !important;

    background: transparent !important;
}


/* =========================================================
   USUŃ PRODUKT
========================================================= */

body.woocommerce-cart
.wc-block-cart-item__remove-link {
    color: #9b6670 !important;

    font-size: 11px !important;
    font-weight: 650 !important;

    text-decoration: none !important;
}

body.woocommerce-cart
.wc-block-cart-item__remove-link:hover {
    color: #b34d60 !important;
}


/* =========================================================
   PRAWA STRONA - PODSUMOWANIE
========================================================= */

body.woocommerce-cart
.wc-block-cart__sidebar {
    align-self: flex-start;

    position: sticky !important;
    top: 100px;

    padding: 24px !important;

    border: 1px solid #e8eaf1 !important;
    border-radius: 18px !important;

    background: #ffffff !important;

    box-shadow:
        0 12px 35px rgba(17, 31, 72, 0.05);
}


/* tytuł */

body.woocommerce-cart
.wc-block-cart__totals-title {
    margin: 0 0 18px !important;

    color: #102a75 !important;

    font-size: 20px !important;
    font-weight: 800 !important;

    text-transform: none !important;
}


/* sekcje podsumowania */

body.woocommerce-cart
.wc-block-components-totals-wrapper {
    padding: 14px 0 !important;

    border-top: 1px solid #eef0f5 !important;
}


/* opisy */

body.woocommerce-cart
.wc-block-components-totals-item__label {
    color: #747b8d !important;

    font-size: 12px !important;
    font-weight: 600 !important;
}


/* wartości */

body.woocommerce-cart
.wc-block-components-totals-item__value {
    color: #20283b !important;

    font-size: 13px !important;
    font-weight: 750 !important;
}


/* =========================================================
   RAZEM
========================================================= */

body.woocommerce-cart
.wc-block-components-totals-footer-item {
    margin-top: 4px;
}


body.woocommerce-cart
.wc-block-components-totals-footer-item
.wc-block-components-totals-item__label,

body.woocommerce-cart
.wc-block-components-totals-footer-item
.wc-block-components-totals-item__value {
    color: #102a75 !important;

    font-size: 17px !important;
    font-weight: 800 !important;
}


/* =========================================================
   PRZYCISK DO KASY
========================================================= */

body.woocommerce-cart
.wc-block-cart__submit-container {
    margin-top: 18px;
}


body.woocommerce-cart
.wc-block-cart__submit-button {
    min-height: 52px !important;

    border: 0 !important;
    border-radius: 13px !important;

    background:
        linear-gradient(
            135deg,
            #654bd0,
            #785be0
        ) !important;

    color: #ffffff !important;

    font-size: 14px !important;
    font-weight: 750 !important;

    box-shadow:
        0 10px 24px rgba(101, 75, 208, 0.20);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}


body.woocommerce-cart
.wc-block-cart__submit-button:hover {
    transform: translateY(-1px);

    box-shadow:
        0 14px 30px rgba(101, 75, 208, 0.26);
}


/* =========================================================
   KUPON
========================================================= */

body.woocommerce-cart
.wc-block-components-totals-coupon__button {
    color: #6049c8 !important;

    font-size: 12px !important;
    font-weight: 700 !important;
}


body.woocommerce-cart
.wc-block-components-totals-coupon__input input {
    border: 1px solid #dfe3ec !important;
    border-radius: 10px !important;

    box-shadow: none !important;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    body.woocommerce-cart
    .wc-block-cart__sidebar {
        position: static !important;

        margin-top: 20px;

        padding: 18px !important;

        border-radius: 15px !important;
    }


    body.woocommerce-cart
    .wc-block-cart-items {
        border-radius: 15px !important;
    }


    body.woocommerce-cart
    .wc-block-cart-item__image img {
        width: 60px !important;
        height: 60px !important;
    }

}