@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@600;800&family=Roboto:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull))
{
    width:100% !important;
    max-width:100% !important;
}
/* === ZMIENNE I GŁÓWNY KONTENER === */
.event-page-wrapper {
    --color-dark-blue: #141f33;
    --color-orange: #ed4f00;
    --color-white: #ffffff;
}

.anton-font{
    font-family: "Anton", sans-serif !important;
}

.event-page-wrapper
{
    font-family: "Poppins", sans-serif !important;
}
/* === SEKCJA GŁÓWNA (HERO) === */
.event-hero {
    position: relative;
    padding: 4rem 2rem;
    color: var(--color-white);
    display: flex;
    align-items: center;
    min-height: 600px;
    background-color: var(--color-dark-blue);
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-image: url("../img/product_page_background.jpeg");
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(20, 31, 51, 0.9) 0%, rgba(20, 31, 51, 0.7) 100%);
}
.hero-content-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* === LEWA KOLUMNA === */
.hero-details {
    flex: 1 1 58%; /* Zajmuje więcej miejsca */

}
.event-meta-info {

    color: #ed4f00;
    font-size:30px;
    margin: 0 0 0.5rem 0;
    font-weight: bold;
}
.event-meta-info.location {
    font-size: 1rem;
    color: white;
    opacity: 0.7;
}
.event-title {
    font-family: 'Barlow', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    margin: 1rem 0 2.5rem 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    letter-spacing: 3px;
}

/* LICZNIK */
.countdown-timer { display: flex; gap: 1rem; margin-bottom: 2.5rem; }
.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background-color: var(--color-orange);
    border-radius: 50%;
}
.timer-unit .timer-digits {
    font-family: 'Barlow', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}
.timer-unit .timer-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.add-to-calendar-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
}
.add-to-calendar-link:hover { color: var(--color-orange); }

/* === PRAWA KOLUMNA (KARTA ZAKUPU) === */
.hero-cta-card {
    flex: 0 0 340px;
    background-color: var(--color-orange);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    text-align: center;
    align-self: flex-start; /* Zapobiega rozciąganiu się w pionie */
    position: sticky;
    top:100px;
    width: 340px;
    margin-left: auto
}

.hero-cta-wrapper
{
    width: 100%;
    height:100%;
    position:relative;
}

.hero-cta-wrapper::before
{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-image: url('../img/tlo-kup-bilet.png');
    background-position: center;

    background-size: contain;
    opacity: 0.1;
    z-index: -1;
}

