/* /Components/Account/Settings.razor.rz.scp.css */
/* Styles specific to Settings page (scoped by Blazor)
   Using flex & grid semantics, no Bootstrap dependency */
.settings-container[b-pwcoqsv96e] {
    display: flex;
    justify-content: center;
    padding: var(--space-lg);
}
.settings-card[b-pwcoqsv96e] {
    width: 100%;
    max-width: 600px;
    border: 1px solid #ccc;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    background: #fff;
    display: flex;
    flex-direction: column;
}
.settings-header[b-pwcoqsv96e] {
    padding: var(--space-md);
    border-bottom: 1px solid #ccc;
    background: #f7f7f7;
}
.settings-body[b-pwcoqsv96e] {
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}
.settings-buttons[b-pwcoqsv96e] {
    display: flex;
    gap: var(--space-sm);
}
.settings-status[b-pwcoqsv96e] {
    color: #555;
    font-size: var(--text-sm);
}

/* Custom button styles */
.settings-btn[b-pwcoqsv96e] {
    background: transparent;
    color: #212529;
    padding: var(--space-sm) var(--space-md);
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.15s ease-in-out;
}

.settings-btn-primary[b-pwcoqsv96e] {
    background: var(--complementary);
    color: #fff;
    border-color: var(--complementary);
}

.settings-btn-secondary[b-pwcoqsv96e] {
    background: #ddd;
    color: #000;
    border-color: #ddd;
}

.settings-btn-warning[b-pwcoqsv96e] {
    background: #ffc107;
    color: #000;
    border-color: #ffc107;
}

.settings-btn:hover[b-pwcoqsv96e] {
    opacity: 0.9;
}

.settings-input[b-pwcoqsv96e] {
    padding: var(--space-sm);
    border: 1px solid #ccc;
    border-radius: var(--radius-sm);
    font-size: 1rem;
}
/* /Components/Aside/Aside.razor.rz.scp.css */
/* Main Container */
aside[b-4zd3hqnyxo] {
    display: grid;
    gap: 1.5rem;
    background: #ffffff;
    padding: 1.25rem 1.1rem;
    color: #25304a;
    width: 100%;
    
    /* STICKY FIX */
    position: sticky;      /* Hace que el elemento sea pegajoso */
    top: 6rem;             /* Se detiene a 5-6rem del techo (ajusta según tu nav) */
    align-self: start;     /* EVITA que se estire; sin esto, el sticky no funciona */
    
    height: fit-content;   /* Solo ocupa el espacio de sus filtros */
}

/* Desktop Sidebar */
@media (min-width: 768px) {
    aside[b-4zd3hqnyxo] {
        border-radius: 16px;
        box-shadow: 0 6px 24px rgba(36, 45, 60, 0.07);
        min-width: 170px;
        max-width: 220px;
    }
}

aside h3[b-4zd3hqnyxo] {
    font-size: 1.18rem;
    font-weight: 700;
    margin: 0;
    color: #3a4a6b;
}

/* Dropdowns Layout */
.filter-row[b-4zd3hqnyxo] {
    display: flex;
    gap: 0.8rem;
}

.filter-row section[b-4zd3hqnyxo] {
    flex: 1; /* Takes 50% width on mobile */
}

@media (min-width: 768px) {
    .filter-row[b-4zd3hqnyxo] {
        flex-direction: column; /* Stack vertically on desktop */
    }
}

/* Label & Select Styling */
aside label span[b-4zd3hqnyxo], aside legend[b-4zd3hqnyxo] {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 0.5rem;
}

aside select[b-4zd3hqnyxo] {
    width: 100%;
    padding: 8px;
    border: 1px solid #e0e4ec;
    border-radius: 8px;
    background: #f8f9fb;
    font-size: 0.9rem;
}

/* Supplier Chips Layout */
aside fieldset[b-4zd3hqnyxo] {
    border: none;
    padding: 0;
    margin: 0;
}

.filter-wrap[b-4zd3hqnyxo] {
    display: flex;
    flex-wrap: wrap; /* Chips wrap automatically */
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .filter-wrap[b-4zd3hqnyxo] {
        flex-direction: column; /* Stack vertically on desktop */
    }
}

/* Individual Chip Styling */
aside label.chip[b-4zd3hqnyxo] {
    cursor: pointer;
}

@media (max-width: 767px) {
    aside label.chip[b-4zd3hqnyxo] {
        background: #f0f2f5;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    aside label.chip input[b-4zd3hqnyxo] {
        display: none; /* Hide radio dot on mobile to look like a button */
    }
}

/* Option B: Ultra Minimalist (Darker Gray) */
aside label.chip:has(input:checked)[b-4zd3hqnyxo] {
    background: #d1d5db; 
    color: #111827;
    font-weight: 600;
}

.local-filter[b-4zd3hqnyxo] {
    margin-bottom: 1.5rem;
    padding: 10px;
    background: rgba(255, 255, 255, 0.5); /* Glass effect */
    border-radius: 12px;
    border: 1px solid #eee;
}

