/* GÅ‚Ã³wny kontener kalkulatora */
.pricing-calculator-wrapper {
background: transparent !important; /* Usuwamy ciemne tło */
    border: none !important;           /* Usuwamy ramkę */
    box-shadow: none !important;       /* Usuwamy cień */
    max-width: 1200px;
    margin: 20px auto;
    padding: 0;
    color: #fff;
    overflow: visible !important;
}

/* ==================== NAGŁÓWEK KROKU ==================== */

/*
 * Nad zakładkami stoi wiersz „Krok 2 z 5", a pod nim pasek postępu. Zakładki
 * mówią, gdzie klient jest; pasek pokazuje, ile drogi już za nim - i to jest
 * ten widok, który zachęca do dokończenia.
 */
.pricing-krok-naglowek {
    margin-bottom: 26px;
}

.pricing-krok-meta {
    margin-bottom: 10px;
    font-size: 12px;
    color: #8a8a8a;
}

.pricing-krok-numer {
    text-transform: uppercase;
    letter-spacing: 1.6px;
    font-weight: 600;
}

.pricing-krok-tor {
    display: block;
    height: 3px;
    border-radius: 3px;
    background: #2c2c2c;
    overflow: hidden;
}

.pricing-krok-wypelnienie {
    display: block;
    height: 100%;
    border-radius: 3px;
    background: #ffba65;
    transition: width 0.35s ease;
}

/* ==================== ZAKŁADKI KROKÓW ==================== */

.pricing-progress-indicator {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-top: 14px;
}

/*
 * Trzy stany zamiast podkreśleń: krok zrobiony to spokojny kafelek z obwódką,
 * bieżący jest wypełniony kolorem, a te przed klientem zostają samym napisem.
 * Dzięki temu widać nie tylko, gdzie się jest, ale też ile już za sobą.
 */
.progress-step {
    flex: 1;
    text-align: center;
    padding: 10px 8px;
    border: 1px solid transparent;
    border-radius: 10px;
    background: transparent;
    transition: all 0.25s ease;
    font-size: 13px;
    font-weight: 600;
    color: #6f6f6f;
    cursor: pointer;
}

.progress-step:hover {
    color: #e8e8ea;
}

.progress-step.completed {
    border-color: #3a3a3a;
    background: #1a1a1a;
    color: #e8e8ea;
}

.progress-step.active {
    border-color: #ffba65;
    background: #ffba65;
    color: #1a1a1a;
}

.progress-step.active:hover {
    color: #1a1a1a;
}

/* ==================== LAYOUT DWU-KOLUMNOWY ==================== */
.pricing-main-content {
display: flex;
    gap: 30px;                         /* Wyraźna przerwa między oknami */
    align-items: stretch;
}

.pricing-steps-column {
flex: 1;
    min-width: 0;
    background: #1c1c1c;               /* Tutaj dajemy tło */
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #353535;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.pricing-summary-column {
    width: 320px;
    flex-shrink: 0;
}

