/* /Components/BottomNav.razor.rz.scp.css */
/* === CONTAINER === */
.bottom-nav[b-lk8h30qw0q] {
    position: fixed;
    bottom: 12px;
    left: 12px;
    right: 12px;
    height: 68px;

    display: flex;
    align-items: center;
    justify-content: space-around;

    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    border-radius: 20px;

    box-shadow:
            0 20px 40px rgba(0,0,0,0.08),
            inset 0 1px 0 rgba(255,255,255,0.6);

    z-index: 1000;
}

/* === LINKS === */
.bottom-nav .nav-link[b-lk8h30qw0q] {
    flex: 1;
    height: 100%;
    text-decoration: none;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: .2px;

    color: #9ca3af;

    transition: all .18s ease;
}

/* === ICONS === */
.bottom-nav .nav-link i[b-lk8h30qw0q] {
    font-size: 24px;
    margin-bottom: 2px;
    transition: transform .2s ease;
}

/* === ACTIVE TAB === */
.bottom-nav .nav-link.active[b-lk8h30qw0q] {
    color: #065f46;
}

.bottom-nav .nav-link.active i[b-lk8h30qw0q] {
    transform: translateY(-2px) scale(1.05);
    color: #065f46;
}

/* === FAB CENTER CONTAINER === */
.bottom-nav .fab-center[b-lk8h30qw0q] {
    position: relative;
    flex: 1;
}

/* === FAB BUTTON === */
.fab-circle[b-lk8h30qw0q] {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);

    width: 64px;
    height: 64px;

    background: linear-gradient(135deg, #15803d, #34d399);

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow:
            0 14px 30px rgba(0,0,0,0.25),
            inset 0 4px 12px rgba(255,255,255,0.35);
}

/* === FAB ICON === */
.fab-circle i[b-lk8h30qw0q] {
    font-size: 36px;
    color: white;
}

/* === ACTIVE EFFECT ON PRESS === */
.fab-circle:active[b-lk8h30qw0q] {
    transform: translateX(-50%) scale(0.95);
    box-shadow:
            0 8px 18px rgba(0,0,0,0.25);
}
/* /Components/ProductsListBlocks.razor.rz.scp.css */
.load-more-wrapper[b-gd3ejwrrcn] {
    display: flex;
    justify-content: center;
    margin: 24px 0 100px;
}

.load-more-btn[b-gd3ejwrrcn] {
    background: #1a73e8;
    color: white;
    border: none;
    padding: 12px 28px;
    font-size: 16px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(26, 115, 232, 0.25);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease-in-out;
}

.load-more-btn:hover[b-gd3ejwrrcn] {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(26, 115, 232, 0.35);
}

.load-more-btn:disabled[b-gd3ejwrrcn] {
    opacity: 0.7;
    cursor: not-allowed;
}
.loading-text[b-gd3ejwrrcn] {
    animation: pulse-b-gd3ejwrrcn 1.2s infinite;
    font-weight: 600;
    color: #4CAF50;
}

@keyframes pulse-b-gd3ejwrrcn {
    0% { opacity: 0.3 }
    50% { opacity: 1 }
    100% { opacity: 0.3 }
}

.spinner[b-gd3ejwrrcn] {
    width: 18px;
    height: 18px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin-b-gd3ejwrrcn 0.8s linear infinite;
}

@keyframes spin-b-gd3ejwrrcn {
    to { transform: rotate(360deg); }
}
/* /Components/TopBar.razor.rz.scp.css */
/* Kontener top bara */
.top-bar-container[b-ba62ioe6xd] {
    position: sticky;
    top: 0;
    z-index: 999;

    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    box-shadow:
            0 10px 30px rgba(0, 0, 0, 0.05),
            inset 0 -1px 0 rgba(255, 255, 255, 0.5);

    transition: transform 0.35s cubic-bezier(.4,0,.2,1);
}

/* Ukrywanie animowane */
.top-bar-hidden[b-ba62ioe6xd] {
    transform: translateY(-110%);
}

/* Wewnętrzny pasek */
.top-bar[b-ba62ioe6xd] {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Nowość */
    height: 72px;
    padding: 0 16px;
    gap: 14px;
}


/* Search */
.search-container[b-ba62ioe6xd] {
    flex: 1;
    max-width: 760px;
    display: flex;
    align-items: center;

    background: rgba(255,255,255,0.8);
    border-radius: 20px;
    padding: 12px 18px;

    border: 1px solid rgba(0,0,0,0.06);

    box-shadow:
            0 6px 20px rgba(0, 0, 0, 0.06),
            inset 0 1px 0 rgba(255,255,255,0.6);

    transition:
            box-shadow .3s ease,
            border-color .3s ease,
            transform .15s ease;
}

.search-container:focus-within[b-ba62ioe6xd] {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.search-container input[type="text"][b-ba62ioe6xd] {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: 500;
    background: transparent;
    color: #1f2937;
}

.search-container[b-ba62ioe6xd]::placeholder {
    color: #9ca3af;
}

.search-icon[b-ba62ioe6xd] {
    font-size: 22px;
    color: #0f766e;
}

/* Filtry */
.filters-container[b-ba62ioe6xd] {
    display: flex;
    gap: 10px;
    padding: 10px 16px 14px;
    overflow-x: auto;

    scrollbar-width: none;
    transition:
            max-height .35s ease,
            opacity .35s ease,
            transform .35s ease;
    max-height: 120px; /* normalna wysokość */
    opacity: 1;
    transform: translateY(0);
}

.filters-container.hide[b-ba62ioe6xd] {
    max-height: 0;
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
}
.filters-button-container[b-ba62ioe6xd] {
    display: flex;
    align-items: center;
    margin-left: 12px;
}

.filters-container[b-ba62ioe6xd]::-webkit-scrollbar {
    display: none;
}

.filter-chip[b-ba62ioe6xd] {
    flex-shrink: 0;

    padding: 8px 16px;
    border-radius: 999px;

    font-size: 14px;
    font-weight: 600;
    letter-spacing: .2px;

    background: rgba(255,255,255,0.75);
    border: 1px solid rgba(0,0,0,0.05);

    color: #065f46;

    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    transition: transform .15s ease, box-shadow .15s ease;
}

.filter-chip:active[b-ba62ioe6xd] {
    transform: scale(0.96);
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.filter-toggle[b-ba62ioe6xd] {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;

    background: rgba(255,255,255,0.8);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;

    cursor: pointer;
    transition: 0.25s ease;
    box-shadow:
            0 4px 14px rgba(0,0,0,0.08),
            inset 0 1px 0 rgba(255,255,255,0.4);
}

.filter-toggle:hover[b-ba62ioe6xd] {
    transform: translateY(-1px);
    box-shadow:
            0 8px 20px rgba(0,0,0,0.12),
            inset 0 1px 0 rgba(255,255,255,0.6);
}
.filter-toggle i[b-ba62ioe6xd] {
    font-size: 22px;
    color: #0f766e;
}

.filter-panel[b-ba62ioe6xd] {
    max-height: 0;
    overflow: hidden;

    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(14px);

    margin-top: 14px;
    padding: 0 18px;

    border-radius: 22px;
    border: 1px solid rgba(0,0,0,0.05);

    box-shadow:
            0 8px 24px rgba(0,0,0,0.08),
            inset 0 1px 0 rgba(255,255,255,0.5);

    opacity: 0;
    transition: all 0.35s ease;
}

.filter-panel.open[b-ba62ioe6xd] {
    padding: 22px 18px;
    max-height: 600px;
    opacity: 1;
}

.filter-row[b-ba62ioe6xd] {
    display: flex;
    flex-direction: column;
    margin-bottom: 14px;
}

.filter-row label[b-ba62ioe6xd] {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
}

.price-row[b-ba62ioe6xd] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.filter-row input[b-ba62ioe6xd] {
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.1);
    background: rgba(255,255,255,0.9);

    box-shadow:
            inset 0 1px 1px rgba(0,0,0,0.04);

    transition: 0.2s;
}
.filter-row input:focus[b-ba62ioe6xd] {
    outline: none;
    border-color: #0f766e;
    box-shadow:
            0 0 0 4px rgba(15,118,110,0.15);
}
.filter-switches[b-ba62ioe6xd] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 10px 0 14px;
}