.toggle-container[b-4zd3hqnyxo] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toggle-label[b-4zd3hqnyxo] {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

/* The Switch - Modern Toggle */
.switch[b-4zd3hqnyxo] {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.switch input[b-4zd3hqnyxo] { 
    opacity: 0;
    width: 0;
    height: 0;
}

.slider[b-4zd3hqnyxo] {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #ccc;
    transition: .4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 24px;
}

.slider[b-4zd3hqnyxo]:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

input:checked + .slider[b-4zd3hqnyxo] {
    background-color: #28a745; /* Success Green for 'Local' */
}

input:checked + .slider[b-4zd3hqnyxo]:before {
    transform: translateX(20px);
}

/* 2026 Trend: Soft pulse when active */
input:checked + .slider[b-4zd3hqnyxo] {
    box-shadow: 0 0 8px rgba(40, 167, 69, 0.3);
}
/* /Components/Common/Pager.razor.rz.scp.css */
/* Pager component styles */

.pagination-btn[b-j2bnzdtuma] {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.pagination-btn:disabled[b-j2bnzdtuma] {
    pointer-events: none;
    opacity: 0.65;
}

.pagination-btn-primary[b-j2bnzdtuma] {
    background: var(--complementary, #007bff);
    color: #fff;
    border-color: var(--complementary, #007bff);
}

.pagination-btn-secondary[b-j2bnzdtuma] {
    background: #ddd;
    color: #000;
    border-color: #ddd;
}

.pagination-btn-primary:hover[b-j2bnzdtuma],
.pagination-btn-secondary:hover[b-j2bnzdtuma] {
    opacity: 0.9;
}

.pagination-controls[b-j2bnzdtuma] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

.pagination-controls button[b-j2bnzdtuma] {
    padding: 10px 20px;
    font-size: 16px;
    min-width: 50px;
}
/* /Components/Common/SimpleLoginModal.razor.rz.scp.css */
.login-form-modal-overlay[b-dh1hip19kk] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.login-form-modal-content[b-dh1hip19kk] {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.18);
    padding: 2.5rem 2rem 2rem 2rem;
    min-width: 320px;
    max-width: 90vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-form[b-dh1hip19kk] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.login-form h3[b-dh1hip19kk] {
    margin: 0 0 1rem 0;
    font-size: 1.6rem;
    color: #222;
}

.login-btn[b-dh1hip19kk], .cancel-btn[b-dh1hip19kk] {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    margin: 0.2rem 0;
    transition: background 0.2s;
}

.login-btn[b-dh1hip19kk] {
    background: #4285f4;
    color: #fff;
}

.login-btn:hover[b-dh1hip19kk] {
    background: #3367d6;
}

.cancel-btn[b-dh1hip19kk] {
    background: #eee;
    color: #333;
}

.cancel-btn:hover[b-dh1hip19kk] {
    background: #ccc;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */

















/* MainLayout styles */


.layout[b-oh725ac5rm] {
  display: grid;
  grid-template-columns: minmax(200px, 250px) 1fr;
  min-height: 100vh;
  margin-top: 5rem; /* Increased slightly for safety */
  background: #f3f5f9;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  gap: 0.4rem;
  padding: 0.45rem;
  box-sizing: border-box;
}




aside[b-oh725ac5rm] {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(16, 24, 40, 0.05);
  padding: 0.75rem;
  min-width: 0;
}

main[b-oh725ac5rm] {
  min-width: 0;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(16, 24, 40, 0.04);
  padding: 1rem;
}

@media (max-width: 900px) {
  .layout[b-oh725ac5rm] {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0.75rem;
    margin-top: 7rem; /* Mobile Nav is taller because Search moves to a new row */
  }
  aside[b-oh725ac5rm] {
    padding: 0.9rem;
  }
  main[b-oh725ac5rm] {
    padding: 1rem;
  }
}





/* Contenedor principal del footer */
footer[b-oh725ac5rm] {
    background-color: #f8f9fa;
    padding: 2rem 1rem;
    border-top: 1px solid #dee2e6;
    text-align: center;
    margin-top: 3rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Estilo para el párrafo de texto */
footer p[b-oh725ac5rm] {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
}

/* Estilo para los enlaces */
footer a[b-oh725ac5rm] {
    color: #004481; /* Azul institucional estilo BBVA */
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease-in-out;
    margin: 0 5px;
}

/* Efecto al pasar el mouse por los links */
footer a:hover[b-oh725ac5rm] {
    color: #002d56;
    text-decoration: underline;
}

/* Separadores visuales (los palitos | ) */
footer span.separator[b-oh725ac5rm] {
    color: #ced4da;
    margin: 0 10px;
}

/* Ajuste para dispositivos móviles */
@media (max-width: 600px) {
    footer p[b-oh725ac5rm] {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    footer span.separator[b-oh725ac5rm] {
        display: none; /* Ocultamos los separadores en móvil para que se apilen bien */
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-jya16ba7qd],
.components-reconnect-repeated-attempt-visible[b-jya16ba7qd],
.components-reconnect-failed-visible[b-jya16ba7qd],
.components-pause-visible[b-jya16ba7qd],
.components-resume-failed-visible[b-jya16ba7qd],
.components-rejoining-animation[b-jya16ba7qd] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-jya16ba7qd],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-jya16ba7qd],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-jya16ba7qd],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-jya16ba7qd],
#components-reconnect-modal.components-reconnect-retrying[b-jya16ba7qd],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-jya16ba7qd],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-jya16ba7qd],
#components-reconnect-modal.components-reconnect-failed[b-jya16ba7qd],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-jya16ba7qd] {
    display: block;
}


#components-reconnect-modal[b-jya16ba7qd] {
    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-jya16ba7qd 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-jya16ba7qd 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-jya16ba7qd 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-jya16ba7qd]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-jya16ba7qd 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-jya16ba7qd {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-jya16ba7qd {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-jya16ba7qd {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-jya16ba7qd] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-jya16ba7qd] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-jya16ba7qd] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-jya16ba7qd] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-jya16ba7qd] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-jya16ba7qd] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-jya16ba7qd] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-jya16ba7qd 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-jya16ba7qd] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-jya16ba7qd {
    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/Nav/Auth/Auth.razor.rz.scp.css */
/* Styles for Auth */
img[b-fedtqo7k0w] {
  object-fit: contain;
  height: 100%;
}

.front-auth_btn[b-fedtqo7k0w] {
  display: inline-block;
  height: 1.8rem;
  width: auto;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}

.front-auth_btn:hover[b-fedtqo7k0w] {
  background-color: lightgreen;

}

.modal-overlay[b-fedtqo7k0w] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

.modal-content[b-fedtqo7k0w] {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
@keyframes authPopIn-b-fedtqo7k0w {
    from { transform: translateY(-30px) scale(0.98); opacity: 0; }
    to   { transform: translateY(0) scale(1); opacity: 1; }
}
.front-auth_x[b-fedtqo7k0w] {
 position: absolute;
    top: 1rem;
    font-size: 1.3rem;
    color: #888;
    cursor: pointer;
    background: #f4f8fb;
    border-radius: 50%;
    width: 100%;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content:flex-end;
    transition: background 0.18s, color 0.18s;
    padding-right: 1.5rem;
}

.authorize[b-fedtqo7k0w] {
width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-top: 1.2rem;
    margin-bottom: 0.7rem;
  }

/* .not-authorize {
  width: 100%;
} */

.front-auth_links[b-fedtqo7k0w], .logout[b-fedtqo7k0w] {
    display: block;
    width: 100%;
    text-align: left;
    background: #f4f8fb;
    color: #004DB3;
    border: none;
    border-radius: 0.6rem;
    padding: 0.6rem 1rem;
    margin-bottom: 0.3rem;
    font-size: 1.08rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.18s, color 0.18s;
    cursor: pointer;
}
.front-auth_links:hover[b-fedtqo7k0w], .logout:hover[b-fedtqo7k0w] {
    background: #004DB3;
    color: #fff;
}

.logout[b-fedtqo7k0w] {
    background: #ffeaea;
    color: #b30000;
    margin-top: 0.5rem;
}
.logout:hover[b-fedtqo7k0w] {
    background: #b30000;
    color: #fff;
}

.mail[b-fedtqo7k0w] {
    margin-top: 1.2rem;
    color: #7a8ca7;
    font-size: 0.98rem;
    text-align: center;
    word-break: break-all;
}
/* @media (max-width: 500px) {
    .front-auth {
        padding: 1.2rem 0.5rem 1rem 0.5rem;
        min-width: 0;
    }
} */

.login-form[b-fedtqo7k0w] {
    display: grid;
    gap: 1rem;
    width: 100%;
}

.form-group[b-fedtqo7k0w] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.login-btn[b-fedtqo7k0w], .cancel-btn[b-fedtqo7k0w] {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
}

.login-btn[b-fedtqo7k0w] {
    background-color: #007bff;
    color: white;
}

.cancel-btn[b-fedtqo7k0w] {
    background-color: #6c757d;
    color: white;
}

.error-message[b-fedtqo7k0w] {
    color: red;
    font-size: 0.9rem;
}

.auth-container[b-fedtqo7k0w] {
    position: relative;
    display: inline-block;
}

.dropdown-menu[b-fedtqo7k0w] {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    min-width: 150px;
    padding: 0.5rem 0;
}

.dropdown-menu a[b-fedtqo7k0w], .dropdown-item[b-fedtqo7k0w] {
    display: block;
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: #333;
    cursor: pointer;
    border: none;
    background: none;
    text-align: left;
    width: 100%;
}

.dropdown-menu a:hover[b-fedtqo7k0w], .dropdown-item:hover[b-fedtqo7k0w] {
    background-color: #f0f0f0;
}

.dropdown-overlay[b-fedtqo7k0w] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
}
/* /Components/Nav/Auth/LoginForm.razor.rz.scp.css */
.login-form[b-iyp1l89l1c] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    margin: 0 auto;
}