/* ==================== PODSUMOWANIE (STICKY) ==================== */
.pricing-summary-box {
background: #1c1c1c;               /* Możesz zmienić na #1e1e1e dla spójności */
    padding: 25px;
    border-radius: 15px;               /* Zwiększyłem promień dla spójności */
    border: 1px solid #353535;
    position: sticky;
    top: 100px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.pricing-summary-box h3 {
    margin: 0 0 20px 0;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #444;
    padding-bottom: 15px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
    color: #ccc;
}

.summary-line.highlightgf {
    font-size: 16px;
    font-weight: bold;
    color: #ffba65;
}

.summary-line strong {
    color: #ffba65;
}

.summary-divider {
    height: 2px;
    background: #444;
    margin: 15px 0;
}

.summary-included {
    list-style: none !important;
    list-style-type: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.summary-included h4 {
    font-size: 14px;
    color: #d1d1d1;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-included ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Wymuszenie usunięcia kropek motywu */
.summary-included ul {
    list-style: none !important;
    list-style-type: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.summary-included li {
    list-style: none !important;
    list-style-type: none !important;
    padding-left: 20px !important; /* Więcej miejsca na ptaszka */
    position: relative;
    margin-bottom: 8px;
    line-height: 1.4;
    font-size: 13px !important;
    line-height: 1.4 !important;
    font-weight: 400 !important;
    color: #d1d1d1 !important;
}

/* Styl ptaszka (checkmark) */
.summary-included li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.summary-note {
    font-size: 11px;
    color: #888;
    margin-top: 15px;
    line-height: 1.4;
    font-style: italic;
}

/* ==================== KONTENER KROKÓW ==================== */
.pricing-steps {
    position: relative;
}

/* Pojedynczy krok - domyÅ›lnie ukryty */
.pricing-step {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.pricing-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* NagÅ‚Ã³wek kroku */
/* Pytanie kroku od lewej krawędzi, w jednej linii z paskiem postępu nad nim -
   wyśrodkowany nagłówek wisiał w oderwaniu od treści, która i tak jest
   wyrównana do lewej. */
.pricing-step h3 {
    color: #ffffff;
    margin: 0 0 22px;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.25;
    text-align: left;
}

/* Zdanie pod pytaniem, dla kroków, które tego potrzebują. Gdy go nie ma,
   nagłówek zachowuje swój własny odstęp. */
.pricing-step h3 + .pricing-podtytul {
    margin: -16px 0 22px;
    color: #9a9a9a;
    font-size: 15px;
    line-height: 1.5;
}

/* Opcje wyboru */
.pricing-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.pricing-option {
    display: flex;
    align-items: center;
    background: #2d2d2d;
    padding: 18px 20px;
    border-radius: 10px;
    border: 1px solid #444;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-option:hover {
    background: #333;
    border-color: #ffba65;
}

.pricing-option input[type="radio"],
.pricing-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 15px;
    cursor: pointer;
    accent-color: #ffba65;
    flex-shrink: 0;
}

.pricing-option.checkbox-option input[type="checkbox"] {
    accent-color: #28a745;
}

.option-label {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-size: 16px;
    color: #fff;
    gap: 12px;
}

/*
 * Dopłata przy opcji jest częścią jej opisu, a nie osobnym komunikatem -
 * dlatego czyta się ją tym samym, jasnym kolorem co nazwę. Kolor akcentu
 * dostaje dopiero po zaznaczeniu i wtedy niesie treść: to jest ta kwota,
 * która właśnie weszła do wyceny.
 */
.price-tag {
    color: #e8e8ea;
    font-weight: bold;
    font-size: 15px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: color 0.2s ease;
}

.pricing-option:has(input:checked) .price-tag {
    color: #ffba65;
}

/* Wybrana opcja */
.pricing-option:has(input:checked) {
    background: #ffba6520;
    border-color: #ffba65;
}

.pricing-option.checkbox-option:has(input:checked) {
    background: #28a74520;
    border-color: #28a745;
}

/* Przyciski nawigacji */
/* Te same dwa przyciski, co w formularzu prostym - klient przechodzi między
   tymi formularzami i nie ma powodu, żeby nawigacja wyglądała inaczej. */
.btn-next,
.btn-prev {
    -webkit-appearance: none;
    appearance: none;
    box-sizing: border-box;
    padding: 14px 30px;
    border: 1px solid #444;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* „Dalej" jest główną akcją kroku, więc bierze kolor akcentu. */
.btn-next {
    background: #ffba65;
    border-color: #ffba65;
    color: #1a1a1a;
    width: 100%;
    margin-top: 0px;
}

.btn-next:hover {
    background: #ffcb8a;
    border-color: #ffcb8a;
    color: #1a1a1a;
}

/* „Wstecz" jest wyjściem awaryjnym - ma być widoczne, ale nie zapraszać. */
.btn-prev {
    background: #2d2d2d;
    border-color: #444;
    color: #ccc;
    margin-right: 10px;
}

.btn-prev:hover {
    background: #333;
    border-color: #ffba65;
    color: #fff;
}

/* Formularz kontaktowy */
.pricing-form {
    margin: 0;
    padding: 0;
}

.pricing-calculator-wrapper .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 0px;
}

.form-row input {
    flex: 1;
}

/* Style pÃ³l formularza */
.pricing-calculator-wrapper .pricing-form input[type="text"],
.pricing-calculator-wrapper .pricing-form input[type="email"],
.pricing-calculator-wrapper .pricing-form input[type="url"],
.pricing-calculator-wrapper .pricing-form textarea {
    display: block !important;
    width: 100% !important;
    padding: 14px !important;
    background-color: #2d2d2d !important;
    border: 2px solid #444444 !important;
    color: #fff !important;
    border-radius: 8px !important;
    font-size: 15px !important;
    margin-bottom: 25px !important;
    box-sizing: border-box !important;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.pricing-form input:focus,
.pricing-form textarea:focus {
    outline: none !important;
    border-color: #ffba65 !important;
    box-shadow: 0 0 8px rgba(0, 115, 170, 0.4) !important;
    background-color: #333 !important;
}

.pricing-form textarea {
    min-height: 100px;
    resize: vertical;
}

/* Honeypot */
.hp-field {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
}

/* Przełącznik trybu: Prześlij pliki / Podaj link */
.pricing-upload-mode-switch {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
}

.upload-mode-btn {
    -webkit-appearance: none;
    appearance: none;
    flex: 1;
    padding: 12px 16px;
    background: #2d2d2d;
    border: 1px solid #444;
    border-radius: 8px;
    color: #ccc;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.upload-mode-btn:hover,
.upload-mode-btn:focus,
.upload-mode-btn:active {
    background: #333;
    border-color: #ffba65;
    color: #fff;
    outline: none;
}

.upload-mode-btn.active,
.upload-mode-btn.active:hover,
.upload-mode-btn.active:focus {
    background: #ffba6520;
    border-color: #ffba65;
    color: #fff;
}

.upload-mode-btn:disabled,
.upload-mode-btn:disabled:hover {
    background: #2d2d2d;
    border-color: #444;
    color: #ccc;
    opacity: 0.4;
    cursor: not-allowed;
}

/* Drop zone */
.drop-zone {
    position: relative;
    flex-direction: column !important;
    border: 2px dashed #555;
    padding: 40px 20px;
    text-align: center;
    border-radius: 10px;
    background: #252525;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    margin-bottom: 10px;
}

.drop-zone:hover {
    border-color: #ffba65;
    background: #2a2a2a;
}

.drop-zone p {
    margin: 0 !important;
    color: #aaa !important;
    font-size: 15px !important;
}

.drop-zone p.drop-zone-hint-text {
    display: none;
    color: #ffba65 !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    letter-spacing: 0.3px;
    text-shadow: 0 0 14px rgba(255, 186, 101, 0.75);
}

.drop-zone-info {
    display: block;
    font-size: 11px;
    color: #888;
    margin-top: 10px;
    line-height: 1.4;
    font-weight: normal;
    transition: opacity 0.2s ease;
}

/* Stan przeciągania pliku nad strefą uploadu: animowana, "biegnąca" przerywana
   ramka (marching ants) poruszająca się w jednym kierunku + efekt poświaty.
   Ramka rysowana jest jako SVG (rounded-rect), dzięki czemu idealnie podąża
   za tymi samymi zaokrąglonymi rogami co statyczna ramka (border-radius: 10px). */
.drop-zone-marching-border {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.drop-zone-marching-border rect {
    x: 1px;
    y: 1px;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    rx: 9px;
    ry: 9px;
    fill: none;
    stroke: #ffba65;
    stroke-width: 2px;
    stroke-dasharray: 10 8;
    animation: pricing-marching-ants-svg 0.6s linear infinite;
}

@keyframes pricing-marching-ants-svg {
    to {
        stroke-dashoffset: -18;
    }
}

.drop-zone.drag-active {
    border-color: transparent;
    background-color: rgba(255, 186, 101, 0.12);
    animation: pricing-glow-pulse 1.4s ease-in-out infinite;
}

.drop-zone.drag-active .drop-zone-marching-border {
    opacity: 1;
}

.drop-zone.drag-active p.drop-zone-default-text {
    display: none !important;
}

.drop-zone.drag-active p.drop-zone-hint-text {
    display: block !important;
}

.drop-zone.drag-active .drop-zone-info {
    opacity: 0.45;
}

@keyframes pricing-glow-pulse {
    0%, 100% {
        box-shadow:
            0 0 0 1px rgba(255, 186, 101, 0.5),
            0 0 22px 4px rgba(255, 186, 101, 0.35),
            inset 0 0 22px rgba(255, 186, 101, 0.12);
    }
    50% {
        box-shadow:
            0 0 0 1px rgba(255, 186, 101, 0.7),
            0 0 38px 8px rgba(255, 186, 101, 0.55),
            inset 0 0 34px rgba(255, 186, 101, 0.22);
    }
}

/* Pasek postÄ™pu */
.progress-container {
    width: 100%;
    background-color: #333;
    border-radius: 8px;
    margin: 20px 0;
    overflow: hidden;
    height: 25px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.5);
}

#pricing-pliki-bar {
    width: 0%;
    height: 100%;
    background-color: #ffba65;
    color: white;
    text-align: center;
    line-height: 25px;
    font-size: 12px;
    font-weight: bold;
    transition: width 0.3s ease;
    white-space: nowrap;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Pasek "nieokreślonego" postępu - używany, gdy czekamy na odpowiedź serwera
   (np. kasowanie plików), a nie ma żadnego realnego % do pokazania. */
.progress-container.is-indeterminate {
    position: relative;
}

.progress-container.is-indeterminate #pricing-pliki-bar {
    position: absolute;
    top: 0;
    height: 100%;
    width: 30%;
    transition: none;
    animation: pricing-indeterminate-slide 1.1s ease-in-out infinite;
}

.progress-container.is-indeterminate::after {
    content: attr(data-label);
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    pointer-events: none;
}

@keyframes pricing-indeterminate-slide {
    0%   { left: -30%; }
    100% { left: 100%; }
}

#pricing-file-count-info {
    color: #888;
    font-size: 13px;
    margin-bottom: 25px;
    display: block;
}

/* Przycisk reset */
.gdrive-reset-btn {
    background: none !important;
    border: none !important;
    color: #ff4d4d !important;
    font-size: 12px !important;
    cursor: pointer !important;
    text-decoration: underline !important;
    margin-left: 10px !important;
    padding: 6 !important;
    display: inline-block;
}

.gdrive-reset-btn:hover {
    color: #ff8080 !important;
}

/* Alternatywny link */
#alternative-link-wrapper {
margin-top: 0px;
margin-bottom:20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03); /* Bardzo delikatne tło */
    border-radius: 12px;
    border: 1px dashed #444;
}

/* Etykieta (label) nad polem */
#alternative-link-wrapper label {
    display: block;
    font-size: 13px;
    color: #aaa;
    margin-bottom: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Styl samego pola input */
#pricing-alt-link {
    width: 100%;
    background: #121212 !important; /* Głęboka czerń */
    border: 1px solid #353535 !important;
    border-radius: 8px !important;
    padding: 12px 15px !important;
    color: #fff !important;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

/* Efekt po kliknięciu w pole (Focus) */
#pricing-alt-link:focus {
    border-color: #ffba65 !important;
    box-shadow: 0 0 10px rgba(255, 186, 101, 0.3) !important;
    background: #181818 !important;
}

/* Placeholder (tekst podpowiedzi wewnątrz pola) */
#pricing-alt-link::placeholder {
    color: #555;
    font-style: italic;
}

