.elementor-kit-7{--e-global-color-primary:#16163F;--e-global-color-secondary:#6B7280;--e-global-color-text:#1A1A2E;--e-global-color-accent:#BFA065;--e-global-color-c50cda7:#F4F6F8;--e-global-color-7aecf55:#BFA065;--e-global-color-4f5e372:#27AE60;--e-global-color-68e64fd:#E65100;--e-global-color-6f0e1f0:#FFFFFF;--e-global-color-7769883:#FFF7E8;--e-global-color-7664a16:#F1F2F3;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;--e-global-typography-11f5f06-font-family:"Poppins";--e-global-typography-11f5f06-font-size:clamp(10px, 0.4vw + 9px, 11px);--e-global-typography-11f5f06-font-weight:600;--e-global-typography-11f5f06-text-transform:uppercase;--e-global-typography-11f5f06-font-style:normal;--e-global-typography-11f5f06-line-height:1.6em;--e-global-typography-11f5f06-letter-spacing:1px;--e-global-typography-b38ea09-font-family:"Grenze";--e-global-typography-b38ea09-font-size:clamp(2rem, 5vw + 1rem, 4rem);--e-global-typography-b38ea09-line-height:0.8em;--e-global-typography-616d0b1-font-family:"Poppins";--e-global-typography-616d0b1-font-size:clamp(16px, 1vw + 14px, 16px);--e-global-typography-616d0b1-font-weight:400;--e-global-typography-616d0b1-text-transform:none;--e-global-typography-616d0b1-line-height:1.3em;--e-global-typography-616d0b1-letter-spacing:0px;}.elementor-kit-7 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1254px;}.e-con{--container-max-width:1254px;}.elementor-widget:not(:last-child){--kit-widget-spacing:0px;}.elementor-element{--widgets-spacing:0px 0px;--widgets-spacing-row:0px;--widgets-spacing-column:0px;}{}h1.entry-title{display:var(--page-title-display);}.elementor-lightbox{--lightbox-header-icons-size:64px;--lightbox-navigation-icons-size:64px;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;--container-default-padding-top:0px;--container-default-padding-right:0px;--container-default-padding-bottom:0px;--container-default-padding-left:0px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:760px;}.e-con{--container-max-width:760px;}}/* Start custom CSS */.elementor-icon-wrapper {line-height: 0px;
    margin: 0px!important;
    padding: 0px!important;
}

/* =========================================
   1. SEPARATOR "PASTORAŁ" (CROSIER)
   ========================================= */
.crosier-divider {
    display: flex;
    align-items: center;
    width: 100%;
   
}

/* Trzonek */
.crosier-foot {
    position: relative;
    width: 26px;
    height: 5px;
    background-color: #BFA065; /* Twój Złoty */
    border-radius: 10px 0 0 10px;
    z-index: 2;
    flex-shrink: 0;
}

/* Pierścień */
.crosier-foot::after {
    content: '';
    position: absolute;
    top: -2px; left: 8px;
    width: 4px; height: 9px;
    background-color: #BFA065;
    border-radius: 4px;
    box-shadow: 2px 0 4px rgba(0,0,0,0.1);
}

/* Linia */
.crosier-line {
    height: 1px;
    flex-grow: 1;
    background-color: rgba(0,0,0,0.1); /* Szara linia */
    margin-left: -2px;
    z-index: 1;
}

/* =========================================
   2. SEKCJA HISTORII (ROZWIJANIE) - FINAL
   ========================================= */

/* Kontener Tekstu */
.historia-box {
    max-height: 250px; /* Wysokość startowa */
    overflow: hidden;
    position: relative;
    background-color: #fff;
    
    /* Płynna animacja - taka sama jak w tabach */
    transition: max-height 3s ease-in-out !important;
    transform: translateZ(0);
    will-change: max-height;
}

/* Sterownik (Pudełko z przyciskiem) */
.historia-controller {
    margin-top: -131px; /* Wciągamy na tekst (musi być > wysokości gradientu) */
    height: 120px;
    width: 100%;
    position: relative;
    z-index: 999;
    background: none;
    
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    padding-top: 0;
    pointer-events: none; /* Żeby myszka "widziała" tekst pod spodem */
    
    transition: margin-top 3s ease-in-out, padding 3s ease-in-out !important;
    will-change: margin-top, padding;
}