.login-form h3[b-iyp1l89l1c] {
    margin: 0;
    font-size: 1.5rem;
    color: #333;
    text-align: center;
}

.login-btn[b-iyp1l89l1c], .cancel-btn[b-iyp1l89l1c] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
}

.login-btn[b-iyp1l89l1c] {
    background-color: #4285f4;
    color: white;
}

.login-btn:hover[b-iyp1l89l1c] {
    background-color: #3367d6;
}

.cancel-btn[b-iyp1l89l1c] {
    background-color: #f1f1f1;
    color: #333;
}

.cancel-btn:hover[b-iyp1l89l1c] {
    background-color: #e0e0e0;
}
/* /Components/Nav/Menu/Menu.razor.rz.scp.css */
/* Styles for Menu */
.menu_btn[b-zg3mjpj0qz] {
    cursor: pointer;
    width: 2rem;
    height: 2rem;
    transition: filter 0.2s;
}
.menu_btn:hover[b-zg3mjpj0qz] {
    filter: brightness(0.8);
}

main[style][b-zg3mjpj0qz] {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.35);
    z-index: 2000;
    display: none;
    align-items: flex-start;
    justify-content: flex-start;
}

.pop[b-zg3mjpj0qz] {
    background: #fff;
    border-radius: 12px;
    margin: 2rem;
    min-width: 260px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    padding: 1.5rem 1.2rem 1.2rem 1.2rem;
    animation: menuIn-b-zg3mjpj0qz 0.2s;
}