/* Zgoda */
.consent-label {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px;
    font-size: 13px;
    color: #ccc;
    margin-bottom: 30px !important;
    cursor: pointer;
    line-height: 1.4;
}

.consent-label input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    margin: 0 !important;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: #0073aa;
}

/* Przycisk submit */
/* Ostatni krok tej samej drogi co „Dalej", więc i ten sam kolor - inny
   sugerowałby, że to inna akcja. */
#submit-pricing-form {
    width: 100%;
    padding: 16px;
    background: #ffba65 !important;
    color: #1a1a1a !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

#submit-pricing-form:hover {
    background: #ffcb8a !important;
    color: #1a1a1a !important;
}

#submit-pricing-form:disabled {
    background: #444 !important;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Komunikaty */
#pricing-form-msg {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
}

#pricing-form-msg p {
    margin-top: 15px;
    /*padding: 10px;*/
    border-radius: 4px;
    text-align: center;
}

/* Kontener dla przyciskÃ³w w jednej linii */
.step-navigation {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    align-items: center;
}

.step-navigation .btn-prev,
.step-navigation .btn-next,
.step-navigation #submit-pricing-form {
    margin: 0 !important;
    flex: 1;
    width: auto !important;
}

.step-navigation .btn-prev {
    flex: 0 0 120px;
}