/* Nowoczesne switche */
.switch[b-ba62ioe6xd] {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.switch input[b-ba62ioe6xd] {
    display: none;
}

.switch .slider[b-ba62ioe6xd] {
    width: 42px;
    height: 24px;
    background: #ddd;
    border-radius: 20px;
    position: relative;
    transition: .2s;
}

.switch .slider[b-ba62ioe6xd]::after {
    content: "";
    width: 18px;
    height: 18px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
    transition: .2s;
}

.switch input:checked + .slider[b-ba62ioe6xd] {
    background: #4CAF50;
}

.switch input:checked + .slider[b-ba62ioe6xd]::after {
    transform: translateX(18px);
}

.filter-actions[b-ba62ioe6xd] {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.btn-reset[b-ba62ioe6xd] {
    flex: 1;
    background: #f3f4f6;
    border: none;
    padding: 12px;
    border-radius: 14px;
    font-weight: 600;
    transition: .2s;
}

.btn-reset:hover[b-ba62ioe6xd] {
    background: #e5e7eb;
}

.btn-apply[b-ba62ioe6xd] {
    flex: 1;
    background: linear-gradient(135deg, #0f766e, #0d8f81);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 14px;
    font-weight: 600;
    transition: .2s;
}

.btn-apply:hover[b-ba62ioe6xd] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

/* /Layout/BackLayout.razor.rz.scp.css */
.back-header[b-x941rmhyfx] {
    position: sticky;
    top: 0;
    height: 64px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.back-btn[b-x941rmhyfx] {
    border: none;
    background: rgba(0,0,0,0.03);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-size: 16px;
    font-weight: 600;
    color: #222;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: none;
}

.back-btn i[b-x941rmhyfx] {
    font-size: 20px;
    line-height: 1;
}

.back-btn:hover[b-x941rmhyfx] {
    background: rgba(0,0,0,0.06);
    transform: translateY(-1px);
}

.back-btn:active[b-x941rmhyfx] {
    transform: scale(0.97);
    background: rgba(0,0,0,0.1);
}

.page-body[b-x941rmhyfx] {
    display: flex;
    flex-direction: column;
    overflow: visible; /* lub usuń w ogóle overflow */
    height: auto;  /* scroll tylko wewnątrz chat-messages */
    padding: 0;
}

/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-wqs53fze4r] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-wqs53fze4r] {
    flex: 1;
}

.sidebar[b-wqs53fze4r] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}
.pwa-install-popup[b-wqs53fze4r] {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(30,30,30,0.85);
    color: #fff;
    padding: 16px 22px;
    border-radius: 18px;
    backdrop-filter: blur(12px);
    animation: fadeInUp-b-wqs53fze4r 0.4s ease;
}

.pwa-install-popup button[b-wqs53fze4r] {
    margin-top: 10px;
    background: #4CAF50;
    border: none;
    padding: 10px 16px;
    border-radius: 12px;
    color: white;
    cursor: pointer;
}

@keyframes fadeInUp-b-wqs53fze4r {
    from { opacity: 0; transform: translate(-50%, 20px); }
    to   { opacity: 1; transform: translate(-50%, 0); }
}

.top-row[b-wqs53fze4r] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-wqs53fze4r]  a, .top-row[b-wqs53fze4r]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-wqs53fze4r]  a:hover, .top-row[b-wqs53fze4r]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-wqs53fze4r]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-wqs53fze4r] {
        justify-content: space-between;
    }

    .top-row[b-wqs53fze4r]  a, .top-row[b-wqs53fze4r]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-wqs53fze4r] {
        flex-direction: row;
    }

    .sidebar[b-wqs53fze4r] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-wqs53fze4r] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-wqs53fze4r]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-wqs53fze4r], article[b-wqs53fze4r] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-9tfgedndc3] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-9tfgedndc3] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-9tfgedndc3] {
    font-size: 1.1rem;
}

.bi[b-9tfgedndc3] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-9tfgedndc3] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-9tfgedndc3] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-9tfgedndc3] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-9tfgedndc3] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-9tfgedndc3] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-9tfgedndc3] {
        padding-bottom: 1rem;
    }

    .nav-item[b-9tfgedndc3]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-9tfgedndc3]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-9tfgedndc3]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-9tfgedndc3] {
        display: none;
    }

    .collapse[b-9tfgedndc3] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
    
    .nav-scrollable[b-9tfgedndc3] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Layout/WhiteLayout.razor.rz.scp.css */

.page-body[b-ibolnvt3tb] {
    height: 100vh; /* 64px to wysokość back-header */
    display: flex;
    flex-direction: column;
    overflow: hidden; /* scroll tylko wewnątrz chat-messages */
    padding: 0;
}

/* /Pages/AddProduct.razor.rz.scp.css */
html[b-choq6xiquu], body[b-choq6xiquu] {
    height: 100%;
    overflow-x: hidden;  /* blokujemy poziome przewijanie */
    overflow-y: auto;
}

/* WRAPPER */
.add-product-wrapper[b-choq6xiquu] {
    max-width: 600px;
    margin: 0 auto;
    padding: 32px 20px 0; /* górny + boczne paddingi, dolny padding usuń, użyj scrollable */
    box-sizing: border-box;
    height: calc(100vh - 70px); /* wysokość okna minus publish-bar */
    display: flex;
    flex-direction: column;
}



.scrollable-content[b-choq6xiquu] {
    overflow-y: auto;
    padding-bottom: 32px; /* żeby content nie był schowany pod publish-bar */
}

/* IMAGE UPLOAD */
.image-upload-section[b-choq6xiquu] {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    overflow-x: auto; /* poziome przewijanie */
    margin-bottom: 32px;
    padding: 0 10px;
    -webkit-overflow-scrolling: touch; /* płynne przewijanie na mobile */
}

.image-upload-card[b-choq6xiquu] {
    position: relative;
    width: 160px;
    height: 160px;
    border-radius: 28px;
    background: rgba(0,0,0,0.04);
    border: 1px dashed rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
    flex-shrink: 0;
    transition: all .2s ease;
}

.image-upload-card img[b-choq6xiquu] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
}

.remove-btn[b-choq6xiquu] {
    position: absolute;
    top: 4px;
    right: 4px;
    background: rgba(0,0,0,0.5);
    border: none;
    border-radius: 50%;
    color: white;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s ease;
}

.remove-btn:hover[b-choq6xiquu] {
    background: rgba(255,0,0,0.8);
}


.image-upload-card:hover[b-choq6xiquu] {
    transform: scale(1.03);
    background: rgba(0,0,0,0.06);
}

.image-upload-inner[b-choq6xiquu] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #444;
    font-weight: 600;
}

.image-upload-inner i[b-choq6xiquu] {
    font-size: 36px;
}

/* FORM CARD */
.form-card[b-choq6xiquu] {
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 32px;
    padding: 28px 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    margin: 0 auto;
    max-width: 900px;
}

/* GROUP */
.form-group[b-choq6xiquu] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 26px;
}

.form-group label[b-choq6xiquu] {
    font-size: 13px;
    font-weight: 700;
    color: #111;
    letter-spacing: -0.01em;
}

/* INPUTS */
.form-group input[b-choq6xiquu],
.form-group textarea[b-choq6xiquu] {
    border: none;
    border-radius: 18px;
    padding: 16px 16px;
    font-size: 15px;
    background: rgba(0,0,0,0.04);
    outline: none;
    transition: all .15s ease;
    font-family: inherit;
}

.form-group input:focus[b-choq6xiquu],
.form-group textarea:focus[b-choq6xiquu] {
    background: rgba(0,0,0,0.07);
    transform: scale(1.01);
}

/* PRICE */
.price-input[b-choq6xiquu] {
    display: flex;
    align-items: center;
    background: rgba(0,0,0,0.04);
    border-radius: 18px;
    padding-right: 16px;
}

.price-input input[b-choq6xiquu] {
    flex: 1;
    background: transparent;
}

.price-input span[b-choq6xiquu] {
    font-weight: 700;
    color: #222;
}

