/* Kontener siatki DZIAŁ ZESPOL */
body.vantage-sticky-menu .site-navigation.sticky{
		background-color:white;
}

.wc-block-components-totals-footer-item .wc-block-components-totals-item__label, .wc-block-components-totals-footer-item .wc-block-components-totals-item__value{
		font-size:1em;
}

.wc-block-components-formatted-money-amount{
		font-family: Montserrat;
font-size: 19px;
}

.mobile-nav-frame .title h3{
		text-shadow:none;
		font-family:'Montserrat';
}

.mobile-nav-frame .title{
		background-color:#94b05e;
		border:none;
		
}

.mobile-nav-frame .next{
		color:#727171;
}

.mobile-nav-frame ul li a.link{
		color:#727171;
		text-shadow:none;
		font-family:inherit;
}

.mobile-nav-frame{
		background-color:white;
}

.mobile-nav-frame ul{
		background-color:white;
		border:0px;
		box-shadow:none;
}

#masthead.masthead-logo-in-menu .logo{
		margin-left:85px;
}

.team-grid {
    display: grid;
    /* Wymuszamy dokładnie 3 równe kolumny */
    grid-template-columns: repeat(3, 1fr); 
    gap: 40px;
    padding: 50px;
    max-width: 1000px; /* Opcjonalnie: ogranicz szerokość, by kółka nie były za wielkie */
    margin: 0 auto;    /* Wycentrowanie całej siatki */
}

.person-wrapper {
    text-align: center;
    position: relative;
}

.avatar-container {
    position: relative;
    display: inline-block;
}

@keyframes wiggle {
    0%   { transform: translate(0, 0) rotate(0deg); }
    33%  { transform: translate(2px, -4px) rotate(2deg); }
    66%  { transform: translate(-2px, 4px) rotate(-2deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}
.avatar-img {
    width: 138px; /* Dopasuj do swoich plików */
    height: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
		animation: wiggle 4s ease-in-out infinite;
    transform-origin: bottom center;
}

/* Co druga postać zaczyna animację z opóźnieniem */
.person-wrapper:nth-child(2n) .avatar-img {
    animation-delay: 0.5s;
    animation-duration: 4.2s;
}

/* Co trzecia postać rusza się jeszcze inaczej */
.person-wrapper:nth-child(3n) .avatar-img {
    animation-delay: 1.2s;
    animation-duration: 3.8s;
}

.avatar-img:hover {
    transform: scale(1.05); /* Lekkie powiększenie przy najechaniu */
}

/* Styl chmurki */
.speech-bubble {
    position: absolute;
    bottom: 110%; /* Pojawia się nad głową */
    left: 20%;
    transform: translateX(-50%) translateY(10px);
    width: 280px;
    background: #94b05e;
    
    border-radius: 15px;
    padding: 10px;
    font-size: 15px;
    color: white;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-out;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    z-index: 100;
}

/* Strzałka chmurki */
.speech-bubble::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -10px;
    border-width: 10px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
}

/* Pokazywanie po najechaniu */
.avatar-container:hover .speech-bubble {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.person-name {
    display: block;
    margin-top: 15px;
    font-weight: normal;
    letter-spacing: 1px;
		color:white;
		font-family:Montserrat;
		
}
/* DZIAL ZESPOL KONIEC */

#main{
  background: #ffffff;
		padding:0px;
}
.slick-list{
		padding:0 0 95px 0;
}

/* pulsujący button */
@keyframes pulse-animation {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05); /* Przycisk lekko rośnie */
        box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.1);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

/* Klasa, którą nadasz przyciskowi */
.pulsing-button {
    animation: pulse-animation 2s infinite; /* 2 sekundy, zapętlone w nieskończoność */
    transition: all 0.3s ease;
}

/* Opcjonalnie: zatrzymanie pulsowania po najechaniu myszką */
.pulsing-button:hover {
    animation-play-state: paused;
}
/* pulsujący button */

/* Ukrywamy nasz nazwany kontener na konkretnych stronach */
.page-id-10 .brief-kontener,
.page-id-25 .brief-kontener,
.home .brief-kontener,
.page-id-820 .brief-kontener{
    display: none !important;
}

/* Kontener pracownika */
.team-member {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    line-height: 0;
}

.team-member img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

/* Warstwa Overlay (domyślnie ukryta) */
.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 20px;
    box-sizing: border-box;
}

/* Tekst wewnątrz overlay */
.team-info {
    color: #ffffff;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.team-info h3 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    color: #fff !important;
}