/* BÅ‚Ä…d walidacji */
.pricing-form input:invalid:focus,
.pricing-form textarea:invalid:focus {
    border-color: #ff4d4d !important;
    box-shadow: 0 0 8px rgba(255, 77, 77, 0.4) !important;
}

/* Odnośnik do regulaminu przy zgodzie - kolorem akcentu, bo w gąszczu drobnego
   druku szara podkreślona fraza ginie, a to jedyne miejsce, w którym klient ma
   coś kliknąć przed wysłaniem. */
.pricing-calculator-wrapper .policy-link {
    color: #ffba65;
    text-decoration: underline;
}

.pricing-calculator-wrapper .policy-link:hover {
    color: #ffcb8a;
}

/* ==================== ResponsywnoÅ›Ä‡ ==================== */
@media (max-width: 992px) {
    .pricing-main-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .pricing-summary-column {
        width: 100%;
        order: 2; /* Podsumowanie na górze na telefonie, żeby klient widział cenę */
    }

    .pricing-summary-box {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .pricing-progress, 
    .progress-container,
    .pricing-steps-nav { 
        display: none !important;
    }

/* Jeśli Twoje napisy/kółka są wewnątrz elementu o klasie .progress-step */
    .progress-step {
        display: none !important;
    }
    
    /* Zmniejszamy margines górny pierwszego kroku, żeby nie było dziury */
    .pricing-step.active {
        margin-top: 0 !important;
        padding-top: 0px !important;
    }


    .pricing-calculator-wrapper {
        padding-left: 0px !important;  /* Zmniejsza odstęp wewnętrzny */
        padding-right: 0px !important;
        margin-left: 0 !important;      /* Usuwa ewentualne marginesy */
        margin-right: 0 !important;
    }
    .pricing-progress-indicator {
        flex-wrap: wrap;
    }
    
    .progress-step {
        flex: 0 0 calc(50% - 5px);
        font-size: 11px;
        padding: 10px 5px;
    }
}

@media (max-width: 480px) {
    .pricing-calculator-wrapper .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .pricing-calculator-wrapper {
        padding: 20px;
        margin: 20px 10px;
    }
    
    .btn-prev,
    .btn-next {
        width: 100%;
        margin: 5px 0;
    }
    
    .option-label {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .step-navigation {
        flex-direction: row;
        gap: 10px;
    }
    
    .step-navigation .btn-prev {
        flex: 0 0 100px;
    }
    
    .progress-step {
        flex: 0 0 100%;
        font-size: 10px;
    }
}
/* ==================== PRZYCISK PŁATNOŚCI ==================== */
.btn-payment {
    width: 100%;
    padding: 15px 30px;
    background: #ffba65;
    color: black;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    /* box-shadow: 0 4px 15px rgba(247, 148, 30, 0.3); */
}

.btn-payment:hover {
    background: #ffa73d;
   /* box-shadow: 0 6px 20px rgba(247, 148, 30, 0.4); */
}

.btn-payment:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(247, 148, 30, 0.3);
}

.btn-payment:disabled {
    background: #cccccc;
    cursor: not-allowed;
    box-shadow: none;
}

.payment-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

/* Responsywność */
@media (max-width: 768px) {
    .btn-payment {
        font-size: 14px;
        padding: 12px 20px;
    }
    
    .payment-section {
        margin-top: 15px !important;
        padding-top: 15px !important;
    }
}

.summary-disclaimer {
    margin-top: 16px;
    font-size: 12px;
    color: #888;
    line-height: 1.5;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 12px;
}

.payment-info-box {
    background-color: rgba(255, 255, 255, 0.05); /* Delikatne rozjaśnienie ciemnego tła */
    border-radius: 12px;
    padding: 10px;
    text-align: center;
    margin-top: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-title {
    color: #4a90e2; /* Kolor niebieski z Twojego obrazka */
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 500;
}

.payment-methods {
    color: #888; /* Szary tekst dla metod płatności */
    font-size: 12px;
    margin: 0;
}

/* Kontener na tekst, aby układał się pionowo */
.option-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
    flex: 1 1 auto;
    min-width: 0;
}

/* Główny tytuł opcji */
.option-text-wrapper strong {
    font-size: 16px;
    color: #fff;
}

/* Mniejszy dopisek pod spodem */
.option-details {
    font-size: 12px; /* Mniejsza czcionka */
    color: #888;    /* Jaśniejszy kolor, żeby nie odciągał uwagi */
    font-weight: normal;
    margin-top: 4px; /* Odstęp od tytułu */
}

/* Poprawka dla telefonów, żeby cena nie nachodziła na tekst */
@media (max-width: 480px) {
    .option-label {
        align-items: flex-start !important;
    }
    .price-tag {
        margin-top: 5px;
    }
}

/* Styl kontenera tooltipa */
.pricing-tooltip-wrapper {
    position: relative;
    display: inline-block;
    margin-left: 5px;
    cursor: help;
}

/* Ikona znaku zapytania */
.tooltip-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-color: #666;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 11px;
    line-height: 16px;
    font-weight: bold;
}

