

:root {
    --baseColor: #fff;
    --baseSize: 20px;
    --baseLineHeight: 1.5;
    --fontFamily: Inter, sans-serif;
    --pink: #ea4c89;
    --pinkLight: #ffecf0;
    --blue: #1493FF;
    --redTick: url("data:image/svg+xml,%3Csvg width='18' height='14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.552.134 5.717 10.97 1.448 6.701 0 8.149l5.717 5.717L18 1.583 16.552.134Z' fill='%23EA455F'/%3E%3C/svg%3E%0A");
    --whiteTick: url("data:image/svg+xml,%3Csvg width='18' height='14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.552.134 5.717 10.97 1.448 6.701 0 8.149l5.717 5.717L18 1.583 16.552.134Z' fill='%23FFFFFF'/%3E%3C/svg%3E%0A");
    --close: url("data:image/svg+xml,%3Csvg width='18' height='18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 1.414 16.586 0 9 7.586 1.414 0 0 1.414 7.586 9 0 16.586 1.414 18 9 10.414 16.586 18 18 16.586 10.414 9 18 1.414Z' fill='%23B1B8C9'/%3E%3C/svg%3E");
    --entpIcon: url("data:image/svg+xml,%3Csvg width='42' height='42' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.813 11.077 21 1.155l17.187 9.922v19.846L21 40.845 3.813 30.923V11.077Z' stroke='%23fff' stroke-width='2'/%3E%3Ccircle cx='21' cy='21' r='8' stroke='%23fff' stroke-width='2'/%3E%3C/svg%3E");
}

* {
    box-sizing: border-box;
}

html {
    color: var(--baseColor);
    font-family: var(--fontFamily);
    font-size: var(--baseSize);
    line-height: var(--baseLineHeight);
}

body {
    margin: 0;
}

.plans {
    width: 96%;
    max-width: 1128px;
    margin: 0 auto;
    text-align: left;
}
.plans__container {
    padding: 1rem 0 2rem;
}

.plansHero {
    text-align: center;
    padding: 5rem 0 4.5rem;
    line-height: 1.21;
}
.plansHero__title {
    font-weight: 700;
    font-size: 2rem;
    margin: 0 0 1rem 0;
    color: #000;
}
.plansHero__subtitle {
    margin: 0;
}

.planItem {
    --border: 1px solid #e6e6e6;
    --bgColor: #fff;
    --boxShadow: none;
    background-color: var(--bgColor);
    border: var(--border);
    border-radius: 1rem;
    box-shadow: var(--boxShadow);
    padding: 1rem 0.75rem;
// display: inline-flex;
// flex-direction: column;
}
.planItem__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}



@media (min-width: 1024px) {
    .planItem__container {
        grid-template-columns: repeat(3, 1fr);
    }
}

.planItem .price {
    /*--priceMargin: 2rem 0;*/
}
.planItem--pro {
    --border: 0;
    --boxShadow: 0px 14px 30px rgba(204, 204, 204, 0.32);
}

.planItem--entp {
    --bgColor: var(--blue);
}
.planItem--entp .card {
    --titleColor: #fff;
    --descColor: rgb(255 255 255 / 80%);
}
.planItem--entp .card__icon {
    background-image: var(--entpIcon);
    background-size: cover;
}
.planItem--entp .price,
.planItem--entp .featureList {
    --color: #fff;
}
.planItem--entp .featureList {
    --icon: var(--whiteTick);
}
.planItem .button {
    margin-top: auto;
}