.cta-header { padding: 0.75rem;  }
.cta-header h2 { margin: 0; margin-top:32px ; text-transform: uppercase; font-size: 4rem !important; }
.cta-header p { margin: 0; font-size: 1.2rem; opacity: 1; }
.cta-body { padding: 1.5rem; padding-top:0;  font-family: 'Roboto', sans-serif; }
.cta-ticket-img { max-width: 222px; border-radius: 6px; }
.price-section .price-label { font-size: 2rem; font-weight: 500; display: block;  }
.price-section .price-amount { font-family: 'Barlow', sans-serif; font-size: 4.5rem; font-weight: 800; line-height: 1.1; }
.price-section .price-note { font-size: 0.8rem; opacity: 0.9; margin: 0.5rem 0 1.5rem 0; }
.purchase-form { display: flex; gap: 10px; }
.purchase-form .quantity-input {
    width: 70px; border: 2px solid var(--color-dark-blue);
    background: #fff; color: var(--color-dark-blue);
    border-radius: 8px; text-align: center; font-size: 1.2rem; font-weight: 700;
}
.purchase-form .cta-button {
    flex-grow: 1; display: flex; align-items: center; justify-content: center;
    background-color: var(--color-dark-blue); padding: 0.8rem; border-radius: 8px;
    text-decoration: none; color: var(--color-white); font-weight: 700;
    transition: all 0.2s ease; border: none; cursor: pointer; font-size: 1rem;
}
.purchase-form .cta-button:hover { background-color: #000; }

/* === RESPONSIVE === */
@media (max-width: 992px) {
    .hero-content-container { flex-direction: column; }
    .hero-details { text-align: center; }
    #countdown-timer { justify-content: center; }
    .event-title { font-size: 2.5rem; }
}
.hero-details {
    flex: 1 1 600px;
    text-align: center; /* <-- DODANA WŁAŚCIWOŚĆ */
}

/* 2. Wyśrodkowanie kółek licznika wewnątrz ich kontenera */
.countdown-timer {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    justify-content: center; /* <-- DODANA WŁAŚCIWOŚĆ */
}

.hero-cta-card
{
    color: #141f33;
}

.cta-header h2
{
    font-size: 32px;
}

.cta-header p
{
    color:white;
    font-size: 18px;
}

.price-note
{
    color: white;
}

.price-note span
{
font-size: 16px;
}

.event-footer
{
    background-color: #ed4f00;
    color:white;
    font-weight: bold;
    text-align: center;
    padding: 8px 8px;
}

.mobile-cta-wrapper {
    display: none;
    margin-top: 2rem;
}

/* --- Style dla ekranów mniejszych niż 1020px --- */
@media (max-width: 1019.98px) {

    /* 1. Ukryj boczny panel "Kup Bilet" */
    .hero-cta-card {
        display: none;
    }

    /* 2. Pokaż nowy, pomarańczowy przycisk pod licznikiem */
    .mobile-cta-wrapper {
        display: block;
    }

    .cta-button-mobile {
        display: inline-block;
        background-color: #ed4f00; /* Twój pomarańczowy kolor */
        color: #ffffff;
        padding: 1rem 2.5rem;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 700;
        font-size: 1.2rem;
        transition: all 0.2s ease;
    }
    .cta-button-mobile:hover {
        background-color: #d14600;
        transform: scale(1.05);
    }
}

@media (max-width: 699.98px) {
    /* Zmniejszamy odstępy między kółkami na mobilach */
    #countdown-timer {
        gap: 0.75rem;
        justify-content: center;
    }

    /* Kluczowa poprawka dla kółek */
    .timer-unit {
        /* "Powiedz" kółkom, aby nigdy się nie kurczyły */
        flex-shrink: 0;

        /* Opcjonalnie: Możemy je lekko zmniejszyć dla lepszego wyglądu,
           ale zachowując stały, a nie procentowy, rozmiar */
        width: 60px;
        height: 60px;
        border-radius: 25%;
    }

    /* Dopasowanie wielkości czcionki do mniejszych kółek */
    .timer-unit span:first-child {
        font-size: 1.6rem;
    }
    .timer-unit span:last-child {
        font-size: 0.7rem;
    }
}