.team-info p {
    margin: 0;
    font-size: 1.4rem;
}

/* EFEKT HOVER */
.team-member:hover .team-overlay {
    opacity: 1;
}

.team-member:hover .team-info {
    transform: translateY(0);
}

.team-member:hover img {
    transform: scale(1.1); /* Delikatny zoom zdjęcia w tle */
}



.so-widget-sow-features-default-9f15eab1a6ac-726 .sow-features-list .sow-features-feature.sow-icon-container-position-top{
background: #eee;
padding: 75px 10px 65px 10px;	
		border-left: 4px solid #94b05e;
		border-radius: 8px;
}

.cena{
		font-size: 1.9em;
font-weight: bold;
color: #94b05e;
}

.product-highlight-box {
    background-color: #eee;
   
    border-left: 4px solid #94b05e; /* Wyrazisty akcent z lewej strony */
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    transition: transform 0.3s ease; /* Efekt po najechaniu myszką */
}



/* Stylizacja ceny wewnątrz ramki */
.product-highlight-box .price{
    display: block;
    font-size: 1.4em;
    font-weight: bold;
    color: #a43d3d;
    margin-top: 10px;
}

.product-highlight-box p {
    margin-bottom: 0;
    color: #444;
}

/* Wymuszamy stan startowy dla selektorów galerii i obrazów */
.gallery-item, 
.portfolio-item, 
.sow-carousel-thumbnail,
.woocommerce-product-gallery__wrapper,
.woocommerce div.product form.cart,
.woocommerce-product-details__short-description,
#secondary,
a.button,
.so-widget-sow-features-default-9f15eab1a6ac-726 .sow-features-list .sow-features-feature.sow-icon-container-position-top,
.siteorigin-widget-tinymce textwidget,
#portfolio_button,
.n2-ss-slider .n2-ss-item-image-content,
.form-main-container,
#dynamic-projects-list,
.person-wrapper{
    opacity: 0;
    transform: scale(0.85); /* dla anim-zoom-in */
    transition: opacity 1s ease-out, transform 1s cubic-bezier(0.2, 0, 0.2, 1);
}


h1{
    opacity: 0;
    transform: translateX(-80px); 
    transition: opacity 1s ease-out, transform 1s cubic-bezier(0.2, 0, 0.2, 1);
}




/* Kiedy skrypt nada klasę is-visible, element się pokaże */
.gallery-item.is-visible, 
.portfolio-item.is-visible, 
.sow-carousel-thumbnail.is-visible,
.woocommerce-product-gallery__wrapper.is-visible{
    opacity: 1 !important;
    transform: scale(1) !important;
}

.parallax-decorations{
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    pointer-events: none;
    z-index: 9999 !important;
    overflow: hidden;
}



/* Klasa dla kontenera ikony - tym porusza skrypt JavaScript (Scroll) */
.p-wrapper {
    position: absolute;
    will-change: transform;
    
}

/* Styl samej ikony - to wykonuje ruch wiggle (Drift) */
.p-icon {
    display: block;
    opacity: 0.8; /* Subtelność premium */
    will-change: transform;
    /* Przypisanie animacji dryfowania */
    animation: softDrift 10s ease-in-out infinite;
    transform: translateZ(0); /* Akceleracja GPU */
}

/* ==========================================================================
   3. ANIMACJA DRYFOWANIA (WIGGLE)
   ========================================================================== */