@keyframes menuIn-b-zg3mjpj0qz {
    from { transform: translateY(-30px); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}

.menu-header[b-zg3mjpj0qz] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.menu-title[b-zg3mjpj0qz] {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    color: #004DB3;
}

.close-btn[b-zg3mjpj0qz] {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #888;
    cursor: pointer;
    transition: color 0.2s;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.close-btn:hover[b-zg3mjpj0qz] {
    color: #004DB3;
    background: #f0f4fa;
}

.links[b-zg3mjpj0qz] {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.links a[b-zg3mjpj0qz] {
    text-decoration: none;
    color: #222;
    font-size: 1.08rem;
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    transition: background 0.18s, color 0.18s;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
.links a:hover[b-zg3mjpj0qz] {
    background: #f0f4fa;
    color: #004DB3;
}
/* /Components/Nav/Nav.razor.rz.scp.css */
/* 1. Main Navigation Container */
nav[b-8gbyf14208] {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95); /* Glassmorphism background */
    backdrop-filter: blur(12px);            /* Modern blur effect */
    -webkit-backdrop-filter: blur(12px);   /* Safari support */
    padding: 0.6rem 1.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05); /* Premium thin border */
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
    
    /* 3-column Grid for Desktop */
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.5rem;
}

/* 2. Brand Section (Fix for Stacking) */
.brand[b-8gbyf14208] {
    display: flex;       /* Forces Menu and Home side-by-side */
    align-items: center;
    gap: 0.75rem;        
    grid-column: 1;
}

/* 3. Search Container (Centered on Desktop) */
.search-container[b-8gbyf14208] {
    grid-column: 2;
    width: 100%;
    max-width: 550px;
    margin: 0 auto;      /* Perfectly centered */
}

/* 4. Action Icons (Cart/Auth) */
.actions[b-8gbyf14208] {
    grid-column: 3;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

/* 5. Professional Home Link Styling */
.home-link[b-8gbyf14208] {
    color: var(--cm);
    background: rgba(0, 109, 255, 0.06); /* Subtle brand tint */
    padding: 8px;
    border-radius: 12px;
    display: flex;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-link:hover[b-8gbyf14208] {
    background: var(--cm);
    color: #ffffff;
    transform: translateY(-1px);
}

.home-link .brand-icon[b-8gbyf14208] {
    width: 28px;
    height: 28px;
}

/* 6. Mobile Responsiveness (The Space-Saving Fix) */
@media (max-width: 650px) {
    nav[b-8gbyf14208] {
        /* Changes to 2 columns on mobile to put Search below */
        grid-template-columns: auto 1fr;
        padding: 0.5rem 0.75rem;
        gap: 0.5rem 0.75rem;
    }

    .brand[b-8gbyf14208] { 
        grid-column: 1; 
        gap: 0.5rem;
    }
    .actions[b-8gbyf14208] { 
        grid-column: 2; 
        gap: 0.75rem;
    }

    /* Pushes Search to its own dedicated row */
    .search-container[b-8gbyf14208] {
        grid-column: 1 / span 2;
        order: 3; 
        margin-top: 4px;
        max-width: 100%;
    }

    .home-link[b-8gbyf14208] {
        padding: 6px;
    }
    
    .home-link .brand-icon[b-8gbyf14208] {
        width: 24px;
        height: 24px;
    }
}
/* /Components/Nav/NavCart/Checkout/Checkout.razor.rz.scp.css */
.checkout-container[b-7wgzzun9c0] {
    max-width: 1000px;
    margin: 0 auto;
    padding: 1.5rem 1rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.checkout-container h3[b-7wgzzun9c0] {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}

/* Items List */
.checkout-items[b-7wgzzun9c0] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Modern Card: Single item per row, responsive layout */
.checkout-item[b-7wgzzun9c0] {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    grid-template-areas: 
        "img name name"
        "img controls price";
    gap: 0.75rem 1rem;
    padding: 1rem;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
    transition: transform 0.2s, box-shadow 0.2s;
    align-items: center;
}

@media (max-width: 480px) {
    .checkout-item[b-7wgzzun9c0] {
        grid-template-columns: 70px 1fr;
        grid-template-areas: 
            "img name"
            "img controls"
            "img price";
        gap: 0.5rem 0.75rem;
        padding: 0.75rem;
    }
    .checkout-item-image[b-7wgzzun9c0] {
        width: 70px;
        height: 70px;
    }
    .item-name[b-7wgzzun9c0] {
        font-size: 0.9rem;
    }
}

.checkout-item:hover[b-7wgzzun9c0] {
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.04), 0 4px 6px -2px rgba(0,0,0,0.02);
}

.checkout-item-image[b-7wgzzun9c0] {
    grid-area: img;
    width: 80px;
    height: 80px;
    object-fit: contain;
    background: #f8fafc;
    border-radius: 12px;
    padding: 4px;
}

.item-name[b-7wgzzun9c0] {
    grid-area: name;
    font-weight: 600;
    font-size: 1rem;
    color: #1e293b;
    line-height: 1.4;
}

/* Controls */
.item-controls[b-7wgzzun9c0] {
    grid-area: controls;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f1f5f9;
    padding: 4px;
    border-radius: 10px;
    width: fit-content;
}

.qty-btn[b-7wgzzun9c0] {
    width: 28px;
    height: 28px;
    min-width: 28px; /* Ensure circular buttons don't shrink */
    border-radius: 8px;
    border: none;
    background: #ffffff;
    color: #475569;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.qty-btn:hover[b-7wgzzun9c0] { background: #e2e8f0; }

.item-price[b-7wgzzun9c0] {
    grid-area: price;
    font-weight: 700;
    color: var(--cm);
    text-align: right;
}

.delete-btn[b-7wgzzun9c0] {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    padding: 2px 6px;
    margin-left: 4px;
}

.checkout-total[b-7wgzzun9c0] {
    margin-top: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
}

.place-order-btn[b-7wgzzun9c0] {
    width: 100%;
    padding: 1.15rem;
    background: var(--cm);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s;
}

.place-order-btn:hover[b-7wgzzun9c0] {
    transform: translateY(-2px);
}
    font-weight: 600;
    font-size: 0.9rem;
    color: #1e293b;[b-7wgzzun9c0]
}

.delete-btn[b-7wgzzun9c0] {
    margin-left: 0.5rem;
    background: transparent;
    border: none;
    padding: 8px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.delete-btn:hover[b-7wgzzun9c0] { opacity: 1; }

.item-price[b-7wgzzun9c0] {
    grid-area: price;
    text-align: right;
    font-weight: 700;
    font-size: 1.1rem;
    color: #0f172a;
    padding-top: 0.5rem;
    border-top: 1px dashed #f1f5f9;
}

/* Total Section */
.checkout-total[b-7wgzzun9c0] {
    margin-top: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.25rem;
    color: #0f172a;
}

.place-order-btn[b-7wgzzun9c0] {
    background: #2563eb;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.2);
}

.place-order-btn:hover[b-7wgzzun9c0] {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 20px 25px -5px rgba(37, 99, 235, 0.25);
}

/* 2026/Modern Desktop Refinement: Single Row Layout */
@media (min-width: 768px) {
    .checkout-item[b-7wgzzun9c0] {
        grid-template-columns: 100px 1fr auto auto;
        grid-template-areas: "img name controls price";
        padding: 1.25rem;
        gap: 1.5rem;
    }
    
    .checkout-item-image[b-7wgzzun9c0] { width: 100px; height: 100px; }
    
    .item-price[b-7wgzzun9c0] {
        border-top: none;
        padding-top: 0;
        min-width: 120px;
    }
}
/* /Components/Nav/NavCart/NavCart.razor.rz.scp.css */
/* Trigger Button */
.cart-trigger[b-se6kgbj0ou] {
    background: none;
    border: none;
    position: relative;
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
}

.cart-icon[b-se6kgbj0ou] {
    width: 2.2rem;
    height: 2.2rem;
}

/* Trigger Badge and Animation */
.cart-badge[b-se6kgbj0ou] {
    position: absolute;
    top: 4px;
    right: 4px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    min-width: 1.35rem;
    height: 1.35rem;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    animation: popBadge-b-se6kgbj0ou 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popBadge-b-se6kgbj0ou {
    0% { transform: scale(0.5); }
    100% { transform: scale(1); }
}

/* Base Add-to-Cart style (to be applied elsewhere if needed) */
.btn-add-to-cart[b-se6kgbj0ou] {
    transition: background-color 1.5s ease;
}

/* Overlay always covers full screen and handles alignment */
.cart-modal-overlay[b-se6kgbj0ou] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: flex-end; /* Bottom for mobile */
}

/* Container responsive behavior */
.cart-modal-container[b-se6kgbj0ou] {
    background: white;
    width: 100%;
    height: 100vh; /* Primary height */
    height: 100dvh; /* 2026 standard: prevents hiding content behind browser bars */
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

@media (min-width: 768px) {
    .cart-modal-overlay[b-se6kgbj0ou] {
        justify-content: flex-end; /* Right for desktop */
        align-items: stretch; /* Full height for desktop */
    }
    .cart-modal-container[b-se6kgbj0ou] {
        width: 33vw;
        max-width: 450px;
        height: 100vh;
        border-radius: 0;
        box-shadow: -4px 0 10px rgba(0,0,0,0.1);
    }
}

@keyframes slideInRight-b-se6kgbj0ou {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

/* Header and Body positioning */
.cart-modal-header[b-se6kgbj0ou] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #f1f5f9;
}

.cart-modal-header h3[b-se6kgbj0ou] {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
}

.cart-close-x[b-se6kgbj0ou] {
    background: #f1f5f9;
    color: #64748b;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s ease;
    padding-bottom: 4px; /* Adjust visual centering of × */
}

.cart-close-x:hover[b-se6kgbj0ou] {
    background: #e2e8f0;
    color: #0f172a;
    transform: scale(1.05);
}

.cart-close-x:active[b-se6kgbj0ou] {
    transform: scale(0.95);
}

.cart-modal-body[b-se6kgbj0ou] {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 1.25rem;
    scrollbar-width: thin;
}

/* Items List Grid instead of Flex */
.cart-items-list[b-se6kgbj0ou] {
    display: grid;
    grid-template-columns: 100%;
    gap: 1.25rem;
}

/* Each item row as a tight grid */
.cart-item-row[b-se6kgbj0ou] {
    display: grid;
    grid-template-columns: 70px 1fr auto;
    grid-template-areas: "img info acts";
    gap: 1rem;
    align-items: start;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f7f7f7;
}

.cart-item-img-container[b-se6kgbj0ou] {
    grid-area: img;
    width: 70px;
    height: 70px;
    background: #fdfdfd;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
}

.cart-item-info[b-se6kgbj0ou] {
    grid-area: info;
    min-width: 0;
}

.cart-item-actions[b-se6kgbj0ou] {
    grid-area: acts;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
}

.qty-stepper[b-se6kgbj0ou] {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.stepper-btn[b-se6kgbj0ou] {
    background: #eee;
    border: none;
    padding: 4px 10px;
    cursor: pointer;
    font-weight: bold;
}

.stepper-btn:hover[b-se6kgbj0ou] { background: #ddd; }

.qty-val[b-se6kgbj0ou] {
    padding: 0 12px;
    font-size: 0.9rem;
    min-width: 30px;
    text-align: center;
}

.item-remove-btn[b-se6kgbj0ou] {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    opacity: 0.6;
}

.item-remove-btn:hover[b-se6kgbj0ou] { opacity: 1; }

/* Footer sticky positioning */
.cart-modal-footer[b-se6kgbj0ou] {
    flex: 0 0 auto;
    padding: 1.25rem;
    border-top: 1px solid #f0f0f0;
    background: white;
}

.cart-summary[b-se6kgbj0ou] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.cart-total-price[b-se6kgbj0ou] {
    font-weight: 700;
    color: #27ae60;
}

.checkout-primary-btn[b-se6kgbj0ou] {
    width: 100%;
    background: #27ae60;
    color: white;
    border: none;
    padding: 0.85rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background 0.15s ease;
}

.checkout-primary-btn:hover[b-se6kgbj0ou] {
    background: #219150;
}

.cart-empty-message[b-se6kgbj0ou] {
    text-align: center;
    padding: 2rem;
    color: #888;
}

@media (max-width: 480px) {
    .cart-modal-container[b-se6kgbj0ou] {
        max-width: 100%;
    }
}
/* /Components/Nav/SearchTerm/SearchTerm.razor.rz.scp.css */
.search-box[b-94nrpx50pn] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}

.input-wrapper[b-94nrpx50pn] {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    background: #f1f5f9; /* Soft tech-gray */
    border-radius: 12px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

/* Modern Focus State using your Brand Color --cm */
.input-wrapper:focus-within[b-94nrpx50pn] {
    background: #ffffff;
    border-color: var(--cm);
    box-shadow: 0 0 0 4px rgba(0, 109, 255, 0.1);
}

.search-icon[b-94nrpx50pn] {
    width: 18px;
    height: 18px;
    margin-left: 12px;
    color: #94a3b8;
    pointer-events: none;
}

.input-wrapper input[b-94nrpx50pn] {
    width: 100%;
    height: 40px;
    border: none;
    outline: none;
    background: transparent;
    padding: 0 12px 0 8px;
    font-size: 0.95rem;
    color: #1e293b;
}

/* The 'Limit' input styled to match */
.limit-input[b-94nrpx50pn] {
    width: 45px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    text-align: center;
    font-size: 0.85rem;
    background: #ffffff;
    color: #64748b;
    outline: none;
}

.limit-input:focus[b-94nrpx50pn] {
    border-color: var(--cm);
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .input-wrapper input[b-94nrpx50pn] {
        font-size: 16px; /* Prevents iOS zoom-in on focus */
        height: 38px;
    }
    .limit-input[b-94nrpx50pn] {
        display: none; /* Hide limit on mobile to save horizontal space */
    }
}
/* /Components/Pages/DetailProduct/Detail.razor.rz.scp.css */
.detail-container[b-3qgks9j35p] {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.product-detail[b-3qgks9j35p] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

@media (max-width: 992px) {
    .product-detail[b-3qgks9j35p] {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
    }
}

.image-gallery[b-3qgks9j35p] {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 2rem;
}

@media (max-width: 576px) {
    .image-gallery[b-3qgks9j35p] {
        padding: 1rem;
    }
    .image-gallery img[b-3qgks9j35p] {
        max-height: 350px;
    }
}

.image-gallery img[b-3qgks9j35p] {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
}

.breadcrumb[b-3qgks9j35p] {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

h1[b-3qgks9j35p] {
    font-size: 2rem;
    color: #212529;
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (max-width: 576px) {
    h1[b-3qgks9j35p] {
        font-size: 1.5rem;
    }
}

.meta-info[b-3qgks9j35p] {
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    color: #495057;
    font-size: 0.95rem;
}

.pricing-card[b-3qgks9j35p] {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.public-price[b-3qgks9j35p] {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

@media (max-width: 576px) {
    .public-price[b-3qgks9j35p] {
        font-size: 2rem;
    }
}

.stock[b-3qgks9j35p] {
    font-weight: 500;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.buy-button[b-3qgks9j35p] {
    width: 100%;
    padding: 1rem;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.buy-button:hover[b-3qgks9j35p] {
    background: #2980b9;
}

.description-section[b-3qgks9j35p] {
    margin-bottom: 2rem;
}

/* Staff Panel */
.staff-internal-section[b-3qgks9j35p] {
    margin-top: 2rem;
    padding: 2rem;
    background: #fffcf0; /* Warm light background */
    border: 3px dashed #f1c40f; /* Brighter border */
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.staff-internal-section h3[b-3qgks9j35p] {
    color: #856404;
    margin-top: 0;
    border-bottom: 2px solid #ffeeba;
    padding-bottom: 0.75rem;
    font-size: 1.5rem; /* Larger header */
}

.staff-grid[b-3qgks9j35p] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* Wider columns */
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.staff-item label[b-3qgks9j35p] {
    display: block;
    font-size: 1.1rem; /* Much larger labels */
    color: #664d03;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 0.4rem;
}

.staff-item .value[b-3qgks9j35p] {
    font-size: 1.4rem; /* Larger values */
    font-weight: 700;
    color: #212529;
}

.staff-item .value.cost[b-3qgks9j35p] {
    font-size: 1.8rem; /* Prominent cost */
    color: #d35400; /* Distinct color for cost */
}
    margin-top: 2rem;
    line-height: 1.6;
    color: #444;[b-3qgks9j35p]
}

.description-section h3[b-3qgks9j35p] {
    border-bottom: 2px solid #eee;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .product-detail[b-3qgks9j35p] {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
/* Home page layout using CSS Grid */
body[b-82t5vn4kap] {
  background: #f5f7fa;
}

.product-grid[b-82t5vn4kap] {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  grid-auto-rows: 1fr;
  gap: 1.25rem;
  padding: 1.5rem 0;
}

@media (max-width: 640px) {
  .product-grid[b-82t5vn4kap] {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding: 1rem 0.5rem;
  }
}

@media (max-width: 400px) {
  .product-grid[b-82t5vn4kap] {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.product-counter[b-82t5vn4kap] {
  background: #ffffff;
  border: 1px solid #d9dee5;
  border-radius: 16px;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  color: #242d3c;
  font-weight: 600;
  box-shadow: 0 6px 30px rgba(36, 45, 60, 0.06);
}

.no-products[b-82t5vn4kap] {
  background: #ffffff;
  border: 1px solid #d9dee5;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  color: #616e80;
}

@media (max-width: 640px) {
  .product-counter[b-82t5vn4kap] {
    border-radius: 12px;
    margin-bottom: 1rem;
  }
}
/* /Components/Pages/LandingSection.razor.rz.scp.css */
/* 2026 Minimalist Landing Styles */
.landing-page[b-578p7jl1gq] {
    animation: fadeIn-b-578p7jl1gq 0.8s ease-out;
}

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

.hero-section[b-578p7jl1gq] {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    margin-bottom: 3rem;
    align-items: center;
    box-shadow: 0 4px 30px rgba(0,0,0,0.02);
}

.hero-title[b-578p7jl1gq] {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #0f172a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-subtitle[b-578p7jl1gq] {
    font-size: 1.25rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 540px;
}

/* Search Tags */
.tag-label[b-578p7jl1gq] {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.tag-cloud[b-578p7jl1gq] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.minimal-tag[b-578p7jl1gq] {
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    background: #ffffff;
    color: #334155;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.minimal-tag:hover[b-578p7jl1gq] {
    border-color: var(--cm, #3498db);
    color: var(--cm, #3498db);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.15);
}

.hero-image[b-578p7jl1gq] {
    display: flex;
    justify-content: center;
    opacity: 0.8;
}

.hero-image img[b-578p7jl1gq] {
    max-width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.05));
}

/* Curated Collection */
.curated-section[b-578p7jl1gq] {
    padding: 2rem 0;
}

.section-header[b-578p7jl1gq] {
    margin-bottom: 3rem;
}

.section-header h2[b-578p7jl1gq] {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.section-header p[b-578p7jl1gq] {
    color: #64748b;
    font-size: 1.1rem;
}

.featured-grid[b-578p7jl1gq] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

/* Desktop Fix for Hero */
@media (max-width: 1024px) {
    .hero-section[b-578p7jl1gq] {
        grid-template-columns: 1fr;
        padding: 3rem 1.5rem;
        text-align: center;
    }
    .hero-subtitle[b-578p7jl1gq] { margin-left: auto; margin-right: auto; }
    .tag-cloud[b-578p7jl1gq] { justify-content: center; }
    .hero-title[b-578p7jl1gq] { font-size: 2.5rem; }
}
/* /Components/Pages/ProductComp/ProductComp.razor.rz.scp.css */
.product-card[b-apew41z3hw] {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #f0f2f5;
    border-radius: 16px; /* Slightly softer modern corners */
    padding: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.title-link[b-apew41z3hw] {
    text-decoration: none;
    color: inherit;
}

.title-link:hover h5[b-apew41z3hw] {
    color: #3498db;
}

.product-card:hover[b-apew41z3hw] {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.05);
}

/* 1. Image: Square & Clean */
.image-box[b-apew41z3hw] {
    aspect-ratio: 1 / 1; /* Keeps images consistent without hard heights */
    background: #f8fafc;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.image-box img[b-apew41z3hw] {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 2. Typography & Price */
.product-card h4[b-apew41z3hw] {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: #1e293b;
    height: 2.8rem; /* Limits to ~2 lines */
    overflow: hidden;
}

.price[b-apew41z3hw] {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--cm); /* Using your brand blue */
    margin-bottom: 0.75rem;
}

/* 3. Generic Attributes (The "Add/Remove" Fix) */
.attributes[b-apew41z3hw] {
    display: grid;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.attributes .item[b-apew41z3hw] {
    font-size: 0.8rem;
    color: #64748b;
    display: flex;
    justify-content: space-between;
}

.attributes .item span[b-apew41z3hw] {
    font-weight: 600;
    color: #94a3b8; /* Labels are subtle */
}

/* 4. The Button: Modern & Full-width on Mobile */
.add-btn[b-apew41z3hw] {
    margin-top: auto;
    width: 100%; /* Better for thumb-tapping on mobile */
    padding: 0.75rem;
    background: var(--cm);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.add-btn:hover[b-apew41z3hw] { opacity: 0.9; }

/* 5. Mobile Grid optimization */
@media (max-width: 480px) {
    .product-grid[b-apew41z3hw] {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile saves vertical space */
        gap: 0.75rem;
        padding: 1rem;
    }
    .product-card[b-apew41z3hw] { padding: 0.75rem; }
    .attributes[b-apew41z3hw] { display: none; } /* Optional: Hide details on tiny screens to show more products */
}

/* Staff Internal Info */
.staff-internal-box[b-apew41z3hw] {
    margin-top: 1rem;
    padding: 0.75rem;
    background: #fffcf0;
    border: 2px dashed #f1c40f;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.staff-row[b-apew41z3hw] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f9e79f;
    padding-bottom: 0.25rem;
}

.staff-row:last-child[b-apew41z3hw] {
    border-bottom: none;
    padding-bottom: 0;
}

.staff-label[b-apew41z3hw] {
    font-size: 1rem;
    font-weight: 800;
    color: #856404;
    text-transform: uppercase;
}

.staff-value[b-apew41z3hw] {
    font-size: 1.2rem;
    font-weight: 700;
    color: #212529;
}
}
/* /Components/Pages/ProductFilters.razor.rz.scp.css */
/* simple sidebar styling */
.filter-sidebar[b-pb1nsrx663] {
    padding: var(--space-md);
    border-right: 1px solid #ccc;
    width: 250px;
}
.filter-group[b-pb1nsrx663] {
    margin-bottom: var(--space-md);
}
.filter-group label[b-pb1nsrx663] {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: var(--font-medium);
}
.filter-list[b-pb1nsrx663] {
    list-style: none;
    padding: 0;
    margin: 0;
}
.filter-list li[b-pb1nsrx663] {
    margin-bottom: var(--space-xs);
    display: flex;
    align-items: center;
}
.filter-list input[b-pb1nsrx663] {
    margin-right: var(--space-xs);
}
.filter-list label[b-pb1nsrx663] {
    cursor: pointer;
}

.filter-list-horizontal[b-pb1nsrx663] {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}
.filter-list-horizontal li[b-pb1nsrx663] {
    margin-bottom: 0;
}
/* /Components/PriceRange/PriceRange.razor.rz.scp.css */
.price-range-component[b-up2t0lg90e] {
    margin-bottom: 1.5em;
}
.slider-row[b-up2t0lg90e] {
    display: flex;
    align-items: center;
    gap: 0.5em;
}
.price-value[b-up2t0lg90e] {
    font-size: 0.9em;
    min-width: 2.5em;
    display: inline-block;
    text-align: center;
    color: #444;
}
.price-sep[b-up2t0lg90e] {
    margin: 0 0.5em;
}
input[type="range"][b-up2t0lg90e] {
    accent-color: #1976d2;
}
/* /Components/Sales/EditSaleItemModal.razor.rz.scp.css */
.edit-modal-overlay[b-4vpq1kc76q] {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1100;
}

.edit-modal[b-4vpq1kc76q] {
  width: min(520px, 95vw);
  background: #fff;
  border: 1px solid #dce7f4;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.22);
  padding: 1rem;
}

.edit-modal-header[b-4vpq1kc76q] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.modal-close[b-4vpq1kc76q] {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: #455a75;
}

.edit-modal-body[b-4vpq1kc76q] {
  display: grid;
  gap: 0.85rem;
}

.form-row[b-4vpq1kc76q] {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.form-row label[b-4vpq1kc76q] {
  font-size: 0.9rem;
  color: #334155;
  font-weight: 600;
}

.form-row input[b-4vpq1kc76q],
.form-row textarea[b-4vpq1kc76q] {
  padding: 0.5rem;
  border: 1px solid #c9d6e8;
  border-radius: 6px;
  font-size: 0.95rem;
}

.edit-modal-footer[b-4vpq1kc76q] {
  display: flex;
  justify-content: flex-end;
  gap: 0.65rem;
  margin-top: 1rem;
}

.btn-primary[b-4vpq1kc76q] {
  background: #0f5fcc;
  color: #fff;
  border: 1px solid #0f5fcc;
  border-radius: 6px;
  padding: 0.55rem 0.9rem;
  cursor: pointer;
}

.btn-secondary[b-4vpq1kc76q] {
  background: #f4f5f9;
  color: #334155;
  border: 1px solid #c9d6e8;
  border-radius: 6px;
  padding: 0.55rem 0.9rem;
  cursor: pointer;
}
/* /Components/Sales/OneSale.razor.rz.scp.css */
.one-sale-wrapper[b-ko5e5l00in] {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.one-sale-header h3[b-ko5e5l00in] {
    margin: 0.5rem 0 1.5rem;
    font-size: 1.8rem;
    font-weight: 800;
}

.order-number[b-ko5e5l00in] { color: #64748b; font-weight: 400; }

.back-link[b-ko5e5l00in] {
    text-decoration: none;
    color: #004481;
    font-size: 0.9rem;
    font-weight: 500;
}

.order-summary-card[b-ko5e5l00in] {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .order-summary-card[b-ko5e5l00in] {
        padding: 1rem;
        gap: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .summary-stats[b-ko5e5l00in] {
        width: 100%;
        justify-content: space-between;
    }

    .quote-tool[b-ko5e5l00in] {
        width: 100%;
    }

    .input-group[b-ko5e5l00in] {
        flex-direction: column;
        width: 100%;
    }

    .input-group input[b-ko5e5l00in] {
        width: 100%;
        min-width: 0;
    }

    .btn-primary[b-ko5e5l00in] {
        width: 100%;
    }

    .item-detail-card[b-ko5e5l00in] {
        grid-template-columns: 80px 1fr !important;
        gap: 1rem !important;
        padding: 1rem !important;
    }

    .item-pricing[b-ko5e5l00in] {
        flex-direction: column;
        gap: 0.25rem !important;
    }

    .row-total[b-ko5e5l00in] {
        margin-left: 0 !important;
        margin-top: 0.5rem;
    }

    .item-meta-info[b-ko5e5l00in] {
        flex-direction: column;
        gap: 0.5rem !important;
    }
}

.summary-stats[b-ko5e5l00in] { display: flex; gap: 2rem; }

.stat-item[b-ko5e5l00in] { display: flex; flex-direction: column; }

.stat-label[b-ko5e5l00in] { font-size: 0.75rem; color: #64748b; text-transform: uppercase; font-weight: 700; }

.stat-value[b-ko5e5l00in] { font-size: 1.25rem; font-weight: 700; }

.grand-total[b-ko5e5l00in] { color: #059669; }

.quote-tool label[b-ko5e5l00in] { display: block; font-size: 0.85rem; margin-bottom: 0.5rem; font-weight: 600; }

.input-group[b-ko5e5l00in] { display: flex; gap: 0.5rem; }

.input-group input[b-ko5e5l00in] {
    padding: 0.6rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    min-width: 250px;
}

.btn-primary[b-ko5e5l00in] {
    background: #004481;
    color: white;
    border: none;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

.items-list[b-ko5e5l00in] { display: flex; flex-direction: column; gap: 1rem; }

.item-detail-card[b-ko5e5l00in] {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

.item-preview img[b-ko5e5l00in] { width: 100%; border-radius: 12px; object-fit: contain; }

.product-title[b-ko5e5l00in] {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    text-decoration: none;
    display: block;
    margin-bottom: 0.75rem;
}

.item-pricing[b-ko5e5l00in] { display: flex; align-items: baseline; gap: 1.5rem; color: #475569; }

.quantity[b-ko5e5l00in] { font-weight: 600; }

.row-total[b-ko5e5l00in] { margin-left: auto; font-weight: 700; font-size: 1.1rem; color: #000; }

.item-meta-info[b-ko5e5l00in] {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f8fafc;
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
    color: #64748b;
}

.alert[b-ko5e5l00in] { padding: 1rem; border-radius: 8px; margin-bottom: 1rem; }
.alert.info[b-ko5e5l00in] { background: #e0f2fe; color: #0369a1; }

.btn-outline-sm[b-ko5e5l00in] {
    border: 1px solid #cbd5e1;
    background: white;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    margin-top: 1rem;
}

    box-shadow: 0 4px 12px rgba(0,0,0,0.05);[b-ko5e5l00in]
}

.item-top[b-ko5e5l00in] {
    display: contents; /* Let children participate in card grid */
}

.item-image[b-ko5e5l00in] {
    grid-area: img;
    width: 80px;
    height: 80px;
    background: #f7fafc;
    border: 1px solid #edf2f7;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.item-image img[b-ko5e5l00in] {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.item-name[b-ko5e5l00in] {
    grid-area: info;
    font-weight: 600;
    font-size: 1rem;
    color: #2d3748;
    line-height: 1.3;
}

.item-bottom[b-ko5e5l00in] {
    grid-area: meta;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.meta-row[b-ko5e5l00in] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #4a5568;
}

.item-price[b-ko5e5l00in] {
    font-weight: 700;
    color: #1a202c;
    font-size: 1rem;
}

.card-actions[b-ko5e5l00in] {
    grid-area: acts;
    display: flex;
    justify-content: flex-end;
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid #f7fafc;
}

.btn-card-edit[b-ko5e5l00in] {
    background: #edf2f7;
    color: #4a5568;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-card-edit:hover[b-ko5e5l00in] { background: #e2e8f0; }

/* Desktop adjustments */
@media (min-width: 768px) {
    .sale-item-card[b-ko5e5l00in] {
        grid-template-columns: 100px 1fr auto;
        grid-template-areas: "img info acts" "img meta acts";
        align-items: center;
    }
    .item-image[b-ko5e5l00in] { width: 100px; height: 100px; }
    .card-actions[b-ko5e5l00in] { border-top: none; margin-top: 0; padding-top: 0; }
}

.loading[b-ko5e5l00in],
.error[b-ko5e5l00in],
.no-items[b-ko5e5l00in] {
    padding: 1rem;
    border-radius: 8px;
}

.loading[b-ko5e5l00in] {
    background: #f2f6fb;
    border: 1px solid #dbe9f8;
    color: #546a84;
}

.error[b-ko5e5l00in] {
    background: #fef3f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
}

.no-items[b-ko5e5l00in] {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #1e3a8a;
}

.btn-quote[b-ko5e5l00in] {
    background-color: #2328c0;
    color: #fff;
    border: 1px solid #1e27ab;
    border-radius: 6px;
    padding: 0.45rem 0.9rem;
    cursor: pointer;
    font-size: 0.87rem;
}

.btn-quote:hover[b-ko5e5l00in] {
    background-color: #1b22a5;
}

.quote-entry[b-ko5e5l00in] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.quote-entry input[b-ko5e5l00in] {
    padding: 0.4rem 0.5rem;
    border: 1px solid #c9d6e8;
    border-radius: 6px;
    min-width: 230px;
}

.quote-message[b-ko5e5l00in] {
    margin-top: 0.7rem;
    color: #0f4f91;
    font-weight: 600;
}

.edit-modal-overlay[b-ko5e5l00in] {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.44);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.edit-modal[b-ko5e5l00in] {
    background: #ffffff;
    border: 1px solid #e1e8f2;
    border-radius: 10px;
    padding: 1rem;
    width: min(480px, 90vw);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.22);
}

.btn-close-modal[b-ko5e5l00in] {
    margin-top: 0.75rem;
    border: 1px solid #9caac5;
    background: #f4f5f9;
    color: #334155;
    padding: 0.4rem 0.8rem;
    border-radius: 5px;
    cursor: pointer;
}
/* /Components/Sales/Sales.razor.rz.scp.css */
.page-shell[b-p349f3kqv7] {
    max-width: 1000px;
    margin: 0 auto;
    padding: 1.5rem 1rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.page-header[b-p349f3kqv7] {
    margin-bottom: 2rem;
}

.page-header h1[b-p349f3kqv7] {
    margin: 0;
    font-size: 1.85rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.subtitle[b-p349f3kqv7] {
    margin: 0.5rem 0 0;
    color: #64748b;
    font-size: 1rem;
}

.sales-container[b-p349f3kqv7] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sale-card[b-p349f3kqv7] {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.sale-card:hover[b-p349f3kqv7] {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
}

.sale-header[b-p349f3kqv7] {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1.25rem 1.5rem;
    background: #f8fafc;
    border-bottom: 1px solid #f1f5f9;
    align-items: center;
}

@media (min-width: 768px) {
    .sale-header[b-p349f3kqv7] {
        display: grid;
        grid-template-columns: repeat(4, 1fr) auto;
        justify-content: space-between;
    }
}

.header-group[b-p349f3kqv7] {
    display: flex;
    flex-direction: column;
    min-width: 100px;
}

.detail-btn-container[b-p349f3kqv7] {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-grow: 1;
}

@media (max-width: 767px) {
    .sale-header[b-p349f3kqv7] {
        padding: 1rem;
        gap: 1rem;
    }
    
    .header-group[b-p349f3kqv7] {
        min-width: 40%;
    }

    .detail-btn-container[b-p349f3kqv7] {
        justify-content: center;
        width: 100%;
        margin-top: 0.5rem;
    }

    .sale-detail-btn[b-p349f3kqv7] {
        width: 100%;
        min-width: none;
    }
}

.sale-detail-btn[b-p349f3kqv7] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    background-color: #004481 !important;
    color: #ffffff !important;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    min-width: 120px;
    height: auto;
    white-space: nowrap;
    text-align: center;
    border: none;
    cursor: pointer;
}

.sale-detail-btn:hover[b-p349f3kqv7] {
    background: #002e56;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.more-items[b-p349f3kqv7] {
    font-size: 0.85rem;
    color: #64748b;
    padding-left: 5rem;
    font-style: italic;
}

.item-image img[b-p349f3kqv7] {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 8px;
}

.sale-header .label[b-p349f3kqv7] {
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 700;
    color: #94a3b8;
    margin-bottom: 0.25rem;
}

.sale-header .value[b-p349f3kqv7] {
    font-size: 0.95rem;
    font-weight: 600;
    color: #334155;
}

@media (max-width: 639px) {
    .no-mobile[b-p349f3kqv7] {
        display: none;
    }
}

.sale-body[b-p349f3kqv7] {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.item-row[b-p349f3kqv7] {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 1rem;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f8fafc;
}

.item-row:last-child[b-p349f3kqv7] {
    border-bottom: none;
    padding-bottom: 0;
}

.item-image[b-p349f3kqv7] {
    width: 64px;
    height: 64px;
    background: #f8fafc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 4px;
}

.item-image img[b-p349f3kqv7] {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.item-meta-wrapper[b-p349f3kqv7] {
    min-width: 0;
}

.item-name[b-p349f3kqv7] {
    font-weight: 600;
    font-size: 0.95rem;
    color: #1e293b;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sale-item-link[b-p349f3kqv7] {
    text-decoration: none;
    color: inherit;
}

.sale-item-link:hover[b-p349f3kqv7] {
    text-decoration: underline;
    color: #3b82f6;
}

.item-image a[b-p349f3kqv7] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.item-meta[b-p349f3kqv7] {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

.sale-footer[b-p349f3kqv7] {
    padding: 1rem 1.5rem;
    background: #ffffff;
    display: flex;
    justify-content: flex-end;
    border-top: 1px solid #f8fafc;
}

.sale-detail-btn[b-p349f3kqv7] {
    display: inline-block;
    padding: 0.6rem 1.25rem;
    background: #f1f5f9;
    color: #475569;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 10px;
    transition: all 0.2s;
}

.sale-detail-btn:hover[b-p349f3kqv7] {
    background: #e2e8f0;
    color: #0f172a;
    transform: translateX(4px);
}

.sale-footer[b-p349f3kqv7] {
    background: #f9fafb;
    border-top: 1px solid #e4ebf5;
    padding: 10px 14px;
    display: flex;
    justify-content: flex-end;
}

.sale-detail-btn[b-p349f3kqv7] {
    padding: 7px 14px;
    border: 1px solid #0f4ecd;
    background: #ffffff;
    border-radius: 6px;
    color: #0f4ecd;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.88rem;
}

.sale-detail-btn:hover[b-p349f3kqv7] {
    background: #f0f5ff;
}

.loading-container[b-p349f3kqv7],
.empty-state[b-p349f3kqv7],
.alert.error[b-p349f3kqv7] {
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 0.95rem;
}

.loading-container[b-p349f3kqv7] {
    background: #f8fafc;
    border: 1px solid #dbe4ef;
    color: #1e293b;
}

.empty-state[b-p349f3kqv7] {
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    color: #334155;
}

.alert.error[b-p349f3kqv7] {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

@media (max-width: 720px) {
    .sale-header[b-p349f3kqv7] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .item-row[b-p349f3kqv7] {
        flex-direction: column;
        align-items: flex-start;
    }

    .item-image[b-p349f3kqv7] {
        width: 100%;
        height: 140px;
    }

    .sale-footer[b-p349f3kqv7] {
        justify-content: center;
    }
}