/* Ukryty tekst tooltipa */
.tooltip-text {
    visibility: hidden;
    width: 200px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 10px;
    position: absolute;
    z-index: 10;
    bottom: 125%; /* Nad ikonką */
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 12px;
    font-weight: normal;
    line-height: 1.4;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Strzałka pod tooltipem */
.tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

/* Pokazywanie po najechaniu */
.pricing-tooltip-wrapper:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* Poprawka dla telefonów - tooltip nie ucieka poza ekran */
@media (max-width: 768px) {
    .tooltip-text {
        left: auto;
        right: 0;
        transform: translateX(0);
    }
    .tooltip-text::after {
        left: 90%;
    }
}

/*blokada zaznaczenie tekstu */
.pricing-option, .option-label, .progress-step {
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;     /* IE10+/Edge */
    user-select: none;         /* Standardowa właściwość */
}

/* Opcjonalnie: upewnij się, że kursor nadal sugeruje kliknięcie */
.pricing-option {
    cursor: pointer;
}
/* ===== LICZNIK PLIKÓW ===== */
#pricing-file-count-info {
    background: #2d2d2d;
    border: 1px solid #444444;
    border-radius: 8px;
    padding: 6px 12px;
    color: #d1d1d1;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.pricing-file-size-line {
    color: #888;
    font-weight: 500;
}