@keyframes softDrift {
    0%   { transform: translate(0, 0) rotate(0deg); }
    33%  { transform: translate(12px, -8px) rotate(2deg); }
    66%  { transform: translate(-8px, 12px) rotate(-2deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

/* ==========================================================================
   4. INDYWIDUALNE POZYCJE I CZASY (Dla różnorodności)
   ========================================================================== */

/* Pozycje wrapperów na stronie */
.p-wrapper.p1 { top: 25%; left: 5%; }
.p-wrapper.p2 { top: 75%; right: 3%; }
.p-wrapper.p3 { top: 115%; left: 12%; }
.p-wrapper.p4 { top: 165%; right: 0.3%; }

/* Różne czasy dryfowania dla ikon, by nie ruszały się w tym samym rytmie */
.p1 .p-icon { animation-duration: 8s;  animation-delay: 0s;   width: 45px; }
.p2 .p-icon { animation-duration: 12s; animation-delay: -2s; width: 180px; }
.p3 .p-icon { animation-duration: 15s; animation-delay: -5s; width: 100px; }
.p4 .p-icon { animation-duration: 10s; animation-delay: -3s; width: 140px; }


/* Ukrycie na mobile dla wydajności i czytelności */
@media (max-width: 768px) {
    .parallax-decorations { display: none; }
}

#colophon{
		padding:0px!important;
}

/* BAZA: wspólna dla wszystkich animacji */
.reveal-on-scroll {
    opacity: 0;
    transition: opacity 1s ease-out, transform 1s cubic-bezier(0.2, 0, 0.2, 1);
    visibility: visible !important;
}

/* STYL 1: Fade Up (Wlot z dołu) */
.anim-fade-up { transform: translateY(50px);
transition-delay: 0.4s;
}

/* STYL 2: Zoom In (Powiększanie - idealne dla okrągłych miniatur) */
.anim-zoom-in { transform: scale(0.65); }

/* STYL 3: Slide Left (Wlot z lewej) */
.anim-slide-left { transform: translateX(-80px); 

}

.anim-fade-down { 
    transform: translateY(-1599px); 
    opacity: 0; 

}

/* STAN KOŃCOWY: wspólny dla wszystkich stylów */
.is-visible {
    opacity: 1 !important;
    transform: translate(0) scale(1) !important;
}



.gallery-item a, .portfolio-item a {
    position: relative;
    display: block;
    /* To są Twoje docelowe wymiary zewnętrzne */
    width: 270px !important; 
    height: 270px !important; 
    margin: 45px auto 0;
    border-radius: 50%;
    border: none !important;
    /* Padding tworzy miejsce na border wewnątrz tych 243px */
    padding: 25px; 
    box-sizing: border-box; /* Kluczowe: padding nie powiększa elementu */
}

/* Zdjęcie w środku - dopasuje się do wolnej przestrzeni */
.gallery-item a img, .portfolio-item a img {
    border-radius: 50%;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

/* Pierścień z borderem - teraz idealnie dopasowany do krawędzi */
.gallery-item a::before, .portfolio-item a::before {
    content: "";
    position: absolute;
   
    top: 0; 
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    /* Border 12px rysuje się do wewnątrz */
    border: 12px solid #94B05E; 
    pointer-events: none;
    z-index: 1;

    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) !important;
    transform: rotate(0deg); 
    will-change: transform;

    -webkit-mask-image: conic-gradient(
        black 0deg, 
        black 270deg, 
        transparent 270deg, 
        transparent 360deg
    );
    mask-image: conic-gradient(
        black 0deg, 
        black 270deg, 
        transparent 270deg, 
        transparent 360deg
    );
}

.gallery-item a:hover::before, .portfolio-item a:hover::before {
    transform: rotate(180deg) !important;
}


/* Warstwa z napisem - teraz też okrągła */
.portfolio-overlay {
    position: absolute;
    top: 25px; 
    left: 25px;
    right: 25px;
    bottom: 25px;
    width: auto; 
    height: auto;
    background: rgba(148, 176, 94, 0.8); /* Twoja zieleń 80% */
    border-radius: 50%; /* TO ROZWIĄZUJE PROBLEM KWADRATU */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: all 0.4s ease-in-out;
    pointer-events: none;
    z-index: 2;
		color: white;
font-weight: 200;
}

/* Obrazek wewnątrz */
.gallery-item a img, .portfolio-item a img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ważne: wypełnia koło bez deformacji obrazu */
    border-radius: 50%;
    transition: transform 0.5s ease-in-out;
}

/* Hover - tło znika, obrazek lekko rośnie */
.gallery-item a:hover .portfolio-overlay {
    opacity: 0;
}

.gallery-item a:hover img {
    transform: scale(1.1);
}


.label leftside{
		font-size:1px!important;
}

.fancy-ico span{
		background: #94b05e;
border: 2px solid #94b05e;
	
}

.sow-post-carousel-theme-base .sow-carousel-title.has-title{
		padding-top:20px;
}


.sow-post-carousel-wrapper, sow-post-carousel-theme-base{
		border-top:2px solid!important;
}

/* 1. Pasek pod pozycją nadrzędną, gdy jesteśmy na dowolnej podstronie z jej menu */
.main-navigation ul li.current-menu-item > a,
.main-navigation ul li.current_page_item > a,
.main-navigation ul li.current-menu-ancestor > a {
    box-shadow: inset 0 -4px 0 0 #94b05e !important; /* Grubszy pasek */
    background: transparent !important;
    color: #94b05e !important; /* Kolor tekstu pozycji nadrzędnej */
}

/* 2. Opcjonalnie: Jeśli NIE chcesz paska pod konkretnymi podpozycjami w rozwijanym menu */
/* (żeby pasek był TYLKO w głównym wierszu menu) */
.main-navigation ul ul li a {
    box-shadow: none !important;
}

/* 3. Upewnienie się, że hover nadal działa tak samo */
.main-navigation ul li:hover > a {
    box-shadow: inset 0 -4px 0 0 #94b05e !important;
}

/* 1. Usunięcie tła (apli) z menu na hover */
.main-navigation ul li:hover > a,
.main-navigation ul li.focus > a {
    background: transparent !important; /* Usuwa zielone wypełnienie */
    color: #94b05e !important; /* Możesz tu wpisać swój kolor tekstu na hover */
}

/* 2. Dodanie grubszego paska na dole */
.main-navigation ul li a {
    position: relative;
    transition: all 0.3s ease;
    border-bottom: 0px solid transparent; /* Stan bazowy */
}

.main-navigation ul li:hover > a {
    /* Ustawienie grubości paska (np. 4px) i koloru */
    box-shadow: inset 0 -4px 0 0 #94b05e !important; 
    /* Używamy box-shadow zamiast border, aby nie powodować drgań menu */
}

/* Opcjonalnie: Jeśli chcesz, aby pasek był też pod aktywną stroną */
.main-navigation ul li.current-menu-item > a,
.main-navigation ul li.current_page_item > a {
    box-shadow: inset 0 -4px 0 0 #94b05e!important;
    background: transparent !important;
}



.wc-block-checkout__actions .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button{
		width:50%;
}

.wc-block-components-checkout-return-to-cart-button{
    font-family:Montserrat!important;
		
    background:none!important;
		background-color: #cccccc !important; /* Twój bazowy kolor */
    color: #ffffff !important;
    padding: 12px 25px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    border: none !important;
    border-radius: 38px !important; /* Lekko zaokrąglone krawędzie, pasują do 3D */
    text-align: center !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    -webkit-font-smoothing: antialiased !important; /* Gładka czcionka */
}
.wc-block-components-checkout-return-to-cart-button:hover{
		background-color: #6c6c6c !important; /* Nieco jaśniejszy kolor na hover */
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important; /* Delikatny cień 3D */
    transform: translateY(-1px) !important; /* Lekkie uniesienie */
}

/* GLOBALNY STYL PRZYCISKÓW WOOCOMMERCE */

/* 1. Selektor zbiorczy dla wszystkich przycisków (klasyczne i blokowe) */
.button, 
.wc-block-components-button, 
button[type="submit"], 
.wc-block-cart__submit-button,
a.wc-block-components-checkout-button,
.woocommerce .button.alt
{
    font-family:Montserrat!important;
		
    background:none!important;
		background-color: #94b05e !important;
    color: #ffffff !important;
    padding: 12px 25px !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    
    border-radius: 38px !important; 
    text-align: center !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    -webkit-font-smoothing: antialiased !important;
}

/* 2. Globalny efekt po najechaniu (Hover) */
.button:hover, 
.wc-block-components-button:hover, 
button[type="submit"]:hover,
.wc-block-cart__submit-button:hover,
a.wc-block-components-checkout-button:hover,
.woocommerce .button.alt:hover
{
    background-color: #6c6c6c !important; /* Nieco jaśniejszy kolor na hover */
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important; /* Delikatny cień 3D */
    transform: translateY(-1px) !important; /* Lekkie uniesienie */
		border:0!important;
}




.wp-block-woocommerce-checkout-order-summary-block{
		background-color: #eeeeee!important;
}

.wc-block-components-checkout-order-summary__title-text{
		font-family: Montserrat;
		text-transform: uppercase !important;
}


/* Stylizacja linku "Przejdź do płatności" na przycisk */
.wc-block-cart__submit-button, 
.wc-block-components-checkout-button,
a.wc-block-components-button,
.wpforms-submit{
		font-family: Montserrat;	
    display: block !important;
    width: 100% !important;
    background-color: #94b05e !important;
    color: #ffffff !important;
		padding: 15px 15px 15px 15px!important;
    text-align: center !important;
    text-decoration: none !important;
    font-weight: bold !important;
    border-radius: 38px !important;
		border: 2px solid #fff!important;
    
    transition: background-color 0.3s ease !important;
    -webkit-font-smoothing: antialiased !important;
}

/* Efekt po najechaniu (hover) */
.wc-block-cart__submit-button:hover, 
.wc-block-components-checkout-button:hover,
a.wc-block-components-button:hover {
    background-color: #6c6c6c !important; 
    color: #ffffff !important;
}



.wc-block-cart .wc-block-components-sidebar{
		background-color: #eeeeee!important;
padding: 25px!important;
}

.wc-block-components-totals-item__value{
		color:#94b05e;
}


.wc-block-cart-items__header{
font-size: 1.4em!important;
font-family: Noto Serif Myanmar;		
}

.wc-block-components-totals-wrapper{
		font-family: Noto Serif Myanmar;		
}

.wc-block-cart-item__wrap{
		font-size:1.2em;
		font-family: Noto Serif Myanmar;		
		
}
.wc-block-cart-item__prices{
		color:#94b05e;
}


.wc-block-components-product-details{
		color:#6c6c6c;
}

.main-navigation ul li:hover > a{
		margin-top:0px !important;
}

.wc-block-components-product-metadata__description{
		display:none;
}


/* Precyzyjne zablokowanie linku na miniaturze w bloku koszyka */
.wc-block-cart-item__image {
    pointer-events: none !important;
    cursor: default !important;
}

/* Wyłączenie linków w nazwie produktu i miniaturze w koszyku */
.woocommerce-cart-form__cart-item .product-name a,
.woocommerce-cart-form__cart-item .product-thumbnail a,
.wp-block-woocommerce-cart-items-block .wc-block-components-product-name {
    pointer-events: none !important;
    cursor: default !important;
    text-decoration: none !important;
    color: inherit !important;
}

.main-navigation ul li a {
    /* Wymuszamy na przeglądarce użycie akceleracji sprzętowej (Twoje M2 Ultra to pokocha) */
    transform: translateZ(0);
    backface-visibility: hidden;
    /* Zapobiegamy zmianom rozmiaru przy hover */
    display: inline-block;
    transition: all 0.2s ease-in-out;
}


#secondary .current-menu-item a {
    background-image: url('https://nowy.design/wp-content/uploads/2025/10/kolo-menu2a.png') !important; /* Wymuś brak PNG w stanie bazowym */
   
}