/* Gradient (Mgiełka) */
.historia-controller::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Gradient do bieli */
    background: linear-gradient(to bottom, rgba(255,255,255, 0), #FFFFFF 90%);
    z-index: -1;
    opacity: 1;
    transition: opacity 1s ease-in-out !important; 
}

/* Stan Rozwinięty (Aktywowany przez JS) */
.historia-controller.is-active {
    margin-top: -80px; /* Zjeżdżamy niżej po rozwinięciu */
    padding-bottom: 0;
    padding-top: 40px; 
}

/* Ukrywanie gradientu przy rozwijaniu */
.historia-controller.is-active::before { opacity: 0; }
.historia-controller.is-collapsing::before { opacity: 0; }

/* --- PRZYCISK (LIFTING) --- */
.historia-btn {
    pointer-events: auto; /* Przycisk musi być klikalny */
    
    /* Wygląd Bazowy */
    background-color: #f1f2f3; 
    color: #6b7280;
     border: solid 1px #6b72804a;
    
    /* Typografia */
    padding: 8px 16px;
    border-radius: 8px; /* Pigułka (spójna z resztą designu) */
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease !important;
    
    /* Flexbox do centrowania tekstu */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* KASOWANIE SYFU (::after / ::before) */
/* To usuwa wszelkie strzałki i ikonki dodawane przez motyw/Elementora */
.historia-btn::after,
.historia-btn::before {
    display: none !important;
    content: none !important;
    width: 0 !important;
}

/* Hover (Granat) */
.historia-btn:hover {
    background-color: #16163f !important; /* Twój Granat */
    color: #FFFFFF !important; /* Biały tekst */
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(22, 22, 63, 0.2);
}

/* Stan Aktywny (Złoty - gdy rozwinięte) */
.historia-controller.is-active .historia-btn {
    background-color: #BFA065 !important; /* Twój Złoty */
    color: #FFFFFF !important;
    box-shadow: none;
}

/* Hover w stanie aktywnym (Powrót do granatu) */
.historia-controller.is-active .historia-btn:hover {
    background-color: #16163f !important;
}

/* =========================================
   3. LICZNIK MSZY (PIGUŁKA)
   ========================================= */
.mass-pulse-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #FFFFFF;
    border: 1px solid rgba(22, 22, 63, 0.08);
    border-left: 4px solid #BFA065; /* Złoty akcent */
    border-radius: 8px;
    padding: 8px 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}