#pricing-session-timer {
    color: #888;
    font-size: 12px;
    font-weight: 500;
}

#pricing-toggle-list {
    text-decoration: none !important;
    background: #2d2d2d !important;
    border: 1px solid #444444 !important;
    border-radius: 5px !important;
    padding: 6px 12px !important;
    color: #ffba65;
    cursor: pointer;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none !important;
    margin-left: 4px;
}

#pricing-toggle-list:hover {
    color: #ffcb8a;
    text-decoration: none !important;
}

#pricing-pliki-reset {
    text-decoration: none !important;
    background: #2d2d2d !important;
    border: 1px solid #444444 !important;
    border-radius: 5px !important;
    padding: 6px 12px !important;
    color: #ef4444 !important;
    cursor: pointer !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    margin-left: auto !important;
}

#pricing-pliki-reset:hover {
    color: #f87171 !important;
    text-decoration: none !important;
}

/* ===== LISTA PLIKÓW ===== */
#pricing-file-list-wrapper {
    display: none;
    margin-bottom: 12px;
    margin-top: 4px;
}

#pricing-file-list-wrapper.is-open {
    display: block;
}

#pricing-file-list {
    list-style: none;
    margin: 0;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    height: 260px;
    min-height: 140px;
    max-height: 600px;
    resize: vertical;
    overflow-y: auto;
    overflow-x: hidden;
    border: 1px solid #444444;
    border-radius: 8px;
    background: #202020;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: #444 #252528;
}