div.wpforms-container-full input[type=date], div.wpforms-container-full input[type=datetime], div.wpforms-container-full input[type=datetime-local], div.wpforms-container-full input[type=email], div.wpforms-container-full input[type=month], div.wpforms-container-full input[type=number], div.wpforms-container-full input[type=password], div.wpforms-container-full input[type=range], div.wpforms-container-full input[type=search], div.wpforms-container-full input[type=tel], div.wpforms-container-full input[type=text], div.wpforms-container-full input[type=time], div.wpforms-container-full input[type=url], div.wpforms-container-full input[type=week], div.wpforms-container-full select, div.wpforms-container-full textarea, .wp-core-ui div.wpforms-container-full input[type=date], .wp-core-ui div.wpforms-container-full input[type=datetime], .wp-core-ui div.wpforms-container-full input[type=datetime-local], .wp-core-ui div.wpforms-container-full input[type=email], .wp-core-ui div.wpforms-container-full input[type=month], .wp-core-ui div.wpforms-container-full input[type=number], .wp-core-ui div.wpforms-container-full input[type=password], .wp-core-ui div.wpforms-container-full input[type=range], .wp-core-ui div.wpforms-container-full input[type=search], .wp-core-ui div.wpforms-container-full input[type=tel], .wp-core-ui div.wpforms-container-full input[type=text], .wp-core-ui div.wpforms-container-full input[type=time], .wp-core-ui div.wpforms-container-full input[type=url], .wp-core-ui div.wpforms-container-full input[type=week], .wp-core-ui div.wpforms-container-full select, .wp-core-ui div.wpforms-container-full textarea{
		background-color:rgba(255, 255, 255, 0)!important;
		border: 2px solid #fff!important;
}


