/* /Components/Layout/AdminLayout.razor.rz.scp.css */
.admin-container[b-q156viwk7a] {
    display: flex;
    min-height: 100vh;
    background-color: #F9FAFB; /* Soft light gray for main content */
    font-family: 'Outfit', 'Prompt', sans-serif;
    color: #111827;
}

.admin-sidebar[b-q156viwk7a] {
    width: 260px;
    background-color: #FFFFFF; /* Clean white sidebar */
    border-right: 1px solid #E5E7EB; /* Subtle border */
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    z-index: 100;
    transition: transform 0.25s ease;
}

/* Hamburger button — hidden on desktop, shown on mobile */
.sidebar-toggle[b-q156viwk7a] {
    display: none;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-right: 8px;
    color: #111827;
}

/* Dark backdrop behind the open drawer on mobile */
.sidebar-overlay[b-q156viwk7a] {
    display: none;
}

.sidebar-header[b-q156viwk7a] {
    padding: 24px;
    font-family: var(--font-primary);
    font-size: 1.8rem; /* Scaled down to fit on one line */
    font-weight: 700;
    color: #111827;
    border-bottom: 1px solid #E5E7EB;
    white-space: nowrap;
}

.sidebar-nav[b-q156viwk7a] {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.nav-link[b-q156viwk7a] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #4B5563; /* Medium gray for unselected */
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.nav-link:hover[b-q156viwk7a] {
    background-color: #F3F4F6;
    color: #111827;
}

[b-q156viwk7a] .nav-link.active {
    background-color: #111827;
    color: #FFFFFF;
}

[b-q156viwk7a] .nav-link.active .material-icons-outlined {
    color: #FFFFFF;
}

.material-icons-outlined[b-q156viwk7a] {
    font-size: 20px;
}

.admin-main[b-q156viwk7a] {
    flex: 1;
    margin-left: 260px;
    display: flex;
    flex-direction: column;
}

.admin-topbar[b-q156viwk7a] {
    height: 72px;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    position: sticky;
    top: 0;
    z-index: 90;
}

.topbar-title[b-q156viwk7a] {
    font-weight: 700;
    font-size: 1.1rem;
    color: #111827;
}

.topbar-actions[b-q156viwk7a] {
    display: flex;
    align-items: center;
    gap: 16px;
}

.profile-btn[b-q156viwk7a] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #FFFFFF;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

.profile-btn:hover[b-q156viwk7a] {
    background-color: #374151;
}

.admin-content[b-q156viwk7a] {
    padding: 32px;
    flex: 1;
    background-color: transparent;
}

/* ===== Mobile: sidebar becomes an off-canvas drawer ===== */
@media (max-width: 768px) {
    .admin-sidebar[b-q156viwk7a] {
        transform: translateX(-100%);
        box-shadow: 2px 0 16px rgba(0, 0, 0, 0.15);
    }

    .admin-sidebar.open[b-q156viwk7a] {
        transform: translateX(0);
    }

    .admin-main[b-q156viwk7a] {
        margin-left: 0;
    }

    .sidebar-toggle[b-q156viwk7a] {
        display: flex;
    }

    .sidebar-overlay.show[b-q156viwk7a] {
        display: block;
        position: fixed;
        inset: 0;
        background-color: rgba(0, 0, 0, 0.4);
        z-index: 95;
    }

    .admin-topbar[b-q156viwk7a] {
        padding: 0 16px;
    }

    .admin-content[b-q156viwk7a] {
        padding: 20px 16px;
    }

    /* Reach into the child page content (@Body) with ::deep to reshape its
       data tables into stacked cards — far easier to read than a wide table
       squeezed onto a phone. Applies to every admin page at once. */
    .admin-content[b-q156viwk7a]  table {
        min-width: 0;
        display: block;
    }

    .admin-content[b-q156viwk7a]  thead {
        display: none; /* column headers make no sense in card form */
    }

    .admin-content[b-q156viwk7a]  tbody,
    .admin-content[b-q156viwk7a]  tfoot {
        display: block;
    }

    .admin-content[b-q156viwk7a]  tr {
        display: block;
        border: 1px solid #E5E7EB !important;
        border-radius: 10px;
        background: #FFFFFF;
        padding: 12px 14px !important;
        margin-bottom: 12px;
    }

    .admin-content[b-q156viwk7a]  td {
        display: block;
        width: auto !important;
        padding: 3px 0 !important;
        border: none !important;
        text-align: left !important;
        white-space: normal !important;
    }

    /* The first cell (order #, product name, …) reads as the card title. */
    .admin-content[b-q156viwk7a]  td:first-child {
        font-weight: 700 !important;
        font-size: 1rem;
        margin-bottom: 4px;
    }

    /* Product editor's 2-column layout stacks into one column. */
    .admin-content[b-q156viwk7a]  .product-form-container {
        grid-template-columns: 1fr;
    }

    /* Modal dialogs fit the viewport. */
    .admin-content[b-q156viwk7a]  .modal-content {
        width: 92vw;
        max-width: 92vw;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.footer-container[b-7grel458wq] {
    background-color: #ffffff;
    color: #111111;
    margin-top: 120px;
    padding: 40px 5% 110px 5%;
    width: 100%;
    box-sizing: border-box;
    font-family: 'Outfit', 'Prompt', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: 0.85rem;
    font-weight: 400;
    border-top: 1px solid #e0e0e0;
}

.footer-inner[b-7grel458wq] {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.footer-left[b-7grel458wq] {
    flex: 1;
    min-width: 300px;
}

.footer-logo[b-7grel458wq] {
    margin-bottom: 30px;
}

.footer-info[b-7grel458wq] {
    font-size: 0.85rem;
    color: #111111;
    line-height: 1.8;
}

.footer-info-text[b-7grel458wq] {
    margin: 0 0 15px 0;
}

.footer-copyright[b-7grel458wq] {
    margin: 0;
    text-transform: uppercase;
}
.footer-right[b-7grel458wq] {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    min-width: 300px;
    font-weight: 600;
}

.footer-column[b-7grel458wq] {
    flex: 1;
    min-width: 180px;
}

.footer-heading[b-7grel458wq] {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.footer-list[b-7grel458wq] {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 2.2;
}

.footer-list a[b-7grel458wq] {
    color: #111111;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.footer-list a:hover[b-7grel458wq] {
    color: #666666;
}

.footer-social-icons[b-7grel458wq] {
    margin-top: 25px;
    display: flex;
    gap: 10px;
}

.social-icon[b-7grel458wq] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #111111;
    color: #111111;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-icon:hover[b-7grel458wq] {
    background-color: #111111;
    color: #ffffff;
    border-color: #111111;
}

.mobile-only-link[b-7grel458wq] {
    display: none;
}

[b-7grel458wq] .navbar__logo-img {
    height: 45px;
    max-width: 100%;
    object-fit: contain;
}

/* --- Mobile Layout --- */
@media (max-width: 767px) {
    [b-7grel458wq] .navbar__logo-img {
        height: 28px;
    }
    
    .footer-container[b-7grel458wq] {
        padding: 40px 5% 40px 5%;
    }
    
    .footer-inner[b-7grel458wq] {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    
    .footer-left[b-7grel458wq], .footer-right[b-7grel458wq], .footer-column[b-7grel458wq] {
        display: contents; /* Unbox everything so inner elements are direct children of .footer-inner */
    }
    
    .footer-heading[b-7grel458wq] {
        display: none; /* Hide headings on mobile */
    }
    
    .footer-social-icons[b-7grel458wq] {
        order: 1;
        margin-top: 0;
        margin-bottom: 30px;
    }
    
    .main-links[b-7grel458wq] {
        order: 2;
        width: 100%;
        display: flex;
        flex-direction: column;
        margin-bottom: 40px;
        border-top: 1px solid #e0e0e0;
    }
    
    .main-links li[b-7grel458wq] {
        border-bottom: 1px solid #e0e0e0;
        padding: 15px 0;
    }
    
    .footer-logo[b-7grel458wq] {
        order: 3;
        margin-bottom: 20px;
    }
    
    .footer-info[b-7grel458wq] {
        order: 4;
        margin-bottom: 30px;
    }
    
    .legal-links[b-7grel458wq] {
        display: none !important;
    }
    
    .legal-column[b-7grel458wq] {
        display: none !important;
    }
    
    .mobile-only-link[b-7grel458wq] {
        display: block;
    }
}

/* ========== SEARCH OVERLAY ========== */
.search-overlay[b-7grel458wq] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.search-overlay.open[b-7grel458wq] {
    opacity: 1;
    pointer-events: auto;
}

.search-overlay__title[b-7grel458wq] {
    font-family: var(--font-primary);
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 400;
    color: #111111;
    letter-spacing: 2px;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    text-align: center;
    padding-right: 43px; /* Offset for the search icon width to center over the line */
}

.search-overlay__input-wrapper[b-7grel458wq] {
    display: flex;
    align-items: flex-end;
    width: 90%;
    max-width: 600px;
    gap: 12px;
}

.search-overlay__main-column[b-7grel458wq] {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.search-overlay__input-container[b-7grel458wq] {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.search-overlay__input[b-7grel458wq] {
    width: 100%;
    flex: 1;
    border: none;
    border-bottom: 1.5px solid #111;
    background: transparent;
    font-family: 'Outfit', 'Prompt', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.1rem;
    color: #111;
    outline: none;
    padding: 8px 0;
}

.search-overlay__icon[b-7grel458wq] {
    color: #111;
    font-size: 28px;
    margin-left: 15px;
    padding-bottom: 8px;
    font-weight: 500;
}

.search-overlay__input[b-7grel458wq]::placeholder {
    color: #aaa;
    font-family: 'Outfit', 'Prompt', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
}

.search-overlay__btn[b-7grel458wq] {
    background: none;
    border: none;
    color: #111;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2px;
    transition: opacity 0.2s ease;
}

.search-overlay__btn:hover[b-7grel458wq] {
    opacity: 0.5;
}

.search-overlay__btn .material-icons-outlined[b-7grel458wq] {
    font-size: 28px;
    font-weight: 300;
}

.search-overlay__btn--close[b-7grel458wq] {
    position: absolute;
    top: 2rem;
    right: 2rem;
}

.search-overlay__btn--close .material-icons-outlined[b-7grel458wq] {
    font-size: 40px;
}

.search-overlay__btn-go[b-7grel458wq] {
    font-family: 'Outfit', 'Prompt', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #111;
    letter-spacing: 1px;
}

/* Search Results */
.search-overlay__results[b-7grel458wq] {
    display: flex;
    width: 90%;
    max-width: 800px;
    margin-top: 3rem;
    gap: 2rem;
}

.search-overlay__results-col[b-7grel458wq] {
    flex: 1;
}

.search-overlay__results-title[b-7grel458wq] {
    font-family: 'Outfit', 'Prompt', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: #111;
}

.search-overlay__suggest-list[b-7grel458wq] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.search-overlay__suggest-list li[b-7grel458wq] {
    padding: 6px 0;
    cursor: pointer;
    color: #555;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.search-overlay__suggest-list li:hover[b-7grel458wq] {
    color: #111;
}

.search-overlay__products[b-7grel458wq] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.search-result-item[b-7grel458wq] {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: #111;
    transition: opacity 0.2s ease;
}

.search-result-item:hover[b-7grel458wq] {
    opacity: 0.7;
}

.search-result-img[b-7grel458wq] {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.search-result-info[b-7grel458wq] {
    display: flex;
    flex-direction: column;
}

.search-result-name[b-7grel458wq] {
    font-size: 0.85rem;
    font-weight: 500;
}

.search-result-price[b-7grel458wq] {
    font-size: 0.8rem;
    color: #888;
    margin-top: 2px;
}

.search-result-empty[b-7grel458wq] {
    color: #888;
    font-size: 0.9rem;
}

/* --- Mobile Search Overlay --- */
@media (max-width: 767px) {
    .search-overlay__title[b-7grel458wq] {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        padding-right: 0;
    }
    
    .search-overlay__btn--close[b-7grel458wq] {
        top: 1rem;
        right: 1rem;
    }
    
    .search-overlay__btn--close .material-icons-outlined[b-7grel458wq] {
        font-size: 24px;
    }
    
    .search-overlay__input[b-7grel458wq] {
        font-size: 0.85rem;
        padding: 4px 0;
    }
    
    .search-overlay__input[b-7grel458wq]::placeholder {
        font-size: 0.85rem;
    }
    
    .search-overlay__icon[b-7grel458wq] {
        font-size: 20px;
        margin-left: 8px;
    }
    
    .search-overlay__results[b-7grel458wq] {
        flex-direction: column;
        gap: 1.2rem;
        margin-top: 1.5rem;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-2hwrg0ce98],
.components-reconnect-repeated-attempt-visible[b-2hwrg0ce98],
.components-reconnect-failed-visible[b-2hwrg0ce98],
.components-pause-visible[b-2hwrg0ce98],
.components-resume-failed-visible[b-2hwrg0ce98],
.components-rejoining-animation[b-2hwrg0ce98] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-2hwrg0ce98],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-2hwrg0ce98],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-2hwrg0ce98],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-2hwrg0ce98],
#components-reconnect-modal.components-reconnect-retrying[b-2hwrg0ce98],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-2hwrg0ce98],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-2hwrg0ce98],
#components-reconnect-modal.components-reconnect-failed[b-2hwrg0ce98],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-2hwrg0ce98] {
    display: block;
}


#components-reconnect-modal[b-2hwrg0ce98] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-2hwrg0ce98 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-2hwrg0ce98 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-2hwrg0ce98 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-2hwrg0ce98]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-2hwrg0ce98 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-2hwrg0ce98 {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-2hwrg0ce98 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-2hwrg0ce98 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-2hwrg0ce98] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-2hwrg0ce98] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-2hwrg0ce98] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-2hwrg0ce98] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-2hwrg0ce98] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-2hwrg0ce98] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-2hwrg0ce98] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-2hwrg0ce98 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-2hwrg0ce98] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-2hwrg0ce98 {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/Admin/Banners.razor.rz.scp.css */
.page-header[b-x7watkxgoq] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.page-title[b-x7watkxgoq] {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1A1A1A;
    margin: 0 0 8px 0;
}

.page-subtitle[b-x7watkxgoq] {
    color: rgba(26, 26, 26, 0.6);
    margin: 0;
    font-size: 1rem;
}

.btn-primary[b-x7watkxgoq] {
    background-color: #1A1A1A;
    color: #FFF8F0;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-primary:hover[b-x7watkxgoq] {
    background-color: #333333;
}

.table-card[b-x7watkxgoq] {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(26, 26, 26, 0.05);
    border: 1px solid rgba(26, 26, 26, 0.08);
    overflow: hidden;
}

.data-table[b-x7watkxgoq] {
    width: 100%;
    border-collapse: collapse;
}

.data-table th[b-x7watkxgoq] {
    text-align: left;
    padding: 16px 24px;
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(26, 26, 26, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(26, 26, 26, 0.08);
    background-color: #FFF8F0;
}

.data-table td[b-x7watkxgoq] {
    padding: 16px 24px;
    border-bottom: 1px solid rgba(26, 26, 26, 0.08);
    color: #1A1A1A;
    font-size: 0.95rem;
    vertical-align: middle;
}

.badge[b-x7watkxgoq] {
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge.active[b-x7watkxgoq] {
    background-color: rgba(21, 128, 61, 0.1);
    color: #15803d;
}

.badge.draft[b-x7watkxgoq] {
    background-color: rgba(26, 26, 26, 0.08);
    color: rgba(26, 26, 26, 0.7);
}

.btn-icon[b-x7watkxgoq] {
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(26, 26, 26, 0.5);
    padding: 8px;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.btn-icon:hover[b-x7watkxgoq] {
    background-color: rgba(26, 26, 26, 0.05);
    color: #1A1A1A;
}

.text-danger:hover[b-x7watkxgoq] {
    color: #ef4444;
    background-color: rgba(239, 68, 68, 0.1);
}

.modal-overlay[b-x7watkxgoq] {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    z-index: 1000;
    overflow-y: auto;
    padding: 40px 0;
}

.modal-content[b-x7watkxgoq] {
    background: white;
    padding: 32px;
    border-radius: 12px;
    width: 500px;
    max-width: 90%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    margin: auto;
}

/* Custom Toggle Switch */
.toggle-switch[b-x7watkxgoq] {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.toggle-switch input[b-x7watkxgoq] {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider[b-x7watkxgoq] {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #cbd5e1;
  transition: .3s;
  border-radius: 24px;
}

.slider[b-x7watkxgoq]:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .3s;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.toggle-switch input:checked + .slider[b-x7watkxgoq] {
  background-color: #10b981;
}

.toggle-switch input:checked + .slider[b-x7watkxgoq]:before {
  transform: translateX(20px);
}

.modal-header[b-x7watkxgoq] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.modal-header h5[b-x7watkxgoq] {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 800;
}

.modal-body .form-label[b-x7watkxgoq] {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1A1A1A;
}

.modal-body .form-control[b-x7watkxgoq] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid rgba(26, 26, 26, 0.15);
    border-radius: 8px;
    font-size: 0.95rem;
    margin-bottom: 16px;
    font-family: inherit;
}

.modal-body .form-check[b-x7watkxgoq] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.modal-footer[b-x7watkxgoq] {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 24px;
}

.btn-secondary[b-x7watkxgoq] {
    background-color: transparent;
    color: #1A1A1A;
    border: 1px solid rgba(26, 26, 26, 0.15);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

.btn-secondary:hover[b-x7watkxgoq] {
    background-color: rgba(26, 26, 26, 0.05);
}
/* /Components/Pages/Admin/Dashboard.razor.rz.scp.css */
.dashboard-header[b-9bhq8tjy8a] {
    margin-bottom: 32px;
}

.page-title[b-9bhq8tjy8a] {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1A1A1A;
    margin: 0 0 8px 0;
}

.page-subtitle[b-9bhq8tjy8a] {
    color: rgba(26, 26, 26, 0.6);
    margin: 0;
    font-size: 1rem;
}

.stats-grid[b-9bhq8tjy8a] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.stat-card[b-9bhq8tjy8a] {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 4px 12px rgba(26, 26, 26, 0.05);
    border: 1px solid rgba(26, 26, 26, 0.08);
}

.stat-icon[b-9bhq8tjy8a] {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon .material-icons-outlined[b-9bhq8tjy8a] {
    font-size: 28px;
}

.stat-content[b-9bhq8tjy8a] {
    flex: 1;
}

.stat-value[b-9bhq8tjy8a] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 4px 0;
}

.stat-label[b-9bhq8tjy8a] {
    font-size: 0.875rem;
    color: rgba(26, 26, 26, 0.6);
    margin: 0;
    font-weight: 500;
}

.dashboard-sections[b-9bhq8tjy8a] {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.section-card[b-9bhq8tjy8a] {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(26, 26, 26, 0.05);
    border: 1px solid rgba(26, 26, 26, 0.08);
}

.section-title[b-9bhq8tjy8a] {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 20px 0;
}

.empty-state[b-9bhq8tjy8a] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 0;
    color: rgba(26, 26, 26, 0.4);
}

.empty-icon[b-9bhq8tjy8a] {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
}
/* /Components/Pages/Admin/Products.razor.rz.scp.css */
.page-header[b-qsraoj1uw2] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.page-title[b-qsraoj1uw2] {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1A1A1A;
    margin: 0 0 8px 0;
}

.page-subtitle[b-qsraoj1uw2] {
    color: rgba(26, 26, 26, 0.6);
    margin: 0;
    font-size: 1rem;
}

.btn-primary[b-qsraoj1uw2] {
    background-color: #1A1A1A;
    color: #FFF8F0;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-primary:hover[b-qsraoj1uw2] {
    background-color: #333333;
}

.table-card[b-qsraoj1uw2] {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(26, 26, 26, 0.05);
    border: 1px solid rgba(26, 26, 26, 0.08);
    overflow: hidden;
}

.table-toolbar[b-qsraoj1uw2] {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(26, 26, 26, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-box[b-qsraoj1uw2] {
    display: flex;
    align-items: center;
    background-color: #FFF8F0;
    border: 1px solid rgba(26, 26, 26, 0.1);
    border-radius: 8px;
    padding: 8px 16px;
    width: 320px;
}

.search-box .material-icons-outlined[b-qsraoj1uw2] {
    color: rgba(26, 26, 26, 0.5);
    margin-right: 8px;
    font-size: 20px;
}

.search-box input[b-qsraoj1uw2] {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    font-size: 0.95rem;
    color: #1A1A1A;
}

.btn-outline[b-qsraoj1uw2] {
    background-color: transparent;
    border: 1px solid rgba(26, 26, 26, 0.15);
    color: #1A1A1A;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.data-table[b-qsraoj1uw2] {
    width: 100%;
    border-collapse: collapse;
}

.data-table th[b-qsraoj1uw2] {
    text-align: left;
    padding: 16px 24px;
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(26, 26, 26, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(26, 26, 26, 0.08);
    background-color: #FFF8F0;
}

.data-table td[b-qsraoj1uw2] {
    padding: 16px 24px;
    border-bottom: 1px solid rgba(26, 26, 26, 0.08);
    color: #1A1A1A;
    font-size: 0.95rem;
    vertical-align: middle;
}

.product-cell[b-qsraoj1uw2] {
    display: flex;
    align-items: center;
    gap: 16px;
}

.product-image[b-qsraoj1uw2] {
    width: 48px;
    height: 48px;
    background-color: #FFF8F0;
    border-radius: 8px;
    border: 1px solid rgba(26, 26, 26, 0.1);
}

.product-name[b-qsraoj1uw2] {
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 4px;
}

.product-sku[b-qsraoj1uw2] {
    font-size: 0.85rem;
    color: rgba(26, 26, 26, 0.6);
}

.badge[b-qsraoj1uw2] {
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge.active[b-qsraoj1uw2] {
    background-color: rgba(21, 128, 61, 0.1);
    color: #15803d;
}

.badge.draft[b-qsraoj1uw2] {
    background-color: rgba(26, 26, 26, 0.08);
    color: rgba(26, 26, 26, 0.7);
}

.btn-icon[b-qsraoj1uw2] {
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(26, 26, 26, 0.5);
    padding: 8px;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.btn-icon:hover[b-qsraoj1uw2] {
    background-color: rgba(26, 26, 26, 0.05);
    color: #1A1A1A;
}

.text-danger:hover[b-qsraoj1uw2] {
    color: #ef4444;
    background-color: rgba(239, 68, 68, 0.1);
}
/* /Components/Shared/ConfirmModal.razor.rz.scp.css */
.modal-overlay[b-vzc3shk0un] {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 10000;
    backdrop-filter: blur(4px);
}
.modal-overlay.open[b-vzc3shk0un] { opacity: 1; pointer-events: auto; }

.modal-container[b-vzc3shk0un] {
    background: white; border-radius: 12px;
    width: 90%; max-width: 400px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transform: translateY(20px) scale(0.95); transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 24px; text-align: center;
    font-family: var(--font-primary, system-ui, sans-serif);
}
.modal-overlay.open .modal-container[b-vzc3shk0un] { transform: translateY(0) scale(1); }

.modal-icon[b-vzc3shk0un] {
    width: 56px; height: 56px; border-radius: 50%;
    background: #fee2e2; color: #ef4444;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
}
.modal-icon .material-icons-outlined[b-vzc3shk0un] { font-size: 28px; }

.modal-title[b-vzc3shk0un] { 
    font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; color: #111827; 
}
.modal-message[b-vzc3shk0un] { 
    color: #4b5563; font-size: 0.95rem; margin-bottom: 24px; line-height: 1.5; 
}

.modal-footer[b-vzc3shk0un] { display: flex; gap: 12px; }

.btn-cancel[b-vzc3shk0un] { 
    flex: 1; padding: 10px 16px; border-radius: 8px; 
    background: white; border: 1px solid #d1d5db; color: #374151; 
    font-weight: 600; cursor: pointer; transition: all 0.2s; 
}
.btn-cancel:hover[b-vzc3shk0un] { background: #f3f4f6; border-color: #9ca3af; }

.btn-confirm[b-vzc3shk0un] { 
    flex: 1; padding: 10px 16px; border-radius: 8px; 
    background: #ef4444; border: none; color: white; 
    font-weight: 600; cursor: pointer; transition: all 0.2s; 
    box-shadow: 0 2px 4px rgba(239, 68, 68, 0.2);
}
.btn-confirm:hover[b-vzc3shk0un] { background: #dc2626; box-shadow: 0 4px 6px rgba(239, 68, 68, 0.3); }
/* /Components/Shared/LoginModal.razor.rz.scp.css */
.login-overlay[b-iwxu114okn] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.login-overlay.open[b-iwxu114okn] {
    opacity: 1;
    pointer-events: auto;
}

.login-modal[b-iwxu114okn] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%);
    width: 90%;
    max-width: 480px;
    background: #ffffff;
    padding: 3rem 2rem 2rem;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    font-family: 'Outfit', 'Prompt', sans-serif;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border-radius: 4px;
}

.login-modal.open[b-iwxu114okn] {
    opacity: 1;
    transform: translate(-50%, -50%);
    pointer-events: auto;
}

.login-modal__close[b-iwxu114okn] {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    cursor: pointer;
    color: #111;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.login-modal__close:hover[b-iwxu114okn] {
    opacity: 0.6;
}

.login-modal__content[b-iwxu114okn] {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.login-modal__title[b-iwxu114okn] {
    font-size: 1.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 2rem;
    color: #0a0e17;
    letter-spacing: 0.5px;
}

.login-form[b-iwxu114okn] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.input-group[b-iwxu114okn] {
    position: relative;
    width: 100%;
}

.login-input[b-iwxu114okn] {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.95rem;
    color: #111;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.login-input[b-iwxu114okn]::placeholder {
    color: #9ca3af;
}

.login-input:focus[b-iwxu114okn] {
    outline: none;
    border-color: #111;
}

.password-group[b-iwxu114okn] {
    display: flex;
    align-items: center;
}

.password-toggle[b-iwxu114okn] {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 0;
}

.btn-signin[b-iwxu114okn] {
    margin-top: 0.5rem;
    width: 100%;
    padding: 14px;
    background-color: #0a0e17;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.btn-signin:hover[b-iwxu114okn] {
    opacity: 0.85;
}

.login-actions[b-iwxu114okn] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
    font-size: 0.85rem;
}

.checkbox-container[b-iwxu114okn] {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #6b7280;
}

.checkbox-container input[b-iwxu114okn] {
    margin-right: 8px;
    accent-color: #0a0e17;
}

.forgot-link[b-iwxu114okn] {
    color: #0a0e17;
    text-decoration: none;
    font-weight: 500;
}

.forgot-link:hover[b-iwxu114okn] {
    text-decoration: underline;
}

.login-divider[b-iwxu114okn] {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 2rem 0;
    color: #4b5563;
    font-size: 0.85rem;
}

.login-divider[b-iwxu114okn]::before,
.login-divider[b-iwxu114okn]::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e5e7eb;
}

.login-divider span[b-iwxu114okn] {
    padding: 0 10px;
}

.signup-promo[b-iwxu114okn] {
    text-align: center;
    font-size: 0.95rem;
    color: #111;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.social-login[b-iwxu114okn] {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.btn-social[b-iwxu114okn] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px;
    background-color: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.95rem;
    color: #111;
    cursor: pointer;
    transition: background-color 0.2s;
    position: relative;
}

.btn-social:hover[b-iwxu114okn] {
    background-color: #f9fafb;
}

.social-icon[b-iwxu114okn] {
    position: absolute;
    left: 16px;
    width: 20px;
    height: 20px;
}

.login-footer[b-iwxu114okn] {
    margin-top: 2.5rem;
    text-align: center;
}

.register-link[b-iwxu114okn] {
    color: #6b7280;
    text-decoration: underline;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.register-link:hover[b-iwxu114okn] {
    color: #111;
}

@media (max-width: 480px) {
    .login-modal[b-iwxu114okn] {
        width: 100vw;
        height: 100vh;
        max-width: none;
        border-radius: 0;
        top: 0;
        left: 0;
        transform: none;
        padding: 4rem 1.5rem 2rem;
    }
    
    .login-modal.open[b-iwxu114okn] {
        transform: none;
    }
}
/* /Components/Shared/ToggleSwitch.razor.rz.scp.css */
.toggle[b-19texe8coy] {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
}

.toggle.is-disabled[b-19texe8coy] {
    cursor: not-allowed;
    opacity: 0.5;
}

/* Hide the native checkbox but keep it accessible/focusable */
.toggle input[b-19texe8coy] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.track[b-19texe8coy] {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 22px;
    background: #D1D5DB;
    border-radius: 999px;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
}

.thumb[b-19texe8coy] {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 18px;
    height: 18px;
    background: #FFFFFF;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease;
}

.toggle input:checked + .track[b-19texe8coy] {
    background: #1A1A1A;
}

.toggle input:checked + .track .thumb[b-19texe8coy] {
    transform: translateX(18px);
}

.toggle input:focus-visible + .track[b-19texe8coy] {
    box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.2);
}

.label-text[b-19texe8coy] {
    font-size: 0.9rem;
    color: #374151;
}