#pricing-file-list::-webkit-scrollbar {
    width: 4px;
}

#pricing-file-list::-webkit-scrollbar-track {
    background: #252528;
    border-radius: 4px;
}

#pricing-file-list::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 4px;
}

.pricing-file-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
    background: #252528;
    border: 1px solid #333336;
    border-radius: 6px;
    padding: 5px 8px;
    font-size: 11px;
    color: #bbb;
    box-sizing: border-box;
    flex-shrink: 0;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

/* Delikatny podział między plikami "w trakcie" a "przesłane" na liście */
.pricing-file-list-divider {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin: 4px 0;
}

.pricing-file-list-divider::before,
.pricing-file-list-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #333336;
}

.pricing-file-list-divider span {
    padding: 0 8px;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #666;
    white-space: nowrap;
}

.pricing-file-item.status-uploading {
    border-color: rgba(0, 115, 170, 0.5);
}

.pricing-file-item.status-error,
.pricing-file-item.status-aborted {
    border-color: rgba(239, 68, 68, 0.4);
    background: rgba(239, 68, 68, 0.06);
}

.pricing-file-item.status-done {
    border-color: rgba(34, 197, 94, 0.2);
}

.pricing-file-top {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-file-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
    color: #ddd;
    font-weight: 500;
    font-size: 12px;
}

.pricing-file-size {
    flex-shrink: 0;
    color: #888;
    font-size: 10px;
}

.pricing-file-bottom {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 16px;
}

.pricing-file-progress-bar {
    flex: 1;
    height: 4px;
    background: #3a3a3d;
    border-radius: 2px;
    overflow: hidden;
}

.pricing-file-progress-fill {
    height: 100%;
    background: #0073aa;
    border-radius: 2px;
    transition: width 0.2s ease;
}

.pricing-file-percent {
    flex-shrink: 0;
    width: 32px;
    text-align: right;
    font-size: 10px;
    color: #9ca3af;
    font-variant-numeric: tabular-nums;
}

.pricing-file-status-error {
    color: #ef4444;
    font-size: 10px;
    font-weight: 600;
}

.pricing-file-status-done {
    color: #22c55e;
    font-size: 10px;
    font-weight: 600;
}

.pricing-file-actions {
    display: flex;
    justify-content: flex-end;
    gap: 4px;
    flex-shrink: 0;
}

.pricing-file-btn {
    background: #2d2d2d;
    border: 1px solid #444444;
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s, background 0.2s, border-color 0.2s;
    line-height: 1.6;
}

.pricing-file-btn:disabled {
    color: #333;
    cursor: not-allowed;
}

.pricing-btn-abort {
    color: #f0a500;
    border-color: rgba(240, 165, 0, 0.4);
}

.pricing-btn-abort:hover {
    color: #ffc247;
    background: rgba(240, 165, 0, 0.1);
}

.pricing-btn-retry {
    color: #3b82f6;
    border-color: rgba(59, 130, 246, 0.4);
}

.pricing-btn-retry:hover {
    color: #60a5fa;
    background: rgba(59, 130, 246, 0.1);
}

.pricing-btn-remove-local,
.pricing-delete-single {
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.4);
}

.pricing-btn-remove-local:hover,
.pricing-delete-single:hover {
    color: #f87171;
    background: rgba(239, 68, 68, 0.1);
}

/* Mini odtwarzacz podglądu (play/pauza + przewijanie) dla przesłanych plików */
.pricing-file-audio {
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
}

.pricing-audio-toggle {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid #444;
    background: #2d2d2d;
    color: #ffba65;
    font-size: 8px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, color 0.2s;
}

.pricing-audio-toggle:hover {
    border-color: #ffba65;
    color: #ffcb8a;
}

.pricing-audio-seek {
    flex: 1;
    height: 3px;
    accent-color: #ffba65;
    cursor: pointer;
}

.pricing-audio-time {
    flex-shrink: 0;
    width: 30px;
    text-align: right;
    font-size: 10px;
    color: #888;
    font-variant-numeric: tabular-nums;
}