#colophon #theme-attribution,
#colophon #site-info {
  display: none;
}

.table-item{
padding:2px!important;	
		
}

.thwepo-price-table{
		background:rgba(255, 255, 255, 0)!important;
		
}

#il_field {
  background: rgb(241, 241, 241) !important;
  padding: 8px!important;
}

#papier_field {
  background: rgb(249, 249, 249) !important;
  margin-bottom: 25px;
  padding: 8px!important;
}

#folder_papier1_field {
  background: rgb(249, 249, 249) !important;
  
  padding: 8px!important;
}

#folder_papier2_field {
  background: rgb(249, 249, 249) !important;
  margin-bottom: 25px;
  padding: 8px!important;
}

.thwepo-field {
  padding: 2px 0px 25px 0px!important;
		font-size:14px;
}

.reset_variations {
  display: none!important;
}

.woocommerce-tabs {
  display: none;
}

.woocommerce div.product form.cart div.quantity {
  display: none;
}

.sku_wrapper {
  display: none !important;
}

.product_meta {
  display: none !important;
}


/* 1. KONTENER: MUSI mieć position: relative */

.thwepo-select-field {
  position: relative;
  /* Krok kluczowy! */
  /* Upewnij się, że element  nie ma własnej pozycji relative lub absolute, która by to nadpisywała */
  /* Jeśli chcesz, żeby całe pole było w jednej linii, dodaj: */
  display: inline-block;
  width: 100%!important;
}

