/* ==============================================
   RESERVATION MODAL
   ============================================== */

/* --- Overlay --- */
.reservation-modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 10000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 1rem;
    overflow-y: auto;
}

.reservation-modal.active {
    opacity: 1;
    visibility: visible;
}

/* --- Card --- */
.reservation-modal-inner {
    background: #fff;
    border-radius: 12px;
    max-width: 520px;
    width: 100%;
    position: relative;
    transform: translateY(16px);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    margin: auto;
}

.reservation-modal.active .reservation-modal-inner {
    transform: translateY(0);
}

/* --- Close button --- */
.reservation-modal-close {
    position: absolute;
    top: 0.75rem; right: 0.75rem;
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: #999;
    line-height: 1;
    padding: 0.25rem;
    z-index: 2;
    transition: color 0.2s;
}
.reservation-modal-close:hover { color: #333; }

/* --- Content wrapper --- */
.reservation-modal-content {
    padding: 2rem 2rem 1.5rem;
}

/* Step indicator */
.res-step-indicator {
    font-family: var(--font-liquid, sans-serif);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    color: #aaa;
    margin-bottom: 0.25rem;
}

/* Title */
.res-title {
    font-family: var(--font-hull, serif);
    font-size: 1.35rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 1.25rem;
    line-height: 1.3;
}

/* --- Summary block --- */
.res-summary {
    background: #f8f8f8;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.25rem;
}

.res-summary-guests {
    margin-top: 0.7rem;
    font-size: 0.8rem;
    color: #666;
}

.res-apt-name {
    font-family: var(--font-hull, serif);
    font-size: 1rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 0.5rem;
}

.res-dates-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.res-date-block {
    display: flex;
    flex-direction: column;
}

.res-date-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #999;
}

.res-date-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: #222;
}

.res-date-arrow {
    color: #ccc;
    font-size: 1.1rem;
}

.res-nights-block {
    margin-left: auto;
    align-items: flex-start;
}

/* --- Payment options --- */
.res-payment-title-card {
    display: inline-block;
    background: #1a3a6b;
    color: #fff;
    border-radius: 6px;
    padding: 0.3rem 0.75rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    border: none;
}