/* Elementy wewnątrz licznika */
.mass-label {
    display: block; text-transform: uppercase; color: #6B7280; font-weight: 600; font-size: 10px; letter-spacing: 1px; margin-bottom: 2px;
}
.mass-time-row { display: flex; align-items: baseline; gap: 6px; }
.mass-time { color: #16163f; font-weight: 700; font-size: 24px; line-height: 1; }
.mass-date-hint { font-size: 11px; font-weight: 600; color: #27AE60; background: rgba(39, 174, 96, 0.1); padding: 2px 6px; border-radius: 4px; white-space: nowrap; }
.mass-countdown { font-size: 13px; color: #BFA065; font-weight: 600; margin-left: 10px; padding-left: 15px; border-left: 1px solid #E5E7EB; white-space: nowrap; }
.pulse-dot { flex-shrink: 0; width: 8px; height: 8px; background-color: #27AE60; border-radius: 50%; box-shadow: 0 0 0 rgba(39, 174, 96, 0.4); animation: pulse 2s infinite; }

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.4); }
    70% { box-shadow: 0 0 0 8px rgba(39, 174, 96, 0); }
    100% { box-shadow: 0 0 0 0 rgba(39, 174, 96, 0); }
}

/* =========================================
   4. IKONY AKCJI (KAFELKI MAPA/TELEFON)
   ========================================= */

/* Stylujemy ikonę TYLKO wtedy, gdy jej widget ma klasę .action-icon */
.action-icon .elementor-icon {
    /* Wygląd "Digital Sanctuary" */
    background-color: #FFFFFF; /* Białe tło */
    
    /* Ramki */
    border: 1px solid rgba(22, 22, 63, 0.08); /* Delikatna szara */
    
    /* Opcjonalnie: Jeśli chcesz ten złoty pasek z lewej jak w liczniku: */
    /* border-left: 4px solid #BFA065; */
    
    /* Cień */
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    
    /* Płynność animacji */
    transition: all 0.3s ease;
}

/* Efekt po najechaniu */
.action-icon:hover .elementor-icon {
    border-color: #BFA065; /* Cała ramka robi się złota */
    box-shadow: 0 8px 25px rgba(191, 160, 101, 0.4); /* Złota poświata */
    transform: translateY(-3px); /* Lekkie uniesienie */
}

/* =================================================
   OCHRONA DANYCH (FIX - TYLKO KOLORY)
   ================================================= */

/* 1. KONTENER RODZIC */
.protected-data {
    position: relative !important;
    cursor: pointer;
    overflow: visible !important;
}

/* 2. CO BLURUJEMY? */
.protected-data > * {
    filter: blur(6px) !important;
    opacity: 0.6 !important;
    pointer-events: none !important;
    user-select: none !important;
    transition: all 0.4s ease;
}

.protected-data::after {
    filter: none !important;
}

/* 3. PRZYCISK "POKAŻ" */
.protected-data::after {
    content: 'POKAŻ';
    position: absolute;
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%);
    z-index: 999;
    
    /* --- ZMIENIONE TYLKO KOLORY (Start: Szary) --- */
    background-color: #f1f2f3; 
    color: #6b7280;
    
   
    
    /* --- ORYGINALNE WYMIARY (Nie dotykam) --- */
    padding: 4px 12px;
    border-radius: 8px;
    border: solid 1px #6b72804a;
    
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    pointer-events: none; 
}

/* Hover na kontenerze */
.protected-data:hover::after {
    /* --- ZMIANA KOLORU (Hover: Granat) --- */
    background-color: #16163f; 
    color: #FFFFFF;            
    
    transform: translate(-50%, calc(-50% - 3px));
}

/* =================================================
   POPRAWKA DLA TELEFONÓW (HISTORIA)
   ================================================= */
@media (max-width: 768px) {
    .historia-controller {
        margin-top: -80px !important; 
        height: 80px !important; 
    }
    
    .historia-controller.is-active {
        margin-top: -60px !important; 
        padding-top: 0 !important;
    } /* <--- TUTAJ BRAKOWAŁO NAWIASU */
}

/* =================================================
   STAN: ODSŁONIĘTY (Zdejmowanie blura)
   To wcześniej nie działało przez błąd wyżej
   ================================================= */

/* Usuwamy blur z zawartości */
.protected-data.is-revealed > * {
    filter: blur(0) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    user-select: text !important;
}

/* Ukrywamy przycisk */
.protected-data.is-revealed::after {
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -40%);
}

/* Styl linków po odsłonięciu */
.protected-data.is-revealed a {
    color: inherit !important;
    font-family: inherit !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    line-height: inherit !important;
    letter-spacing: inherit !important;
    text-decoration: none !important;
    
    display: inline-block; 
    transition: color 0.3s ease;
}

.protected-data.is-revealed a:hover {
    color: #BFA065 !important; /* Twój Złoty */
}

/* Zabezpieczenie dla JetEngine H1/Div */
.protected-data .jet-listing-dynamic-field__content a {
    color: inherit !important;
    font-family: inherit !important;
    font-weight: inherit !important;
    text-decoration: none !important;
}

.protected-data .jet-listing-dynamic-field__content a:hover {
    color: #BFA065 !important;
}
/* =========================================

   SYSTEM SANDO - FINAL 2.5s + GOLD ACTIVE + HORIZONTAL SCROLL

   ========================================= */



/* 1. UKRYWANIE TREŚCI NA START */

.sando-tresc-1,

.sando-tresc-2,

.sando-tresc-3 {

    display: none !important;

}



/* 2. MECHANIKA KONTENERA (Wiersz + Scroll) */

/* Dodano #sando-kontener aby wymusić układ na mobilu */

#sando-kontener,