/* 2. SELECT: Ukryj natywną strzałkę */

.thwepo-select-field select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 30px !important;
  font-size: 16px!important;
  height: 45px!important;
  width: 100%!important;
}

/* 3. WŁASNA STRZAŁKA: Umieszczenie strzałki za pomocą :after */

.thwepo-select-field:after {
  content: '▼';
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  pointer-events: none;
  /* Kluczowe, aby kliknięcie rozwijało listę */
  color: #333;
  font-size: 11px;
  z-index: 10;
}

/* ------------------------------------------- */

/* 1. UKRYCIE DOMYŚLNEGO CHECKBOXA */

/* ------------------------------------------- */

/* Docelowo stylizujemy tylko elementy INPUT wtyczki EPO,
   ale użyjemy ogólnego selektora, który zadziała. */

.label-wrapper-checkbox input[type="checkbox"] {
  position: absolute;
  /* Usuwa checkboxa z naturalnego obiegu */
  opacity: 0;
  /* Czyni go niewidzialnym */
  cursor: pointer;
  height: 0;
  width: 0;
}

/* ------------------------------------------- */

/* 2. TWORZENIE NIESTANDARDOWEGO KWADRATU */

/* ------------------------------------------- */

/* Używamy pseudo-elementu :before w etykiecie */

.label-wrapper-checkbox input[type="checkbox"] + label:before {
  content: '';
  /* Wymagane, aby wyświetlić pseudo-element */
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  /* ROZMIAR: Ustaw szerokość (np. 20px) */
  height: 20px;
  /* ROZMIAR: Ustaw wysokość (np. 20px) */
  margin-right: 10px;
  /* Odstęp od etykiety */
  border: 2px solid #333;
  /* Obwódka niezaznaczonego checkboxa */
  border-radius: 4px;
  /* Zaokrąglenie narożników */
  background-color: #f7f7f7;
  /* Kolor tła niezaznaczonego */
  transition: all 0.2s ease;
  /* Łagodna animacja */
}

/* ------------------------------------------- */

/* 3. STYLIZACJA PO ZAZNACZENIU (STAN CHECKED) */

/* ------------------------------------------- */

/* Używamy selektora 'checked' na INPUT i przechodzimy do LABEL */

.label-wrapper-checkbox input[type="checkbox"]:checked + label:before {
  background-color: #94b05e;
  /* Kolor tła po zaznaczeniu (np. niebieski) */
  border-color: #000000;
  /* Kolor obwódki po zaznaczeniu */
}

/* ------------------------------------------- */

/* 4. TWORZENIE ZNACZNIKA ZAZNACZENIA (PAJĄCZEK) */

/* ------------------------------------------- */

/* Używamy pseudo-elementu :after do stworzenia ptaszka/znaczka */

.label-wrapper-checkbox input[type="checkbox"]:checked + label:after {
  content: '';
  position: absolute;
  display: block;
  /* Domyślne pozycjonowanie, może wymagać dopasowania: */
  left: 7px;
  top: 7px;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 3px 3px 0;
  /* Tworzy kształt litery V */
  transform: rotate(45deg);
  /* Obraca V w ptaszka */
}

.thwepo-input-field input-checkbox {
  width: 1px!important;
}

.label-tag {
  font-size: 18px!important;
}

.main-navigation {
  background: rgba(255, 253, 255, 0);
}