.details-meta-bar {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    background-color: #141f33; /* Twój ciemnoniebieski kolor */
    color: #ffffff;
    padding: 2rem;
}
.meta-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}
.meta-item i {
    font-size: 2rem;
    color: #ed4f00; /* Twój pomarańczowy akcent */
}
.meta-text .meta-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
}
.meta-text .meta-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* --- Główna, jasna treść sekcji --- */
.details-content {
    background-color: #ffffff;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}
.details-title {
    font-family: 'Barlow', sans-serif;
    color: #ed4f00;
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.details-subtitle {
    font-family: 'Barlow', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #141f33;
    margin-bottom: 2rem;
}
.details-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
}

/* Lista z "checkboxami" */
.checklist {
    list-style: none;
    padding: 0;
    margin: 0 0;
    display: inline-block; /* Aby wyśrodkować blok listy */
    text-align: left;
}
.checklist li {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}
.checklist i {
    color: #ed4f00; /* Kolor ikony "ptaszka" */
    font-size: 1.5rem;
    margin-right: 1rem;
}

/* Responsywność */
@media (max-width: 768px) {
    .details-meta-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    .details-title { font-size: 2rem; }
    .details-subtitle { font-size: 1.2rem; }
}

.cta-card-clone {
    /* Domyślnie klon jest całkowicie ukryty i niewidoczny */
    position: fixed;
    top: 40px; /* Odstęp od góry */
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px); /* Startowy efekt dla animacji */
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

/* Styl, który pokazje sklonowaną kartę z animacją */
.cta-card-clone.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Klasa, która ukrywa oryginalną kartę, gdy klon jest widoczny */
.hero-cta-card.original-card-hidden {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.agenda-section {
    position: relative; /* Potrzebne dla tła */
    background-color: #141f33; /* Twój ciemnoniebieski kolor */
    color: #ffffff;
    padding: 4rem 2rem;
    font-family: 'Montserrat', sans-serif; /* Użyj tej samej czcionki co w hero */

    /* EFEKT CIENIA OD GÓRY */
    box-shadow: inset 0 10px 15px -10px rgba(0, 0, 0, 0.7);
}

/* Nakładka z siatką geometryczną (opcjonalnie) */
.agenda-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    /* WAŻNE: Podmień na ścieżkę do Twojego obrazka z siatką */
    background-image: url('https://via.placeholder.com/1920x500.png?text=Twoja+Grafika+w+Tle');
    background-position: center;
    background-size: cover;
    opacity: 0.1; /* Ustawia przezroczystość siatki */
}

.agenda-content {
    position: relative; /* Aby treść była nad tłem */
    max-width: 1200px;
    margin: 0 auto;
}

.agenda-content ol
{
    list-style: disc !important;
}

.agenda-title {
    font-family: 'Barlow', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #ed4f00; /* Twój pomarańczowy akcent */
    margin: 0 0 2.5rem 0;
}

.agenda-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.agenda-item {
    display: flex;
    align-items: baseline;
    font-size: 1.2rem;
    line-height: 1.6;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.agenda-item:last-child {
    border-bottom: none;
}

.agenda-item::before {
    content: '>'; /* Znak zachęty */
    font-family: monospace;
    font-size: 1.5rem;
    color: #ed4f00;
    margin-right: 1.5rem;
}

.agenda-time {
    font-weight: 700;
    flex-shrink: 0;
    width: 140px; /* Stała szerokość dla równego ułożenia */
}

.agenda-desc {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsywność */
@media (max-width: 768px) {
    .agenda-title {
        font-size: 2rem;
    }
    .agenda-item {
        font-size: 1rem;
    }
    .agenda-time {
        width: 110px;
    }
}

.gallery-section {
    position: relative; /* Niezbędne do pozycjonowania strzałek */
    padding: 0;
    margin: 0;
    z-index:999;
}

.gallery-scroll-container {
    display: flex;
    overflow-x: auto;
    /* Usuwamy scroll-snap, ponieważ JS będzie kontrolował przewijanie */
    scroll-behavior: smooth; /* Zapewnia płynne przewijanie */

    /* Ukrycie paska przewijania */
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.gallery-scroll-container::-webkit-scrollbar {
    display: none;
}
.cta-button-mobile
{
    color:white !important;
}
.gallery-item {
    flex: 0 0 33.333%; /* Trzy zdjęcia w widoku */
    position: relative;
    overflow: hidden;

    /* === POPRAWKA: Ustawiamy maksymalną wysokość dla galerii === */
    height: 400px; /* Możesz tu wpisać dowolną wartość, np. 350px, 500px */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Gwarantuje, że zdjęcie wypełnia pole bez zniekształceń */
    display: block;
}

/* --- Style dla strzałek --- */
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(20, 31, 51, 0.7); /* Ciemnoniebieskie, półprzezroczyste tło */
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, transform 0.2s ease;
}
.gallery-arrow:hover {
    background-color: #ed4f00; /* Pomarańczowy akcent po najechaniu */
    transform: translateY(-50%) scale(1.1);
}
.gallery-arrow.prev {
    left: 20px;
}
.gallery-arrow.next {
    right: 20px;
}

/* --- Responsywność --- */
@media (max-width: 992px) {
    .gallery-item {
        flex-basis: 50%; /* Dwa zdjęcia w widoku na tabletach */
    }
}
@media (max-width: 576px) {
    .gallery-item {
        flex-basis: 100%; /* Jedno zdjęcie w widoku na telefonach */
    }
    .gallery-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .gallery-arrow.prev { left: 10px; }
    .gallery-arrow.next { right: 10px; }
}
.audience-section {
    position: relative;
    background-color: #141f33; /* Twój ciemnoniebieski kolor */
    color: #ffffff;
    padding: 4rem 2rem;
    font-family: 'Roboto', sans-serif; /* Użyj tej samej czcionki co w hero */
}

/* Nakładka z siatką geometryczną (opcjonalnie, tak jak w poprzedniej sekcji) */
.audience-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    /* WAŻNE: Podmień na ścieżkę do Twojego obrazka z siatką */
    background-image: url('https://via.placeholder.com/1920x400.png?text=Twoja+Grafika+w+Tle');
    background-position: center;
    background-size: cover;
    opacity: 0.1; /* Ustawia przezroczystość siatki */
}

.audience-content {
    position: relative; /* Aby treść była nad tłem */
    max-width: 1200px; /* Nieco szerszy kontener dla listy */
    margin: 0 auto;
}

.audience-title {
    font-family: 'Barlow', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #ed4f00; /* Twój pomarańczowy akcent */
    margin: 0 0 2.5rem 0;
}

.audience-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.audience-item {
    display: flex;
    align-items: flex-start; /* Wyrównanie do góry */
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}
.audience-item:not(:last-child) {
    margin-bottom: 1.5rem;
}

.audience-item .list-icon {
    font-family: monospace;
    font-size: 1.5rem;
    font-weight: bold;
    color: #ed4f00;
    margin-right: 1.5rem;
    line-height: 1.5; /* Lepsze wyrównanie w pionie */
}

/* Responsywność */
@media (max-width: 768px) {
    .audience-title {
        font-size: 2rem;
    }
    .audience-item {
        font-size: 1rem;
    }
}

.final-cta-section {
    background-color: #ffffff;
    padding: 4rem 2rem;
    font-family: 'Roboto', sans-serif;
}

.final-cta-content {
    max-width: 1200px;
    margin: 0 auto;

}

.final-cta-title {
    font-family: 'Barlow', sans-serif;
    color: #ed4f00; /* Twój pomarańczowy akcent */
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.final-cta-subtitle {
    font-family: 'Barlow', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #141f33; /* Twój ciemnoniebieski kolor */
    margin-bottom: 2.5rem;
}

.final-cta-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
}

/* Responsywność */
@media (max-width: 768px) {
    .final-cta-title {
        font-size: 2rem;
    }
    .final-cta-subtitle {
        font-size: 1.2rem;
    }
    .final-cta-content p {
        font-size: 1rem;
    }
}

.event-container
{
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
}

.text-container
{
    max-width: 670px;
}



.animate-bg
{
    overflow: hidden;
    position: relative;
    z-index: 2;
}


/* Twoja treść - musi być nad animacją */
#tsparticles-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.agenda-content {
    position: relative;
    z-index: 2; /* Treść musi być nad animacją */
    background-color: transparent !important; /* <-- KLUCZOWA POPRAWKA */
}

.agenda-section div, .audience-list
{
    font-family: "Poppins", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    text-transform: none;
    font-style: normal;
    text-decoration: none;
    line-height: 1.5em;
    letter-spacing: 0px;
    padding-bottom:12px;
}

.psm-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(20, 31, 51, 0.7); /* Twój ciemnoniebieski z przezroczystością */
    z-index: 1050;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}
