/* ============================================================
   BLOCK: about-start
   ============================================================ */

.aboutStart {
    background: #fff;
}

/* Mini label z kropką */
.aboutStart__label {
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: #2b2b2b;
    padding-top: 10px;
}

.aboutStart__dot {
    width: 8px;
    height: 8px;
    min-width: 8px;
    border-radius: 50%;
    background: #27686c;
    display: inline-block;
}

/* Dwukolorowy nagłówek */
.aboutStart__heading {
    font-size: clamp(21px, 3vw, 34px);
    line-height: 1.25;
    font-weight: 400;
}

.aboutStart__heading--dark {
    color: #1a1a1a;
    font-weight: 400;
	font-family:var(--txtHeader);
}

.aboutStart__heading--light {
    color: #27686c;
    font-weight: 400;
	font-family:var(--txtHeader);
}

/* Siatka statystyk */
.aboutStart__statsGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e5e5e5;
}

.aboutStart__statNumber {
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
	font-family:var(--txtHeader);
}

.aboutStart__statLabel {
    font-size: 14px;
    color: #9a9a9a;
    font-weight: 400;
    letter-spacing: 1px;
	text-transform:uppercase;
}

/* Responsive */
@media screen and (max-width: 992px) {
    .aboutStart__statsGrid {
        grid-template-columns: repeat(3, 1fr);
        margin-top: 40px;
        padding-top: 30px;
    }
}

@media screen and (max-width: 768px) {
    .aboutStart__statsGrid {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        margin-top: 30px;
    }
}

@media screen and (max-width: 576px) {
    .aboutStart__statsGrid {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .aboutStart__label {
        padding-top: 0;
    }
}


/* ============================================================
   BLOCK: columns-good
   ============================================================ */

.columnsGood {
    background: #fff;
}

/* Mini label */
.columnsGood__label {
    font-size: 12px;
    font-weight: 400;
    color: #9a9a9a;
    letter-spacing: 0.05em;
}

/* Dwukolorowy nagłówek */
.columnsGood__headingWrap {
    max-width: 65%;
    font-size: clamp(24px, 2.8vw, 42px);
    line-height: 1.25;
    font-weight: 400;
}

.columnsGood__heading--dark {
    color: #1a1a1a;
    font-weight: 500;
}

.columnsGood__heading--light {
    color: #b0b0b0;
    font-weight: 400;
}

/* Siatka kolumn */
.columnsGood__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-top: 50px;
    border-top: 1px solid #e5e5e5;
}

/* Pojedyncza kolumna */
.columnsGood__iconWrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.columnsGood__icon {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 8px;
}

.columnsGood__title {
    font-size: 17px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.3;
}

.columnsGood__desc {
    font-size: 13px;
    color: #9a9a9a;
    line-height: 1.6;
    font-weight: 400;
}