#top-slider-controls {
  position: absolute;
  /* Sprawia, że pasek nawigacyjny jest zawsze widoczny, niezależnie od przewijania */
  top: 0;
  /* Przypięcie do górnej krawędzi okna przeglądarki */
  left: 0;
  width: 100%;
  /* Zajmuje całą szerokość */
  background: #000;
  /* Dodaj tło, aby elementy pod nim nie były widoczne */
  padding: 10px 0;
  /* Dodaj odstęp */
  text-align: center;
  /* Wyśrodkowanie przycisków */
  z-index: 100;
  /* Najwyższy priorytet */
}

/* Opcjonalnie: Dodaj margines do wrapper'a karuzeli, aby treść się nie chowała */

#product-slider-wrap {
  /* Upewnij się, że ten margines jest wystarczająco duży, aby zmieścić górną nawigację */
  margin-top: 60px;
  /* Przykład: jeśli wysokość górnej nawigacji wynosi 40px + padding */
}

#main-slider {
  margin-top: -50px;
		background:#fff!important;
}

caption,
th,
td {
  font-weight: 800;
  text-align: left;
  background: rgba(255, 253, 255, 0);
  border: 1px solid white;
  color: #000;
}

.page-template-default #primary {
  width: 80%;
}

.page-id-621 #primary {
    width: 100% !important;
}


/* Zmiana szerokości paska bocznego */

.widget-area,
#secondary {
  width: 10%;
  /* Np. 25% dla paska bocznego (suma musi wynosić 100%) */
}

.woocommerce div.product form.cart table td {
  padding-left: 15px!important;
}


/* Stylizacja samego pola */

select {
  /* Podstawowy wygląd */
  width: 100%!important;
  padding: 0px 0px 0px 10px!important;
  /* Dodatkowy padding na strzałkę */
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f8f8f8;
  cursor: pointer;
  font-size: 16px;
  color: #333;
}

/* Styling przycisku na karcie pojedynczego produktu */

.woocommerce .button.alt {
  /* Kolor i tło */
  background: #94b05e!important;
  /* Główny kolor tła (Zielony) */
  color: #ffffff;
  /* Kolor tekstu (Biały) */
  /* Rozmiar i wypełnienie */
  font-size: 18px;
  /* Rozmiar czcionki */
  padding: 15px 30px!important;
  /* Wypełnienie wewnętrzne */
  line-height: 1.5;
  /* Wysokość linii */
  /* Kształt */
  border-radius: 38px !important;
  /* Zaokrąglenie rogów (dla pastylki użyj np. 50px) */
  border: none;
  /* Usuń standardową ramkę */
  cursor: pointer;
  /* Kursor wskazujący */
  margin-left: 5px;
  /* Płynne przejście przy :hover */
  transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Efekt najechania myszą (:hover) */

.woocommerce button.single_add_to_cart_button:hover {
  background: #6f6f6e!important;
  /* Ciemniejsza zieleń po najechaniu */
  /* Opcjonalnie: delikatne powiększenie */
  transform: scale(1.05);
  border: 0px!important;
}

/* Stylizacja linków menu z tłem PNG */

#secondary .menu-item a {
  background-image: url('https://nowy.design/wp-content/uploads/2025/10/kolo-menu.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  color: white !important;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  padding: 5px;
  line-height: 1.2;
  font-size: 1em;
  margin: 0px;
  opacity: 1;
  transition: opacity 0.7s ease, background-color 0.7s ease, transform 0.7s ease;
}

/* Efekt najechania (HOVER) - możesz zmienić tło lub dodać inne efekty */

#secondary .menu-item a:hover {
  background-image: url('https://nowy.design/wp-content/uploads/2025/10/kolo-menu2a.png');
  /* Opcjonalnie: inny obraz na hover */
  /* lub po prostu: background-color: rgba(0,0,0,0.1); aby dodać delikatne zaciemnienie */
  opacity: 1;
  transform: scale(1.05);
}

.woocommerce div.product .product_title {
  margin: 0px;
  padding-bottom: 15px;
}

.woocommerce div.product div.images {
  width: 35%;
  /* Zmień wartość, np. z 48% na 40% */
}

/* Zwiększenie szerokości kolumny informacji o produkcie (podsumowanie), 
   żeby układ się nie popsuł. 100% - 40% = 60% */

.woocommerce div.product div.summary {
  width: 62%;
  /* Ustaw odpowiednio większą szerokość (np. 58% dla 40% obrazu) */
}

.woocommerce-product-details__short-description {
  font-size: 0.7em;
  /* Możesz użyć '14px', '0.8rem' lub innej wartości */
}

/* Zmień rozmiar czcionki dla ceny produktu */