.psm-modal-overlay.is-visible {
    display: flex;
    opacity: 1;
}

/* --- Animacja pojawiania się --- */
@keyframes psm-modal-fade-in {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* --- Główny kontener modala --- */
.psm-modal-content.success-modal {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    width: 90%;
    max-width: 420px; /* Idealny rozmiar dla komunikatu */
    padding: 2.5rem 2rem;
    animation: psm-modal-fade-in 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Przycisk zamykania 'x' */
.success-modal .psm-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e9ecef;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 1.2rem;
    color: #6c757d;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}
.success-modal .psm-modal-close:hover {
    background-color: #dee2e6;
    transform: rotate(90deg);
}

/* Ikona sukcesu */
.success-modal .modal-icon-wrapper {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem auto;
    border-radius: 50%;
    background-color: rgba(25, 135, 84, 0.1); /* Jasnozielone tło */
    display: flex;
    align-items: center;
    justify-content: center;
}
.success-modal .modal-icon-wrapper i {
    font-size: 2rem;
    color: #198754; /* Ciemnozielona ikona */
}

/* Teksty w modalu */
.success-modal .modal-main-title {
    font-family: 'Barlow', sans-serif; /* Bardziej wyrazista czcionka dla tytułu */
    font-size: 1.75rem;
    font-weight: 700;
    color: #141f33; /* Twój ciemnoniebieski kolor */
    margin-bottom: 0.5rem;
}
.success-modal .modal-description {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Przyciski akcji */
.success-modal .modal-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.success-modal .btn {
    padding: 0.8rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

/* Przycisk główny (pomarańczowy) */
.success-modal .btn-primary-custom {
    background-color: #ed4f00;
    border-color: #ed4f00;
    color: #ffffff;
}
.success-modal .btn-primary-custom:hover {
    background-color: #d14600;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(237, 79, 0, 0.2);
}

/* Przycisk drugorzędny (tekstowy) */
.success-modal .btn-secondary-custom {
    background: none;
    border: none;
    color: #6c757d;
}
.success-modal .btn-secondary-custom:hover {
    color: #141f33;
    background-color: #f0f0f0;
}

.floating-cart {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #ed4f00; /* Twój pomarańczowy kolor */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: transform 0.2s ease-in-out;
}

.floating-cart:hover {
    color: #ffffff;
    transform: scale(1.1);
}

.floating-cart .fa-shopping-cart {
    font-size: 1.5rem;
}

.cart-item-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #141f33; /* Twój ciemnoniebieski kolor */
    color: #ffffff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 0.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
}
.cta-card-clone
{
    top:100px !important;
}
.add-to-calendar-link, .floating-cart
{
    color:white !important;
    text-decoration:none !important;
}

.details-content p
{
    margin-bottom:0 !important;
}

.gallery-section {
    position: relative;
    padding: 0;
    margin: 0;
    background-color: #141f33;
}

/* Slick domyślnie ukrywa slider przed inicjalizacją, co jest dobre */
.slick-gallery {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
}
.slick-gallery.slick-initialized {
    opacity: 1;
    visibility: visible;
}

.gallery-item {
    height: 400px; /* Stała wysokość dla całej galerii */
    background-color: #293853; /* Twój ciemnoniebieski kolor */
    border-radius: 8px;

    /* Używamy flexboxa, aby idealnie wyśrodkować obrazek/wideo wewnątrz */
    display: flex !important; /* !important, aby nadpisać style Slick */
    align-items: center;
    justify-content: center;
    margin:0 8px;
    padding:0 6px;
}

/* KLUCZOWA POPRAWKA DLA WIDEO I ZDJĘĆ */
.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;

    /* KLUCZOWA ZMIANA: Pokazuje cały obrazek/wideo, dopasowując go do kontenera */
    object-fit: contain;

    max-width: 100%;  /* Dodatkowe zabezpieczenie */
    max-height: 100%; /* Dodatkowe zabezpieczenie */

    display: block;
    border-radius: 4px;

}

/* Style dla strzałek (bez zmian) */
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(20, 31, 51, 0.7);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
}
.gallery-arrow:hover { background-color: #ed4f00; transform: translateY(-50%) scale(1.1); }
.gallery-arrow.prev { left: 20px; }
.gallery-arrow.next { right: 20px; }


.gallery-item a {
    display: block;
    position: relative;
    height: 100%;
}
.play-icon-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,0.3);
    color: white;
    font-size: 3rem;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.gallery-item a:hover .play-icon-overlay {
    opacity: 1;
}


.workers-slider-section {
    position: relative;
    padding: 2rem 0; /* Dodajemy trochę przestrzeni */
    z-index: 999;
    background-color: #141f33;
}

.workers-carousel-container .slick-slide {
    padding: 0 15px; /* Tworzy odstęp między slajdami */
}
.section-title
{
    color:#ed4f00 !important;
    text-transform: uppercase;
    font-weight: bold;
}

.worker-slide {
    text-align: center;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    background-color: #293853;
    margin: 0 8px;
    padding: 0 6px;
}

.worker-slide a {
    display: block;
    position: relative;
}

.worker-slide a::after {
    content: '\f00e'; /* Ikona lupy z Font Awesome */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    color: white;
    font-size: 3rem;
    background-color: rgba(20, 31, 51, 0.5);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.worker-slide a:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.worker-photo {
    width: 100%;
    height: 350px; /* Stała wysokość dla wszystkich zdjęć */
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}
.worker-slide a:hover .worker-photo {
    transform: scale(1.05);
}

.worker-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
    text-align: left;
}

.worker-name {
    margin: 0;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Dostosowanie strzałek Slick Carousel */
.slick-carousel-wrapper {
    position: relative;
}

/* Kontener na strzałki - umieszczamy go NAD karuzelą */
.slick-custom-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 10px; /* Odstęp od krawędzi */
    z-index: 20; /* Bardzo wysoki z-index dla pewności */
    pointer-events: none; /* Pozwala klikać "przez" kontener */
}

/* Styl pojedynczej strzałki */
.slick-custom-arrow {
    background-color: rgba(255, 255, 255, 0.9);
    color: #141f33;
    border: 1px solid #e2e8f0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    pointer-events: all; /* Przywracamy klikalność dla samych przycisków */
}
.slick-custom-arrow:hover {
    background-color: #141f33;
    color: #ffffff;
    transform: scale(1.1);
}

.dialog-lightbox-widget
{
    display:none !important;
}