.button {
    --bgColor: var(--pinkLight);
    --color: var(--pink);
    --shadowColor: rgb(234 76 137 / 30%);
    --outline: var(--pink);
    border-radius: 0.5rem;
    display: block;
    width: 100%;
    padding: 1rem 1.5rem;
    border: 0;
    line-height: inherit;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    background-color: var(--bgColor);
    color: var(--color);
    cursor: pointer;
    transition: all 0.1s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.button--pink {
    --bgColor: var(--pink);
    --color: #fff;
    --shadowColor: rgb(234 76 137 / 50%);
}
.button--white {
    --bgColor: #fff;
    --shadowColor: rgb(255 255 255 / 30%);
    --outline: #fff;
}
.button:hover {
    transform: translateY(-2px);
    box-shadow: 0px 6px 10px var(--shadowColor);
}
.button:focus-visible {
    outline-offset: 2px;
    outline: 2px solid var(--outline);
}

.card {
    --titleColor: #000;
    --descColor: var(--pink);
    border:0 !important;
    background: none !important;
}
.card__header {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.card__header {
    display: flex;
    flex-wrap: wrap; /* allow wrapping */
    gap: 1rem;
    align-items: center;
}
.card__icon {
    width: 2.625rem;
    height: 2.625rem;
}
.card h2 {
    color: var(--titleColor);
    font-size: 1.5rem;
    line-height: 1.2;
    font-weight: 400;
    margin: 0;
    flex-grow: 1;
    flex-basis: 0;
}
.card__desc {
    margin: 1.5rem 0 0;
    color: var(--descColor);
}
.card__label  {
    background:  var(--pink);
    padding:0.5rem;
}
.price {
    --color: #000;
    --priceMargin: 0;
    display: flex;
    color: var(--color);
    align-items: center;
    gap: 0.5625rem;
    font-weight: 600;
    font-size: 3rem;
    margin: var(--priceMargin);
}
.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--pink);
}

.planItem--entp .bundle-access {
    color: #fff;
}

.planItem--entp .price span {
    color: #fff;
}
.bundle-access {
    margin-bottom:1rem;
}

.featureList {
    --color: #000;
    --icon: var(--redTick);
    --height: 0.875rem;
    margin: 0 0 2.75rem;
    padding: 0;
    font-weight: 500;
}
.featureList li {
    color: var(--color);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.featureList li:before {
    content: "";
    background-image: var(--icon);
    background-size: cover;
    display: block;
    width: 1.125rem;
    height: var(--height);
}




.featureList li {
    display: flex;
    /* Center icon vertically regardless of line count in text */
    align-items: center;
    gap: 1rem;
    /* Use a consistent line-height for the text if you like */
    line-height: 1.4;
}

.featureList li::before {
    content: "";
    /* “Inline-block” lets the pseudo-element keep its own width/height */
    display: inline-block;
    /* Force a fixed icon size */
    width: 1rem;   /* or 20px, or whatever size you want for the icon */
    height: 1rem;
    /* Insert your background icon */
    background-image: var(--icon);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    /* Don’t let the icon scale down if text wraps to multiple lines */
    flex-shrink: 0;
}

.featureList li:last-child {
    margin-bottom: 0;
}
.featureList li.disabled {
    --color: #b1b8c9;
    --height: 1.125rem;
    --icon: var(--close);
}

.symbol {
    --big: 2.625rem;
    --small: 1.5rem;
    --radius: 0.25rem;
    border: 2px solid var(--blue);
    width: var(--big);
    height: var(--big);
    border-radius: var(--radius);
    position: relative;
}
.symbol--rounded {
    --radius: 2rem;
}
.symbol:after {
    content: "";
    box-sizing: border-box;
    display: block;
    position: absolute;
    border: 2px solid var(--pink);
    width: var(--small);
    height: var(--small);
    border-radius: var(--radius);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 640px) {
    .plans {
        max-width: 480px;
        width: 90%;
    }

    .planItem__container {
        --direction: row;
    }
}
@media screen and (min-width: 641px) and (max-width: 768px) {
    :root {
        --baseSize: 12px;
    }
}
@media screen and (min-width: 769px) and (max-width: 1080px) {
    :root {
        --baseSize: 14px;
    }
}

.payment-info-text {
    margin-top: 1rem;
    text-align: center;
}

li.active a h5, li.active a .text-muted {
    color: #fff !important;
}




.list-group-item {
    border:0;
}

.sticky-button {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}
/* Główne kolory brandu */
:root {
    --primary-color: #fff; /* Różowy akcent */
    --secondary-color: #fce4ec; /* Jasny róż dla akcentów */
    --text-color: #d63384; /* Tekstowy odcień różu */
    --card-bg: #fff; /* Białe tło dla kart */
    --button-hover: #ff1493; /* Głębszy róż dla hover */
    --text-primary: #efefef;
}

.text-primary {
    color: var(--text-primary) !important;
}

.text-pink {
    color: var(--text-color);
}


/* Główne style strony */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #000;
    color: #fff;
}

/* Eleganckie nagłówki */
h1, h2, h3, h4, h5, h6 {
    font-family: "Headland One", serif;
    font-weight: 400;
    font-style: normal;
}