.woocommerce-Price-amount {
  font-size: 1.5em;
  /* Przykładowa duża wartość. Użyj '24px', '1.8rem' lub innej */
  font-weight: bold;
  /* Opcjonalnie: pogrubienie */
  color: #94b05e;
		transform: scale(0.85);
}

.main-navigation ul li:hover > a {
  margin-top: -25px;
}

.main-navigation a {
  font-weight: normal;
}

.kontener-dlaczego {
  position: relative;
  /* Sprawia, że kontener jest punktem odniesienia */
  overflow: visible;
  /* Ważne, jeśli obrazek ma wystawać poza kontener */
}

.babka2 {
  position: absolute;
  /* Pozycjonowanie absolutne */
  top: 20%;
  /* 50px od góry kontenera-relatywnego */
  left: 65%;
  /* 100px od lewej kontenera-relatywnego */
  width: 400px;
  /* Przykładowa szerokość obrazka */
  height: auto;
  /* Automatyczna wysokość */
  z-index: 10;
  /* Opcjonalnie: Ustawia kolejność warstw, aby obrazek był nad innymi elementami */
}

.gallery-item img {
  border-radius: 50%;
  border: 3px solid #94B05E !important;
  object-fit: cover;
  transition: transform 0.3s ease, opacity 0.3s ease;
  width: 70%;
}


.gallery-item:hover img {
  transform: scale(1.05);
  /* Powiększenie miniatury */
  opacity: 0.8;
  /* Lekkie przyciemnienie */
}

/* 1. Zarządzanie widocznością */
.mobile-only-sidebar { display: none; } /* Domyślnie ukryty */

/* MOBILE: sidebar nad content */
@media (max-width: 768px){
  .full-container{
    
    gap: 16px;
  }

  .full-container #secondary{
    order: -1;
    width: 100%;
  }

  /* MOBILE: poziomy układ MENU w sidebarze */
  #secondary ul.menu,
  #secondary .menu{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;  /* wyśrodkuj kółka */
    gap: 10px;                /* odstępy między kółkami */
    padding: 12px;
    margin: 0;
    list-style: none;
			background-color:#fff;
			margin-top:-27px;
			width:108%;
			
			
  }

  #secondary ul.menu > li,
  #secondary .menu > li{
    margin: 0;                /* motywy często dodają marginesy */
    padding: 0;
  }

  /* opcjonalnie: dopilnuj stałego rozmiaru kafelków */
  #secondary .menu-item a{
    width: 80px;
    height: 80px;
    display: inline-flex;
  }
		
		.woocommerce div.product div.summary{
				width:100%
		}
		
		.label-tag{
				margin-right:-66px;
		}
		
		.woocommerce div.product div.images{
				width:65%;
		}
		
		.entry-content h1{
				font-size:40px;
				line-height:1;
		}
		
		.entry-content h3{
				font-size:1.3em;
				padding-top:20px;
		}
		
		#gallery-1 .gallery-item{
				width:95%!important;
		}
		
		#secondary .menu-item a {
				width:45px;
				height:45px;
		}
		
		#main{
				padding:25px;
		}
		
 #main-slider{
		 margin-top:-30px;
		}
		#secondary{
				margin-top:-40px!important;
				position: sticky;
    top: 0;
    
		}
	#jak-dziala-mobile{
			display: block!important;
		}
		
		#colophon{
		padding:0px 35px!important;
}

		.entry-content h2{
				font-size:30px;
				line-height:1.1;
		}
		
		.team-grid{
				grid-template-columns:repeat(1, 1fr);
		}
		
		.thwepo-field{
				grid-template-columns:100%;
		}
		
		.label-part{
				width:80px!important;
		}
		
		#secondary .menu-item a {
  
  font-size:8px;
 
}
		
		
		/* Celujemy tylko w aktywny sidebar */
    .sticky-element-active {
        /* NIE wymuszamy position: fixed, pozwalamy wtyczce decydować */
        
        /* Naprawa położenia poziomego */
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        margin-left: -52px !important;
        margin-right: auto !important;
        transform: none !important;
        
        /* Naprawa położenia pionowego - dodaj margines, by nie zasłaniał banera */
        /* Ten margines zadziała tylko w trybie sticky */
        padding-top: 20px !important; 
        padding-bottom: 20px !important;
				
        box-sizing: border-box !important;
				
    }
		
		.main-navigation {
  background: rgba(255, 253, 255, 1);
}
		
		
}