body .sando-kontener .elementor-container,

body .sando-kontener .e-con {

    display: flex !important;

    flex-direction: row !important;

    

    /* KLUCZ DO SCROLLA: */

    flex-wrap: nowrap !important;   /* Nie łam linii */

    overflow-x: auto !important;    /* Pozwól przewijać */

    overflow-y: hidden !important;

    

    justify-content: flex-start !important;

    width: 100% !important;

    

    /* Ukrycie paska przewijania */

    scrollbar-width: none; 

    -ms-overflow-style: none;

    -webkit-overflow-scrolling: touch;

}



/* Ukrycie paska dla Chrome/Safari */

#sando-kontener::-webkit-scrollbar,

body .sando-kontener .elementor-container::-webkit-scrollbar,

body .sando-kontener .e-con::-webkit-scrollbar {

    display: none;

}



/* 3. BAZA PRZYCISKU (Stan Spoczynku) */

body .sando-tabki-1,

body .sando-tabki-2,

body .sando-tabki-3 {

    cursor: pointer;

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    width: auto !important;

    max-width: none !important;

    

    /* KLUCZ DO SCROLLA: Nie zgniataj przycisków */

    flex-shrink: 0 !important;

    

    /* Zmiana tła (np. powrót z czarnego/złotego) */

    background-color: transparent; 

    transition: background-color 0.4s ease, max-width 2.5s ease, padding 2.5s ease !important;

}



/* 4. MECHANIKA TEKSTU (Stan Spoczynku - Ukryty) */

body [class*="sando-tabki-"] .elementor-widget-heading,

body [class*="sando-tabki-"] .elementor-widget-text-editor,

body [class*="sando-tabki-"] span,

body [class*="sando-tabki-"] p,

body [class*="sando-tabki-"] h1, 

body [class*="sando-tabki-"] h2, 

body [class*="sando-tabki-"] h3,

body [class*="sando-tabki-"] h4 {

    max-width: 0 !important;

    opacity: 0 !important;

    padding: 0 !important;

    margin: 0 !important;

    

    white-space: nowrap !important; 

    overflow: hidden !important;

    

    /* TU JEST KLUCZ DO PŁYNNOŚCI W OBIE STRONY (2.5s) */

    transition: all 2.5s cubic-bezier(0.25, 1, 0.5, 1) !important;

}



/* 5. STAN AKTYWNY (Rozwinięty + Złote Tło) */

/* Dodajemy też styl dla stanu :hover, żeby zachować spójność */



body .sando-active {

    /* Tło Złote */

    background-color: #BFA065 !important;

    transition: background-color 0.4s ease !important;
   
}



/* Rozwijanie tekstu w stanie aktywnym */

body .sando-active .elementor-widget-heading,

body .sando-active .elementor-widget-text-editor,

body .sando-active span,

body .sando-active p,

body .sando-active h2,

body .sando-active h3,

body .sando-active h4 {

    max-width: 400px !important;

    opacity: 1 !important;

    margin-left: 8px !important;

    margin-right: 8px !important;

    

    /* Zapewniamy animację przy otwieraniu */

    transition: all 2.5s cubic-bezier(0.25, 1, 0.5, 1) !important;

}



/* Kolor tekstu/ikony na Złotym tle (Musi być biały) */

body .sando-active .elementor-heading-title,

body .sando-active i,

body .sando-active svg,

body .sando-active path {

    color: #FFFFFF !important;

    fill: #FFFFFF !important;

    transition: all 0.4s ease !important;

}



/* 6. POKAZYWANIE TREŚCI NA DOLE */

.sando-show {

    display: flex !important;

    animation: fadeIn 1s ease;

}



@keyframes fadeIn {

    from { opacity: 0; transform: translateY(10px); }

    to { opacity: 1; transform: translateY(0); }

}



/* ==================================================

   FIX HOVER & DYSKOTEKA (ZINTEGROWANY)

   ================================================== */



/* Kiedy myszka jest na KONTENERZE (Hover)... */

body [class*="sando-tabki-"]:hover {

    /* Tło czarne przy najechaniu (chyba że wolisz inne) */

      transition: background-color 0.4s ease !important;

}