/* BOTTOM BAR */
.publish-bar[b-choq6xiquu] {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 76px; /* dokładna wysokość paska */
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(20px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* PUBLISH BUTTON */
.publish-btn[b-choq6xiquu] {
    width: 100%;
    max-width: 720px;
    height: 58px;
    border-radius: 999px;
    border: none;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;

    background: linear-gradient(135deg, #007aff, #0051ff);
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    box-shadow: 0 22px 50px rgba(0,81,255,0.45);
    transition: all .2s ease;
    margin-left: 40px;
    margin-right: 40px;
}

.publish-btn i[b-choq6xiquu] {
    font-size: 22px;
}


.publish-btn:hover[b-choq6xiquu] {
    transform: translateY(-2px) scale(1.01);
}

.publish-btn:active[b-choq6xiquu] {
    transform: translateY(1px) scale(0.98);
}
.progress-overlay[b-choq6xiquu] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.progress-card[b-choq6xiquu] {
    background: white;
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    width: 300px;
}

.progress-bar-wrapper[b-choq6xiquu] {
    width: 100%;
    height: 16px;
    background: rgba(0,0,0,0.1);
    border-radius: 12px;
    margin: 16px 0;
    overflow: hidden;
}
/* BOX OCHRONA ZAKUPÓW */
.protection-box[b-choq6xiquu] {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 28px;
    padding: 12px 16px;
    margin-bottom: 16px;
    justify-content: center;
}

.protection-box i[b-choq6xiquu] {
    font-size: 24px;
    color: #007aff;
}

.protection-box span[b-choq6xiquu] {
    font-weight: 700;
    color: #111;
    font-size: 15px;
}

.progress-bar[b-choq6xiquu] {
    height: 100%;
    background: linear-gradient(135deg, #007aff, #0051ff);
    border-radius: 12px 0 0 12px;
    transition: width 0.2s ease;
}
.locker-selection-mobile[b-choq6xiquu] {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.locker-selection-mobile h3[b-choq6xiquu] {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.locker-card-mobile[b-choq6xiquu] {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: 20px;
    background: rgba(0,0,0,0.03);
    transition: all 0.2s ease;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.locker-card-mobile .locker-icon[b-choq6xiquu] {
    flex-shrink: 0;
    font-size: 28px;
    color: #007aff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 122, 255, 0.06);
    transition: transform 0.5s ease, background 0.5s ease;
}

.locker-card-mobile .locker-info[b-choq6xiquu] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.locker-card-mobile .locker-name[b-choq6xiquu] {
    font-weight: 700;
    font-size: 15px;
}

.locker-card-mobile .locker-size[b-choq6xiquu] {
    font-size: 13px;
    color: #555;
}

.locker-card-mobile .locker-price[b-choq6xiquu] {
    font-weight: 600;
    color: #222;
}

.locker-card-mobile:hover .locker-icon[b-choq6xiquu] {
    transform: scale(1.1);
}

.locker-card-mobile.selected[b-choq6xiquu] {
    color: white;
    border: 2px solid rgba(47, 87, 112, 0.51);
}

.locker-card-mobile.selected .locker-icon[b-choq6xiquu] {
    color: dodgerblue;
    transform: scale(1.15);
}

.selected-text[b-choq6xiquu] {
    font-size: 14px;
    margin-top: 8px;
    font-weight: 600;
    color: #007aff;
}


.locker-card input[type="radio"][b-choq6xiquu] {
    display: none;
}

.locker-card input[type="radio"]:checked + .locker-content[b-choq6xiquu] {
    border: 2px solid #0051ff;
    box-shadow: 0 8px 20px rgba(0,81,255,0.25);
    border-radius: 20px;
}

.locker-content[b-choq6xiquu] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
    padding: 10px 6px;
    width: 100%;
    transition: all .2s ease;
}

.locker-name[b-choq6xiquu] {
    font-size: 18px;
    font-weight: 800;
    color: #007aff;
}

.locker-size[b-choq6xiquu] {
    font-size: 14px;
    font-weight: 500;
    color: #444;
}

.locker-price[b-choq6xiquu] {
    font-size: 15px;
    font-weight: 700;
    color: #222;
}




/* MOBILE */
@media (min-width: 200px) {
    .add-product-wrapper[b-choq6xiquu] {
        width: 100%;
        padding: 20px 16px 120px; /* zachowujemy marginesy po bokach */
    }

    .form-card[b-choq6xiquu] {
        width: 100%; /* zajmuje całą szerokość wrappera */
        padding: 24px 16px;
        border-radius: 22px;
    }

    .image-upload-section[b-choq6xiquu] {
        gap: 12px;
        padding: 0 16px;
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .image-upload-card[b-choq6xiquu] {
        width: calc(50% - 8px);
        height: 140px;
    }

    .locker-selection h3[b-choq6xiquu] {
        font-size: 16px;
        font-weight: 700;
        color: #111;
        margin-bottom: 12px;
        text-align: center;
    }

    .locker-options[b-choq6xiquu] {
        display: flex;
        gap: 12px;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
    }

    .locker-card[b-choq6xiquu] {
        flex: 0 0 160px;
        background: rgba(255,255,255,0.65);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-radius: 24px;
        padding: 16px;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border: 2px solid transparent;
        transition: all .2s ease;
        user-select: none;
    }

    .locker-card:active[b-choq6xiquu] {
        transform: scale(0.98);
        border-color: #007aff;
    }

    .locker-card input[type="radio"][b-choq6xiquu] {
        display: none;
    }

    .locker-card input[type="radio"]:checked + .locker-content[b-choq6xiquu] {
        border: 2px solid #0051ff;
        box-shadow: 0 8px 20px rgba(0,81,255,0.25);
        border-radius: 20px;
    }

    .locker-content[b-choq6xiquu] {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        text-align: center;
        padding: 8px;
        width: 100%;
        transition: all .2s ease;
    }

    .locker-name[b-choq6xiquu] {
        font-size: 18px;
        font-weight: 800;
        color: #007aff;
    }

    .locker-size[b-choq6xiquu] {
        font-size: 14px;
        font-weight: 500;
        color: #444;
    }

    .locker-price[b-choq6xiquu] {
        font-size: 15px;
        font-weight: 700;
        color: #222;
    }

    .locker-content i[b-choq6xiquu] {
        font-size: 32px;
        color: #007aff;
    }
}
/* /Pages/Chat.razor.rz.scp.css */
/* shell */
.chat-shell[b-87o44c069e] {
    height: var(--app-height);
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #e9f1fb 0%, #f7fbff 100%);
    font-family: Inter, "Helvetica Neue", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}
/* floating notification */
.floating-notification[b-87o44c069e] {
    position: fixed;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 60;
    pointer-events: none;
}

i[b-87o44c069e]
{
    display: block;
}


.dropdown-wrapper[b-87o44c069e] { position: relative; }

.dropdown-menu[b-87o44c069e] {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(14px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    min-width: 180px;
    z-index: 70;
    padding: 4px 0;
    animation: dropdownFadeIn-b-87o44c069e 0.18s ease forwards;
}

.dropdown-item[b-87o44c069e] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #111;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background 0.15s ease;
}

.dropdown-item i[b-87o44c069e] {
    font-size: 20px;
    color: #007aff;
}

.dropdown-item:hover[b-87o44c069e] {
    background: rgba(0, 122, 255, 0.08);
}

@keyframes dropdownFadeIn-b-87o44c069e {
    from { transform: translateY(-6px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* mobile tweak */
@media (max-width: 420px) {
    .dropdown-menu[b-87o44c069e] { min-width: 140px; }
    .dropdown-item[b-87o44c069e] { font-size: 13px; padding: 8px 14px; }
}

.floating-notification .pill[b-87o44c069e] {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg,#00a3ff,#0066ff);
    color: #fff;
    padding: 8px 14px;
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(3,30,66,0.12);
    font-weight: 600;
    animation: popIn-b-87o44c069e 0.28s ease;
}
@keyframes popIn-b-87o44c069e { from { transform: translate(-50%,-12px) scale(.96); opacity:0 } to { transform: translate(-50%,0) scale(1); opacity:1 } }

/* header */
.chat-header.pro[b-87o44c069e] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(6px);
    box-shadow: 0 6px 18px rgba(20,40,80,0.06);
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    position: sticky;
    top: 0;
    z-index: 50;
}
.chat-header .btn-back[b-87o44c069e] {
    background: none;
    border: none;
    padding: 6px;
    margin-right: 4px;
    border-radius: 10px;
    display: flex;
    align-items: center;
}
.chat-header .btn-back i[b-87o44c069e] { font-size: 22px; color: #222; }
.chat-meta[b-87o44c069e] { display:flex; align-items:center; gap:12px; flex:1; margin-left:6px; }
.prod-img[b-87o44c069e] {
    width:48px; height:48px; border-radius:12px; object-fit:cover;
    box-shadow: 0 6px 16px rgba(6,24,63,0.12);
    border: 2px solid rgba(255,255,255,0.6);
}
.meta-text[b-87o44c069e] { display:flex; flex-direction:column; }
.meta-title[b-87o44c069e] { font-weight:700; font-size:15px; color:#111; line-height:1.05; }
.meta-sub[b-87o44c069e] { font-size:13px; color:#6b7280; margin-top:2px; }

/* actions */
.header-actions[b-87o44c069e] { display:flex; gap:6px; align-items:center; }
.icon-btn[b-87o44c069e] { background:transparent; border:none; padding:8px; border-radius:10px; color:#334155; }
.icon-btn:hover[b-87o44c069e] { background: rgba(6,30,63,0.04); transform: translateY(-1px); }

/* messages area */
.chat-messages[b-87o44c069e] {
    flex:1;
    overflow-y:auto;
    padding: 18px 14px;
    display:flex;
    flex-direction:column;
    gap:10px;
    -webkit-overflow-scrolling: touch;
}

/* message rows */
.message-row[b-87o44c069e] { display:flex; gap:10px; align-items:flex-end; }
.message-row.other[b-87o44c069e] { justify-content:flex-start; }
.message-row.mine[b-87o44c069e] { justify-content:flex-end; }

/* avatars */
.avatar[b-87o44c069e] {
    width:36px; height:36px; border-radius:10px; display:flex; align-items:center; justify-content:center;
    background: linear-gradient(180deg,#eef2ff,#e2e8f0);
    color:#0b3b82; font-weight:700; font-size:14px;
    box-shadow: 0 4px 12px rgba(4,18,59,0.07);
}
.avatar.mine[b-87o44c069e] { background: linear-gradient(180deg,#cfe9ff,#a6d8ff); color:#003a66; }

/* bubble wrap */
.message-wrap[b-87o44c069e] { max-width:72%; display:flex; flex-direction:column; gap:6px; align-items: flex-start; }

/* image bubble */
.image-bubble[b-87o44c069e] {
    border-radius:14px;
    overflow:hidden;
    box-shadow: 0 8px 30px rgba(8,24,48,0.12);
    cursor: pointer;
    animation: liftIn-b-87o44c069e .26s ease;
}
.image-bubble img[b-87o44c069e] { display:block; width:220px; height:160px; object-fit:cover; }

/* text bubble */
.text-bubble[b-87o44c069e] {
    padding: 10px 14px;
    border-radius: 16px;
    position: relative;
    font-size: 15px;
    line-height: 1.25;
    animation: slideUpFade-b-87o44c069e .28s ease;
    box-shadow: 0 6px 18px rgba(6,30,63,0.06);
}
.message-row.other .text-bubble[b-87o44c069e] {
    background: linear-gradient(180deg,#46536f,#3d4a63);
    color: white;
    border-bottom-left-radius: 4px;
}
.message-row.mine .text-bubble[b-87o44c069e] {
    background: linear-gradient(180deg,#00a3ff,#0066ff);
    color: white;
    border-bottom-right-radius: 4px;
}

/* meta/time */
.msg-meta[b-87o44c069e] { display:flex; justify-content:flex-end; margin-top:6px; }
.msg-meta .time[b-87o44c069e] { font-size:11px; color: rgba(255,255,255,0.85); opacity:0.9; }

/* small animations */
@keyframes slideUpFade-b-87o44c069e { from { transform: translateY(6px); opacity:0 } to { transform: translateY(0); opacity:1 } }
@keyframes liftIn-b-87o44c069e { from { transform: translateY(8px) scale(.98); opacity:0 } to { transform: translateY(0) scale(1); opacity:1 } }

/* input area */
.chat-input.pro[b-87o44c069e] {
    display:flex; align-items:center; gap:8px; padding:10px;
    background: linear-gradient(180deg,#ffffff,#fbfdff);
    box-shadow: 0 -10px 30px rgba(6,24,63,0.04);
    position: sticky; bottom:0; z-index:40;
}
.input-inner[b-87o44c069e] { display:flex; align-items:center; gap:8px; flex:1; }
.text-input[b-87o44c069e] {
    flex:1; padding:10px 12px; border-radius:14px; border:1px solid #e6eefc;
    background: linear-gradient(180deg,#fbfdff,#f8fbff); outline:none; font-size:15px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}

/* preview */
.preview[b-87o44c069e] { position:relative; width:56px; height:56px; border-radius:12px; overflow:hidden; }
.preview img[b-87o44c069e] { width:100%; height:100%; object-fit:cover; }
.preview .remove[b-87o44c069e] {
    position:absolute; top:-8px; right:-8px; background:#ff4d4f; color:white; border:none;
    width:26px; height:26px; border-radius:50%; font-weight:700; cursor:pointer; box-shadow:0 6px 14px rgba(0,0,0,0.12);
}

/* send button */
.send-btn[b-87o44c069e] {
    width:48px; height:48px; border-radius:50%; border:none; display:flex; align-items:center; justify-content:center;
    background: linear-gradient(135deg,#00b0ff,#0066ff); color:white; box-shadow: 0 8px 20px rgba(0,102,255,0.18);
    transition: transform .12s ease, box-shadow .12s ease; cursor:pointer;
}
.send-btn:active[b-87o44c069e] { transform: translateY(2px) scale(.98); }
.send-btn[disabled][b-87o44c069e] { opacity:0.55; cursor:not-allowed; transform:none; box-shadow:none; }

/* small responsive tweaks */
@media (max-width:420px) {
    .prod-img[b-87o44c069e] { width:44px; height:44px; }
    .text-bubble[b-87o44c069e] { font-size:14px; }
    .image-bubble img[b-87o44c069e] { width:180px; height:140px; }
    .preview[b-87o44c069e] { width:48px; height:48px; }
}
/* /Pages/ChatList.razor.rz.scp.css */
.chat-page[b-747o7u5ocv] {
    display: flex;
    flex-direction: column;
    height: 100vh;
    font-family: 'Inter', sans-serif;
}

/* HEADER */
.chat-header[b-747o7u5ocv] {
    padding: 16px 16px 12px;
    background: #fff;
    border-bottom: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: sticky;
    top: 0;
    z-index: 20;
}

.header-left h1[b-747o7u5ocv] {
    font-size: 26px;
    margin: 0;
    font-weight: 700;
    color: #111;
}

.sub[b-747o7u5ocv] {
    font-size: 14px;
    color: #666;
}

/* SEARCH */
.search[b-747o7u5ocv] {
    position: relative;
}

.search input[b-747o7u5ocv] {
    width: 100%;
    padding: 12px 44px 12px 16px;
    border-radius: 12px;
    border: none;
    background: #f0f2f5;
    font-size: 14px;
    outline: none;
    transition: all 0.2s;
}

.search input:focus[b-747o7u5ocv] {
    background: #fff;
    box-shadow: 0 0 0 2px rgba(0,122,255,0.2);
}

.search i[b-747o7u5ocv] {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #999;
}

/* CHAT LIST */
.chat-list-container[b-747o7u5ocv] {
    flex: 1;
    overflow-y: auto;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-list[b-747o7u5ocv] {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat-item[b-747o7u5ocv] {
    display: flex;
    gap: 12px;
    padding: 14px 16px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    align-items: center;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
}

.chat-item:hover[b-747o7u5ocv] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.chat-item.active[b-747o7u5ocv] {
    background: #e6f0ff;
    box-shadow: 0 4px 15px rgba(0,122,255,0.2);
}

.avatar[b-747o7u5ocv] {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.meta[b-747o7u5ocv] {
    flex: 1;
    min-width: 0;
}

.row[b-747o7u5ocv] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 6px;
}

.title[b-747o7u5ocv] {
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #111;
}

.subrow[b-747o7u5ocv] {
    margin-top: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 6px;
}

.last[b-747o7u5ocv] {
    font-size: 14px;
    color: #555;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}

/* SKELETON */
.skeleton-list[b-747o7u5ocv] {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 8px;
}

.skeleton-item[b-747o7u5ocv] {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 12px 16px;
    background: #f0f2f5;
    border-radius: 16px;
    animation: pulse-b-747o7u5ocv 1.5s infinite;
}

.skeleton-avatar[b-747o7u5ocv] {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
    background-size: 200% 100%;
}

.skeleton-lines[b-747o7u5ocv] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.skeleton-line[b-747o7u5ocv] {
    height: 12px;
    border-radius: 6px;
    background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
    background-size: 200% 100%;
}

.skeleton-line.short[b-747o7u5ocv] { width: 40%; }
.skeleton-line.long[b-747o7u5ocv] { width: 70%; }

@keyframes pulse-b-747o7u5ocv {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* EMPTY STATE */
.empty-state[b-747o7u5ocv] {
    text-align: center;
    padding: 100px 20px;
    color: #888;
}

.empty-state .big[b-747o7u5ocv] {
    font-size: 60px;
    color: #ccc;
}

/* NEW CHAT BUTTON */
.new-chat[b-747o7u5ocv] {
    position: fixed;
    right: 16px;
    bottom: 16px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg,#007aff,#0051ff);
    color: #fff;
    border: none;
    font-size: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.new-chat:hover[b-747o7u5ocv] {
    transform: scale(1.1);
    box-shadow: 0 12px 28px rgba(0,0,0,0.3);
}
/* /Pages/Checkout.razor.rz.scp.css */
/* --- ZMIENIONY STYL: LIGHT THEME & MOBILE-FIRST --- */

/* --- Podstawowe Kontenery --- */
.checkout-container[b-7fjntg5ikk] {
    width: 100%;
    /* Na telefonie pełna szerokość, padding tylko na boki */
    padding: 1rem 1rem;
    background: transparent; /* Zgodnie z prośbą, aby zgrywało się z Layout */
}

.checkout-content[b-7fjntg5ikk] {
    max-width: 1000px; /* Zmniejszenie max-width dla lepszego wyglądu na desktopie/tablecie */
    margin: 0 auto;
}
.checkout-sidebar[b-7fjntg5ikk] {
    position: relative;
}
/* --- Nagłówek --- */
.checkout-header[b-7fjntg5ikk] {
    text-align: center;
    margin-bottom: 2rem;
    animation: fadeInDown-b-7fjntg5ikk 0.6s ease-out;
}

.checkout-title[b-7fjntg5ikk] {
    font-size: 1.8rem; /* Mniejsze na mobile */
    font-weight: 700;
    color: #333333; /* Ciemny tekst na białym tle */
    margin-bottom: 0.25rem;
}

.checkout-subtitle[b-7fjntg5ikk] {
    font-size: 0.9rem;
    color: #666666; /* Szary tekst */
    font-weight: 400;
}

/* --- Grid Layout (Mobile-First: Domyślnie jedna kolumna) --- */
.checkout-grid[b-7fjntg5ikk] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
/* --- Karty Sekcji (Light Theme) --- */
.section-card[b-7fjntg5ikk] {
    background: #ffffff; /* Białe tło karty */
    border: 1px solid #e0e0e0; /* Delikatna ramka */
    border-radius: 16px;
    padding: 1.5rem; /* Mniejszy padding dla mobile */
    margin-bottom: 0; /* Usunięcie marginesu, bo jest gap w gridzie */
    margin-top: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); /* Subtelny cień */
}



.section-header[b-7fjntg5ikk] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.section-icon[b-7fjntg5ikk] {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    color: white;
}

.section-title[b-7fjntg5ikk] {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333333;
    margin: 0;
}

/* --- Produkt --- */
.product-display[b-7fjntg5ikk] {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.product-image-wrapper[b-7fjntg5ikk] {
    width: 95px;
    height: 95px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eaeaea;
}

.product-image[b-7fjntg5ikk] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-image-wrapper:hover .product-image[b-7fjntg5ikk] {
    transform: scale(1.05);
}

.product-details[b-7fjntg5ikk] {
    flex: 1;
}

.product-name[b-7fjntg5ikk] {
    font-size: 1.15rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.35rem;
}

.product-price-tag[b-7fjntg5ikk] {
    display: inline-flex;
    align-items: baseline;
    gap: 0.25rem;
    /* Zmiana: gradientowy tekst, a nie tło */
    background: none;
    padding: 0;
    border-radius: 0;
}

.price-amount[b-7fjntg5ikk] {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-currency[b-7fjntg5ikk] {
    font-size: 1rem;
    font-weight: 500;
    color: #666666;
}

/* --- Wysyłka/Input --- */
.shipping-description[b-7fjntg5ikk] {
    color: #666666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.input-label[b-7fjntg5ikk] {
    font-size: 0.85rem;
    font-weight: 500;
    color: #333333;
}

.input-icon[b-7fjntg5ikk] {
    color: #999999;
}

.input-field[b-7fjntg5ikk] {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 1rem; /* Mniejszy padding */
    background: #f5f5f5; /* Jasne tło pola */
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    color: #333333;
    font-size: 1rem;
}
.input-field[b-7fjntg5ikk]::placeholder {
    color: #aaaaaa;
}

.input-field:focus[b-7fjntg5ikk] {
    border-color: #667eea;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

.input-hint[b-7fjntg5ikk] {
    font-size: 0.75rem;
    color: #999999;
}

/* --- Podsumowanie --- */
.summary-card[b-7fjntg5ikk] {
    background: #ffffff;
    border: 1px solid #dedede;
    padding: 1.75rem;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.summary-title[b-7fjntg5ikk] {
    color: #333333;
}

.summary-item[b-7fjntg5ikk] {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}
.summary-content[b-7fjntg5ikk] {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.summary-label[b-7fjntg5ikk] {
    font-size: 0.9rem;
    color: #666666;
}

.summary-value[b-7fjntg5ikk] {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333333;
}

.summary-divider[b-7fjntg5ikk] {
    height: 1px;
    background: #e0e0e0;
    margin: 0.75rem 0;
}

.summary-total[b-7fjntg5ikk] {
    margin-top: 0.5rem;
    padding: 1rem;
    border-radius: 14px;
    border: 1px solid #e0e0ff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total-label[b-7fjntg5ikk] {
    font-size: 1rem;
    font-weight: 600;
    color: #333333;
}

.total-amount[b-7fjntg5ikk] {
    gap: 0.25rem;
}

.total-value[b-7fjntg5ikk] {
    font-size: 2rem !important;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.total-currency[b-7fjntg5ikk] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #666666;
}

/* --- Przycisk płatności --- */


.pay-button[b-7fjntg5ikk] {
    width: 100%;
    margin-top: 16px;
    background: black;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 18px;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;

    display: flex;
    align-items: center;
    justify-content: center; /* CENTROWANIE */
    gap: 8px; /* odstęp między ikoną a tekstem */
}
.pay-button i[b-7fjntg5ikk] {
    font-size: 22px;
    display: flex;
    align-items: center;
}

.pay-button:hover[b-7fjntg5ikk] {
    transform: translateY(-1px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.security-badge[b-7fjntg5ikk] {
    color: #999999;
    font-size: 0.75rem;
    
}

/* --- Animacje (pozostawione, ale dostosowane do light theme) --- */
@keyframes fadeInDown-b-7fjntg5ikk {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp-b-7fjntg5ikk {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Responsive (Desktop/Tablet) --- */
@media (min-width: 768px) {
    .checkout-container[b-7fjntg5ikk] {
        padding: 2rem 1rem;
    }

    .checkout-title[b-7fjntg5ikk] {
        font-size: 2.5rem;
    }

    .checkout-grid[b-7fjntg5ikk] {
        grid-template-columns: 1.6fr 1fr;
        gap: 2.5rem;
    }

    .section-card[b-7fjntg5ikk] {
        padding: 2rem;
    }

    .product-image-wrapper[b-7fjntg5ikk] {
        width: 120px;
        height: 120px;
    }

    .product-name[b-7fjntg5ikk] {
        font-size: 1.3rem;
    }

    .summary-card[b-7fjntg5ikk] {
        position: sticky;
        top: 2rem;
    }
}
/* /Pages/Konto.razor.rz.scp.css */
/* ====== TŁO STRONY ====== */
.account-page[b-wd3r28wdjp] {
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
    padding: 20px 16px 100px;
    color: #111;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    animation: pageFadeIn-b-wd3r28wdjp 0.5s ease forwards;
}

/* ANIMACJA WEJŚCIA STRONY */
@keyframes pageFadeIn-b-wd3r28wdjp {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ====== HEADER ====== */
.account-header[b-wd3r28wdjp] {
    background: linear-gradient(180deg, #ffffff, #f2f4f7);
    padding: 26px 20px;
    border-radius: 22px;
    margin-bottom: 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);

    animation: headerSlide-b-wd3r28wdjp 0.6s ease forwards;
}

@keyframes headerSlide-b-wd3r28wdjp {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.account-header h2[b-wd3r28wdjp] {
    font-size: 22px;
    margin: 0 0 4px;
    font-weight: 700;
    color: #111;
}

.account-header p[b-wd3r28wdjp] {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

/* ====== SEKCJE ====== */
.account-section[b-wd3r28wdjp] {
    margin-bottom: 32px;
    animation: sectionFade-b-wd3r28wdjp 0.7s ease forwards;
}

@keyframes sectionFade-b-wd3r28wdjp {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.account-section h3[b-wd3r28wdjp] {
    font-size: 12px;
    text-transform: uppercase;
    color: #9ca3af;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ====== LISTY ====== */
.account-options[b-wd3r28wdjp] {
    list-style: none;
    margin: 0;
    padding: 0;

    display: flex;
    flex-direction: column;
    gap: 10px;
}

.account-options li[b-wd3r28wdjp] {
    all: unset;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 17px 18px;
    border-radius: 18px;
    background: #ffffff;
    cursor: pointer;

    font-size: 16px;
    font-weight: 500;
    color: #111;

    box-shadow: 0 8px 22px rgba(0,0,0,0.05);

    -webkit-tap-highlight-color: transparent;

    transition: transform 0.1s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.account-options li:active[b-wd3r28wdjp] {
    transform: scale(0.98);
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    background: #f3f4f6;
}

/* IKONY */
.account-options li i[b-wd3r28wdjp] {
    font-size: 20px;
    color: #6c5cff; /* premium akcent */
}

/* ====== SECONDARY (Informacje) ====== */
.account-options.secondary li[b-wd3r28wdjp] {
    background: #f6f7f9;
    box-shadow: none;
    border: 1px solid #eceef2;
    color: #444;
}

.account-options.secondary li i[b-wd3r28wdjp] {
    color: #9ca3af;
}

/* === STABILNE FADE-IN (bez migania) === */
.account-page[b-wd3r28wdjp] {
    opacity: 0;
    transform: translateY(8px) scale(0.995);
    animation: softPageEnter-b-wd3r28wdjp .45s cubic-bezier(.2,.8,.2,1) forwards;
    will-change: opacity, transform;
}

@keyframes softPageEnter-b-wd3r28wdjp {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* HEADER */
.account-header[b-wd3r28wdjp] {
    opacity: 0;
    transform: translateY(10px);
    animation: softBlockIn-b-wd3r28wdjp .5s .05s cubic-bezier(.2,.8,.2,1) forwards;
}

.account-section[b-wd3r28wdjp] {
    opacity: 0;
    transform: translateY(10px);
    animation: softBlockIn-b-wd3r28wdjp .5s .1s cubic-bezier(.2,.8,.2,1) forwards;
}

@keyframes softBlockIn-b-wd3r28wdjp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* LISTY – wejście bez migania */
.account-options li[b-wd3r28wdjp] {
    opacity: 0;
    transform: translateY(6px);
    animation: softItem-b-wd3r28wdjp .4s cubic-bezier(.2,.8,.2,1) forwards;
    will-change: opacity, transform;
}

/* STAGGER – płynne opóźnienia */
.account-options li:nth-child(1)[b-wd3r28wdjp] { animation-delay: 0.1s; }
.account-options li:nth-child(2)[b-wd3r28wdjp] { animation-delay: 0.15s; }
.account-options li:nth-child(3)[b-wd3r28wdjp] { animation-delay: 0.2s; }
.account-options li:nth-child(4)[b-wd3r28wdjp] { animation-delay: 0.25s; }
.account-options li:nth-child(5)[b-wd3r28wdjp] { animation-delay: 0.3s; }

@keyframes softItem-b-wd3r28wdjp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* WZMACNIAMY interakcję jak Revolut */
.account-options li[b-wd3r28wdjp] {
    transition: transform .12s ease, box-shadow .15s ease, background .15s ease;
}

.account-options li:active[b-wd3r28wdjp] {
    transform: scale(0.985);
    background: #f2f4f7;
}

/* ====== BOX LOGOWANIA ====== */
.login-box[b-wd3r28wdjp] {
    background: linear-gradient(180deg, #ffffff, #f3f4f7);
    border-radius: 22px;
    padding: 26px 20px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    text-align: center;
    margin-bottom: 32px;

    animation: softBlockIn-b-wd3r28wdjp .5s cubic-bezier(.2,.8,.2,1) forwards;
}

.login-box i[b-wd3r28wdjp] {
    font-size: 32px;
    color: #6c5cff;
    margin-bottom: 10px;
}

.login-box h3[b-wd3r28wdjp] {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 700;
    color: #111;
}

.login-box p[b-wd3r28wdjp] {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 16px;
}

.login-box button[b-wd3r28wdjp] {
    width: 100%;
    border: none;
    border-radius: 16px;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    background: #6c5cff;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(108,92,255,0.3);

    transition: transform .12s ease, box-shadow .15s ease;
}

.login-box button:active[b-wd3r28wdjp] {
    transform: scale(0.98);
    box-shadow: 0 6px 18px rgba(108,92,255,0.3);
}
.wyloguj-button[b-wd3r28wdjp] {
    width: fit-content;
    margin-top: 16px;
    background: #9e3a3a;
    color: white;
    border: 1px solid white;
    padding: 15px;
    border-radius: 18px;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
    position: absolute;
    display: flex;
    align-items: center;
    left: 50%;
    justify-content: center; /* CENTROWANIE */
    gap: 8px; /* odstęp między ikoną a tekstem */
    transform: translate(-50%);
}
.wyloguj-button i[b-wd3r28wdjp] {
    font-size: 22px;
    display: flex;
    align-items: center;
}

.wyloguj-button:hover[b-wd3r28wdjp] {
    background: #6a2b2b;
}

/* /Pages/LoginRegister.razor.rz.scp.css */
/* FULLSCREEN BACKGROUND */
.auth-wrapper[b-v90pye9hag] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;

    background: radial-gradient(circle at top right, #dbeaff, #ffffff);
}

/* GLASS CARD */
.auth-card[b-v90pye9hag] {
    width: 100%;
    max-width: 420px;
    padding: 36px 30px;

    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border-radius: 36px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.08);
}

/* HEADER */
.auth-header[b-v90pye9hag] {
    text-align: center;
    margin-bottom: 26px;
}

.auth-header h1[b-v90pye9hag] {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 6px;
}

.auth-header p[b-v90pye9hag] {
    font-size: 14px;
    color: #666;
}

/* SWITCH */
.auth-switch[b-v90pye9hag] {
    display: flex;
    background: rgba(0,0,0,0.04);
    border-radius: 999px;
    padding: 4px;
    margin-bottom: 30px;
}

.tab[b-v90pye9hag] {
    flex: 1;
    border: none;
    font-weight: 700;
    padding: 14px 0;
    font-size: 14px;
    border-radius: 999px;
    cursor: pointer;
    background: transparent;
    color: #444;
    transition: all .15s ease;
}

.tab.active[b-v90pye9hag] {
    background: white;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    color: #000;
}

/* FORM */
.auth-form[b-v90pye9hag] {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* GROUP */
.form-group[b-v90pye9hag] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label[b-v90pye9hag] {
    font-size: 13px;
    font-weight: 700;
    color: #222;
}

/* INPUTS */
.form-group input[b-v90pye9hag] {
    border: none;
    background: rgba(0,0,0,0.04);
    padding: 16px 16px;
    border-radius: 18px;
    font-size: 15px;
    outline: none;
    transition: all .15s ease;
}

.form-group input:focus[b-v90pye9hag] {
    background: rgba(0,0,0,0.07);
    transform: scale(1.01);
}

/* BUTTON */
.auth-btn[b-v90pye9hag] {
    margin-top: 10px;
    border: none;
    border-radius: 999px;
    height: 56px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;

    background: linear-gradient(135deg, #007aff, #0051ff);
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    box-shadow: 0 20px 50px rgba(0,81,255,0.45);
    transition: all .15s ease;
}

.auth-btn i[b-v90pye9hag] {
    font-size: 22px;
}

.auth-btn:hover[b-v90pye9hag] {
    transform: translateY(-1px) scale(1.01);
}

.auth-btn:active[b-v90pye9hag] {
    transform: translateY(1px) scale(0.98);
}

/* REMEMBER ME */
.remember-row[b-v90pye9hag] {
    margin-top: 4px;
}

.remember-box[b-v90pye9hag] {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    user-select: none;
}

/* Ukrycie domyślnego checkboxa */
.remember-box input[b-v90pye9hag] {
    display: none;
}

/* Glass checkbox */
.checkmark[b-v90pye9hag] {
    width: 22px;
    height: 22px;
    border-radius: 7px;
    background: rgba(0,0,0,0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .15s ease;
}

.remember-me[b-v90pye9hag] {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
    font-size: 14px;
    font-weight: 700;
    color: #333;
}

.remember-me input[b-v90pye9hag] {
    display: none;
}

.checkmark[b-v90pye9hag] {
    width: 22px;
    height: 22px;
    border-radius: 7px;
    background: rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s ease;
}

.checkmark i[b-v90pye9hag] {
    font-size: 18px;
    color: #007aff;
    opacity: 0;
    transform: scale(0.3);
    transition: all .15s cubic-bezier(.2,.9,.2,1.2);
}

/* aktywny checkbox */
.remember-me input:checked + .checkmark[b-v90pye9hag] {
    background: rgba(0,122,255,0.12);
}

.remember-me input:checked + .checkmark i[b-v90pye9hag] {
    opacity: 1;
    transform: scale(1);
}

/* Active */
.remember-box input:checked + .checkmark[b-v90pye9hag]::after {
    opacity: 1;
    transform: scale(1);
}

.remember-box input:checked + .checkmark[b-v90pye9hag] {
    background: rgba(0,122,255,0.15);
    border-color: rgba(0,122,255,0.2);
}

/* /Pages/MojeOferty.razor.rz.scp.css */
/* ====== STRONA OFERT ====== */
.offers-page[b-4lnmrqfh5a] {
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
    padding: 16px 14px 100px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #111;

    /* Animacja wejścia */
    animation: pageFadeIn-b-4lnmrqfh5a 0.4s ease forwards;
}

@keyframes pageFadeIn-b-4lnmrqfh5a {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ====== WYSZUKIWARKA ====== */
.search-bar[b-4lnmrqfh5a] {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border-radius: 18px;
    padding: 14px 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,.05);
    margin-bottom: 20px;
    transition: box-shadow 0.2s ease;
}

.search-bar:hover[b-4lnmrqfh5a] {
    box-shadow: 0 10px 35px rgba(0,0,0,.07);
}

.search-bar input[b-4lnmrqfh5a] {
    border: none;
    outline: none;
    font-size: 16px;
    flex: 1;
}

/* ====== LISTA OFERT ====== */
.offers-list[b-4lnmrqfh5a] {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* ====== KARTY OFERT ====== */
.offer-card[b-4lnmrqfh5a] {
    display: flex;
    gap: 14px;
    background: #fff;
    border-radius: 22px;
    padding: 14px;
    box-shadow: 0 10px 28px rgba(0,0,0,.06);
    cursor: pointer;
    transition: transform .1s ease, box-shadow .2s ease;
}

.offer-card:active[b-4lnmrqfh5a] {
    transform: scale(.985);
    box-shadow: 0 6px 18px rgba(0,0,0,.05);
}

.offer-card:hover[b-4lnmrqfh5a] {
    box-shadow: 0 12px 32px rgba(0,0,0,.08);
}

.offer-card img[b-4lnmrqfh5a] {
    width: 88px;
    height: 88px;
    object-fit: cover;
    border-radius: 18px;
}

/* ====== TREŚĆ KARTY ====== */
.offer-body[b-4lnmrqfh5a] {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative; /* dodane */
}

.offer-body h4[b-4lnmrqfh5a] {
    margin: 0 0 4px;
    font-size: 17px;
    font-weight: 600;
}

.offer-body .price[b-4lnmrqfh5a] {
    font-size: 15px;
    font-weight: 600;
    color: #111;
    margin-bottom: 6px;
}

/* ====== BADGE ====== */
.l-badges[b-4lnmrqfh5a] {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 2px;
}

.l-badge[b-4lnmrqfh5a] {
    display: inline-flex; /* zmienione */
    align-items: center;
    justify-content: center;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 600;
    white-space: nowrap;
    pointer-events: none; /* dodane */
}

.l-badge.green[b-4lnmrqfh5a] { background: #e7f8ef; color: #128a4a; }
.l-badge.gray[b-4lnmrqfh5a]  { background: #f2f3f5; color: #666; }
.l-badge.blue[b-4lnmrqfh5a]  { background: #e9f0ff; color: #3b5cff; }

/* ====== ANIMACJA SKELETON ====== */
.skeleton[b-4lnmrqfh5a] {
    height: 110px;
    background: linear-gradient(90deg, #eee, #f5f5f5, #eee);
    border-radius: 22px;
    animation: pulse-b-4lnmrqfh5a 1.2s infinite;
}

@keyframes pulse-b-4lnmrqfh5a {
    0% { background-position: 0% 0; }
    100% { background-position: 100% 0; }
}

/* ====== LOADER ====== */
.load-more-spinner[b-4lnmrqfh5a] {
    height: 40px;
    margin: 20px auto;
}

#infinite-loader[b-4lnmrqfh5a] {
    height: 10px;
}
/* /Pages/ProduktPage.razor.rz.scp.css */
html[b-lu68tfdbus], body[b-lu68tfdbus] {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: auto; /* scroll w pionie */
    height: auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #fdfdfd;
    color: #111;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* =========================
   CONTAINER
========================= */
.product-wrapper[b-lu68tfdbus] {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding-bottom: 100px; /* miejsce na bottom bar */
    background: transparent;
}

/* =========================
   LOADER
========================= */
.loader-wrapper[b-lu68tfdbus] {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(255,255,255,0.95);
    z-index: 9999;
}

.loader[b-lu68tfdbus] {
    width: 80px;
    height: 80px;
    position: relative;
}
.loader div[b-lu68tfdbus] {
    position: absolute;
    border: 4px solid #007aff;
    border-radius: 50%;
    opacity: 1;
    animation: loaderAnim-b-lu68tfdbus 1s cubic-bezier(0,0.2,0.8,1) infinite;
}
.loader div:nth-child(2)[b-lu68tfdbus]{ animation-delay: -0.5s; }

@keyframes loaderAnim-b-lu68tfdbus {
    0% { top:36px; left:36px; width:0; height:0; opacity:1; }
    100% { top:0; left:0; width:72px; height:72px; opacity:0; }
}
.loader-wrapper p[b-lu68tfdbus] {
    margin-top: 24px;
    font-size: 18px;
    font-weight: 600;
    color: #007aff;
    animation: pulse-b-lu68tfdbus 1.2s infinite;
}
@keyframes pulse-b-lu68tfdbus { 0%,100%{opacity:1}50%{opacity:0.4} }

/* =========================
   HERO IMAGE / CAROUSEL
========================= */
.image-container[b-lu68tfdbus] {
    position: relative;
    width: 100%;
    height: 500px;
    max-height: 500px;
    overflow: hidden;
    background: #eaeaea;
    touch-action: pan-y pinch-zoom;
}

.slides[b-lu68tfdbus] {
    display: flex;
    height: 100%;
    transition: transform 0.45s cubic-bezier(.22,.9,.33,1);
    will-change: transform;
}
.slide[b-lu68tfdbus] {
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
}
.slide img[b-lu68tfdbus] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.image-container[b-lu68tfdbus]::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}

.image-preview[b-lu68tfdbus] {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5000;
    cursor: zoom-out;
}
.image-preview img[b-lu68tfdbus] {
    max-width: 95vw;
    max-height: 95vh;
    object-fit: contain;
}

/* =========================
   DOTS / NAV BUTTONS
========================= */

.option-box[b-lu68tfdbus] {
    display: flex;
    flex-direction: column;
    padding: 16px 20px;
    margin-bottom: 14px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 6px 12px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
    cursor: pointer;
    border: 2px solid #d8d8d8;
}

.option-box.active[b-lu68tfdbus] {
    border-color: #007aff;
    background: #f0f8ff; /* lekko niebieskie tło aktywnej opcji */
    animation: pulse-b-lu68tfdbus 0.3s ease;
}

@keyframes pulse-b-lu68tfdbus {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.option-header[b-lu68tfdbus] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}
.ask-address[b-lu68tfdbus] {
    font-size: 14px;
    font-weight: 550;
    color: #007aff;
    text-decoration: underline;
    cursor: pointer;
    white-space: nowrap;
}

.ask-address:hover[b-lu68tfdbus] {
    color: #005bb5; /* opcjonalny efekt hover */
}
.option-header i[b-lu68tfdbus] {
    font-size: 32px;
    color: #007aff;
    flex-shrink: 0;
}

.option-title[b-lu68tfdbus] {
    font-weight: 600;
    font-size: 15px;
    color: #445061;
}

.option-price[b-lu68tfdbus] {
    font-weight: 700;
    font-size: 18px;
    color: #1f538c;
    margin-bottom: 12px;
}
/* tylko dla opcji odbioru osobistego */
.option-box.pickup-option .option-header[b-lu68tfdbus] {
    gap: 8px;                 /* mniejsza odległość między ikoną a tekstem */
    margin-bottom: 0px;       /* mniejszy margines dolny */
    align-items: center;       /* pionowe wyrównanie ikony i tekstu */
}

.option-box.pickup-option .option-title[b-lu68tfdbus] {
    font-size: 15px;
    line-height: 1.2;          /* lepsze wyrównanie pionowe tekstu */
    color: #445061;
}

.option-details[b-lu68tfdbus] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.detail-item[b-lu68tfdbus] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #6b6b6b;
}

.detail-item i[b-lu68tfdbus] {
    font-size: 18px;
    color: #1f538c;
    flex-shrink: 0;
}


.nav-btn[b-lu68tfdbus] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.50);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: all .18s ease;
}
.nav-btn.left[b-lu68tfdbus] { left: 18px; }
.nav-btn.right[b-lu68tfdbus] { right: 18px; }
.nav-btn:hover[b-lu68tfdbus] { transform: translateY(-50%) scale(1.07); background: rgba(255,255,255,0.8);}
.nav-btn:active[b-lu68tfdbus]{transform:translateY(-50%) scale(0.96);}
.nav-btn i[b-lu68tfdbus]{font-size:28px; line-height:1;}

/* =========================
   CONTENT
========================= */
.content[b-lu68tfdbus] {
    padding: 20px 20px 20px;
    position: relative;
}

.title[b-lu68tfdbus] { font-size: 25px; font-weight: 900; color:#0c0c0c; margin-bottom:10px; }
.price[b-lu68tfdbus] { font-size:20px; font-weight:800; color: #204860; margin-bottom:18px; }
.description[b-lu68tfdbus] { font-size:15px; color:#444; line-height:1.9; word-wrap: anywhere}
.description-block[b-lu68tfdbus] {
    margin: 16px 0 24px;
}
.like[b-lu68tfdbus] {
    position: absolute;
    top: 12px;
    right: 12px;

    width: 48px;
    height: 48px;

    background: rgba(255,255,255,0.9);
    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;
    transition: all 0.25s ease;
}

/* DOMYŚLNIE – disabled (szary) */
.like i[b-lu68tfdbus] {
    font-size: 26px;
    color: #aaa;
    transition: all 0.3s ease;
}

/* AKTYWNY */
.like.active i[b-lu68tfdbus] {
    color: #e53935;
    animation: heart-pop-b-lu68tfdbus 0.35s ease;
}

/* EFEKT PULSU */
@keyframes heart-pop-b-lu68tfdbus {
    0%   { transform: scale(1); }
    40%  { transform: scale(1.3); }
    70%  { transform: scale(0.9); }
    100% { transform: scale(1); }
}
.lead[b-lu68tfdbus] {
    font-size: 17px;
    line-height: 1.85;
    color: #2c2c2c;
    font-weight: 500;
}

.specs[b-lu68tfdbus] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 24px 0 32px;
}

.spec-item[b-lu68tfdbus] {
    background: rgba(0,0,0,0.025);
    border-radius: 14px;
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.spec-title[b-lu68tfdbus] {
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

.spec-value[b-lu68tfdbus] {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    text-align: right;
}

.section h3[b-lu68tfdbus] {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 14px;
}

.benefits[b-lu68tfdbus] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.benefits li[b-lu68tfdbus] {
    font-size: 15px;
    font-weight: 600;
    color: #111;
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (min-width: 600px) {
    .specs[b-lu68tfdbus] {
        grid-template-columns: 1fr 1fr;
    }
}

/* =========================
   PRO / OCHRONA KUPUJĄCEGO
========================= */
.pro-banner[b-lu68tfdbus] {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg,#007aff,#00c3ff);
    color:#fff;
    padding:16px 24px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
    margin:24px 0;
    transition: transform 0.2s ease;
}
.pro-banner:hover[b-lu68tfdbus] { transform: translateY(-2px);}
.pro-banner i.material-symbols-rounded[b-lu68tfdbus]{ font-size:42px; }
.pro-text h2[b-lu68tfdbus]{ margin:0; font-size:20px; font-weight:900;}
.pro-text p[b-lu68tfdbus]{ margin:4px 0 0 0; font-size:14px; line-height:1.5;}

.pro-info[b-lu68tfdbus]{
    background: rgba(0,122,255,0.05);
    padding:16px 20px;
    border-radius:12px;
    margin-bottom:24px;
    margin-top: 24px;
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
}
.pro-info p[b-lu68tfdbus]{ font-size:14px; margin:4px 0; font-family: Roboto, sans-serif; }

/* =========================
   BOTTOM BAR – ACTION BUTTONS
========================= */
.bottom-bar[b-lu68tfdbus]{
    position: fixed;
    bottom:0;
    left:0;
    width:100%;
    background: rgba(255,255,255,0.60);
    border-top:1px solid rgba(0,0,0,0.04);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display:flex;
    justify-content:center;
    align-items:center;
    gap:16px;
    padding:18px 22px;
    z-index:200;
}

.pasek[b-lu68tfdbus]
{
    display: flex;
    height: 2px;
    width: 60px;
    background: #d1d1d1;
    margin-bottom: 10px;
    margin-top: 3px;
}

.naglowek[b-lu68tfdbus]
{
    font-size: 16px;
    font-weight: 600;
    color: #676767;
}

.action[b-lu68tfdbus]{
    border-radius:999px;
    height:56px;
    min-width:56px;
    padding:0 22px;
    font-weight:700;
    border:none;
    cursor:pointer;
    font-size:15px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    transition: all .16s ease;
}
.action i[b-lu68tfdbus]{ font-size:22px; }
.action.secondary[b-lu68tfdbus]{
    background: rgba(0,0,0,0.035);
    color:#111;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.04);
}
.action.secondary:hover[b-lu68tfdbus]{ background: rgba(0,0,0,0.07); transform:translateY(-1px);}
.action.primary[b-lu68tfdbus]{
    background: linear-gradient(135deg,#007aff,#0051ff);
    color:#fff;
    box-shadow:0 20px 45px rgba(0,81,255,0.45);
}
.action.primary:hover[b-lu68tfdbus]{ transform:translateY(-2px) scale(1.02);}

/* =========================
   SELLER BOX
========================= */
.seller-box[b-lu68tfdbus] {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(193, 207, 213, 0.67);
    padding: 16px 18px;
    border-radius: 22px;
    margin: 28px 0 10px;
    cursor: pointer;
    transition: all .2s ease;
}

.seller-box:active[b-lu68tfdbus] {
    transform: scale(0.98);
}

.seller-avatar[b-lu68tfdbus] {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: #f3f3f3;
}

.seller-avatar img[b-lu68tfdbus] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.seller-info[b-lu68tfdbus] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.seller-name[b-lu68tfdbus] {
    font-size: 17px;
    font-weight: 800;
    color: #111;
    display: flex;
    align-items: center;
    gap: 6px;
}

.seller-badge i[b-lu68tfdbus] {
    font-size: 18px;
    color: #007aff;
}

.seller-city[b-lu68tfdbus] {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

.seller-city i[b-lu68tfdbus] {
    font-size: 16px;
}

.seller-arrow[b-lu68tfdbus] {
    display: flex;
    align-items: center;
}

.seller-arrow i[b-lu68tfdbus] {
    font-size: 26px;
    color: #000000;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width:600px){
    .image-container[b-lu68tfdbus]{ height:400px}
    .title[b-lu68tfdbus]{ font-size:23px;}
    .pro-banner[b-lu68tfdbus]{ flex-direction:column; text-align:center;}
    .pro-banner i.material-symbols-rounded[b-lu68tfdbus]{ font-size:36px;}
}
/* /Pages/Security.razor.rz.scp.css */
.protection-page[b-envyha39hh] {
    max-width: 480px;
    margin: 0 auto;
    padding: 20px 16px 120px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #111;
    animation: fadeIn-b-envyha39hh 0.4s ease forwards;
}

@keyframes fadeIn-b-envyha39hh {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.protection-header[b-envyha39hh] {
    text-align: center;
    margin-bottom: 24px;
}

.icon-badge[b-envyha39hh] {
    width: 72px;
    height: 72px;
    margin: 0 auto 12px;
    border-radius: 22px;
    background: linear-gradient(135deg, #000, #444);
    color: white;
    font-size: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.protection-header h1[b-envyha39hh] {
    font-size: 22px;
    margin-bottom: 4px;
}

.protection-header p[b-envyha39hh] {
    font-size: 14px;
    color: #666;
}

/* Status karta */
.status-card[b-envyha39hh] {
    background: white;
    border-radius: 22px;
    padding: 18px 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
    margin-bottom: 22px;
}

.status-row[b-envyha39hh] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-label[b-envyha39hh] {
    font-size: 15px;
    font-weight: 600;
}

.status-badge[b-envyha39hh] {
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 600;
}

.status-badge.active[b-envyha39hh] {
    background: rgba(52,199,89,0.15);
    color: #228b47;
}

.status-badge.inactive[b-envyha39hh] {
    background: rgba(255,59,48,0.12);
    color: #c62828;
}

.status-desc[b-envyha39hh] {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.4;
    color: #555;
}

/* Przycisk */
.register-button[b-envyha39hh] {
    width: 100%;
    margin-top: 16px;
    background: black;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 18px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
}

.register-button:hover[b-envyha39hh] {
    transform: translateY(-1px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

/* Benefity */
.benefits-section[b-envyha39hh] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-card[b-envyha39hh] {
    background: #f8f8f8;
    border-radius: 18px;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}
/* /Pages/Settings.razor.rz.scp.css */
.settings-page[b-u3ccd5q9fk] {
    max-width: 480px;
    margin: 0 auto;
    padding: 20px 16px 100px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #111;
}

/* Profil */
.profile-section[b-u3ccd5q9fk] {
    display: flex;
    justify-content: center;
    margin-bottom: 28px;
}

.avatar-wrapper[b-u3ccd5q9fk] {
    position: relative;
    width: 110px;
    height: 110px;
}

.avatar-img[b-u3ccd5q9fk] {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border: 4px solid white;
}

.change-photo[b-u3ccd5q9fk] {
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    background: #111;
    color: white;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 999px;
    cursor: pointer;
}

/* Formularz */
.form-section[b-u3ccd5q9fk] {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.input-group[b-u3ccd5q9fk] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

label[b-u3ccd5q9fk] {
    font-size: 14px;
    font-weight: 600;
}

.required[b-u3ccd5q9fk] {
    color: #ff3b30;
}

input[b-u3ccd5q9fk], textarea[b-u3ccd5q9fk] {
    border-radius: 14px;
    border: 1px solid #e5e5e7;
    padding: 14px 16px;
    font-size: 15px;
    background: #fafafa;
    transition: 0.2s ease;
}

textarea[b-u3ccd5q9fk] {
    min-height: 90px;
    resize: none;
}

input:focus[b-u3ccd5q9fk], textarea:focus[b-u3ccd5q9fk] {
    outline: none;
    border-color: #111;
    background: white;
}

/* Przycisk */
.save-button[b-u3ccd5q9fk] {
    margin-top: 16px;
    background: black;
    color: white;
    border: none;
    border-radius: 18px;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
}

.save-button:hover[b-u3ccd5q9fk] {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}