.columnsGood__desc p {
    color: #9a9a9a;
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media screen and (max-width: 992px) {
    .columnsGood__headingWrap {
        max-width: 100%;
    }

    .columnsGood__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media screen and (max-width: 576px) {
    .columnsGood__grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}


/* ============================================================
   BLOCK: all-main
   ============================================================ */

/* ----- WSPÓLNE ----- */
.allMain__sectionLabel {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #888;
}

/* ----- 1. HERO ----- */
.allMain__hero {
    padding: 120px 0 80px;
    background: #f7f6f4;
}

.allMain__hero--hasBg {
    padding: 140px 0 100px;
    background-color: #1a1a1a;
}

.allMain__heroDark {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1;
}

.allMain__heroTagline {
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 20px;
    font-weight: 400;
}

.allMain__heroH1 {
    font-size: clamp(32px, 4.5vw, 64px);
    font-weight: 600;
    line-height: 1.15;
    color: #1a1a1a;
    max-width: 800px;
    margin-bottom: 20px;
}

.allMain__heroDesc {
    font-size: 17px;
    color: #555;
    max-width: 560px;
    line-height: 1.65;
    margin-bottom: 35px;
    font-weight: 400;
}

.allMain__heroBtns {
    margin-bottom: 40px;
}

.allMain__heroBullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.allMain__heroBullet {
    font-size: 14px;
    color: #555;
    padding-left: 18px;
    position: relative;
}

.allMain__heroBullet::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: 700;
    font-size: 12px;
}

/* ----- 2. O NAS ----- */
.allMain__aboutH2 {
    font-size: clamp(24px, 2.8vw, 38px);
    line-height: 1.25;
    font-weight: 600;
    color: #1a1a1a;
}

.allMain__aboutDesc p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.allMain__aboutStat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.allMain__aboutStatNum {
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.allMain__aboutStatLabel {
    font-size: 13px;
    color: #888;
    font-weight: 400;
}

.allMain__aboutImg {
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

/* ----- 3. USŁUGI ----- */
.allMain__servicesDesc p {
    font-size: 16px;
    color: #555;
}

.allMain__servicesGrid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.allMain__serviceItem {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.allMain__serviceItem:nth-child(even) {
    direction: rtl;
}

.allMain__serviceItem:nth-child(even) > * {
    direction: ltr;
}

.allMain__serviceImgWrap {
    overflow: hidden;
    border-radius: 4px;
}

.allMain__serviceImg {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.allMain__serviceImgWrap:hover .allMain__serviceImg {
    transform: scale(1.03);
}

.allMain__serviceH3 {
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.25;
}

.allMain__serviceDesc p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* ----- 4. REALIZACJE ----- */
.allMain__portfolioDesc p {
    font-size: 16px;
    color: #555;
}

.allMain__portfolioImgWrap {
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 12px;
}

.allMain__portfolioImg {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.allMain__portfolioImgWrap:hover .allMain__portfolioImg {
    transform: scale(1.04);
}

.allMain__portfolioCat {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #888;
    font-weight: 500;
    display: block;
    margin-bottom: 6px;
}

.allMain__portfolioH4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
}

/* ----- 5. DLACZEGO WARTO ----- */
.allMain__whyGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.allMain__whyItem {
    padding-top: 25px;
    border-top: 2px solid #1a1a1a;
}

.allMain__whyDot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #1a1a1a;
    margin-bottom: 15px;
}

.allMain__whyH3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
}

.allMain__whyDesc p {
    font-size: 14px;
    color: #666;
    line-height: 1.65;
}

/* ----- 6. ETAPY ----- */
.allMain__stepsDesc p {
    font-size: 16px;
    color: #555;
}

.allMain__stepsGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.allMain__stepNum {
    font-size: 42px;
    font-weight: 700;
    color: #e5e5e5;
    line-height: 1;
    margin-bottom: 16px;
    font-variant-numeric: tabular-nums;
}

.allMain__stepH4 {
    font-size: 17px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
}

.allMain__stepDesc p {
    font-size: 14px;
    color: #666;
    line-height: 1.65;
}

/* ----- 7. OPINIE ----- */
.allMain__reviewItem {
    background: #fff;
    padding: 35px;
    border-radius: 4px;
    border: 1px solid #eee;
}

.allMain__reviewQuote {
    font-size: 60px;
    line-height: 0.8;
    color: #e5e5e5;
    font-family: Georgia, serif;
    margin-bottom: 15px;
}

.allMain__reviewText p {
    font-size: 15px;
    color: #333;
    line-height: 1.7;
    font-style: italic;
}

.allMain__reviewInitial {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background: #1a1a1a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
}

.allMain__reviewName {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

.allMain__reviewCity {
    font-size: 12px;
    color: #888;
    margin-top: 2px;
}

/* ----- 8. FAQ ----- */
.allMain__faqList {
    max-width: 760px;
}

.allMain__faqItem {
    border-bottom: 1px solid #e8e8e8;
    cursor: pointer;
}

.allMain__faqQuestion {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    font-size: 17px;
    font-weight: 500;
    color: #1a1a1a;
    gap: 20px;
    user-select: none;
}

.allMain__faqIcon {
    font-size: 22px;
    font-weight: 300;
    color: #888;
    line-height: 1;
    min-width: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.allMain__faqItem.active .allMain__faqIcon {
    transform: rotate(45deg);
    color: #1a1a1a;
}

.allMain__faqAnswer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.allMain__faqAnswerInner {
    padding-bottom: 20px;
}

.allMain__faqAnswerInner p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* ----- 9. KONTAKT ----- */
.allMain__contactDesc p {
    font-size: 16px;
    color: #555;
    line-height: 1.65;
}

.allMain__contactDetails {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.allMain__contactLink {
    display: flex;
    flex-direction: column;
    gap: 3px;
    text-decoration: none;
    padding: 18px 20px;
    background: #fff;
    border-radius: 4px;
    border: 1px solid #e8e8e8;
    transition: border-color 0.3s ease;
    color: #1a1a1a;
}

.allMain__contactLink:hover {
    border-color: #1a1a1a;
}

.allMain__contactLinkLabel {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #888;
    font-weight: 500;
}

.allMain__contactLink span:last-child {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

.allMain__contactForm .wpcf7-form input,
.allMain__contactForm .wpcf7-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    color: #1a1a1a;
    background: #fff;
    margin-bottom: 12px;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

.allMain__contactForm .wpcf7-form input:focus,
.allMain__contactForm .wpcf7-form textarea:focus {
    outline: none;
    border-color: #1a1a1a;
}

.allMain__contactForm .wpcf7-form textarea {
    height: 130px;
    resize: vertical;
}

.allMain__contactForm .wpcf7-form input[type="submit"] {
    background: #1a1a1a;
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 16px 40px;
    border-radius: 4px;
    transition: background 0.3s ease;
    width: auto;
    margin-bottom: 0;
}

.allMain__contactForm .wpcf7-form input[type="submit"]:hover {
    background: #333;
}

/* ----- RESPONSIVE ----- */
@media screen and (max-width: 1170px) {
    .allMain__whyGrid { grid-template-columns: repeat(2, 1fr); }
    .allMain__stepsGrid { grid-template-columns: repeat(2, 1fr); }
}

@media screen and (max-width: 992px) {
    .allMain__hero { padding: 80px 0 60px; }
    .allMain__hero--hasBg { padding: 100px 0 70px; }
    .allMain__serviceItem { grid-template-columns: 1fr; gap: 25px; }
    .allMain__serviceItem:nth-child(even) { direction: ltr; }
    .allMain__serviceImg { height: 280px; }
}

@media screen and (max-width: 768px) {
    .allMain__whyGrid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .allMain__stepsGrid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .allMain__reviewItem { padding: 25px; }
}

@media screen and (max-width: 576px) {
    .allMain__hero { padding: 60px 0 50px; }
    .allMain__whyGrid { grid-template-columns: 1fr; }
    .allMain__stepsGrid { grid-template-columns: 1fr; }
    .allMain__heroBtns { flex-direction: column; }
}




.aboutStart__label {
    /* Efekt rozmycia tła (Glassmorphism) */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px); /* Wsparcie dla starszych wersji Safari */
    
    /* Półprzezroczyste jasne tło, żeby rozmycie było widoczne */
    background-color: #fff; 
    
    /* Ramka i wewnętrzne odstępy, o które prosiłeś */
    border: 1px solid #e5e5e5;
    padding: 5px 10px;
    
    /* Dodatki, które sprawią, że "szkło" będzie wyglądać super: */
    border-radius: 10px; /* Zaokrąglenie rogów (opcjonalnie, ale pasuje do nowoczesnych stron) */
    display: inline-flex; /* Sprawi, że ramka dopasuje się do szerokości tekstu i kropki */
    align-items: center; /* Wyrówna kropkę i tekst idealnie w pionie */
    gap: 10px; /* Zrobi ładny odstęp między kropką a tekstem */
}

/* Usuwamy domyślne marginesy z nagłówka h6, żeby nie psuły paddingu */
.aboutStart__label h6 {
    margin: 0; 
    background: transparent !important; /* Usuwamy tło tekstowe, jeśli jakieś było */
}



@media screen and (max-width:768px) {
	.aboutStart__statNumber {
		text-align:center;
	}
	.aboutStart__statLabel {
		text-align:center;
	}
}






/* ============================================================
   BLOCK: portfolio-onebig
   ============================================================ */

/* ----- GÓRNY RZĄD: 1 duże + 2 małe ----- */
.portfolioOneBig__topGrid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
    gap: 10px;
    margin-bottom: 10px;
}

.portfolioOneBig__itemBig {
    grid-row: 1 / 3;
}

.portfolioOneBig__itemBig .portfolioOneBig__imgWrap {
    height: 500px;
}

.portfolioOneBig__itemSmall .portfolioOneBig__imgWrap {
    height: 245px;
}

/* ----- DOLNY RZĄD: 3 równe ----- */
.portfolioOneBig__bottomGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.portfolioOneBig__itemBottom .portfolioOneBig__imgWrap {
    height: 280px;
}

/* ----- WSPÓLNE ----- */
.portfolioOneBig__imgWrap {
    overflow: hidden;
    border-radius: 8px;
    width: 100%;
    display: block;
}

.portfolioOneBig__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

/* ----- HOVER: zoom-in tylko od 992px ----- */
@media screen and (min-width: 992px) {
    .portfolioOneBig__imgWrap:hover .portfolioOneBig__img {
        transform: scale(1.05);
    }
}

/* ----- RESPONSIVE ----- */
@media screen and (max-width: 992px) {
    .portfolioOneBig__topGrid {
        grid-template-columns: 1fr 1fr;
    }
    .portfolioOneBig__itemBig {
        grid-column: 1 / 3;
        grid-row: auto;
    }
    .portfolioOneBig__itemBig .portfolioOneBig__imgWrap {
        height: 320px;
    }
    .portfolioOneBig__itemSmall .portfolioOneBig__imgWrap {
        height: 200px;
    }
    .portfolioOneBig__itemBottom .portfolioOneBig__imgWrap {
        height: 200px;
    }
}

@media screen and (max-width: 576px) {
    .portfolioOneBig__topGrid {
        grid-template-columns: 1fr 1fr;
    }
    .portfolioOneBig__itemBig {
        grid-column: 1 / 3;
        grid-row: auto;
    }
    .portfolioOneBig__bottomGrid {
        grid-template-columns: 1fr 1fr;
    }
    .portfolioOneBig__itemBig .portfolioOneBig__imgWrap {
        height: 200px;
    }
    .portfolioOneBig__itemSmall .portfolioOneBig__imgWrap,
    .portfolioOneBig__itemBottom .portfolioOneBig__imgWrap {
        height: 160px;
    }
    .portfolioOneBig__bottomGrid .portfolioOneBig__item:last-child {
        grid-column: 1 / 3;
    }
}









/* ============================================================
   BLOCK: offer-house
   ============================================================ */

.offerHouse__h2 h2 {
    font-size: clamp(26px, 3vw, 42px);
    font-weight: 500;
    line-height: 1.2;
    color: #1a1a1a;
}

.offerHouse__h2 h2 strong {
	font-weight: 500 !important;
	color:#4ade80;
}

.offerHouse__desc p {
    font-size: 16px;
/*     color: #555; */
    line-height: 1.7;
}

/* ----- KARTA ----- */
.offerHouse__card {
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* ----- ZDJĘCIE + IKONA ----- */
.offerHouse__imgWrap {
    position: relative;
    overflow: hidden;
}

.offerHouse__img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.offerHouse__iconWrap {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 46px;
    height: 46px;
    background: #4ade80;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offerHouse__icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter:invert(0);
}

/* ----- TREŚĆ KARTY ----- */
.offerHouse__cardContent {
    padding: 22px 20px 22px;
}

.offerHouse__cardTitle {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 14px;
}

.offerHouse__cardText {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    padding: 10px 0;
    border-bottom: 1px solid #e5e5e5;
}

/* .offerHouse__cardText--last {
    border-bottom: none;
} */

/* ----- HOVER (tylko 992px+) ----- */
@media screen and (min-width: 992px) {
    .offerHouse__card:hover {
        transform: translateY(-8px);
        box-shadow: 0 16px 40px rgba(0,0,0,0.08);
    }
    .offerHouse__card:hover .offerHouse__img {
        transform: scale(1.05);
    }
}

/* ----- RESPONSIVE ----- */
/* @media screen and (max-width: 992px) {
    .offerHouse__grid {
        grid-template-columns: 1fr 1fr;
    }
} */

@media screen and (max-width: 576px) {
    .offerHouse__grid {
        grid-template-columns: 1fr;
    }
}







/* ============================================================
   BLOCK: whyus-section
   ============================================================ */

/* ----- KARTA ----- */
.whyusSection__card {
    padding: 20px;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    background: #fff;
    transition: border-color 0.3s ease;
}

/* ----- IKONA ----- */
.whyusSection__iconWrap {
    width: 65px;
    height: 65px;
    border-radius: 10px;
    background: rgba(74, 222, 128, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.whyusSection__icon {
    width: 45px;
    height: 45px;
    object-fit: contain;
    transition: filter 0.3s ease;
}

/* ----- TYTUŁ I OPIS ----- */
.whyusSection__title {
    font-size: 17px;
    font-weight: 700;
/*     color: #1a1a1a; */
    line-height: 1.3;
}

.whyusSection__desc p {
    font-size: 14px;
/*     color: #555; */
    line-height: 1.65;
    margin: 0;
}

/* ----- HOVER (tylko 992px+) ----- */
@media screen and (min-width: 992px) {
    .whyusSection__card:hover {
        border-color: #4ade80;
    }
    .whyusSection__card:hover .whyusSection__iconWrap {
        background: #4ade80;
    }
    .whyusSection__card:hover .whyusSection__icon {
        filter: invert(1);
    }
}

/* ----- RESPONSIVE ----- */
@media screen and (max-width: 768px) {
    .whyusSection__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 480px) {
    .whyusSection__grid {
        grid-template-columns: 1fr;
    }
}



/* ============================================================
   BLOCK: building-steps
   ============================================================ */

.buildingSteps__timeline {
    position: relative;
    padding: 20px 0;
}

/* ----- LINIA ŚRODKOWA ----- */
.buildingSteps__line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: #ddd;
    transform: translateX(-50%);
    z-index: 0;
}

.buildingSteps__lineProgress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: #4ade80;
    transition: height 0.15s linear;
}

/* ----- WIERSZ (lewo/prawo na przemian) ----- */
.buildingSteps__row {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 40px;
}

.buildingSteps__row--left .buildingSteps__card { grid-column: 1; }
.buildingSteps__row--right .buildingSteps__card { grid-column: 2; }

/* ----- MARKER (kwadrat na linii) — wycentrowany absolutnie na wysokości wiersza ----- */
.buildingSteps__marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    background: #fff;
    border: 2px solid #4ade80;
    border-radius: 4px;
    z-index: 2;
    transition: background 0.3s ease;
}

.buildingSteps__marker.active {
    background: #4ade80;
}

/* ----- KARTA ----- */
.buildingSteps__card {
    padding: 20px;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    background: #fff;
    transition: background 0.3s ease;
}

.buildingSteps__card.active {
    background: #f8f8f8;
}

/* ----- NUMER (01, 02, 03...) ----- */
.buildingSteps__num {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: #4ade80;
    color: #2b2b2a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* ----- RESPONSIVE: mobile, linia po lewej ----- */
@media screen and (max-width: 768px) {
    .buildingSteps__line {
        left: 20px;
    }

    .buildingSteps__row {
        grid-template-columns: 1fr;
        margin-left: 50px;
        margin-bottom: 25px;
    }

    .buildingSteps__row--left .buildingSteps__card,
    .buildingSteps__row--right .buildingSteps__card {
        grid-column: 1;
    }

    .buildingSteps__marker {
        left: -30px;
    }
}
@media screen and (min-width:768px) {
	.buildingSteps__row--right .buildingSteps__card {
		margin-left:60px;
	}
	.buildingSteps__row--left .buildingSteps__card {
		margin-right:60px;
	}
}






/* ============================================================
   BLOCK: technology-cta
   ============================================================ */

.technologyCta__h2 {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 600;
    line-height: 1.25;
    color: #1a1a1a;
}

.technologyCta__desc p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

/* ----- ZDJĘCIE + FLOATING KAFELEK ----- */
.technologyCta__imgWrap {
    position: relative;
}

.technologyCta__img {
    width: 100%;
    height: 650px;
    border-radius: 10px;
    display: block;
    object-fit: cover;
}

.technologyCta__overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 18px 20px;
    width: 330px;
    max-width: calc(100% - 60px);
}

.technologyCta__overlayIconWrap {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background:#4ade80;
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
}

.technologyCta__overlayIcon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.technologyCta__overlayText {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
    display: block;
}

/* ----- LISTA KAFELKÓW ----- */
.technologyCta__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.technologyCta__item {
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 16px 18px;
    width: 300px;
    max-width: 100%;
}

.technologyCta__itemIconWrap {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 10px;
    background:#4ade80;
    display: flex;
    align-items: center;
    justify-content: center;
}

.technologyCta__itemIcon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.technologyCta__itemTitle {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

/* ----- RESPONSIVE ----- */
@media screen and (max-width: 576px) {
    .technologyCta__overlay {
        bottom: 16px;
        left: 16px;
        padding: 14px 16px;
        width: auto;
        max-width: calc(100% - 32px);
    }

    .technologyCta__item {
        width: 100%;
    }
	.technologyCta__img {
		height:450px;
	}
}





/* ============================================================
   BLOCK: setsapart
   ============================================================ */

.setsApart__h2 {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 400;
    line-height: 1.25;
    color: #1a1a1a;
}

.setsApart__desc p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

/* ----- ZDJĘCIE ----- */
.setsApart__img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

@media screen and (max-width: 576px) {
    .setsApart__img {
        height: 450px;
    }
}

/* ----- LISTA Z CHECKAMI ----- */
.setsApart__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.setsApart__item {
    padding: 10px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    gap: 15px;
}

.setsApart__itemText {
    font-size: 15px;
    color: #1a1a1a;
    font-weight: 500;
    line-height: 1.5;
}

.setsApart__itemCheck {
    width: 25px;
    height: 25px;
    min-width: 25px;
    object-fit: contain;
}



/* ============================================================
   BLOCK: location-hero
   ============================================================ */

.locationHero {
    margin: 0 20px;
    border-radius: 10px;
    overflow: hidden;
    padding: 100px 0;
    background-repeat: no-repeat;
}

.locationHero__overlay {
    position: absolute;
    inset: 0;
    background: #2b2b2a;
    opacity: 0.67;
    z-index: 1;
}

/* ----- NAGŁÓWEK H2 ----- */
.locationHero__h2 h2 {
    font-size: clamp(26px, 3vw, 44px);
    color: #fff;
    line-height: 1.3;
    font-weight: 500;
}

.locationHero__h2 p {
    color: #fff;
}

.locationHero__gapBottom {
    margin-bottom: 150px;
}

/* ----- LISTA TXT1 / TXT2 ----- */
.locationHero__list {
    display: flex;
    flex-direction: column;
}

.locationHero__txt {
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid #e5e5e5;
    color: #fff;
    font-weight: 500;
    margin: 0;
}

/* ----- RESPONSIVE ----- */
@media screen and (max-width: 768px) {
    .locationHero__gapBottom {
        margin-bottom: 100px;
    }
}

@media screen and (max-width: 576px) {
    .locationHero {
        margin: 0 10px;
        padding: 70px 0;
    }
}



/* ============================================================
   BLOCK: reviews-infinite
   ============================================================ */

.reviewsInfinite__h2 {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.25;
}

/* ----- SLIDER WRAP ----- */
.reviewsInfinite__sliderWrap {
    overflow: hidden;
}

/* KLUCZOWE: wymusza liniowy ruch bez zwalniania/zatrzymywania na każdym slajdzie */
.reviewsInfinite__slider .swiper-wrapper {
    transition-timing-function: linear !important;
}

.reviewsInfinite__slide {
    width: 330px;
    height: auto;
}

/* ----- KARTA ----- */
.reviewsInfinite__card {
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 24px;
    background: #fff;
    height: 100%;
	width:380px !important;
}

.swiper-slide.reviewsInfinite__slide {
	width:380px !important;
}

/* ----- IKONA QUOTE ----- */
.reviewsInfinite__quoteWrap {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #27686c;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviewsInfinite__quoteIcon {
    width: 20px;
    height: 20px;
    object-fit: contain;
	filter:invert(1);
}

/* ----- OPIS + DZIELNIK ----- */
.reviewsInfinite__desc {
    padding-bottom: 18px;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 16px;
}

.reviewsInfinite__desc p {
    font-size: 15px;
/*     color: #444; */
    line-height: 1.65;
    margin: 0;
}

/* ----- STOPKA: IMIĘ + GWIAZDKI ----- */
.reviewsInfinite__name {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.reviewsInfinite__starIcon {
    height: 12px;
    width: auto;
    object-fit: contain;
}

/* ----- RESPONSIVE ----- */
@media screen and (max-width: 576px) {
    .reviewsInfinite__slide {
        width: 270px;
    }
    .reviewsInfinite__card {
        padding: 18px;
    }
}



.reviewsInfinite__sliderWrap {
    position: relative;
}

.reviewsInfinite__sliderWrap::before,
.reviewsInfinite__sliderWrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 140px;
    z-index: 2;
    pointer-events: none;
}

.reviewsInfinite__sliderWrap::before {
    left: 0;
    background: linear-gradient(to right, #fff 0%, rgba(255,255,255,0) 100%);
}

.reviewsInfinite__sliderWrap::after {
    right: 0;
    background: linear-gradient(to left, #fff 0%, rgba(255,255,255,0) 100%);
}

/* Tło karty na hover (tylko 992px+) */
@media screen and (min-width: 992px) {
    .reviewsInfinite__card {
        transition: background 0.3s ease;
    }
    .reviewsInfinite__card:hover {
        background: #f8f8f8;
    }
}

@media screen and (max-width: 576px) {
    .reviewsInfinite__sliderWrap::before,
    .reviewsInfinite__sliderWrap::after {
        width: 60px;
    }
}








.reviewsInfinite__sliderWrap {
    position: relative;
    overflow: hidden;
}

.reviewsInfinite__track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: reviewsInfiniteScroll 80s linear infinite;
}

@keyframes reviewsInfiniteScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.reviewsInfinite__slide {
    width: 380px;
    flex-shrink: 0;
}

/* Pauza na hover całego kontenera — tylko 992px+ */
@media screen and (min-width: 992px) {
    .reviewsInfinite__sliderWrap:hover .reviewsInfinite__track {
        animation-play-state: paused;
    }
}

@media screen and (max-width: 576px) {
    .reviewsInfinite__slide {
        width: 380px;
    }
}




/* ============================================================
   BLOCK: faq-circle
   ============================================================ */

.faqCircle__h2 h2 {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.25;
}

.faqCircle__h2 p {
    margin: 0;
}

/* ----- LISTA ----- */
.faqCircle__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ----- KAFELEK ----- */
.faqCircle__item {
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 30px 20px;
    cursor: pointer;
}

.faqCircle__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.faqCircle__question {
    font-size: 17px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
}

/* ----- KÓŁKO Z + ----- */
.faqCircle__circle {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: #4ade80;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.faqCircle__plus {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.faqCircle__item.active .faqCircle__circle {
    transform: rotate(135deg);
}

/* ----- ODPOWIEDŹ (smooth) ----- */
.faqCircle__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faqCircle__answerInner {
    padding-top: 16px;
}

.faqCircle__answerInner p {
    font-size: 15px;
    line-height: 1.65;
    margin: 0;
}






/* ============================================================
   BLOCK: cta-three
   ============================================================ */

.ctaThree__card {
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
    background:#f8f8f8;
    height: 100%;
}

.ctaThree__card--gray {
    border: 1px solid #d5d5d5;
}

.ctaThree__h2 {
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.25;
    margin-bottom: 12px;
}

.ctaThree__desc {
    margin-bottom: 16px;
}

.ctaThree__desc p {
    font-size: 15px;
    line-height: 1.65;
    margin: 0;
}

/* ----- IKONY KONTAKTOWE (zielone tło) ----- */
.ctaThree__iconWrap {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: #4ade80;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ctaThree__icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.ctaThree__contactText {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
}

/* ----- ZDJĘCIE ŚRODKOWE ----- */
.ctaThree__img {
    width: 100%;
    height: 377px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

/* ----- CHECKLISTA ----- */
.ctaThree__check {
    width: 22px;
    height: 22px;
    min-width: 22px;
    object-fit: contain;
}

.ctaThree__checkText {
    font-size: 15px;
    color: #1a1a1a;
}

/* ----- RESPONSIVE ----- */
@media screen and (max-width: 992px) {
    .ctaThree__img {
        height: 320px;
    }
}


/* ============================================================
   BLOCK: aboutme-hero
   ============================================================ */

/* --- Tło ciemne (dolna część sekcji) --- */
.aboutmeHero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background:#f1fffe;
	border-bottom:1px solid #d7d3d1;
    z-index: 0;
}
@media screen and (max-width:768px) {
	.aboutmeHero__bg {
		height:900px;
	}
}

/* --- Nagłówek --- */
.aboutmeHero__h2 h2,
.aboutmeHero__h2 p {
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 400; 
	font-family:var(--txtHeader);
    line-height: 1.2;
    margin: 0;
	color:#2b2b2a;
}

.aboutmeHero__desc p {
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

/* --- Zdjęcie --- */
.aboutmeHero__imgWrap {
    position: relative;
}

.aboutmeHero__img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    position: relative;
    z-index: 1;
}

/* --- Duży napis na górnej krawędzi zdjęcia --- */
.aboutmeHero__imgTxt {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -13%);
    font-size: clamp(60px, 10vw, 160px);
    font-weight: 900;
    color: #343434;
    white-space: nowrap;
    line-height: 1;
    z-index: 2;
    pointer-events: none;
    letter-spacing: -2px;
}

/* --- Karty --- */
.aboutmeHero__card {
    border-radius: 10px;
    border: 1px solid #e5e5e5;
    padding: 20px;
    background: #fff;
}

.aboutmeHero__iconWrap {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background: #27686c;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aboutmeHero__icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
	filter:invert(1);
}

.aboutmeHero__cardTitle {
    font-size: 17px;
    font-weight: 400;
	font-family:var(--txtHeader);
    color: #2b2b2a;
    margin: 0;
}

.aboutmeHero__cardDesc {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}



/* ============================================================
   BLOCK: aboutme-guarantee
   ============================================================ */

.aboutmeGuarantee__imgWrap {
    position: relative;
}

.aboutmeGuarantee__img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

/* Overlay kafelek na zdjęciu */
.aboutmeGuarantee__overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
    padding: 18px 20px;
    width: 330px;
}
@media screen and (max-width:992px) {
	.aboutmeGuarantee__overlay {
		width:250px;
	}
	.aboutmeGuarantee__content h2 {
		font-size:22px;
		line-height:30px;
	}
}

.aboutmeGuarantee__iconWrap {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: #27686c;
    display: flex;
    align-items: center;
    justify-content: center;
}
.aboutmeGuarantee__icon {
	width:32px;
	height:32px;
	filter:invert(1);
}





/* ============================================================
   BLOCK: aboutme-numbers
   ============================================================ */

.aboutmeNumbers__h2 h2 {
    font-size: clamp(26px, 3vw, 44px);
    font-weight: 400;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0;
}

/* Lista kart — padding-left tylko na desktop */
.aboutmeNumbers__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding-left: 80px;
}

/* Kafelek */
.aboutmeNumbers__card {
    display: flex;
    flex-direction:column;
    gap: 20px;
    border: 1px solid #e5e5e5;
    background: #fff;
    border-radius: 10px;
    padding: 20px 24px;
}

/* Liczba po lewej */
.aboutmeNumbers__number {
    font-size: clamp(25px, 5vw, 30px);
    font-weight: 400;
    color: #1a1a1a;
    white-space: nowrap;
    line-height: 1;
	font-family:var(--txtHeader);
/*     min-width: 100px; */
}

/* Opis po prawej (wysiwyg) */
.aboutmeNumbers__desc {
    font-size: 15px;
    line-height: 1.65;
    color: #444;
}

.aboutmeNumbers__desc p {
    margin: 0;
}

/* Responsive */
@media screen and (max-width: 992px) {
    .aboutmeNumbers__list {
        padding-left: 0px;
    }

    .aboutmeNumbers__number {
/*         min-width: 80px; */
        font-size: 20px;
    }
}



/* ============================================================
   BLOCK: contactme-hero
   ============================================================ */

/* --- Nagłówek h3 (wysiwyg) --- */
.contactmeHero__h3 h3 {
    font-size: clamp(26px, 3vw, 44px);
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0;
}

/* --- Kafelki --- */
.contactmeHero__card {
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    background: #fff;
    padding: 20px;
}

.contactmeHero__iconWrap {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background:#27686c;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contactmeHero__icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
	filter:invert(1);
}

.contactmeHero__cardTitle {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.contactmeHero__cardDesc {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* --- Zdjęcie --- */
.contactmeHero__img {
    width: 100%;
    height: 774px !important;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}
@media screen and (max-width:992px) {
	.contactmeHero__img {
		height:auto !important;
	}
}

/* --- Formularz nachodzący na zdjęcie --- */
.contactmeHero__formWrap {
/*     margin-top: -100px; */
    position: relative;
    z-index: 10;
}

.contactmeHero__formWrap .infoForm__formBox {
    background: #fff;
    border-radius: 10px;
    padding: 40px;
    border: 1px solid #e5e5e5;
/* 	margin:0px 220px; */
}


/* --- Mapa --- */
.placeMap__main .contact-map iframe {
    width: 100%;
    height: 450px;
    display: block;
    border: none;
}

/* --- Responsive --- */
@media screen and (max-width: 992px) {
    .contactmeHero__img {
        height: 320px;
    }

   

    .contactmeHero__formWrap .infoForm__formBox {
        padding: 24px;
    }
}





/* ============================================================
   BLOCK: technology-hero
   ============================================================ */

/* --- Nagłówek centralny --- */
.technologyHero__h2 h2 {
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0;
}

.technologyHero__desc p {
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

/* --- Kolumny kart --- */
.technologyHero__col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
@media screen and (max-width:992px) {
	.technologyHero__col {
		order:1;
	}
}

/* --- Kafelek --- */
.technologyHero__card {
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    background: #fff;
    padding: 20px;
}

.technologyHero__iconWrap {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: #4ade80;
    display: flex;
    align-items: center;
    justify-content: center;
}

.technologyHero__icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.technologyHero__cardTitle {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.technologyHero__cardDesc {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* --- Dekoracyjny duży tekst (środkowa kolumna) --- */
.technologyHero__txtMainWrap {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.technologyHero__txtMain {
    font-size: 150px;
    font-weight: 900;
    color: #1a1a1a;
    opacity: 0.2;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

/* --- Zdjęcie --- */
.technologyHero__img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

/* --- Responsive --- */
@media screen and (max-width: 992px) {
    .technologyHero__txtMain {
        font-size: 120px;
    }
}






/* ============================================================
   BLOCK: contentimg-change
   ============================================================ */

.contentimgChange {
    border-top: none !important;
}

/* --- Rząd kafelka --- */
.contentimgChange__row {
    margin-bottom: 60px;
}

.contentimgChange__row:last-child {
    margin-bottom: 0;
}

/* --- Numer dekoracyjny --- */
.contentimgChange__num {
    font-size: 100px;
    font-weight: 900;
    line-height: 1;
    opacity: 0.2;
    color: #1a1a1a;
    pointer-events: none;
    user-select: none;
}

/* --- Nagłówek h2 --- */
.contentimgChange__h2 {
    font-size: clamp(24px, 2.8vw, 40px);
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0;
}

/* --- Opis (wysiwyg) --- */
.contentimgChange__desc p {
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

/* --- Zdjęcie --- */
.contentimgChange__img {
    width: 100%;
    height: 450px;
	object-fit:cover;
    border-radius: 10px;
    display: block;
}
@media screen and (max-width:576px) {
	.contentimgChange__img {
		 height: 350px;
	}
}

/* --- Naprzemienność: parzyste rzędy odwracają kolejność --- */
.contentimgChange__row--reverse .contentimgChange__left {
    order: 2;
}

.contentimgChange__row--reverse .contentimgChange__right {
    order: 1;
}

@media screen and (max-width:992px) {
	.contentimgChange__row--reverse .contentimgChange__right {
		order:2;
	}
}




/* ============================================================
   BLOCK: verticalslider-hero
   ============================================================ */

.verticalsliderHero {
    background:#f1fffe;
    margin: 10px;
    border-radius: 20px;
    overflow: hidden;
	border:1px solid #d7d3d1;
}

/* --- Lewa kolumna --- */
.verticalsliderHero__h2 h2 {
    font-size: clamp(26px, 3vw, 44px);
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0;
}

.verticalsliderHero__desc p {
    font-size: 20px;
    line-height: 1.7;
    margin: 0;
}
@media screen and (max-width:768px) {
	.verticalsliderHero__desc p {
		font-size: 16px;
	}
}

/* --- Prawa: kontener sliderów --- */
.verticalsliderHero__right {
    height: 760px;
    overflow: hidden;
    border-radius: 16px;
    position: relative;
}

.verticalsliderHero__slidersWrap {
    display: flex;
    gap: 16px;
    height: 100%;
}

/* --- Pojedynczy slider --- */
.verticalsliderHero__slider {
    flex: 1;
    overflow: hidden;
    height: 100%;
}

/* --- Track: lista zdjęć (zduplikowana) --- */
.verticalsliderHero__track {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* --- Animacje CSS --- */
@keyframes verticalScroll {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

/* w górę */
.verticalsliderHero__track--up {
    animation: verticalScroll 30s linear infinite;
}

/* w dół */
.verticalsliderHero__track--down {
    animation: verticalScroll 30s linear infinite reverse;
}

/* --- Zdjęcia --- */
.verticalsliderHero__slide img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

/* --- Mobile --- */
@media screen and (max-width: 992px) {
    .verticalsliderHero__right {
        height: 420px;
    }

    .verticalsliderHero__left {
        padding-top: 110px !important;
        padding-bottom: 0 !important;
    }

    /* Gradient od góry w kolorze tła sekcji */
    .verticalsliderHero__right::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 120px;
        background: linear-gradient(to bottom, #e2fffd 0%, transparent 100%);
        z-index: 2;
        pointer-events: none;
    }
}



/* ============================================================
   BLOCK: bestsellers
   ============================================================ */

.bestsellers__card {
    display: block;
    border: 1px solid #d7d3d1;
    border-radius: 20px;
    padding: 10px;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.3s ease;
	background:#fff;
}

@media screen and (min-width: 992px) {
    .bestsellers__card:hover {
        box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    }
}

.bestsellers__imgWrap {
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 10px;
}

.bestsellers__img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    transition: transform 0.4s ease;
}

@media screen and (min-width: 992px) {
    .bestsellers__card:hover .bestsellers__img {
        transform: scale(1.03);
    }
}

.bestsellers__info {
    padding: 4px 6px 6px;
}

.bestsellers__name {
    font-size: 16px;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0 0 10px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #d7d3d1;
	font-family:var(--txtHeader);
}

.bestsellers__price {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    padding-top: 8px;
}

/* WooCommerce price override */
.bestsellers__price .woocommerce-Price-amount {
    color: #1a1a1a;
}



/* ============================================================
   BLOCK: four-shop
   ============================================================ */

.fourShop__card {
    border: 1px solid #d7d3d1;
    border-radius: 16px;
    padding: 24px;
    background: #fff;
}

.fourShop__iconWrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #27686c;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fourShop__icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
	filter:invert(1);
}

.fourShop__title {
    font-size: clamp(16px, 1.6vw, 20px);
    font-weight: 400;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
}

.fourShop__desc {
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
}





/* ============================================================
   BLOCK: header-category
   ============================================================ */

.headerCategory__card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 220px;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
}

/* Warstwa tła — skaluje się na hover (zoom-in) */
.headerCategory__card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.6s ease;
    z-index: 0;
}

/* Delikatny overlay #27686c */
.headerCategory__card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #27686c;
    opacity: 0.35;
    transition: opacity 0.35s ease;
    pointer-events: none;
    z-index: 1;
}

@media screen and (min-width: 992px) {
    .headerCategory__card:hover {
        box-shadow: 0 10px 32px rgba(0,0,0,0.18);
    }

    .headerCategory__card:hover::before {
        transform: scale(1.07);
    }

    .headerCategory__card:hover::after {
        opacity: 0;
    }

    .headerCategory__card:hover .headerCategory__arrow {
        transform: translate(4px, -4px);
    }
}

/* Strzałka i overlay box nad oboma pseudo-elementami */
.headerCategory__arrow,
.headerCategory__cardOverlay {
    position: absolute;
    z-index: 2;
}

.headerCategory__arrow {
    top: 20px;
    right: 20px;
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: invert(1);
    transition: transform 0.3s ease;
}

.headerCategory__cardOverlay {
    bottom: 20px;
    left: 20px;
    background: #fff;
    border: 1px solid #d7d3d1;
    border-radius: 10px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.headerCategory__cardTxt {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    white-space: nowrap;
}

.headerCategory__colLeft .headerCategory__card {
    flex: 1;
    min-height: 400px;
}

.headerCategory__colRight .grid-2 .headerCategory__card {
    min-height: 400px;
}

.headerCategory__colRight > .headerCategory__card {
    min-height: 400px;
}

@media screen and (max-width: 992px) {
    .headerCategory__card {
        min-height: 200px;
    }
}




/* ============================================================
   BLOCK: promo-slider
   ============================================================ */

/* --- Layout flex: 35% / 65% --- */
.promoSlider__layout {
    display: flex;
    align-items: center;
    gap: 24px;
}

.promoSlider__box {
    flex: 0 0 25%;
    width: 25%;
    background: #27686c;
    border: 1px solid #1e5257;
    border-radius: 20px;
    padding: 40px 32px;
}

.promoSlider__sliderWrap {
    flex: 0 0 75%;
    width: 75%;
    position: relative;
    padding: 0 20px;
}

/* Wewnętrzny wrapper clips slajdy, nie strzałki */
.promoSlider__swiperOuter {
    overflow: hidden;
}

.promoSlider__swiper {
    overflow: hidden;
}

/* --- Teksty w boxie --- */
.promoSlider__h2 h2,
.promoSlider__h2 p {
    color: #fff;
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 400;
    line-height: 1.1;
    margin: 0 0 16px 0;
	font-family:var(--txtHeader);
}

.promoSlider__desc p {
    color: #fff !important;
    font-size: 15px;
    line-height: 1.65;
    margin: 0;
}

.promoSlider__btn a {
    color: #fff !important;
}

.promoSlider__btn .lines-btn--line {
    background: #fff !important;
}

/* --- Strzałki nawigacji --- */
.promoSlider__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #fff;
    border: 1px solid #d7d3d1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
}

.promoSlider__nav:hover {
    background: #27686c;
}

.promoSlider__nav:hover img {
    filter: invert(1);
}

.promoSlider__nav img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.promoSlider__prev {
    left: 0;
    transform: translateY(-50%) rotate(180deg);
}

.promoSlider__next {
    right: 0;
}

.promoSlider__prev.swiper-button-disabled,
.promoSlider__next.swiper-button-disabled {
    opacity: 0;
    pointer-events: none;
}

/* --- Cena z przekreśleniem --- */
.promoSlider__price del {
    color: #aaa;
    font-size: 13px;
    margin-right: 4px;
}

.promoSlider__price ins {
    text-decoration: none;
    font-weight: 600;
    color: #27686c;
}

/* --- Mobile --- */
@media screen and (max-width: 992px) {
    .promoSlider__layout {
        flex-direction: column;
        align-items: stretch;
    }

    .promoSlider__box {
        flex: unset;
        width: 100%;
        padding: 28px 20px;
    }

    .promoSlider__sliderWrap {
        flex: unset;
        width: 100%;
        padding: 0 20px;
    }
}
.promoSlider__price .woocommerce-price-suffix {
    display: none;
}



/* --- aboutme-hero: grid 4 zdjęć --- */
.aboutmeHero__imgWrap {
    overflow: hidden;
    border-radius: 10px;
}

.aboutmeHero__imgGrid {
    width: 100%;
    height: 440px;
    display: block;
    border-radius: 10px;
    object-fit: cover;
}
@media screen and (max-width:576px) {
	.aboutmeHero__imgGrid {
		height:250px;
	}
}






/* ============================================================
   SINGLE PRODUCT
   ============================================================ */

/* --- Lewa kolumna: zdjęcie sticky --- */
/* .singleProduct__imgCol {
    position: sticky;
    top: 150px;
}

@media (max-width: 992px) {
    .singleProduct__imgCol {
        position: static;
    }
} */

.singleProduct__img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid #d7d3d1;
    border-radius: 20px;
    object-fit: contain;
}

/* --- Prawa kolumna --- */
.singleProduct__title {
    font-size: 30px;
	line-height:38px;
    font-weight: 400;
    color: #2b2b2a;
    margin-bottom: 16px;
}

.singleProduct__shortDesc {
    font-size: 15px;
    line-height: 1.6;
}

.singleProduct__price {
    font-size: 34px;
    font-weight: 700;
    color: #27686c;
    margin-bottom: 6px;
}

.singleProduct__price del {
    color: #aaa;
    font-size: 16px;
    font-weight: 400;
}

.singleProduct__price ins {
    text-decoration: none;
    color: #27686c;
	font-size:34px !important;
}

.singleProduct__minPrice {
    font-size: 12px;
    color: #9a9a9a;
    margin-bottom: 20px;
}

/* --- Dodaj do koszyka --- */
.singleProduct__addToCart {
    margin-bottom: 28px;
}

.singleProduct__addToCart .quantity {
    margin-right: 12px;
}

/* --- Korzyści (grid-3) --- */
.singleProduct__benefits {
    margin-bottom: 20px;
    margin-top: 20px;
    padding: 20px;
	border-radius:12px;
    border: 1px solid #d7d3d1;
}

.singleProduct__benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.singleProduct__benefitIconWrap {
    width: 48px;
    height: 48px;
    background: #27686c;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.singleProduct__benefitIcon {
    width: 32px;
    height: 32px;
    filter: invert(1);
}

.singleProduct__benefitText {
    font-size: 12px;
    color: #2b2b2a;
    line-height: 1.4;
    margin: 0;
}

/* --- FAQ accordion --- */
.singleProduct__faq {
    border-top: 1px solid #d7d3d1;
    padding-top: 4px;
}

.singleProduct__faqItem {
    border-bottom: 1px solid #d7d3d1;
}

.singleProduct__faqQ {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    cursor: pointer;
}

.singleProduct__faqIconWrap {
    width: 36px;
    height: 36px;
    background: #e2fffd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.singleProduct__faqIcon {
    width: 18px;
    height: 18px;
    filter: invert(36%) sepia(45%) saturate(500%) hue-rotate(140deg);
}

.singleProduct__faqQTxt {
    flex: 1;
    font-size: 14px;
    font-weight: 600;
    color: #2b2b2a;
}

.singleProduct__faqArrow {
    width: 16px;
    height: 16px;
    filter: invert(1) brightness(0.4);
    transform: rotate(90deg);
    transition: transform 0.3s ease;
}

.singleProduct__faqItem.is-open .singleProduct__faqArrow {
    transform: rotate(-90deg);
}

.singleProduct__faqA {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    font-size: 14px;
    line-height: 1.6;
    padding: 0 0 0 48px;
}

.singleProduct__faqItem.is-open .singleProduct__faqA {
    padding-bottom: 14px;
}

@media screen and (max-width:1000px) {
	.singleProduct {
		padding-top:40px !important;
	}
	.singleProduct__title {
		font-size:25px !important;
		line-height:33px !important;
	}
}


.singleProduct__descContent h2 {
	margin-bottom:20px;
}
.singleProduct__descContent ul {
	color:#6b6b6b;
}