/* ...Dzieci robią się BIAŁE */

body [class*="sando-tabki-"]:hover .elementor-heading-title,

body [class*="sando-tabki-"]:hover i,

body [class*="sando-tabki-"]:hover svg,

body [class*="sando-tabki-"]:hover path,

body [class*="sando-tabki-"]:hover span,

body [class*="sando-tabki-"]:hover h2 {

    color: #FFFFFF !important;

    fill: #FFFFFF !important;

    transition: all 0.1s ease !important;

}



/* Wyłączenie interakcji z dziećmi (Pointer Events Fix) */

body [class*="sando-tabki-"] .elementor-widget-icon,

body [class*="sando-tabki-"] .elementor-widget-heading,

body [class*="sando-tabki-"] .elementor-widget-text-editor {

    pointer-events: none !important;

}


/* Logika dla kolumny Niedziele - ukryj wszystko co NIE jest niedzielą */
.filter-niedziele .mass-item:not(.mass-niedziele) {
    display: none;
}

/* Logika dla kolumny Święta */
.filter-swieta .mass-item:not(.mass-swieta) {
    display: none;
}

/* Logika dla kolumny Dni Powszednie */
.filter-powszednie .mass-item:not(.mass-powszednie) {
    display: none;
}


/* --- Kontener głównego wiersza --- */
.mass-item {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}
.mass-item:last-child { border-bottom: none; }

.mass-time-wrap {
    display: flex;
    align-items: center; /* Wyrównaj godzinę i kropkę w pionie */
    position: relative;
}

/* Stylizacja godziny */
.mass-time {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #2c2c2c;
    margin-right: 12px; /* Odstęp od kropki */
}

/* --- MODUŁ TOOLTIPA --- */

/* Definicja animacji pulsowania */
@keyframes pulse-red {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7); /* Czerwień */
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(220, 53, 69, 0); /* Zanikająca aureola */
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
    }
}

/* Wrapper tooltipa - niezbędny do pozycjonowania */
.mass-tooltip-wrapper {
    position: relative;
    display: inline-block;
    line-height: 0; /* Zapobiega dziwnym odstępom */
}

/* NAJWAŻNIEJSZE: Ukryj tooltip, jeśli uwaga jest pusta */
/* JetEngine zwraca pusty ciąg, jeśli nie ma danych. CSS to wykryje. */
.mass-tooltip-wrapper[data-tooltip=""] {
    display: none !important;
}

/* Czerwona pulsująca kropka */
.pulsing-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #dc3545; /* Wyrazista czerwień */
    border-radius: 50%;
    cursor: help; /* Zmienia kursor na znak zapytania */
    animation: pulse-red 2s infinite; /* Czas trwania i pętla animacji */
}

/* Pudełko z treścią tooltipa */
.tooltip-box {
    position: absolute;
    bottom: 140%; /* Pozycja nad kropką */
    left: 50%;
    transform: translateX(-50%) translateY(10px); /* Wyśrodkowanie i lekki offset startowy */
    background-color: #333; /* Ciemne tło boksu */
    color: #fff; /* Biały tekst */
    text-align: center;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    white-space: nowrap; /* Tekst w jednej linii */
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 100;
    /* Stany początkowe do animacji pojawiania się */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55); /* Sprężysty efekt */
}

/* Mały trójkącik pod tooltipem (strzałka) */
.tooltip-box::after {
    content: " ";
    position: absolute;
    top: 100%; /* Na dole pudełka */
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

/* AKCJA HOVER - Pokazanie tooltipa */
.mass-tooltip-wrapper:hover .tooltip-box {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0); /* Płynny wjazd na pozycję */
}
/* ==================================================
   FIX UKŁADU MSZY - WERSJA DLA POD-KONTENERÓW
   ================================================== */

/* 1. Ustawienie każdego wiersza (Niedziela, Powszednie, Święta) */
/* Celujemy w bezpośrednie kontenery-dzieci wewnątrz sando-tresc-1 */
.sando-tresc-1 > .e-con,
.sando-tresc-1 > .elementor-container > .e-con { 
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important; /* Pozwala spadać tagom */
    align-items: center !important; /* Wyrównanie do środka linii */
    width: 100% !important;
}