.main-wrap h1, .main-wrap h2, .main-wrap h3,
.main-wrap h4, .main-wrap h5 {
    color:#000;
}

/* Przyciski CTA */
.btn-primary {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    background-color: #ff69b4;
    border-radius: 50px;
    padding: 12px 36px;
    font-size: 1.2rem;
    transition: all 0.3s ease-in-out;
    border-color: #ff1493;
}

.old-price {
    text-decoration: line-through;
    font-size: 2rem;
    color: #aaa;
}



/* Karty */
.card {
    font-family: 'Poppins', sans-serif;
    background: #fff;
    border-radius: 15px;
    border: 1px solid #666;
}

.planItem--pro .label {
    --labelBg: var(--primary-color);
    --labelColor: #fff;
}

p.lead {
    background: deeppink;
    padding: 2rem;
    color: white !important;
    border-radius: 10px;
}

.why li {
    list-style: none;
    padding: 1rem;
    border: 1px solid #ccc;
    margin: 1rem 0;
    border-radius: 10px;
}

.bundle-access {
    color: #000;
}


blockquote {

    border-radius: 1rem;
    width:48%;
    padding:0.99%;
    border:2px solid #d63384;

    background: #fff;
    color: #000;
}
.grid-sizer {
    width:48%;
}

.main-wrap {


    background: #222;

}



#myVideo {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
}

.bg-blue_min {
    width: 99px; height: 99px;
    background: url('/css/blue-min.png') 0 0;
    background-repeat: no-repeat;
    background-size: contain;

}







.bg-solid_min {
    width: 61px; height: 58px;
    background: url('/css/css_sprites.png') -926px -574px;
}

.bg-pink_min {
    width: 263px; height: 191px;
    background: url('/css/css_sprites.png') -834px -363px;
}

.bg-natalia_min {
    width: 325px; height: 333px;
    background: url('/css/css_sprites.png') -834px -10px;
}

.bg-checkmark_min {
    width: 72px; height: 66px;
    background: url('/css/css_sprites.png') -834px -574px;
}

.bg-hello_min {
    width: 804px; height: 665px;
    background: url('/css/css_sprites.png') -10px -10px;
}
.phone-min {
    width: 304px;
    height: 639px;
    background: url('/css/phone-min.png') 0px -0px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

}

.blue-check {
    position:relative;
    font-size:3rem;
    background: url('/css/blue-min.png') 0 0;
    background-repeat: no-repeat;
    background-position-x: 100%;

}

.bg-blue_min {
    position: absolute;
    top:0;
    left:100%;
}

.our-pink {
    color: #FF3B9F;
}

.white-sec {
    background: #fff;
    color: #000;
}

.bg-white * {
    color: #000;
}

.bg-pink_min {
    position: absolute;
    top:20px;
    z-index: 0;
}

/* fluid 5 columns */

/* 2 columns wide */

mark {
    background-color: lavenderblush !important;
    color: #000;
}

/* X-Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {

        .blue-check {
           background: none;
            font-size:2rem;
        }

}

/* Small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {

    .grid-sizer,
    .blockquote {
        width: 80%;
        font-size:0.9rem;
        margin-left:10%;
    }

}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {

}

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {

}

/* X-Large devices (large desktops, less than 1400px) */
@media (max-width: 1399.98px) {

}


.sold-out {
    text-decoration: none !important;

}

.sold-out-message{
    line-height: 4rem;
    font-size: 2rem;
    color: burlywood;
}


.canva-embed {
    width:100%;aspect-ratio:16/9;   /* responsywność */
    border:0;
    pointer-events:none;            /* blokuje wszystkie interakcje */
    touch-action:pan-y pinch-zoom;  /* pozwala przeglądarce obsłużyć gesty */
}

.canva-wrapper{position:relative;aspect-ratio:16/9}

@supports (-webkit-touch-callout:none){      /* selektor tylko dla Safari iOS */
    .canva-wrapper::before{                    /* przezroczysta tarcza */
        content:"";position:absolute;inset:0;
        background:transparent;
        pointer-events:auto;                     /* przechwytuje dotyk */
        touch-action:pan-y pinch-zoom;           /* przekazuje gest przewijania */
    }
}

.canva-wrapper iframe{
    width:100%;height:100%;border:0;
}