.res-payment-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.res-payment-grid {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.res-option {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    padding: 0.85rem 1rem;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.res-option:hover {
    border-color: #ccc;
}

.res-option.selected {
    border-color: #222;
    background: #fafafa;
}

.res-option input[type="radio"] {
    margin-top: 0.25rem;
    accent-color: #222;
    flex-shrink: 0;
}

.res-option-body {
    flex: 1;
    min-width: 0;
}

.res-payment-grid .res-option {
    flex-direction: row;
    align-items: flex-start;
    min-height: 0;
}

.res-payment-grid .res-option input[type="radio"] {
    display: none;
}

.res-option-title {
    font-weight: 600;
    font-size: 0.9rem;
    color: #222;
}

.res-option-desc {
    font-size: 0.78rem;
    color: #777;
    margin-top: 0.15rem;
    line-height: 1.4;
}

.res-surcharge {
    color: #b55;
    font-size: 0.72rem;
}

.res-option-price-wrap {
    text-align: right;
    flex-shrink: 0;
}

.res-payment-grid .res-option-price-wrap {
    margin-top: 0;
    margin-left: auto;
    text-align: right;
}

.res-payment-compact .res-payment-title-card {
    display: none;
}

.res-option-price {
    font-weight: 700;
    font-size: 0.95rem;
    color: #222;
    white-space: nowrap;
    flex-shrink: 0;
}

.res-savings {
    font-size: 0.72rem;
    color: #2a7;
    font-weight: 500;
}

.res-option-price-today {
    font-weight: 700;
    font-size: 1rem;
    color: #111;
    white-space: nowrap;
    text-align: right;
}

.res-price-today-label {
    font-size: 0.7rem;
    font-weight: 600;
    background: #e6f4ea;
    color: #2a7a2a;
    border-radius: 999px;
    padding: 0.1em 0.45em;
    vertical-align: middle;
}

.res-option-price-total {
    font-size: 0.72rem;
    color: #aaa;
    text-align: right;
    white-space: nowrap;
    margin-top: 0.1rem;
}

.res-deposit-badge--date {
    background: #f0f4ff;
    color: #3a5ab8;
}

.res-deposit-badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    background: #e6f4ea;
    color: #2a7a2a;
    border-radius: 999px;
    padding: 0.05em 0.5em;
    vertical-align: middle;
    margin-right: 0.15em;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.res-deposit-total {
    color: #777;
    font-size: 0.95rem;
    margin-top: 0.25rem;
    white-space: nowrap;
}

.res-deposit-price-wrap {
    text-align: right;
    flex-shrink: 0;
}

.res-deposit-row {
    font-size: 0.95rem;
    font-weight: 700;
    color: #222;
    line-height: 1.5;
    white-space: nowrap;
}

/* Single price (no installment option) */
.res-total-single {
    text-align: center;
    margin-bottom: 1.25rem;
}

.res-total-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111;
}


/* --- Form --- */
.res-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Sekcja aktywna (goście) — bez lewego paska, z pulsującym box-shadow */
.res-progress-section {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 0.9rem;
    background: #fff;
}

/* Sekcja płatności i kontaktu po odblokowaniu */
.res-progress-hidden {
    display: none;
}

/* Wjazd nowej sekcji */
@keyframes res-section-appear {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Pulsujący box-shadow — widoczny na iOS, nie wymaga animacji koloru */
@keyframes res-section-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
    40%  { box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.25); }
    100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

.res-section-appear {
    animation: res-section-appear 0.28s ease forwards;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 0.9rem;
    background: #fff;
}

/* Pulsowanie aktywnej sekcji — dopóki nie wykona akcji.
   Dla sekcji gości (res-progress-section): tylko pulse.
   Dla sekcji płatności (res-section-appear): appear + pulse razem. */
.res-progress-section.res-section-active {
    animation: res-section-pulse 1.6s ease 0.4s 3;
}

.res-section-appear.res-section-active {
    animation: res-section-appear 0.28s ease forwards, res-section-pulse 1.6s ease 0.5s 3;
}

.res-section-title {
    font-size: 0.82rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
    display: inline-block;
    background: #1a3a6b;
    color: #fff;
    border-radius: 6px;
    padding: 0.3rem 0.75rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.res-counter-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.45rem 0;
    border-bottom: 1px dashed #eee;
}

.res-counter-row:last-of-type {
    border-bottom: 0;
}

.res-counter-label {
    font-size: 0.9rem;
    color: #333;
}

.res-counter-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.res-counter-value {
    min-width: 2rem;
    text-align: center;
    font-weight: 700;
    font-size: 1.05rem;
    color: #111;
}

.res-counter-plus,
.res-counter-minus {
    border: 1.5px solid #ccc;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: #fff;
    cursor: pointer;
    font-size: 1.25rem;
    line-height: 1;
    color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    touch-action: manipulation;
    transition: background 0.15s, border-color 0.15s;
    -webkit-tap-highlight-color: transparent;
}

.res-counter-plus:hover,
.res-counter-minus:hover {
    background: #f5f5f5;
    border-color: #999;
}

.res-counter-plus:active,
.res-counter-minus:active {
    background: #eee;
}

.res-counter-actions {
    margin-top: 0.65rem;
    display: flex;
    justify-content: flex-end;
}

.res-guests-expanded {
    opacity: 1;
}

.res-guests-inline {
    display: none;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.res-guests-inline-label {
    font-size: 0.85rem;
    color: #555;
    font-weight: 600;
}

.res-guests-inline-counter {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.15rem 0.5rem;
    border: 1px solid #eee;
    border-radius: 999px;
    background: #fafafa;
}

/* W inline widoku przyciski mogą być nieco mniejsze — nadal >44px touch target przez padding */
.res-guests-inline-counter .res-counter-plus,
.res-guests-inline-counter .res-counter-minus {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
}

.res-inline-type {
    font-size: 0.78rem;
    color: #666;
    min-width: 3.5rem;
}

.res-guests-compact .res-section-title {
    display: none;
}

.res-guests-compact .res-guests-expanded {
    display: none;
}

.res-guests-compact .res-guests-inline {
    display: flex;
    animation: res-guests-inline-appear 0.22s ease forwards;
    /* Dorośli + dzieci ZAWSZE w jednej linii (bez zawijania) — wcześniej
       flex-wrap powodowało rozjechanie po wybraniu liczby gości. */
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0.5rem;
}

/* Po wyborze gości ukrywamy etykietę "Goście:" — zostają tylko dwa liczniki. */
.res-guests-compact .res-guests-inline-label {
    display: none;
}

@keyframes res-guests-inline-appear {
    from { opacity: 0; transform: translateY(4px); }
    to   { opacity: 1; transform: translateY(0); }
}

.res-guests-ok {
    border: 1.5px solid #222;
    background: #222;
    color: #fff;
    border-radius: 8px;
    padding: 0.65rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    min-height: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.15s, border-color 0.15s;
}

.res-guests-ok:hover {
    background: #333;
    border-color: #333;
}

.res-fields-row {
    display: flex;
    gap: 0.75rem;
}

.res-fields-row > .res-field {
    flex: 1;
}

.res-field {
    display: flex;
    flex-direction: column;
}

.res-fields-grid-contact {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.res-field-full {
    grid-column: 1 / -1;
}

.res-field-inputwrap {
    position: relative;
}

.res-field-icon {
    position: absolute;
    left: 0.72rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9aa0aa;
    width: 0.95rem;
    height: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.res-field-icon svg {
    width: 100%;
    height: 100%;
}

.res-field label {
    font-size: 0.78rem;
    font-weight: 500;
    color: #555;
    margin-bottom: 0.25rem;
}

.res-field input,
.res-field select {
    width: 100%;
    box-sizing: border-box;
    border: 1.5px solid #ddd;
    border-radius: 6px;
    padding: 0.6rem 0.75rem;
    font-size: 0.9rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
    background: #fff;
    color: #222;
}

.res-field-inputwrap input {
    padding-left: 2.15rem;
}

.res-field-invalid {
    border-color: #c44 !important;
    background: #fff8f8 !important;
}

.res-field-invalid:focus {
    border-color: #c44 !important;
}

.res-field input:focus,
.res-field select:focus {
    border-color: #999;
}

.res-field-small {
    max-width: 120px;
}

.res-field-error {
    font-size: 0.72rem;
    color: #c44;
    min-height: 0;
    margin-top: 0.1rem;
    display: block;
}

.res-nonrefundable-note {
    display: none;
}

.res-payment-compact .res-nonrefundable-note {
    display: block;
}

.res-nonrefundable-tag {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.75rem;
    color: #888;
}

.res-insurance-included {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding: 0.65rem 0.85rem;
    background: #f0faf4;
    border: 1px solid #a7e3bc;
    border-radius: 8px;
    font-size: 0.78rem;
    color: #1a5c35;
    line-height: 1.55;
}

.res-insurance-included-icon {
    width: 1.1rem;
    height: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.05rem;
    color: #22a05a;
}

.res-insurance-link {
    color: #1a5c35;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.res-insurance-link:hover {
    color: #0f3d22;
}

/* --- Terms --- */
.res-terms {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    margin-top: 0.25rem;
}

.res-terms label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.78rem;
    color: #555;
    line-height: 1.4;
}

.res-terms input[type="checkbox"] {
    margin-top: 0.15rem;
    accent-color: #222;
    flex-shrink: 0;
}

.res-terms a {
    color: #222;
    text-decoration: underline;
}

/* --- Submit button --- */
.res-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #222;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s, opacity 0.2s;
    margin-top: 0.75rem;
}

.res-submit-btn:hover:not(:disabled) {
    background: #444;
}

.res-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.res-submit-price {
    background: rgba(255,255,255,0.15);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    font-size: 0.85rem;
}

/* Spinner */
.res-submit-spinner {
    width: 18px; height: 18px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: res-spin 0.7s linear infinite;
}
@keyframes res-spin { to { transform: rotate(360deg); } }

/* --- Security note --- */
.res-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    color: #aaa;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid #f0f0f0;
}

/* --- Error banner --- */
.res-error-banner {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
    border-radius: 6px;
    padding: 0.75rem 1rem;
    font-size: 0.82rem;
    margin-top: 0.75rem;
    text-align: center;
}

/* --- Confirmation --- */
.res-confirmation {
    text-align: center;
    padding-top: 2.5rem;
}

.res-confirm-icon {
    width: 56px; height: 56px;
    background: #e8f5e9;
    color: #2e7d32;
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.res-confirm-details {
    background: #f8f8f8;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin: 1rem 0 1.5rem;
    text-align: left;
}

.res-confirm-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.35rem 0;
    font-size: 0.9rem;
    color: #333;
}

.res-confirm-code {
    justify-content: center;
    font-size: 0.85rem;
    color: #777;
    font-family: monospace;
    letter-spacing: 0.05em;
    padding-top: 0.5rem;
    border-top: 1px solid #eee;
}

.res-confirm-total {
    font-weight: 700;
    font-size: 1.1rem;
    color: #111;
    padding-top: 0.5rem;
    border-top: 1px solid #eee;
}

/* ---  Responsive --- */
@media (max-width: 520px) {
    .reservation-modal-content {
        padding: 1.5rem 1.25rem 1.25rem;
    }

    .res-dates-row {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) minmax(0, 0.8fr);
        align-items: start;
        gap: 0 0.5rem;
    }

    .res-date-label {
        font-size: clamp(0.62rem, 2.2vw, 0.7rem);
        letter-spacing: 0.03em;
    }

    .res-date-value {
        font-size: clamp(0.82rem, 2.8vw, 0.95rem);
        line-height: 1.25;
        white-space: nowrap;
    }

    .res-date-arrow {
        padding-top: 0.85rem;
    }

    .res-nights-block {
        margin-left: 0;
        align-items: flex-start;
        gap: 0;
    }

    .res-nights-block .res-date-value {
        text-align: left;
    }

    .res-guests-compact .res-guests-inline {
        /* Mobile: dorośli + dzieci w jednej linii (dwie kolumny), bez etykiety. */
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
        gap: 0.4rem;
    }

    .res-guests-compact .res-guests-inline-label {
        display: none;
    }

    .res-guests-inline-counter {
        width: 100%;
        justify-content: space-between;
    }

    .res-inline-type {
        min-width: 0;
        flex: 1;
        text-align: center;
        font-size: 0.7rem;
    }

    /* Ciaśniejsze liczniki w 2 kolumnach — przyciski mniejsze, mniejszy padding,
       żeby "dorośli/dzieci" + przyciski zmieściły się w jednej linii na mobile. */
    .res-guests-compact .res-guests-inline-counter {
        padding: 0.1rem 0.25rem;
        gap: 0.15rem;
    }
    .res-guests-compact .res-guests-inline-counter .res-counter-plus,
    .res-guests-compact .res-guests-inline-counter .res-counter-minus {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .res-fields-row {
        flex-direction: column;
        gap: 0.75rem;
    }

    .res-fields-grid-contact {
        grid-template-columns: 1fr;
    }

    .res-field-small {
        max-width: none;
    }

    .res-option {
        flex-wrap: wrap;
    }

    .res-option-price,
    .res-option-price-wrap {
        margin-left: auto;
    }
}

/* ===  AUTH MODAL (OTP login) === */

.auth-subtitle {
    font-family: var(--font-liquid, 'Manrope', sans-serif);
    font-size: 0.88rem;
    color: #666;
    line-height: 1.5;
    margin: 0.25rem 0 0.5rem;
}

.auth-expiry {
    font-size: 0.78rem;
    color: #999;
    margin: 0 0 1.25rem;
}

.auth-code-inputs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.auth-code-inputs input {
    width: 46px;
    height: 54px;
    text-align: center;
    font-family: var(--font-liquid, 'Manrope', sans-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: #111;
    border: 2px solid #ddd;
    border-radius: 10px;
    background: #fafafa;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    caret-color: transparent;
}

.auth-code-inputs input:focus {
    border-color: var(--marketing-navy, #0F172A);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.08);
}

.auth-code-inputs input:not(:placeholder-shown),
.auth-code-inputs input[value]:not([value=""]) {
    background: #fff;
}

.auth-resend-btn {
    display: block;
    width: 100%;
    background: none;
    border: none;
    font-family: var(--font-liquid, 'Manrope', sans-serif);
    font-size: 0.82rem;
    color: var(--marine-blue, #1E3A8A);
    font-weight: 600;
    padding: 0.6rem 0;
    margin-top: 0.5rem;
    cursor: pointer;
    transition: opacity 0.2s;
}

.auth-resend-btn:disabled {
    color: #aaa;
    cursor: default;
}

.auth-resend-btn:not(:disabled):hover {
    opacity: 0.7;
}

.auth-code-step .res-field-error {
    display: block;
    margin-bottom: 0.75rem;
}

@media (max-width: 400px) {
    .auth-code-inputs {
        gap: 0.35rem;
    }
    .auth-code-inputs input {
        width: 40px;
        height: 48px;
        font-size: 1.2rem;
    }
}

/* ===== AUTH — wybór kanału (email / SMS) ===== */

.auth-channels {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.25rem 0;
}

.auth-channel-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 1rem 1.25rem;
    background: #fff;
    border: 2px solid var(--sand-dark, #E5E7EB);
    border-radius: 10px;
    cursor: pointer;
    text-align: left;
    transition: all 0.18s ease;
    font-family: var(--font-liquid, 'Manrope', sans-serif);
}

.auth-channel-btn:hover {
    border-color: var(--marine-blue, #1E3A8A);
    background: #EFF6FF;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(30, 58, 138, 0.1);
}

.auth-channel-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.auth-channel-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.auth-channel-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--charcoal, #111827);
}

.auth-channel-hint {
    font-size: 0.8rem;
    color: var(--charcoal-light, #4B5563);
}

/* ===== AUTH — brak konta ===== */

.auth-no-account {
    text-align: center;
    padding: 1.5rem 0 1rem;
}

.auth-no-account-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.auth-no-account p {
    font-size: 0.92rem;
    color: var(--charcoal-light, #4B5563);
    line-height: 1.6;
    margin: 0;
}

.auth-no-account a {
    color: var(--marine-blue, #1E3A8A);
    text-decoration: none;
    font-weight: 600;
}

.auth-no-account a:hover {
    text-decoration: underline;
}

/* ===== AUTH — przycisk wstecz ===== */

.auth-back-btn {
    display: block;
    width: 100%;
    margin-top: 0.75rem;
    padding: 0.5rem;
    background: none;
    border: none;
    font-family: var(--font-liquid, 'Manrope', sans-serif);
    font-size: 0.82rem;
    color: var(--charcoal-light, #4B5563);
    cursor: pointer;
    text-align: center;
    transition: color 0.2s;
}

.auth-back-btn:hover {
    color: var(--charcoal, #111827);
}