/* 2. Nagłówek (np. "- w niedzielę:") */
.sando-tresc-1 .elementor-widget-heading {
    width: auto !important;
    flex-shrink: 0; /* Nie zgniataj tekstu */
    margin: 0 !important;
}

/* 3. ROZPUSZCZALNIK - Usuwamy struktury JetListingu */
/* To musi być display: contents, żeby itemy 'wypadły' do głównego kontenera */
.sando-listing-godzin, 
.sando-listing-godzin .elementor-widget-container,
.sando-listing-godzin .jet-listing-grid,
.sando-listing-godzin .jet-listing-grid__items {
    display: contents !important; 
}

/* 4. Wygląd "Pigułki" dla pojedynczej godziny */
.sando-listing-godzin .jet-listing-grid__item {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: auto !important;
    max-width: fit-content !important;
    
    margin: 0 !important; /* Gap w rodzicu załatwia sprawę, ale dla bezpieczeństwa 0 */
}




/* ==================================================
   FIX WIDOCZNOŚCI DLA EDYTORA ELEMENTORA (TRYB GOD MODE)
   ================================================== */

/* Wykrywamy czy jesteśmy w edytorze */
body.elementor-editor-active .sando-tresc-1,
body.elementor-editor-active .sando-tresc-2,
body.elementor-editor-active .sando-tresc-3 {
    display: flex !important;     /* Wymuś pokazanie */
    visibility: visible !important;
    opacity: 1 !important;
    
    /* Dodatki, żebyś mógł wygodnie edytować */
    position: relative !important;
    z-index: 9999 !important;
    margin-bottom: 50px !important; /* Odstęp między sekcjami w edytorze */
    padding: 20px !important;
    border: 2px dashed #ff0000 !important; /* Czerwona ramka pomocnicza */
}

/* Opcjonalnie: Dodaj opis co jest co w edytorze */
body.elementor-editor-active .sando-tresc-1::before { content: "EDYCJA: ZAKŁADKA 1 (LITURGIA)"; color: red; font-weight: bold; display: block; width: 100%; margin-bottom: 10px; }
body.elementor-editor-active .sando-tresc-2::before { content: "EDYCJA: ZAKŁADKA 2 (MSZE)"; color: red; font-weight: bold; display: block; width: 100%; margin-bottom: 10px; }
body.elementor-editor-active .sando-tresc-3::before { content: "EDYCJA: ZAKŁADKA 3 (ODPUSTY)"; color: red; font-weight: bold; display: block; width: 100%; margin-bottom: 10px; }

/* FIX DLA SWIPERA W EDYTORZE (Żeby menu nie znikało) */
body.elementor-editor-active #sando-scroll {
    width: 100% !important;
    overflow: visible !important;
}

body.elementor-editor-active .sando-slide {
    width: auto !important;
    opacity: 1 !important;
}

/* ==================================================
   TYLKO KOLORY TŁA (BEZ STYLIZACJI KSZTAŁTU)
   ================================================== */
   
   /* 1. BAZA: Rozdzielenie elementów */
.sando-listing-godzin .jet-listing-grid__item {
    margin-right: 8px !important; /* To rozcina ten długi pasek na kawałki */
    /* Odstęp w pionie, jak zawinie */
    /* Minimalny oddech, żeby cyfry nie dotykały krawędzi koloru */
    border-radius: 8px;
  
}

/* 1. NIEDZIELA (#FFB1F3) */
.sando-bg-niedziela .jet-listing-grid__item {
    background-color: #FFB1F34A !important;
}

/* 2. DNI POWSZEDNIE (#B1FFBD) */
.sando-bg-powszednie .jet-listing-grid__item {
    background-color: #B1FFBD4A !important;
}

/* 3. ŚWIĘTA ZNIESIONE (#B1CCFF) */
.sando-bg-swieta .jet-listing-grid__item {
    background-color: #B1CCFF4A !important;
}


/* --- NAPRAWA TOOLTIPÓW JETTRICKS (TIPPY.JS) --- */

body .tippy-box {
    width: max-content !important;
    max-width: none !important; 
}/* End custom CSS */